less copy protection, more size visualization
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 

46833 wiersze
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: ["mammal"]
  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. "mew": {
  1040. name: "Mew",
  1041. parents: ["pokemon"]
  1042. },
  1043. "eevee": {
  1044. name: "Eevee",
  1045. parents: ["eeveelution"]
  1046. },
  1047. "mienshao": {
  1048. name: "Mienshao",
  1049. parents: ["pokemon"]
  1050. },
  1051. "sugar-glider": {
  1052. name: "Sugar Glider",
  1053. parents: ["opossum"]
  1054. },
  1055. "spectral-bat": {
  1056. name: "Spectral Bat",
  1057. parents: ["bat"]
  1058. },
  1059. "scolipede": {
  1060. name: "Scolipede",
  1061. parents: ["pokemon", "insect"]
  1062. },
  1063. "jackalope": {
  1064. name: "Jackalope",
  1065. parents: ["rabbit", "antelope"]
  1066. },
  1067. "caracal": {
  1068. name: "Caracal",
  1069. parents: ["cat"]
  1070. },
  1071. "stoat": {
  1072. name: "Stoat",
  1073. parents: ["mammal"]
  1074. },
  1075. "african-golden-cat": {
  1076. name: "African Golden Cat",
  1077. parents: ["cat"]
  1078. },
  1079. "gigantosaurus": {
  1080. name: "Gigantosaurus",
  1081. parents: ["dinosaur"]
  1082. },
  1083. "zorgoia": {
  1084. name: "Zorgoia",
  1085. parents: ["mammal"]
  1086. },
  1087. "monitor-lizard": {
  1088. name: "Monitor Lizard",
  1089. parents: ["lizard"]
  1090. },
  1091. "ziralkia": {
  1092. name: "Ziralkia",
  1093. parents: ["mammal"]
  1094. },
  1095. "kiiasi": {
  1096. name: "Kiiasi",
  1097. parents: ["animal"]
  1098. },
  1099. "synx": {
  1100. name: "Synx",
  1101. parents: ["monster"]
  1102. },
  1103. "panther": {
  1104. name: "Panther",
  1105. parents: ["cat"]
  1106. },
  1107. "azumarill": {
  1108. name: "Azumarill",
  1109. parents: ["pokemon"]
  1110. },
  1111. "river-snaptail": {
  1112. name: "River Snaptail",
  1113. parents: ["otter", "crocodile"]
  1114. },
  1115. "great-blue-heron": {
  1116. name: "Great Blue Heron",
  1117. parents: ["avian"]
  1118. },
  1119. "smeargle": {
  1120. name: "Smeargle",
  1121. parents: ["pokemon"]
  1122. },
  1123. "vendeilen": {
  1124. name: "Vendeilen",
  1125. parents: ["monster"]
  1126. },
  1127. "ventura": {
  1128. name: "Ventura",
  1129. parents: ["canine"]
  1130. },
  1131. "clouded-leopard": {
  1132. name: "Clouded Leopard",
  1133. parents: ["leopard"]
  1134. },
  1135. "argonian": {
  1136. name: "Argonian",
  1137. parents: ["lizard"]
  1138. },
  1139. "salazzle": {
  1140. name: "Salazzle",
  1141. parents: ["pokemon", "lizard"]
  1142. },
  1143. "je-stoff-drachen": {
  1144. name: "Je-Stoff Drachen",
  1145. parents: ["dragon"]
  1146. },
  1147. "finnish-spitz-dog": {
  1148. name: "Finnish Spitz Dog",
  1149. parents: ["dog"]
  1150. },
  1151. "gray-fox": {
  1152. name: "Gray Fox",
  1153. parents: ["fox"]
  1154. },
  1155. "opossum": {
  1156. name: "Opossum",
  1157. parents: ["mammal"]
  1158. },
  1159. "antelope": {
  1160. name: "Antelope",
  1161. parents: ["mammal"]
  1162. },
  1163. "weavile": {
  1164. name: "Weavile",
  1165. parents: ["pokemon"]
  1166. },
  1167. "pikachu": {
  1168. name: "Pikachu",
  1169. parents: ["pokemon", "mouse"]
  1170. },
  1171. "grovyle": {
  1172. name: "Grovyle",
  1173. parents: ["pokemon", "plant"]
  1174. },
  1175. "sthara": {
  1176. name: "Sthara",
  1177. parents: ["snow-leopard", "reptile"]
  1178. },
  1179. "star-warrior": {
  1180. name: "Star Warrior",
  1181. parents: ["magical"]
  1182. },
  1183. "dragonoid": {
  1184. name: "Dragonoid",
  1185. parents: ["dragon"]
  1186. },
  1187. "suicune": {
  1188. name: "Suicune",
  1189. parents: ["pokemon"]
  1190. },
  1191. "vole": {
  1192. name: "Vole",
  1193. parents: ["mammal"]
  1194. },
  1195. "blaziken": {
  1196. name: "Blaziken",
  1197. parents: ["pokemon", "avian"]
  1198. },
  1199. "buizel": {
  1200. name: "Buizel",
  1201. parents: ["pokemon", "fish"]
  1202. },
  1203. "floatzel": {
  1204. name: "Floatzel",
  1205. parents: ["pokemon", "fish"]
  1206. },
  1207. "umok": {
  1208. name: "Umok",
  1209. parents: ["avian"]
  1210. },
  1211. "sea-monster": {
  1212. name: "Sea Monster",
  1213. parents: ["monster", "fish"]
  1214. },
  1215. "egyptian-vulture": {
  1216. name: "Egyptian Vulture",
  1217. parents: ["avian"]
  1218. },
  1219. "doberman": {
  1220. name: "Doberman",
  1221. parents: ["dog"]
  1222. },
  1223. "zangoose": {
  1224. name: "Zangoose",
  1225. parents: ["pokemon", "mongoose"]
  1226. },
  1227. "mongoose": {
  1228. name: "Mongoose",
  1229. parents: ["mammal"]
  1230. },
  1231. "wickerbeast": {
  1232. name: "Wickerbeast",
  1233. parents: ["monster"]
  1234. },
  1235. "zenari": {
  1236. name: "Zenari",
  1237. parents: ["lizard"]
  1238. },
  1239. "plant": {
  1240. name: "Plant",
  1241. parents: []
  1242. },
  1243. "raskatox": {
  1244. name: "Raskatox",
  1245. parents: ["raccoon", "skunk", "cat", "fox"]
  1246. },
  1247. "mikromare": {
  1248. name: "mikromare",
  1249. parents: ["alien"]
  1250. },
  1251. "alien": {
  1252. name: "Alien",
  1253. parents: ["animal"]
  1254. },
  1255. "deity": {
  1256. name: "Deity",
  1257. parents: []
  1258. },
  1259. "skarlan": {
  1260. name: "Skarlan",
  1261. parents: ["slug", "dragon"]
  1262. },
  1263. "slug": {
  1264. name: "Slug",
  1265. parents: ["mollusk"]
  1266. },
  1267. "mollusk": {
  1268. name: "Mollusk",
  1269. parents: ["animal"]
  1270. },
  1271. "chimera": {
  1272. name: "Chimera",
  1273. parents: ["monster"]
  1274. },
  1275. "gestalt": {
  1276. name: "Gestalt",
  1277. parents: ["construct"]
  1278. },
  1279. "mimic": {
  1280. name: "Mimic",
  1281. parents: ["monster"]
  1282. },
  1283. "calico-rat": {
  1284. name: "Calico Rat",
  1285. parents: ["rat"]
  1286. },
  1287. "panda": {
  1288. name: "Panda",
  1289. parents: ["mammal"]
  1290. },
  1291. "oni": {
  1292. name: "Oni",
  1293. parents: ["monster"]
  1294. },
  1295. "pegasus": {
  1296. name: "Pegasus",
  1297. parents: ["horse"]
  1298. },
  1299. "vulpera": {
  1300. name: "Vulpera",
  1301. parents: ["fennec-fox"]
  1302. },
  1303. "ceratosaurus": {
  1304. name: "Ceratosaurus",
  1305. parents: ["dinosaur"]
  1306. },
  1307. "nykur": {
  1308. name: "Nykur",
  1309. parents: ["horse", "monster"]
  1310. },
  1311. "giraffe": {
  1312. name: "Giraffe",
  1313. parents: ["mammal"]
  1314. },
  1315. "tauren": {
  1316. name: "Tauren",
  1317. parents: ["cow"]
  1318. },
  1319. "draconi": {
  1320. name: "Draconi",
  1321. parents: ["alien", "cat", "cyborg"]
  1322. },
  1323. "dire-wolf": {
  1324. name: "Dire Wolf",
  1325. parents: ["wolf"]
  1326. },
  1327. "ferromorph": {
  1328. name: "Ferromorph",
  1329. parents: ["construct"]
  1330. },
  1331. "meowth": {
  1332. name: "Meowth",
  1333. parents: ["cat", "pokemon"]
  1334. },
  1335. "pavodragon": {
  1336. name: "Pavodragon",
  1337. parents: ["dragon"]
  1338. },
  1339. "aaltranae": {
  1340. name: "Aaltranae",
  1341. parents: ["dragon"]
  1342. },
  1343. "cyborg": {
  1344. name: "Cyborg",
  1345. parents: ["machine"]
  1346. },
  1347. "draptor": {
  1348. name: "Draptor",
  1349. parents: ["dragon"]
  1350. },
  1351. "candy": {
  1352. name: "Candy",
  1353. parents: []
  1354. },
  1355. "drenath": {
  1356. name: "Drenath",
  1357. parents: ["dragon", "snake", "rabbit"]
  1358. },
  1359. "coyju": {
  1360. name: "Coyju",
  1361. parents: ["coyote", "kaiju"]
  1362. },
  1363. "kaiju": {
  1364. name: "Kaiju",
  1365. parents: ["monster"]
  1366. },
  1367. "nickit": {
  1368. name: "Nickit",
  1369. parents: ["pokemon", "cat"]
  1370. },
  1371. "lopunny": {
  1372. name: "Lopunny",
  1373. parents: ["pokemon", "rabbit"]
  1374. },
  1375. "korean-jindo-dog": {
  1376. name: "Korean Jindo Dog",
  1377. parents: ["dog"]
  1378. },
  1379. "naga": {
  1380. name: "Naga",
  1381. parents: ["snake", "monster"]
  1382. },
  1383. "undead": {
  1384. name: "Undead",
  1385. parents: ["monster"]
  1386. },
  1387. "whale": {
  1388. name: "Whale",
  1389. parents: ["fish"]
  1390. },
  1391. "gelato-bee": {
  1392. name: "Gelato Bee",
  1393. parents: ["bee"]
  1394. },
  1395. "bee": {
  1396. name: "Bee",
  1397. parents: ["insect"]
  1398. },
  1399. "gardevoir": {
  1400. name: "Gardevoir",
  1401. parents: ["pokemon"]
  1402. },
  1403. "ant": {
  1404. name: "Ant",
  1405. parents: ["insect"]
  1406. },
  1407. "frog": {
  1408. name: "Frog",
  1409. parents: ["amphibian"]
  1410. },
  1411. "amphibian": {
  1412. name: "Amphibian",
  1413. parents: ["animal"]
  1414. },
  1415. "pangolin": {
  1416. name: "Pangolin",
  1417. parents: ["mammal"]
  1418. },
  1419. "uragi'viidorn": {
  1420. name: "Uragi'viidorn",
  1421. parents: ["avian", "bear"]
  1422. },
  1423. "gryphdelphais": {
  1424. name: "Gryphdelphais",
  1425. parents: ["dolphin", "gryphon"]
  1426. },
  1427. "plush": {
  1428. name: "Plush",
  1429. parents: ["construct"]
  1430. },
  1431. "draiger": {
  1432. name: "Draiger",
  1433. parents: ["dragon","tiger"]
  1434. },
  1435. "foxsky": {
  1436. name: "Foxsky",
  1437. parents: ["fox", "husky"]
  1438. },
  1439. "umbreon": {
  1440. name: "Umbreon",
  1441. parents: ["eeveelution"]
  1442. },
  1443. "slime-dragon": {
  1444. name: "Slime Dragon",
  1445. parents: ["dragon", "goo"]
  1446. },
  1447. "enderman": {
  1448. name: "Enderman",
  1449. parents: ["monster"]
  1450. },
  1451. "gremlin": {
  1452. name: "Gremlin",
  1453. parents: ["monster"]
  1454. },
  1455. "dragonsune": {
  1456. name: "Dragonsune",
  1457. parents: ["dragon", "kitsune"]
  1458. },
  1459. "ghost": {
  1460. name: "Ghost",
  1461. parents: ["supernatural"]
  1462. },
  1463. "false-vampire-bat": {
  1464. name: "False Vampire Bat",
  1465. parents: ["bat"]
  1466. },
  1467. "succubus": {
  1468. name: "Succubus",
  1469. parents: ["demon"]
  1470. },
  1471. "mia": {
  1472. name: "Mia",
  1473. parents: ["canine"]
  1474. },
  1475. "rainbow": {
  1476. name: "Rainbow",
  1477. parents: ["monster"]
  1478. },
  1479. "solgaleo": {
  1480. name: "Solgaleo",
  1481. parents: ["pokemon"]
  1482. },
  1483. "lucent-nargacuga": {
  1484. name: "Lucent Nargacuga",
  1485. parents: ["monster-hunter"]
  1486. },
  1487. "monster-hunter": {
  1488. name: "Monster Hunter",
  1489. parents: ["monster"]
  1490. },
  1491. "leviathan": {
  1492. "name": "Leviathan",
  1493. "url": "sea-monster"
  1494. },
  1495. "bull": {
  1496. name: "Bull",
  1497. parents: ["mammal"]
  1498. },
  1499. "tanuki": {
  1500. name: "Tanuki",
  1501. parents: ["monster"]
  1502. },
  1503. "chakat": {
  1504. name: "Chakat",
  1505. parents: ["cat"]
  1506. },
  1507. "hydra": {
  1508. name: "Hydra",
  1509. parents: ["monster"]
  1510. },
  1511. "zigzagoon": {
  1512. name: "Zigzagoon",
  1513. parents: ["raccoon", "pokemon"]
  1514. },
  1515. "vulture": {
  1516. name: "Vulture",
  1517. parents: ["avian"]
  1518. },
  1519. "eastern-dragon": {
  1520. name: "Eastern Dragon",
  1521. parents: ["dragon"]
  1522. },
  1523. "gryffon": {
  1524. name: "Gryffon",
  1525. parents: ["phoenix", "red-panda"]
  1526. },
  1527. "amtsvane": {
  1528. name: "Amtsvane",
  1529. parents: ["reptile"]
  1530. },
  1531. "kigavi": {
  1532. name: "Kigavi",
  1533. parents: ["avian"]
  1534. },
  1535. "turian": {
  1536. name: "Turian",
  1537. parents: ["avian"]
  1538. },
  1539. "zeraora": {
  1540. name: "Zeraora",
  1541. parents: ["pokemon"]
  1542. },
  1543. "sandshrew": {
  1544. name: "Sandshrew",
  1545. parents: ["pokemon", "pangolin"]
  1546. },
  1547. "valais-blacknose-sheep": {
  1548. name: "Valais Blacknose Sheep",
  1549. parents: ["sheep"]
  1550. },
  1551. "novaleit": {
  1552. name: "Novaleit",
  1553. parents: ["mammal"]
  1554. },
  1555. "dunnoh": {
  1556. name: "Dunnoh",
  1557. parents: ["mammal"]
  1558. },
  1559. "lunaral-dragon": {
  1560. name: "Lunaral Dragon",
  1561. parents: ["dragon"]
  1562. },
  1563. "arctic-wolf": {
  1564. name: "Arctic Wolf",
  1565. parents: ["wolf"]
  1566. },
  1567. "donkey": {
  1568. name: "Donkey",
  1569. parents: ["horse"]
  1570. },
  1571. "chinchilla": {
  1572. name: "Chinchilla",
  1573. parents: ["rodent"]
  1574. },
  1575. "felkin": {
  1576. name: "Felkin",
  1577. parents: ["dragon"]
  1578. },
  1579. "tykeriel": {
  1580. name: "Tykeriel",
  1581. parents: ["avian"]
  1582. },
  1583. "folf": {
  1584. name: "Folf",
  1585. parents: ["fox", "wolf"]
  1586. },
  1587. "pooltoy": {
  1588. name: "Pooltoy",
  1589. parents: ["construct"]
  1590. },
  1591. "demi": {
  1592. name: "Demi",
  1593. parents: ["human"]
  1594. },
  1595. "stegosaurus": {
  1596. name: "Stegosaurus",
  1597. parents: ["dinosaur"]
  1598. },
  1599. "computer-virus": {
  1600. name: "Computer Virus",
  1601. parents: ["program"]
  1602. },
  1603. "program": {
  1604. name: "Program",
  1605. parents: ["construct"]
  1606. },
  1607. "space-springhare": {
  1608. name: "Space Springhare",
  1609. parents: ["rabbit"]
  1610. },
  1611. "river-drake": {
  1612. name: "River Drake",
  1613. parents: ["dragon"]
  1614. },
  1615. "djinn": {
  1616. "name": "Djinn",
  1617. "url": "supernatural"
  1618. },
  1619. "supernatural": {
  1620. name: "Supernatural",
  1621. parents: ["monster"]
  1622. },
  1623. "grasshopper-mouse": {
  1624. name: "Grasshopper Mouse",
  1625. parents: ["mouse"]
  1626. },
  1627. "somali-cat": {
  1628. name: "Somali Cat",
  1629. parents: ["cat"]
  1630. },
  1631. "minccino": {
  1632. name: "Minccino",
  1633. parents: ["pokemon", "chinchilla"]
  1634. },
  1635. "pine-marten": {
  1636. name: "Pine Marten",
  1637. parents: ["marten"]
  1638. },
  1639. "marten": {
  1640. name: "Marten",
  1641. parents: ["mustelid"]
  1642. },
  1643. "mustelid": {
  1644. name: "Mustelid",
  1645. parents: ["mammal"]
  1646. },
  1647. "caribou": {
  1648. name: "Caribou",
  1649. parents: ["deer"]
  1650. },
  1651. "gnoll": {
  1652. name: "Gnoll",
  1653. parents: ["hyena", "monster"]
  1654. },
  1655. "peacekeeper": {
  1656. name: "Peacekeeper",
  1657. parents: ["human"]
  1658. },
  1659. "river-otter": {
  1660. name: "River Otter",
  1661. parents: ["otter"]
  1662. },
  1663. "dhole": {
  1664. name: "Dhole",
  1665. parents: ["canine"]
  1666. },
  1667. "springbok": {
  1668. name: "Springbok",
  1669. parents: ["antelope"]
  1670. },
  1671. "marsupial": {
  1672. name: "Marsupial",
  1673. parents: ["mammal"]
  1674. },
  1675. "townsend-big-eared-bat": {
  1676. name: "Townsend Big-eared Bat",
  1677. parents: ["bat"]
  1678. },
  1679. "squirrel": {
  1680. name: "Squirrel",
  1681. parents: ["rodent"]
  1682. },
  1683. "magpie": {
  1684. name: "Magpie",
  1685. parents: ["corvid"]
  1686. },
  1687. "civet": {
  1688. name: "Civet",
  1689. parents: ["feliform"]
  1690. },
  1691. "feliform": {
  1692. name: "Feliform",
  1693. parents: ["mammal"]
  1694. },
  1695. "tiefling": {
  1696. name: "Tiefling",
  1697. parents: ["devil"]
  1698. },
  1699. "devil": {
  1700. name: "Devil",
  1701. parents: ["supernatural"]
  1702. },
  1703. "sika-deer": {
  1704. name: "Sika Deer",
  1705. parents: ["deer"]
  1706. },
  1707. "vaporeon": {
  1708. name: "Vaporeon",
  1709. parents: ["eeveelution"]
  1710. },
  1711. "leafeon": {
  1712. name: "Leafeon",
  1713. parents: ["eeveelution"]
  1714. },
  1715. "jolteon": {
  1716. name: "Jolteon",
  1717. parents: ["eeveelution"]
  1718. },
  1719. "spireborn": {
  1720. name: "Spireborn",
  1721. parents: ["zorgoia"]
  1722. },
  1723. "vampire": {
  1724. name: "Vampire",
  1725. parents: ["monster"]
  1726. },
  1727. "extraplanar": {
  1728. name: "Extraplanar",
  1729. parents: []
  1730. },
  1731. "goo": {
  1732. name: "Goo",
  1733. parents: []
  1734. },
  1735. "skink": {
  1736. name: "Skink",
  1737. parents: ["lizard"]
  1738. },
  1739. "bat-eared-fox": {
  1740. name: "Bat-eared Fox",
  1741. parents: ["fox"]
  1742. },
  1743. "belted-kingfisher": {
  1744. name: "Belted Kingfisher",
  1745. parents: ["avian"]
  1746. },
  1747. "omnifalcon": {
  1748. name: "Omnifalcon",
  1749. parents: ["gryphon", "falcon", "harpy-eagle"]
  1750. },
  1751. "falcon": {
  1752. name: "Falcon",
  1753. parents: ["avian"]
  1754. },
  1755. "avali": {
  1756. name: "Avali",
  1757. parents: ["avian", "alien"]
  1758. },
  1759. "arctic-fox": {
  1760. name: "Arctic Fox",
  1761. parents: ["fox"]
  1762. },
  1763. "snow-tiger": {
  1764. name: "Snow Tiger",
  1765. parents: ["tiger"]
  1766. },
  1767. "marble-fox": {
  1768. name: "Marble Fox",
  1769. parents: ["fox"]
  1770. },
  1771. "king-wickerbeast": {
  1772. name: "King Wickerbeast",
  1773. parents: ["wickerbeast"]
  1774. },
  1775. "wickerbeast": {
  1776. name: "Wickerbeast",
  1777. parents: ["mammal"]
  1778. },
  1779. "european-polecat": {
  1780. name: "European Polecat",
  1781. parents: ["mustelid"]
  1782. },
  1783. "teshari": {
  1784. name: "Teshari",
  1785. parents: ["avian", "raptor"]
  1786. },
  1787. "alicorn": {
  1788. name: "Alicorn",
  1789. parents: ["horse"]
  1790. },
  1791. "atlas-moth": {
  1792. name: "Atlas Moth",
  1793. parents: ["moth"]
  1794. },
  1795. "owlbear": {
  1796. name: "Owlbear",
  1797. parents: ["owl", "bear", "monster"]
  1798. },
  1799. "owl": {
  1800. name: "Owl",
  1801. parents: ["avian"]
  1802. },
  1803. "silvertongue": {
  1804. name: "Silvertongue",
  1805. parents: ["reptile"]
  1806. },
  1807. "ahuizotl": {
  1808. name: "Ahuizotl",
  1809. parents: ["monster"]
  1810. },
  1811. "ender-dragon": {
  1812. name: "Ender Dragon",
  1813. parents: ["dragon"]
  1814. },
  1815. "bruhathkayosaurus": {
  1816. name: "Bruhathkayosaurus",
  1817. parents: ["sauropod"]
  1818. },
  1819. "sauropod": {
  1820. name: "Sauropod",
  1821. parents: ["dinosaur"]
  1822. },
  1823. "black-sable-antelope": {
  1824. name: "Black Sable Antelope",
  1825. parents: ["antelope"]
  1826. },
  1827. "slime": {
  1828. name: "Slime",
  1829. parents: ["goo"]
  1830. },
  1831. }
  1832. //species
  1833. function getSpeciesInfo(speciesList) {
  1834. let result = new Set();
  1835. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1836. result.add(entry)
  1837. });
  1838. return Array.from(result);
  1839. };
  1840. function getSpeciesInfoHelper(species) {
  1841. if (!speciesData[species]) {
  1842. console.warn(species + " doesn't exist");
  1843. return [];
  1844. }
  1845. if (speciesData[species].parents) {
  1846. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1847. } else {
  1848. return [species];
  1849. }
  1850. }
  1851. characterMakers.push(() => makeCharacter(
  1852. {
  1853. name: "Fen",
  1854. species: ["crux"],
  1855. description: {
  1856. title: "Bio",
  1857. text: "Very furry. Sheds on everything."
  1858. },
  1859. tags: [
  1860. "anthro",
  1861. "goo"
  1862. ]
  1863. },
  1864. {
  1865. front: {
  1866. height: math.unit(12, "feet"),
  1867. weight: math.unit(1600, "lb"),
  1868. name: "Front",
  1869. image: {
  1870. source: "./media/characters/fen/front.svg",
  1871. extra: 1804/1562,
  1872. bottom: 205/2009
  1873. }
  1874. },
  1875. diving: {
  1876. height: math.unit(4.9, "meters"),
  1877. weight: math.unit(1600, "lb"),
  1878. name: "Diving",
  1879. image: {
  1880. source: "./media/characters/fen/diving.svg"
  1881. }
  1882. },
  1883. goo: {
  1884. height: math.unit(12, "feet"),
  1885. weight: math.unit(1600, "lb"),
  1886. capacity: math.unit(6, "people"),
  1887. name: "Goo",
  1888. image: {
  1889. source: "./media/characters/fen/goo.svg",
  1890. extra: 1307/1071,
  1891. bottom: 134/1441
  1892. }
  1893. },
  1894. maw: {
  1895. height: math.unit(5.03, "feet"),
  1896. name: "Maw",
  1897. image: {
  1898. source: "./media/characters/fen/maw.svg"
  1899. }
  1900. },
  1901. gooCeiling: {
  1902. height: math.unit(6.6, "feet"),
  1903. weight: math.unit(1600, "lb"),
  1904. capacity: math.unit(6, "people"),
  1905. name: "Goo (Ceiling)",
  1906. image: {
  1907. source: "./media/characters/fen/goo-ceiling.svg"
  1908. }
  1909. },
  1910. back: {
  1911. height: math.unit(12, "feet"),
  1912. weight: math.unit(1600, "lb"),
  1913. name: "Back",
  1914. image: {
  1915. source: "./media/characters/fen/back.svg",
  1916. },
  1917. info: {
  1918. description: {
  1919. mode: "append",
  1920. text: "\n\nHe is not currently looking at you."
  1921. }
  1922. }
  1923. },
  1924. full: {
  1925. height: math.unit(1.6, "meter"),
  1926. weight: math.unit(2200, "lb"),
  1927. name: "Full",
  1928. image: {
  1929. source: "./media/characters/fen/full.svg",
  1930. extra: 1133/859,
  1931. bottom: 145/1278
  1932. },
  1933. info: {
  1934. description: {
  1935. mode: "append",
  1936. text: "\n\nMunch."
  1937. }
  1938. }
  1939. },
  1940. gooLounging: {
  1941. height: math.unit(4.53, "feet"),
  1942. weight: math.unit(1600, "lb"),
  1943. capacity: math.unit(6, "people"),
  1944. name: "Goo (Lounging)",
  1945. image: {
  1946. source: "./media/characters/fen/goo.svg",
  1947. bottom: 116 / 613
  1948. }
  1949. },
  1950. lounging: {
  1951. height: math.unit(10.52, "feet"),
  1952. weight: math.unit(1600, "lb"),
  1953. name: "Lounging",
  1954. image: {
  1955. source: "./media/characters/fen/lounging.svg"
  1956. }
  1957. },
  1958. },
  1959. [
  1960. {
  1961. name: "Small",
  1962. height: math.unit(2.2428, "meter")
  1963. },
  1964. {
  1965. name: "Normal",
  1966. height: math.unit(12, "feet"),
  1967. default: true,
  1968. },
  1969. {
  1970. name: "Big",
  1971. height: math.unit(20, "feet")
  1972. },
  1973. {
  1974. name: "Minimacro",
  1975. height: math.unit(40, "feet"),
  1976. info: {
  1977. description: {
  1978. mode: "append",
  1979. text: "\n\nTOO DAMN BIG"
  1980. }
  1981. }
  1982. },
  1983. {
  1984. name: "Macro",
  1985. height: math.unit(100, "feet"),
  1986. info: {
  1987. description: {
  1988. mode: "append",
  1989. text: "\n\nTOO DAMN BIG"
  1990. }
  1991. }
  1992. },
  1993. {
  1994. name: "Megamacro",
  1995. height: math.unit(2, "miles")
  1996. },
  1997. {
  1998. name: "Gigamacro",
  1999. height: math.unit(10, "earths")
  2000. },
  2001. ]
  2002. ))
  2003. characterMakers.push(() => makeCharacter(
  2004. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2005. {
  2006. front: {
  2007. height: math.unit(183, "cm"),
  2008. weight: math.unit(80, "kg"),
  2009. name: "Front",
  2010. image: {
  2011. source: "./media/characters/sofia-fluttertail/front.svg",
  2012. bottom: 0.01,
  2013. extra: 2154 / 2081
  2014. }
  2015. },
  2016. frontAlt: {
  2017. height: math.unit(183, "cm"),
  2018. weight: math.unit(80, "kg"),
  2019. name: "Front (alt)",
  2020. image: {
  2021. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2022. }
  2023. },
  2024. back: {
  2025. height: math.unit(183, "cm"),
  2026. weight: math.unit(80, "kg"),
  2027. name: "Back",
  2028. image: {
  2029. source: "./media/characters/sofia-fluttertail/back.svg"
  2030. }
  2031. },
  2032. kneeling: {
  2033. height: math.unit(125, "cm"),
  2034. weight: math.unit(80, "kg"),
  2035. name: "Kneeling",
  2036. image: {
  2037. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2038. extra: 1033 / 977,
  2039. bottom: 23.7 / 1057
  2040. }
  2041. },
  2042. maw: {
  2043. height: math.unit(183 / 5, "cm"),
  2044. name: "Maw",
  2045. image: {
  2046. source: "./media/characters/sofia-fluttertail/maw.svg"
  2047. }
  2048. },
  2049. mawcloseup: {
  2050. height: math.unit(183 / 5 * 0.41, "cm"),
  2051. name: "Maw (Closeup)",
  2052. image: {
  2053. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2054. }
  2055. },
  2056. paws: {
  2057. height: math.unit(1.17, "feet"),
  2058. name: "Paws",
  2059. image: {
  2060. source: "./media/characters/sofia-fluttertail/paws.svg",
  2061. extra: 851 / 851,
  2062. bottom: 17 / 868
  2063. }
  2064. },
  2065. },
  2066. [
  2067. {
  2068. name: "Normal",
  2069. height: math.unit(1.83, "meter")
  2070. },
  2071. {
  2072. name: "Size Thief",
  2073. height: math.unit(18, "feet")
  2074. },
  2075. {
  2076. name: "50 Foot Collie",
  2077. height: math.unit(50, "feet")
  2078. },
  2079. {
  2080. name: "Macro",
  2081. height: math.unit(96, "feet"),
  2082. default: true
  2083. },
  2084. {
  2085. name: "Megamerger",
  2086. height: math.unit(650, "feet")
  2087. },
  2088. ]
  2089. ))
  2090. characterMakers.push(() => makeCharacter(
  2091. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2092. {
  2093. front: {
  2094. height: math.unit(7, "feet"),
  2095. weight: math.unit(100, "kg"),
  2096. name: "Front",
  2097. image: {
  2098. source: "./media/characters/march/front.svg",
  2099. extra: 1992/1851,
  2100. bottom: 39/2031
  2101. }
  2102. },
  2103. foot: {
  2104. height: math.unit(0.9, "feet"),
  2105. name: "Foot",
  2106. image: {
  2107. source: "./media/characters/march/foot.svg"
  2108. }
  2109. },
  2110. },
  2111. [
  2112. {
  2113. name: "Normal",
  2114. height: math.unit(7.9, "feet")
  2115. },
  2116. {
  2117. name: "Macro",
  2118. height: math.unit(220, "meters")
  2119. },
  2120. {
  2121. name: "Megamacro",
  2122. height: math.unit(2.98, "km"),
  2123. default: true
  2124. },
  2125. {
  2126. name: "Gigamacro",
  2127. height: math.unit(15963, "km")
  2128. },
  2129. {
  2130. name: "Teramacro",
  2131. height: math.unit(2980000000, "km")
  2132. },
  2133. {
  2134. name: "Examacro",
  2135. height: math.unit(250, "parsecs")
  2136. },
  2137. ]
  2138. ))
  2139. characterMakers.push(() => makeCharacter(
  2140. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2141. {
  2142. front: {
  2143. height: math.unit(6, "feet"),
  2144. weight: math.unit(60, "kg"),
  2145. name: "Front",
  2146. image: {
  2147. source: "./media/characters/noir/front.svg",
  2148. extra: 1,
  2149. bottom: 0.032
  2150. }
  2151. },
  2152. },
  2153. [
  2154. {
  2155. name: "Normal",
  2156. height: math.unit(6.6, "feet")
  2157. },
  2158. {
  2159. name: "Macro",
  2160. height: math.unit(500, "feet")
  2161. },
  2162. {
  2163. name: "Megamacro",
  2164. height: math.unit(2.5, "km"),
  2165. default: true
  2166. },
  2167. {
  2168. name: "Gigamacro",
  2169. height: math.unit(22500, "km")
  2170. },
  2171. {
  2172. name: "Teramacro",
  2173. height: math.unit(2500000000, "km")
  2174. },
  2175. {
  2176. name: "Examacro",
  2177. height: math.unit(200, "parsecs")
  2178. },
  2179. ]
  2180. ))
  2181. characterMakers.push(() => makeCharacter(
  2182. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2183. {
  2184. front: {
  2185. height: math.unit(7, "feet"),
  2186. weight: math.unit(100, "kg"),
  2187. name: "Front",
  2188. image: {
  2189. source: "./media/characters/okuri/front.svg",
  2190. extra: 1,
  2191. bottom: 0.037
  2192. }
  2193. },
  2194. back: {
  2195. height: math.unit(7, "feet"),
  2196. weight: math.unit(100, "kg"),
  2197. name: "Back",
  2198. image: {
  2199. source: "./media/characters/okuri/back.svg",
  2200. extra: 1,
  2201. bottom: 0.007
  2202. }
  2203. },
  2204. },
  2205. [
  2206. {
  2207. name: "Megamacro",
  2208. height: math.unit(100, "miles"),
  2209. default: true
  2210. },
  2211. ]
  2212. ))
  2213. characterMakers.push(() => makeCharacter(
  2214. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2215. {
  2216. front: {
  2217. height: math.unit(7, "feet"),
  2218. weight: math.unit(100, "kg"),
  2219. name: "Front",
  2220. image: {
  2221. source: "./media/characters/manny/front.svg",
  2222. extra: 1,
  2223. bottom: 0.06
  2224. }
  2225. },
  2226. back: {
  2227. height: math.unit(7, "feet"),
  2228. weight: math.unit(100, "kg"),
  2229. name: "Back",
  2230. image: {
  2231. source: "./media/characters/manny/back.svg",
  2232. extra: 1,
  2233. bottom: 0.014
  2234. }
  2235. },
  2236. },
  2237. [
  2238. {
  2239. name: "Normal",
  2240. height: math.unit(7, "feet"),
  2241. },
  2242. {
  2243. name: "Macro",
  2244. height: math.unit(78, "feet"),
  2245. default: true
  2246. },
  2247. {
  2248. name: "Macro+",
  2249. height: math.unit(300, "meters")
  2250. },
  2251. {
  2252. name: "Macro++",
  2253. height: math.unit(2400, "meters")
  2254. },
  2255. {
  2256. name: "Megamacro",
  2257. height: math.unit(5167, "meters")
  2258. },
  2259. {
  2260. name: "Gigamacro",
  2261. height: math.unit(41769, "miles")
  2262. },
  2263. ]
  2264. ))
  2265. characterMakers.push(() => makeCharacter(
  2266. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2267. {
  2268. front: {
  2269. height: math.unit(7, "feet"),
  2270. weight: math.unit(100, "kg"),
  2271. name: "Front",
  2272. image: {
  2273. source: "./media/characters/adake/front-1.svg"
  2274. }
  2275. },
  2276. frontAlt: {
  2277. height: math.unit(7, "feet"),
  2278. weight: math.unit(100, "kg"),
  2279. name: "Front (Alt)",
  2280. image: {
  2281. source: "./media/characters/adake/front-2.svg",
  2282. extra: 1,
  2283. bottom: 0.01
  2284. }
  2285. },
  2286. back: {
  2287. height: math.unit(7, "feet"),
  2288. weight: math.unit(100, "kg"),
  2289. name: "Back",
  2290. image: {
  2291. source: "./media/characters/adake/back.svg",
  2292. }
  2293. },
  2294. kneel: {
  2295. height: math.unit(5.385, "feet"),
  2296. weight: math.unit(100, "kg"),
  2297. name: "Kneeling",
  2298. image: {
  2299. source: "./media/characters/adake/kneel.svg",
  2300. bottom: 0.052
  2301. }
  2302. },
  2303. },
  2304. [
  2305. {
  2306. name: "Normal",
  2307. height: math.unit(7, "feet"),
  2308. },
  2309. {
  2310. name: "Macro",
  2311. height: math.unit(78, "feet"),
  2312. default: true
  2313. },
  2314. {
  2315. name: "Macro+",
  2316. height: math.unit(300, "meters")
  2317. },
  2318. {
  2319. name: "Macro++",
  2320. height: math.unit(2400, "meters")
  2321. },
  2322. {
  2323. name: "Megamacro",
  2324. height: math.unit(5167, "meters")
  2325. },
  2326. {
  2327. name: "Gigamacro",
  2328. height: math.unit(41769, "miles")
  2329. },
  2330. ]
  2331. ))
  2332. characterMakers.push(() => makeCharacter(
  2333. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2334. {
  2335. front: {
  2336. height: math.unit(1.65, "meters"),
  2337. weight: math.unit(50, "kg"),
  2338. name: "Front",
  2339. image: {
  2340. source: "./media/characters/elijah/front.svg",
  2341. extra: 858 / 830,
  2342. bottom: 95.5 / 953.8559
  2343. }
  2344. },
  2345. back: {
  2346. height: math.unit(1.65, "meters"),
  2347. weight: math.unit(50, "kg"),
  2348. name: "Back",
  2349. image: {
  2350. source: "./media/characters/elijah/back.svg",
  2351. extra: 895 / 850,
  2352. bottom: 5.3 / 897.956
  2353. }
  2354. },
  2355. frontNsfw: {
  2356. height: math.unit(1.65, "meters"),
  2357. weight: math.unit(50, "kg"),
  2358. name: "Front (NSFW)",
  2359. image: {
  2360. source: "./media/characters/elijah/front-nsfw.svg",
  2361. extra: 858 / 830,
  2362. bottom: 95.5 / 953.8559
  2363. }
  2364. },
  2365. backNsfw: {
  2366. height: math.unit(1.65, "meters"),
  2367. weight: math.unit(50, "kg"),
  2368. name: "Back (NSFW)",
  2369. image: {
  2370. source: "./media/characters/elijah/back-nsfw.svg",
  2371. extra: 895 / 850,
  2372. bottom: 5.3 / 897.956
  2373. }
  2374. },
  2375. dick: {
  2376. height: math.unit(1, "feet"),
  2377. name: "Dick",
  2378. image: {
  2379. source: "./media/characters/elijah/dick.svg"
  2380. }
  2381. },
  2382. beakOpen: {
  2383. height: math.unit(1.25, "feet"),
  2384. name: "Beak (Open)",
  2385. image: {
  2386. source: "./media/characters/elijah/beak-open.svg"
  2387. }
  2388. },
  2389. beakShut: {
  2390. height: math.unit(1.25, "feet"),
  2391. name: "Beak (Shut)",
  2392. image: {
  2393. source: "./media/characters/elijah/beak-shut.svg"
  2394. }
  2395. },
  2396. footFlexing: {
  2397. height: math.unit(1.61, "feet"),
  2398. name: "Foot (Flexing)",
  2399. image: {
  2400. source: "./media/characters/elijah/foot-flexing.svg"
  2401. }
  2402. },
  2403. footStepping: {
  2404. height: math.unit(1.44, "feet"),
  2405. name: "Foot (Stepping)",
  2406. image: {
  2407. source: "./media/characters/elijah/foot-stepping.svg"
  2408. }
  2409. },
  2410. plantigradeLeg: {
  2411. height: math.unit(2.34, "feet"),
  2412. name: "Plantigrade Leg",
  2413. image: {
  2414. source: "./media/characters/elijah/plantigrade-leg.svg"
  2415. }
  2416. },
  2417. plantigradeFootLeft: {
  2418. height: math.unit(0.9, "feet"),
  2419. name: "Plantigrade Foot (Left)",
  2420. image: {
  2421. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2422. }
  2423. },
  2424. plantigradeFootRight: {
  2425. height: math.unit(0.9, "feet"),
  2426. name: "Plantigrade Foot (Right)",
  2427. image: {
  2428. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2429. }
  2430. },
  2431. },
  2432. [
  2433. {
  2434. name: "Normal",
  2435. height: math.unit(1.65, "meters")
  2436. },
  2437. {
  2438. name: "Macro",
  2439. height: math.unit(55, "meters"),
  2440. default: true
  2441. },
  2442. {
  2443. name: "Macro+",
  2444. height: math.unit(105, "meters")
  2445. },
  2446. ]
  2447. ))
  2448. characterMakers.push(() => makeCharacter(
  2449. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2450. {
  2451. front: {
  2452. height: math.unit(7 + 2/12, "feet"),
  2453. weight: math.unit(320, "kg"),
  2454. name: "Front",
  2455. image: {
  2456. source: "./media/characters/rai/front.svg",
  2457. extra: 1802/1696,
  2458. bottom: 68/1870
  2459. }
  2460. },
  2461. frontDressed: {
  2462. height: math.unit(7 + 2/12, "feet"),
  2463. weight: math.unit(320, "kg"),
  2464. name: "Front (Dressed)",
  2465. image: {
  2466. source: "./media/characters/rai/front-dressed.svg",
  2467. extra: 1802/1696,
  2468. bottom: 68/1870
  2469. }
  2470. },
  2471. side: {
  2472. height: math.unit(7 + 2/12, "feet"),
  2473. weight: math.unit(320, "kg"),
  2474. name: "Side",
  2475. image: {
  2476. source: "./media/characters/rai/side.svg",
  2477. extra: 1789/1710,
  2478. bottom: 115/1904
  2479. }
  2480. },
  2481. back: {
  2482. height: math.unit(7 + 2/12, "feet"),
  2483. weight: math.unit(320, "kg"),
  2484. name: "Back",
  2485. image: {
  2486. source: "./media/characters/rai/back.svg",
  2487. extra: 1770/1707,
  2488. bottom: 28/1798
  2489. }
  2490. },
  2491. feral: {
  2492. height: math.unit(9.5, "feet"),
  2493. weight: math.unit(640, "kg"),
  2494. name: "Feral",
  2495. image: {
  2496. source: "./media/characters/rai/feral.svg",
  2497. extra: 945/553,
  2498. bottom: 176/1121
  2499. }
  2500. },
  2501. dragon: {
  2502. height: math.unit(23, "feet"),
  2503. weight: math.unit(50000, "lb"),
  2504. name: "Dragon",
  2505. image: {
  2506. source: "./media/characters/rai/dragon.svg",
  2507. extra: 2498 / 2030,
  2508. bottom: 85.2 / 2584
  2509. }
  2510. },
  2511. maw: {
  2512. height: math.unit(1.69, "feet"),
  2513. name: "Maw",
  2514. image: {
  2515. source: "./media/characters/rai/maw.svg"
  2516. }
  2517. },
  2518. },
  2519. [
  2520. {
  2521. name: "Normal",
  2522. height: math.unit(7 + 2/12, "feet")
  2523. },
  2524. {
  2525. name: "Big",
  2526. height: math.unit(11, "feet")
  2527. },
  2528. {
  2529. name: "Macro",
  2530. height: math.unit(302, "feet"),
  2531. default: true
  2532. },
  2533. ]
  2534. ))
  2535. characterMakers.push(() => makeCharacter(
  2536. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2537. {
  2538. frontDressed: {
  2539. height: math.unit(216, "feet"),
  2540. weight: math.unit(7000000, "lb"),
  2541. name: "Front (Dressed)",
  2542. image: {
  2543. source: "./media/characters/jazzy/front-dressed.svg",
  2544. extra: 2738 / 2651,
  2545. bottom: 41.8 / 2786
  2546. }
  2547. },
  2548. backDressed: {
  2549. height: math.unit(216, "feet"),
  2550. weight: math.unit(7000000, "lb"),
  2551. name: "Back (Dressed)",
  2552. image: {
  2553. source: "./media/characters/jazzy/back-dressed.svg",
  2554. extra: 2775 / 2673,
  2555. bottom: 36.8 / 2817
  2556. }
  2557. },
  2558. front: {
  2559. height: math.unit(216, "feet"),
  2560. weight: math.unit(7000000, "lb"),
  2561. name: "Front",
  2562. image: {
  2563. source: "./media/characters/jazzy/front.svg",
  2564. extra: 2738 / 2651,
  2565. bottom: 41.8 / 2786
  2566. }
  2567. },
  2568. back: {
  2569. height: math.unit(216, "feet"),
  2570. weight: math.unit(7000000, "lb"),
  2571. name: "Back",
  2572. image: {
  2573. source: "./media/characters/jazzy/back.svg",
  2574. extra: 2775 / 2673,
  2575. bottom: 36.8 / 2817
  2576. }
  2577. },
  2578. maw: {
  2579. height: math.unit(20, "feet"),
  2580. name: "Maw",
  2581. image: {
  2582. source: "./media/characters/jazzy/maw.svg"
  2583. }
  2584. },
  2585. paws: {
  2586. height: math.unit(27.5, "feet"),
  2587. name: "Paws",
  2588. image: {
  2589. source: "./media/characters/jazzy/paws.svg"
  2590. }
  2591. },
  2592. eye: {
  2593. height: math.unit(4.4, "feet"),
  2594. name: "Eye",
  2595. image: {
  2596. source: "./media/characters/jazzy/eye.svg"
  2597. }
  2598. },
  2599. droneOffense: {
  2600. height: math.unit(9.5, "inches"),
  2601. name: "Drone (Offense)",
  2602. image: {
  2603. source: "./media/characters/jazzy/drone-offense.svg"
  2604. }
  2605. },
  2606. droneRecon: {
  2607. height: math.unit(9.5, "inches"),
  2608. name: "Drone (Recon)",
  2609. image: {
  2610. source: "./media/characters/jazzy/drone-recon.svg"
  2611. }
  2612. },
  2613. droneDefense: {
  2614. height: math.unit(9.5, "inches"),
  2615. name: "Drone (Defense)",
  2616. image: {
  2617. source: "./media/characters/jazzy/drone-defense.svg"
  2618. }
  2619. },
  2620. },
  2621. [
  2622. {
  2623. name: "Macro",
  2624. height: math.unit(216, "feet"),
  2625. default: true
  2626. },
  2627. ]
  2628. ))
  2629. characterMakers.push(() => makeCharacter(
  2630. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2631. {
  2632. front: {
  2633. height: math.unit(9 + 6/12, "feet"),
  2634. weight: math.unit(700, "lb"),
  2635. name: "Front",
  2636. image: {
  2637. source: "./media/characters/flamm/front.svg",
  2638. extra: 1751/1632,
  2639. bottom: 46/1797
  2640. }
  2641. },
  2642. buff: {
  2643. height: math.unit(9 + 6/12, "feet"),
  2644. weight: math.unit(950, "lb"),
  2645. name: "Buff",
  2646. image: {
  2647. source: "./media/characters/flamm/buff.svg",
  2648. extra: 3018/2874,
  2649. bottom: 221/3239
  2650. }
  2651. },
  2652. },
  2653. [
  2654. {
  2655. name: "Normal",
  2656. height: math.unit(9.5, "feet")
  2657. },
  2658. {
  2659. name: "Macro",
  2660. height: math.unit(200, "feet"),
  2661. default: true
  2662. },
  2663. ]
  2664. ))
  2665. characterMakers.push(() => makeCharacter(
  2666. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2667. {
  2668. front: {
  2669. height: math.unit(5 + 3/12, "feet"),
  2670. weight: math.unit(60, "kg"),
  2671. name: "Front",
  2672. image: {
  2673. source: "./media/characters/zephiro/front.svg",
  2674. extra: 2309 / 2162,
  2675. bottom: 0.069
  2676. }
  2677. },
  2678. side: {
  2679. height: math.unit(5 + 3/12, "feet"),
  2680. weight: math.unit(60, "kg"),
  2681. name: "Side",
  2682. image: {
  2683. source: "./media/characters/zephiro/side.svg",
  2684. extra: 2403 / 2279,
  2685. bottom: 0.015
  2686. }
  2687. },
  2688. back: {
  2689. height: math.unit(5 + 3/12, "feet"),
  2690. weight: math.unit(60, "kg"),
  2691. name: "Back",
  2692. image: {
  2693. source: "./media/characters/zephiro/back.svg",
  2694. extra: 2373 / 2244,
  2695. bottom: 0.013
  2696. }
  2697. },
  2698. hand: {
  2699. height: math.unit(0.68, "feet"),
  2700. name: "Hand",
  2701. image: {
  2702. source: "./media/characters/zephiro/hand.svg"
  2703. }
  2704. },
  2705. paw: {
  2706. height: math.unit(1, "feet"),
  2707. name: "Paw",
  2708. image: {
  2709. source: "./media/characters/zephiro/paw.svg"
  2710. }
  2711. },
  2712. beans: {
  2713. height: math.unit(0.93, "feet"),
  2714. name: "Beans",
  2715. image: {
  2716. source: "./media/characters/zephiro/beans.svg"
  2717. }
  2718. },
  2719. },
  2720. [
  2721. {
  2722. name: "Micro",
  2723. height: math.unit(3, "inches")
  2724. },
  2725. {
  2726. name: "Normal",
  2727. height: math.unit(5 + 3 / 12, "feet"),
  2728. default: true
  2729. },
  2730. {
  2731. name: "Macro",
  2732. height: math.unit(118, "feet")
  2733. },
  2734. ]
  2735. ))
  2736. characterMakers.push(() => makeCharacter(
  2737. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2738. {
  2739. front: {
  2740. height: math.unit(5, "feet"),
  2741. weight: math.unit(90, "kg"),
  2742. name: "Front",
  2743. image: {
  2744. source: "./media/characters/fory/front.svg",
  2745. extra: 2862 / 2674,
  2746. bottom: 180 / 3043.8
  2747. }
  2748. },
  2749. back: {
  2750. height: math.unit(5, "feet"),
  2751. weight: math.unit(90, "kg"),
  2752. name: "Back",
  2753. image: {
  2754. source: "./media/characters/fory/back.svg",
  2755. extra: 2962 / 2791,
  2756. bottom: 106 / 3071.8
  2757. }
  2758. },
  2759. foot: {
  2760. height: math.unit(2.14, "feet"),
  2761. name: "Foot",
  2762. image: {
  2763. source: "./media/characters/fory/foot.svg"
  2764. }
  2765. },
  2766. },
  2767. [
  2768. {
  2769. name: "Normal",
  2770. height: math.unit(5, "feet")
  2771. },
  2772. {
  2773. name: "Macro",
  2774. height: math.unit(50, "feet"),
  2775. default: true
  2776. },
  2777. {
  2778. name: "Megamacro",
  2779. height: math.unit(10, "miles")
  2780. },
  2781. {
  2782. name: "Gigamacro",
  2783. height: math.unit(5, "earths")
  2784. },
  2785. ]
  2786. ))
  2787. characterMakers.push(() => makeCharacter(
  2788. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2789. {
  2790. front: {
  2791. height: math.unit(7, "feet"),
  2792. weight: math.unit(90, "kg"),
  2793. name: "Front",
  2794. image: {
  2795. source: "./media/characters/kurrikage/front.svg",
  2796. extra: 1845/1733,
  2797. bottom: 119/1964
  2798. }
  2799. },
  2800. back: {
  2801. height: math.unit(7, "feet"),
  2802. weight: math.unit(90, "kg"),
  2803. name: "Back",
  2804. image: {
  2805. source: "./media/characters/kurrikage/back.svg",
  2806. extra: 1790/1677,
  2807. bottom: 61/1851
  2808. }
  2809. },
  2810. dressed: {
  2811. height: math.unit(7, "feet"),
  2812. weight: math.unit(90, "kg"),
  2813. name: "Dressed",
  2814. image: {
  2815. source: "./media/characters/kurrikage/dressed.svg",
  2816. extra: 1845/1733,
  2817. bottom: 119/1964
  2818. }
  2819. },
  2820. foot: {
  2821. height: math.unit(1.5, "feet"),
  2822. name: "Foot",
  2823. image: {
  2824. source: "./media/characters/kurrikage/foot.svg"
  2825. }
  2826. },
  2827. staff: {
  2828. height: math.unit(6.7, "feet"),
  2829. name: "Staff",
  2830. image: {
  2831. source: "./media/characters/kurrikage/staff.svg"
  2832. }
  2833. },
  2834. peek: {
  2835. height: math.unit(1.05, "feet"),
  2836. name: "Peeking",
  2837. image: {
  2838. source: "./media/characters/kurrikage/peek.svg",
  2839. bottom: 0.08
  2840. }
  2841. },
  2842. },
  2843. [
  2844. {
  2845. name: "Normal",
  2846. height: math.unit(12, "feet"),
  2847. default: true
  2848. },
  2849. {
  2850. name: "Big",
  2851. height: math.unit(20, "feet")
  2852. },
  2853. {
  2854. name: "Macro",
  2855. height: math.unit(500, "feet")
  2856. },
  2857. {
  2858. name: "Megamacro",
  2859. height: math.unit(20, "miles")
  2860. },
  2861. ]
  2862. ))
  2863. characterMakers.push(() => makeCharacter(
  2864. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2865. {
  2866. front: {
  2867. height: math.unit(6, "feet"),
  2868. weight: math.unit(75, "kg"),
  2869. name: "Front",
  2870. image: {
  2871. source: "./media/characters/shingo/front.svg",
  2872. extra: 1900/1825,
  2873. bottom: 82/1982
  2874. }
  2875. },
  2876. side: {
  2877. height: math.unit(6, "feet"),
  2878. weight: math.unit(75, "kg"),
  2879. name: "Side",
  2880. image: {
  2881. source: "./media/characters/shingo/side.svg",
  2882. extra: 1930/1865,
  2883. bottom: 16/1946
  2884. }
  2885. },
  2886. back: {
  2887. height: math.unit(6, "feet"),
  2888. weight: math.unit(75, "kg"),
  2889. name: "Back",
  2890. image: {
  2891. source: "./media/characters/shingo/back.svg",
  2892. extra: 1922/1852,
  2893. bottom: 16/1938
  2894. }
  2895. },
  2896. frontDressed: {
  2897. height: math.unit(6, "feet"),
  2898. weight: math.unit(150, "lb"),
  2899. name: "Front-dressed",
  2900. image: {
  2901. source: "./media/characters/shingo/front-dressed.svg",
  2902. extra: 1900/1825,
  2903. bottom: 82/1982
  2904. }
  2905. },
  2906. paw: {
  2907. height: math.unit(1.29, "feet"),
  2908. name: "Paw",
  2909. image: {
  2910. source: "./media/characters/shingo/paw.svg"
  2911. }
  2912. },
  2913. hand: {
  2914. height: math.unit(1.07, "feet"),
  2915. name: "Hand",
  2916. image: {
  2917. source: "./media/characters/shingo/hand.svg"
  2918. }
  2919. },
  2920. frontAlt: {
  2921. height: math.unit(6, "feet"),
  2922. weight: math.unit(75, "kg"),
  2923. name: "Front (Alt)",
  2924. image: {
  2925. source: "./media/characters/shingo/front-alt.svg",
  2926. extra: 3511 / 3338,
  2927. bottom: 0.005
  2928. }
  2929. },
  2930. frontAlt2: {
  2931. height: math.unit(6, "feet"),
  2932. weight: math.unit(75, "kg"),
  2933. name: "Front (Alt 2)",
  2934. image: {
  2935. source: "./media/characters/shingo/front-alt-2.svg",
  2936. extra: 706/681,
  2937. bottom: 11/717
  2938. }
  2939. },
  2940. pawAlt: {
  2941. height: math.unit(1, "feet"),
  2942. name: "Paw (Alt)",
  2943. image: {
  2944. source: "./media/characters/shingo/paw-alt.svg"
  2945. }
  2946. },
  2947. },
  2948. [
  2949. {
  2950. name: "Micro",
  2951. height: math.unit(4, "inches")
  2952. },
  2953. {
  2954. name: "Normal",
  2955. height: math.unit(6, "feet"),
  2956. default: true
  2957. },
  2958. {
  2959. name: "Macro",
  2960. height: math.unit(108, "feet")
  2961. },
  2962. {
  2963. name: "Macro+",
  2964. height: math.unit(1500, "feet")
  2965. },
  2966. ]
  2967. ))
  2968. characterMakers.push(() => makeCharacter(
  2969. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2970. {
  2971. side: {
  2972. height: math.unit(6, "feet"),
  2973. weight: math.unit(75, "kg"),
  2974. name: "Side",
  2975. image: {
  2976. source: "./media/characters/aigey/side.svg"
  2977. }
  2978. },
  2979. },
  2980. [
  2981. {
  2982. name: "Macro",
  2983. height: math.unit(200, "feet"),
  2984. default: true
  2985. },
  2986. {
  2987. name: "Megamacro",
  2988. height: math.unit(100, "miles")
  2989. },
  2990. ]
  2991. )
  2992. )
  2993. characterMakers.push(() => makeCharacter(
  2994. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2995. {
  2996. front: {
  2997. height: math.unit(5 + 5 / 12, "feet"),
  2998. weight: math.unit(75, "kg"),
  2999. name: "Front",
  3000. image: {
  3001. source: "./media/characters/natasha/front.svg",
  3002. extra: 859 / 824,
  3003. bottom: 23 / 879.6
  3004. }
  3005. },
  3006. frontNsfw: {
  3007. height: math.unit(5 + 5 / 12, "feet"),
  3008. weight: math.unit(75, "kg"),
  3009. name: "Front (NSFW)",
  3010. image: {
  3011. source: "./media/characters/natasha/front-nsfw.svg",
  3012. extra: 859 / 824,
  3013. bottom: 23 / 879.6
  3014. }
  3015. },
  3016. frontErect: {
  3017. height: math.unit(5 + 5 / 12, "feet"),
  3018. weight: math.unit(75, "kg"),
  3019. name: "Front (Erect)",
  3020. image: {
  3021. source: "./media/characters/natasha/front-erect.svg",
  3022. extra: 859 / 824,
  3023. bottom: 23 / 879.6
  3024. }
  3025. },
  3026. back: {
  3027. height: math.unit(5 + 5 / 12, "feet"),
  3028. weight: math.unit(75, "kg"),
  3029. name: "Back",
  3030. image: {
  3031. source: "./media/characters/natasha/back.svg",
  3032. extra: 887.9 / 852.6,
  3033. bottom: 9.7 / 896.4
  3034. }
  3035. },
  3036. backAlt: {
  3037. height: math.unit(5 + 5 / 12, "feet"),
  3038. weight: math.unit(75, "kg"),
  3039. name: "Back (Alt)",
  3040. image: {
  3041. source: "./media/characters/natasha/back-alt.svg",
  3042. extra: 1236.7 / 1192,
  3043. bottom: 22.3 / 1258.2
  3044. }
  3045. },
  3046. dick: {
  3047. height: math.unit(1.772, "feet"),
  3048. name: "Dick",
  3049. image: {
  3050. source: "./media/characters/natasha/dick.svg"
  3051. }
  3052. },
  3053. paw: {
  3054. height: math.unit(0.250, "meters"),
  3055. name: "Paw",
  3056. image: {
  3057. source: "./media/characters/natasha/paw.svg"
  3058. }
  3059. },
  3060. },
  3061. [
  3062. {
  3063. name: "Normal",
  3064. height: math.unit(5 + 5 / 12, "feet")
  3065. },
  3066. {
  3067. name: "Large",
  3068. height: math.unit(12, "feet")
  3069. },
  3070. {
  3071. name: "Macro",
  3072. height: math.unit(100, "feet"),
  3073. default: true
  3074. },
  3075. {
  3076. name: "Macro+",
  3077. height: math.unit(260, "feet")
  3078. },
  3079. {
  3080. name: "Macro++",
  3081. height: math.unit(1, "mile")
  3082. },
  3083. ]
  3084. ))
  3085. characterMakers.push(() => makeCharacter(
  3086. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3087. {
  3088. front: {
  3089. height: math.unit(6, "feet"),
  3090. weight: math.unit(75, "kg"),
  3091. name: "Front",
  3092. image: {
  3093. source: "./media/characters/malik/front.svg"
  3094. }
  3095. },
  3096. side: {
  3097. height: math.unit(6, "feet"),
  3098. weight: math.unit(75, "kg"),
  3099. name: "Side",
  3100. image: {
  3101. source: "./media/characters/malik/side.svg",
  3102. extra: 1.1539
  3103. }
  3104. },
  3105. back: {
  3106. height: math.unit(6, "feet"),
  3107. weight: math.unit(75, "kg"),
  3108. name: "Back",
  3109. image: {
  3110. source: "./media/characters/malik/back.svg"
  3111. }
  3112. },
  3113. },
  3114. [
  3115. {
  3116. name: "Macro",
  3117. height: math.unit(156, "feet"),
  3118. default: true
  3119. },
  3120. {
  3121. name: "Macro+",
  3122. height: math.unit(1188, "feet")
  3123. },
  3124. ]
  3125. ))
  3126. characterMakers.push(() => makeCharacter(
  3127. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3128. {
  3129. front: {
  3130. height: math.unit(6, "feet"),
  3131. weight: math.unit(75, "kg"),
  3132. name: "Front",
  3133. image: {
  3134. source: "./media/characters/sefer/front.svg",
  3135. extra: 848 / 659,
  3136. bottom: 28.3 / 876.442
  3137. }
  3138. },
  3139. back: {
  3140. height: math.unit(6, "feet"),
  3141. weight: math.unit(75, "kg"),
  3142. name: "Back",
  3143. image: {
  3144. source: "./media/characters/sefer/back.svg",
  3145. extra: 864 / 695,
  3146. bottom: 10 / 871
  3147. }
  3148. },
  3149. frontDressed: {
  3150. height: math.unit(6, "feet"),
  3151. weight: math.unit(75, "kg"),
  3152. name: "Front (Dressed)",
  3153. image: {
  3154. source: "./media/characters/sefer/front-dressed.svg",
  3155. extra: 839 / 653,
  3156. bottom: 37.6 / 878
  3157. }
  3158. },
  3159. },
  3160. [
  3161. {
  3162. name: "Normal",
  3163. height: math.unit(6, "feet"),
  3164. default: true
  3165. },
  3166. ]
  3167. ))
  3168. characterMakers.push(() => makeCharacter(
  3169. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3170. {
  3171. body: {
  3172. height: math.unit(2.2428, "meter"),
  3173. weight: math.unit(124.738, "kg"),
  3174. name: "Body",
  3175. image: {
  3176. extra: 1225 / 1050,
  3177. source: "./media/characters/north/front.svg"
  3178. }
  3179. }
  3180. },
  3181. [
  3182. {
  3183. name: "Micro",
  3184. height: math.unit(4, "inches")
  3185. },
  3186. {
  3187. name: "Macro",
  3188. height: math.unit(63, "meters")
  3189. },
  3190. {
  3191. name: "Megamacro",
  3192. height: math.unit(101, "miles"),
  3193. default: true
  3194. }
  3195. ]
  3196. ))
  3197. characterMakers.push(() => makeCharacter(
  3198. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3199. {
  3200. angled: {
  3201. height: math.unit(4, "meter"),
  3202. weight: math.unit(150, "kg"),
  3203. name: "Angled",
  3204. image: {
  3205. source: "./media/characters/talan/angled-sfw.svg",
  3206. bottom: 29 / 3734
  3207. }
  3208. },
  3209. angledNsfw: {
  3210. height: math.unit(4, "meter"),
  3211. weight: math.unit(150, "kg"),
  3212. name: "Angled (NSFW)",
  3213. image: {
  3214. source: "./media/characters/talan/angled-nsfw.svg",
  3215. bottom: 29 / 3734
  3216. }
  3217. },
  3218. frontNsfw: {
  3219. height: math.unit(4, "meter"),
  3220. weight: math.unit(150, "kg"),
  3221. name: "Front (NSFW)",
  3222. image: {
  3223. source: "./media/characters/talan/front-nsfw.svg",
  3224. bottom: 29 / 3734
  3225. }
  3226. },
  3227. sideNsfw: {
  3228. height: math.unit(4, "meter"),
  3229. weight: math.unit(150, "kg"),
  3230. name: "Side (NSFW)",
  3231. image: {
  3232. source: "./media/characters/talan/side-nsfw.svg",
  3233. bottom: 29 / 3734
  3234. }
  3235. },
  3236. back: {
  3237. height: math.unit(4, "meter"),
  3238. weight: math.unit(150, "kg"),
  3239. name: "Back",
  3240. image: {
  3241. source: "./media/characters/talan/back.svg"
  3242. }
  3243. },
  3244. dickBottom: {
  3245. height: math.unit(0.621, "meter"),
  3246. name: "Dick (Bottom)",
  3247. image: {
  3248. source: "./media/characters/talan/dick-bottom.svg"
  3249. }
  3250. },
  3251. dickTop: {
  3252. height: math.unit(0.621, "meter"),
  3253. name: "Dick (Top)",
  3254. image: {
  3255. source: "./media/characters/talan/dick-top.svg"
  3256. }
  3257. },
  3258. dickSide: {
  3259. height: math.unit(0.305, "meter"),
  3260. name: "Dick (Side)",
  3261. image: {
  3262. source: "./media/characters/talan/dick-side.svg"
  3263. }
  3264. },
  3265. dickFront: {
  3266. height: math.unit(0.305, "meter"),
  3267. name: "Dick (Front)",
  3268. image: {
  3269. source: "./media/characters/talan/dick-front.svg"
  3270. }
  3271. },
  3272. },
  3273. [
  3274. {
  3275. name: "Normal",
  3276. height: math.unit(4, "meters")
  3277. },
  3278. {
  3279. name: "Macro",
  3280. height: math.unit(100, "meters")
  3281. },
  3282. {
  3283. name: "Megamacro",
  3284. height: math.unit(2, "miles"),
  3285. default: true
  3286. },
  3287. {
  3288. name: "Gigamacro",
  3289. height: math.unit(5000, "miles")
  3290. },
  3291. {
  3292. name: "Teramacro",
  3293. height: math.unit(100, "parsecs")
  3294. }
  3295. ]
  3296. ))
  3297. characterMakers.push(() => makeCharacter(
  3298. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3299. {
  3300. front: {
  3301. height: math.unit(2, "meter"),
  3302. weight: math.unit(90, "kg"),
  3303. name: "Front",
  3304. image: {
  3305. source: "./media/characters/gael'rathus/front.svg"
  3306. }
  3307. },
  3308. frontAlt: {
  3309. height: math.unit(2, "meter"),
  3310. weight: math.unit(90, "kg"),
  3311. name: "Front (alt)",
  3312. image: {
  3313. source: "./media/characters/gael'rathus/front-alt.svg"
  3314. }
  3315. },
  3316. frontAlt2: {
  3317. height: math.unit(2, "meter"),
  3318. weight: math.unit(90, "kg"),
  3319. name: "Front (alt 2)",
  3320. image: {
  3321. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3322. }
  3323. }
  3324. },
  3325. [
  3326. {
  3327. name: "Normal",
  3328. height: math.unit(9, "feet"),
  3329. default: true
  3330. },
  3331. {
  3332. name: "Large",
  3333. height: math.unit(25, "feet")
  3334. },
  3335. {
  3336. name: "Macro",
  3337. height: math.unit(0.25, "miles")
  3338. },
  3339. {
  3340. name: "Megamacro",
  3341. height: math.unit(10, "miles")
  3342. }
  3343. ]
  3344. ))
  3345. characterMakers.push(() => makeCharacter(
  3346. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3347. {
  3348. side: {
  3349. height: math.unit(2, "meter"),
  3350. weight: math.unit(140, "kg"),
  3351. name: "Side",
  3352. image: {
  3353. source: "./media/characters/sosha/side.svg",
  3354. bottom: 0.042
  3355. }
  3356. },
  3357. },
  3358. [
  3359. {
  3360. name: "Normal",
  3361. height: math.unit(12, "feet"),
  3362. default: true
  3363. }
  3364. ]
  3365. ))
  3366. characterMakers.push(() => makeCharacter(
  3367. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3368. {
  3369. side: {
  3370. height: math.unit(5 + 5 / 12, "feet"),
  3371. weight: math.unit(170, "kg"),
  3372. name: "Side",
  3373. image: {
  3374. source: "./media/characters/runnola/side.svg",
  3375. extra: 741 / 448,
  3376. bottom: 0.05
  3377. }
  3378. },
  3379. },
  3380. [
  3381. {
  3382. name: "Small",
  3383. height: math.unit(3, "feet")
  3384. },
  3385. {
  3386. name: "Normal",
  3387. height: math.unit(5 + 5 / 12, "feet"),
  3388. default: true
  3389. },
  3390. {
  3391. name: "Big",
  3392. height: math.unit(10, "feet")
  3393. },
  3394. ]
  3395. ))
  3396. characterMakers.push(() => makeCharacter(
  3397. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3398. {
  3399. front: {
  3400. height: math.unit(2, "meter"),
  3401. weight: math.unit(50, "kg"),
  3402. name: "Front",
  3403. image: {
  3404. source: "./media/characters/kurribird/front.svg",
  3405. bottom: 0.015
  3406. }
  3407. },
  3408. frontAlt: {
  3409. height: math.unit(1.5, "meter"),
  3410. weight: math.unit(50, "kg"),
  3411. name: "Front (Alt)",
  3412. image: {
  3413. source: "./media/characters/kurribird/front-alt.svg",
  3414. extra: 1.45
  3415. }
  3416. },
  3417. },
  3418. [
  3419. {
  3420. name: "Normal",
  3421. height: math.unit(7, "feet")
  3422. },
  3423. {
  3424. name: "Big",
  3425. height: math.unit(12, "feet"),
  3426. default: true
  3427. },
  3428. {
  3429. name: "Macro",
  3430. height: math.unit(1500, "feet")
  3431. },
  3432. {
  3433. name: "Megamacro",
  3434. height: math.unit(2, "miles")
  3435. }
  3436. ]
  3437. ))
  3438. characterMakers.push(() => makeCharacter(
  3439. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3440. {
  3441. front: {
  3442. height: math.unit(2, "meter"),
  3443. weight: math.unit(80, "kg"),
  3444. name: "Front",
  3445. image: {
  3446. source: "./media/characters/elbial/front.svg",
  3447. extra: 1643 / 1556,
  3448. bottom: 60.2 / 1696
  3449. }
  3450. },
  3451. side: {
  3452. height: math.unit(2, "meter"),
  3453. weight: math.unit(80, "kg"),
  3454. name: "Side",
  3455. image: {
  3456. source: "./media/characters/elbial/side.svg",
  3457. extra: 1601/1528,
  3458. bottom: 97/1698
  3459. }
  3460. },
  3461. back: {
  3462. height: math.unit(2, "meter"),
  3463. weight: math.unit(80, "kg"),
  3464. name: "Back",
  3465. image: {
  3466. source: "./media/characters/elbial/back.svg",
  3467. extra: 1653/1569,
  3468. bottom: 20/1673
  3469. }
  3470. },
  3471. frontDressed: {
  3472. height: math.unit(2, "meter"),
  3473. weight: math.unit(80, "kg"),
  3474. name: "Front (Dressed)",
  3475. image: {
  3476. source: "./media/characters/elbial/front-dressed.svg",
  3477. extra: 1638/1569,
  3478. bottom: 70/1708
  3479. }
  3480. },
  3481. genitals: {
  3482. height: math.unit(2 / 3.367, "meter"),
  3483. name: "Genitals",
  3484. image: {
  3485. source: "./media/characters/elbial/genitals.svg"
  3486. }
  3487. },
  3488. },
  3489. [
  3490. {
  3491. name: "Large",
  3492. height: math.unit(100, "feet")
  3493. },
  3494. {
  3495. name: "Macro",
  3496. height: math.unit(500, "feet"),
  3497. default: true
  3498. },
  3499. {
  3500. name: "Megamacro",
  3501. height: math.unit(10, "miles")
  3502. },
  3503. {
  3504. name: "Gigamacro",
  3505. height: math.unit(25000, "miles")
  3506. },
  3507. {
  3508. name: "Full-Size",
  3509. height: math.unit(8000000, "gigaparsecs")
  3510. }
  3511. ]
  3512. ))
  3513. characterMakers.push(() => makeCharacter(
  3514. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3515. {
  3516. front: {
  3517. height: math.unit(2, "meter"),
  3518. weight: math.unit(60, "kg"),
  3519. name: "Front",
  3520. image: {
  3521. source: "./media/characters/noah/front.svg"
  3522. }
  3523. },
  3524. talons: {
  3525. height: math.unit(0.315, "meter"),
  3526. name: "Talons",
  3527. image: {
  3528. source: "./media/characters/noah/talons.svg"
  3529. }
  3530. }
  3531. },
  3532. [
  3533. {
  3534. name: "Large",
  3535. height: math.unit(50, "feet")
  3536. },
  3537. {
  3538. name: "Macro",
  3539. height: math.unit(750, "feet"),
  3540. default: true
  3541. },
  3542. {
  3543. name: "Megamacro",
  3544. height: math.unit(50, "miles")
  3545. },
  3546. {
  3547. name: "Gigamacro",
  3548. height: math.unit(100000, "miles")
  3549. },
  3550. {
  3551. name: "Full-Size",
  3552. height: math.unit(3000000000, "miles")
  3553. }
  3554. ]
  3555. ))
  3556. characterMakers.push(() => makeCharacter(
  3557. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3558. {
  3559. front: {
  3560. height: math.unit(2, "meter"),
  3561. weight: math.unit(80, "kg"),
  3562. name: "Front",
  3563. image: {
  3564. source: "./media/characters/natalya/front.svg"
  3565. }
  3566. },
  3567. back: {
  3568. height: math.unit(2, "meter"),
  3569. weight: math.unit(80, "kg"),
  3570. name: "Back",
  3571. image: {
  3572. source: "./media/characters/natalya/back.svg"
  3573. }
  3574. }
  3575. },
  3576. [
  3577. {
  3578. name: "Normal",
  3579. height: math.unit(150, "feet"),
  3580. default: true
  3581. },
  3582. {
  3583. name: "Megamacro",
  3584. height: math.unit(5, "miles")
  3585. },
  3586. {
  3587. name: "Full-Size",
  3588. height: math.unit(600, "kiloparsecs")
  3589. }
  3590. ]
  3591. ))
  3592. characterMakers.push(() => makeCharacter(
  3593. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3594. {
  3595. front: {
  3596. height: math.unit(2, "meter"),
  3597. weight: math.unit(50, "kg"),
  3598. name: "Front",
  3599. image: {
  3600. source: "./media/characters/erestrebah/front.svg",
  3601. extra: 1262/1162,
  3602. bottom: 96/1358
  3603. }
  3604. },
  3605. back: {
  3606. height: math.unit(2, "meter"),
  3607. weight: math.unit(50, "kg"),
  3608. name: "Back",
  3609. image: {
  3610. source: "./media/characters/erestrebah/back.svg",
  3611. extra: 1257/1139,
  3612. bottom: 13/1270
  3613. }
  3614. },
  3615. wing: {
  3616. height: math.unit(2, "meter"),
  3617. weight: math.unit(50, "kg"),
  3618. name: "Wing",
  3619. image: {
  3620. source: "./media/characters/erestrebah/wing.svg",
  3621. extra: 1262/1162,
  3622. bottom: 96/1358
  3623. }
  3624. },
  3625. mouth: {
  3626. height: math.unit(0.39, "feet"),
  3627. name: "Mouth",
  3628. image: {
  3629. source: "./media/characters/erestrebah/mouth.svg"
  3630. }
  3631. }
  3632. },
  3633. [
  3634. {
  3635. name: "Normal",
  3636. height: math.unit(10, "feet")
  3637. },
  3638. {
  3639. name: "Large",
  3640. height: math.unit(50, "feet"),
  3641. default: true
  3642. },
  3643. {
  3644. name: "Macro",
  3645. height: math.unit(300, "feet")
  3646. },
  3647. {
  3648. name: "Macro+",
  3649. height: math.unit(750, "feet")
  3650. },
  3651. {
  3652. name: "Megamacro",
  3653. height: math.unit(3, "miles")
  3654. }
  3655. ]
  3656. ))
  3657. characterMakers.push(() => makeCharacter(
  3658. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3659. {
  3660. front: {
  3661. height: math.unit(2, "meter"),
  3662. weight: math.unit(80, "kg"),
  3663. name: "Front",
  3664. image: {
  3665. source: "./media/characters/jennifer/front.svg",
  3666. bottom: 0.11,
  3667. extra: 1.16
  3668. }
  3669. },
  3670. frontAlt: {
  3671. height: math.unit(2, "meter"),
  3672. weight: math.unit(80, "kg"),
  3673. name: "Front (Alt)",
  3674. image: {
  3675. source: "./media/characters/jennifer/front-alt.svg"
  3676. }
  3677. }
  3678. },
  3679. [
  3680. {
  3681. name: "Canon Height",
  3682. height: math.unit(120, "feet"),
  3683. default: true
  3684. },
  3685. {
  3686. name: "Macro+",
  3687. height: math.unit(300, "feet")
  3688. },
  3689. {
  3690. name: "Megamacro",
  3691. height: math.unit(20000, "feet")
  3692. }
  3693. ]
  3694. ))
  3695. characterMakers.push(() => makeCharacter(
  3696. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3697. {
  3698. front: {
  3699. height: math.unit(2, "meter"),
  3700. weight: math.unit(50, "kg"),
  3701. name: "Front",
  3702. image: {
  3703. source: "./media/characters/kalista/front.svg",
  3704. extra: 1314/1145,
  3705. bottom: 101/1415
  3706. }
  3707. },
  3708. back: {
  3709. height: math.unit(2, "meter"),
  3710. weight: math.unit(50, "kg"),
  3711. name: "Back",
  3712. image: {
  3713. source: "./media/characters/kalista/back.svg",
  3714. extra: 1366 / 1156,
  3715. bottom: 33.9 / 1362.78
  3716. }
  3717. }
  3718. },
  3719. [
  3720. {
  3721. name: "Uncomfortably Small",
  3722. height: math.unit(10, "feet")
  3723. },
  3724. {
  3725. name: "Small",
  3726. height: math.unit(30, "feet")
  3727. },
  3728. {
  3729. name: "Macro",
  3730. height: math.unit(100, "feet"),
  3731. default: true
  3732. },
  3733. {
  3734. name: "Macro+",
  3735. height: math.unit(2000, "feet")
  3736. },
  3737. {
  3738. name: "True Form",
  3739. height: math.unit(8924, "miles")
  3740. }
  3741. ]
  3742. ))
  3743. characterMakers.push(() => makeCharacter(
  3744. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3745. {
  3746. front: {
  3747. height: math.unit(2, "meter"),
  3748. weight: math.unit(120, "kg"),
  3749. name: "Front",
  3750. image: {
  3751. source: "./media/characters/ggv/front.svg"
  3752. }
  3753. },
  3754. side: {
  3755. height: math.unit(2, "meter"),
  3756. weight: math.unit(120, "kg"),
  3757. name: "Side",
  3758. image: {
  3759. source: "./media/characters/ggv/side.svg"
  3760. }
  3761. }
  3762. },
  3763. [
  3764. {
  3765. name: "Extremely Puny",
  3766. height: math.unit(9 + 5 / 12, "feet")
  3767. },
  3768. {
  3769. name: "Horribly Small",
  3770. height: math.unit(47.7, "miles"),
  3771. default: true
  3772. },
  3773. {
  3774. name: "Reasonably Sized",
  3775. height: math.unit(25000, "parsecs")
  3776. },
  3777. {
  3778. name: "Slightly Uncompressed",
  3779. height: math.unit(7.77e31, "parsecs")
  3780. },
  3781. {
  3782. name: "Omniversal",
  3783. height: math.unit(1e300, "meters")
  3784. },
  3785. ]
  3786. ))
  3787. characterMakers.push(() => makeCharacter(
  3788. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3789. {
  3790. front: {
  3791. height: math.unit(2, "meter"),
  3792. weight: math.unit(75, "lb"),
  3793. name: "Front",
  3794. image: {
  3795. source: "./media/characters/napalm/front.svg"
  3796. }
  3797. },
  3798. back: {
  3799. height: math.unit(2, "meter"),
  3800. weight: math.unit(75, "lb"),
  3801. name: "Back",
  3802. image: {
  3803. source: "./media/characters/napalm/back.svg"
  3804. }
  3805. }
  3806. },
  3807. [
  3808. {
  3809. name: "Standard",
  3810. height: math.unit(55, "feet"),
  3811. default: true
  3812. }
  3813. ]
  3814. ))
  3815. characterMakers.push(() => makeCharacter(
  3816. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3817. {
  3818. front: {
  3819. height: math.unit(7 + 5 / 6, "feet"),
  3820. weight: math.unit(325, "lb"),
  3821. name: "Front",
  3822. image: {
  3823. source: "./media/characters/asana/front.svg",
  3824. extra: 1133 / 1060,
  3825. bottom: 15.2 / 1148.6
  3826. }
  3827. },
  3828. back: {
  3829. height: math.unit(7 + 5 / 6, "feet"),
  3830. weight: math.unit(325, "lb"),
  3831. name: "Back",
  3832. image: {
  3833. source: "./media/characters/asana/back.svg",
  3834. extra: 1114 / 1043,
  3835. bottom: 5 / 1120
  3836. }
  3837. },
  3838. dressedDark: {
  3839. height: math.unit(7 + 5 / 6, "feet"),
  3840. weight: math.unit(325, "lb"),
  3841. name: "Dressed (Dark)",
  3842. image: {
  3843. source: "./media/characters/asana/dressed-dark.svg",
  3844. extra: 1133 / 1060,
  3845. bottom: 15.2 / 1148.6
  3846. }
  3847. },
  3848. dressedLight: {
  3849. height: math.unit(7 + 5 / 6, "feet"),
  3850. weight: math.unit(325, "lb"),
  3851. name: "Dressed (Light)",
  3852. image: {
  3853. source: "./media/characters/asana/dressed-light.svg",
  3854. extra: 1133 / 1060,
  3855. bottom: 15.2 / 1148.6
  3856. }
  3857. },
  3858. },
  3859. [
  3860. {
  3861. name: "Standard",
  3862. height: math.unit(7 + 5 / 6, "feet"),
  3863. default: true
  3864. },
  3865. {
  3866. name: "Large",
  3867. height: math.unit(10, "meters")
  3868. },
  3869. {
  3870. name: "Macro",
  3871. height: math.unit(2500, "meters")
  3872. },
  3873. {
  3874. name: "Megamacro",
  3875. height: math.unit(5e6, "meters")
  3876. },
  3877. {
  3878. name: "Examacro",
  3879. height: math.unit(5e12, "lightyears")
  3880. },
  3881. {
  3882. name: "Max Size",
  3883. height: math.unit(1e31, "lightyears")
  3884. }
  3885. ]
  3886. ))
  3887. characterMakers.push(() => makeCharacter(
  3888. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3889. {
  3890. front: {
  3891. height: math.unit(2, "meter"),
  3892. weight: math.unit(60, "kg"),
  3893. name: "Front",
  3894. image: {
  3895. source: "./media/characters/ebony/front.svg",
  3896. bottom: 0.03,
  3897. extra: 1045 / 810 + 0.03
  3898. }
  3899. },
  3900. side: {
  3901. height: math.unit(2, "meter"),
  3902. weight: math.unit(60, "kg"),
  3903. name: "Side",
  3904. image: {
  3905. source: "./media/characters/ebony/side.svg",
  3906. bottom: 0.03,
  3907. extra: 1045 / 810 + 0.03
  3908. }
  3909. },
  3910. back: {
  3911. height: math.unit(2, "meter"),
  3912. weight: math.unit(60, "kg"),
  3913. name: "Back",
  3914. image: {
  3915. source: "./media/characters/ebony/back.svg",
  3916. bottom: 0.01,
  3917. extra: 1045 / 810 + 0.01
  3918. }
  3919. },
  3920. },
  3921. [
  3922. // TODO check why I did this lol
  3923. {
  3924. name: "Standard",
  3925. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3926. default: true
  3927. },
  3928. {
  3929. name: "Macro",
  3930. height: math.unit(200, "feet")
  3931. },
  3932. {
  3933. name: "Gigamacro",
  3934. height: math.unit(13000, "km")
  3935. }
  3936. ]
  3937. ))
  3938. characterMakers.push(() => makeCharacter(
  3939. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3940. {
  3941. front: {
  3942. height: math.unit(6, "feet"),
  3943. weight: math.unit(175, "lb"),
  3944. name: "Front",
  3945. image: {
  3946. source: "./media/characters/mountain/front.svg",
  3947. extra: 972 / 955,
  3948. bottom: 64 / 1036.6
  3949. }
  3950. },
  3951. back: {
  3952. height: math.unit(6, "feet"),
  3953. weight: math.unit(175, "lb"),
  3954. name: "Back",
  3955. image: {
  3956. source: "./media/characters/mountain/back.svg",
  3957. extra: 970 / 950,
  3958. bottom: 28.25 / 999
  3959. }
  3960. },
  3961. },
  3962. [
  3963. {
  3964. name: "Large",
  3965. height: math.unit(20, "meters")
  3966. },
  3967. {
  3968. name: "Macro",
  3969. height: math.unit(300, "meters")
  3970. },
  3971. {
  3972. name: "Gigamacro",
  3973. height: math.unit(10000, "km"),
  3974. default: true
  3975. },
  3976. {
  3977. name: "Examacro",
  3978. height: math.unit(10e9, "lightyears")
  3979. }
  3980. ]
  3981. ))
  3982. characterMakers.push(() => makeCharacter(
  3983. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3984. {
  3985. front: {
  3986. height: math.unit(8, "feet"),
  3987. weight: math.unit(500, "lb"),
  3988. name: "Front",
  3989. image: {
  3990. source: "./media/characters/rick/front.svg"
  3991. }
  3992. }
  3993. },
  3994. [
  3995. {
  3996. name: "Normal",
  3997. height: math.unit(8, "feet"),
  3998. default: true
  3999. },
  4000. {
  4001. name: "Macro",
  4002. height: math.unit(5, "km")
  4003. }
  4004. ]
  4005. ))
  4006. characterMakers.push(() => makeCharacter(
  4007. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4008. {
  4009. front: {
  4010. height: math.unit(8, "feet"),
  4011. weight: math.unit(120, "lb"),
  4012. name: "Front",
  4013. image: {
  4014. source: "./media/characters/ona/front.svg"
  4015. }
  4016. },
  4017. frontAlt: {
  4018. height: math.unit(8, "feet"),
  4019. weight: math.unit(120, "lb"),
  4020. name: "Front (Alt)",
  4021. image: {
  4022. source: "./media/characters/ona/front-alt.svg"
  4023. }
  4024. },
  4025. back: {
  4026. height: math.unit(8, "feet"),
  4027. weight: math.unit(120, "lb"),
  4028. name: "Back",
  4029. image: {
  4030. source: "./media/characters/ona/back.svg"
  4031. }
  4032. },
  4033. foot: {
  4034. height: math.unit(1.1, "feet"),
  4035. name: "Foot",
  4036. image: {
  4037. source: "./media/characters/ona/foot.svg"
  4038. }
  4039. }
  4040. },
  4041. [
  4042. {
  4043. name: "Megamacro",
  4044. height: math.unit(70, "km"),
  4045. default: true
  4046. },
  4047. {
  4048. name: "Gigamacro",
  4049. height: math.unit(681818, "miles")
  4050. },
  4051. {
  4052. name: "Examacro",
  4053. height: math.unit(3800000, "lightyears")
  4054. },
  4055. ]
  4056. ))
  4057. characterMakers.push(() => makeCharacter(
  4058. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4059. {
  4060. front: {
  4061. height: math.unit(12, "feet"),
  4062. weight: math.unit(3000, "lb"),
  4063. name: "Front",
  4064. image: {
  4065. source: "./media/characters/mech/front.svg",
  4066. extra: 2900 / 2770,
  4067. bottom: 110 / 3010
  4068. }
  4069. },
  4070. back: {
  4071. height: math.unit(12, "feet"),
  4072. weight: math.unit(3000, "lb"),
  4073. name: "Back",
  4074. image: {
  4075. source: "./media/characters/mech/back.svg",
  4076. extra: 3011 / 2890,
  4077. bottom: 94 / 3105
  4078. }
  4079. },
  4080. maw: {
  4081. height: math.unit(3.07, "feet"),
  4082. name: "Maw",
  4083. image: {
  4084. source: "./media/characters/mech/maw.svg"
  4085. }
  4086. },
  4087. head: {
  4088. height: math.unit(2.82, "feet"),
  4089. name: "Head",
  4090. image: {
  4091. source: "./media/characters/mech/head.svg"
  4092. }
  4093. },
  4094. dick: {
  4095. height: math.unit(1.43, "feet"),
  4096. name: "Dick",
  4097. image: {
  4098. source: "./media/characters/mech/dick.svg"
  4099. }
  4100. },
  4101. },
  4102. [
  4103. {
  4104. name: "Normal",
  4105. height: math.unit(12, "feet")
  4106. },
  4107. {
  4108. name: "Macro",
  4109. height: math.unit(300, "feet"),
  4110. default: true
  4111. },
  4112. {
  4113. name: "Macro+",
  4114. height: math.unit(1500, "feet")
  4115. },
  4116. ]
  4117. ))
  4118. characterMakers.push(() => makeCharacter(
  4119. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4120. {
  4121. front: {
  4122. height: math.unit(1.3, "meter"),
  4123. weight: math.unit(30, "kg"),
  4124. name: "Front",
  4125. image: {
  4126. source: "./media/characters/gregory/front.svg",
  4127. }
  4128. }
  4129. },
  4130. [
  4131. {
  4132. name: "Normal",
  4133. height: math.unit(1.3, "meter"),
  4134. default: true
  4135. },
  4136. {
  4137. name: "Macro",
  4138. height: math.unit(20, "meter")
  4139. }
  4140. ]
  4141. ))
  4142. characterMakers.push(() => makeCharacter(
  4143. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4144. {
  4145. front: {
  4146. height: math.unit(2.8, "meter"),
  4147. weight: math.unit(200, "kg"),
  4148. name: "Front",
  4149. image: {
  4150. source: "./media/characters/elory/front.svg",
  4151. }
  4152. }
  4153. },
  4154. [
  4155. {
  4156. name: "Normal",
  4157. height: math.unit(2.8, "meter"),
  4158. default: true
  4159. },
  4160. {
  4161. name: "Macro",
  4162. height: math.unit(38, "meter")
  4163. }
  4164. ]
  4165. ))
  4166. characterMakers.push(() => makeCharacter(
  4167. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4168. {
  4169. front: {
  4170. height: math.unit(470, "feet"),
  4171. weight: math.unit(924, "tons"),
  4172. name: "Front",
  4173. image: {
  4174. source: "./media/characters/angelpatamon/front.svg",
  4175. }
  4176. }
  4177. },
  4178. [
  4179. {
  4180. name: "Normal",
  4181. height: math.unit(470, "feet"),
  4182. default: true
  4183. },
  4184. {
  4185. name: "Deity Size I",
  4186. height: math.unit(28651.2, "km")
  4187. },
  4188. {
  4189. name: "Deity Size II",
  4190. height: math.unit(171907.2, "km")
  4191. }
  4192. ]
  4193. ))
  4194. characterMakers.push(() => makeCharacter(
  4195. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4196. {
  4197. side: {
  4198. height: math.unit(7.2, "meter"),
  4199. weight: math.unit(8.2, "tons"),
  4200. name: "Side",
  4201. image: {
  4202. source: "./media/characters/cryae/side.svg",
  4203. extra: 3500 / 1500
  4204. }
  4205. }
  4206. },
  4207. [
  4208. {
  4209. name: "Normal",
  4210. height: math.unit(7.2, "meter"),
  4211. default: true
  4212. }
  4213. ]
  4214. ))
  4215. characterMakers.push(() => makeCharacter(
  4216. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4217. {
  4218. front: {
  4219. height: math.unit(6, "feet"),
  4220. weight: math.unit(175, "lb"),
  4221. name: "Front",
  4222. image: {
  4223. source: "./media/characters/xera/front.svg",
  4224. extra: 2377 / 1972,
  4225. bottom: 75.5 / 2452
  4226. }
  4227. },
  4228. side: {
  4229. height: math.unit(6, "feet"),
  4230. weight: math.unit(175, "lb"),
  4231. name: "Side",
  4232. image: {
  4233. source: "./media/characters/xera/side.svg",
  4234. extra: 2345 / 2019,
  4235. bottom: 39.7 / 2384
  4236. }
  4237. },
  4238. back: {
  4239. height: math.unit(6, "feet"),
  4240. weight: math.unit(175, "lb"),
  4241. name: "Back",
  4242. image: {
  4243. source: "./media/characters/xera/back.svg",
  4244. extra: 2095 / 1984,
  4245. bottom: 67 / 2166
  4246. }
  4247. },
  4248. },
  4249. [
  4250. {
  4251. name: "Small",
  4252. height: math.unit(10, "feet")
  4253. },
  4254. {
  4255. name: "Macro",
  4256. height: math.unit(500, "meters"),
  4257. default: true
  4258. },
  4259. {
  4260. name: "Macro+",
  4261. height: math.unit(10, "km")
  4262. },
  4263. {
  4264. name: "Gigamacro",
  4265. height: math.unit(25000, "km")
  4266. },
  4267. {
  4268. name: "Teramacro",
  4269. height: math.unit(3e6, "km")
  4270. }
  4271. ]
  4272. ))
  4273. characterMakers.push(() => makeCharacter(
  4274. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4275. {
  4276. front: {
  4277. height: math.unit(6, "feet"),
  4278. weight: math.unit(175, "lb"),
  4279. name: "Front",
  4280. image: {
  4281. source: "./media/characters/nebula/front.svg",
  4282. extra: 2566 / 2362,
  4283. bottom: 81 / 2644
  4284. }
  4285. }
  4286. },
  4287. [
  4288. {
  4289. name: "Small",
  4290. height: math.unit(4.5, "meters")
  4291. },
  4292. {
  4293. name: "Macro",
  4294. height: math.unit(1500, "meters"),
  4295. default: true
  4296. },
  4297. {
  4298. name: "Megamacro",
  4299. height: math.unit(150, "km")
  4300. },
  4301. {
  4302. name: "Gigamacro",
  4303. height: math.unit(27000, "km")
  4304. }
  4305. ]
  4306. ))
  4307. characterMakers.push(() => makeCharacter(
  4308. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4309. {
  4310. front: {
  4311. height: math.unit(6, "feet"),
  4312. weight: math.unit(225, "lb"),
  4313. name: "Front",
  4314. image: {
  4315. source: "./media/characters/abysgar/front.svg"
  4316. }
  4317. }
  4318. },
  4319. [
  4320. {
  4321. name: "Small",
  4322. height: math.unit(4.5, "meters")
  4323. },
  4324. {
  4325. name: "Macro",
  4326. height: math.unit(1250, "meters"),
  4327. default: true
  4328. },
  4329. {
  4330. name: "Megamacro",
  4331. height: math.unit(125, "km")
  4332. },
  4333. {
  4334. name: "Gigamacro",
  4335. height: math.unit(26000, "km")
  4336. }
  4337. ]
  4338. ))
  4339. characterMakers.push(() => makeCharacter(
  4340. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4341. {
  4342. front: {
  4343. height: math.unit(6, "feet"),
  4344. weight: math.unit(180, "lb"),
  4345. name: "Front",
  4346. image: {
  4347. source: "./media/characters/yakuz/front.svg"
  4348. }
  4349. }
  4350. },
  4351. [
  4352. {
  4353. name: "Small",
  4354. height: math.unit(5, "meters")
  4355. },
  4356. {
  4357. name: "Macro",
  4358. height: math.unit(1500, "meters"),
  4359. default: true
  4360. },
  4361. {
  4362. name: "Megamacro",
  4363. height: math.unit(200, "km")
  4364. },
  4365. {
  4366. name: "Gigamacro",
  4367. height: math.unit(100000, "km")
  4368. }
  4369. ]
  4370. ))
  4371. characterMakers.push(() => makeCharacter(
  4372. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4373. {
  4374. front: {
  4375. height: math.unit(6, "feet"),
  4376. weight: math.unit(175, "lb"),
  4377. name: "Front",
  4378. image: {
  4379. source: "./media/characters/mirova/front.svg",
  4380. extra: 3334 / 3071,
  4381. bottom: 42 / 3375.6
  4382. }
  4383. }
  4384. },
  4385. [
  4386. {
  4387. name: "Small",
  4388. height: math.unit(5, "meters")
  4389. },
  4390. {
  4391. name: "Macro",
  4392. height: math.unit(900, "meters"),
  4393. default: true
  4394. },
  4395. {
  4396. name: "Megamacro",
  4397. height: math.unit(135, "km")
  4398. },
  4399. {
  4400. name: "Gigamacro",
  4401. height: math.unit(20000, "km")
  4402. }
  4403. ]
  4404. ))
  4405. characterMakers.push(() => makeCharacter(
  4406. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4407. {
  4408. side: {
  4409. height: math.unit(28.35, "feet"),
  4410. weight: math.unit(99.75, "tons"),
  4411. name: "Side",
  4412. image: {
  4413. source: "./media/characters/asana-mech/side.svg",
  4414. extra: 923 / 699,
  4415. bottom: 50 / 975
  4416. }
  4417. },
  4418. chaingun: {
  4419. height: math.unit(7, "feet"),
  4420. weight: math.unit(2400, "lb"),
  4421. name: "Chaingun",
  4422. image: {
  4423. source: "./media/characters/asana-mech/chaingun.svg"
  4424. }
  4425. },
  4426. laser: {
  4427. height: math.unit(7.12, "feet"),
  4428. weight: math.unit(2000, "lb"),
  4429. name: "Laser",
  4430. image: {
  4431. source: "./media/characters/asana-mech/laser.svg"
  4432. }
  4433. },
  4434. },
  4435. [
  4436. {
  4437. name: "Normal",
  4438. height: math.unit(28.35, "feet"),
  4439. default: true
  4440. },
  4441. {
  4442. name: "Macro",
  4443. height: math.unit(2500, "feet")
  4444. },
  4445. {
  4446. name: "Megamacro",
  4447. height: math.unit(25, "miles")
  4448. },
  4449. {
  4450. name: "Examacro",
  4451. height: math.unit(6e8, "lightyears")
  4452. },
  4453. ]
  4454. ))
  4455. characterMakers.push(() => makeCharacter(
  4456. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4457. {
  4458. front: {
  4459. height: math.unit(5, "meters"),
  4460. weight: math.unit(1000, "kg"),
  4461. name: "Front",
  4462. image: {
  4463. source: "./media/characters/asche/front.svg",
  4464. extra: 1258 / 1190,
  4465. bottom: 47 / 1305
  4466. }
  4467. },
  4468. frontUnderwear: {
  4469. height: math.unit(5, "meters"),
  4470. weight: math.unit(1000, "kg"),
  4471. name: "Front (Underwear)",
  4472. image: {
  4473. source: "./media/characters/asche/front-underwear.svg",
  4474. extra: 1258 / 1190,
  4475. bottom: 47 / 1305
  4476. }
  4477. },
  4478. frontDressed: {
  4479. height: math.unit(5, "meters"),
  4480. weight: math.unit(1000, "kg"),
  4481. name: "Front (Dressed)",
  4482. image: {
  4483. source: "./media/characters/asche/front-dressed.svg",
  4484. extra: 1258 / 1190,
  4485. bottom: 47 / 1305
  4486. }
  4487. },
  4488. frontArmor: {
  4489. height: math.unit(5, "meters"),
  4490. weight: math.unit(1000, "kg"),
  4491. name: "Front (Armored)",
  4492. image: {
  4493. source: "./media/characters/asche/front-armored.svg",
  4494. extra: 1374 / 1308,
  4495. bottom: 23 / 1397
  4496. }
  4497. },
  4498. mp724: {
  4499. height: math.unit(0.96, "meters"),
  4500. weight: math.unit(38, "kg"),
  4501. name: "H&K MP724",
  4502. image: {
  4503. source: "./media/characters/asche/h&k-mp724.svg"
  4504. }
  4505. },
  4506. side: {
  4507. height: math.unit(5, "meters"),
  4508. weight: math.unit(1000, "kg"),
  4509. name: "Side",
  4510. image: {
  4511. source: "./media/characters/asche/side.svg",
  4512. extra: 1717 / 1609,
  4513. bottom: 0.005
  4514. }
  4515. },
  4516. back: {
  4517. height: math.unit(5, "meters"),
  4518. weight: math.unit(1000, "kg"),
  4519. name: "Back",
  4520. image: {
  4521. source: "./media/characters/asche/back.svg",
  4522. extra: 1570 / 1501
  4523. }
  4524. },
  4525. },
  4526. [
  4527. {
  4528. name: "DEFCON 5",
  4529. height: math.unit(5, "meters")
  4530. },
  4531. {
  4532. name: "DEFCON 4",
  4533. height: math.unit(500, "meters"),
  4534. default: true
  4535. },
  4536. {
  4537. name: "DEFCON 3",
  4538. height: math.unit(5, "km")
  4539. },
  4540. {
  4541. name: "DEFCON 2",
  4542. height: math.unit(500, "km")
  4543. },
  4544. {
  4545. name: "DEFCON 1",
  4546. height: math.unit(500000, "km")
  4547. },
  4548. {
  4549. name: "DEFCON 0",
  4550. height: math.unit(3, "gigaparsecs")
  4551. },
  4552. ]
  4553. ))
  4554. characterMakers.push(() => makeCharacter(
  4555. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4556. {
  4557. front: {
  4558. height: math.unit(2, "meters"),
  4559. weight: math.unit(76, "kg"),
  4560. name: "Front",
  4561. image: {
  4562. source: "./media/characters/gale/front.svg"
  4563. }
  4564. },
  4565. frontAlt1: {
  4566. height: math.unit(2, "meters"),
  4567. weight: math.unit(76, "kg"),
  4568. name: "Front (Alt 1)",
  4569. image: {
  4570. source: "./media/characters/gale/front-alt-1.svg"
  4571. }
  4572. },
  4573. frontAlt2: {
  4574. height: math.unit(2, "meters"),
  4575. weight: math.unit(76, "kg"),
  4576. name: "Front (Alt 2)",
  4577. image: {
  4578. source: "./media/characters/gale/front-alt-2.svg"
  4579. }
  4580. },
  4581. },
  4582. [
  4583. {
  4584. name: "Normal",
  4585. height: math.unit(7, "feet")
  4586. },
  4587. {
  4588. name: "Macro",
  4589. height: math.unit(150, "feet"),
  4590. default: true
  4591. },
  4592. {
  4593. name: "Macro+",
  4594. height: math.unit(300, "feet")
  4595. },
  4596. ]
  4597. ))
  4598. characterMakers.push(() => makeCharacter(
  4599. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4600. {
  4601. front: {
  4602. height: math.unit(5 + 10/12, "feet"),
  4603. weight: math.unit(67, "kg"),
  4604. name: "Front",
  4605. image: {
  4606. source: "./media/characters/draylen/front.svg",
  4607. extra: 832/777,
  4608. bottom: 85/917
  4609. }
  4610. }
  4611. },
  4612. [
  4613. {
  4614. name: "Normal",
  4615. height: math.unit(5 + 10/12, "feet")
  4616. },
  4617. {
  4618. name: "Macro",
  4619. height: math.unit(150, "feet"),
  4620. default: true
  4621. }
  4622. ]
  4623. ))
  4624. characterMakers.push(() => makeCharacter(
  4625. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4626. {
  4627. front: {
  4628. height: math.unit(7 + 9 / 12, "feet"),
  4629. weight: math.unit(379, "lbs"),
  4630. name: "Front",
  4631. image: {
  4632. source: "./media/characters/chez/front.svg"
  4633. }
  4634. },
  4635. side: {
  4636. height: math.unit(7 + 9 / 12, "feet"),
  4637. weight: math.unit(379, "lbs"),
  4638. name: "Side",
  4639. image: {
  4640. source: "./media/characters/chez/side.svg"
  4641. }
  4642. }
  4643. },
  4644. [
  4645. {
  4646. name: "Normal",
  4647. height: math.unit(7 + 9 / 12, "feet"),
  4648. default: true
  4649. },
  4650. {
  4651. name: "God King",
  4652. height: math.unit(9750000, "meters")
  4653. }
  4654. ]
  4655. ))
  4656. characterMakers.push(() => makeCharacter(
  4657. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4658. {
  4659. front: {
  4660. height: math.unit(6, "feet"),
  4661. weight: math.unit(275, "lbs"),
  4662. name: "Front",
  4663. image: {
  4664. source: "./media/characters/kaylum/front.svg",
  4665. bottom: 0.01,
  4666. extra: 1166 / 1031
  4667. }
  4668. },
  4669. frontWingless: {
  4670. height: math.unit(6, "feet"),
  4671. weight: math.unit(275, "lbs"),
  4672. name: "Front (Wingless)",
  4673. image: {
  4674. source: "./media/characters/kaylum/front-wingless.svg",
  4675. bottom: 0.01,
  4676. extra: 1117 / 1031
  4677. }
  4678. }
  4679. },
  4680. [
  4681. {
  4682. name: "Normal",
  4683. height: math.unit(3.05, "meters")
  4684. },
  4685. {
  4686. name: "Master",
  4687. height: math.unit(5.5, "meters")
  4688. },
  4689. {
  4690. name: "Rampage",
  4691. height: math.unit(19, "meters")
  4692. },
  4693. {
  4694. name: "Macro Lite",
  4695. height: math.unit(37, "meters")
  4696. },
  4697. {
  4698. name: "Hyper Predator",
  4699. height: math.unit(61, "meters")
  4700. },
  4701. {
  4702. name: "Macro",
  4703. height: math.unit(138, "meters"),
  4704. default: true
  4705. }
  4706. ]
  4707. ))
  4708. characterMakers.push(() => makeCharacter(
  4709. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4710. {
  4711. front: {
  4712. height: math.unit(6, "feet"),
  4713. weight: math.unit(150, "lbs"),
  4714. name: "Front",
  4715. image: {
  4716. source: "./media/characters/geta/front.svg"
  4717. }
  4718. }
  4719. },
  4720. [
  4721. {
  4722. name: "Micro",
  4723. height: math.unit(3, "inches"),
  4724. default: true
  4725. },
  4726. {
  4727. name: "Normal",
  4728. height: math.unit(5 + 5 / 12, "feet")
  4729. }
  4730. ]
  4731. ))
  4732. characterMakers.push(() => makeCharacter(
  4733. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4734. {
  4735. front: {
  4736. height: math.unit(6, "feet"),
  4737. weight: math.unit(300, "lbs"),
  4738. name: "Front",
  4739. image: {
  4740. source: "./media/characters/tyrnn/front.svg"
  4741. }
  4742. }
  4743. },
  4744. [
  4745. {
  4746. name: "Main Height",
  4747. height: math.unit(355, "feet"),
  4748. default: true
  4749. },
  4750. {
  4751. name: "Fave. Height",
  4752. height: math.unit(2400, "feet")
  4753. }
  4754. ]
  4755. ))
  4756. characterMakers.push(() => makeCharacter(
  4757. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4758. {
  4759. front: {
  4760. height: math.unit(6, "feet"),
  4761. weight: math.unit(300, "lbs"),
  4762. name: "Front",
  4763. image: {
  4764. source: "./media/characters/appledectomy/front.svg"
  4765. }
  4766. }
  4767. },
  4768. [
  4769. {
  4770. name: "Macro",
  4771. height: math.unit(2500, "feet")
  4772. },
  4773. {
  4774. name: "Megamacro",
  4775. height: math.unit(50, "miles"),
  4776. default: true
  4777. },
  4778. {
  4779. name: "Gigamacro",
  4780. height: math.unit(5000, "miles")
  4781. },
  4782. {
  4783. name: "Teramacro",
  4784. height: math.unit(250000, "miles")
  4785. },
  4786. ]
  4787. ))
  4788. characterMakers.push(() => makeCharacter(
  4789. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4790. {
  4791. front: {
  4792. height: math.unit(6, "feet"),
  4793. weight: math.unit(200, "lbs"),
  4794. name: "Front",
  4795. image: {
  4796. source: "./media/characters/vulpes/front.svg",
  4797. extra: 573 / 543,
  4798. bottom: 0.033
  4799. }
  4800. },
  4801. side: {
  4802. height: math.unit(6, "feet"),
  4803. weight: math.unit(200, "lbs"),
  4804. name: "Side",
  4805. image: {
  4806. source: "./media/characters/vulpes/side.svg",
  4807. extra: 577 / 549,
  4808. bottom: 11 / 588
  4809. }
  4810. },
  4811. back: {
  4812. height: math.unit(6, "feet"),
  4813. weight: math.unit(200, "lbs"),
  4814. name: "Back",
  4815. image: {
  4816. source: "./media/characters/vulpes/back.svg",
  4817. extra: 573 / 549,
  4818. bottom: 20 / 593
  4819. }
  4820. },
  4821. feet: {
  4822. height: math.unit(1.276, "feet"),
  4823. name: "Feet",
  4824. image: {
  4825. source: "./media/characters/vulpes/feet.svg"
  4826. }
  4827. },
  4828. maw: {
  4829. height: math.unit(1.18, "feet"),
  4830. name: "Maw",
  4831. image: {
  4832. source: "./media/characters/vulpes/maw.svg"
  4833. }
  4834. },
  4835. },
  4836. [
  4837. {
  4838. name: "Micro",
  4839. height: math.unit(2, "inches")
  4840. },
  4841. {
  4842. name: "Normal",
  4843. height: math.unit(6.3, "feet")
  4844. },
  4845. {
  4846. name: "Macro",
  4847. height: math.unit(850, "feet")
  4848. },
  4849. {
  4850. name: "Megamacro",
  4851. height: math.unit(7500, "feet"),
  4852. default: true
  4853. },
  4854. {
  4855. name: "Gigamacro",
  4856. height: math.unit(570000, "miles")
  4857. }
  4858. ]
  4859. ))
  4860. characterMakers.push(() => makeCharacter(
  4861. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4862. {
  4863. front: {
  4864. height: math.unit(6, "feet"),
  4865. weight: math.unit(210, "lbs"),
  4866. name: "Front",
  4867. image: {
  4868. source: "./media/characters/rain-fallen/front.svg"
  4869. }
  4870. },
  4871. side: {
  4872. height: math.unit(6, "feet"),
  4873. weight: math.unit(210, "lbs"),
  4874. name: "Side",
  4875. image: {
  4876. source: "./media/characters/rain-fallen/side.svg"
  4877. }
  4878. },
  4879. back: {
  4880. height: math.unit(6, "feet"),
  4881. weight: math.unit(210, "lbs"),
  4882. name: "Back",
  4883. image: {
  4884. source: "./media/characters/rain-fallen/back.svg"
  4885. }
  4886. },
  4887. feral: {
  4888. height: math.unit(9, "feet"),
  4889. weight: math.unit(700, "lbs"),
  4890. name: "Feral",
  4891. image: {
  4892. source: "./media/characters/rain-fallen/feral.svg"
  4893. }
  4894. },
  4895. },
  4896. [
  4897. {
  4898. name: "Meddling with Mortals",
  4899. height: math.unit(8 + 8/12, "feet")
  4900. },
  4901. {
  4902. name: "Normal",
  4903. height: math.unit(5, "meter")
  4904. },
  4905. {
  4906. name: "Macro",
  4907. height: math.unit(150, "meter"),
  4908. default: true
  4909. },
  4910. {
  4911. name: "Megamacro",
  4912. height: math.unit(278e6, "meter")
  4913. },
  4914. {
  4915. name: "Gigamacro",
  4916. height: math.unit(2e9, "meter")
  4917. },
  4918. {
  4919. name: "Teramacro",
  4920. height: math.unit(8e12, "meter")
  4921. },
  4922. {
  4923. name: "Devourer",
  4924. height: math.unit(14, "zettameters")
  4925. },
  4926. {
  4927. name: "Scarlet King",
  4928. height: math.unit(18, "yottameters")
  4929. },
  4930. {
  4931. name: "Void",
  4932. height: math.unit(1e88, "yottameters")
  4933. }
  4934. ]
  4935. ))
  4936. characterMakers.push(() => makeCharacter(
  4937. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4938. {
  4939. standing: {
  4940. height: math.unit(6, "feet"),
  4941. weight: math.unit(180, "lbs"),
  4942. name: "Standing",
  4943. image: {
  4944. source: "./media/characters/zaakira/standing.svg",
  4945. extra: 1599/1504,
  4946. bottom: 39/1638
  4947. }
  4948. },
  4949. laying: {
  4950. height: math.unit(3, "feet"),
  4951. weight: math.unit(180, "lbs"),
  4952. name: "Laying",
  4953. image: {
  4954. source: "./media/characters/zaakira/laying.svg"
  4955. }
  4956. },
  4957. },
  4958. [
  4959. {
  4960. name: "Normal",
  4961. height: math.unit(12, "feet")
  4962. },
  4963. {
  4964. name: "Macro",
  4965. height: math.unit(279, "feet"),
  4966. default: true
  4967. }
  4968. ]
  4969. ))
  4970. characterMakers.push(() => makeCharacter(
  4971. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4972. {
  4973. femSfw: {
  4974. height: math.unit(8, "feet"),
  4975. weight: math.unit(350, "lb"),
  4976. name: "Fem",
  4977. image: {
  4978. source: "./media/characters/sigvald/fem-sfw.svg",
  4979. extra: 182 / 164,
  4980. bottom: 8.7 / 190.5
  4981. }
  4982. },
  4983. femNsfw: {
  4984. height: math.unit(8, "feet"),
  4985. weight: math.unit(350, "lb"),
  4986. name: "Fem (NSFW)",
  4987. image: {
  4988. source: "./media/characters/sigvald/fem-nsfw.svg",
  4989. extra: 182 / 164,
  4990. bottom: 8.7 / 190.5
  4991. }
  4992. },
  4993. maleNsfw: {
  4994. height: math.unit(8, "feet"),
  4995. weight: math.unit(350, "lb"),
  4996. name: "Male (NSFW)",
  4997. image: {
  4998. source: "./media/characters/sigvald/male-nsfw.svg",
  4999. extra: 182 / 164,
  5000. bottom: 8.7 / 190.5
  5001. }
  5002. },
  5003. hermNsfw: {
  5004. height: math.unit(8, "feet"),
  5005. weight: math.unit(350, "lb"),
  5006. name: "Herm (NSFW)",
  5007. image: {
  5008. source: "./media/characters/sigvald/herm-nsfw.svg",
  5009. extra: 182 / 164,
  5010. bottom: 8.7 / 190.5
  5011. }
  5012. },
  5013. dick: {
  5014. height: math.unit(2.36, "feet"),
  5015. name: "Dick",
  5016. image: {
  5017. source: "./media/characters/sigvald/dick.svg"
  5018. }
  5019. },
  5020. eye: {
  5021. height: math.unit(0.31, "feet"),
  5022. name: "Eye",
  5023. image: {
  5024. source: "./media/characters/sigvald/eye.svg"
  5025. }
  5026. },
  5027. mouth: {
  5028. height: math.unit(0.92, "feet"),
  5029. name: "Mouth",
  5030. image: {
  5031. source: "./media/characters/sigvald/mouth.svg"
  5032. }
  5033. },
  5034. paws: {
  5035. height: math.unit(2.2, "feet"),
  5036. name: "Paws",
  5037. image: {
  5038. source: "./media/characters/sigvald/paws.svg"
  5039. }
  5040. }
  5041. },
  5042. [
  5043. {
  5044. name: "Normal",
  5045. height: math.unit(8, "feet")
  5046. },
  5047. {
  5048. name: "Large",
  5049. height: math.unit(12, "feet")
  5050. },
  5051. {
  5052. name: "Larger",
  5053. height: math.unit(20, "feet")
  5054. },
  5055. {
  5056. name: "Macro",
  5057. height: math.unit(150, "feet")
  5058. },
  5059. {
  5060. name: "Macro+",
  5061. height: math.unit(200, "feet"),
  5062. default: true
  5063. },
  5064. ]
  5065. ))
  5066. characterMakers.push(() => makeCharacter(
  5067. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5068. {
  5069. side: {
  5070. height: math.unit(12, "feet"),
  5071. weight: math.unit(2000, "kg"),
  5072. name: "Side",
  5073. image: {
  5074. source: "./media/characters/scott/side.svg",
  5075. extra: 754 / 724,
  5076. bottom: 0.069
  5077. }
  5078. },
  5079. upright: {
  5080. height: math.unit(12, "feet"),
  5081. weight: math.unit(2000, "kg"),
  5082. name: "Upright",
  5083. image: {
  5084. source: "./media/characters/scott/upright.svg",
  5085. extra: 3881 / 3722,
  5086. bottom: 0.05
  5087. }
  5088. },
  5089. },
  5090. [
  5091. {
  5092. name: "Normal",
  5093. height: math.unit(12, "feet"),
  5094. default: true
  5095. },
  5096. ]
  5097. ))
  5098. characterMakers.push(() => makeCharacter(
  5099. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5100. {
  5101. side: {
  5102. height: math.unit(8, "meters"),
  5103. weight: math.unit(84755, "lbs"),
  5104. name: "Side",
  5105. image: {
  5106. source: "./media/characters/tobias/side.svg",
  5107. extra: 1474 / 1096,
  5108. bottom: 38.9 / 1513.1235
  5109. }
  5110. },
  5111. },
  5112. [
  5113. {
  5114. name: "Normal",
  5115. height: math.unit(8, "meters"),
  5116. default: true
  5117. },
  5118. ]
  5119. ))
  5120. characterMakers.push(() => makeCharacter(
  5121. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5122. {
  5123. front: {
  5124. height: math.unit(5.5, "feet"),
  5125. weight: math.unit(400, "lbs"),
  5126. name: "Front",
  5127. image: {
  5128. source: "./media/characters/kieran/front.svg",
  5129. extra: 2694 / 2364,
  5130. bottom: 217 / 2908
  5131. }
  5132. },
  5133. side: {
  5134. height: math.unit(5.5, "feet"),
  5135. weight: math.unit(400, "lbs"),
  5136. name: "Side",
  5137. image: {
  5138. source: "./media/characters/kieran/side.svg",
  5139. extra: 875 / 777,
  5140. bottom: 84.6 / 959
  5141. }
  5142. },
  5143. },
  5144. [
  5145. {
  5146. name: "Normal",
  5147. height: math.unit(5.5, "feet"),
  5148. default: true
  5149. },
  5150. ]
  5151. ))
  5152. characterMakers.push(() => makeCharacter(
  5153. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5154. {
  5155. side: {
  5156. height: math.unit(2, "meters"),
  5157. weight: math.unit(70, "kg"),
  5158. name: "Side",
  5159. image: {
  5160. source: "./media/characters/sanya/side.svg",
  5161. bottom: 0.02,
  5162. extra: 1.02
  5163. }
  5164. },
  5165. },
  5166. [
  5167. {
  5168. name: "Small",
  5169. height: math.unit(2, "meters")
  5170. },
  5171. {
  5172. name: "Normal",
  5173. height: math.unit(3, "meters")
  5174. },
  5175. {
  5176. name: "Macro",
  5177. height: math.unit(16, "meters"),
  5178. default: true
  5179. },
  5180. ]
  5181. ))
  5182. characterMakers.push(() => makeCharacter(
  5183. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5184. {
  5185. front: {
  5186. height: math.unit(2, "meters"),
  5187. weight: math.unit(120, "kg"),
  5188. name: "Front",
  5189. image: {
  5190. source: "./media/characters/miranda/front.svg",
  5191. extra: 195 / 185,
  5192. bottom: 10.9 / 206.5
  5193. }
  5194. },
  5195. back: {
  5196. height: math.unit(2, "meters"),
  5197. weight: math.unit(120, "kg"),
  5198. name: "Back",
  5199. image: {
  5200. source: "./media/characters/miranda/back.svg",
  5201. extra: 201 / 193,
  5202. bottom: 2.3 / 203.7
  5203. }
  5204. },
  5205. },
  5206. [
  5207. {
  5208. name: "Normal",
  5209. height: math.unit(10, "feet"),
  5210. default: true
  5211. }
  5212. ]
  5213. ))
  5214. characterMakers.push(() => makeCharacter(
  5215. { name: "James", species: ["deer"], tags: ["anthro"] },
  5216. {
  5217. side: {
  5218. height: math.unit(2, "meters"),
  5219. weight: math.unit(100, "kg"),
  5220. name: "Front",
  5221. image: {
  5222. source: "./media/characters/james/front.svg",
  5223. extra: 10 / 8.5
  5224. }
  5225. },
  5226. },
  5227. [
  5228. {
  5229. name: "Normal",
  5230. height: math.unit(8.5, "feet"),
  5231. default: true
  5232. }
  5233. ]
  5234. ))
  5235. characterMakers.push(() => makeCharacter(
  5236. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5237. {
  5238. side: {
  5239. height: math.unit(9.5, "feet"),
  5240. weight: math.unit(2500, "lbs"),
  5241. name: "Side",
  5242. image: {
  5243. source: "./media/characters/heather/side.svg"
  5244. }
  5245. },
  5246. },
  5247. [
  5248. {
  5249. name: "Normal",
  5250. height: math.unit(9.5, "feet"),
  5251. default: true
  5252. }
  5253. ]
  5254. ))
  5255. characterMakers.push(() => makeCharacter(
  5256. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5257. {
  5258. side: {
  5259. height: math.unit(6.5, "feet"),
  5260. weight: math.unit(400, "lbs"),
  5261. name: "Side",
  5262. image: {
  5263. source: "./media/characters/lukas/side.svg",
  5264. extra: 7.25 / 6.5
  5265. }
  5266. },
  5267. },
  5268. [
  5269. {
  5270. name: "Normal",
  5271. height: math.unit(6.5, "feet"),
  5272. default: true
  5273. }
  5274. ]
  5275. ))
  5276. characterMakers.push(() => makeCharacter(
  5277. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5278. {
  5279. side: {
  5280. height: math.unit(5, "feet"),
  5281. weight: math.unit(3000, "lbs"),
  5282. name: "Side",
  5283. image: {
  5284. source: "./media/characters/louise/side.svg"
  5285. }
  5286. },
  5287. },
  5288. [
  5289. {
  5290. name: "Normal",
  5291. height: math.unit(5, "feet"),
  5292. default: true
  5293. }
  5294. ]
  5295. ))
  5296. characterMakers.push(() => makeCharacter(
  5297. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5298. {
  5299. side: {
  5300. height: math.unit(6, "feet"),
  5301. weight: math.unit(150, "lbs"),
  5302. name: "Side",
  5303. image: {
  5304. source: "./media/characters/ramona/side.svg",
  5305. extra: 871/854,
  5306. bottom: 41/912
  5307. }
  5308. },
  5309. },
  5310. [
  5311. {
  5312. name: "Normal",
  5313. height: math.unit(5.3, "meters"),
  5314. default: true
  5315. },
  5316. {
  5317. name: "Macro",
  5318. height: math.unit(20, "stories")
  5319. },
  5320. {
  5321. name: "Macro+",
  5322. height: math.unit(50, "stories")
  5323. },
  5324. ]
  5325. ))
  5326. characterMakers.push(() => makeCharacter(
  5327. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5328. {
  5329. standing: {
  5330. height: math.unit(5.75, "feet"),
  5331. weight: math.unit(160, "lbs"),
  5332. name: "Standing",
  5333. image: {
  5334. source: "./media/characters/deerpuff/standing.svg",
  5335. extra: 682 / 624
  5336. }
  5337. },
  5338. sitting: {
  5339. height: math.unit(5.75 / 1.79, "feet"),
  5340. weight: math.unit(160, "lbs"),
  5341. name: "Sitting",
  5342. image: {
  5343. source: "./media/characters/deerpuff/sitting.svg",
  5344. bottom: 44 / 400,
  5345. extra: 1
  5346. }
  5347. },
  5348. taurLaying: {
  5349. height: math.unit(6, "feet"),
  5350. weight: math.unit(400, "lbs"),
  5351. name: "Taur (Laying)",
  5352. image: {
  5353. source: "./media/characters/deerpuff/taur-laying.svg"
  5354. }
  5355. },
  5356. },
  5357. [
  5358. {
  5359. name: "Puffball",
  5360. height: math.unit(6, "inches")
  5361. },
  5362. {
  5363. name: "Normalpuff",
  5364. height: math.unit(5.75, "feet")
  5365. },
  5366. {
  5367. name: "Macropuff",
  5368. height: math.unit(1500, "feet"),
  5369. default: true
  5370. },
  5371. {
  5372. name: "Megapuff",
  5373. height: math.unit(500, "miles")
  5374. },
  5375. {
  5376. name: "Gigapuff",
  5377. height: math.unit(250000, "miles")
  5378. },
  5379. {
  5380. name: "Omegapuff",
  5381. height: math.unit(1000, "lightyears")
  5382. },
  5383. ]
  5384. ))
  5385. characterMakers.push(() => makeCharacter(
  5386. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5387. {
  5388. stomping: {
  5389. height: math.unit(6, "feet"),
  5390. weight: math.unit(170, "lbs"),
  5391. name: "Stomping",
  5392. image: {
  5393. source: "./media/characters/vivian/stomping.svg"
  5394. }
  5395. },
  5396. sitting: {
  5397. height: math.unit(6 / 1.75, "feet"),
  5398. weight: math.unit(170, "lbs"),
  5399. name: "Sitting",
  5400. image: {
  5401. source: "./media/characters/vivian/sitting.svg",
  5402. bottom: 1 / 6.4,
  5403. extra: 1,
  5404. }
  5405. },
  5406. },
  5407. [
  5408. {
  5409. name: "Normal",
  5410. height: math.unit(7, "feet"),
  5411. default: true
  5412. },
  5413. {
  5414. name: "Macro",
  5415. height: math.unit(10, "stories")
  5416. },
  5417. {
  5418. name: "Macro+",
  5419. height: math.unit(30, "stories")
  5420. },
  5421. {
  5422. name: "Megamacro",
  5423. height: math.unit(10, "miles")
  5424. },
  5425. {
  5426. name: "Megamacro+",
  5427. height: math.unit(2750000, "meters")
  5428. },
  5429. ]
  5430. ))
  5431. characterMakers.push(() => makeCharacter(
  5432. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5433. {
  5434. front: {
  5435. height: math.unit(6, "feet"),
  5436. weight: math.unit(160, "lbs"),
  5437. name: "Front",
  5438. image: {
  5439. source: "./media/characters/prince/front.svg",
  5440. extra: 3400 / 3000
  5441. }
  5442. },
  5443. jumping: {
  5444. height: math.unit(6, "feet"),
  5445. weight: math.unit(160, "lbs"),
  5446. name: "Jumping",
  5447. image: {
  5448. source: "./media/characters/prince/jump.svg",
  5449. extra: 2555 / 2134
  5450. }
  5451. },
  5452. },
  5453. [
  5454. {
  5455. name: "Normal",
  5456. height: math.unit(7.75, "feet"),
  5457. default: true
  5458. },
  5459. {
  5460. name: "Not cute",
  5461. height: math.unit(17, "feet")
  5462. },
  5463. {
  5464. name: "I said NOT",
  5465. height: math.unit(91, "feet")
  5466. },
  5467. {
  5468. name: "Please stop",
  5469. height: math.unit(560, "feet")
  5470. },
  5471. {
  5472. name: "What have you done",
  5473. height: math.unit(2200, "feet")
  5474. },
  5475. {
  5476. name: "Deer God",
  5477. height: math.unit(3.6, "miles")
  5478. },
  5479. ]
  5480. ))
  5481. characterMakers.push(() => makeCharacter(
  5482. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5483. {
  5484. standing: {
  5485. height: math.unit(6, "feet"),
  5486. weight: math.unit(300, "lbs"),
  5487. name: "Standing",
  5488. image: {
  5489. source: "./media/characters/psymon/standing.svg",
  5490. extra: 1888 / 1810,
  5491. bottom: 0.05
  5492. }
  5493. },
  5494. slithering: {
  5495. height: math.unit(6, "feet"),
  5496. weight: math.unit(300, "lbs"),
  5497. name: "Slithering",
  5498. image: {
  5499. source: "./media/characters/psymon/slithering.svg",
  5500. extra: 1330 / 1224
  5501. }
  5502. },
  5503. slitheringAlt: {
  5504. height: math.unit(6, "feet"),
  5505. weight: math.unit(300, "lbs"),
  5506. name: "Slithering (Alt)",
  5507. image: {
  5508. source: "./media/characters/psymon/slithering-alt.svg",
  5509. extra: 1330 / 1224
  5510. }
  5511. },
  5512. },
  5513. [
  5514. {
  5515. name: "Normal",
  5516. height: math.unit(11.25, "feet"),
  5517. default: true
  5518. },
  5519. {
  5520. name: "Large",
  5521. height: math.unit(27, "feet")
  5522. },
  5523. {
  5524. name: "Giant",
  5525. height: math.unit(87, "feet")
  5526. },
  5527. {
  5528. name: "Macro",
  5529. height: math.unit(365, "feet")
  5530. },
  5531. {
  5532. name: "Megamacro",
  5533. height: math.unit(3, "miles")
  5534. },
  5535. {
  5536. name: "World Serpent",
  5537. height: math.unit(8000, "miles")
  5538. },
  5539. ]
  5540. ))
  5541. characterMakers.push(() => makeCharacter(
  5542. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5543. {
  5544. front: {
  5545. height: math.unit(6, "feet"),
  5546. weight: math.unit(180, "lbs"),
  5547. name: "Front",
  5548. image: {
  5549. source: "./media/characters/daimos/front.svg",
  5550. extra: 4160 / 3897,
  5551. bottom: 0.021
  5552. }
  5553. }
  5554. },
  5555. [
  5556. {
  5557. name: "Normal",
  5558. height: math.unit(8, "feet"),
  5559. default: true
  5560. },
  5561. {
  5562. name: "Big Dog",
  5563. height: math.unit(22, "feet")
  5564. },
  5565. {
  5566. name: "Macro",
  5567. height: math.unit(127, "feet")
  5568. },
  5569. {
  5570. name: "Megamacro",
  5571. height: math.unit(3600, "feet")
  5572. },
  5573. ]
  5574. ))
  5575. characterMakers.push(() => makeCharacter(
  5576. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5577. {
  5578. side: {
  5579. height: math.unit(6, "feet"),
  5580. weight: math.unit(180, "lbs"),
  5581. name: "Side",
  5582. image: {
  5583. source: "./media/characters/blake/side.svg",
  5584. extra: 1212 / 1120,
  5585. bottom: 0.05
  5586. }
  5587. },
  5588. crouched: {
  5589. height: math.unit(6 * 0.57, "feet"),
  5590. weight: math.unit(180, "lbs"),
  5591. name: "Crouched",
  5592. image: {
  5593. source: "./media/characters/blake/crouched.svg",
  5594. extra: 840 / 587,
  5595. bottom: 0.04
  5596. }
  5597. },
  5598. bent: {
  5599. height: math.unit(6 * 0.75, "feet"),
  5600. weight: math.unit(180, "lbs"),
  5601. name: "Bent",
  5602. image: {
  5603. source: "./media/characters/blake/bent.svg",
  5604. extra: 592 / 544,
  5605. bottom: 0.035
  5606. }
  5607. },
  5608. },
  5609. [
  5610. {
  5611. name: "Normal",
  5612. height: math.unit(8 + 1 / 6, "feet"),
  5613. default: true
  5614. },
  5615. {
  5616. name: "Big Backside",
  5617. height: math.unit(37, "feet")
  5618. },
  5619. {
  5620. name: "Subway Shredder",
  5621. height: math.unit(72, "feet")
  5622. },
  5623. {
  5624. name: "City Carver",
  5625. height: math.unit(1675, "feet")
  5626. },
  5627. {
  5628. name: "Tectonic Tweaker",
  5629. height: math.unit(2300, "miles")
  5630. },
  5631. ]
  5632. ))
  5633. characterMakers.push(() => makeCharacter(
  5634. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5635. {
  5636. front: {
  5637. height: math.unit(6, "feet"),
  5638. weight: math.unit(180, "lbs"),
  5639. name: "Front",
  5640. image: {
  5641. source: "./media/characters/guisetto/front.svg",
  5642. extra: 856 / 817,
  5643. bottom: 0.06
  5644. }
  5645. },
  5646. airborne: {
  5647. height: math.unit(6, "feet"),
  5648. weight: math.unit(180, "lbs"),
  5649. name: "Airborne",
  5650. image: {
  5651. source: "./media/characters/guisetto/airborne.svg",
  5652. extra: 584 / 525
  5653. }
  5654. },
  5655. },
  5656. [
  5657. {
  5658. name: "Normal",
  5659. height: math.unit(10 + 11 / 12, "feet"),
  5660. default: true
  5661. },
  5662. {
  5663. name: "Large",
  5664. height: math.unit(35, "feet")
  5665. },
  5666. {
  5667. name: "Macro",
  5668. height: math.unit(475, "feet")
  5669. },
  5670. ]
  5671. ))
  5672. characterMakers.push(() => makeCharacter(
  5673. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5674. {
  5675. front: {
  5676. height: math.unit(6, "feet"),
  5677. weight: math.unit(180, "lbs"),
  5678. name: "Front",
  5679. image: {
  5680. source: "./media/characters/luxor/front.svg",
  5681. extra: 2940 / 2152
  5682. }
  5683. },
  5684. back: {
  5685. height: math.unit(6, "feet"),
  5686. weight: math.unit(180, "lbs"),
  5687. name: "Back",
  5688. image: {
  5689. source: "./media/characters/luxor/back.svg",
  5690. extra: 1083 / 960
  5691. }
  5692. },
  5693. },
  5694. [
  5695. {
  5696. name: "Normal",
  5697. height: math.unit(5 + 5 / 6, "feet"),
  5698. default: true
  5699. },
  5700. {
  5701. name: "Lamp",
  5702. height: math.unit(50, "feet")
  5703. },
  5704. {
  5705. name: "Lämp",
  5706. height: math.unit(300, "feet")
  5707. },
  5708. {
  5709. name: "The sun is a lamp",
  5710. height: math.unit(250000, "miles")
  5711. },
  5712. ]
  5713. ))
  5714. characterMakers.push(() => makeCharacter(
  5715. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5716. {
  5717. front: {
  5718. height: math.unit(6, "feet"),
  5719. weight: math.unit(50, "lbs"),
  5720. name: "Front",
  5721. image: {
  5722. source: "./media/characters/huoyan/front.svg"
  5723. }
  5724. },
  5725. side: {
  5726. height: math.unit(6, "feet"),
  5727. weight: math.unit(180, "lbs"),
  5728. name: "Side",
  5729. image: {
  5730. source: "./media/characters/huoyan/side.svg"
  5731. }
  5732. },
  5733. },
  5734. [
  5735. {
  5736. name: "Chef",
  5737. height: math.unit(9, "feet")
  5738. },
  5739. {
  5740. name: "Normal",
  5741. height: math.unit(65, "feet"),
  5742. default: true
  5743. },
  5744. {
  5745. name: "Macro",
  5746. height: math.unit(780, "feet")
  5747. },
  5748. {
  5749. name: "Flaming Mountain",
  5750. height: math.unit(4.8, "miles")
  5751. },
  5752. {
  5753. name: "Celestial",
  5754. height: math.unit(765000, "miles")
  5755. },
  5756. ]
  5757. ))
  5758. characterMakers.push(() => makeCharacter(
  5759. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5760. {
  5761. front: {
  5762. height: math.unit(5 + 3 / 4, "feet"),
  5763. weight: math.unit(120, "lbs"),
  5764. name: "Front",
  5765. image: {
  5766. source: "./media/characters/tails/front.svg"
  5767. }
  5768. }
  5769. },
  5770. [
  5771. {
  5772. name: "Normal",
  5773. height: math.unit(5 + 3 / 4, "feet"),
  5774. default: true
  5775. }
  5776. ]
  5777. ))
  5778. characterMakers.push(() => makeCharacter(
  5779. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5780. {
  5781. front: {
  5782. height: math.unit(4, "feet"),
  5783. weight: math.unit(50, "lbs"),
  5784. name: "Front",
  5785. image: {
  5786. source: "./media/characters/rainy/front.svg"
  5787. }
  5788. }
  5789. },
  5790. [
  5791. {
  5792. name: "Macro",
  5793. height: math.unit(800, "feet"),
  5794. default: true
  5795. }
  5796. ]
  5797. ))
  5798. characterMakers.push(() => makeCharacter(
  5799. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5800. {
  5801. front: {
  5802. height: math.unit(6, "feet"),
  5803. weight: math.unit(150, "lbs"),
  5804. name: "Front",
  5805. image: {
  5806. source: "./media/characters/rainier/front.svg"
  5807. }
  5808. }
  5809. },
  5810. [
  5811. {
  5812. name: "Micro",
  5813. height: math.unit(2, "mm"),
  5814. default: true
  5815. }
  5816. ]
  5817. ))
  5818. characterMakers.push(() => makeCharacter(
  5819. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5820. {
  5821. front: {
  5822. height: math.unit(8 + 4/12, "feet"),
  5823. name: "Front",
  5824. image: {
  5825. source: "./media/characters/andy-renard/front.svg",
  5826. extra: 1839/1726,
  5827. bottom: 134/1973
  5828. }
  5829. },
  5830. back: {
  5831. height: math.unit(8 + 4/12, "feet"),
  5832. name: "Back",
  5833. image: {
  5834. source: "./media/characters/andy-renard/back.svg",
  5835. extra: 1838/1710,
  5836. bottom: 105/1943
  5837. }
  5838. },
  5839. },
  5840. [
  5841. {
  5842. name: "Tall",
  5843. height: math.unit(8 + 4/12, "feet")
  5844. },
  5845. {
  5846. name: "Mini Macro",
  5847. height: math.unit(15, "feet"),
  5848. default: true
  5849. },
  5850. {
  5851. name: "Macro",
  5852. height: math.unit(100, "feet")
  5853. },
  5854. {
  5855. name: "Mega Macro",
  5856. height: math.unit(1000, "feet")
  5857. },
  5858. {
  5859. name: "Giga Macro",
  5860. height: math.unit(10, "miles")
  5861. },
  5862. {
  5863. name: "God Macro",
  5864. height: math.unit(1, "multiverse")
  5865. },
  5866. ]
  5867. ))
  5868. characterMakers.push(() => makeCharacter(
  5869. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5870. {
  5871. front: {
  5872. height: math.unit(6, "feet"),
  5873. weight: math.unit(210, "lbs"),
  5874. name: "Front",
  5875. image: {
  5876. source: "./media/characters/cimmaron/front-sfw.svg",
  5877. extra: 701 / 676,
  5878. bottom: 0.046
  5879. }
  5880. },
  5881. back: {
  5882. height: math.unit(6, "feet"),
  5883. weight: math.unit(210, "lbs"),
  5884. name: "Back",
  5885. image: {
  5886. source: "./media/characters/cimmaron/back-sfw.svg",
  5887. extra: 701 / 676,
  5888. bottom: 0.046
  5889. }
  5890. },
  5891. frontNsfw: {
  5892. height: math.unit(6, "feet"),
  5893. weight: math.unit(210, "lbs"),
  5894. name: "Front (NSFW)",
  5895. image: {
  5896. source: "./media/characters/cimmaron/front-nsfw.svg",
  5897. extra: 701 / 676,
  5898. bottom: 0.046
  5899. }
  5900. },
  5901. backNsfw: {
  5902. height: math.unit(6, "feet"),
  5903. weight: math.unit(210, "lbs"),
  5904. name: "Back (NSFW)",
  5905. image: {
  5906. source: "./media/characters/cimmaron/back-nsfw.svg",
  5907. extra: 701 / 676,
  5908. bottom: 0.046
  5909. }
  5910. },
  5911. dick: {
  5912. height: math.unit(1.714, "feet"),
  5913. name: "Dick",
  5914. image: {
  5915. source: "./media/characters/cimmaron/dick.svg"
  5916. }
  5917. },
  5918. },
  5919. [
  5920. {
  5921. name: "Normal",
  5922. height: math.unit(6, "feet"),
  5923. default: true
  5924. },
  5925. {
  5926. name: "Macro Mayor",
  5927. height: math.unit(350, "meters")
  5928. },
  5929. ]
  5930. ))
  5931. characterMakers.push(() => makeCharacter(
  5932. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5933. {
  5934. front: {
  5935. height: math.unit(6, "feet"),
  5936. weight: math.unit(200, "lbs"),
  5937. name: "Front",
  5938. image: {
  5939. source: "./media/characters/akari/front.svg",
  5940. extra: 962 / 901,
  5941. bottom: 0.04
  5942. }
  5943. }
  5944. },
  5945. [
  5946. {
  5947. name: "Micro",
  5948. height: math.unit(5, "inches"),
  5949. default: true
  5950. },
  5951. {
  5952. name: "Normal",
  5953. height: math.unit(7, "feet")
  5954. },
  5955. ]
  5956. ))
  5957. characterMakers.push(() => makeCharacter(
  5958. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5959. {
  5960. front: {
  5961. height: math.unit(6, "feet"),
  5962. weight: math.unit(140, "lbs"),
  5963. name: "Front",
  5964. image: {
  5965. source: "./media/characters/cynosura/front.svg",
  5966. extra: 896 / 847
  5967. }
  5968. },
  5969. back: {
  5970. height: math.unit(6, "feet"),
  5971. weight: math.unit(140, "lbs"),
  5972. name: "Back",
  5973. image: {
  5974. source: "./media/characters/cynosura/back.svg",
  5975. extra: 1365 / 1250
  5976. }
  5977. },
  5978. },
  5979. [
  5980. {
  5981. name: "Micro",
  5982. height: math.unit(4, "inches")
  5983. },
  5984. {
  5985. name: "Normal",
  5986. height: math.unit(5.75, "feet"),
  5987. default: true
  5988. },
  5989. {
  5990. name: "Tall",
  5991. height: math.unit(10, "feet")
  5992. },
  5993. {
  5994. name: "Big",
  5995. height: math.unit(20, "feet")
  5996. },
  5997. {
  5998. name: "Macro",
  5999. height: math.unit(50, "feet")
  6000. },
  6001. ]
  6002. ))
  6003. characterMakers.push(() => makeCharacter(
  6004. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6005. {
  6006. front: {
  6007. height: math.unit(13 + 2/12, "feet"),
  6008. weight: math.unit(800, "kg"),
  6009. name: "Front",
  6010. image: {
  6011. source: "./media/characters/gin/front.svg",
  6012. extra: 1312/1191,
  6013. bottom: 45/1357
  6014. }
  6015. },
  6016. mouth: {
  6017. height: math.unit(2.39 * 1.8, "feet"),
  6018. name: "Mouth",
  6019. image: {
  6020. source: "./media/characters/gin/mouth.svg"
  6021. }
  6022. },
  6023. hand: {
  6024. height: math.unit(1.57 * 2.19, "feet"),
  6025. name: "Hand",
  6026. image: {
  6027. source: "./media/characters/gin/hand.svg"
  6028. }
  6029. },
  6030. foot: {
  6031. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6032. name: "Foot",
  6033. image: {
  6034. source: "./media/characters/gin/foot.svg"
  6035. }
  6036. },
  6037. sole: {
  6038. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6039. name: "Sole",
  6040. image: {
  6041. source: "./media/characters/gin/sole.svg"
  6042. }
  6043. },
  6044. },
  6045. [
  6046. {
  6047. name: "Very Small",
  6048. height: math.unit(13 + 2 / 12, "feet")
  6049. },
  6050. {
  6051. name: "Micro",
  6052. height: math.unit(600, "miles")
  6053. },
  6054. {
  6055. name: "Regular",
  6056. height: math.unit(20, "earths"),
  6057. default: true
  6058. },
  6059. {
  6060. name: "Macro",
  6061. height: math.unit(2.2, "solarradii")
  6062. },
  6063. {
  6064. name: "Teramacro",
  6065. height: math.unit(1.2, "galaxies")
  6066. },
  6067. {
  6068. name: "Omegamacro",
  6069. height: math.unit(200, "universes")
  6070. },
  6071. ]
  6072. ))
  6073. characterMakers.push(() => makeCharacter(
  6074. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6075. {
  6076. front: {
  6077. height: math.unit(6 + 1 / 6, "feet"),
  6078. weight: math.unit(178, "lbs"),
  6079. name: "Front",
  6080. image: {
  6081. source: "./media/characters/guy/front.svg"
  6082. }
  6083. }
  6084. },
  6085. [
  6086. {
  6087. name: "Normal",
  6088. height: math.unit(6 + 1 / 6, "feet"),
  6089. default: true
  6090. },
  6091. {
  6092. name: "Large",
  6093. height: math.unit(25 + 7 / 12, "feet")
  6094. },
  6095. {
  6096. name: "Macro",
  6097. height: math.unit(60 + 9 / 12, "feet")
  6098. },
  6099. {
  6100. name: "Macro+",
  6101. height: math.unit(246, "feet")
  6102. },
  6103. {
  6104. name: "Macro++",
  6105. height: math.unit(878, "feet")
  6106. }
  6107. ]
  6108. ))
  6109. characterMakers.push(() => makeCharacter(
  6110. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6111. {
  6112. front: {
  6113. height: math.unit(9, "feet"),
  6114. weight: math.unit(800, "lbs"),
  6115. name: "Front",
  6116. image: {
  6117. source: "./media/characters/tiberius/front.svg",
  6118. extra: 2295 / 2071
  6119. }
  6120. },
  6121. back: {
  6122. height: math.unit(9, "feet"),
  6123. weight: math.unit(800, "lbs"),
  6124. name: "Back",
  6125. image: {
  6126. source: "./media/characters/tiberius/back.svg",
  6127. extra: 2373 / 2160
  6128. }
  6129. },
  6130. },
  6131. [
  6132. {
  6133. name: "Normal",
  6134. height: math.unit(9, "feet"),
  6135. default: true
  6136. }
  6137. ]
  6138. ))
  6139. characterMakers.push(() => makeCharacter(
  6140. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6141. {
  6142. front: {
  6143. height: math.unit(6, "feet"),
  6144. weight: math.unit(600, "lbs"),
  6145. name: "Front",
  6146. image: {
  6147. source: "./media/characters/surgo/front.svg",
  6148. extra: 3591 / 2227
  6149. }
  6150. },
  6151. back: {
  6152. height: math.unit(6, "feet"),
  6153. weight: math.unit(600, "lbs"),
  6154. name: "Back",
  6155. image: {
  6156. source: "./media/characters/surgo/back.svg",
  6157. extra: 3557 / 2228
  6158. }
  6159. },
  6160. laying: {
  6161. height: math.unit(6 * 0.85, "feet"),
  6162. weight: math.unit(600, "lbs"),
  6163. name: "Laying",
  6164. image: {
  6165. source: "./media/characters/surgo/laying.svg"
  6166. }
  6167. },
  6168. },
  6169. [
  6170. {
  6171. name: "Normal",
  6172. height: math.unit(6, "feet"),
  6173. default: true
  6174. }
  6175. ]
  6176. ))
  6177. characterMakers.push(() => makeCharacter(
  6178. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6179. {
  6180. side: {
  6181. height: math.unit(6, "feet"),
  6182. weight: math.unit(150, "lbs"),
  6183. name: "Side",
  6184. image: {
  6185. source: "./media/characters/cibus/side.svg",
  6186. extra: 800 / 400
  6187. }
  6188. },
  6189. },
  6190. [
  6191. {
  6192. name: "Normal",
  6193. height: math.unit(6, "feet"),
  6194. default: true
  6195. }
  6196. ]
  6197. ))
  6198. characterMakers.push(() => makeCharacter(
  6199. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6200. {
  6201. front: {
  6202. height: math.unit(6, "feet"),
  6203. weight: math.unit(240, "lbs"),
  6204. name: "Front",
  6205. image: {
  6206. source: "./media/characters/nibbles/front.svg"
  6207. }
  6208. },
  6209. side: {
  6210. height: math.unit(6, "feet"),
  6211. weight: math.unit(240, "lbs"),
  6212. name: "Side",
  6213. image: {
  6214. source: "./media/characters/nibbles/side.svg"
  6215. }
  6216. },
  6217. },
  6218. [
  6219. {
  6220. name: "Normal",
  6221. height: math.unit(9, "feet"),
  6222. default: true
  6223. }
  6224. ]
  6225. ))
  6226. characterMakers.push(() => makeCharacter(
  6227. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6228. {
  6229. side: {
  6230. height: math.unit(5 + 1 / 6, "feet"),
  6231. weight: math.unit(130, "lbs"),
  6232. name: "Side",
  6233. image: {
  6234. source: "./media/characters/rikky/side.svg",
  6235. extra: 851 / 801
  6236. }
  6237. },
  6238. },
  6239. [
  6240. {
  6241. name: "Normal",
  6242. height: math.unit(5 + 1 / 6, "feet")
  6243. },
  6244. {
  6245. name: "Macro",
  6246. height: math.unit(152, "feet"),
  6247. default: true
  6248. },
  6249. {
  6250. name: "Megamacro",
  6251. height: math.unit(7, "miles")
  6252. }
  6253. ]
  6254. ))
  6255. characterMakers.push(() => makeCharacter(
  6256. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6257. {
  6258. side: {
  6259. height: math.unit(370, "cm"),
  6260. weight: math.unit(350, "lbs"),
  6261. name: "Side",
  6262. image: {
  6263. source: "./media/characters/malfressa/side.svg"
  6264. }
  6265. },
  6266. walking: {
  6267. height: math.unit(370, "cm"),
  6268. weight: math.unit(350, "lbs"),
  6269. name: "Walking",
  6270. image: {
  6271. source: "./media/characters/malfressa/walking.svg"
  6272. }
  6273. },
  6274. feral: {
  6275. height: math.unit(2500, "cm"),
  6276. weight: math.unit(100000, "lbs"),
  6277. name: "Feral",
  6278. image: {
  6279. source: "./media/characters/malfressa/feral.svg",
  6280. extra: 2108 / 837,
  6281. bottom: 0.02
  6282. }
  6283. },
  6284. },
  6285. [
  6286. {
  6287. name: "Normal",
  6288. height: math.unit(370, "cm")
  6289. },
  6290. {
  6291. name: "Macro",
  6292. height: math.unit(300, "meters"),
  6293. default: true
  6294. }
  6295. ]
  6296. ))
  6297. characterMakers.push(() => makeCharacter(
  6298. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6299. {
  6300. front: {
  6301. height: math.unit(6, "feet"),
  6302. weight: math.unit(60, "kg"),
  6303. name: "Front",
  6304. image: {
  6305. source: "./media/characters/jaro/front.svg"
  6306. }
  6307. },
  6308. back: {
  6309. height: math.unit(6, "feet"),
  6310. weight: math.unit(60, "kg"),
  6311. name: "Back",
  6312. image: {
  6313. source: "./media/characters/jaro/back.svg"
  6314. }
  6315. },
  6316. },
  6317. [
  6318. {
  6319. name: "Micro",
  6320. height: math.unit(7, "inches")
  6321. },
  6322. {
  6323. name: "Normal",
  6324. height: math.unit(5.5, "feet"),
  6325. default: true
  6326. },
  6327. {
  6328. name: "Minimacro",
  6329. height: math.unit(20, "feet")
  6330. },
  6331. {
  6332. name: "Macro",
  6333. height: math.unit(200, "meters")
  6334. }
  6335. ]
  6336. ))
  6337. characterMakers.push(() => makeCharacter(
  6338. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6339. {
  6340. front: {
  6341. height: math.unit(6, "feet"),
  6342. weight: math.unit(195, "lb"),
  6343. name: "Front",
  6344. image: {
  6345. source: "./media/characters/rogue/front.svg"
  6346. }
  6347. },
  6348. },
  6349. [
  6350. {
  6351. name: "Macro",
  6352. height: math.unit(90, "feet"),
  6353. default: true
  6354. },
  6355. ]
  6356. ))
  6357. characterMakers.push(() => makeCharacter(
  6358. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6359. {
  6360. front: {
  6361. height: math.unit(5 + 8 / 12, "feet"),
  6362. weight: math.unit(140, "lb"),
  6363. name: "Front",
  6364. image: {
  6365. source: "./media/characters/piper/front.svg",
  6366. extra: 3948/3655,
  6367. bottom: 0/3948
  6368. }
  6369. },
  6370. },
  6371. [
  6372. {
  6373. name: "Micro",
  6374. height: math.unit(2, "inches")
  6375. },
  6376. {
  6377. name: "Normal",
  6378. height: math.unit(5 + 8 / 12, "feet")
  6379. },
  6380. {
  6381. name: "Macro",
  6382. height: math.unit(250, "feet"),
  6383. default: true
  6384. },
  6385. {
  6386. name: "Megamacro",
  6387. height: math.unit(7, "miles")
  6388. },
  6389. ]
  6390. ))
  6391. characterMakers.push(() => makeCharacter(
  6392. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6393. {
  6394. front: {
  6395. height: math.unit(6, "feet"),
  6396. weight: math.unit(220, "lb"),
  6397. name: "Front",
  6398. image: {
  6399. source: "./media/characters/gemini/front.svg"
  6400. }
  6401. },
  6402. back: {
  6403. height: math.unit(6, "feet"),
  6404. weight: math.unit(220, "lb"),
  6405. name: "Back",
  6406. image: {
  6407. source: "./media/characters/gemini/back.svg"
  6408. }
  6409. },
  6410. kneeling: {
  6411. height: math.unit(6 / 1.5, "feet"),
  6412. weight: math.unit(220, "lb"),
  6413. name: "Kneeling",
  6414. image: {
  6415. source: "./media/characters/gemini/kneeling.svg",
  6416. bottom: 0.02
  6417. }
  6418. },
  6419. },
  6420. [
  6421. {
  6422. name: "Macro",
  6423. height: math.unit(300, "meters"),
  6424. default: true
  6425. },
  6426. {
  6427. name: "Megamacro",
  6428. height: math.unit(6900, "meters")
  6429. },
  6430. ]
  6431. ))
  6432. characterMakers.push(() => makeCharacter(
  6433. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6434. {
  6435. anthro: {
  6436. height: math.unit(2.35, "meters"),
  6437. weight: math.unit(73, "kg"),
  6438. name: "Anthro",
  6439. image: {
  6440. source: "./media/characters/alicia/anthro.svg",
  6441. extra: 2571 / 2385,
  6442. bottom: 75 / 2648
  6443. }
  6444. },
  6445. paw: {
  6446. height: math.unit(1.32, "feet"),
  6447. name: "Paw",
  6448. image: {
  6449. source: "./media/characters/alicia/paw.svg"
  6450. }
  6451. },
  6452. feral: {
  6453. height: math.unit(1.69, "meters"),
  6454. weight: math.unit(73, "kg"),
  6455. name: "Feral",
  6456. image: {
  6457. source: "./media/characters/alicia/feral.svg",
  6458. extra: 2123 / 1715,
  6459. bottom: 222 / 2349
  6460. }
  6461. },
  6462. },
  6463. [
  6464. {
  6465. name: "Normal",
  6466. height: math.unit(2.35, "meters")
  6467. },
  6468. {
  6469. name: "Macro",
  6470. height: math.unit(60, "meters"),
  6471. default: true
  6472. },
  6473. {
  6474. name: "Megamacro",
  6475. height: math.unit(10000, "kilometers")
  6476. },
  6477. ]
  6478. ))
  6479. characterMakers.push(() => makeCharacter(
  6480. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6481. {
  6482. front: {
  6483. height: math.unit(7, "feet"),
  6484. weight: math.unit(250, "lbs"),
  6485. name: "Front",
  6486. image: {
  6487. source: "./media/characters/archy/front.svg"
  6488. }
  6489. }
  6490. },
  6491. [
  6492. {
  6493. name: "Micro",
  6494. height: math.unit(1, "inch")
  6495. },
  6496. {
  6497. name: "Shorty",
  6498. height: math.unit(5, "feet")
  6499. },
  6500. {
  6501. name: "Normal",
  6502. height: math.unit(7, "feet")
  6503. },
  6504. {
  6505. name: "Macro",
  6506. height: math.unit(600, "meters"),
  6507. default: true
  6508. },
  6509. {
  6510. name: "Megamacro",
  6511. height: math.unit(1, "mile")
  6512. },
  6513. ]
  6514. ))
  6515. characterMakers.push(() => makeCharacter(
  6516. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6517. {
  6518. front: {
  6519. height: math.unit(1.65, "meters"),
  6520. weight: math.unit(74, "kg"),
  6521. name: "Front",
  6522. image: {
  6523. source: "./media/characters/berri/front.svg",
  6524. extra: 857 / 837,
  6525. bottom: 18 / 877
  6526. }
  6527. },
  6528. bum: {
  6529. height: math.unit(1.46, "feet"),
  6530. name: "Bum",
  6531. image: {
  6532. source: "./media/characters/berri/bum.svg"
  6533. }
  6534. },
  6535. mouth: {
  6536. height: math.unit(0.44, "feet"),
  6537. name: "Mouth",
  6538. image: {
  6539. source: "./media/characters/berri/mouth.svg"
  6540. }
  6541. },
  6542. paw: {
  6543. height: math.unit(0.826, "feet"),
  6544. name: "Paw",
  6545. image: {
  6546. source: "./media/characters/berri/paw.svg"
  6547. }
  6548. },
  6549. },
  6550. [
  6551. {
  6552. name: "Normal",
  6553. height: math.unit(1.65, "meters")
  6554. },
  6555. {
  6556. name: "Macro",
  6557. height: math.unit(60, "m"),
  6558. default: true
  6559. },
  6560. {
  6561. name: "Megamacro",
  6562. height: math.unit(9.213, "km")
  6563. },
  6564. {
  6565. name: "Planet Eater",
  6566. height: math.unit(489, "megameters")
  6567. },
  6568. {
  6569. name: "Teramacro",
  6570. height: math.unit(2471635000000, "meters")
  6571. },
  6572. {
  6573. name: "Examacro",
  6574. height: math.unit(8.0624e+26, "meters")
  6575. }
  6576. ]
  6577. ))
  6578. characterMakers.push(() => makeCharacter(
  6579. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6580. {
  6581. front: {
  6582. height: math.unit(1.72, "meters"),
  6583. weight: math.unit(68, "kg"),
  6584. name: "Front",
  6585. image: {
  6586. source: "./media/characters/lexi/front.svg"
  6587. }
  6588. }
  6589. },
  6590. [
  6591. {
  6592. name: "Very Smol",
  6593. height: math.unit(10, "mm")
  6594. },
  6595. {
  6596. name: "Micro",
  6597. height: math.unit(6.8, "cm"),
  6598. default: true
  6599. },
  6600. {
  6601. name: "Normal",
  6602. height: math.unit(1.72, "m")
  6603. }
  6604. ]
  6605. ))
  6606. characterMakers.push(() => makeCharacter(
  6607. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6608. {
  6609. front: {
  6610. height: math.unit(1.69, "meters"),
  6611. weight: math.unit(68, "kg"),
  6612. name: "Front",
  6613. image: {
  6614. source: "./media/characters/martin/front.svg",
  6615. extra: 596 / 581
  6616. }
  6617. }
  6618. },
  6619. [
  6620. {
  6621. name: "Micro",
  6622. height: math.unit(6.85, "cm"),
  6623. default: true
  6624. },
  6625. {
  6626. name: "Normal",
  6627. height: math.unit(1.69, "m")
  6628. }
  6629. ]
  6630. ))
  6631. characterMakers.push(() => makeCharacter(
  6632. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6633. {
  6634. front: {
  6635. height: math.unit(1.69, "meters"),
  6636. weight: math.unit(68, "kg"),
  6637. name: "Front",
  6638. image: {
  6639. source: "./media/characters/juno/front.svg"
  6640. }
  6641. }
  6642. },
  6643. [
  6644. {
  6645. name: "Micro",
  6646. height: math.unit(7, "cm")
  6647. },
  6648. {
  6649. name: "Normal",
  6650. height: math.unit(1.89, "m")
  6651. },
  6652. {
  6653. name: "Macro",
  6654. height: math.unit(353, "meters"),
  6655. default: true
  6656. }
  6657. ]
  6658. ))
  6659. characterMakers.push(() => makeCharacter(
  6660. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6661. {
  6662. front: {
  6663. height: math.unit(1.93, "meters"),
  6664. weight: math.unit(83, "kg"),
  6665. name: "Front",
  6666. image: {
  6667. source: "./media/characters/samantha/front.svg"
  6668. }
  6669. },
  6670. frontClothed: {
  6671. height: math.unit(1.93, "meters"),
  6672. weight: math.unit(83, "kg"),
  6673. name: "Front (Clothed)",
  6674. image: {
  6675. source: "./media/characters/samantha/front-clothed.svg"
  6676. }
  6677. },
  6678. back: {
  6679. height: math.unit(1.93, "meters"),
  6680. weight: math.unit(83, "kg"),
  6681. name: "Back",
  6682. image: {
  6683. source: "./media/characters/samantha/back.svg"
  6684. }
  6685. },
  6686. },
  6687. [
  6688. {
  6689. name: "Normal",
  6690. height: math.unit(1.93, "m")
  6691. },
  6692. {
  6693. name: "Macro",
  6694. height: math.unit(74, "meters"),
  6695. default: true
  6696. },
  6697. {
  6698. name: "Macro+",
  6699. height: math.unit(223, "meters"),
  6700. },
  6701. {
  6702. name: "Megamacro",
  6703. height: math.unit(8381, "meters"),
  6704. },
  6705. {
  6706. name: "Megamacro+",
  6707. height: math.unit(12000, "kilometers")
  6708. },
  6709. ]
  6710. ))
  6711. characterMakers.push(() => makeCharacter(
  6712. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6713. {
  6714. front: {
  6715. height: math.unit(1.92, "meters"),
  6716. weight: math.unit(80, "kg"),
  6717. name: "Front",
  6718. image: {
  6719. source: "./media/characters/dr-clay/front.svg"
  6720. }
  6721. },
  6722. frontClothed: {
  6723. height: math.unit(1.92, "meters"),
  6724. weight: math.unit(80, "kg"),
  6725. name: "Front (Clothed)",
  6726. image: {
  6727. source: "./media/characters/dr-clay/front-clothed.svg"
  6728. }
  6729. }
  6730. },
  6731. [
  6732. {
  6733. name: "Normal",
  6734. height: math.unit(1.92, "m")
  6735. },
  6736. {
  6737. name: "Macro",
  6738. height: math.unit(214, "meters"),
  6739. default: true
  6740. },
  6741. {
  6742. name: "Macro+",
  6743. height: math.unit(12.237, "meters"),
  6744. },
  6745. {
  6746. name: "Megamacro",
  6747. height: math.unit(557, "megameters"),
  6748. },
  6749. {
  6750. name: "Unimaginable",
  6751. height: math.unit(120e9, "lightyears")
  6752. },
  6753. ]
  6754. ))
  6755. characterMakers.push(() => makeCharacter(
  6756. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6757. {
  6758. front: {
  6759. height: math.unit(2, "meters"),
  6760. weight: math.unit(80, "kg"),
  6761. name: "Front",
  6762. image: {
  6763. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6764. }
  6765. }
  6766. },
  6767. [
  6768. {
  6769. name: "Teramacro",
  6770. height: math.unit(500000, "lightyears"),
  6771. default: true
  6772. },
  6773. ]
  6774. ))
  6775. characterMakers.push(() => makeCharacter(
  6776. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6777. {
  6778. crux: {
  6779. height: math.unit(2, "meters"),
  6780. weight: math.unit(150, "kg"),
  6781. name: "Crux",
  6782. image: {
  6783. source: "./media/characters/vemus/crux.svg",
  6784. extra: 1074/936,
  6785. bottom: 23/1097
  6786. }
  6787. },
  6788. skunkTanuki: {
  6789. height: math.unit(2, "meters"),
  6790. weight: math.unit(150, "kg"),
  6791. name: "Skunk-Tanuki",
  6792. image: {
  6793. source: "./media/characters/vemus/skunk-tanuki.svg",
  6794. extra: 926/893,
  6795. bottom: 20/946
  6796. }
  6797. },
  6798. },
  6799. [
  6800. {
  6801. name: "Normal",
  6802. height: math.unit(3.75, "meters"),
  6803. default: true
  6804. },
  6805. {
  6806. name: "Big",
  6807. height: math.unit(8, "meters")
  6808. },
  6809. {
  6810. name: "Macro",
  6811. height: math.unit(100, "meters")
  6812. },
  6813. {
  6814. name: "Macro+",
  6815. height: math.unit(1500, "meters")
  6816. },
  6817. {
  6818. name: "Stellar",
  6819. height: math.unit(14e8, "meters")
  6820. },
  6821. ]
  6822. ))
  6823. characterMakers.push(() => makeCharacter(
  6824. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6825. {
  6826. front: {
  6827. height: math.unit(2, "meters"),
  6828. weight: math.unit(70, "kg"),
  6829. name: "Front",
  6830. image: {
  6831. source: "./media/characters/beherit/front.svg",
  6832. extra: 1408 / 1242
  6833. }
  6834. }
  6835. },
  6836. [
  6837. {
  6838. name: "Normal",
  6839. height: math.unit(6, "feet")
  6840. },
  6841. {
  6842. name: "Lorg",
  6843. height: math.unit(25, "feet"),
  6844. default: true
  6845. },
  6846. {
  6847. name: "Lorger",
  6848. height: math.unit(75, "feet")
  6849. },
  6850. {
  6851. name: "Macro",
  6852. height: math.unit(200, "meters")
  6853. },
  6854. ]
  6855. ))
  6856. characterMakers.push(() => makeCharacter(
  6857. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6858. {
  6859. front: {
  6860. height: math.unit(2, "meters"),
  6861. weight: math.unit(150, "kg"),
  6862. name: "Front",
  6863. image: {
  6864. source: "./media/characters/everett/front.svg",
  6865. extra: 2038 / 1737,
  6866. bottom: 0.03
  6867. }
  6868. },
  6869. paw: {
  6870. height: math.unit(2 / 3.6, "meters"),
  6871. name: "Paw",
  6872. image: {
  6873. source: "./media/characters/everett/paw.svg"
  6874. }
  6875. },
  6876. },
  6877. [
  6878. {
  6879. name: "Normal",
  6880. height: math.unit(15, "feet"),
  6881. default: true
  6882. },
  6883. {
  6884. name: "Lorg",
  6885. height: math.unit(70, "feet"),
  6886. default: true
  6887. },
  6888. {
  6889. name: "Lorger",
  6890. height: math.unit(250, "feet")
  6891. },
  6892. {
  6893. name: "Macro",
  6894. height: math.unit(500, "meters")
  6895. },
  6896. ]
  6897. ))
  6898. characterMakers.push(() => makeCharacter(
  6899. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6900. {
  6901. front: {
  6902. height: math.unit(2, "meters"),
  6903. weight: math.unit(86, "kg"),
  6904. name: "Front",
  6905. image: {
  6906. source: "./media/characters/rose/front.svg",
  6907. extra: 1785/1636,
  6908. bottom: 30/1815
  6909. }
  6910. },
  6911. frontSporty: {
  6912. height: math.unit(2, "meters"),
  6913. weight: math.unit(86, "kg"),
  6914. name: "Front (Sporty)",
  6915. image: {
  6916. source: "./media/characters/rose/front-sporty.svg",
  6917. extra: 350/335,
  6918. bottom: 10/360
  6919. }
  6920. },
  6921. frontAlt: {
  6922. height: math.unit(1.6, "meters"),
  6923. weight: math.unit(86, "kg"),
  6924. name: "Front (Alt)",
  6925. image: {
  6926. source: "./media/characters/rose/front-alt.svg",
  6927. extra: 299/283,
  6928. bottom: 3/302
  6929. }
  6930. },
  6931. plush: {
  6932. height: math.unit(2, "meters"),
  6933. weight: math.unit(86/3, "kg"),
  6934. name: "Plush",
  6935. image: {
  6936. source: "./media/characters/rose/plush.svg",
  6937. extra: 361/337,
  6938. bottom: 11/372
  6939. }
  6940. },
  6941. },
  6942. [
  6943. {
  6944. name: "True Micro",
  6945. height: math.unit(9, "cm")
  6946. },
  6947. {
  6948. name: "Micro",
  6949. height: math.unit(16, "cm")
  6950. },
  6951. {
  6952. name: "Normal",
  6953. height: math.unit(1.85, "meters"),
  6954. default: true
  6955. },
  6956. {
  6957. name: "Mini-Macro",
  6958. height: math.unit(5, "meters")
  6959. },
  6960. {
  6961. name: "Macro",
  6962. height: math.unit(15, "meters")
  6963. },
  6964. {
  6965. name: "True Macro",
  6966. height: math.unit(40, "meters")
  6967. },
  6968. {
  6969. name: "City Scale",
  6970. height: math.unit(1, "km")
  6971. },
  6972. ]
  6973. ))
  6974. characterMakers.push(() => makeCharacter(
  6975. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6976. {
  6977. front: {
  6978. height: math.unit(2, "meters"),
  6979. weight: math.unit(350, "lbs"),
  6980. name: "Front",
  6981. image: {
  6982. source: "./media/characters/regal/front.svg"
  6983. }
  6984. },
  6985. back: {
  6986. height: math.unit(2, "meters"),
  6987. weight: math.unit(350, "lbs"),
  6988. name: "Back",
  6989. image: {
  6990. source: "./media/characters/regal/back.svg"
  6991. }
  6992. },
  6993. },
  6994. [
  6995. {
  6996. name: "Macro",
  6997. height: math.unit(350, "feet"),
  6998. default: true
  6999. }
  7000. ]
  7001. ))
  7002. characterMakers.push(() => makeCharacter(
  7003. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7004. {
  7005. front: {
  7006. height: math.unit(4 + 11 / 12, "feet"),
  7007. weight: math.unit(100, "lbs"),
  7008. name: "Front",
  7009. image: {
  7010. source: "./media/characters/opal/front.svg"
  7011. }
  7012. },
  7013. frontAlt: {
  7014. height: math.unit(4 + 11 / 12, "feet"),
  7015. weight: math.unit(100, "lbs"),
  7016. name: "Front (Alt)",
  7017. image: {
  7018. source: "./media/characters/opal/front-alt.svg"
  7019. }
  7020. },
  7021. },
  7022. [
  7023. {
  7024. name: "Small",
  7025. height: math.unit(4 + 11 / 12, "feet")
  7026. },
  7027. {
  7028. name: "Normal",
  7029. height: math.unit(20, "feet"),
  7030. default: true
  7031. },
  7032. {
  7033. name: "Macro",
  7034. height: math.unit(120, "feet")
  7035. },
  7036. {
  7037. name: "Megamacro",
  7038. height: math.unit(80, "miles")
  7039. },
  7040. {
  7041. name: "True Size",
  7042. height: math.unit(100000, "lightyears")
  7043. },
  7044. ]
  7045. ))
  7046. characterMakers.push(() => makeCharacter(
  7047. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7048. {
  7049. front: {
  7050. height: math.unit(6, "feet"),
  7051. weight: math.unit(200, "lbs"),
  7052. name: "Front",
  7053. image: {
  7054. source: "./media/characters/vector-wuff/front.svg"
  7055. }
  7056. }
  7057. },
  7058. [
  7059. {
  7060. name: "Normal",
  7061. height: math.unit(2.8, "meters")
  7062. },
  7063. {
  7064. name: "Macro",
  7065. height: math.unit(450, "meters"),
  7066. default: true
  7067. },
  7068. {
  7069. name: "Megamacro",
  7070. height: math.unit(15, "kilometers")
  7071. }
  7072. ]
  7073. ))
  7074. characterMakers.push(() => makeCharacter(
  7075. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7076. {
  7077. front: {
  7078. height: math.unit(6, "feet"),
  7079. weight: math.unit(256, "lbs"),
  7080. name: "Front",
  7081. image: {
  7082. source: "./media/characters/dannik/front.svg"
  7083. }
  7084. }
  7085. },
  7086. [
  7087. {
  7088. name: "Macro",
  7089. height: math.unit(69.57, "meters"),
  7090. default: true
  7091. },
  7092. ]
  7093. ))
  7094. characterMakers.push(() => makeCharacter(
  7095. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7096. {
  7097. front: {
  7098. height: math.unit(6, "feet"),
  7099. weight: math.unit(120, "lbs"),
  7100. name: "Front",
  7101. image: {
  7102. source: "./media/characters/azura-saharah/front.svg"
  7103. }
  7104. },
  7105. back: {
  7106. height: math.unit(6, "feet"),
  7107. weight: math.unit(120, "lbs"),
  7108. name: "Back",
  7109. image: {
  7110. source: "./media/characters/azura-saharah/back.svg"
  7111. }
  7112. },
  7113. },
  7114. [
  7115. {
  7116. name: "Macro",
  7117. height: math.unit(100, "feet"),
  7118. default: true
  7119. },
  7120. ]
  7121. ))
  7122. characterMakers.push(() => makeCharacter(
  7123. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7124. {
  7125. side: {
  7126. height: math.unit(5 + 4 / 12, "feet"),
  7127. weight: math.unit(163, "lbs"),
  7128. name: "Side",
  7129. image: {
  7130. source: "./media/characters/kennedy/side.svg"
  7131. }
  7132. }
  7133. },
  7134. [
  7135. {
  7136. name: "Standard Doggo",
  7137. height: math.unit(5 + 4 / 12, "feet")
  7138. },
  7139. {
  7140. name: "Big Doggo",
  7141. height: math.unit(25 + 3 / 12, "feet"),
  7142. default: true
  7143. },
  7144. ]
  7145. ))
  7146. characterMakers.push(() => makeCharacter(
  7147. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7148. {
  7149. front: {
  7150. height: math.unit(5 + 5/12, "feet"),
  7151. weight: math.unit(100, "lbs"),
  7152. name: "Front",
  7153. image: {
  7154. source: "./media/characters/odios-de-lunar/front.svg",
  7155. extra: 1468/1323,
  7156. bottom: 22/1490
  7157. }
  7158. }
  7159. },
  7160. [
  7161. {
  7162. name: "Micro",
  7163. height: math.unit(3, "inches")
  7164. },
  7165. {
  7166. name: "Normal",
  7167. height: math.unit(5.5, "feet"),
  7168. default: true
  7169. },
  7170. {
  7171. name: "Macro",
  7172. height: math.unit(100, "feet")
  7173. },
  7174. ]
  7175. ))
  7176. characterMakers.push(() => makeCharacter(
  7177. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7178. {
  7179. back: {
  7180. height: math.unit(6, "feet"),
  7181. weight: math.unit(220, "lbs"),
  7182. name: "Back",
  7183. image: {
  7184. source: "./media/characters/mandake/back.svg"
  7185. }
  7186. }
  7187. },
  7188. [
  7189. {
  7190. name: "Normal",
  7191. height: math.unit(7, "feet"),
  7192. default: true
  7193. },
  7194. {
  7195. name: "Macro",
  7196. height: math.unit(78, "feet")
  7197. },
  7198. {
  7199. name: "Macro+",
  7200. height: math.unit(300, "meters")
  7201. },
  7202. {
  7203. name: "Macro++",
  7204. height: math.unit(2400, "feet")
  7205. },
  7206. {
  7207. name: "Megamacro",
  7208. height: math.unit(5167, "meters")
  7209. },
  7210. {
  7211. name: "Gigamacro",
  7212. height: math.unit(41769, "miles")
  7213. },
  7214. ]
  7215. ))
  7216. characterMakers.push(() => makeCharacter(
  7217. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7218. {
  7219. front: {
  7220. height: math.unit(6, "feet"),
  7221. weight: math.unit(120, "lbs"),
  7222. name: "Front",
  7223. image: {
  7224. source: "./media/characters/yozey/front.svg"
  7225. }
  7226. },
  7227. frontAlt: {
  7228. height: math.unit(6, "feet"),
  7229. weight: math.unit(120, "lbs"),
  7230. name: "Front (Alt)",
  7231. image: {
  7232. source: "./media/characters/yozey/front-alt.svg"
  7233. }
  7234. },
  7235. side: {
  7236. height: math.unit(6, "feet"),
  7237. weight: math.unit(120, "lbs"),
  7238. name: "Side",
  7239. image: {
  7240. source: "./media/characters/yozey/side.svg"
  7241. }
  7242. },
  7243. },
  7244. [
  7245. {
  7246. name: "Micro",
  7247. height: math.unit(3, "inches"),
  7248. default: true
  7249. },
  7250. {
  7251. name: "Normal",
  7252. height: math.unit(6, "feet")
  7253. }
  7254. ]
  7255. ))
  7256. characterMakers.push(() => makeCharacter(
  7257. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7258. {
  7259. front: {
  7260. height: math.unit(6, "feet"),
  7261. weight: math.unit(103, "lbs"),
  7262. name: "Front",
  7263. image: {
  7264. source: "./media/characters/valeska-voss/front.svg"
  7265. }
  7266. }
  7267. },
  7268. [
  7269. {
  7270. name: "Mini-Sized Sub",
  7271. height: math.unit(3.1, "inches")
  7272. },
  7273. {
  7274. name: "Mid-Sized Sub",
  7275. height: math.unit(6.2, "inches")
  7276. },
  7277. {
  7278. name: "Full-Sized Sub",
  7279. height: math.unit(9.3, "inches")
  7280. },
  7281. {
  7282. name: "Normal",
  7283. height: math.unit(5 + 2 / 12, "foot"),
  7284. default: true
  7285. },
  7286. ]
  7287. ))
  7288. characterMakers.push(() => makeCharacter(
  7289. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7290. {
  7291. front: {
  7292. height: math.unit(6, "feet"),
  7293. weight: math.unit(160, "lbs"),
  7294. name: "Front",
  7295. image: {
  7296. source: "./media/characters/gene-zeta/front.svg",
  7297. extra: 3006 / 2826,
  7298. bottom: 182 / 3188
  7299. }
  7300. }
  7301. },
  7302. [
  7303. {
  7304. name: "Micro",
  7305. height: math.unit(6, "inches")
  7306. },
  7307. {
  7308. name: "Normal",
  7309. height: math.unit(5 + 11 / 12, "foot"),
  7310. default: true
  7311. },
  7312. {
  7313. name: "Macro",
  7314. height: math.unit(140, "feet")
  7315. },
  7316. {
  7317. name: "Supercharged",
  7318. height: math.unit(2500, "feet")
  7319. },
  7320. ]
  7321. ))
  7322. characterMakers.push(() => makeCharacter(
  7323. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7324. {
  7325. front: {
  7326. height: math.unit(6, "feet"),
  7327. weight: math.unit(350, "lbs"),
  7328. name: "Front",
  7329. image: {
  7330. source: "./media/characters/razinox/front.svg",
  7331. extra: 1686 / 1548,
  7332. bottom: 28.2 / 1868
  7333. }
  7334. },
  7335. back: {
  7336. height: math.unit(6, "feet"),
  7337. weight: math.unit(350, "lbs"),
  7338. name: "Back",
  7339. image: {
  7340. source: "./media/characters/razinox/back.svg",
  7341. extra: 1660 / 1590,
  7342. bottom: 15 / 1665
  7343. }
  7344. },
  7345. },
  7346. [
  7347. {
  7348. name: "Normal",
  7349. height: math.unit(10 + 8 / 12, "foot")
  7350. },
  7351. {
  7352. name: "Minimacro",
  7353. height: math.unit(15, "foot")
  7354. },
  7355. {
  7356. name: "Macro",
  7357. height: math.unit(60, "foot"),
  7358. default: true
  7359. },
  7360. {
  7361. name: "Megamacro",
  7362. height: math.unit(5, "miles")
  7363. },
  7364. {
  7365. name: "Gigamacro",
  7366. height: math.unit(6000, "miles")
  7367. },
  7368. ]
  7369. ))
  7370. characterMakers.push(() => makeCharacter(
  7371. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7372. {
  7373. front: {
  7374. height: math.unit(6, "feet"),
  7375. weight: math.unit(150, "lbs"),
  7376. name: "Front",
  7377. image: {
  7378. source: "./media/characters/cobalt/front.svg"
  7379. }
  7380. }
  7381. },
  7382. [
  7383. {
  7384. name: "Normal",
  7385. height: math.unit(8 + 1 / 12, "foot")
  7386. },
  7387. {
  7388. name: "Macro",
  7389. height: math.unit(111, "foot"),
  7390. default: true
  7391. },
  7392. {
  7393. name: "Supracosmic",
  7394. height: math.unit(1e42, "feet")
  7395. },
  7396. ]
  7397. ))
  7398. characterMakers.push(() => makeCharacter(
  7399. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7400. {
  7401. front: {
  7402. height: math.unit(6, "feet"),
  7403. weight: math.unit(140, "lbs"),
  7404. name: "Front",
  7405. image: {
  7406. source: "./media/characters/amanda/front.svg"
  7407. }
  7408. }
  7409. },
  7410. [
  7411. {
  7412. name: "Micro",
  7413. height: math.unit(5, "inches"),
  7414. default: true
  7415. },
  7416. ]
  7417. ))
  7418. characterMakers.push(() => makeCharacter(
  7419. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7420. {
  7421. front: {
  7422. height: math.unit(2.75, "meters"),
  7423. weight: math.unit(1200, "lb"),
  7424. name: "Front",
  7425. image: {
  7426. source: "./media/characters/teal/front.svg",
  7427. extra: 2463 / 2320,
  7428. bottom: 166 / 2629
  7429. }
  7430. },
  7431. back: {
  7432. height: math.unit(2.75, "meters"),
  7433. weight: math.unit(1200, "lb"),
  7434. name: "Back",
  7435. image: {
  7436. source: "./media/characters/teal/back.svg",
  7437. extra: 2580 / 2489,
  7438. bottom: 151 / 2731
  7439. }
  7440. },
  7441. sitting: {
  7442. height: math.unit(1.9, "meters"),
  7443. weight: math.unit(1200, "lb"),
  7444. name: "Sitting",
  7445. image: {
  7446. source: "./media/characters/teal/sitting.svg",
  7447. extra: 623 / 590,
  7448. bottom: 121 / 744
  7449. }
  7450. },
  7451. standing: {
  7452. height: math.unit(2.75, "meters"),
  7453. weight: math.unit(1200, "lb"),
  7454. name: "Standing",
  7455. image: {
  7456. source: "./media/characters/teal/standing.svg",
  7457. extra: 923 / 893,
  7458. bottom: 60 / 983
  7459. }
  7460. },
  7461. stretching: {
  7462. height: math.unit(3.65, "meters"),
  7463. weight: math.unit(1200, "lb"),
  7464. name: "Stretching",
  7465. image: {
  7466. source: "./media/characters/teal/stretching.svg",
  7467. extra: 1276 / 1244,
  7468. bottom: 0 / 1276
  7469. }
  7470. },
  7471. legged: {
  7472. height: math.unit(1.3, "meters"),
  7473. weight: math.unit(100, "lb"),
  7474. name: "Legged",
  7475. image: {
  7476. source: "./media/characters/teal/legged.svg",
  7477. extra: 462 / 437,
  7478. bottom: 24 / 486
  7479. }
  7480. },
  7481. naga: {
  7482. height: math.unit(5.4, "meters"),
  7483. weight: math.unit(4000, "lb"),
  7484. name: "Naga",
  7485. image: {
  7486. source: "./media/characters/teal/naga.svg",
  7487. extra: 1902 / 1858,
  7488. bottom: 0 / 1902
  7489. }
  7490. },
  7491. hand: {
  7492. height: math.unit(0.52, "meters"),
  7493. name: "Hand",
  7494. image: {
  7495. source: "./media/characters/teal/hand.svg"
  7496. }
  7497. },
  7498. maw: {
  7499. height: math.unit(0.43, "meters"),
  7500. name: "Maw",
  7501. image: {
  7502. source: "./media/characters/teal/maw.svg"
  7503. }
  7504. },
  7505. slit: {
  7506. height: math.unit(0.25, "meters"),
  7507. name: "Slit",
  7508. image: {
  7509. source: "./media/characters/teal/slit.svg"
  7510. }
  7511. },
  7512. },
  7513. [
  7514. {
  7515. name: "Normal",
  7516. height: math.unit(2.75, "meters"),
  7517. default: true
  7518. },
  7519. {
  7520. name: "Macro",
  7521. height: math.unit(300, "feet")
  7522. },
  7523. {
  7524. name: "Macro+",
  7525. height: math.unit(2000, "feet")
  7526. },
  7527. ]
  7528. ))
  7529. characterMakers.push(() => makeCharacter(
  7530. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7531. {
  7532. frontCat: {
  7533. height: math.unit(6, "feet"),
  7534. weight: math.unit(180, "lbs"),
  7535. name: "Front (Cat)",
  7536. image: {
  7537. source: "./media/characters/ravin-amulet/front-cat.svg"
  7538. }
  7539. },
  7540. frontCatAlt: {
  7541. height: math.unit(6, "feet"),
  7542. weight: math.unit(180, "lbs"),
  7543. name: "Front (Alt, Cat)",
  7544. image: {
  7545. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7546. }
  7547. },
  7548. frontWerewolf: {
  7549. height: math.unit(6 * 1.2, "feet"),
  7550. weight: math.unit(225, "lbs"),
  7551. name: "Front (Werewolf)",
  7552. image: {
  7553. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7554. }
  7555. },
  7556. backWerewolf: {
  7557. height: math.unit(6 * 1.2, "feet"),
  7558. weight: math.unit(225, "lbs"),
  7559. name: "Back (Werewolf)",
  7560. image: {
  7561. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7562. }
  7563. },
  7564. },
  7565. [
  7566. {
  7567. name: "Nano",
  7568. height: math.unit(1, "micrometer")
  7569. },
  7570. {
  7571. name: "Micro",
  7572. height: math.unit(1, "inch")
  7573. },
  7574. {
  7575. name: "Normal",
  7576. height: math.unit(6, "feet"),
  7577. default: true
  7578. },
  7579. {
  7580. name: "Macro",
  7581. height: math.unit(60, "feet")
  7582. }
  7583. ]
  7584. ))
  7585. characterMakers.push(() => makeCharacter(
  7586. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7587. {
  7588. front: {
  7589. height: math.unit(6, "feet"),
  7590. weight: math.unit(165, "lbs"),
  7591. name: "Front",
  7592. image: {
  7593. source: "./media/characters/fluoresce/front.svg"
  7594. }
  7595. }
  7596. },
  7597. [
  7598. {
  7599. name: "Micro",
  7600. height: math.unit(6, "cm")
  7601. },
  7602. {
  7603. name: "Normal",
  7604. height: math.unit(5 + 7 / 12, "feet"),
  7605. default: true
  7606. },
  7607. {
  7608. name: "Macro",
  7609. height: math.unit(56, "feet")
  7610. },
  7611. {
  7612. name: "Megamacro",
  7613. height: math.unit(1.9, "miles")
  7614. },
  7615. ]
  7616. ))
  7617. characterMakers.push(() => makeCharacter(
  7618. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7619. {
  7620. front: {
  7621. height: math.unit(9 + 6 / 12, "feet"),
  7622. weight: math.unit(523, "lbs"),
  7623. name: "Side",
  7624. image: {
  7625. source: "./media/characters/aurora/side.svg"
  7626. }
  7627. }
  7628. },
  7629. [
  7630. {
  7631. name: "Normal",
  7632. height: math.unit(9 + 6 / 12, "feet")
  7633. },
  7634. {
  7635. name: "Macro",
  7636. height: math.unit(96, "feet"),
  7637. default: true
  7638. },
  7639. {
  7640. name: "Macro+",
  7641. height: math.unit(243, "feet")
  7642. },
  7643. ]
  7644. ))
  7645. characterMakers.push(() => makeCharacter(
  7646. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7647. {
  7648. front: {
  7649. height: math.unit(194, "cm"),
  7650. weight: math.unit(90, "kg"),
  7651. name: "Front",
  7652. image: {
  7653. source: "./media/characters/ranek/front.svg"
  7654. }
  7655. },
  7656. side: {
  7657. height: math.unit(194, "cm"),
  7658. weight: math.unit(90, "kg"),
  7659. name: "Side",
  7660. image: {
  7661. source: "./media/characters/ranek/side.svg"
  7662. }
  7663. },
  7664. back: {
  7665. height: math.unit(194, "cm"),
  7666. weight: math.unit(90, "kg"),
  7667. name: "Back",
  7668. image: {
  7669. source: "./media/characters/ranek/back.svg"
  7670. }
  7671. },
  7672. feral: {
  7673. height: math.unit(30, "cm"),
  7674. weight: math.unit(1.6, "lbs"),
  7675. name: "Feral",
  7676. image: {
  7677. source: "./media/characters/ranek/feral.svg"
  7678. }
  7679. },
  7680. },
  7681. [
  7682. {
  7683. name: "Normal",
  7684. height: math.unit(194, "cm"),
  7685. default: true
  7686. },
  7687. {
  7688. name: "Macro",
  7689. height: math.unit(100, "meters")
  7690. },
  7691. ]
  7692. ))
  7693. characterMakers.push(() => makeCharacter(
  7694. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7695. {
  7696. front: {
  7697. height: math.unit(5 + 6 / 12, "feet"),
  7698. weight: math.unit(153, "lbs"),
  7699. name: "Front",
  7700. image: {
  7701. source: "./media/characters/andrew-cooper/front.svg"
  7702. }
  7703. },
  7704. },
  7705. [
  7706. {
  7707. name: "Nano",
  7708. height: math.unit(1, "mm")
  7709. },
  7710. {
  7711. name: "Micro",
  7712. height: math.unit(2, "inches")
  7713. },
  7714. {
  7715. name: "Normal",
  7716. height: math.unit(5 + 6 / 12, "feet"),
  7717. default: true
  7718. }
  7719. ]
  7720. ))
  7721. characterMakers.push(() => makeCharacter(
  7722. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7723. {
  7724. front: {
  7725. height: math.unit(6, "feet"),
  7726. weight: math.unit(180, "lbs"),
  7727. name: "Front",
  7728. image: {
  7729. source: "./media/characters/akane-sato/front.svg",
  7730. extra: 1219 / 1140
  7731. }
  7732. },
  7733. back: {
  7734. height: math.unit(6, "feet"),
  7735. weight: math.unit(180, "lbs"),
  7736. name: "Back",
  7737. image: {
  7738. source: "./media/characters/akane-sato/back.svg",
  7739. extra: 1219 / 1170
  7740. }
  7741. },
  7742. },
  7743. [
  7744. {
  7745. name: "Normal",
  7746. height: math.unit(2.5, "meters")
  7747. },
  7748. {
  7749. name: "Macro",
  7750. height: math.unit(250, "meters"),
  7751. default: true
  7752. },
  7753. {
  7754. name: "Megamacro",
  7755. height: math.unit(25, "km")
  7756. },
  7757. ]
  7758. ))
  7759. characterMakers.push(() => makeCharacter(
  7760. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7761. {
  7762. front: {
  7763. height: math.unit(6, "feet"),
  7764. weight: math.unit(65, "kg"),
  7765. name: "Front",
  7766. image: {
  7767. source: "./media/characters/rook/front.svg",
  7768. extra: 960 / 950
  7769. }
  7770. }
  7771. },
  7772. [
  7773. {
  7774. name: "Normal",
  7775. height: math.unit(8.8, "feet")
  7776. },
  7777. {
  7778. name: "Macro",
  7779. height: math.unit(88, "feet"),
  7780. default: true
  7781. },
  7782. {
  7783. name: "Megamacro",
  7784. height: math.unit(8, "miles")
  7785. },
  7786. ]
  7787. ))
  7788. characterMakers.push(() => makeCharacter(
  7789. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7790. {
  7791. front: {
  7792. height: math.unit(12 + 2 / 12, "feet"),
  7793. weight: math.unit(808, "lbs"),
  7794. name: "Front",
  7795. image: {
  7796. source: "./media/characters/prodigy/front.svg"
  7797. }
  7798. }
  7799. },
  7800. [
  7801. {
  7802. name: "Normal",
  7803. height: math.unit(12 + 2 / 12, "feet"),
  7804. default: true
  7805. },
  7806. {
  7807. name: "Macro",
  7808. height: math.unit(143, "feet")
  7809. },
  7810. {
  7811. name: "Macro+",
  7812. height: math.unit(400, "feet")
  7813. },
  7814. ]
  7815. ))
  7816. characterMakers.push(() => makeCharacter(
  7817. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7818. {
  7819. front: {
  7820. height: math.unit(6, "feet"),
  7821. weight: math.unit(225, "lbs"),
  7822. name: "Front",
  7823. image: {
  7824. source: "./media/characters/daniel/front.svg"
  7825. }
  7826. },
  7827. leaning: {
  7828. height: math.unit(6, "feet"),
  7829. weight: math.unit(225, "lbs"),
  7830. name: "Leaning",
  7831. image: {
  7832. source: "./media/characters/daniel/leaning.svg"
  7833. }
  7834. },
  7835. },
  7836. [
  7837. {
  7838. name: "Macro",
  7839. height: math.unit(1000, "feet"),
  7840. default: true
  7841. },
  7842. ]
  7843. ))
  7844. characterMakers.push(() => makeCharacter(
  7845. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7846. {
  7847. front: {
  7848. height: math.unit(6, "feet"),
  7849. weight: math.unit(88, "lbs"),
  7850. name: "Front",
  7851. image: {
  7852. source: "./media/characters/chiros/front.svg",
  7853. extra: 306 / 226
  7854. }
  7855. },
  7856. side: {
  7857. height: math.unit(6, "feet"),
  7858. weight: math.unit(88, "lbs"),
  7859. name: "Side",
  7860. image: {
  7861. source: "./media/characters/chiros/side.svg",
  7862. extra: 306 / 226
  7863. }
  7864. },
  7865. },
  7866. [
  7867. {
  7868. name: "Normal",
  7869. height: math.unit(6, "cm"),
  7870. default: true
  7871. },
  7872. ]
  7873. ))
  7874. characterMakers.push(() => makeCharacter(
  7875. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7876. {
  7877. front: {
  7878. height: math.unit(6, "feet"),
  7879. weight: math.unit(100, "lbs"),
  7880. name: "Front",
  7881. image: {
  7882. source: "./media/characters/selka/front.svg",
  7883. extra: 947 / 887
  7884. }
  7885. }
  7886. },
  7887. [
  7888. {
  7889. name: "Normal",
  7890. height: math.unit(5, "cm"),
  7891. default: true
  7892. },
  7893. ]
  7894. ))
  7895. characterMakers.push(() => makeCharacter(
  7896. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7897. {
  7898. front: {
  7899. height: math.unit(8 + 3 / 12, "feet"),
  7900. weight: math.unit(424, "lbs"),
  7901. name: "Front",
  7902. image: {
  7903. source: "./media/characters/verin/front.svg",
  7904. extra: 1845 / 1550
  7905. }
  7906. },
  7907. frontArmored: {
  7908. height: math.unit(8 + 3 / 12, "feet"),
  7909. weight: math.unit(424, "lbs"),
  7910. name: "Front (Armored)",
  7911. image: {
  7912. source: "./media/characters/verin/front-armor.svg",
  7913. extra: 1845 / 1550,
  7914. bottom: 0.01
  7915. }
  7916. },
  7917. back: {
  7918. height: math.unit(8 + 3 / 12, "feet"),
  7919. weight: math.unit(424, "lbs"),
  7920. name: "Back",
  7921. image: {
  7922. source: "./media/characters/verin/back.svg",
  7923. bottom: 0.1,
  7924. extra: 1
  7925. }
  7926. },
  7927. foot: {
  7928. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7929. name: "Foot",
  7930. image: {
  7931. source: "./media/characters/verin/foot.svg"
  7932. }
  7933. },
  7934. },
  7935. [
  7936. {
  7937. name: "Normal",
  7938. height: math.unit(8 + 3 / 12, "feet")
  7939. },
  7940. {
  7941. name: "Minimacro",
  7942. height: math.unit(21, "feet"),
  7943. default: true
  7944. },
  7945. {
  7946. name: "Macro",
  7947. height: math.unit(626, "feet")
  7948. },
  7949. ]
  7950. ))
  7951. characterMakers.push(() => makeCharacter(
  7952. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7953. {
  7954. front: {
  7955. height: math.unit(2.718, "meters"),
  7956. weight: math.unit(150, "lbs"),
  7957. name: "Front",
  7958. image: {
  7959. source: "./media/characters/sovrim-terraquian/front.svg"
  7960. }
  7961. },
  7962. back: {
  7963. height: math.unit(2.718, "meters"),
  7964. weight: math.unit(150, "lbs"),
  7965. name: "Back",
  7966. image: {
  7967. source: "./media/characters/sovrim-terraquian/back.svg"
  7968. }
  7969. }
  7970. },
  7971. [
  7972. {
  7973. name: "Micro",
  7974. height: math.unit(2, "inches")
  7975. },
  7976. {
  7977. name: "Small",
  7978. height: math.unit(1, "meter")
  7979. },
  7980. {
  7981. name: "Normal",
  7982. height: math.unit(Math.E, "meters"),
  7983. default: true
  7984. },
  7985. {
  7986. name: "Macro",
  7987. height: math.unit(20, "meters")
  7988. },
  7989. {
  7990. name: "Macro+",
  7991. height: math.unit(400, "meters")
  7992. },
  7993. ]
  7994. ))
  7995. characterMakers.push(() => makeCharacter(
  7996. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7997. {
  7998. front: {
  7999. height: math.unit(7, "feet"),
  8000. weight: math.unit(489, "lbs"),
  8001. name: "Front",
  8002. image: {
  8003. source: "./media/characters/reece-silvermane/front.svg",
  8004. bottom: 0.02,
  8005. extra: 1
  8006. }
  8007. },
  8008. },
  8009. [
  8010. {
  8011. name: "Macro",
  8012. height: math.unit(1.5, "miles"),
  8013. default: true
  8014. },
  8015. ]
  8016. ))
  8017. characterMakers.push(() => makeCharacter(
  8018. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8019. {
  8020. front: {
  8021. height: math.unit(6, "feet"),
  8022. weight: math.unit(78, "kg"),
  8023. name: "Front",
  8024. image: {
  8025. source: "./media/characters/kane/front.svg",
  8026. extra: 978 / 899
  8027. }
  8028. },
  8029. },
  8030. [
  8031. {
  8032. name: "Normal",
  8033. height: math.unit(2.1, "m"),
  8034. },
  8035. {
  8036. name: "Macro",
  8037. height: math.unit(1, "km"),
  8038. default: true
  8039. },
  8040. ]
  8041. ))
  8042. characterMakers.push(() => makeCharacter(
  8043. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8044. {
  8045. front: {
  8046. height: math.unit(6, "feet"),
  8047. weight: math.unit(200, "kg"),
  8048. name: "Front",
  8049. image: {
  8050. source: "./media/characters/tegon/front.svg",
  8051. bottom: 0.01,
  8052. extra: 1
  8053. }
  8054. },
  8055. },
  8056. [
  8057. {
  8058. name: "Micro",
  8059. height: math.unit(1, "inch")
  8060. },
  8061. {
  8062. name: "Normal",
  8063. height: math.unit(6 + 3 / 12, "feet"),
  8064. default: true
  8065. },
  8066. {
  8067. name: "Macro",
  8068. height: math.unit(300, "feet")
  8069. },
  8070. {
  8071. name: "Megamacro",
  8072. height: math.unit(69, "miles")
  8073. },
  8074. ]
  8075. ))
  8076. characterMakers.push(() => makeCharacter(
  8077. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8078. {
  8079. side: {
  8080. height: math.unit(6, "feet"),
  8081. weight: math.unit(2304, "lbs"),
  8082. name: "Side",
  8083. image: {
  8084. source: "./media/characters/arcturax/side.svg",
  8085. extra: 790 / 376,
  8086. bottom: 0.01
  8087. }
  8088. },
  8089. },
  8090. [
  8091. {
  8092. name: "Micro",
  8093. height: math.unit(2, "inch")
  8094. },
  8095. {
  8096. name: "Normal",
  8097. height: math.unit(6, "feet")
  8098. },
  8099. {
  8100. name: "Macro",
  8101. height: math.unit(39, "feet"),
  8102. default: true
  8103. },
  8104. {
  8105. name: "Megamacro",
  8106. height: math.unit(7, "miles")
  8107. },
  8108. ]
  8109. ))
  8110. characterMakers.push(() => makeCharacter(
  8111. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8112. {
  8113. front: {
  8114. height: math.unit(6, "feet"),
  8115. weight: math.unit(50, "lbs"),
  8116. name: "Front",
  8117. image: {
  8118. source: "./media/characters/sentri/front.svg",
  8119. extra: 1750 / 1570,
  8120. bottom: 0.025
  8121. }
  8122. },
  8123. frontAlt: {
  8124. height: math.unit(6, "feet"),
  8125. weight: math.unit(50, "lbs"),
  8126. name: "Front (Alt)",
  8127. image: {
  8128. source: "./media/characters/sentri/front-alt.svg",
  8129. extra: 1750 / 1570,
  8130. bottom: 0.025
  8131. }
  8132. },
  8133. },
  8134. [
  8135. {
  8136. name: "Normal",
  8137. height: math.unit(15, "feet"),
  8138. default: true
  8139. },
  8140. {
  8141. name: "Macro",
  8142. height: math.unit(2500, "feet")
  8143. }
  8144. ]
  8145. ))
  8146. characterMakers.push(() => makeCharacter(
  8147. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8148. {
  8149. front: {
  8150. height: math.unit(5 + 8 / 12, "feet"),
  8151. weight: math.unit(130, "lbs"),
  8152. name: "Front",
  8153. image: {
  8154. source: "./media/characters/corvin/front.svg",
  8155. extra: 1803 / 1629
  8156. }
  8157. },
  8158. frontShirt: {
  8159. height: math.unit(5 + 8 / 12, "feet"),
  8160. weight: math.unit(130, "lbs"),
  8161. name: "Front (Shirt)",
  8162. image: {
  8163. source: "./media/characters/corvin/front-shirt.svg",
  8164. extra: 1803 / 1629
  8165. }
  8166. },
  8167. frontPoncho: {
  8168. height: math.unit(5 + 8 / 12, "feet"),
  8169. weight: math.unit(130, "lbs"),
  8170. name: "Front (Poncho)",
  8171. image: {
  8172. source: "./media/characters/corvin/front-poncho.svg",
  8173. extra: 1803 / 1629
  8174. }
  8175. },
  8176. side: {
  8177. height: math.unit(5 + 8 / 12, "feet"),
  8178. weight: math.unit(130, "lbs"),
  8179. name: "Side",
  8180. image: {
  8181. source: "./media/characters/corvin/side.svg",
  8182. extra: 1012 / 945
  8183. }
  8184. },
  8185. back: {
  8186. height: math.unit(5 + 8 / 12, "feet"),
  8187. weight: math.unit(130, "lbs"),
  8188. name: "Back",
  8189. image: {
  8190. source: "./media/characters/corvin/back.svg",
  8191. extra: 1803 / 1629
  8192. }
  8193. },
  8194. },
  8195. [
  8196. {
  8197. name: "Micro",
  8198. height: math.unit(3, "inches")
  8199. },
  8200. {
  8201. name: "Normal",
  8202. height: math.unit(5 + 8 / 12, "feet")
  8203. },
  8204. {
  8205. name: "Macro",
  8206. height: math.unit(300, "feet"),
  8207. default: true
  8208. },
  8209. {
  8210. name: "Megamacro",
  8211. height: math.unit(500, "miles")
  8212. }
  8213. ]
  8214. ))
  8215. characterMakers.push(() => makeCharacter(
  8216. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8217. {
  8218. front: {
  8219. height: math.unit(6, "feet"),
  8220. weight: math.unit(135, "lbs"),
  8221. name: "Front",
  8222. image: {
  8223. source: "./media/characters/q/front.svg",
  8224. extra: 854 / 752,
  8225. bottom: 0.005
  8226. }
  8227. },
  8228. back: {
  8229. height: math.unit(6, "feet"),
  8230. weight: math.unit(130, "lbs"),
  8231. name: "Back",
  8232. image: {
  8233. source: "./media/characters/q/back.svg",
  8234. extra: 854 / 752
  8235. }
  8236. },
  8237. },
  8238. [
  8239. {
  8240. name: "Macro",
  8241. height: math.unit(90, "feet"),
  8242. default: true
  8243. },
  8244. {
  8245. name: "Extra Macro",
  8246. height: math.unit(300, "feet"),
  8247. },
  8248. {
  8249. name: "BIG WALF",
  8250. height: math.unit(750, "feet"),
  8251. },
  8252. ]
  8253. ))
  8254. characterMakers.push(() => makeCharacter(
  8255. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8256. {
  8257. front: {
  8258. height: math.unit(6, "feet"),
  8259. weight: math.unit(150, "lbs"),
  8260. name: "Front",
  8261. image: {
  8262. source: "./media/characters/carley/front.svg",
  8263. extra: 3927 / 3540,
  8264. bottom: 29.2 / 735
  8265. }
  8266. }
  8267. },
  8268. [
  8269. {
  8270. name: "Normal",
  8271. height: math.unit(6 + 3 / 12, "feet")
  8272. },
  8273. {
  8274. name: "Macro",
  8275. height: math.unit(185, "feet"),
  8276. default: true
  8277. },
  8278. {
  8279. name: "Megamacro",
  8280. height: math.unit(8, "miles"),
  8281. },
  8282. ]
  8283. ))
  8284. characterMakers.push(() => makeCharacter(
  8285. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8286. {
  8287. front: {
  8288. height: math.unit(3, "feet"),
  8289. weight: math.unit(28, "lbs"),
  8290. name: "Front",
  8291. image: {
  8292. source: "./media/characters/citrine/front.svg"
  8293. }
  8294. }
  8295. },
  8296. [
  8297. {
  8298. name: "Normal",
  8299. height: math.unit(3, "feet"),
  8300. default: true
  8301. }
  8302. ]
  8303. ))
  8304. characterMakers.push(() => makeCharacter(
  8305. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8306. {
  8307. front: {
  8308. height: math.unit(14, "feet"),
  8309. weight: math.unit(1450, "kg"),
  8310. capacity: math.unit(15, "people"),
  8311. name: "Front",
  8312. image: {
  8313. source: "./media/characters/aura-starwind/front.svg",
  8314. extra: 1440/1327,
  8315. bottom: 11/1451
  8316. }
  8317. },
  8318. side: {
  8319. height: math.unit(14, "feet"),
  8320. weight: math.unit(1450, "kg"),
  8321. capacity: math.unit(15, "people"),
  8322. name: "Side",
  8323. image: {
  8324. source: "./media/characters/aura-starwind/side.svg",
  8325. extra: 1654 / 1497
  8326. }
  8327. },
  8328. taur: {
  8329. height: math.unit(18, "feet"),
  8330. weight: math.unit(5500, "kg"),
  8331. capacity: math.unit(50, "people"),
  8332. name: "Taur",
  8333. image: {
  8334. source: "./media/characters/aura-starwind/taur.svg",
  8335. extra: 1760 / 1650
  8336. }
  8337. },
  8338. feral: {
  8339. height: math.unit(46, "feet"),
  8340. weight: math.unit(25000, "kg"),
  8341. capacity: math.unit(120, "people"),
  8342. name: "Feral",
  8343. image: {
  8344. source: "./media/characters/aura-starwind/feral.svg"
  8345. }
  8346. },
  8347. },
  8348. [
  8349. {
  8350. name: "Normal",
  8351. height: math.unit(14, "feet"),
  8352. default: true
  8353. },
  8354. {
  8355. name: "Macro",
  8356. height: math.unit(50, "meters")
  8357. },
  8358. {
  8359. name: "Megamacro",
  8360. height: math.unit(5000, "meters")
  8361. },
  8362. {
  8363. name: "Gigamacro",
  8364. height: math.unit(100000, "kilometers")
  8365. },
  8366. ]
  8367. ))
  8368. characterMakers.push(() => makeCharacter(
  8369. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8370. {
  8371. front: {
  8372. height: math.unit(2 + 7 / 12, "feet"),
  8373. weight: math.unit(32, "lbs"),
  8374. name: "Front",
  8375. image: {
  8376. source: "./media/characters/rivet/front.svg",
  8377. extra: 1716 / 1658,
  8378. bottom: 0.03
  8379. }
  8380. },
  8381. foot: {
  8382. height: math.unit(0.551, "feet"),
  8383. name: "Rivet's Foot",
  8384. image: {
  8385. source: "./media/characters/rivet/foot.svg"
  8386. },
  8387. rename: true
  8388. }
  8389. },
  8390. [
  8391. {
  8392. name: "Micro",
  8393. height: math.unit(1.5, "inches"),
  8394. },
  8395. {
  8396. name: "Normal",
  8397. height: math.unit(2 + 7 / 12, "feet"),
  8398. default: true
  8399. },
  8400. {
  8401. name: "Macro",
  8402. height: math.unit(85, "feet")
  8403. },
  8404. {
  8405. name: "Megamacro",
  8406. height: math.unit(2.2, "km")
  8407. }
  8408. ]
  8409. ))
  8410. characterMakers.push(() => makeCharacter(
  8411. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8412. {
  8413. front: {
  8414. height: math.unit(5 + 9 / 12, "feet"),
  8415. weight: math.unit(150, "lbs"),
  8416. name: "Front",
  8417. image: {
  8418. source: "./media/characters/coffee/front.svg",
  8419. extra: 3666 / 3032,
  8420. bottom: 0.04
  8421. }
  8422. },
  8423. foot: {
  8424. height: math.unit(1.29, "feet"),
  8425. name: "Foot",
  8426. image: {
  8427. source: "./media/characters/coffee/foot.svg"
  8428. }
  8429. },
  8430. },
  8431. [
  8432. {
  8433. name: "Micro",
  8434. height: math.unit(2, "inches"),
  8435. },
  8436. {
  8437. name: "Normal",
  8438. height: math.unit(5 + 9 / 12, "feet"),
  8439. default: true
  8440. },
  8441. {
  8442. name: "Macro",
  8443. height: math.unit(800, "feet")
  8444. },
  8445. {
  8446. name: "Megamacro",
  8447. height: math.unit(25, "miles")
  8448. }
  8449. ]
  8450. ))
  8451. characterMakers.push(() => makeCharacter(
  8452. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8453. {
  8454. front: {
  8455. height: math.unit(6, "feet"),
  8456. weight: math.unit(200, "lbs"),
  8457. name: "Front",
  8458. image: {
  8459. source: "./media/characters/chari-gal/front.svg",
  8460. extra: 1568 / 1385,
  8461. bottom: 0.047
  8462. }
  8463. },
  8464. gigantamax: {
  8465. height: math.unit(6 * 16, "feet"),
  8466. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8467. name: "Gigantamax",
  8468. image: {
  8469. source: "./media/characters/chari-gal/gigantamax.svg",
  8470. extra: 1124 / 888,
  8471. bottom: 0.03
  8472. }
  8473. },
  8474. },
  8475. [
  8476. {
  8477. name: "Normal",
  8478. height: math.unit(5 + 7 / 12, "feet")
  8479. },
  8480. {
  8481. name: "Macro",
  8482. height: math.unit(200, "feet"),
  8483. default: true
  8484. }
  8485. ]
  8486. ))
  8487. characterMakers.push(() => makeCharacter(
  8488. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8489. {
  8490. front: {
  8491. height: math.unit(6, "feet"),
  8492. weight: math.unit(150, "lbs"),
  8493. name: "Front",
  8494. image: {
  8495. source: "./media/characters/nova/front.svg",
  8496. extra: 5000 / 4722,
  8497. bottom: 0.02
  8498. }
  8499. }
  8500. },
  8501. [
  8502. {
  8503. name: "Micro-",
  8504. height: math.unit(0.8, "inches")
  8505. },
  8506. {
  8507. name: "Micro",
  8508. height: math.unit(2, "inches"),
  8509. default: true
  8510. },
  8511. ]
  8512. ))
  8513. characterMakers.push(() => makeCharacter(
  8514. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8515. {
  8516. front: {
  8517. height: math.unit(3 + 1 / 12, "feet"),
  8518. weight: math.unit(21.7, "lbs"),
  8519. name: "Front",
  8520. image: {
  8521. source: "./media/characters/argent/front.svg",
  8522. extra: 1471 / 1331,
  8523. bottom: 100.8 / 1575.5
  8524. }
  8525. }
  8526. },
  8527. [
  8528. {
  8529. name: "Micro",
  8530. height: math.unit(2, "inches")
  8531. },
  8532. {
  8533. name: "Normal",
  8534. height: math.unit(3 + 1 / 12, "feet"),
  8535. default: true
  8536. },
  8537. {
  8538. name: "Macro",
  8539. height: math.unit(120, "feet")
  8540. },
  8541. ]
  8542. ))
  8543. characterMakers.push(() => makeCharacter(
  8544. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8545. {
  8546. lamp: {
  8547. height: math.unit(7 * 1559 / 989, "feet"),
  8548. name: "Magic Lamp",
  8549. image: {
  8550. source: "./media/characters/mira-al-cul/lamp.svg",
  8551. extra: 1617 / 1559
  8552. }
  8553. },
  8554. front: {
  8555. height: math.unit(7, "feet"),
  8556. name: "Front",
  8557. image: {
  8558. source: "./media/characters/mira-al-cul/front.svg",
  8559. extra: 1044 / 990
  8560. }
  8561. },
  8562. },
  8563. [
  8564. {
  8565. name: "Heavily Restricted",
  8566. height: math.unit(7 * 1559 / 989, "feet")
  8567. },
  8568. {
  8569. name: "Freshly Freed",
  8570. height: math.unit(50 * 1559 / 989, "feet")
  8571. },
  8572. {
  8573. name: "World Encompassing",
  8574. height: math.unit(10000 * 1559 / 989, "miles")
  8575. },
  8576. {
  8577. name: "Galactic",
  8578. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8579. },
  8580. {
  8581. name: "Palmed Universe",
  8582. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8583. default: true
  8584. },
  8585. {
  8586. name: "Multiversal Matriarch",
  8587. height: math.unit(8.87e10, "yottameters")
  8588. },
  8589. {
  8590. name: "Void Mother",
  8591. height: math.unit(3.14e110, "yottaparsecs")
  8592. },
  8593. {
  8594. name: "Toying with Transcendence",
  8595. height: math.unit(1e307, "meters")
  8596. },
  8597. ]
  8598. ))
  8599. characterMakers.push(() => makeCharacter(
  8600. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8601. {
  8602. front: {
  8603. height: math.unit(17 + 1 / 12, "feet"),
  8604. weight: math.unit(476.2 * 5, "lbs"),
  8605. name: "Front",
  8606. image: {
  8607. source: "./media/characters/kuro-shi-uchū/front.svg",
  8608. extra: 2329 / 1835,
  8609. bottom: 0.02
  8610. }
  8611. },
  8612. },
  8613. [
  8614. {
  8615. name: "Micro",
  8616. height: math.unit(2, "inches")
  8617. },
  8618. {
  8619. name: "Normal",
  8620. height: math.unit(12, "meters")
  8621. },
  8622. {
  8623. name: "Planetary",
  8624. height: math.unit(0.00929, "AU"),
  8625. default: true
  8626. },
  8627. {
  8628. name: "Universal",
  8629. height: math.unit(20, "gigaparsecs")
  8630. },
  8631. ]
  8632. ))
  8633. characterMakers.push(() => makeCharacter(
  8634. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8635. {
  8636. front: {
  8637. height: math.unit(5 + 2 / 12, "feet"),
  8638. weight: math.unit(120, "lbs"),
  8639. name: "Front",
  8640. image: {
  8641. source: "./media/characters/katherine/front.svg",
  8642. extra: 2075 / 1969
  8643. }
  8644. },
  8645. dress: {
  8646. height: math.unit(5 + 2 / 12, "feet"),
  8647. weight: math.unit(120, "lbs"),
  8648. name: "Dress",
  8649. image: {
  8650. source: "./media/characters/katherine/dress.svg",
  8651. extra: 2258 / 2064
  8652. }
  8653. },
  8654. },
  8655. [
  8656. {
  8657. name: "Micro",
  8658. height: math.unit(1, "inches"),
  8659. default: true
  8660. },
  8661. {
  8662. name: "Normal",
  8663. height: math.unit(5 + 2 / 12, "feet")
  8664. },
  8665. {
  8666. name: "Macro",
  8667. height: math.unit(100, "meters")
  8668. },
  8669. {
  8670. name: "Megamacro",
  8671. height: math.unit(80, "miles")
  8672. },
  8673. ]
  8674. ))
  8675. characterMakers.push(() => makeCharacter(
  8676. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8677. {
  8678. front: {
  8679. height: math.unit(7 + 8 / 12, "feet"),
  8680. weight: math.unit(250, "lbs"),
  8681. name: "Front",
  8682. image: {
  8683. source: "./media/characters/yevis/front.svg",
  8684. extra: 1938 / 1755
  8685. }
  8686. }
  8687. },
  8688. [
  8689. {
  8690. name: "Mortal",
  8691. height: math.unit(7 + 8 / 12, "feet")
  8692. },
  8693. {
  8694. name: "Battle",
  8695. height: math.unit(25 + 11 / 12, "feet")
  8696. },
  8697. {
  8698. name: "Wrath",
  8699. height: math.unit(1654 + 11 / 12, "feet")
  8700. },
  8701. {
  8702. name: "Planet Destroyer",
  8703. height: math.unit(12000, "miles")
  8704. },
  8705. {
  8706. name: "Galaxy Conqueror",
  8707. height: math.unit(1.45, "zettameters"),
  8708. default: true
  8709. },
  8710. {
  8711. name: "Universal War",
  8712. height: math.unit(184, "gigaparsecs")
  8713. },
  8714. {
  8715. name: "Eternity War",
  8716. height: math.unit(1.98e55, "yottaparsecs")
  8717. },
  8718. ]
  8719. ))
  8720. characterMakers.push(() => makeCharacter(
  8721. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8722. {
  8723. front: {
  8724. height: math.unit(5 + 8 / 12, "feet"),
  8725. weight: math.unit(63, "kg"),
  8726. name: "Front",
  8727. image: {
  8728. source: "./media/characters/xavier/front.svg",
  8729. extra: 944 / 883
  8730. }
  8731. },
  8732. frontStretch: {
  8733. height: math.unit(5 + 8 / 12, "feet"),
  8734. weight: math.unit(63, "kg"),
  8735. name: "Stretching",
  8736. image: {
  8737. source: "./media/characters/xavier/front-stretch.svg",
  8738. extra: 962 / 820
  8739. }
  8740. },
  8741. },
  8742. [
  8743. {
  8744. name: "Normal",
  8745. height: math.unit(5 + 8 / 12, "feet")
  8746. },
  8747. {
  8748. name: "Macro",
  8749. height: math.unit(100, "meters"),
  8750. default: true
  8751. },
  8752. {
  8753. name: "McLargeHuge",
  8754. height: math.unit(10, "miles")
  8755. },
  8756. ]
  8757. ))
  8758. characterMakers.push(() => makeCharacter(
  8759. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8760. {
  8761. front: {
  8762. height: math.unit(5 + 5 / 12, "feet"),
  8763. weight: math.unit(150, "lb"),
  8764. name: "Front",
  8765. image: {
  8766. source: "./media/characters/joshii/front.svg",
  8767. extra: 765 / 653,
  8768. bottom: 51 / 816
  8769. }
  8770. },
  8771. foot: {
  8772. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8773. name: "Foot",
  8774. image: {
  8775. source: "./media/characters/joshii/foot.svg"
  8776. }
  8777. },
  8778. },
  8779. [
  8780. {
  8781. name: "Micro",
  8782. height: math.unit(2, "inches"),
  8783. default: true
  8784. },
  8785. {
  8786. name: "Normal",
  8787. height: math.unit(5 + 5 / 12, "feet")
  8788. },
  8789. {
  8790. name: "Macro",
  8791. height: math.unit(785, "feet")
  8792. },
  8793. {
  8794. name: "Megamacro",
  8795. height: math.unit(24.5, "miles")
  8796. },
  8797. ]
  8798. ))
  8799. characterMakers.push(() => makeCharacter(
  8800. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8801. {
  8802. front: {
  8803. height: math.unit(6, "feet"),
  8804. weight: math.unit(150, "lb"),
  8805. name: "Front",
  8806. image: {
  8807. source: "./media/characters/goddess-elizabeth/front.svg",
  8808. extra: 1800 / 1525,
  8809. bottom: 0.005
  8810. }
  8811. },
  8812. foot: {
  8813. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8814. name: "Foot",
  8815. image: {
  8816. source: "./media/characters/goddess-elizabeth/foot.svg"
  8817. }
  8818. },
  8819. mouth: {
  8820. height: math.unit(6, "feet"),
  8821. name: "Mouth",
  8822. image: {
  8823. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8824. }
  8825. },
  8826. },
  8827. [
  8828. {
  8829. name: "Micro",
  8830. height: math.unit(12, "feet")
  8831. },
  8832. {
  8833. name: "Normal",
  8834. height: math.unit(80, "miles"),
  8835. default: true
  8836. },
  8837. {
  8838. name: "Macro",
  8839. height: math.unit(15000, "parsecs")
  8840. },
  8841. ]
  8842. ))
  8843. characterMakers.push(() => makeCharacter(
  8844. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8845. {
  8846. front: {
  8847. height: math.unit(5 + 9 / 12, "feet"),
  8848. weight: math.unit(144, "lb"),
  8849. name: "Front",
  8850. image: {
  8851. source: "./media/characters/kara/front.svg"
  8852. }
  8853. },
  8854. feet: {
  8855. height: math.unit(6 / 6.765, "feet"),
  8856. name: "Kara's Feet",
  8857. rename: true,
  8858. image: {
  8859. source: "./media/characters/kara/feet.svg"
  8860. }
  8861. },
  8862. },
  8863. [
  8864. {
  8865. name: "Normal",
  8866. height: math.unit(5 + 9 / 12, "feet")
  8867. },
  8868. {
  8869. name: "Macro",
  8870. height: math.unit(174, "feet"),
  8871. default: true
  8872. },
  8873. ]
  8874. ))
  8875. characterMakers.push(() => makeCharacter(
  8876. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8877. {
  8878. front: {
  8879. height: math.unit(18, "feet"),
  8880. weight: math.unit(4050, "lb"),
  8881. name: "Front",
  8882. image: {
  8883. source: "./media/characters/tyrone/front.svg",
  8884. extra: 2405 / 2270,
  8885. bottom: 182 / 2587
  8886. }
  8887. },
  8888. },
  8889. [
  8890. {
  8891. name: "Normal",
  8892. height: math.unit(18, "feet"),
  8893. default: true
  8894. },
  8895. {
  8896. name: "Macro",
  8897. height: math.unit(300, "feet")
  8898. },
  8899. {
  8900. name: "Megamacro",
  8901. height: math.unit(15, "km")
  8902. },
  8903. {
  8904. name: "Gigamacro",
  8905. height: math.unit(500, "km")
  8906. },
  8907. {
  8908. name: "Teramacro",
  8909. height: math.unit(0.5, "gigameters")
  8910. },
  8911. {
  8912. name: "Omnimacro",
  8913. height: math.unit(1e252, "yottauniverse")
  8914. },
  8915. ]
  8916. ))
  8917. characterMakers.push(() => makeCharacter(
  8918. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8919. {
  8920. front: {
  8921. height: math.unit(7 + 8 / 12, "feet"),
  8922. weight: math.unit(120, "lb"),
  8923. name: "Front",
  8924. image: {
  8925. source: "./media/characters/danny/front.svg",
  8926. extra: 1490 / 1350
  8927. }
  8928. },
  8929. back: {
  8930. height: math.unit(7 + 8 / 12, "feet"),
  8931. weight: math.unit(120, "lb"),
  8932. name: "Back",
  8933. image: {
  8934. source: "./media/characters/danny/back.svg",
  8935. extra: 1490 / 1350
  8936. }
  8937. },
  8938. },
  8939. [
  8940. {
  8941. name: "Normal",
  8942. height: math.unit(7 + 8 / 12, "feet"),
  8943. default: true
  8944. },
  8945. ]
  8946. ))
  8947. characterMakers.push(() => makeCharacter(
  8948. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8949. {
  8950. front: {
  8951. height: math.unit(3.5, "inches"),
  8952. weight: math.unit(19, "grams"),
  8953. name: "Front",
  8954. image: {
  8955. source: "./media/characters/mallow/front.svg",
  8956. extra: 471 / 431
  8957. }
  8958. },
  8959. back: {
  8960. height: math.unit(3.5, "inches"),
  8961. weight: math.unit(19, "grams"),
  8962. name: "Back",
  8963. image: {
  8964. source: "./media/characters/mallow/back.svg",
  8965. extra: 471 / 431
  8966. }
  8967. },
  8968. },
  8969. [
  8970. {
  8971. name: "Normal",
  8972. height: math.unit(3.5, "inches"),
  8973. default: true
  8974. },
  8975. ]
  8976. ))
  8977. characterMakers.push(() => makeCharacter(
  8978. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8979. {
  8980. front: {
  8981. height: math.unit(9, "feet"),
  8982. weight: math.unit(230, "kg"),
  8983. name: "Front",
  8984. image: {
  8985. source: "./media/characters/starry-aqua/front.svg"
  8986. }
  8987. },
  8988. back: {
  8989. height: math.unit(9, "feet"),
  8990. weight: math.unit(230, "kg"),
  8991. name: "Back",
  8992. image: {
  8993. source: "./media/characters/starry-aqua/back.svg"
  8994. }
  8995. },
  8996. hand: {
  8997. height: math.unit(9 * 0.1168, "feet"),
  8998. name: "Hand",
  8999. image: {
  9000. source: "./media/characters/starry-aqua/hand.svg"
  9001. }
  9002. },
  9003. foot: {
  9004. height: math.unit(9 * 0.18, "feet"),
  9005. name: "Foot",
  9006. image: {
  9007. source: "./media/characters/starry-aqua/foot.svg"
  9008. }
  9009. }
  9010. },
  9011. [
  9012. {
  9013. name: "Micro",
  9014. height: math.unit(3, "inches")
  9015. },
  9016. {
  9017. name: "Normal",
  9018. height: math.unit(9, "feet")
  9019. },
  9020. {
  9021. name: "Macro",
  9022. height: math.unit(300, "feet"),
  9023. default: true
  9024. },
  9025. {
  9026. name: "Megamacro",
  9027. height: math.unit(3200, "feet")
  9028. }
  9029. ]
  9030. ))
  9031. characterMakers.push(() => makeCharacter(
  9032. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9033. {
  9034. front: {
  9035. height: math.unit(15, "feet"),
  9036. weight: math.unit(5026, "lb"),
  9037. name: "Front",
  9038. image: {
  9039. source: "./media/characters/luka-towers/front.svg",
  9040. extra: 1269/1133,
  9041. bottom: 51/1320
  9042. }
  9043. },
  9044. },
  9045. [
  9046. {
  9047. name: "Normal",
  9048. height: math.unit(15, "feet"),
  9049. default: true
  9050. },
  9051. {
  9052. name: "Minimacro",
  9053. height: math.unit(25, "feet")
  9054. },
  9055. {
  9056. name: "Macro",
  9057. height: math.unit(320, "feet")
  9058. },
  9059. {
  9060. name: "Megamacro",
  9061. height: math.unit(35000, "feet")
  9062. },
  9063. {
  9064. name: "Gigamacro",
  9065. height: math.unit(4000, "miles")
  9066. },
  9067. {
  9068. name: "Teramacro",
  9069. height: math.unit(15000, "miles")
  9070. },
  9071. ]
  9072. ))
  9073. characterMakers.push(() => makeCharacter(
  9074. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9075. {
  9076. front: {
  9077. height: math.unit(6, "feet"),
  9078. weight: math.unit(150, "lb"),
  9079. name: "Front",
  9080. image: {
  9081. source: "./media/characters/natalie-nightring/front.svg",
  9082. extra: 1,
  9083. bottom: 0.06
  9084. }
  9085. },
  9086. },
  9087. [
  9088. {
  9089. name: "Uh Oh",
  9090. height: math.unit(0.1, "mm")
  9091. },
  9092. {
  9093. name: "Small",
  9094. height: math.unit(3, "inches")
  9095. },
  9096. {
  9097. name: "Human Scale",
  9098. height: math.unit(6, "feet")
  9099. },
  9100. {
  9101. name: "Librarian",
  9102. height: math.unit(50, "feet"),
  9103. default: true
  9104. },
  9105. {
  9106. name: "Immense",
  9107. height: math.unit(200, "miles")
  9108. },
  9109. ]
  9110. ))
  9111. characterMakers.push(() => makeCharacter(
  9112. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9113. {
  9114. front: {
  9115. height: math.unit(6, "feet"),
  9116. weight: math.unit(180, "lbs"),
  9117. name: "Front",
  9118. image: {
  9119. source: "./media/characters/danni-rosie/front.svg",
  9120. extra: 1260 / 1128,
  9121. bottom: 0.022
  9122. }
  9123. },
  9124. },
  9125. [
  9126. {
  9127. name: "Micro",
  9128. height: math.unit(2, "inches"),
  9129. default: true
  9130. },
  9131. ]
  9132. ))
  9133. characterMakers.push(() => makeCharacter(
  9134. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9135. {
  9136. front: {
  9137. height: math.unit(5 + 9 / 12, "feet"),
  9138. weight: math.unit(220, "lb"),
  9139. name: "Front",
  9140. image: {
  9141. source: "./media/characters/samantha-kruse/front.svg",
  9142. extra: (985 / 935),
  9143. bottom: 0.03
  9144. }
  9145. },
  9146. frontUndressed: {
  9147. height: math.unit(5 + 9 / 12, "feet"),
  9148. weight: math.unit(220, "lb"),
  9149. name: "Front (Undressed)",
  9150. image: {
  9151. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9152. extra: (973 / 923),
  9153. bottom: 0.025
  9154. }
  9155. },
  9156. fat: {
  9157. height: math.unit(5 + 9 / 12, "feet"),
  9158. weight: math.unit(900, "lb"),
  9159. name: "Front (Fat)",
  9160. image: {
  9161. source: "./media/characters/samantha-kruse/fat.svg",
  9162. extra: 2688 / 2561
  9163. }
  9164. },
  9165. },
  9166. [
  9167. {
  9168. name: "Normal",
  9169. height: math.unit(5 + 9 / 12, "feet"),
  9170. default: true
  9171. }
  9172. ]
  9173. ))
  9174. characterMakers.push(() => makeCharacter(
  9175. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9176. {
  9177. back: {
  9178. height: math.unit(5 + 4 / 12, "feet"),
  9179. weight: math.unit(4963, "lb"),
  9180. name: "Back",
  9181. image: {
  9182. source: "./media/characters/amelia-rosie/back.svg",
  9183. extra: 1113 / 963,
  9184. bottom: 0.01
  9185. }
  9186. },
  9187. },
  9188. [
  9189. {
  9190. name: "Level 0",
  9191. height: math.unit(5 + 4 / 12, "feet")
  9192. },
  9193. {
  9194. name: "Level 1",
  9195. height: math.unit(164597, "feet"),
  9196. default: true
  9197. },
  9198. {
  9199. name: "Level 2",
  9200. height: math.unit(956243, "miles")
  9201. },
  9202. {
  9203. name: "Level 3",
  9204. height: math.unit(29421709423, "miles")
  9205. },
  9206. {
  9207. name: "Level 4",
  9208. height: math.unit(154, "lightyears")
  9209. },
  9210. {
  9211. name: "Level 5",
  9212. height: math.unit(4738272, "lightyears")
  9213. },
  9214. {
  9215. name: "Level 6",
  9216. height: math.unit(145787152896, "lightyears")
  9217. },
  9218. ]
  9219. ))
  9220. characterMakers.push(() => makeCharacter(
  9221. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9222. {
  9223. front: {
  9224. height: math.unit(5 + 11 / 12, "feet"),
  9225. weight: math.unit(65, "kg"),
  9226. name: "Front",
  9227. image: {
  9228. source: "./media/characters/rook-kitara/front.svg",
  9229. extra: 1347 / 1274,
  9230. bottom: 0.005
  9231. }
  9232. },
  9233. },
  9234. [
  9235. {
  9236. name: "Totally Unfair",
  9237. height: math.unit(1.8, "mm")
  9238. },
  9239. {
  9240. name: "Lap Rookie",
  9241. height: math.unit(1.4, "feet")
  9242. },
  9243. {
  9244. name: "Normal",
  9245. height: math.unit(5 + 11 / 12, "feet"),
  9246. default: true
  9247. },
  9248. {
  9249. name: "How Did This Happen",
  9250. height: math.unit(80, "miles")
  9251. }
  9252. ]
  9253. ))
  9254. characterMakers.push(() => makeCharacter(
  9255. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9256. {
  9257. front: {
  9258. height: math.unit(7, "feet"),
  9259. weight: math.unit(300, "lb"),
  9260. name: "Front",
  9261. image: {
  9262. source: "./media/characters/pisces/front.svg",
  9263. extra: 2255 / 2115,
  9264. bottom: 0.03
  9265. }
  9266. },
  9267. back: {
  9268. height: math.unit(7, "feet"),
  9269. weight: math.unit(300, "lb"),
  9270. name: "Back",
  9271. image: {
  9272. source: "./media/characters/pisces/back.svg",
  9273. extra: 2146 / 2055,
  9274. bottom: 0.04
  9275. }
  9276. },
  9277. },
  9278. [
  9279. {
  9280. name: "Normal",
  9281. height: math.unit(7, "feet"),
  9282. default: true
  9283. },
  9284. {
  9285. name: "Swimming Pool",
  9286. height: math.unit(12.2, "meters")
  9287. },
  9288. {
  9289. name: "Olympic Swimming Pool",
  9290. height: math.unit(56.3, "meters")
  9291. },
  9292. {
  9293. name: "Lake Superior",
  9294. height: math.unit(93900, "meters")
  9295. },
  9296. {
  9297. name: "Mediterranean Sea",
  9298. height: math.unit(644457, "meters")
  9299. },
  9300. {
  9301. name: "World's Oceans",
  9302. height: math.unit(4567491, "meters")
  9303. },
  9304. ]
  9305. ))
  9306. characterMakers.push(() => makeCharacter(
  9307. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9308. {
  9309. front: {
  9310. height: math.unit(2.3, "meters"),
  9311. weight: math.unit(120, "kg"),
  9312. name: "Front",
  9313. image: {
  9314. source: "./media/characters/zelas/front.svg"
  9315. }
  9316. },
  9317. side: {
  9318. height: math.unit(2.3, "meters"),
  9319. weight: math.unit(120, "kg"),
  9320. name: "Side",
  9321. image: {
  9322. source: "./media/characters/zelas/side.svg"
  9323. }
  9324. },
  9325. back: {
  9326. height: math.unit(2.3, "meters"),
  9327. weight: math.unit(120, "kg"),
  9328. name: "Back",
  9329. image: {
  9330. source: "./media/characters/zelas/back.svg"
  9331. }
  9332. },
  9333. foot: {
  9334. height: math.unit(1.116, "feet"),
  9335. name: "Foot",
  9336. image: {
  9337. source: "./media/characters/zelas/foot.svg"
  9338. }
  9339. },
  9340. },
  9341. [
  9342. {
  9343. name: "Normal",
  9344. height: math.unit(2.3, "meters")
  9345. },
  9346. {
  9347. name: "Macro",
  9348. height: math.unit(30, "meters"),
  9349. default: true
  9350. },
  9351. ]
  9352. ))
  9353. characterMakers.push(() => makeCharacter(
  9354. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9355. {
  9356. front: {
  9357. height: math.unit(1, "inch"),
  9358. weight: math.unit(0.21, "grams"),
  9359. name: "Front",
  9360. image: {
  9361. source: "./media/characters/talbot/front.svg",
  9362. extra: 594 / 544
  9363. }
  9364. },
  9365. },
  9366. [
  9367. {
  9368. name: "Micro",
  9369. height: math.unit(1, "inch"),
  9370. default: true
  9371. },
  9372. ]
  9373. ))
  9374. characterMakers.push(() => makeCharacter(
  9375. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9376. {
  9377. front: {
  9378. height: math.unit(3 + 3 / 12, "feet"),
  9379. weight: math.unit(51.8, "lb"),
  9380. name: "Front",
  9381. image: {
  9382. source: "./media/characters/fliss/front.svg",
  9383. extra: 840 / 640
  9384. }
  9385. },
  9386. },
  9387. [
  9388. {
  9389. name: "Teeny Tiny",
  9390. height: math.unit(1, "mm")
  9391. },
  9392. {
  9393. name: "Small",
  9394. height: math.unit(1, "inch"),
  9395. default: true
  9396. },
  9397. {
  9398. name: "Standard Sylveon",
  9399. height: math.unit(3 + 3 / 12, "feet")
  9400. },
  9401. {
  9402. name: "Large Nuisance",
  9403. height: math.unit(33, "feet")
  9404. },
  9405. {
  9406. name: "City Filler",
  9407. height: math.unit(3000, "feet")
  9408. },
  9409. {
  9410. name: "New Horizon",
  9411. height: math.unit(6000, "miles")
  9412. },
  9413. ]
  9414. ))
  9415. characterMakers.push(() => makeCharacter(
  9416. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9417. {
  9418. front: {
  9419. height: math.unit(5, "cm"),
  9420. weight: math.unit(1.94, "g"),
  9421. name: "Front",
  9422. image: {
  9423. source: "./media/characters/fleta/front.svg",
  9424. extra: 835 / 803
  9425. }
  9426. },
  9427. back: {
  9428. height: math.unit(5, "cm"),
  9429. weight: math.unit(1.94, "g"),
  9430. name: "Back",
  9431. image: {
  9432. source: "./media/characters/fleta/back.svg",
  9433. extra: 835 / 803
  9434. }
  9435. },
  9436. },
  9437. [
  9438. {
  9439. name: "Micro",
  9440. height: math.unit(5, "cm"),
  9441. default: true
  9442. },
  9443. ]
  9444. ))
  9445. characterMakers.push(() => makeCharacter(
  9446. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9447. {
  9448. front: {
  9449. height: math.unit(6, "feet"),
  9450. weight: math.unit(225, "lb"),
  9451. name: "Front",
  9452. image: {
  9453. source: "./media/characters/dominic/front.svg",
  9454. extra: 1770 / 1620,
  9455. bottom: 0.025
  9456. }
  9457. },
  9458. back: {
  9459. height: math.unit(6, "feet"),
  9460. weight: math.unit(225, "lb"),
  9461. name: "Back",
  9462. image: {
  9463. source: "./media/characters/dominic/back.svg",
  9464. extra: 1745 / 1620,
  9465. bottom: 0.065
  9466. }
  9467. },
  9468. },
  9469. [
  9470. {
  9471. name: "Nano",
  9472. height: math.unit(0.1, "mm")
  9473. },
  9474. {
  9475. name: "Micro-",
  9476. height: math.unit(1, "mm")
  9477. },
  9478. {
  9479. name: "Micro",
  9480. height: math.unit(4, "inches")
  9481. },
  9482. {
  9483. name: "Normal",
  9484. height: math.unit(6 + 4 / 12, "feet"),
  9485. default: true
  9486. },
  9487. {
  9488. name: "Macro",
  9489. height: math.unit(115, "feet")
  9490. },
  9491. {
  9492. name: "Macro+",
  9493. height: math.unit(955, "feet")
  9494. },
  9495. {
  9496. name: "Megamacro",
  9497. height: math.unit(8990, "feet")
  9498. },
  9499. {
  9500. name: "Gigmacro",
  9501. height: math.unit(9310, "miles")
  9502. },
  9503. {
  9504. name: "Teramacro",
  9505. height: math.unit(1567005010, "miles")
  9506. },
  9507. {
  9508. name: "Examacro",
  9509. height: math.unit(1425, "parsecs")
  9510. },
  9511. ]
  9512. ))
  9513. characterMakers.push(() => makeCharacter(
  9514. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9515. {
  9516. front: {
  9517. height: math.unit(400, "feet"),
  9518. weight: math.unit(44444444, "lb"),
  9519. name: "Front",
  9520. image: {
  9521. source: "./media/characters/major-colonel/front.svg"
  9522. }
  9523. },
  9524. back: {
  9525. height: math.unit(400, "feet"),
  9526. weight: math.unit(44444444, "lb"),
  9527. name: "Back",
  9528. image: {
  9529. source: "./media/characters/major-colonel/back.svg"
  9530. }
  9531. },
  9532. },
  9533. [
  9534. {
  9535. name: "Macro",
  9536. height: math.unit(400, "feet"),
  9537. default: true
  9538. },
  9539. ]
  9540. ))
  9541. characterMakers.push(() => makeCharacter(
  9542. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9543. {
  9544. catFront: {
  9545. height: math.unit(6, "feet"),
  9546. weight: math.unit(120, "lb"),
  9547. name: "Front (Cat Side)",
  9548. image: {
  9549. source: "./media/characters/axel-lycan/cat-front.svg",
  9550. extra: 430 / 402,
  9551. bottom: 43 / 472.35
  9552. }
  9553. },
  9554. catBack: {
  9555. height: math.unit(6, "feet"),
  9556. weight: math.unit(120, "lb"),
  9557. name: "Back (Cat Side)",
  9558. image: {
  9559. source: "./media/characters/axel-lycan/cat-back.svg",
  9560. extra: 447 / 419,
  9561. bottom: 23.3 / 469
  9562. }
  9563. },
  9564. wolfFront: {
  9565. height: math.unit(6, "feet"),
  9566. weight: math.unit(120, "lb"),
  9567. name: "Front (Wolf Side)",
  9568. image: {
  9569. source: "./media/characters/axel-lycan/wolf-front.svg",
  9570. extra: 485 / 456,
  9571. bottom: 19 / 504
  9572. }
  9573. },
  9574. wolfBack: {
  9575. height: math.unit(6, "feet"),
  9576. weight: math.unit(120, "lb"),
  9577. name: "Back (Wolf Side)",
  9578. image: {
  9579. source: "./media/characters/axel-lycan/wolf-back.svg",
  9580. extra: 475 / 438,
  9581. bottom: 39.2 / 514
  9582. }
  9583. },
  9584. },
  9585. [
  9586. {
  9587. name: "Macro",
  9588. height: math.unit(1, "km"),
  9589. default: true
  9590. },
  9591. ]
  9592. ))
  9593. characterMakers.push(() => makeCharacter(
  9594. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9595. {
  9596. front: {
  9597. height: math.unit(5 + 9 / 12, "feet"),
  9598. weight: math.unit(175, "lb"),
  9599. name: "Front",
  9600. image: {
  9601. source: "./media/characters/vanrel-hyena/front.svg",
  9602. extra: 1086 / 1010,
  9603. bottom: 0.04
  9604. }
  9605. },
  9606. },
  9607. [
  9608. {
  9609. name: "Normal",
  9610. height: math.unit(5 + 9 / 12, "feet"),
  9611. default: true
  9612. },
  9613. ]
  9614. ))
  9615. characterMakers.push(() => makeCharacter(
  9616. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9617. {
  9618. front: {
  9619. height: math.unit(6, "feet"),
  9620. weight: math.unit(103, "lb"),
  9621. name: "Front",
  9622. image: {
  9623. source: "./media/characters/abbott-absol/front.svg",
  9624. extra: 2010 / 1842
  9625. }
  9626. },
  9627. },
  9628. [
  9629. {
  9630. name: "Megamicro",
  9631. height: math.unit(0.1, "mm")
  9632. },
  9633. {
  9634. name: "Micro",
  9635. height: math.unit(1, "inch")
  9636. },
  9637. {
  9638. name: "Normal",
  9639. height: math.unit(6, "feet"),
  9640. default: true
  9641. },
  9642. ]
  9643. ))
  9644. characterMakers.push(() => makeCharacter(
  9645. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9646. {
  9647. front: {
  9648. height: math.unit(6, "feet"),
  9649. weight: math.unit(264, "lb"),
  9650. name: "Front",
  9651. image: {
  9652. source: "./media/characters/hector/front.svg",
  9653. extra: 2280 / 2130,
  9654. bottom: 0.07
  9655. }
  9656. },
  9657. },
  9658. [
  9659. {
  9660. name: "Normal",
  9661. height: math.unit(12.25, "foot"),
  9662. default: true
  9663. },
  9664. {
  9665. name: "Macro",
  9666. height: math.unit(160, "feet")
  9667. },
  9668. ]
  9669. ))
  9670. characterMakers.push(() => makeCharacter(
  9671. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9672. {
  9673. front: {
  9674. height: math.unit(6, "feet"),
  9675. weight: math.unit(150, "lb"),
  9676. name: "Front",
  9677. image: {
  9678. source: "./media/characters/sal/front.svg",
  9679. extra: 1846 / 1699,
  9680. bottom: 0.04
  9681. }
  9682. },
  9683. },
  9684. [
  9685. {
  9686. name: "Megamacro",
  9687. height: math.unit(10, "miles"),
  9688. default: true
  9689. },
  9690. ]
  9691. ))
  9692. characterMakers.push(() => makeCharacter(
  9693. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9694. {
  9695. front: {
  9696. height: math.unit(3, "meters"),
  9697. weight: math.unit(450, "kg"),
  9698. name: "front",
  9699. image: {
  9700. source: "./media/characters/ranger/front.svg",
  9701. extra: 2401 / 2243,
  9702. bottom: 0.05
  9703. }
  9704. },
  9705. },
  9706. [
  9707. {
  9708. name: "Normal",
  9709. height: math.unit(3, "meters"),
  9710. default: true
  9711. },
  9712. ]
  9713. ))
  9714. characterMakers.push(() => makeCharacter(
  9715. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9716. {
  9717. front: {
  9718. height: math.unit(14, "feet"),
  9719. weight: math.unit(800, "kg"),
  9720. name: "Front",
  9721. image: {
  9722. source: "./media/characters/theresa/front.svg",
  9723. extra: 3575 / 3346,
  9724. bottom: 0.03
  9725. }
  9726. },
  9727. },
  9728. [
  9729. {
  9730. name: "Normal",
  9731. height: math.unit(14, "feet"),
  9732. default: true
  9733. },
  9734. ]
  9735. ))
  9736. characterMakers.push(() => makeCharacter(
  9737. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9738. {
  9739. front: {
  9740. height: math.unit(6, "feet"),
  9741. weight: math.unit(3, "kg"),
  9742. name: "Front",
  9743. image: {
  9744. source: "./media/characters/ine/front.svg",
  9745. extra: 678 / 539,
  9746. bottom: 0.023
  9747. }
  9748. },
  9749. },
  9750. [
  9751. {
  9752. name: "Normal",
  9753. height: math.unit(2.265, "feet"),
  9754. default: true
  9755. },
  9756. ]
  9757. ))
  9758. characterMakers.push(() => makeCharacter(
  9759. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9760. {
  9761. front: {
  9762. height: math.unit(5, "feet"),
  9763. weight: math.unit(30, "kg"),
  9764. name: "Front",
  9765. image: {
  9766. source: "./media/characters/vial/front.svg",
  9767. extra: 1365 / 1277,
  9768. bottom: 0.04
  9769. }
  9770. },
  9771. },
  9772. [
  9773. {
  9774. name: "Normal",
  9775. height: math.unit(5, "feet"),
  9776. default: true
  9777. },
  9778. ]
  9779. ))
  9780. characterMakers.push(() => makeCharacter(
  9781. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9782. {
  9783. side: {
  9784. height: math.unit(3.4, "meters"),
  9785. weight: math.unit(1000, "lb"),
  9786. name: "Side",
  9787. image: {
  9788. source: "./media/characters/rovoska/side.svg",
  9789. extra: 4403 / 1515
  9790. }
  9791. },
  9792. },
  9793. [
  9794. {
  9795. name: "Normal",
  9796. height: math.unit(3.4, "meters"),
  9797. default: true
  9798. },
  9799. ]
  9800. ))
  9801. characterMakers.push(() => makeCharacter(
  9802. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9803. {
  9804. front: {
  9805. height: math.unit(8, "feet"),
  9806. weight: math.unit(315, "lb"),
  9807. name: "Front",
  9808. image: {
  9809. source: "./media/characters/gunner-rotthbauer/front.svg"
  9810. }
  9811. },
  9812. back: {
  9813. height: math.unit(8, "feet"),
  9814. weight: math.unit(315, "lb"),
  9815. name: "Back",
  9816. image: {
  9817. source: "./media/characters/gunner-rotthbauer/back.svg"
  9818. }
  9819. },
  9820. },
  9821. [
  9822. {
  9823. name: "Micro",
  9824. height: math.unit(3.5, "inches")
  9825. },
  9826. {
  9827. name: "Normal",
  9828. height: math.unit(8, "feet"),
  9829. default: true
  9830. },
  9831. {
  9832. name: "Macro",
  9833. height: math.unit(250, "feet")
  9834. },
  9835. {
  9836. name: "Megamacro",
  9837. height: math.unit(1, "AU")
  9838. },
  9839. ]
  9840. ))
  9841. characterMakers.push(() => makeCharacter(
  9842. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9843. {
  9844. front: {
  9845. height: math.unit(5 + 5 / 12, "feet"),
  9846. weight: math.unit(140, "lb"),
  9847. name: "Front",
  9848. image: {
  9849. source: "./media/characters/allatia/front.svg",
  9850. extra: 1227 / 1180,
  9851. bottom: 0.027
  9852. }
  9853. },
  9854. },
  9855. [
  9856. {
  9857. name: "Normal",
  9858. height: math.unit(5 + 5 / 12, "feet")
  9859. },
  9860. {
  9861. name: "Macro",
  9862. height: math.unit(250, "feet"),
  9863. default: true
  9864. },
  9865. {
  9866. name: "Megamacro",
  9867. height: math.unit(8, "miles")
  9868. }
  9869. ]
  9870. ))
  9871. characterMakers.push(() => makeCharacter(
  9872. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9873. {
  9874. front: {
  9875. height: math.unit(6, "feet"),
  9876. weight: math.unit(120, "lb"),
  9877. name: "Front",
  9878. image: {
  9879. source: "./media/characters/tene/front.svg",
  9880. extra: 1728 / 1578,
  9881. bottom: 0.022
  9882. }
  9883. },
  9884. stomping: {
  9885. height: math.unit(2.025, "meters"),
  9886. weight: math.unit(120, "lb"),
  9887. name: "Stomping",
  9888. image: {
  9889. source: "./media/characters/tene/stomping.svg",
  9890. extra: 938 / 873,
  9891. bottom: 0.01
  9892. }
  9893. },
  9894. sitting: {
  9895. height: math.unit(1, "meter"),
  9896. weight: math.unit(120, "lb"),
  9897. name: "Sitting",
  9898. image: {
  9899. source: "./media/characters/tene/sitting.svg",
  9900. extra: 437 / 415,
  9901. bottom: 0.1
  9902. }
  9903. },
  9904. feral: {
  9905. height: math.unit(3.9, "feet"),
  9906. weight: math.unit(250, "lb"),
  9907. name: "Feral",
  9908. image: {
  9909. source: "./media/characters/tene/feral.svg",
  9910. extra: 717 / 458,
  9911. bottom: 0.179
  9912. }
  9913. },
  9914. },
  9915. [
  9916. {
  9917. name: "Normal",
  9918. height: math.unit(6, "feet")
  9919. },
  9920. {
  9921. name: "Macro",
  9922. height: math.unit(300, "feet"),
  9923. default: true
  9924. },
  9925. {
  9926. name: "Megamacro",
  9927. height: math.unit(5, "miles")
  9928. },
  9929. ]
  9930. ))
  9931. characterMakers.push(() => makeCharacter(
  9932. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9933. {
  9934. side: {
  9935. height: math.unit(6, "feet"),
  9936. name: "Side",
  9937. image: {
  9938. source: "./media/characters/evander/side.svg",
  9939. extra: 877 / 477
  9940. }
  9941. },
  9942. },
  9943. [
  9944. {
  9945. name: "Normal",
  9946. height: math.unit(0.83, "meters"),
  9947. default: true
  9948. },
  9949. ]
  9950. ))
  9951. characterMakers.push(() => makeCharacter(
  9952. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9953. {
  9954. front: {
  9955. height: math.unit(12, "feet"),
  9956. weight: math.unit(1000, "lb"),
  9957. name: "Front",
  9958. image: {
  9959. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9960. extra: 1762 / 1611
  9961. }
  9962. },
  9963. back: {
  9964. height: math.unit(12, "feet"),
  9965. weight: math.unit(1000, "lb"),
  9966. name: "Back",
  9967. image: {
  9968. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9969. extra: 1762 / 1611
  9970. }
  9971. },
  9972. },
  9973. [
  9974. {
  9975. name: "Normal",
  9976. height: math.unit(12, "feet"),
  9977. default: true
  9978. },
  9979. {
  9980. name: "Kaiju",
  9981. height: math.unit(150, "feet")
  9982. },
  9983. ]
  9984. ))
  9985. characterMakers.push(() => makeCharacter(
  9986. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9987. {
  9988. front: {
  9989. height: math.unit(6, "feet"),
  9990. weight: math.unit(150, "lb"),
  9991. name: "Front",
  9992. image: {
  9993. source: "./media/characters/zero-alurus/front.svg"
  9994. }
  9995. },
  9996. back: {
  9997. height: math.unit(6, "feet"),
  9998. weight: math.unit(150, "lb"),
  9999. name: "Back",
  10000. image: {
  10001. source: "./media/characters/zero-alurus/back.svg"
  10002. }
  10003. },
  10004. },
  10005. [
  10006. {
  10007. name: "Normal",
  10008. height: math.unit(5 + 10 / 12, "feet")
  10009. },
  10010. {
  10011. name: "Macro",
  10012. height: math.unit(60, "feet"),
  10013. default: true
  10014. },
  10015. {
  10016. name: "Macro+",
  10017. height: math.unit(450, "feet")
  10018. },
  10019. ]
  10020. ))
  10021. characterMakers.push(() => makeCharacter(
  10022. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10023. {
  10024. front: {
  10025. height: math.unit(6, "feet"),
  10026. weight: math.unit(200, "lb"),
  10027. name: "Front",
  10028. image: {
  10029. source: "./media/characters/mega-shi/front.svg",
  10030. extra: 1279 / 1250,
  10031. bottom: 0.02
  10032. }
  10033. },
  10034. back: {
  10035. height: math.unit(6, "feet"),
  10036. weight: math.unit(200, "lb"),
  10037. name: "Back",
  10038. image: {
  10039. source: "./media/characters/mega-shi/back.svg",
  10040. extra: 1279 / 1250,
  10041. bottom: 0.02
  10042. }
  10043. },
  10044. },
  10045. [
  10046. {
  10047. name: "Micro",
  10048. height: math.unit(16 + 6 / 12, "feet")
  10049. },
  10050. {
  10051. name: "Third Dimension",
  10052. height: math.unit(40, "meters")
  10053. },
  10054. {
  10055. name: "Normal",
  10056. height: math.unit(660, "feet"),
  10057. default: true
  10058. },
  10059. {
  10060. name: "Megamacro",
  10061. height: math.unit(10, "miles")
  10062. },
  10063. {
  10064. name: "Planetary Launch",
  10065. height: math.unit(500, "miles")
  10066. },
  10067. {
  10068. name: "Interstellar",
  10069. height: math.unit(1e9, "miles")
  10070. },
  10071. {
  10072. name: "Leaving the Universe",
  10073. height: math.unit(1, "gigaparsec")
  10074. },
  10075. {
  10076. name: "Travelling Universes",
  10077. height: math.unit(30e15, "parsecs")
  10078. },
  10079. ]
  10080. ))
  10081. characterMakers.push(() => makeCharacter(
  10082. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10083. {
  10084. front: {
  10085. height: math.unit(6, "feet"),
  10086. weight: math.unit(150, "lb"),
  10087. name: "Front",
  10088. image: {
  10089. source: "./media/characters/odyssey/front.svg",
  10090. extra: 1782 / 1582,
  10091. bottom: 0.01
  10092. }
  10093. },
  10094. side: {
  10095. height: math.unit(5.7, "feet"),
  10096. weight: math.unit(140, "lb"),
  10097. name: "Side",
  10098. image: {
  10099. source: "./media/characters/odyssey/side.svg",
  10100. extra: 6462 / 5700
  10101. }
  10102. },
  10103. },
  10104. [
  10105. {
  10106. name: "Normal",
  10107. height: math.unit(5 + 4 / 12, "feet")
  10108. },
  10109. {
  10110. name: "Macro",
  10111. height: math.unit(1, "km")
  10112. },
  10113. {
  10114. name: "Megamacro",
  10115. height: math.unit(3000, "km")
  10116. },
  10117. {
  10118. name: "Gigamacro",
  10119. height: math.unit(1, "AU"),
  10120. default: true
  10121. },
  10122. {
  10123. name: "Omniversal",
  10124. height: math.unit(100e14, "lightyears")
  10125. },
  10126. ]
  10127. ))
  10128. characterMakers.push(() => makeCharacter(
  10129. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10130. {
  10131. front: {
  10132. height: math.unit(6, "feet"),
  10133. weight: math.unit(300, "lb"),
  10134. name: "Front",
  10135. image: {
  10136. source: "./media/characters/mekuto/front.svg",
  10137. extra: 921 / 832,
  10138. bottom: 0.03
  10139. }
  10140. },
  10141. hand: {
  10142. height: math.unit(6 / 10.24, "feet"),
  10143. name: "Hand",
  10144. image: {
  10145. source: "./media/characters/mekuto/hand.svg"
  10146. }
  10147. },
  10148. foot: {
  10149. height: math.unit(6 / 5.05, "feet"),
  10150. name: "Foot",
  10151. image: {
  10152. source: "./media/characters/mekuto/foot.svg"
  10153. }
  10154. },
  10155. },
  10156. [
  10157. {
  10158. name: "Minimicro",
  10159. height: math.unit(0.2, "inches")
  10160. },
  10161. {
  10162. name: "Micro",
  10163. height: math.unit(1.5, "inches")
  10164. },
  10165. {
  10166. name: "Normal",
  10167. height: math.unit(5 + 11 / 12, "feet"),
  10168. default: true
  10169. },
  10170. {
  10171. name: "Minimacro",
  10172. height: math.unit(17 + 9 / 12, "feet")
  10173. },
  10174. {
  10175. name: "Macro",
  10176. height: math.unit(177.5, "feet")
  10177. },
  10178. {
  10179. name: "Megamacro",
  10180. height: math.unit(152, "miles")
  10181. },
  10182. ]
  10183. ))
  10184. characterMakers.push(() => makeCharacter(
  10185. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10186. {
  10187. front: {
  10188. height: math.unit(6.5, "inches"),
  10189. weight: math.unit(13, "oz"),
  10190. name: "Front",
  10191. image: {
  10192. source: "./media/characters/dafydd-tomos/front.svg",
  10193. extra: 2990 / 2603,
  10194. bottom: 0.03
  10195. }
  10196. },
  10197. },
  10198. [
  10199. {
  10200. name: "Micro",
  10201. height: math.unit(6.5, "inches"),
  10202. default: true
  10203. },
  10204. ]
  10205. ))
  10206. characterMakers.push(() => makeCharacter(
  10207. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10208. {
  10209. front: {
  10210. height: math.unit(6, "feet"),
  10211. weight: math.unit(150, "lb"),
  10212. name: "Front",
  10213. image: {
  10214. source: "./media/characters/splinter/front.svg",
  10215. extra: 2990 / 2882,
  10216. bottom: 0.04
  10217. }
  10218. },
  10219. back: {
  10220. height: math.unit(6, "feet"),
  10221. weight: math.unit(150, "lb"),
  10222. name: "Back",
  10223. image: {
  10224. source: "./media/characters/splinter/back.svg",
  10225. extra: 2990 / 2882,
  10226. bottom: 0.04
  10227. }
  10228. },
  10229. },
  10230. [
  10231. {
  10232. name: "Normal",
  10233. height: math.unit(6, "feet")
  10234. },
  10235. {
  10236. name: "Macro",
  10237. height: math.unit(230, "meters"),
  10238. default: true
  10239. },
  10240. ]
  10241. ))
  10242. characterMakers.push(() => makeCharacter(
  10243. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10244. {
  10245. front: {
  10246. height: math.unit(4 + 10 / 12, "feet"),
  10247. weight: math.unit(480, "lb"),
  10248. name: "Front",
  10249. image: {
  10250. source: "./media/characters/snow-gabumon/front.svg",
  10251. extra: 1140 / 963,
  10252. bottom: 0.058
  10253. }
  10254. },
  10255. back: {
  10256. height: math.unit(4 + 10 / 12, "feet"),
  10257. weight: math.unit(480, "lb"),
  10258. name: "Back",
  10259. image: {
  10260. source: "./media/characters/snow-gabumon/back.svg",
  10261. extra: 1115 / 962,
  10262. bottom: 0.041
  10263. }
  10264. },
  10265. frontUndresed: {
  10266. height: math.unit(4 + 10 / 12, "feet"),
  10267. weight: math.unit(480, "lb"),
  10268. name: "Front (Undressed)",
  10269. image: {
  10270. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10271. extra: 1061 / 960,
  10272. bottom: 0.045
  10273. }
  10274. },
  10275. },
  10276. [
  10277. {
  10278. name: "Micro",
  10279. height: math.unit(1, "inch")
  10280. },
  10281. {
  10282. name: "Normal",
  10283. height: math.unit(4 + 10 / 12, "feet"),
  10284. default: true
  10285. },
  10286. {
  10287. name: "Macro",
  10288. height: math.unit(200, "feet")
  10289. },
  10290. {
  10291. name: "Megamacro",
  10292. height: math.unit(120, "miles")
  10293. },
  10294. {
  10295. name: "Gigamacro",
  10296. height: math.unit(9800, "miles")
  10297. },
  10298. ]
  10299. ))
  10300. characterMakers.push(() => makeCharacter(
  10301. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10302. {
  10303. front: {
  10304. height: math.unit(1.7, "meters"),
  10305. weight: math.unit(140, "lb"),
  10306. name: "Front",
  10307. image: {
  10308. source: "./media/characters/moody/front.svg",
  10309. extra: 3226 / 3007,
  10310. bottom: 0.087
  10311. }
  10312. },
  10313. },
  10314. [
  10315. {
  10316. name: "Micro",
  10317. height: math.unit(1, "mm")
  10318. },
  10319. {
  10320. name: "Normal",
  10321. height: math.unit(1.7, "meters"),
  10322. default: true
  10323. },
  10324. {
  10325. name: "Macro",
  10326. height: math.unit(80, "meters")
  10327. },
  10328. {
  10329. name: "Macro+",
  10330. height: math.unit(500, "meters")
  10331. },
  10332. ]
  10333. ))
  10334. characterMakers.push(() => makeCharacter(
  10335. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10336. {
  10337. front: {
  10338. height: math.unit(6, "feet"),
  10339. weight: math.unit(150, "lb"),
  10340. name: "Front",
  10341. image: {
  10342. source: "./media/characters/zyas/front.svg",
  10343. extra: 1180 / 1120,
  10344. bottom: 0.045
  10345. }
  10346. },
  10347. },
  10348. [
  10349. {
  10350. name: "Normal",
  10351. height: math.unit(10, "feet"),
  10352. default: true
  10353. },
  10354. {
  10355. name: "Macro",
  10356. height: math.unit(500, "feet")
  10357. },
  10358. {
  10359. name: "Megamacro",
  10360. height: math.unit(5, "miles")
  10361. },
  10362. {
  10363. name: "Teramacro",
  10364. height: math.unit(150000, "miles")
  10365. },
  10366. ]
  10367. ))
  10368. characterMakers.push(() => makeCharacter(
  10369. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10370. {
  10371. front: {
  10372. height: math.unit(6, "feet"),
  10373. weight: math.unit(150, "lb"),
  10374. name: "Front",
  10375. image: {
  10376. source: "./media/characters/cuon/front.svg",
  10377. extra: 1390 / 1320,
  10378. bottom: 0.008
  10379. }
  10380. },
  10381. },
  10382. [
  10383. {
  10384. name: "Micro",
  10385. height: math.unit(3, "inches")
  10386. },
  10387. {
  10388. name: "Normal",
  10389. height: math.unit(18 + 9 / 12, "feet"),
  10390. default: true
  10391. },
  10392. {
  10393. name: "Macro",
  10394. height: math.unit(360, "feet")
  10395. },
  10396. {
  10397. name: "Megamacro",
  10398. height: math.unit(360, "miles")
  10399. },
  10400. ]
  10401. ))
  10402. characterMakers.push(() => makeCharacter(
  10403. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10404. {
  10405. front: {
  10406. height: math.unit(2.4, "meters"),
  10407. weight: math.unit(70, "kg"),
  10408. name: "Front",
  10409. image: {
  10410. source: "./media/characters/nyanuxk/front.svg",
  10411. extra: 1172 / 1084,
  10412. bottom: 0.065
  10413. }
  10414. },
  10415. side: {
  10416. height: math.unit(2.4, "meters"),
  10417. weight: math.unit(70, "kg"),
  10418. name: "Side",
  10419. image: {
  10420. source: "./media/characters/nyanuxk/side.svg",
  10421. extra: 1190 / 1132,
  10422. bottom: 0.007
  10423. }
  10424. },
  10425. back: {
  10426. height: math.unit(2.4, "meters"),
  10427. weight: math.unit(70, "kg"),
  10428. name: "Back",
  10429. image: {
  10430. source: "./media/characters/nyanuxk/back.svg",
  10431. extra: 1200 / 1141,
  10432. bottom: 0.015
  10433. }
  10434. },
  10435. foot: {
  10436. height: math.unit(0.52, "meters"),
  10437. name: "Foot",
  10438. image: {
  10439. source: "./media/characters/nyanuxk/foot.svg"
  10440. }
  10441. },
  10442. },
  10443. [
  10444. {
  10445. name: "Micro",
  10446. height: math.unit(2, "cm")
  10447. },
  10448. {
  10449. name: "Normal",
  10450. height: math.unit(2.4, "meters"),
  10451. default: true
  10452. },
  10453. {
  10454. name: "Smaller Macro",
  10455. height: math.unit(120, "meters")
  10456. },
  10457. {
  10458. name: "Bigger Macro",
  10459. height: math.unit(1.2, "km")
  10460. },
  10461. {
  10462. name: "Megamacro",
  10463. height: math.unit(15, "kilometers")
  10464. },
  10465. {
  10466. name: "Gigamacro",
  10467. height: math.unit(2000, "km")
  10468. },
  10469. {
  10470. name: "Teramacro",
  10471. height: math.unit(500000, "km")
  10472. },
  10473. ]
  10474. ))
  10475. characterMakers.push(() => makeCharacter(
  10476. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10477. {
  10478. side: {
  10479. height: math.unit(6, "feet"),
  10480. name: "Side",
  10481. image: {
  10482. source: "./media/characters/ailbhe/side.svg",
  10483. extra: 757 / 464,
  10484. bottom: 0.041
  10485. }
  10486. },
  10487. },
  10488. [
  10489. {
  10490. name: "Normal",
  10491. height: math.unit(1.07, "meters"),
  10492. default: true
  10493. },
  10494. ]
  10495. ))
  10496. characterMakers.push(() => makeCharacter(
  10497. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10498. {
  10499. front: {
  10500. height: math.unit(6, "feet"),
  10501. weight: math.unit(120, "kg"),
  10502. name: "Front",
  10503. image: {
  10504. source: "./media/characters/zevulfius/front.svg",
  10505. extra: 965 / 903
  10506. }
  10507. },
  10508. side: {
  10509. height: math.unit(6, "feet"),
  10510. weight: math.unit(120, "kg"),
  10511. name: "Side",
  10512. image: {
  10513. source: "./media/characters/zevulfius/side.svg",
  10514. extra: 939 / 900
  10515. }
  10516. },
  10517. back: {
  10518. height: math.unit(6, "feet"),
  10519. weight: math.unit(120, "kg"),
  10520. name: "Back",
  10521. image: {
  10522. source: "./media/characters/zevulfius/back.svg",
  10523. extra: 918 / 854,
  10524. bottom: 0.005
  10525. }
  10526. },
  10527. foot: {
  10528. height: math.unit(6 / 3.72, "feet"),
  10529. name: "Foot",
  10530. image: {
  10531. source: "./media/characters/zevulfius/foot.svg"
  10532. }
  10533. },
  10534. },
  10535. [
  10536. {
  10537. name: "Macro",
  10538. height: math.unit(750, "meters")
  10539. },
  10540. {
  10541. name: "Megamacro",
  10542. height: math.unit(20, "km"),
  10543. default: true
  10544. },
  10545. {
  10546. name: "Gigamacro",
  10547. height: math.unit(2000, "km")
  10548. },
  10549. {
  10550. name: "Teramacro",
  10551. height: math.unit(250000, "km")
  10552. },
  10553. ]
  10554. ))
  10555. characterMakers.push(() => makeCharacter(
  10556. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10557. {
  10558. front: {
  10559. height: math.unit(100, "feet"),
  10560. weight: math.unit(350, "kg"),
  10561. name: "Front",
  10562. image: {
  10563. source: "./media/characters/rikes/front.svg",
  10564. extra: 1565 / 1483,
  10565. bottom: 0.017
  10566. }
  10567. },
  10568. },
  10569. [
  10570. {
  10571. name: "Macro",
  10572. height: math.unit(100, "feet"),
  10573. default: true
  10574. },
  10575. ]
  10576. ))
  10577. characterMakers.push(() => makeCharacter(
  10578. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10579. {
  10580. front: {
  10581. height: math.unit(8, "feet"),
  10582. weight: math.unit(356, "lb"),
  10583. name: "Front",
  10584. image: {
  10585. source: "./media/characters/adam-silver-mane/front.svg",
  10586. extra: 1036/937,
  10587. bottom: 63/1099
  10588. }
  10589. },
  10590. side: {
  10591. height: math.unit(8, "feet"),
  10592. weight: math.unit(356, "lb"),
  10593. name: "Side",
  10594. image: {
  10595. source: "./media/characters/adam-silver-mane/side.svg",
  10596. extra: 997/901,
  10597. bottom: 59/1056
  10598. }
  10599. },
  10600. frontNsfw: {
  10601. height: math.unit(8, "feet"),
  10602. weight: math.unit(356, "lb"),
  10603. name: "Front (NSFW)",
  10604. image: {
  10605. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10606. extra: 1036/937,
  10607. bottom: 63/1099
  10608. }
  10609. },
  10610. sideNsfw: {
  10611. height: math.unit(8, "feet"),
  10612. weight: math.unit(356, "lb"),
  10613. name: "Side (NSFW)",
  10614. image: {
  10615. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10616. extra: 997/901,
  10617. bottom: 59/1056
  10618. }
  10619. },
  10620. dick: {
  10621. height: math.unit(2.1, "feet"),
  10622. name: "Dick",
  10623. image: {
  10624. source: "./media/characters/adam-silver-mane/dick.svg"
  10625. }
  10626. },
  10627. taur: {
  10628. height: math.unit(16, "feet"),
  10629. weight: math.unit(1500, "kg"),
  10630. name: "Taur",
  10631. image: {
  10632. source: "./media/characters/adam-silver-mane/taur.svg",
  10633. extra: 1713 / 1571,
  10634. bottom: 0.01
  10635. }
  10636. },
  10637. },
  10638. [
  10639. {
  10640. name: "Normal",
  10641. height: math.unit(8, "feet")
  10642. },
  10643. {
  10644. name: "Minimacro",
  10645. height: math.unit(80, "feet")
  10646. },
  10647. {
  10648. name: "MDA",
  10649. height: math.unit(80, "meters")
  10650. },
  10651. {
  10652. name: "Macro",
  10653. height: math.unit(800, "feet"),
  10654. default: true
  10655. },
  10656. {
  10657. name: "Megamacro",
  10658. height: math.unit(8000, "feet")
  10659. },
  10660. {
  10661. name: "Gigamacro",
  10662. height: math.unit(800, "miles")
  10663. },
  10664. {
  10665. name: "Teramacro",
  10666. height: math.unit(80000, "miles")
  10667. },
  10668. {
  10669. name: "Celestial",
  10670. height: math.unit(8e6, "miles")
  10671. },
  10672. {
  10673. name: "Star Dragon",
  10674. height: math.unit(800000, "parsecs")
  10675. },
  10676. {
  10677. name: "Godly",
  10678. height: math.unit(800, "teraparsecs")
  10679. },
  10680. ]
  10681. ))
  10682. characterMakers.push(() => makeCharacter(
  10683. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10684. {
  10685. front: {
  10686. height: math.unit(6, "feet"),
  10687. weight: math.unit(150, "lb"),
  10688. name: "Front",
  10689. image: {
  10690. source: "./media/characters/ky'owin/front.svg",
  10691. extra: 3888 / 3068,
  10692. bottom: 0.015
  10693. }
  10694. },
  10695. },
  10696. [
  10697. {
  10698. name: "Normal",
  10699. height: math.unit(6 + 8 / 12, "feet")
  10700. },
  10701. {
  10702. name: "Large",
  10703. height: math.unit(68, "feet")
  10704. },
  10705. {
  10706. name: "Macro",
  10707. height: math.unit(132, "feet")
  10708. },
  10709. {
  10710. name: "Macro+",
  10711. height: math.unit(340, "feet")
  10712. },
  10713. {
  10714. name: "Macro++",
  10715. height: math.unit(680, "feet"),
  10716. default: true
  10717. },
  10718. {
  10719. name: "Megamacro",
  10720. height: math.unit(1, "mile")
  10721. },
  10722. {
  10723. name: "Megamacro+",
  10724. height: math.unit(10, "miles")
  10725. },
  10726. ]
  10727. ))
  10728. characterMakers.push(() => makeCharacter(
  10729. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10730. {
  10731. front: {
  10732. height: math.unit(4, "feet"),
  10733. weight: math.unit(50, "lb"),
  10734. name: "Front",
  10735. image: {
  10736. source: "./media/characters/mal/front.svg",
  10737. extra: 785 / 724,
  10738. bottom: 0.07
  10739. }
  10740. },
  10741. },
  10742. [
  10743. {
  10744. name: "Micro",
  10745. height: math.unit(4, "inches")
  10746. },
  10747. {
  10748. name: "Normal",
  10749. height: math.unit(4, "feet"),
  10750. default: true
  10751. },
  10752. {
  10753. name: "Macro",
  10754. height: math.unit(200, "feet")
  10755. },
  10756. ]
  10757. ))
  10758. characterMakers.push(() => makeCharacter(
  10759. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10760. {
  10761. front: {
  10762. height: math.unit(6, "feet"),
  10763. weight: math.unit(150, "lb"),
  10764. name: "Front",
  10765. image: {
  10766. source: "./media/characters/jordan-deware/front.svg",
  10767. extra: 1191 / 1012
  10768. }
  10769. },
  10770. },
  10771. [
  10772. {
  10773. name: "Nano",
  10774. height: math.unit(0.01, "mm")
  10775. },
  10776. {
  10777. name: "Minimicro",
  10778. height: math.unit(1, "mm")
  10779. },
  10780. {
  10781. name: "Micro",
  10782. height: math.unit(0.5, "inches")
  10783. },
  10784. {
  10785. name: "Normal",
  10786. height: math.unit(4, "feet"),
  10787. default: true
  10788. },
  10789. {
  10790. name: "Minimacro",
  10791. height: math.unit(40, "meters")
  10792. },
  10793. {
  10794. name: "Small Macro",
  10795. height: math.unit(400, "meters")
  10796. },
  10797. {
  10798. name: "Macro",
  10799. height: math.unit(4, "miles")
  10800. },
  10801. {
  10802. name: "Megamacro",
  10803. height: math.unit(40, "miles")
  10804. },
  10805. {
  10806. name: "Megamacro+",
  10807. height: math.unit(400, "miles")
  10808. },
  10809. {
  10810. name: "Gigamacro",
  10811. height: math.unit(400000, "miles")
  10812. },
  10813. ]
  10814. ))
  10815. characterMakers.push(() => makeCharacter(
  10816. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10817. {
  10818. side: {
  10819. height: math.unit(6, "feet"),
  10820. weight: math.unit(150, "lb"),
  10821. name: "Side",
  10822. image: {
  10823. source: "./media/characters/kimiko/side.svg",
  10824. extra: 600 / 358
  10825. }
  10826. },
  10827. },
  10828. [
  10829. {
  10830. name: "Normal",
  10831. height: math.unit(15, "feet"),
  10832. default: true
  10833. },
  10834. {
  10835. name: "Macro",
  10836. height: math.unit(220, "feet")
  10837. },
  10838. {
  10839. name: "Macro+",
  10840. height: math.unit(1450, "feet")
  10841. },
  10842. {
  10843. name: "Megamacro",
  10844. height: math.unit(11500, "feet")
  10845. },
  10846. {
  10847. name: "Gigamacro",
  10848. height: math.unit(9500, "miles")
  10849. },
  10850. {
  10851. name: "Teramacro",
  10852. height: math.unit(2208005005, "miles")
  10853. },
  10854. {
  10855. name: "Examacro",
  10856. height: math.unit(2750, "parsecs")
  10857. },
  10858. {
  10859. name: "Zettamacro",
  10860. height: math.unit(101500, "parsecs")
  10861. },
  10862. ]
  10863. ))
  10864. characterMakers.push(() => makeCharacter(
  10865. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10866. {
  10867. front: {
  10868. height: math.unit(6, "feet"),
  10869. weight: math.unit(70, "kg"),
  10870. name: "Front",
  10871. image: {
  10872. source: "./media/characters/andrew-sleepy/front.svg"
  10873. }
  10874. },
  10875. side: {
  10876. height: math.unit(6, "feet"),
  10877. weight: math.unit(70, "kg"),
  10878. name: "Side",
  10879. image: {
  10880. source: "./media/characters/andrew-sleepy/side.svg"
  10881. }
  10882. },
  10883. },
  10884. [
  10885. {
  10886. name: "Micro",
  10887. height: math.unit(1, "mm"),
  10888. default: true
  10889. },
  10890. ]
  10891. ))
  10892. characterMakers.push(() => makeCharacter(
  10893. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10894. {
  10895. front: {
  10896. height: math.unit(6, "feet"),
  10897. weight: math.unit(150, "lb"),
  10898. name: "Front",
  10899. image: {
  10900. source: "./media/characters/judio/front.svg",
  10901. extra: 1258 / 1110
  10902. }
  10903. },
  10904. },
  10905. [
  10906. {
  10907. name: "Normal",
  10908. height: math.unit(5 + 6 / 12, "feet")
  10909. },
  10910. {
  10911. name: "Macro",
  10912. height: math.unit(1000, "feet"),
  10913. default: true
  10914. },
  10915. {
  10916. name: "Megamacro",
  10917. height: math.unit(10, "miles")
  10918. },
  10919. ]
  10920. ))
  10921. characterMakers.push(() => makeCharacter(
  10922. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10923. {
  10924. front: {
  10925. height: math.unit(6, "feet"),
  10926. weight: math.unit(68, "kg"),
  10927. name: "Front",
  10928. image: {
  10929. source: "./media/characters/nomaxice/front.svg",
  10930. extra: 1498 / 1073,
  10931. bottom: 0.075
  10932. }
  10933. },
  10934. foot: {
  10935. height: math.unit(1.1, "feet"),
  10936. name: "Foot",
  10937. image: {
  10938. source: "./media/characters/nomaxice/foot.svg"
  10939. }
  10940. },
  10941. },
  10942. [
  10943. {
  10944. name: "Micro",
  10945. height: math.unit(8, "cm")
  10946. },
  10947. {
  10948. name: "Norm",
  10949. height: math.unit(1.82, "m")
  10950. },
  10951. {
  10952. name: "Norm+",
  10953. height: math.unit(8.8, "feet")
  10954. },
  10955. {
  10956. name: "Big",
  10957. height: math.unit(8, "meters"),
  10958. default: true
  10959. },
  10960. {
  10961. name: "Macro",
  10962. height: math.unit(18, "meters")
  10963. },
  10964. {
  10965. name: "Macro+",
  10966. height: math.unit(88, "meters")
  10967. },
  10968. ]
  10969. ))
  10970. characterMakers.push(() => makeCharacter(
  10971. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10972. {
  10973. front: {
  10974. height: math.unit(12, "feet"),
  10975. weight: math.unit(1.5, "tons"),
  10976. name: "Front",
  10977. image: {
  10978. source: "./media/characters/dydros/front.svg",
  10979. extra: 863 / 800,
  10980. bottom: 0.015
  10981. }
  10982. },
  10983. back: {
  10984. height: math.unit(12, "feet"),
  10985. weight: math.unit(1.5, "tons"),
  10986. name: "Back",
  10987. image: {
  10988. source: "./media/characters/dydros/back.svg",
  10989. extra: 900 / 843,
  10990. bottom: 0.005
  10991. }
  10992. },
  10993. },
  10994. [
  10995. {
  10996. name: "Normal",
  10997. height: math.unit(12, "feet"),
  10998. default: true
  10999. },
  11000. ]
  11001. ))
  11002. characterMakers.push(() => makeCharacter(
  11003. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11004. {
  11005. front: {
  11006. height: math.unit(6, "feet"),
  11007. weight: math.unit(100, "kg"),
  11008. name: "Front",
  11009. image: {
  11010. source: "./media/characters/riggi/front.svg",
  11011. extra: 5787 / 5303
  11012. }
  11013. },
  11014. hyper: {
  11015. height: math.unit(6 * 5 / 3, "feet"),
  11016. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11017. name: "Hyper",
  11018. image: {
  11019. source: "./media/characters/riggi/hyper.svg",
  11020. extra: 3595 / 3485
  11021. }
  11022. },
  11023. },
  11024. [
  11025. {
  11026. name: "Small Macro",
  11027. height: math.unit(50, "feet")
  11028. },
  11029. {
  11030. name: "Default",
  11031. height: math.unit(200, "feet"),
  11032. default: true
  11033. },
  11034. {
  11035. name: "Loom",
  11036. height: math.unit(10000, "feet")
  11037. },
  11038. {
  11039. name: "Cruising Altitude",
  11040. height: math.unit(30000, "feet")
  11041. },
  11042. {
  11043. name: "Megamacro",
  11044. height: math.unit(100, "miles")
  11045. },
  11046. {
  11047. name: "Continent Sized",
  11048. height: math.unit(2800, "miles")
  11049. },
  11050. {
  11051. name: "Earth Sized",
  11052. height: math.unit(8000, "miles")
  11053. },
  11054. ]
  11055. ))
  11056. characterMakers.push(() => makeCharacter(
  11057. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11058. {
  11059. front: {
  11060. height: math.unit(6, "feet"),
  11061. weight: math.unit(250, "lb"),
  11062. name: "Front",
  11063. image: {
  11064. source: "./media/characters/alexi/front.svg",
  11065. extra: 3483 / 3291,
  11066. bottom: 0.04
  11067. }
  11068. },
  11069. back: {
  11070. height: math.unit(6, "feet"),
  11071. weight: math.unit(250, "lb"),
  11072. name: "Back",
  11073. image: {
  11074. source: "./media/characters/alexi/back.svg",
  11075. extra: 3533 / 3356,
  11076. bottom: 0.021
  11077. }
  11078. },
  11079. frontTransforming: {
  11080. height: math.unit(8.58, "feet"),
  11081. weight: math.unit(1300, "lb"),
  11082. name: "Transforming",
  11083. image: {
  11084. source: "./media/characters/alexi/front-transforming.svg",
  11085. extra: 437 / 409,
  11086. bottom: 19 / 458.66
  11087. }
  11088. },
  11089. frontTransformed: {
  11090. height: math.unit(12.5, "feet"),
  11091. weight: math.unit(4000, "lb"),
  11092. name: "Transformed",
  11093. image: {
  11094. source: "./media/characters/alexi/front-transformed.svg",
  11095. extra: 639 / 614,
  11096. bottom: 30.55 / 671
  11097. }
  11098. },
  11099. },
  11100. [
  11101. {
  11102. name: "Normal",
  11103. height: math.unit(14, "feet"),
  11104. default: true
  11105. },
  11106. {
  11107. name: "Minimacro",
  11108. height: math.unit(30, "meters")
  11109. },
  11110. {
  11111. name: "Macro",
  11112. height: math.unit(500, "meters")
  11113. },
  11114. {
  11115. name: "Megamacro",
  11116. height: math.unit(9000, "km")
  11117. },
  11118. {
  11119. name: "Teramacro",
  11120. height: math.unit(384000, "km")
  11121. },
  11122. ]
  11123. ))
  11124. characterMakers.push(() => makeCharacter(
  11125. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11126. {
  11127. front: {
  11128. height: math.unit(6, "feet"),
  11129. weight: math.unit(150, "lb"),
  11130. name: "Front",
  11131. image: {
  11132. source: "./media/characters/kayroo/front.svg",
  11133. extra: 1153 / 1038,
  11134. bottom: 0.06
  11135. }
  11136. },
  11137. foot: {
  11138. height: math.unit(6, "feet"),
  11139. weight: math.unit(150, "lb"),
  11140. name: "Foot",
  11141. image: {
  11142. source: "./media/characters/kayroo/foot.svg"
  11143. }
  11144. },
  11145. },
  11146. [
  11147. {
  11148. name: "Normal",
  11149. height: math.unit(8, "feet"),
  11150. default: true
  11151. },
  11152. {
  11153. name: "Minimacro",
  11154. height: math.unit(250, "feet")
  11155. },
  11156. {
  11157. name: "Macro",
  11158. height: math.unit(2800, "feet")
  11159. },
  11160. {
  11161. name: "Megamacro",
  11162. height: math.unit(5200, "feet")
  11163. },
  11164. {
  11165. name: "Gigamacro",
  11166. height: math.unit(27000, "feet")
  11167. },
  11168. {
  11169. name: "Omega",
  11170. height: math.unit(45000, "feet")
  11171. },
  11172. ]
  11173. ))
  11174. characterMakers.push(() => makeCharacter(
  11175. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11176. {
  11177. front: {
  11178. height: math.unit(18, "feet"),
  11179. weight: math.unit(5800, "lb"),
  11180. name: "Front",
  11181. image: {
  11182. source: "./media/characters/rhys/front.svg",
  11183. extra: 3386 / 3090,
  11184. bottom: 0.07
  11185. }
  11186. },
  11187. },
  11188. [
  11189. {
  11190. name: "Normal",
  11191. height: math.unit(18, "feet"),
  11192. default: true
  11193. },
  11194. {
  11195. name: "Working Size",
  11196. height: math.unit(200, "feet")
  11197. },
  11198. {
  11199. name: "Demolition Size",
  11200. height: math.unit(2000, "feet")
  11201. },
  11202. {
  11203. name: "Maximum Licensed Size",
  11204. height: math.unit(5, "miles")
  11205. },
  11206. {
  11207. name: "Maximum Observed Size",
  11208. height: math.unit(10, "yottameters")
  11209. },
  11210. ]
  11211. ))
  11212. characterMakers.push(() => makeCharacter(
  11213. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11214. {
  11215. front: {
  11216. height: math.unit(6, "feet"),
  11217. weight: math.unit(250, "lb"),
  11218. name: "Front",
  11219. image: {
  11220. source: "./media/characters/toto/front.svg",
  11221. extra: 527 / 479,
  11222. bottom: 0.05
  11223. }
  11224. },
  11225. },
  11226. [
  11227. {
  11228. name: "Micro",
  11229. height: math.unit(3, "feet")
  11230. },
  11231. {
  11232. name: "Normal",
  11233. height: math.unit(10, "feet")
  11234. },
  11235. {
  11236. name: "Macro",
  11237. height: math.unit(150, "feet"),
  11238. default: true
  11239. },
  11240. {
  11241. name: "Megamacro",
  11242. height: math.unit(1200, "feet")
  11243. },
  11244. ]
  11245. ))
  11246. characterMakers.push(() => makeCharacter(
  11247. { name: "King", species: ["lion"], tags: ["anthro"] },
  11248. {
  11249. back: {
  11250. height: math.unit(6, "feet"),
  11251. weight: math.unit(150, "lb"),
  11252. name: "Back",
  11253. image: {
  11254. source: "./media/characters/king/back.svg"
  11255. }
  11256. },
  11257. },
  11258. [
  11259. {
  11260. name: "Micro",
  11261. height: math.unit(2, "inches")
  11262. },
  11263. {
  11264. name: "Normal",
  11265. height: math.unit(8, "feet")
  11266. },
  11267. {
  11268. name: "Macro",
  11269. height: math.unit(200, "feet"),
  11270. default: true
  11271. },
  11272. {
  11273. name: "Megamacro",
  11274. height: math.unit(50, "miles")
  11275. },
  11276. ]
  11277. ))
  11278. characterMakers.push(() => makeCharacter(
  11279. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11280. {
  11281. front: {
  11282. height: math.unit(11, "feet"),
  11283. weight: math.unit(1400, "lb"),
  11284. name: "Front",
  11285. image: {
  11286. source: "./media/characters/cordite/front.svg",
  11287. extra: 1919/1827,
  11288. bottom: 40/1959
  11289. }
  11290. },
  11291. side: {
  11292. height: math.unit(11, "feet"),
  11293. weight: math.unit(1400, "lb"),
  11294. name: "Side",
  11295. image: {
  11296. source: "./media/characters/cordite/side.svg",
  11297. extra: 1908/1793,
  11298. bottom: 38/1946
  11299. }
  11300. },
  11301. back: {
  11302. height: math.unit(11, "feet"),
  11303. weight: math.unit(1400, "lb"),
  11304. name: "Back",
  11305. image: {
  11306. source: "./media/characters/cordite/back.svg",
  11307. extra: 1938/1837,
  11308. bottom: 10/1948
  11309. }
  11310. },
  11311. feral: {
  11312. height: math.unit(2, "feet"),
  11313. weight: math.unit(90, "lb"),
  11314. name: "Feral",
  11315. image: {
  11316. source: "./media/characters/cordite/feral.svg",
  11317. extra: 1260 / 755,
  11318. bottom: 0.05
  11319. }
  11320. },
  11321. },
  11322. [
  11323. {
  11324. name: "Normal",
  11325. height: math.unit(11, "feet"),
  11326. default: true
  11327. },
  11328. ]
  11329. ))
  11330. characterMakers.push(() => makeCharacter(
  11331. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11332. {
  11333. front: {
  11334. height: math.unit(6, "feet"),
  11335. weight: math.unit(150, "lb"),
  11336. name: "Front",
  11337. image: {
  11338. source: "./media/characters/pianostrong/front.svg",
  11339. extra: 6577 / 6254,
  11340. bottom: 0.02
  11341. }
  11342. },
  11343. side: {
  11344. height: math.unit(6, "feet"),
  11345. weight: math.unit(150, "lb"),
  11346. name: "Side",
  11347. image: {
  11348. source: "./media/characters/pianostrong/side.svg",
  11349. extra: 6106 / 5730
  11350. }
  11351. },
  11352. back: {
  11353. height: math.unit(6, "feet"),
  11354. weight: math.unit(150, "lb"),
  11355. name: "Back",
  11356. image: {
  11357. source: "./media/characters/pianostrong/back.svg",
  11358. extra: 6085 / 5733,
  11359. bottom: 0.01
  11360. }
  11361. },
  11362. },
  11363. [
  11364. {
  11365. name: "Macro",
  11366. height: math.unit(100, "feet")
  11367. },
  11368. {
  11369. name: "Macro+",
  11370. height: math.unit(300, "feet"),
  11371. default: true
  11372. },
  11373. {
  11374. name: "Macro++",
  11375. height: math.unit(1000, "feet")
  11376. },
  11377. ]
  11378. ))
  11379. characterMakers.push(() => makeCharacter(
  11380. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11381. {
  11382. front: {
  11383. height: math.unit(6, "feet"),
  11384. weight: math.unit(150, "lb"),
  11385. name: "Front",
  11386. image: {
  11387. source: "./media/characters/kona/front.svg",
  11388. extra: 2960 / 2629,
  11389. bottom: 0.005
  11390. }
  11391. },
  11392. },
  11393. [
  11394. {
  11395. name: "Normal",
  11396. height: math.unit(11 + 8 / 12, "feet")
  11397. },
  11398. {
  11399. name: "Macro",
  11400. height: math.unit(850, "feet"),
  11401. default: true
  11402. },
  11403. {
  11404. name: "Macro+",
  11405. height: math.unit(1.5, "km"),
  11406. default: true
  11407. },
  11408. {
  11409. name: "Megamacro",
  11410. height: math.unit(80, "miles")
  11411. },
  11412. {
  11413. name: "Gigamacro",
  11414. height: math.unit(3500, "miles")
  11415. },
  11416. ]
  11417. ))
  11418. characterMakers.push(() => makeCharacter(
  11419. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11420. {
  11421. side: {
  11422. height: math.unit(1.9, "meters"),
  11423. weight: math.unit(326, "kg"),
  11424. name: "Side",
  11425. image: {
  11426. source: "./media/characters/levi/side.svg",
  11427. extra: 1704 / 1334,
  11428. bottom: 0.02
  11429. }
  11430. },
  11431. },
  11432. [
  11433. {
  11434. name: "Normal",
  11435. height: math.unit(1.9, "meters"),
  11436. default: true
  11437. },
  11438. {
  11439. name: "Macro",
  11440. height: math.unit(20, "meters")
  11441. },
  11442. {
  11443. name: "Macro+",
  11444. height: math.unit(200, "meters")
  11445. },
  11446. {
  11447. name: "Megamacro",
  11448. height: math.unit(2, "km")
  11449. },
  11450. {
  11451. name: "Megamacro+",
  11452. height: math.unit(20, "km")
  11453. },
  11454. {
  11455. name: "Gigamacro",
  11456. height: math.unit(2500, "km")
  11457. },
  11458. {
  11459. name: "Gigamacro+",
  11460. height: math.unit(120000, "km")
  11461. },
  11462. {
  11463. name: "Teramacro",
  11464. height: math.unit(7.77e6, "km")
  11465. },
  11466. ]
  11467. ))
  11468. characterMakers.push(() => makeCharacter(
  11469. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11470. {
  11471. front: {
  11472. height: math.unit(6 + 4/12, "feet"),
  11473. weight: math.unit(190, "lb"),
  11474. name: "Front",
  11475. image: {
  11476. source: "./media/characters/bmc/front.svg",
  11477. extra: 1626/1472,
  11478. bottom: 79/1705
  11479. }
  11480. },
  11481. back: {
  11482. height: math.unit(6 + 4/12, "feet"),
  11483. weight: math.unit(190, "lb"),
  11484. name: "Back",
  11485. image: {
  11486. source: "./media/characters/bmc/back.svg",
  11487. extra: 1640/1479,
  11488. bottom: 45/1685
  11489. }
  11490. },
  11491. frontArmor: {
  11492. height: math.unit(6 + 4/12, "feet"),
  11493. weight: math.unit(190, "lb"),
  11494. name: "Front-armor",
  11495. image: {
  11496. source: "./media/characters/bmc/front-armor.svg",
  11497. extra: 1538/1468,
  11498. bottom: 79/1617
  11499. }
  11500. },
  11501. },
  11502. [
  11503. {
  11504. name: "Human-sized",
  11505. height: math.unit(6 + 4 / 12, "feet")
  11506. },
  11507. {
  11508. name: "Interactive Size",
  11509. height: math.unit(25, "feet")
  11510. },
  11511. {
  11512. name: "Small",
  11513. height: math.unit(250, "feet")
  11514. },
  11515. {
  11516. name: "Normal",
  11517. height: math.unit(1250, "feet"),
  11518. default: true
  11519. },
  11520. {
  11521. name: "Good Day",
  11522. height: math.unit(88, "miles")
  11523. },
  11524. {
  11525. name: "Largest Measured Size",
  11526. height: math.unit(105.960, "galaxies")
  11527. },
  11528. ]
  11529. ))
  11530. characterMakers.push(() => makeCharacter(
  11531. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11532. {
  11533. front: {
  11534. height: math.unit(20, "feet"),
  11535. weight: math.unit(2016, "kg"),
  11536. name: "Front",
  11537. image: {
  11538. source: "./media/characters/sven-the-kaiju/front.svg",
  11539. extra: 1277/1250,
  11540. bottom: 35/1312
  11541. }
  11542. },
  11543. mouth: {
  11544. height: math.unit(1.85, "feet"),
  11545. name: "Mouth",
  11546. image: {
  11547. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11548. }
  11549. },
  11550. },
  11551. [
  11552. {
  11553. name: "Fairy",
  11554. height: math.unit(6, "inches")
  11555. },
  11556. {
  11557. name: "Normal",
  11558. height: math.unit(20, "feet"),
  11559. default: true
  11560. },
  11561. {
  11562. name: "Rampage",
  11563. height: math.unit(200, "feet")
  11564. },
  11565. {
  11566. name: "Archfey Forest Guardian",
  11567. height: math.unit(1, "mile")
  11568. },
  11569. ]
  11570. ))
  11571. characterMakers.push(() => makeCharacter(
  11572. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11573. {
  11574. front: {
  11575. height: math.unit(4, "meters"),
  11576. weight: math.unit(2, "tons"),
  11577. name: "Front",
  11578. image: {
  11579. source: "./media/characters/marik/front.svg",
  11580. extra: 1057 / 1003,
  11581. bottom: 0.08
  11582. }
  11583. },
  11584. },
  11585. [
  11586. {
  11587. name: "Normal",
  11588. height: math.unit(4, "meters"),
  11589. default: true
  11590. },
  11591. {
  11592. name: "Macro",
  11593. height: math.unit(20, "meters")
  11594. },
  11595. {
  11596. name: "Megamacro",
  11597. height: math.unit(50, "km")
  11598. },
  11599. {
  11600. name: "Gigamacro",
  11601. height: math.unit(100, "km")
  11602. },
  11603. {
  11604. name: "Alpha Macro",
  11605. height: math.unit(7.88e7, "yottameters")
  11606. },
  11607. ]
  11608. ))
  11609. characterMakers.push(() => makeCharacter(
  11610. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11611. {
  11612. front: {
  11613. height: math.unit(6, "feet"),
  11614. weight: math.unit(110, "lb"),
  11615. name: "Front",
  11616. image: {
  11617. source: "./media/characters/mel/front.svg",
  11618. extra: 736 / 617,
  11619. bottom: 0.017
  11620. }
  11621. },
  11622. },
  11623. [
  11624. {
  11625. name: "Pico",
  11626. height: math.unit(3, "pm")
  11627. },
  11628. {
  11629. name: "Nano",
  11630. height: math.unit(3, "nm")
  11631. },
  11632. {
  11633. name: "Micro",
  11634. height: math.unit(0.3, "mm"),
  11635. default: true
  11636. },
  11637. {
  11638. name: "Micro+",
  11639. height: math.unit(3, "mm")
  11640. },
  11641. {
  11642. name: "Normal",
  11643. height: math.unit(5 + 10.5 / 12, "feet")
  11644. },
  11645. ]
  11646. ))
  11647. characterMakers.push(() => makeCharacter(
  11648. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11649. {
  11650. kaiju: {
  11651. height: math.unit(1.75, "meters"),
  11652. weight: math.unit(55, "kg"),
  11653. name: "Kaiju",
  11654. image: {
  11655. source: "./media/characters/lykonous/kaiju.svg",
  11656. extra: 1055 / 946,
  11657. bottom: 0.135
  11658. }
  11659. },
  11660. },
  11661. [
  11662. {
  11663. name: "Normal",
  11664. height: math.unit(2.5, "meters"),
  11665. default: true
  11666. },
  11667. {
  11668. name: "Kaiju Dragon",
  11669. height: math.unit(60, "meters")
  11670. },
  11671. {
  11672. name: "Mega Kaiju",
  11673. height: math.unit(120, "km")
  11674. },
  11675. {
  11676. name: "Giga Kaiju",
  11677. height: math.unit(200, "megameters")
  11678. },
  11679. {
  11680. name: "Terra Kaiju",
  11681. height: math.unit(400, "gigameters")
  11682. },
  11683. {
  11684. name: "Kaiju Dragon God",
  11685. height: math.unit(13000, "exaparsecs")
  11686. },
  11687. ]
  11688. ))
  11689. characterMakers.push(() => makeCharacter(
  11690. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11691. {
  11692. front: {
  11693. height: math.unit(6, "feet"),
  11694. weight: math.unit(150, "lb"),
  11695. name: "Front",
  11696. image: {
  11697. source: "./media/characters/blü/front.svg",
  11698. extra: 1883 / 1564,
  11699. bottom: 0.031
  11700. }
  11701. },
  11702. },
  11703. [
  11704. {
  11705. name: "Normal",
  11706. height: math.unit(13, "feet"),
  11707. default: true
  11708. },
  11709. {
  11710. name: "Big Boi",
  11711. height: math.unit(150, "meters")
  11712. },
  11713. {
  11714. name: "Mini Stomper",
  11715. height: math.unit(300, "meters")
  11716. },
  11717. {
  11718. name: "Macro",
  11719. height: math.unit(1000, "meters")
  11720. },
  11721. {
  11722. name: "Megamacro",
  11723. height: math.unit(11000, "meters")
  11724. },
  11725. {
  11726. name: "Gigamacro",
  11727. height: math.unit(11000, "km")
  11728. },
  11729. {
  11730. name: "Teramacro",
  11731. height: math.unit(420000, "km")
  11732. },
  11733. {
  11734. name: "Examacro",
  11735. height: math.unit(120, "parsecs")
  11736. },
  11737. {
  11738. name: "God Tho",
  11739. height: math.unit(98000000000, "parsecs")
  11740. },
  11741. ]
  11742. ))
  11743. characterMakers.push(() => makeCharacter(
  11744. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11745. {
  11746. taurFront: {
  11747. height: math.unit(6, "feet"),
  11748. weight: math.unit(200, "lb"),
  11749. name: "Taur (Front)",
  11750. image: {
  11751. source: "./media/characters/scales/taur-front.svg",
  11752. extra: 1,
  11753. bottom: 0.05
  11754. }
  11755. },
  11756. taurBack: {
  11757. height: math.unit(6, "feet"),
  11758. weight: math.unit(200, "lb"),
  11759. name: "Taur (Back)",
  11760. image: {
  11761. source: "./media/characters/scales/taur-back.svg",
  11762. extra: 1,
  11763. bottom: 0.08
  11764. }
  11765. },
  11766. anthro: {
  11767. height: math.unit(6 * 7 / 12, "feet"),
  11768. weight: math.unit(100, "lb"),
  11769. name: "Anthro",
  11770. image: {
  11771. source: "./media/characters/scales/anthro.svg",
  11772. extra: 1,
  11773. bottom: 0.06
  11774. }
  11775. },
  11776. },
  11777. [
  11778. {
  11779. name: "Normal",
  11780. height: math.unit(12, "feet"),
  11781. default: true
  11782. },
  11783. ]
  11784. ))
  11785. characterMakers.push(() => makeCharacter(
  11786. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11787. {
  11788. front: {
  11789. height: math.unit(6, "feet"),
  11790. weight: math.unit(150, "lb"),
  11791. name: "Front",
  11792. image: {
  11793. source: "./media/characters/koragos/front.svg",
  11794. extra: 841 / 794,
  11795. bottom: 0.035
  11796. }
  11797. },
  11798. back: {
  11799. height: math.unit(6, "feet"),
  11800. weight: math.unit(150, "lb"),
  11801. name: "Back",
  11802. image: {
  11803. source: "./media/characters/koragos/back.svg",
  11804. extra: 841 / 810,
  11805. bottom: 0.022
  11806. }
  11807. },
  11808. },
  11809. [
  11810. {
  11811. name: "Normal",
  11812. height: math.unit(6 + 11 / 12, "feet"),
  11813. default: true
  11814. },
  11815. {
  11816. name: "Macro",
  11817. height: math.unit(490, "feet")
  11818. },
  11819. {
  11820. name: "Megamacro",
  11821. height: math.unit(10, "miles")
  11822. },
  11823. {
  11824. name: "Gigamacro",
  11825. height: math.unit(50, "miles")
  11826. },
  11827. ]
  11828. ))
  11829. characterMakers.push(() => makeCharacter(
  11830. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11831. {
  11832. front: {
  11833. height: math.unit(6, "feet"),
  11834. weight: math.unit(250, "lb"),
  11835. name: "Front",
  11836. image: {
  11837. source: "./media/characters/xylrem/front.svg",
  11838. extra: 3323 / 3050,
  11839. bottom: 0.065
  11840. }
  11841. },
  11842. },
  11843. [
  11844. {
  11845. name: "Micro",
  11846. height: math.unit(4, "feet")
  11847. },
  11848. {
  11849. name: "Normal",
  11850. height: math.unit(16, "feet"),
  11851. default: true
  11852. },
  11853. {
  11854. name: "Macro",
  11855. height: math.unit(2720, "feet")
  11856. },
  11857. {
  11858. name: "Megamacro",
  11859. height: math.unit(25000, "miles")
  11860. },
  11861. ]
  11862. ))
  11863. characterMakers.push(() => makeCharacter(
  11864. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11865. {
  11866. front: {
  11867. height: math.unit(8, "feet"),
  11868. weight: math.unit(250, "kg"),
  11869. name: "Front",
  11870. image: {
  11871. source: "./media/characters/ikideru/front.svg",
  11872. extra: 930 / 870,
  11873. bottom: 0.087
  11874. }
  11875. },
  11876. back: {
  11877. height: math.unit(8, "feet"),
  11878. weight: math.unit(250, "kg"),
  11879. name: "Back",
  11880. image: {
  11881. source: "./media/characters/ikideru/back.svg",
  11882. extra: 919 / 852,
  11883. bottom: 0.055
  11884. }
  11885. },
  11886. },
  11887. [
  11888. {
  11889. name: "Rare",
  11890. height: math.unit(8, "feet"),
  11891. default: true
  11892. },
  11893. {
  11894. name: "Playful Loom",
  11895. height: math.unit(80, "feet")
  11896. },
  11897. {
  11898. name: "City Leaner",
  11899. height: math.unit(230, "feet")
  11900. },
  11901. {
  11902. name: "Megamacro",
  11903. height: math.unit(2500, "feet")
  11904. },
  11905. {
  11906. name: "Gigamacro",
  11907. height: math.unit(26400, "feet")
  11908. },
  11909. {
  11910. name: "Tectonic Shifter",
  11911. height: math.unit(1.7, "megameters")
  11912. },
  11913. {
  11914. name: "Planet Carer",
  11915. height: math.unit(21, "megameters")
  11916. },
  11917. {
  11918. name: "God",
  11919. height: math.unit(11157.22, "parsecs")
  11920. },
  11921. ]
  11922. ))
  11923. characterMakers.push(() => makeCharacter(
  11924. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11925. {
  11926. front: {
  11927. height: math.unit(6, "feet"),
  11928. weight: math.unit(120, "lb"),
  11929. name: "Front",
  11930. image: {
  11931. source: "./media/characters/neo/front.svg"
  11932. }
  11933. },
  11934. },
  11935. [
  11936. {
  11937. name: "Micro",
  11938. height: math.unit(2, "inches"),
  11939. default: true
  11940. },
  11941. {
  11942. name: "Human Size",
  11943. height: math.unit(5 + 8 / 12, "feet")
  11944. },
  11945. ]
  11946. ))
  11947. characterMakers.push(() => makeCharacter(
  11948. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11949. {
  11950. front: {
  11951. height: math.unit(13 + 10 / 12, "feet"),
  11952. weight: math.unit(5320, "lb"),
  11953. name: "Front",
  11954. image: {
  11955. source: "./media/characters/chauncey-chantz/front.svg",
  11956. extra: 1587 / 1435,
  11957. bottom: 0.02
  11958. }
  11959. },
  11960. },
  11961. [
  11962. {
  11963. name: "Normal",
  11964. height: math.unit(13 + 10 / 12, "feet"),
  11965. default: true
  11966. },
  11967. {
  11968. name: "Macro",
  11969. height: math.unit(45, "feet")
  11970. },
  11971. {
  11972. name: "Megamacro",
  11973. height: math.unit(250, "miles")
  11974. },
  11975. {
  11976. name: "Planetary",
  11977. height: math.unit(10000, "miles")
  11978. },
  11979. {
  11980. name: "Galactic",
  11981. height: math.unit(40000, "parsecs")
  11982. },
  11983. {
  11984. name: "Universal",
  11985. height: math.unit(1, "yottameter")
  11986. },
  11987. ]
  11988. ))
  11989. characterMakers.push(() => makeCharacter(
  11990. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11991. {
  11992. front: {
  11993. height: math.unit(6, "feet"),
  11994. weight: math.unit(150, "lb"),
  11995. name: "Front",
  11996. image: {
  11997. source: "./media/characters/epifox/front.svg",
  11998. extra: 1,
  11999. bottom: 0.075
  12000. }
  12001. },
  12002. },
  12003. [
  12004. {
  12005. name: "Micro",
  12006. height: math.unit(6, "inches")
  12007. },
  12008. {
  12009. name: "Normal",
  12010. height: math.unit(12, "feet"),
  12011. default: true
  12012. },
  12013. {
  12014. name: "Macro",
  12015. height: math.unit(3810, "feet")
  12016. },
  12017. {
  12018. name: "Megamacro",
  12019. height: math.unit(500, "miles")
  12020. },
  12021. ]
  12022. ))
  12023. characterMakers.push(() => makeCharacter(
  12024. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12025. {
  12026. front: {
  12027. height: math.unit(1.8796, "m"),
  12028. weight: math.unit(230, "lb"),
  12029. name: "Front",
  12030. image: {
  12031. source: "./media/characters/colin-t/front.svg",
  12032. extra: 1272 / 1193,
  12033. bottom: 0.07
  12034. }
  12035. },
  12036. },
  12037. [
  12038. {
  12039. name: "Micro",
  12040. height: math.unit(0.571, "meters")
  12041. },
  12042. {
  12043. name: "Normal",
  12044. height: math.unit(1.8796, "meters"),
  12045. default: true
  12046. },
  12047. {
  12048. name: "Tall",
  12049. height: math.unit(4, "meters")
  12050. },
  12051. {
  12052. name: "Macro",
  12053. height: math.unit(67.241, "meters")
  12054. },
  12055. {
  12056. name: "Megamacro",
  12057. height: math.unit(371.856, "meters")
  12058. },
  12059. {
  12060. name: "Planetary",
  12061. height: math.unit(12631.5689, "km")
  12062. },
  12063. ]
  12064. ))
  12065. characterMakers.push(() => makeCharacter(
  12066. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12067. {
  12068. front: {
  12069. height: math.unit(1.85, "meters"),
  12070. weight: math.unit(80, "kg"),
  12071. name: "Front",
  12072. image: {
  12073. source: "./media/characters/matvei/front.svg",
  12074. extra: 614 / 594,
  12075. bottom: 0.01
  12076. }
  12077. },
  12078. },
  12079. [
  12080. {
  12081. name: "Normal",
  12082. height: math.unit(1.85, "meters"),
  12083. default: true
  12084. },
  12085. ]
  12086. ))
  12087. characterMakers.push(() => makeCharacter(
  12088. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12089. {
  12090. front: {
  12091. height: math.unit(5 + 9 / 12, "feet"),
  12092. weight: math.unit(70, "lb"),
  12093. name: "Front",
  12094. image: {
  12095. source: "./media/characters/quincy/front.svg",
  12096. extra: 3041 / 2751
  12097. }
  12098. },
  12099. back: {
  12100. height: math.unit(5 + 9 / 12, "feet"),
  12101. weight: math.unit(70, "lb"),
  12102. name: "Back",
  12103. image: {
  12104. source: "./media/characters/quincy/back.svg",
  12105. extra: 3041 / 2751
  12106. }
  12107. },
  12108. flying: {
  12109. height: math.unit(5 + 4 / 12, "feet"),
  12110. weight: math.unit(70, "lb"),
  12111. name: "Flying",
  12112. image: {
  12113. source: "./media/characters/quincy/flying.svg",
  12114. extra: 1044 / 930
  12115. }
  12116. },
  12117. },
  12118. [
  12119. {
  12120. name: "Micro",
  12121. height: math.unit(3, "cm")
  12122. },
  12123. {
  12124. name: "Normal",
  12125. height: math.unit(5 + 9 / 12, "feet")
  12126. },
  12127. {
  12128. name: "Macro",
  12129. height: math.unit(200, "meters"),
  12130. default: true
  12131. },
  12132. {
  12133. name: "Megamacro",
  12134. height: math.unit(1000, "meters")
  12135. },
  12136. ]
  12137. ))
  12138. characterMakers.push(() => makeCharacter(
  12139. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12140. {
  12141. front: {
  12142. height: math.unit(3 + 11/12, "feet"),
  12143. weight: math.unit(50, "lb"),
  12144. name: "Front",
  12145. image: {
  12146. source: "./media/characters/vanrel/front.svg",
  12147. extra: 1104/949,
  12148. bottom: 52/1156
  12149. }
  12150. },
  12151. back: {
  12152. height: math.unit(3 + 11/12, "feet"),
  12153. weight: math.unit(50, "lb"),
  12154. name: "Back",
  12155. image: {
  12156. source: "./media/characters/vanrel/back.svg",
  12157. extra: 1119/976,
  12158. bottom: 37/1156
  12159. }
  12160. },
  12161. tome: {
  12162. height: math.unit(1.35, "feet"),
  12163. weight: math.unit(10, "lb"),
  12164. name: "Vanrel's Tome",
  12165. rename: true,
  12166. image: {
  12167. source: "./media/characters/vanrel/tome.svg"
  12168. }
  12169. },
  12170. beans: {
  12171. height: math.unit(0.89, "feet"),
  12172. name: "Beans",
  12173. image: {
  12174. source: "./media/characters/vanrel/beans.svg"
  12175. }
  12176. },
  12177. },
  12178. [
  12179. {
  12180. name: "Normal",
  12181. height: math.unit(3 + 11/12, "feet"),
  12182. default: true
  12183. },
  12184. ]
  12185. ))
  12186. characterMakers.push(() => makeCharacter(
  12187. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12188. {
  12189. front: {
  12190. height: math.unit(7 + 5 / 12, "feet"),
  12191. name: "Front",
  12192. image: {
  12193. source: "./media/characters/kuiper-vanrel/front.svg",
  12194. extra: 1219/1169,
  12195. bottom: 69/1288
  12196. }
  12197. },
  12198. back: {
  12199. height: math.unit(7 + 5 / 12, "feet"),
  12200. name: "Back",
  12201. image: {
  12202. source: "./media/characters/kuiper-vanrel/back.svg",
  12203. extra: 1236/1193,
  12204. bottom: 27/1263
  12205. }
  12206. },
  12207. foot: {
  12208. height: math.unit(0.55, "meters"),
  12209. name: "Foot",
  12210. image: {
  12211. source: "./media/characters/kuiper-vanrel/foot.svg",
  12212. }
  12213. },
  12214. battle: {
  12215. height: math.unit(6.824, "feet"),
  12216. name: "Battle",
  12217. image: {
  12218. source: "./media/characters/kuiper-vanrel/battle.svg",
  12219. extra: 1466 / 1327,
  12220. bottom: 29 / 1492.5
  12221. }
  12222. },
  12223. meerkui: {
  12224. height: math.unit(18, "inches"),
  12225. name: "Meerkui",
  12226. image: {
  12227. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12228. extra: 1354/1289,
  12229. bottom: 69/1423
  12230. }
  12231. },
  12232. },
  12233. [
  12234. {
  12235. name: "Normal",
  12236. height: math.unit(7 + 5 / 12, "feet"),
  12237. default: true
  12238. },
  12239. ]
  12240. ))
  12241. characterMakers.push(() => makeCharacter(
  12242. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12243. {
  12244. front: {
  12245. height: math.unit(8 + 5 / 12, "feet"),
  12246. name: "Front",
  12247. image: {
  12248. source: "./media/characters/keset-vanrel/front.svg",
  12249. extra: 1231/1148,
  12250. bottom: 82/1313
  12251. }
  12252. },
  12253. back: {
  12254. height: math.unit(8 + 5 / 12, "feet"),
  12255. name: "Back",
  12256. image: {
  12257. source: "./media/characters/keset-vanrel/back.svg",
  12258. extra: 1240/1174,
  12259. bottom: 33/1273
  12260. }
  12261. },
  12262. hand: {
  12263. height: math.unit(0.6, "meters"),
  12264. name: "Hand",
  12265. image: {
  12266. source: "./media/characters/keset-vanrel/hand.svg"
  12267. }
  12268. },
  12269. foot: {
  12270. height: math.unit(0.94978, "meters"),
  12271. name: "Foot",
  12272. image: {
  12273. source: "./media/characters/keset-vanrel/foot.svg"
  12274. }
  12275. },
  12276. battle: {
  12277. height: math.unit(7.408, "feet"),
  12278. name: "Battle",
  12279. image: {
  12280. source: "./media/characters/keset-vanrel/battle.svg",
  12281. extra: 1890 / 1386,
  12282. bottom: 73.28 / 1970
  12283. }
  12284. },
  12285. },
  12286. [
  12287. {
  12288. name: "Normal",
  12289. height: math.unit(8 + 5 / 12, "feet"),
  12290. default: true
  12291. },
  12292. ]
  12293. ))
  12294. characterMakers.push(() => makeCharacter(
  12295. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12296. {
  12297. front: {
  12298. height: math.unit(6, "feet"),
  12299. weight: math.unit(150, "lb"),
  12300. name: "Front",
  12301. image: {
  12302. source: "./media/characters/neos/front.svg",
  12303. extra: 1696 / 992,
  12304. bottom: 0.14
  12305. }
  12306. },
  12307. },
  12308. [
  12309. {
  12310. name: "Normal",
  12311. height: math.unit(54, "cm"),
  12312. default: true
  12313. },
  12314. {
  12315. name: "Macro",
  12316. height: math.unit(100, "m")
  12317. },
  12318. {
  12319. name: "Megamacro",
  12320. height: math.unit(10, "km")
  12321. },
  12322. {
  12323. name: "Megamacro+",
  12324. height: math.unit(100, "km")
  12325. },
  12326. {
  12327. name: "Gigamacro",
  12328. height: math.unit(100, "Mm")
  12329. },
  12330. {
  12331. name: "Teramacro",
  12332. height: math.unit(100, "Gm")
  12333. },
  12334. {
  12335. name: "Examacro",
  12336. height: math.unit(100, "Em")
  12337. },
  12338. {
  12339. name: "Godly",
  12340. height: math.unit(10000, "Ym")
  12341. },
  12342. {
  12343. name: "Beyond Godly",
  12344. height: math.unit(25, "multiverses")
  12345. },
  12346. ]
  12347. ))
  12348. characterMakers.push(() => makeCharacter(
  12349. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12350. {
  12351. feminine: {
  12352. height: math.unit(5, "feet"),
  12353. weight: math.unit(100, "lb"),
  12354. name: "Feminine",
  12355. image: {
  12356. source: "./media/characters/sammy-mouse/feminine.svg",
  12357. extra: 2526 / 2425,
  12358. bottom: 0.123
  12359. }
  12360. },
  12361. masculine: {
  12362. height: math.unit(5, "feet"),
  12363. weight: math.unit(100, "lb"),
  12364. name: "Masculine",
  12365. image: {
  12366. source: "./media/characters/sammy-mouse/masculine.svg",
  12367. extra: 2526 / 2425,
  12368. bottom: 0.123
  12369. }
  12370. },
  12371. },
  12372. [
  12373. {
  12374. name: "Micro",
  12375. height: math.unit(5, "inches")
  12376. },
  12377. {
  12378. name: "Normal",
  12379. height: math.unit(5, "feet"),
  12380. default: true
  12381. },
  12382. {
  12383. name: "Macro",
  12384. height: math.unit(60, "feet")
  12385. },
  12386. ]
  12387. ))
  12388. characterMakers.push(() => makeCharacter(
  12389. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12390. {
  12391. front: {
  12392. height: math.unit(4, "feet"),
  12393. weight: math.unit(50, "lb"),
  12394. name: "Front",
  12395. image: {
  12396. source: "./media/characters/kole/front.svg",
  12397. extra: 1423 / 1303,
  12398. bottom: 0.025
  12399. }
  12400. },
  12401. back: {
  12402. height: math.unit(4, "feet"),
  12403. weight: math.unit(50, "lb"),
  12404. name: "Back",
  12405. image: {
  12406. source: "./media/characters/kole/back.svg",
  12407. extra: 1426 / 1280,
  12408. bottom: 0.02
  12409. }
  12410. },
  12411. },
  12412. [
  12413. {
  12414. name: "Normal",
  12415. height: math.unit(4, "feet"),
  12416. default: true
  12417. },
  12418. ]
  12419. ))
  12420. characterMakers.push(() => makeCharacter(
  12421. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12422. {
  12423. front: {
  12424. height: math.unit(2.5, "feet"),
  12425. weight: math.unit(32, "lb"),
  12426. name: "Front",
  12427. image: {
  12428. source: "./media/characters/rufran/front.svg",
  12429. extra: 1313/885,
  12430. bottom: 94/1407
  12431. }
  12432. },
  12433. side: {
  12434. height: math.unit(2.5, "feet"),
  12435. weight: math.unit(32, "lb"),
  12436. name: "Side",
  12437. image: {
  12438. source: "./media/characters/rufran/side.svg",
  12439. extra: 1109/852,
  12440. bottom: 118/1227
  12441. }
  12442. },
  12443. back: {
  12444. height: math.unit(2.5, "feet"),
  12445. weight: math.unit(32, "lb"),
  12446. name: "Back",
  12447. image: {
  12448. source: "./media/characters/rufran/back.svg",
  12449. extra: 1280/878,
  12450. bottom: 131/1411
  12451. }
  12452. },
  12453. mouth: {
  12454. height: math.unit(1.13, "feet"),
  12455. name: "Mouth",
  12456. image: {
  12457. source: "./media/characters/rufran/mouth.svg"
  12458. }
  12459. },
  12460. foot: {
  12461. height: math.unit(1.33, "feet"),
  12462. name: "Foot",
  12463. image: {
  12464. source: "./media/characters/rufran/foot.svg"
  12465. }
  12466. },
  12467. koboldFront: {
  12468. height: math.unit(2 + 6 / 12, "feet"),
  12469. weight: math.unit(20, "lb"),
  12470. name: "Front (Kobold)",
  12471. image: {
  12472. source: "./media/characters/rufran/kobold-front.svg",
  12473. extra: 2041 / 1839,
  12474. bottom: 0.055
  12475. }
  12476. },
  12477. koboldBack: {
  12478. height: math.unit(2 + 6 / 12, "feet"),
  12479. weight: math.unit(20, "lb"),
  12480. name: "Back (Kobold)",
  12481. image: {
  12482. source: "./media/characters/rufran/kobold-back.svg",
  12483. extra: 2054 / 1839,
  12484. bottom: 0.01
  12485. }
  12486. },
  12487. koboldHand: {
  12488. height: math.unit(0.2166, "meters"),
  12489. name: "Hand (Kobold)",
  12490. image: {
  12491. source: "./media/characters/rufran/kobold-hand.svg"
  12492. }
  12493. },
  12494. koboldFoot: {
  12495. height: math.unit(0.185, "meters"),
  12496. name: "Foot (Kobold)",
  12497. image: {
  12498. source: "./media/characters/rufran/kobold-foot.svg"
  12499. }
  12500. },
  12501. },
  12502. [
  12503. {
  12504. name: "Micro",
  12505. height: math.unit(1, "inch")
  12506. },
  12507. {
  12508. name: "Normal",
  12509. height: math.unit(2 + 6 / 12, "feet"),
  12510. default: true
  12511. },
  12512. {
  12513. name: "Big",
  12514. height: math.unit(60, "feet")
  12515. },
  12516. {
  12517. name: "Macro",
  12518. height: math.unit(325, "feet")
  12519. },
  12520. ]
  12521. ))
  12522. characterMakers.push(() => makeCharacter(
  12523. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12524. {
  12525. front: {
  12526. height: math.unit(0.3, "meters"),
  12527. weight: math.unit(3.5, "kg"),
  12528. name: "Front",
  12529. image: {
  12530. source: "./media/characters/chip/front.svg",
  12531. extra: 748 / 674
  12532. }
  12533. },
  12534. },
  12535. [
  12536. {
  12537. name: "Micro",
  12538. height: math.unit(1, "inch"),
  12539. default: true
  12540. },
  12541. ]
  12542. ))
  12543. characterMakers.push(() => makeCharacter(
  12544. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12545. {
  12546. side: {
  12547. height: math.unit(2.3, "meters"),
  12548. weight: math.unit(3500, "lb"),
  12549. name: "Side",
  12550. image: {
  12551. source: "./media/characters/torvid/side.svg",
  12552. extra: 1972 / 722,
  12553. bottom: 0.035
  12554. }
  12555. },
  12556. },
  12557. [
  12558. {
  12559. name: "Normal",
  12560. height: math.unit(2.3, "meters"),
  12561. default: true
  12562. },
  12563. ]
  12564. ))
  12565. characterMakers.push(() => makeCharacter(
  12566. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12567. {
  12568. front: {
  12569. height: math.unit(2, "meters"),
  12570. weight: math.unit(150.5, "kg"),
  12571. name: "Front",
  12572. image: {
  12573. source: "./media/characters/susan/front.svg",
  12574. extra: 693 / 635,
  12575. bottom: 0.05
  12576. }
  12577. },
  12578. },
  12579. [
  12580. {
  12581. name: "Megamacro",
  12582. height: math.unit(505, "miles"),
  12583. default: true
  12584. },
  12585. ]
  12586. ))
  12587. characterMakers.push(() => makeCharacter(
  12588. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12589. {
  12590. front: {
  12591. height: math.unit(6, "feet"),
  12592. weight: math.unit(150, "lb"),
  12593. name: "Front",
  12594. image: {
  12595. source: "./media/characters/raindrops/front.svg",
  12596. extra: 2655 / 2461,
  12597. bottom: 49 / 2705
  12598. }
  12599. },
  12600. back: {
  12601. height: math.unit(6, "feet"),
  12602. weight: math.unit(150, "lb"),
  12603. name: "Back",
  12604. image: {
  12605. source: "./media/characters/raindrops/back.svg",
  12606. extra: 2574 / 2400,
  12607. bottom: 65 / 2634
  12608. }
  12609. },
  12610. },
  12611. [
  12612. {
  12613. name: "Micro",
  12614. height: math.unit(6, "inches")
  12615. },
  12616. {
  12617. name: "Normal",
  12618. height: math.unit(6 + 2 / 12, "feet")
  12619. },
  12620. {
  12621. name: "Macro",
  12622. height: math.unit(131, "feet"),
  12623. default: true
  12624. },
  12625. {
  12626. name: "Megamacro",
  12627. height: math.unit(15, "miles")
  12628. },
  12629. {
  12630. name: "Gigamacro",
  12631. height: math.unit(4000, "miles")
  12632. },
  12633. {
  12634. name: "Teramacro",
  12635. height: math.unit(315000, "miles")
  12636. },
  12637. ]
  12638. ))
  12639. characterMakers.push(() => makeCharacter(
  12640. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12641. {
  12642. front: {
  12643. height: math.unit(2.794, "meters"),
  12644. weight: math.unit(325, "kg"),
  12645. name: "Front",
  12646. image: {
  12647. source: "./media/characters/tezwa/front.svg",
  12648. extra: 2083 / 1906,
  12649. bottom: 0.031
  12650. }
  12651. },
  12652. foot: {
  12653. height: math.unit(0.687, "meters"),
  12654. name: "Foot",
  12655. image: {
  12656. source: "./media/characters/tezwa/foot.svg"
  12657. }
  12658. },
  12659. },
  12660. [
  12661. {
  12662. name: "Normal",
  12663. height: math.unit(9 + 2 / 12, "feet"),
  12664. default: true
  12665. },
  12666. ]
  12667. ))
  12668. characterMakers.push(() => makeCharacter(
  12669. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12670. {
  12671. front: {
  12672. height: math.unit(58, "feet"),
  12673. weight: math.unit(89000, "lb"),
  12674. name: "Front",
  12675. image: {
  12676. source: "./media/characters/typhus/front.svg",
  12677. extra: 816 / 800,
  12678. bottom: 0.065
  12679. }
  12680. },
  12681. },
  12682. [
  12683. {
  12684. name: "Macro",
  12685. height: math.unit(58, "feet"),
  12686. default: true
  12687. },
  12688. ]
  12689. ))
  12690. characterMakers.push(() => makeCharacter(
  12691. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12692. {
  12693. front: {
  12694. height: math.unit(12, "feet"),
  12695. weight: math.unit(6, "tonnes"),
  12696. name: "Front",
  12697. image: {
  12698. source: "./media/characters/lyra-von-wulf/front.svg",
  12699. extra: 1,
  12700. bottom: 0.10
  12701. }
  12702. },
  12703. frontMecha: {
  12704. height: math.unit(12, "feet"),
  12705. weight: math.unit(12, "tonnes"),
  12706. name: "Front (Mecha)",
  12707. image: {
  12708. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12709. extra: 1,
  12710. bottom: 0.042
  12711. }
  12712. },
  12713. maw: {
  12714. height: math.unit(2.2, "feet"),
  12715. name: "Maw",
  12716. image: {
  12717. source: "./media/characters/lyra-von-wulf/maw.svg"
  12718. }
  12719. },
  12720. },
  12721. [
  12722. {
  12723. name: "Normal",
  12724. height: math.unit(12, "feet"),
  12725. default: true
  12726. },
  12727. {
  12728. name: "Classic",
  12729. height: math.unit(50, "feet")
  12730. },
  12731. {
  12732. name: "Macro",
  12733. height: math.unit(500, "feet")
  12734. },
  12735. {
  12736. name: "Megamacro",
  12737. height: math.unit(1, "mile")
  12738. },
  12739. {
  12740. name: "Gigamacro",
  12741. height: math.unit(400, "miles")
  12742. },
  12743. {
  12744. name: "Teramacro",
  12745. height: math.unit(22000, "miles")
  12746. },
  12747. {
  12748. name: "Solarmacro",
  12749. height: math.unit(8600000, "miles")
  12750. },
  12751. {
  12752. name: "Galactic",
  12753. height: math.unit(1057000, "lightyears")
  12754. },
  12755. ]
  12756. ))
  12757. characterMakers.push(() => makeCharacter(
  12758. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12759. {
  12760. front: {
  12761. height: math.unit(6 + 10 / 12, "feet"),
  12762. weight: math.unit(150, "lb"),
  12763. name: "Front",
  12764. image: {
  12765. source: "./media/characters/dixon/front.svg",
  12766. extra: 3361 / 3209,
  12767. bottom: 0.01
  12768. }
  12769. },
  12770. },
  12771. [
  12772. {
  12773. name: "Normal",
  12774. height: math.unit(6 + 10 / 12, "feet"),
  12775. default: true
  12776. },
  12777. {
  12778. name: "Big",
  12779. height: math.unit(12, "meters")
  12780. },
  12781. {
  12782. name: "Macro",
  12783. height: math.unit(500, "meters")
  12784. },
  12785. {
  12786. name: "Megamacro",
  12787. height: math.unit(2, "km")
  12788. },
  12789. ]
  12790. ))
  12791. characterMakers.push(() => makeCharacter(
  12792. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12793. {
  12794. front: {
  12795. height: math.unit(185, "cm"),
  12796. weight: math.unit(68, "kg"),
  12797. name: "Front",
  12798. image: {
  12799. source: "./media/characters/kauko/front.svg",
  12800. extra: 1455 / 1421,
  12801. bottom: 0.03
  12802. }
  12803. },
  12804. back: {
  12805. height: math.unit(185, "cm"),
  12806. weight: math.unit(68, "kg"),
  12807. name: "Back",
  12808. image: {
  12809. source: "./media/characters/kauko/back.svg",
  12810. extra: 1455 / 1421,
  12811. bottom: 0.004
  12812. }
  12813. },
  12814. },
  12815. [
  12816. {
  12817. name: "Normal",
  12818. height: math.unit(185, "cm"),
  12819. default: true
  12820. },
  12821. ]
  12822. ))
  12823. characterMakers.push(() => makeCharacter(
  12824. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12825. {
  12826. front: {
  12827. height: math.unit(6, "feet"),
  12828. weight: math.unit(150, "kg"),
  12829. name: "Front",
  12830. image: {
  12831. source: "./media/characters/varg/front.svg",
  12832. extra: 1108 / 1018,
  12833. bottom: 0.0375
  12834. }
  12835. },
  12836. },
  12837. [
  12838. {
  12839. name: "Normal",
  12840. height: math.unit(5, "meters")
  12841. },
  12842. {
  12843. name: "Macro",
  12844. height: math.unit(200, "meters")
  12845. },
  12846. {
  12847. name: "Megamacro",
  12848. height: math.unit(20, "kilometers")
  12849. },
  12850. {
  12851. name: "True Size",
  12852. height: math.unit(211, "km"),
  12853. default: true
  12854. },
  12855. {
  12856. name: "Gigamacro",
  12857. height: math.unit(1000, "km")
  12858. },
  12859. {
  12860. name: "Gigamacro+",
  12861. height: math.unit(8000, "km")
  12862. },
  12863. {
  12864. name: "Teramacro",
  12865. height: math.unit(1000000, "km")
  12866. },
  12867. ]
  12868. ))
  12869. characterMakers.push(() => makeCharacter(
  12870. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12871. {
  12872. front: {
  12873. height: math.unit(7 + 7 / 12, "feet"),
  12874. weight: math.unit(267, "lb"),
  12875. name: "Front",
  12876. image: {
  12877. source: "./media/characters/dayza/front.svg",
  12878. extra: 1262 / 1200,
  12879. bottom: 0.035
  12880. }
  12881. },
  12882. side: {
  12883. height: math.unit(7 + 7 / 12, "feet"),
  12884. weight: math.unit(267, "lb"),
  12885. name: "Side",
  12886. image: {
  12887. source: "./media/characters/dayza/side.svg",
  12888. extra: 1295 / 1245,
  12889. bottom: 0.05
  12890. }
  12891. },
  12892. back: {
  12893. height: math.unit(7 + 7 / 12, "feet"),
  12894. weight: math.unit(267, "lb"),
  12895. name: "Back",
  12896. image: {
  12897. source: "./media/characters/dayza/back.svg",
  12898. extra: 1241 / 1170
  12899. }
  12900. },
  12901. },
  12902. [
  12903. {
  12904. name: "Normal",
  12905. height: math.unit(7 + 7 / 12, "feet"),
  12906. default: true
  12907. },
  12908. {
  12909. name: "Macro",
  12910. height: math.unit(155, "feet")
  12911. },
  12912. ]
  12913. ))
  12914. characterMakers.push(() => makeCharacter(
  12915. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12916. {
  12917. front: {
  12918. height: math.unit(6 + 5 / 12, "feet"),
  12919. weight: math.unit(160, "lb"),
  12920. name: "Front",
  12921. image: {
  12922. source: "./media/characters/xanthos/front.svg",
  12923. extra: 1,
  12924. bottom: 0.04
  12925. }
  12926. },
  12927. back: {
  12928. height: math.unit(6 + 5 / 12, "feet"),
  12929. weight: math.unit(160, "lb"),
  12930. name: "Back",
  12931. image: {
  12932. source: "./media/characters/xanthos/back.svg",
  12933. extra: 1,
  12934. bottom: 0.03
  12935. }
  12936. },
  12937. hand: {
  12938. height: math.unit(0.928, "feet"),
  12939. name: "Hand",
  12940. image: {
  12941. source: "./media/characters/xanthos/hand.svg"
  12942. }
  12943. },
  12944. foot: {
  12945. height: math.unit(1.286, "feet"),
  12946. name: "Foot",
  12947. image: {
  12948. source: "./media/characters/xanthos/foot.svg"
  12949. }
  12950. },
  12951. },
  12952. [
  12953. {
  12954. name: "Normal",
  12955. height: math.unit(6 + 5 / 12, "feet"),
  12956. default: true
  12957. },
  12958. {
  12959. name: "Normal+",
  12960. height: math.unit(6, "meters")
  12961. },
  12962. {
  12963. name: "Macro",
  12964. height: math.unit(40, "feet")
  12965. },
  12966. {
  12967. name: "Macro+",
  12968. height: math.unit(200, "meters")
  12969. },
  12970. {
  12971. name: "Megamacro",
  12972. height: math.unit(20, "km")
  12973. },
  12974. {
  12975. name: "Megamacro+",
  12976. height: math.unit(100, "km")
  12977. },
  12978. {
  12979. name: "Gigamacro",
  12980. height: math.unit(200, "megameters")
  12981. },
  12982. {
  12983. name: "Gigamacro+",
  12984. height: math.unit(1.5, "gigameters")
  12985. },
  12986. ]
  12987. ))
  12988. characterMakers.push(() => makeCharacter(
  12989. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12990. {
  12991. front: {
  12992. height: math.unit(6 + 3 / 12, "feet"),
  12993. weight: math.unit(215, "lb"),
  12994. name: "Front",
  12995. image: {
  12996. source: "./media/characters/grynn/front.svg",
  12997. extra: 4627 / 4209,
  12998. bottom: 0.047
  12999. }
  13000. },
  13001. },
  13002. [
  13003. {
  13004. name: "Micro",
  13005. height: math.unit(6, "inches")
  13006. },
  13007. {
  13008. name: "Normal",
  13009. height: math.unit(6 + 3 / 12, "feet"),
  13010. default: true
  13011. },
  13012. {
  13013. name: "Big",
  13014. height: math.unit(104, "feet")
  13015. },
  13016. {
  13017. name: "Macro",
  13018. height: math.unit(944, "feet")
  13019. },
  13020. {
  13021. name: "Macro+",
  13022. height: math.unit(9480, "feet")
  13023. },
  13024. {
  13025. name: "Megamacro",
  13026. height: math.unit(78752, "feet")
  13027. },
  13028. {
  13029. name: "Megamacro+",
  13030. height: math.unit(630128, "feet")
  13031. },
  13032. {
  13033. name: "Megamacro++",
  13034. height: math.unit(3150695, "feet")
  13035. },
  13036. ]
  13037. ))
  13038. characterMakers.push(() => makeCharacter(
  13039. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13040. {
  13041. front: {
  13042. height: math.unit(7 + 5 / 12, "feet"),
  13043. weight: math.unit(450, "lb"),
  13044. name: "Front",
  13045. image: {
  13046. source: "./media/characters/mocha-aura/front.svg",
  13047. extra: 1907 / 1817,
  13048. bottom: 0.04
  13049. }
  13050. },
  13051. back: {
  13052. height: math.unit(7 + 5 / 12, "feet"),
  13053. weight: math.unit(450, "lb"),
  13054. name: "Back",
  13055. image: {
  13056. source: "./media/characters/mocha-aura/back.svg",
  13057. extra: 1900 / 1825,
  13058. bottom: 0.045
  13059. }
  13060. },
  13061. },
  13062. [
  13063. {
  13064. name: "Nano",
  13065. height: math.unit(1, "nm")
  13066. },
  13067. {
  13068. name: "Megamicro",
  13069. height: math.unit(1, "mm")
  13070. },
  13071. {
  13072. name: "Micro",
  13073. height: math.unit(3, "inches")
  13074. },
  13075. {
  13076. name: "Normal",
  13077. height: math.unit(7 + 5 / 12, "feet"),
  13078. default: true
  13079. },
  13080. {
  13081. name: "Macro",
  13082. height: math.unit(30, "feet")
  13083. },
  13084. {
  13085. name: "Megamacro",
  13086. height: math.unit(3500, "feet")
  13087. },
  13088. {
  13089. name: "Teramacro",
  13090. height: math.unit(500000, "miles")
  13091. },
  13092. {
  13093. name: "Petamacro",
  13094. height: math.unit(50000000000000000, "parsecs")
  13095. },
  13096. ]
  13097. ))
  13098. characterMakers.push(() => makeCharacter(
  13099. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13100. {
  13101. front: {
  13102. height: math.unit(6, "feet"),
  13103. weight: math.unit(150, "lb"),
  13104. name: "Front",
  13105. image: {
  13106. source: "./media/characters/ilisha-devya/front.svg",
  13107. extra: 1053/1049,
  13108. bottom: 270/1323
  13109. }
  13110. },
  13111. back: {
  13112. height: math.unit(6, "feet"),
  13113. weight: math.unit(150, "lb"),
  13114. name: "Back",
  13115. image: {
  13116. source: "./media/characters/ilisha-devya/back.svg",
  13117. extra: 1131/1128,
  13118. bottom: 39/1170
  13119. }
  13120. },
  13121. },
  13122. [
  13123. {
  13124. name: "Macro",
  13125. height: math.unit(500, "feet"),
  13126. default: true
  13127. },
  13128. {
  13129. name: "Megamacro",
  13130. height: math.unit(10, "miles")
  13131. },
  13132. {
  13133. name: "Gigamacro",
  13134. height: math.unit(100000, "miles")
  13135. },
  13136. {
  13137. name: "Examacro",
  13138. height: math.unit(1e9, "lightyears")
  13139. },
  13140. {
  13141. name: "Omniversal",
  13142. height: math.unit(1e33, "lightyears")
  13143. },
  13144. {
  13145. name: "Beyond Infinite",
  13146. height: math.unit(1e100, "lightyears")
  13147. },
  13148. ]
  13149. ))
  13150. characterMakers.push(() => makeCharacter(
  13151. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13152. {
  13153. Side: {
  13154. height: math.unit(6, "feet"),
  13155. weight: math.unit(150, "lb"),
  13156. name: "Side",
  13157. image: {
  13158. source: "./media/characters/mira/side.svg",
  13159. extra: 900 / 799,
  13160. bottom: 0.02
  13161. }
  13162. },
  13163. },
  13164. [
  13165. {
  13166. name: "Human Size",
  13167. height: math.unit(6, "feet")
  13168. },
  13169. {
  13170. name: "Macro",
  13171. height: math.unit(100, "feet"),
  13172. default: true
  13173. },
  13174. {
  13175. name: "Megamacro",
  13176. height: math.unit(10, "miles")
  13177. },
  13178. {
  13179. name: "Gigamacro",
  13180. height: math.unit(25000, "miles")
  13181. },
  13182. {
  13183. name: "Teramacro",
  13184. height: math.unit(300, "AU")
  13185. },
  13186. {
  13187. name: "Full Size",
  13188. height: math.unit(4.5e10, "lightyears")
  13189. },
  13190. ]
  13191. ))
  13192. characterMakers.push(() => makeCharacter(
  13193. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13194. {
  13195. front: {
  13196. height: math.unit(6, "feet"),
  13197. weight: math.unit(150, "lb"),
  13198. name: "Front",
  13199. image: {
  13200. source: "./media/characters/holly/front.svg",
  13201. extra: 639 / 606
  13202. }
  13203. },
  13204. back: {
  13205. height: math.unit(6, "feet"),
  13206. weight: math.unit(150, "lb"),
  13207. name: "Back",
  13208. image: {
  13209. source: "./media/characters/holly/back.svg",
  13210. extra: 623 / 598
  13211. }
  13212. },
  13213. frontWorking: {
  13214. height: math.unit(6, "feet"),
  13215. weight: math.unit(150, "lb"),
  13216. name: "Front (Working)",
  13217. image: {
  13218. source: "./media/characters/holly/front-working.svg",
  13219. extra: 607 / 577,
  13220. bottom: 0.048
  13221. }
  13222. },
  13223. },
  13224. [
  13225. {
  13226. name: "Normal",
  13227. height: math.unit(12 + 3 / 12, "feet"),
  13228. default: true
  13229. },
  13230. ]
  13231. ))
  13232. characterMakers.push(() => makeCharacter(
  13233. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13234. {
  13235. front: {
  13236. height: math.unit(6, "feet"),
  13237. weight: math.unit(150, "lb"),
  13238. name: "Front",
  13239. image: {
  13240. source: "./media/characters/porter/front.svg",
  13241. extra: 1,
  13242. bottom: 0.01
  13243. }
  13244. },
  13245. frontRobes: {
  13246. height: math.unit(6, "feet"),
  13247. weight: math.unit(150, "lb"),
  13248. name: "Front (Robes)",
  13249. image: {
  13250. source: "./media/characters/porter/front-robes.svg",
  13251. extra: 1.01,
  13252. bottom: 0.01
  13253. }
  13254. },
  13255. },
  13256. [
  13257. {
  13258. name: "Normal",
  13259. height: math.unit(11 + 9 / 12, "feet"),
  13260. default: true
  13261. },
  13262. ]
  13263. ))
  13264. characterMakers.push(() => makeCharacter(
  13265. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13266. {
  13267. legendary: {
  13268. height: math.unit(6, "feet"),
  13269. weight: math.unit(150, "lb"),
  13270. name: "Legendary",
  13271. image: {
  13272. source: "./media/characters/lucy/legendary.svg",
  13273. extra: 1355 / 1100,
  13274. bottom: 0.045
  13275. }
  13276. },
  13277. },
  13278. [
  13279. {
  13280. name: "Legendary",
  13281. height: math.unit(86882 * 2, "miles"),
  13282. default: true
  13283. },
  13284. ]
  13285. ))
  13286. characterMakers.push(() => makeCharacter(
  13287. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13288. {
  13289. front: {
  13290. height: math.unit(6, "feet"),
  13291. weight: math.unit(150, "lb"),
  13292. name: "Front",
  13293. image: {
  13294. source: "./media/characters/drusilla/front.svg",
  13295. extra: 678 / 635,
  13296. bottom: 0.03
  13297. }
  13298. },
  13299. back: {
  13300. height: math.unit(6, "feet"),
  13301. weight: math.unit(150, "lb"),
  13302. name: "Back",
  13303. image: {
  13304. source: "./media/characters/drusilla/back.svg",
  13305. extra: 678 / 635,
  13306. bottom: 0.005
  13307. }
  13308. },
  13309. },
  13310. [
  13311. {
  13312. name: "Macro",
  13313. height: math.unit(100, "feet")
  13314. },
  13315. {
  13316. name: "Canon Height",
  13317. height: math.unit(2000, "feet"),
  13318. default: true
  13319. },
  13320. ]
  13321. ))
  13322. characterMakers.push(() => makeCharacter(
  13323. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13324. {
  13325. front: {
  13326. height: math.unit(6, "feet"),
  13327. weight: math.unit(180, "lb"),
  13328. name: "Front",
  13329. image: {
  13330. source: "./media/characters/renard-thatch/front.svg",
  13331. extra: 2411 / 2275,
  13332. bottom: 0.01
  13333. }
  13334. },
  13335. frontPosing: {
  13336. height: math.unit(6, "feet"),
  13337. weight: math.unit(180, "lb"),
  13338. name: "Front (Posing)",
  13339. image: {
  13340. source: "./media/characters/renard-thatch/front-posing.svg",
  13341. extra: 2381 / 2261,
  13342. bottom: 0.01
  13343. }
  13344. },
  13345. back: {
  13346. height: math.unit(6, "feet"),
  13347. weight: math.unit(180, "lb"),
  13348. name: "Back",
  13349. image: {
  13350. source: "./media/characters/renard-thatch/back.svg",
  13351. extra: 2428 / 2288
  13352. }
  13353. },
  13354. },
  13355. [
  13356. {
  13357. name: "Micro",
  13358. height: math.unit(3, "inches")
  13359. },
  13360. {
  13361. name: "Default",
  13362. height: math.unit(6, "feet"),
  13363. default: true
  13364. },
  13365. {
  13366. name: "Macro",
  13367. height: math.unit(75, "feet")
  13368. },
  13369. ]
  13370. ))
  13371. characterMakers.push(() => makeCharacter(
  13372. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13373. {
  13374. front: {
  13375. height: math.unit(1450, "feet"),
  13376. weight: math.unit(1.21e6, "tons"),
  13377. name: "Front",
  13378. image: {
  13379. source: "./media/characters/sekvra/front.svg",
  13380. extra: 1193/1190,
  13381. bottom: 78/1271
  13382. }
  13383. },
  13384. side: {
  13385. height: math.unit(1450, "feet"),
  13386. weight: math.unit(1.21e6, "tons"),
  13387. name: "Side",
  13388. image: {
  13389. source: "./media/characters/sekvra/side.svg",
  13390. extra: 1193/1190,
  13391. bottom: 52/1245
  13392. }
  13393. },
  13394. back: {
  13395. height: math.unit(1450, "feet"),
  13396. weight: math.unit(1.21e6, "tons"),
  13397. name: "Back",
  13398. image: {
  13399. source: "./media/characters/sekvra/back.svg",
  13400. extra: 1219/1216,
  13401. bottom: 21/1240
  13402. }
  13403. },
  13404. frontClothed: {
  13405. height: math.unit(1450, "feet"),
  13406. weight: math.unit(1.21e6, "tons"),
  13407. name: "Front (Clothed)",
  13408. image: {
  13409. source: "./media/characters/sekvra/front-clothed.svg",
  13410. extra: 1192/1189,
  13411. bottom: 79/1271
  13412. }
  13413. },
  13414. },
  13415. [
  13416. {
  13417. name: "Macro",
  13418. height: math.unit(1450, "feet"),
  13419. default: true
  13420. },
  13421. {
  13422. name: "Megamacro",
  13423. height: math.unit(15000, "feet")
  13424. },
  13425. ]
  13426. ))
  13427. characterMakers.push(() => makeCharacter(
  13428. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13429. {
  13430. front: {
  13431. height: math.unit(6, "feet"),
  13432. weight: math.unit(150, "lb"),
  13433. name: "Front",
  13434. image: {
  13435. source: "./media/characters/carmine/front.svg",
  13436. extra: 1,
  13437. bottom: 0.035
  13438. }
  13439. },
  13440. frontArmor: {
  13441. height: math.unit(6, "feet"),
  13442. weight: math.unit(150, "lb"),
  13443. name: "Front (Armor)",
  13444. image: {
  13445. source: "./media/characters/carmine/front-armor.svg",
  13446. extra: 1,
  13447. bottom: 0.035
  13448. }
  13449. },
  13450. },
  13451. [
  13452. {
  13453. name: "Large",
  13454. height: math.unit(1, "mile")
  13455. },
  13456. {
  13457. name: "Huge",
  13458. height: math.unit(40, "miles"),
  13459. default: true
  13460. },
  13461. {
  13462. name: "Colossal",
  13463. height: math.unit(2500, "miles")
  13464. },
  13465. ]
  13466. ))
  13467. characterMakers.push(() => makeCharacter(
  13468. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13469. {
  13470. front: {
  13471. height: math.unit(6, "feet"),
  13472. weight: math.unit(150, "lb"),
  13473. name: "Front",
  13474. image: {
  13475. source: "./media/characters/elyssia/front.svg",
  13476. extra: 2201 / 2035,
  13477. bottom: 0.05
  13478. }
  13479. },
  13480. frontClothed: {
  13481. height: math.unit(6, "feet"),
  13482. weight: math.unit(150, "lb"),
  13483. name: "Front (Clothed)",
  13484. image: {
  13485. source: "./media/characters/elyssia/front-clothed.svg",
  13486. extra: 2201 / 2035,
  13487. bottom: 0.05
  13488. }
  13489. },
  13490. back: {
  13491. height: math.unit(6, "feet"),
  13492. weight: math.unit(150, "lb"),
  13493. name: "Back",
  13494. image: {
  13495. source: "./media/characters/elyssia/back.svg",
  13496. extra: 2201 / 2035,
  13497. bottom: 0.013
  13498. }
  13499. },
  13500. },
  13501. [
  13502. {
  13503. name: "Smaller",
  13504. height: math.unit(150, "feet")
  13505. },
  13506. {
  13507. name: "Standard",
  13508. height: math.unit(1400, "feet"),
  13509. default: true
  13510. },
  13511. {
  13512. name: "Distracted",
  13513. height: math.unit(15000, "feet")
  13514. },
  13515. ]
  13516. ))
  13517. characterMakers.push(() => makeCharacter(
  13518. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13519. {
  13520. front: {
  13521. height: math.unit(7 + 4/12, "feet"),
  13522. weight: math.unit(690, "lb"),
  13523. name: "Front",
  13524. image: {
  13525. source: "./media/characters/geno-maxwell/front.svg",
  13526. extra: 984/856,
  13527. bottom: 87/1071
  13528. }
  13529. },
  13530. back: {
  13531. height: math.unit(7 + 4/12, "feet"),
  13532. weight: math.unit(690, "lb"),
  13533. name: "Back",
  13534. image: {
  13535. source: "./media/characters/geno-maxwell/back.svg",
  13536. extra: 981/854,
  13537. bottom: 57/1038
  13538. }
  13539. },
  13540. frontCostume: {
  13541. height: math.unit(7 + 4/12, "feet"),
  13542. weight: math.unit(690, "lb"),
  13543. name: "Front (Costume)",
  13544. image: {
  13545. source: "./media/characters/geno-maxwell/front-costume.svg",
  13546. extra: 984/856,
  13547. bottom: 87/1071
  13548. }
  13549. },
  13550. backcostume: {
  13551. height: math.unit(7 + 4/12, "feet"),
  13552. weight: math.unit(690, "lb"),
  13553. name: "Back (Costume)",
  13554. image: {
  13555. source: "./media/characters/geno-maxwell/back-costume.svg",
  13556. extra: 981/854,
  13557. bottom: 57/1038
  13558. }
  13559. },
  13560. },
  13561. [
  13562. {
  13563. name: "Micro",
  13564. height: math.unit(3, "inches")
  13565. },
  13566. {
  13567. name: "Normal",
  13568. height: math.unit(7 + 4 / 12, "feet"),
  13569. default: true
  13570. },
  13571. {
  13572. name: "Macro",
  13573. height: math.unit(220, "feet")
  13574. },
  13575. {
  13576. name: "Megamacro",
  13577. height: math.unit(11, "miles")
  13578. },
  13579. ]
  13580. ))
  13581. characterMakers.push(() => makeCharacter(
  13582. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13583. {
  13584. front: {
  13585. height: math.unit(7 + 4/12, "feet"),
  13586. weight: math.unit(750, "lb"),
  13587. name: "Front",
  13588. image: {
  13589. source: "./media/characters/regena-maxwell/front.svg",
  13590. extra: 984/856,
  13591. bottom: 87/1071
  13592. }
  13593. },
  13594. back: {
  13595. height: math.unit(7 + 4/12, "feet"),
  13596. weight: math.unit(750, "lb"),
  13597. name: "Back",
  13598. image: {
  13599. source: "./media/characters/regena-maxwell/back.svg",
  13600. extra: 981/854,
  13601. bottom: 57/1038
  13602. }
  13603. },
  13604. frontCostume: {
  13605. height: math.unit(7 + 4/12, "feet"),
  13606. weight: math.unit(750, "lb"),
  13607. name: "Front (Costume)",
  13608. image: {
  13609. source: "./media/characters/regena-maxwell/front-costume.svg",
  13610. extra: 984/856,
  13611. bottom: 87/1071
  13612. }
  13613. },
  13614. backcostume: {
  13615. height: math.unit(7 + 4/12, "feet"),
  13616. weight: math.unit(750, "lb"),
  13617. name: "Back (Costume)",
  13618. image: {
  13619. source: "./media/characters/regena-maxwell/back-costume.svg",
  13620. extra: 981/854,
  13621. bottom: 57/1038
  13622. }
  13623. },
  13624. },
  13625. [
  13626. {
  13627. name: "Normal",
  13628. height: math.unit(7 + 4 / 12, "feet"),
  13629. default: true
  13630. },
  13631. {
  13632. name: "Macro",
  13633. height: math.unit(220, "feet")
  13634. },
  13635. {
  13636. name: "Megamacro",
  13637. height: math.unit(11, "miles")
  13638. },
  13639. ]
  13640. ))
  13641. characterMakers.push(() => makeCharacter(
  13642. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13643. {
  13644. front: {
  13645. height: math.unit(6, "feet"),
  13646. weight: math.unit(150, "lb"),
  13647. name: "Front",
  13648. image: {
  13649. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13650. extra: 860 / 690,
  13651. bottom: 0.03
  13652. }
  13653. },
  13654. },
  13655. [
  13656. {
  13657. name: "Normal",
  13658. height: math.unit(1.7, "meters"),
  13659. default: true
  13660. },
  13661. ]
  13662. ))
  13663. characterMakers.push(() => makeCharacter(
  13664. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13665. {
  13666. front: {
  13667. height: math.unit(6, "feet"),
  13668. weight: math.unit(150, "lb"),
  13669. name: "Front",
  13670. image: {
  13671. source: "./media/characters/quilly/front.svg",
  13672. extra: 890 / 776
  13673. }
  13674. },
  13675. },
  13676. [
  13677. {
  13678. name: "Gigamacro",
  13679. height: math.unit(404090, "miles"),
  13680. default: true
  13681. },
  13682. ]
  13683. ))
  13684. characterMakers.push(() => makeCharacter(
  13685. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13686. {
  13687. front: {
  13688. height: math.unit(7 + 8 / 12, "feet"),
  13689. weight: math.unit(350, "lb"),
  13690. name: "Front",
  13691. image: {
  13692. source: "./media/characters/tempest/front.svg",
  13693. extra: 1175 / 1086,
  13694. bottom: 0.02
  13695. }
  13696. },
  13697. },
  13698. [
  13699. {
  13700. name: "Normal",
  13701. height: math.unit(7 + 8 / 12, "feet"),
  13702. default: true
  13703. },
  13704. ]
  13705. ))
  13706. characterMakers.push(() => makeCharacter(
  13707. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13708. {
  13709. side: {
  13710. height: math.unit(4 + 5 / 12, "feet"),
  13711. weight: math.unit(80, "lb"),
  13712. name: "Side",
  13713. image: {
  13714. source: "./media/characters/rodger/side.svg",
  13715. extra: 1235 / 1118
  13716. }
  13717. },
  13718. },
  13719. [
  13720. {
  13721. name: "Micro",
  13722. height: math.unit(1, "inch")
  13723. },
  13724. {
  13725. name: "Normal",
  13726. height: math.unit(4 + 5 / 12, "feet"),
  13727. default: true
  13728. },
  13729. {
  13730. name: "Macro",
  13731. height: math.unit(120, "feet")
  13732. },
  13733. ]
  13734. ))
  13735. characterMakers.push(() => makeCharacter(
  13736. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13737. {
  13738. front: {
  13739. height: math.unit(6, "feet"),
  13740. weight: math.unit(150, "lb"),
  13741. name: "Front",
  13742. image: {
  13743. source: "./media/characters/danyel/front.svg",
  13744. extra: 1185 / 1123,
  13745. bottom: 0.05
  13746. }
  13747. },
  13748. },
  13749. [
  13750. {
  13751. name: "Shrunken",
  13752. height: math.unit(0.5, "mm")
  13753. },
  13754. {
  13755. name: "Micro",
  13756. height: math.unit(1, "mm"),
  13757. default: true
  13758. },
  13759. {
  13760. name: "Upsized",
  13761. height: math.unit(5 + 5 / 12, "feet")
  13762. },
  13763. ]
  13764. ))
  13765. characterMakers.push(() => makeCharacter(
  13766. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13767. {
  13768. front: {
  13769. height: math.unit(5 + 6 / 12, "feet"),
  13770. weight: math.unit(200, "lb"),
  13771. name: "Front",
  13772. image: {
  13773. source: "./media/characters/vivian-bijoux/front.svg",
  13774. extra: 1217/1209,
  13775. bottom: 76/1293
  13776. }
  13777. },
  13778. back: {
  13779. height: math.unit(5 + 6 / 12, "feet"),
  13780. weight: math.unit(200, "lb"),
  13781. name: "Back",
  13782. image: {
  13783. source: "./media/characters/vivian-bijoux/back.svg",
  13784. extra: 1214/1208,
  13785. bottom: 51/1265
  13786. }
  13787. },
  13788. dressed: {
  13789. height: math.unit(5 + 6 / 12, "feet"),
  13790. weight: math.unit(200, "lb"),
  13791. name: "Dressed",
  13792. image: {
  13793. source: "./media/characters/vivian-bijoux/dressed.svg",
  13794. extra: 1217/1209,
  13795. bottom: 76/1293
  13796. }
  13797. },
  13798. },
  13799. [
  13800. {
  13801. name: "Normal",
  13802. height: math.unit(5 + 6 / 12, "feet"),
  13803. default: true
  13804. },
  13805. {
  13806. name: "Bad Dream",
  13807. height: math.unit(500, "feet")
  13808. },
  13809. {
  13810. name: "Nightmare",
  13811. height: math.unit(500, "miles")
  13812. },
  13813. ]
  13814. ))
  13815. characterMakers.push(() => makeCharacter(
  13816. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13817. {
  13818. front: {
  13819. height: math.unit(6 + 1 / 12, "feet"),
  13820. weight: math.unit(260, "lb"),
  13821. name: "Front",
  13822. image: {
  13823. source: "./media/characters/zeta/front.svg",
  13824. extra: 1968 / 1889,
  13825. bottom: 0.06
  13826. }
  13827. },
  13828. back: {
  13829. height: math.unit(6 + 1 / 12, "feet"),
  13830. weight: math.unit(260, "lb"),
  13831. name: "Back",
  13832. image: {
  13833. source: "./media/characters/zeta/back.svg",
  13834. extra: 1944 / 1858,
  13835. bottom: 0.03
  13836. }
  13837. },
  13838. hand: {
  13839. height: math.unit(1.112, "feet"),
  13840. name: "Hand",
  13841. image: {
  13842. source: "./media/characters/zeta/hand.svg"
  13843. }
  13844. },
  13845. foot: {
  13846. height: math.unit(1.48, "feet"),
  13847. name: "Foot",
  13848. image: {
  13849. source: "./media/characters/zeta/foot.svg"
  13850. }
  13851. },
  13852. },
  13853. [
  13854. {
  13855. name: "Micro",
  13856. height: math.unit(6, "inches")
  13857. },
  13858. {
  13859. name: "Normal",
  13860. height: math.unit(6 + 1 / 12, "feet"),
  13861. default: true
  13862. },
  13863. {
  13864. name: "Macro",
  13865. height: math.unit(20, "feet")
  13866. },
  13867. ]
  13868. ))
  13869. characterMakers.push(() => makeCharacter(
  13870. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13871. {
  13872. front: {
  13873. height: math.unit(6, "feet"),
  13874. weight: math.unit(150, "lb"),
  13875. name: "Front",
  13876. image: {
  13877. source: "./media/characters/jamie-larsen/front.svg",
  13878. extra: 962 / 933,
  13879. bottom: 0.02
  13880. }
  13881. },
  13882. back: {
  13883. height: math.unit(6, "feet"),
  13884. weight: math.unit(150, "lb"),
  13885. name: "Back",
  13886. image: {
  13887. source: "./media/characters/jamie-larsen/back.svg",
  13888. extra: 997 / 946
  13889. }
  13890. },
  13891. },
  13892. [
  13893. {
  13894. name: "Macro",
  13895. height: math.unit(28 + 7 / 12, "feet"),
  13896. default: true
  13897. },
  13898. {
  13899. name: "Macro+",
  13900. height: math.unit(180, "feet")
  13901. },
  13902. {
  13903. name: "Megamacro",
  13904. height: math.unit(10, "miles")
  13905. },
  13906. {
  13907. name: "Gigamacro",
  13908. height: math.unit(200000, "miles")
  13909. },
  13910. ]
  13911. ))
  13912. characterMakers.push(() => makeCharacter(
  13913. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13914. {
  13915. front: {
  13916. height: math.unit(6, "feet"),
  13917. weight: math.unit(120, "lb"),
  13918. name: "Front",
  13919. image: {
  13920. source: "./media/characters/vance/front.svg",
  13921. extra: 1980 / 1890,
  13922. bottom: 0.09
  13923. }
  13924. },
  13925. back: {
  13926. height: math.unit(6, "feet"),
  13927. weight: math.unit(120, "lb"),
  13928. name: "Back",
  13929. image: {
  13930. source: "./media/characters/vance/back.svg",
  13931. extra: 2081 / 1994,
  13932. bottom: 0.014
  13933. }
  13934. },
  13935. hand: {
  13936. height: math.unit(0.88, "feet"),
  13937. name: "Hand",
  13938. image: {
  13939. source: "./media/characters/vance/hand.svg"
  13940. }
  13941. },
  13942. foot: {
  13943. height: math.unit(0.64, "feet"),
  13944. name: "Foot",
  13945. image: {
  13946. source: "./media/characters/vance/foot.svg"
  13947. }
  13948. },
  13949. },
  13950. [
  13951. {
  13952. name: "Small",
  13953. height: math.unit(90, "feet"),
  13954. default: true
  13955. },
  13956. {
  13957. name: "Macro",
  13958. height: math.unit(100, "meters")
  13959. },
  13960. {
  13961. name: "Megamacro",
  13962. height: math.unit(15, "miles")
  13963. },
  13964. ]
  13965. ))
  13966. characterMakers.push(() => makeCharacter(
  13967. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13968. {
  13969. front: {
  13970. height: math.unit(6, "feet"),
  13971. weight: math.unit(180, "lb"),
  13972. name: "Front",
  13973. image: {
  13974. source: "./media/characters/xochitl/front.svg",
  13975. extra: 2297 / 2261,
  13976. bottom: 0.065
  13977. }
  13978. },
  13979. back: {
  13980. height: math.unit(6, "feet"),
  13981. weight: math.unit(180, "lb"),
  13982. name: "Back",
  13983. image: {
  13984. source: "./media/characters/xochitl/back.svg",
  13985. extra: 2386 / 2354,
  13986. bottom: 0.01
  13987. }
  13988. },
  13989. foot: {
  13990. height: math.unit(6 / 5 * 1.15, "feet"),
  13991. weight: math.unit(150, "lb"),
  13992. name: "Foot",
  13993. image: {
  13994. source: "./media/characters/xochitl/foot.svg"
  13995. }
  13996. },
  13997. },
  13998. [
  13999. {
  14000. name: "Macro",
  14001. height: math.unit(80, "feet")
  14002. },
  14003. {
  14004. name: "Macro+",
  14005. height: math.unit(400, "feet"),
  14006. default: true
  14007. },
  14008. {
  14009. name: "Gigamacro",
  14010. height: math.unit(80000, "miles")
  14011. },
  14012. {
  14013. name: "Gigamacro+",
  14014. height: math.unit(400000, "miles")
  14015. },
  14016. {
  14017. name: "Teramacro",
  14018. height: math.unit(300, "AU")
  14019. },
  14020. ]
  14021. ))
  14022. characterMakers.push(() => makeCharacter(
  14023. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14024. {
  14025. front: {
  14026. height: math.unit(6, "feet"),
  14027. weight: math.unit(150, "lb"),
  14028. name: "Front",
  14029. image: {
  14030. source: "./media/characters/vincent/front.svg",
  14031. extra: 1130 / 1080,
  14032. bottom: 0.055
  14033. }
  14034. },
  14035. beak: {
  14036. height: math.unit(6 * 0.1, "feet"),
  14037. name: "Beak",
  14038. image: {
  14039. source: "./media/characters/vincent/beak.svg"
  14040. }
  14041. },
  14042. hand: {
  14043. height: math.unit(6 * 0.85, "feet"),
  14044. weight: math.unit(150, "lb"),
  14045. name: "Hand",
  14046. image: {
  14047. source: "./media/characters/vincent/hand.svg"
  14048. }
  14049. },
  14050. foot: {
  14051. height: math.unit(6 * 0.19, "feet"),
  14052. weight: math.unit(150, "lb"),
  14053. name: "Foot",
  14054. image: {
  14055. source: "./media/characters/vincent/foot.svg"
  14056. }
  14057. },
  14058. },
  14059. [
  14060. {
  14061. name: "Base",
  14062. height: math.unit(6 + 5 / 12, "feet"),
  14063. default: true
  14064. },
  14065. {
  14066. name: "Macro",
  14067. height: math.unit(300, "feet")
  14068. },
  14069. {
  14070. name: "Megamacro",
  14071. height: math.unit(2, "miles")
  14072. },
  14073. {
  14074. name: "Gigamacro",
  14075. height: math.unit(1000, "miles")
  14076. },
  14077. ]
  14078. ))
  14079. characterMakers.push(() => makeCharacter(
  14080. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14081. {
  14082. front: {
  14083. height: math.unit(2, "meters"),
  14084. weight: math.unit(500, "kg"),
  14085. name: "Front",
  14086. image: {
  14087. source: "./media/characters/coatl/front.svg",
  14088. extra: 3948 / 3500,
  14089. bottom: 0.082
  14090. }
  14091. },
  14092. },
  14093. [
  14094. {
  14095. name: "Normal",
  14096. height: math.unit(4, "meters")
  14097. },
  14098. {
  14099. name: "Macro",
  14100. height: math.unit(100, "meters"),
  14101. default: true
  14102. },
  14103. {
  14104. name: "Macro+",
  14105. height: math.unit(300, "meters")
  14106. },
  14107. {
  14108. name: "Megamacro",
  14109. height: math.unit(3, "gigameters")
  14110. },
  14111. {
  14112. name: "Megamacro+",
  14113. height: math.unit(300, "terameters")
  14114. },
  14115. {
  14116. name: "Megamacro++",
  14117. height: math.unit(3, "lightyears")
  14118. },
  14119. ]
  14120. ))
  14121. characterMakers.push(() => makeCharacter(
  14122. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14123. {
  14124. front: {
  14125. height: math.unit(6, "feet"),
  14126. weight: math.unit(50, "kg"),
  14127. name: "front",
  14128. image: {
  14129. source: "./media/characters/shiroryu/front.svg",
  14130. extra: 1990 / 1935
  14131. }
  14132. },
  14133. },
  14134. [
  14135. {
  14136. name: "Mortal Mingling",
  14137. height: math.unit(3, "meters")
  14138. },
  14139. {
  14140. name: "Kaiju-ish",
  14141. height: math.unit(250, "meters")
  14142. },
  14143. {
  14144. name: "Somewhat Godly",
  14145. height: math.unit(400, "km"),
  14146. default: true
  14147. },
  14148. {
  14149. name: "Planetary",
  14150. height: math.unit(300, "megameters")
  14151. },
  14152. {
  14153. name: "Galaxy-dwarfing",
  14154. height: math.unit(450, "kiloparsecs")
  14155. },
  14156. {
  14157. name: "Universe Eater",
  14158. height: math.unit(150, "gigaparsecs")
  14159. },
  14160. {
  14161. name: "Almost Immeasurable",
  14162. height: math.unit(1.3e266, "yottaparsecs")
  14163. },
  14164. ]
  14165. ))
  14166. characterMakers.push(() => makeCharacter(
  14167. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14168. {
  14169. front: {
  14170. height: math.unit(6, "feet"),
  14171. weight: math.unit(150, "lb"),
  14172. name: "Front",
  14173. image: {
  14174. source: "./media/characters/umeko/front.svg",
  14175. extra: 1,
  14176. bottom: 0.019
  14177. }
  14178. },
  14179. frontArmored: {
  14180. height: math.unit(6, "feet"),
  14181. weight: math.unit(150, "lb"),
  14182. name: "Front (Armored)",
  14183. image: {
  14184. source: "./media/characters/umeko/front-armored.svg",
  14185. extra: 1,
  14186. bottom: 0.021
  14187. }
  14188. },
  14189. },
  14190. [
  14191. {
  14192. name: "Macro",
  14193. height: math.unit(220, "feet"),
  14194. default: true
  14195. },
  14196. {
  14197. name: "Guardian Dragon",
  14198. height: math.unit(50, "miles")
  14199. },
  14200. {
  14201. name: "Cosmic",
  14202. height: math.unit(800000, "miles")
  14203. },
  14204. ]
  14205. ))
  14206. characterMakers.push(() => makeCharacter(
  14207. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14208. {
  14209. front: {
  14210. height: math.unit(6, "feet"),
  14211. weight: math.unit(150, "lb"),
  14212. name: "Front",
  14213. image: {
  14214. source: "./media/characters/cassidy/front.svg",
  14215. extra: 810/808,
  14216. bottom: 41/851
  14217. }
  14218. },
  14219. },
  14220. [
  14221. {
  14222. name: "Canon Height",
  14223. height: math.unit(120, "feet"),
  14224. default: true
  14225. },
  14226. {
  14227. name: "Macro+",
  14228. height: math.unit(400, "feet")
  14229. },
  14230. {
  14231. name: "Macro++",
  14232. height: math.unit(4000, "feet")
  14233. },
  14234. {
  14235. name: "Megamacro",
  14236. height: math.unit(3, "miles")
  14237. },
  14238. ]
  14239. ))
  14240. characterMakers.push(() => makeCharacter(
  14241. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14242. {
  14243. front: {
  14244. height: math.unit(6, "feet"),
  14245. weight: math.unit(150, "lb"),
  14246. name: "Front",
  14247. image: {
  14248. source: "./media/characters/isaac/front.svg",
  14249. extra: 896 / 815,
  14250. bottom: 0.11
  14251. }
  14252. },
  14253. },
  14254. [
  14255. {
  14256. name: "Human Size",
  14257. height: math.unit(8, "feet"),
  14258. default: true
  14259. },
  14260. {
  14261. name: "Macro",
  14262. height: math.unit(400, "feet")
  14263. },
  14264. {
  14265. name: "Megamacro",
  14266. height: math.unit(50, "miles")
  14267. },
  14268. {
  14269. name: "Canon Height",
  14270. height: math.unit(200, "AU")
  14271. },
  14272. ]
  14273. ))
  14274. characterMakers.push(() => makeCharacter(
  14275. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14276. {
  14277. front: {
  14278. height: math.unit(6, "feet"),
  14279. weight: math.unit(72, "kg"),
  14280. name: "Front",
  14281. image: {
  14282. source: "./media/characters/sleekit/front.svg",
  14283. extra: 4693 / 4487,
  14284. bottom: 0.012
  14285. }
  14286. },
  14287. },
  14288. [
  14289. {
  14290. name: "Minimum Height",
  14291. height: math.unit(10, "meters")
  14292. },
  14293. {
  14294. name: "Smaller",
  14295. height: math.unit(25, "meters")
  14296. },
  14297. {
  14298. name: "Larger",
  14299. height: math.unit(38, "meters"),
  14300. default: true
  14301. },
  14302. {
  14303. name: "Maximum height",
  14304. height: math.unit(100, "meters")
  14305. },
  14306. ]
  14307. ))
  14308. characterMakers.push(() => makeCharacter(
  14309. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14310. {
  14311. front: {
  14312. height: math.unit(6, "feet"),
  14313. weight: math.unit(150, "lb"),
  14314. name: "Front",
  14315. image: {
  14316. source: "./media/characters/nillia/front.svg",
  14317. extra: 2195 / 2037,
  14318. bottom: 0.005
  14319. }
  14320. },
  14321. back: {
  14322. height: math.unit(6, "feet"),
  14323. weight: math.unit(150, "lb"),
  14324. name: "Back",
  14325. image: {
  14326. source: "./media/characters/nillia/back.svg",
  14327. extra: 2195 / 2037,
  14328. bottom: 0.005
  14329. }
  14330. },
  14331. },
  14332. [
  14333. {
  14334. name: "Canon Height",
  14335. height: math.unit(489, "feet"),
  14336. default: true
  14337. }
  14338. ]
  14339. ))
  14340. characterMakers.push(() => makeCharacter(
  14341. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14342. {
  14343. front: {
  14344. height: math.unit(6, "feet"),
  14345. weight: math.unit(150, "lb"),
  14346. name: "Front",
  14347. image: {
  14348. source: "./media/characters/mesmyriza/front.svg",
  14349. extra: 2067 / 1784,
  14350. bottom: 0.035
  14351. }
  14352. },
  14353. foot: {
  14354. height: math.unit(6 / (250 / 35), "feet"),
  14355. name: "Foot",
  14356. image: {
  14357. source: "./media/characters/mesmyriza/foot.svg"
  14358. }
  14359. },
  14360. },
  14361. [
  14362. {
  14363. name: "Macro",
  14364. height: math.unit(457, "meters"),
  14365. default: true
  14366. },
  14367. {
  14368. name: "Megamacro",
  14369. height: math.unit(8, "megameters")
  14370. },
  14371. ]
  14372. ))
  14373. characterMakers.push(() => makeCharacter(
  14374. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14375. {
  14376. front: {
  14377. height: math.unit(6, "feet"),
  14378. weight: math.unit(250, "lb"),
  14379. name: "Front",
  14380. image: {
  14381. source: "./media/characters/saudade/front.svg",
  14382. extra: 1172 / 1139,
  14383. bottom: 0.035
  14384. }
  14385. },
  14386. },
  14387. [
  14388. {
  14389. name: "Micro",
  14390. height: math.unit(3, "inches")
  14391. },
  14392. {
  14393. name: "Normal",
  14394. height: math.unit(6, "feet"),
  14395. default: true
  14396. },
  14397. {
  14398. name: "Macro",
  14399. height: math.unit(50, "feet")
  14400. },
  14401. {
  14402. name: "Megamacro",
  14403. height: math.unit(2800, "feet")
  14404. },
  14405. ]
  14406. ))
  14407. characterMakers.push(() => makeCharacter(
  14408. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14409. {
  14410. front: {
  14411. height: math.unit(5 + 4 / 12, "feet"),
  14412. weight: math.unit(100, "lb"),
  14413. name: "Front",
  14414. image: {
  14415. source: "./media/characters/keireer/front.svg",
  14416. extra: 716 / 666,
  14417. bottom: 0.05
  14418. }
  14419. },
  14420. },
  14421. [
  14422. {
  14423. name: "Normal",
  14424. height: math.unit(5 + 4 / 12, "feet"),
  14425. default: true
  14426. },
  14427. ]
  14428. ))
  14429. characterMakers.push(() => makeCharacter(
  14430. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14431. {
  14432. front: {
  14433. height: math.unit(6, "feet"),
  14434. weight: math.unit(90, "kg"),
  14435. name: "Front",
  14436. image: {
  14437. source: "./media/characters/mirja/front.svg",
  14438. extra: 1789 / 1683,
  14439. bottom: 0.05
  14440. }
  14441. },
  14442. frontDressed: {
  14443. height: math.unit(6, "feet"),
  14444. weight: math.unit(90, "lb"),
  14445. name: "Front (Dressed)",
  14446. image: {
  14447. source: "./media/characters/mirja/front-dressed.svg",
  14448. extra: 1789 / 1683,
  14449. bottom: 0.05
  14450. }
  14451. },
  14452. back: {
  14453. height: math.unit(6, "feet"),
  14454. weight: math.unit(90, "lb"),
  14455. name: "Back",
  14456. image: {
  14457. source: "./media/characters/mirja/back.svg",
  14458. extra: 953 / 917,
  14459. bottom: 0.017
  14460. }
  14461. },
  14462. },
  14463. [
  14464. {
  14465. name: "\"Incognito\"",
  14466. height: math.unit(3, "meters")
  14467. },
  14468. {
  14469. name: "Strolling Size",
  14470. height: math.unit(15, "km")
  14471. },
  14472. {
  14473. name: "Larger Strolling Size",
  14474. height: math.unit(400, "km")
  14475. },
  14476. {
  14477. name: "Preferred Size",
  14478. height: math.unit(5000, "km")
  14479. },
  14480. {
  14481. name: "True Size",
  14482. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14483. default: true
  14484. },
  14485. ]
  14486. ))
  14487. characterMakers.push(() => makeCharacter(
  14488. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14489. {
  14490. front: {
  14491. height: math.unit(15, "feet"),
  14492. weight: math.unit(880, "kg"),
  14493. name: "Front",
  14494. image: {
  14495. source: "./media/characters/nightraver/front.svg",
  14496. extra: 2444 / 2160,
  14497. bottom: 0.027
  14498. }
  14499. },
  14500. back: {
  14501. height: math.unit(15, "feet"),
  14502. weight: math.unit(880, "kg"),
  14503. name: "Back",
  14504. image: {
  14505. source: "./media/characters/nightraver/back.svg",
  14506. extra: 2309 / 2180,
  14507. bottom: 0.005
  14508. }
  14509. },
  14510. sole: {
  14511. height: math.unit(2.878, "feet"),
  14512. name: "Sole",
  14513. image: {
  14514. source: "./media/characters/nightraver/sole.svg"
  14515. }
  14516. },
  14517. foot: {
  14518. height: math.unit(2.285, "feet"),
  14519. name: "Foot",
  14520. image: {
  14521. source: "./media/characters/nightraver/foot.svg"
  14522. }
  14523. },
  14524. maw: {
  14525. height: math.unit(2.67, "feet"),
  14526. name: "Maw",
  14527. image: {
  14528. source: "./media/characters/nightraver/maw.svg"
  14529. }
  14530. },
  14531. },
  14532. [
  14533. {
  14534. name: "Micro",
  14535. height: math.unit(1, "cm")
  14536. },
  14537. {
  14538. name: "Normal",
  14539. height: math.unit(15, "feet"),
  14540. default: true
  14541. },
  14542. {
  14543. name: "Macro",
  14544. height: math.unit(300, "feet")
  14545. },
  14546. {
  14547. name: "Megamacro",
  14548. height: math.unit(300, "miles")
  14549. },
  14550. {
  14551. name: "Gigamacro",
  14552. height: math.unit(10000, "miles")
  14553. },
  14554. ]
  14555. ))
  14556. characterMakers.push(() => makeCharacter(
  14557. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14558. {
  14559. side: {
  14560. height: math.unit(2, "inches"),
  14561. weight: math.unit(5, "grams"),
  14562. name: "Side",
  14563. image: {
  14564. source: "./media/characters/arc/side.svg"
  14565. }
  14566. },
  14567. },
  14568. [
  14569. {
  14570. name: "Micro",
  14571. height: math.unit(2, "inches"),
  14572. default: true
  14573. },
  14574. ]
  14575. ))
  14576. characterMakers.push(() => makeCharacter(
  14577. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14578. {
  14579. front: {
  14580. height: math.unit(1.1938, "meters"),
  14581. weight: math.unit(54, "kg"),
  14582. name: "Front",
  14583. image: {
  14584. source: "./media/characters/nebula-shahar/front.svg",
  14585. extra: 1642 / 1436,
  14586. bottom: 0.06
  14587. }
  14588. },
  14589. },
  14590. [
  14591. {
  14592. name: "Megamicro",
  14593. height: math.unit(0.3, "mm")
  14594. },
  14595. {
  14596. name: "Micro",
  14597. height: math.unit(3, "cm")
  14598. },
  14599. {
  14600. name: "Normal",
  14601. height: math.unit(138, "cm"),
  14602. default: true
  14603. },
  14604. {
  14605. name: "Macro",
  14606. height: math.unit(30, "m")
  14607. },
  14608. ]
  14609. ))
  14610. characterMakers.push(() => makeCharacter(
  14611. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14612. {
  14613. front: {
  14614. height: math.unit(5.24, "feet"),
  14615. weight: math.unit(150, "lb"),
  14616. name: "Front",
  14617. image: {
  14618. source: "./media/characters/shayla/front.svg",
  14619. extra: 1512 / 1414,
  14620. bottom: 0.01
  14621. }
  14622. },
  14623. back: {
  14624. height: math.unit(5.24, "feet"),
  14625. weight: math.unit(150, "lb"),
  14626. name: "Back",
  14627. image: {
  14628. source: "./media/characters/shayla/back.svg",
  14629. extra: 1512 / 1414
  14630. }
  14631. },
  14632. hand: {
  14633. height: math.unit(0.7781496062992126, "feet"),
  14634. name: "Hand",
  14635. image: {
  14636. source: "./media/characters/shayla/hand.svg"
  14637. }
  14638. },
  14639. foot: {
  14640. height: math.unit(1.4206036745406823, "feet"),
  14641. name: "Foot",
  14642. image: {
  14643. source: "./media/characters/shayla/foot.svg"
  14644. }
  14645. },
  14646. },
  14647. [
  14648. {
  14649. name: "Micro",
  14650. height: math.unit(0.32, "feet")
  14651. },
  14652. {
  14653. name: "Normal",
  14654. height: math.unit(5.24, "feet"),
  14655. default: true
  14656. },
  14657. {
  14658. name: "Macro",
  14659. height: math.unit(492.12, "feet")
  14660. },
  14661. {
  14662. name: "Megamacro",
  14663. height: math.unit(186.41, "miles")
  14664. },
  14665. ]
  14666. ))
  14667. characterMakers.push(() => makeCharacter(
  14668. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14669. {
  14670. front: {
  14671. height: math.unit(2.2, "m"),
  14672. weight: math.unit(120, "kg"),
  14673. name: "Front",
  14674. image: {
  14675. source: "./media/characters/pia-jr/front.svg",
  14676. extra: 1000 / 970,
  14677. bottom: 0.035
  14678. }
  14679. },
  14680. hand: {
  14681. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14682. name: "Hand",
  14683. image: {
  14684. source: "./media/characters/pia-jr/hand.svg"
  14685. }
  14686. },
  14687. paw: {
  14688. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14689. name: "Paw",
  14690. image: {
  14691. source: "./media/characters/pia-jr/paw.svg"
  14692. }
  14693. },
  14694. },
  14695. [
  14696. {
  14697. name: "Micro",
  14698. height: math.unit(1.2, "cm")
  14699. },
  14700. {
  14701. name: "Normal",
  14702. height: math.unit(2.2, "m"),
  14703. default: true
  14704. },
  14705. {
  14706. name: "Macro",
  14707. height: math.unit(180, "m")
  14708. },
  14709. {
  14710. name: "Megamacro",
  14711. height: math.unit(420, "km")
  14712. },
  14713. ]
  14714. ))
  14715. characterMakers.push(() => makeCharacter(
  14716. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14717. {
  14718. front: {
  14719. height: math.unit(2, "m"),
  14720. weight: math.unit(115, "kg"),
  14721. name: "Front",
  14722. image: {
  14723. source: "./media/characters/pia-sr/front.svg",
  14724. extra: 760 / 730,
  14725. bottom: 0.015
  14726. }
  14727. },
  14728. back: {
  14729. height: math.unit(2, "m"),
  14730. weight: math.unit(115, "kg"),
  14731. name: "Back",
  14732. image: {
  14733. source: "./media/characters/pia-sr/back.svg",
  14734. extra: 760 / 730,
  14735. bottom: 0.01
  14736. }
  14737. },
  14738. hand: {
  14739. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14740. name: "Hand",
  14741. image: {
  14742. source: "./media/characters/pia-sr/hand.svg"
  14743. }
  14744. },
  14745. foot: {
  14746. height: math.unit(1.83, "feet"),
  14747. name: "Foot",
  14748. image: {
  14749. source: "./media/characters/pia-sr/foot.svg"
  14750. }
  14751. },
  14752. },
  14753. [
  14754. {
  14755. name: "Micro",
  14756. height: math.unit(88, "mm")
  14757. },
  14758. {
  14759. name: "Normal",
  14760. height: math.unit(2, "m"),
  14761. default: true
  14762. },
  14763. {
  14764. name: "Macro",
  14765. height: math.unit(200, "m")
  14766. },
  14767. {
  14768. name: "Megamacro",
  14769. height: math.unit(420, "km")
  14770. },
  14771. ]
  14772. ))
  14773. characterMakers.push(() => makeCharacter(
  14774. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14775. {
  14776. front: {
  14777. height: math.unit(8 + 2 / 12, "feet"),
  14778. weight: math.unit(300, "lb"),
  14779. name: "Front",
  14780. image: {
  14781. source: "./media/characters/kibibyte/front.svg",
  14782. extra: 2221 / 2098,
  14783. bottom: 0.04
  14784. }
  14785. },
  14786. },
  14787. [
  14788. {
  14789. name: "Normal",
  14790. height: math.unit(8 + 2 / 12, "feet"),
  14791. default: true
  14792. },
  14793. {
  14794. name: "Socialable Macro",
  14795. height: math.unit(50, "feet")
  14796. },
  14797. {
  14798. name: "Macro",
  14799. height: math.unit(300, "feet")
  14800. },
  14801. {
  14802. name: "Megamacro",
  14803. height: math.unit(500, "miles")
  14804. },
  14805. ]
  14806. ))
  14807. characterMakers.push(() => makeCharacter(
  14808. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14809. {
  14810. front: {
  14811. height: math.unit(6, "feet"),
  14812. weight: math.unit(150, "lb"),
  14813. name: "Front",
  14814. image: {
  14815. source: "./media/characters/felix/front.svg",
  14816. extra: 762 / 722,
  14817. bottom: 0.02
  14818. }
  14819. },
  14820. frontClothed: {
  14821. height: math.unit(6, "feet"),
  14822. weight: math.unit(150, "lb"),
  14823. name: "Front (Clothed)",
  14824. image: {
  14825. source: "./media/characters/felix/front-clothed.svg",
  14826. extra: 762 / 722,
  14827. bottom: 0.02
  14828. }
  14829. },
  14830. },
  14831. [
  14832. {
  14833. name: "Normal",
  14834. height: math.unit(6 + 8 / 12, "feet"),
  14835. default: true
  14836. },
  14837. {
  14838. name: "Macro",
  14839. height: math.unit(2600, "feet")
  14840. },
  14841. {
  14842. name: "Megamacro",
  14843. height: math.unit(450, "miles")
  14844. },
  14845. ]
  14846. ))
  14847. characterMakers.push(() => makeCharacter(
  14848. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14849. {
  14850. front: {
  14851. height: math.unit(6 + 1 / 12, "feet"),
  14852. weight: math.unit(250, "lb"),
  14853. name: "Front",
  14854. image: {
  14855. source: "./media/characters/tobo/front.svg",
  14856. extra: 608 / 586,
  14857. bottom: 0.023
  14858. }
  14859. },
  14860. back: {
  14861. height: math.unit(6 + 1 / 12, "feet"),
  14862. weight: math.unit(250, "lb"),
  14863. name: "Back",
  14864. image: {
  14865. source: "./media/characters/tobo/back.svg",
  14866. extra: 608 / 586
  14867. }
  14868. },
  14869. },
  14870. [
  14871. {
  14872. name: "Nano",
  14873. height: math.unit(2, "nm")
  14874. },
  14875. {
  14876. name: "Megamicro",
  14877. height: math.unit(0.1, "mm")
  14878. },
  14879. {
  14880. name: "Micro",
  14881. height: math.unit(1, "inch"),
  14882. default: true
  14883. },
  14884. {
  14885. name: "Human-sized",
  14886. height: math.unit(6 + 1 / 12, "feet")
  14887. },
  14888. {
  14889. name: "Macro",
  14890. height: math.unit(250, "feet")
  14891. },
  14892. {
  14893. name: "Megamacro",
  14894. height: math.unit(75, "miles")
  14895. },
  14896. {
  14897. name: "Texas-sized",
  14898. height: math.unit(750, "miles")
  14899. },
  14900. {
  14901. name: "Teramacro",
  14902. height: math.unit(50000, "miles")
  14903. },
  14904. ]
  14905. ))
  14906. characterMakers.push(() => makeCharacter(
  14907. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14908. {
  14909. front: {
  14910. height: math.unit(6, "feet"),
  14911. weight: math.unit(269, "lb"),
  14912. name: "Front",
  14913. image: {
  14914. source: "./media/characters/danny-kapowsky/front.svg",
  14915. extra: 766 / 736,
  14916. bottom: 0.044
  14917. }
  14918. },
  14919. back: {
  14920. height: math.unit(6, "feet"),
  14921. weight: math.unit(269, "lb"),
  14922. name: "Back",
  14923. image: {
  14924. source: "./media/characters/danny-kapowsky/back.svg",
  14925. extra: 797 / 760,
  14926. bottom: 0.025
  14927. }
  14928. },
  14929. },
  14930. [
  14931. {
  14932. name: "Macro",
  14933. height: math.unit(150, "feet"),
  14934. default: true
  14935. },
  14936. {
  14937. name: "Macro+",
  14938. height: math.unit(200, "feet")
  14939. },
  14940. {
  14941. name: "Macro++",
  14942. height: math.unit(300, "feet")
  14943. },
  14944. {
  14945. name: "Macro+++",
  14946. height: math.unit(400, "feet")
  14947. },
  14948. ]
  14949. ))
  14950. characterMakers.push(() => makeCharacter(
  14951. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14952. {
  14953. side: {
  14954. height: math.unit(6, "feet"),
  14955. weight: math.unit(170, "lb"),
  14956. name: "Side",
  14957. image: {
  14958. source: "./media/characters/finn/side.svg",
  14959. extra: 1953 / 1807,
  14960. bottom: 0.057
  14961. }
  14962. },
  14963. },
  14964. [
  14965. {
  14966. name: "Megamacro",
  14967. height: math.unit(14445, "feet"),
  14968. default: true
  14969. },
  14970. ]
  14971. ))
  14972. characterMakers.push(() => makeCharacter(
  14973. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14974. {
  14975. front: {
  14976. height: math.unit(5 + 6 / 12, "feet"),
  14977. weight: math.unit(125, "lb"),
  14978. name: "Front",
  14979. image: {
  14980. source: "./media/characters/roy/front.svg",
  14981. extra: 1,
  14982. bottom: 0.11
  14983. }
  14984. },
  14985. },
  14986. [
  14987. {
  14988. name: "Micro",
  14989. height: math.unit(3, "inches"),
  14990. default: true
  14991. },
  14992. {
  14993. name: "Normal",
  14994. height: math.unit(5 + 6 / 12, "feet")
  14995. },
  14996. {
  14997. name: "Lesser Macro",
  14998. height: math.unit(60, "feet")
  14999. },
  15000. {
  15001. name: "Greater Macro",
  15002. height: math.unit(120, "feet")
  15003. },
  15004. ]
  15005. ))
  15006. characterMakers.push(() => makeCharacter(
  15007. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15008. {
  15009. front: {
  15010. height: math.unit(6, "feet"),
  15011. weight: math.unit(100, "lb"),
  15012. name: "Front",
  15013. image: {
  15014. source: "./media/characters/aevsivs/front.svg",
  15015. extra: 1,
  15016. bottom: 0.03
  15017. }
  15018. },
  15019. back: {
  15020. height: math.unit(6, "feet"),
  15021. weight: math.unit(100, "lb"),
  15022. name: "Back",
  15023. image: {
  15024. source: "./media/characters/aevsivs/back.svg"
  15025. }
  15026. },
  15027. },
  15028. [
  15029. {
  15030. name: "Micro",
  15031. height: math.unit(2, "inches"),
  15032. default: true
  15033. },
  15034. {
  15035. name: "Normal",
  15036. height: math.unit(5, "feet")
  15037. },
  15038. ]
  15039. ))
  15040. characterMakers.push(() => makeCharacter(
  15041. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15042. {
  15043. front: {
  15044. height: math.unit(5 + 7 / 12, "feet"),
  15045. weight: math.unit(159, "lb"),
  15046. name: "Front",
  15047. image: {
  15048. source: "./media/characters/hildegard/front.svg",
  15049. extra: 289 / 269,
  15050. bottom: 7.63 / 297.8
  15051. }
  15052. },
  15053. back: {
  15054. height: math.unit(5 + 7 / 12, "feet"),
  15055. weight: math.unit(159, "lb"),
  15056. name: "Back",
  15057. image: {
  15058. source: "./media/characters/hildegard/back.svg",
  15059. extra: 280 / 260,
  15060. bottom: 2.3 / 282
  15061. }
  15062. },
  15063. },
  15064. [
  15065. {
  15066. name: "Normal",
  15067. height: math.unit(5 + 7 / 12, "feet"),
  15068. default: true
  15069. },
  15070. ]
  15071. ))
  15072. characterMakers.push(() => makeCharacter(
  15073. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15074. {
  15075. bernard: {
  15076. height: math.unit(2 + 7 / 12, "feet"),
  15077. weight: math.unit(66, "lb"),
  15078. name: "Bernard",
  15079. rename: true,
  15080. image: {
  15081. source: "./media/characters/bernard-wilder/bernard.svg",
  15082. extra: 192 / 128,
  15083. bottom: 0.05
  15084. }
  15085. },
  15086. wilder: {
  15087. height: math.unit(5 + 8 / 12, "feet"),
  15088. weight: math.unit(143, "lb"),
  15089. name: "Wilder",
  15090. rename: true,
  15091. image: {
  15092. source: "./media/characters/bernard-wilder/wilder.svg",
  15093. extra: 361 / 312,
  15094. bottom: 0.02
  15095. }
  15096. },
  15097. },
  15098. [
  15099. {
  15100. name: "Normal",
  15101. height: math.unit(2 + 7 / 12, "feet"),
  15102. default: true
  15103. },
  15104. ]
  15105. ))
  15106. characterMakers.push(() => makeCharacter(
  15107. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15108. {
  15109. anthro: {
  15110. height: math.unit(6 + 1 / 12, "feet"),
  15111. weight: math.unit(155, "lb"),
  15112. name: "Anthro",
  15113. image: {
  15114. source: "./media/characters/hearth/anthro.svg",
  15115. extra: 1178/1136,
  15116. bottom: 28/1206
  15117. }
  15118. },
  15119. feral: {
  15120. height: math.unit(3.78, "feet"),
  15121. weight: math.unit(35, "kg"),
  15122. name: "Feral",
  15123. image: {
  15124. source: "./media/characters/hearth/feral.svg",
  15125. extra: 153 / 135,
  15126. bottom: 0.03
  15127. }
  15128. },
  15129. },
  15130. [
  15131. {
  15132. name: "Normal",
  15133. height: math.unit(6 + 1 / 12, "feet"),
  15134. default: true
  15135. },
  15136. ]
  15137. ))
  15138. characterMakers.push(() => makeCharacter(
  15139. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15140. {
  15141. front: {
  15142. height: math.unit(6, "feet"),
  15143. weight: math.unit(182, "lb"),
  15144. name: "Front",
  15145. image: {
  15146. source: "./media/characters/ingrid/front.svg",
  15147. extra: 294 / 268,
  15148. bottom: 0.027
  15149. }
  15150. },
  15151. },
  15152. [
  15153. {
  15154. name: "Normal",
  15155. height: math.unit(6, "feet"),
  15156. default: true
  15157. },
  15158. ]
  15159. ))
  15160. characterMakers.push(() => makeCharacter(
  15161. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15162. {
  15163. eevee: {
  15164. height: math.unit(2 + 10 / 12, "feet"),
  15165. weight: math.unit(86, "lb"),
  15166. name: "Malgam",
  15167. image: {
  15168. source: "./media/characters/malgam/eevee.svg",
  15169. extra: 952/784,
  15170. bottom: 38/990
  15171. }
  15172. },
  15173. sylveon: {
  15174. height: math.unit(4, "feet"),
  15175. weight: math.unit(101, "lb"),
  15176. name: "Future Malgam",
  15177. rename: true,
  15178. image: {
  15179. source: "./media/characters/malgam/sylveon.svg",
  15180. extra: 371 / 325,
  15181. bottom: 0.015
  15182. }
  15183. },
  15184. gigantamax: {
  15185. height: math.unit(50, "feet"),
  15186. name: "Gigantamax Malgam",
  15187. rename: true,
  15188. image: {
  15189. source: "./media/characters/malgam/gigantamax.svg"
  15190. }
  15191. },
  15192. },
  15193. [
  15194. {
  15195. name: "Normal",
  15196. height: math.unit(2 + 10 / 12, "feet"),
  15197. default: true
  15198. },
  15199. ]
  15200. ))
  15201. characterMakers.push(() => makeCharacter(
  15202. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15203. {
  15204. front: {
  15205. height: math.unit(5 + 11 / 12, "feet"),
  15206. weight: math.unit(188, "lb"),
  15207. name: "Front",
  15208. image: {
  15209. source: "./media/characters/fleur/front.svg",
  15210. extra: 309 / 283,
  15211. bottom: 0.007
  15212. }
  15213. },
  15214. },
  15215. [
  15216. {
  15217. name: "Normal",
  15218. height: math.unit(5 + 11 / 12, "feet"),
  15219. default: true
  15220. },
  15221. ]
  15222. ))
  15223. characterMakers.push(() => makeCharacter(
  15224. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15225. {
  15226. front: {
  15227. height: math.unit(5 + 4 / 12, "feet"),
  15228. weight: math.unit(122, "lb"),
  15229. name: "Front",
  15230. image: {
  15231. source: "./media/characters/jude/front.svg",
  15232. extra: 288 / 273,
  15233. bottom: 0.03
  15234. }
  15235. },
  15236. },
  15237. [
  15238. {
  15239. name: "Normal",
  15240. height: math.unit(5 + 4 / 12, "feet"),
  15241. default: true
  15242. },
  15243. ]
  15244. ))
  15245. characterMakers.push(() => makeCharacter(
  15246. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15247. {
  15248. front: {
  15249. height: math.unit(5 + 11 / 12, "feet"),
  15250. weight: math.unit(190, "lb"),
  15251. name: "Front",
  15252. image: {
  15253. source: "./media/characters/seara/front.svg",
  15254. extra: 1,
  15255. bottom: 0.05
  15256. }
  15257. },
  15258. },
  15259. [
  15260. {
  15261. name: "Normal",
  15262. height: math.unit(5 + 11 / 12, "feet"),
  15263. default: true
  15264. },
  15265. ]
  15266. ))
  15267. characterMakers.push(() => makeCharacter(
  15268. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15269. {
  15270. front: {
  15271. height: math.unit(16 + 5 / 12, "feet"),
  15272. weight: math.unit(524, "lb"),
  15273. name: "Front",
  15274. image: {
  15275. source: "./media/characters/caspian/front.svg",
  15276. extra: 1,
  15277. bottom: 0.04
  15278. }
  15279. },
  15280. },
  15281. [
  15282. {
  15283. name: "Normal",
  15284. height: math.unit(16 + 5 / 12, "feet"),
  15285. default: true
  15286. },
  15287. ]
  15288. ))
  15289. characterMakers.push(() => makeCharacter(
  15290. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15291. {
  15292. front: {
  15293. height: math.unit(5 + 7 / 12, "feet"),
  15294. weight: math.unit(170, "lb"),
  15295. name: "Front",
  15296. image: {
  15297. source: "./media/characters/mika/front.svg",
  15298. extra: 1,
  15299. bottom: 0.016
  15300. }
  15301. },
  15302. },
  15303. [
  15304. {
  15305. name: "Normal",
  15306. height: math.unit(5 + 7 / 12, "feet"),
  15307. default: true
  15308. },
  15309. ]
  15310. ))
  15311. characterMakers.push(() => makeCharacter(
  15312. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15313. {
  15314. front: {
  15315. height: math.unit(6 + 2 / 12, "feet"),
  15316. weight: math.unit(268, "lb"),
  15317. name: "Front",
  15318. image: {
  15319. source: "./media/characters/sol/front.svg",
  15320. extra: 247 / 231,
  15321. bottom: 0.05
  15322. }
  15323. },
  15324. },
  15325. [
  15326. {
  15327. name: "Normal",
  15328. height: math.unit(6 + 2 / 12, "feet"),
  15329. default: true
  15330. },
  15331. ]
  15332. ))
  15333. characterMakers.push(() => makeCharacter(
  15334. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15335. {
  15336. buizel: {
  15337. height: math.unit(2 + 5 / 12, "feet"),
  15338. weight: math.unit(87, "lb"),
  15339. name: "Buizel",
  15340. image: {
  15341. source: "./media/characters/umiko/buizel.svg",
  15342. extra: 172 / 157,
  15343. bottom: 0.01
  15344. }
  15345. },
  15346. floatzel: {
  15347. height: math.unit(5 + 9 / 12, "feet"),
  15348. weight: math.unit(250, "lb"),
  15349. name: "Floatzel",
  15350. image: {
  15351. source: "./media/characters/umiko/floatzel.svg",
  15352. extra: 262 / 248
  15353. }
  15354. },
  15355. },
  15356. [
  15357. {
  15358. name: "Normal",
  15359. height: math.unit(2 + 5 / 12, "feet"),
  15360. default: true
  15361. },
  15362. ]
  15363. ))
  15364. characterMakers.push(() => makeCharacter(
  15365. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15366. {
  15367. front: {
  15368. height: math.unit(6 + 2 / 12, "feet"),
  15369. weight: math.unit(146, "lb"),
  15370. name: "Front",
  15371. image: {
  15372. source: "./media/characters/iliac/front.svg",
  15373. extra: 389 / 365,
  15374. bottom: 0.035
  15375. }
  15376. },
  15377. },
  15378. [
  15379. {
  15380. name: "Normal",
  15381. height: math.unit(6 + 2 / 12, "feet"),
  15382. default: true
  15383. },
  15384. ]
  15385. ))
  15386. characterMakers.push(() => makeCharacter(
  15387. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15388. {
  15389. front: {
  15390. height: math.unit(6, "feet"),
  15391. weight: math.unit(170, "lb"),
  15392. name: "Front",
  15393. image: {
  15394. source: "./media/characters/topaz/front.svg",
  15395. extra: 317 / 303,
  15396. bottom: 0.055
  15397. }
  15398. },
  15399. },
  15400. [
  15401. {
  15402. name: "Normal",
  15403. height: math.unit(6, "feet"),
  15404. default: true
  15405. },
  15406. ]
  15407. ))
  15408. characterMakers.push(() => makeCharacter(
  15409. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15410. {
  15411. front: {
  15412. height: math.unit(5 + 11 / 12, "feet"),
  15413. weight: math.unit(144, "lb"),
  15414. name: "Front",
  15415. image: {
  15416. source: "./media/characters/gabriel/front.svg",
  15417. extra: 285 / 262,
  15418. bottom: 0.004
  15419. }
  15420. },
  15421. },
  15422. [
  15423. {
  15424. name: "Normal",
  15425. height: math.unit(5 + 11 / 12, "feet"),
  15426. default: true
  15427. },
  15428. ]
  15429. ))
  15430. characterMakers.push(() => makeCharacter(
  15431. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15432. {
  15433. side: {
  15434. height: math.unit(6 + 5 / 12, "feet"),
  15435. weight: math.unit(300, "lb"),
  15436. name: "Side",
  15437. image: {
  15438. source: "./media/characters/tempest-suicune/side.svg",
  15439. extra: 195 / 154,
  15440. bottom: 0.04
  15441. }
  15442. },
  15443. },
  15444. [
  15445. {
  15446. name: "Normal",
  15447. height: math.unit(6 + 5 / 12, "feet"),
  15448. default: true
  15449. },
  15450. ]
  15451. ))
  15452. characterMakers.push(() => makeCharacter(
  15453. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15454. {
  15455. front: {
  15456. height: math.unit(7 + 2 / 12, "feet"),
  15457. weight: math.unit(322, "lb"),
  15458. name: "Front",
  15459. image: {
  15460. source: "./media/characters/vulcan/front.svg",
  15461. extra: 154 / 147,
  15462. bottom: 0.04
  15463. }
  15464. },
  15465. },
  15466. [
  15467. {
  15468. name: "Normal",
  15469. height: math.unit(7 + 2 / 12, "feet"),
  15470. default: true
  15471. },
  15472. ]
  15473. ))
  15474. characterMakers.push(() => makeCharacter(
  15475. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15476. {
  15477. front: {
  15478. height: math.unit(5 + 10 / 12, "feet"),
  15479. weight: math.unit(264, "lb"),
  15480. name: "Front",
  15481. image: {
  15482. source: "./media/characters/gault/front.svg",
  15483. extra: 161 / 140,
  15484. bottom: 0.028
  15485. }
  15486. },
  15487. },
  15488. [
  15489. {
  15490. name: "Normal",
  15491. height: math.unit(5 + 10 / 12, "feet"),
  15492. default: true
  15493. },
  15494. ]
  15495. ))
  15496. characterMakers.push(() => makeCharacter(
  15497. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15498. {
  15499. front: {
  15500. height: math.unit(6, "feet"),
  15501. weight: math.unit(150, "lb"),
  15502. name: "Front",
  15503. image: {
  15504. source: "./media/characters/shard/front.svg",
  15505. extra: 273 / 238,
  15506. bottom: 0.02
  15507. }
  15508. },
  15509. },
  15510. [
  15511. {
  15512. name: "Normal",
  15513. height: math.unit(3 + 6 / 12, "feet"),
  15514. default: true
  15515. },
  15516. ]
  15517. ))
  15518. characterMakers.push(() => makeCharacter(
  15519. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15520. {
  15521. front: {
  15522. height: math.unit(5 + 11 / 12, "feet"),
  15523. weight: math.unit(146, "lb"),
  15524. name: "Front",
  15525. image: {
  15526. source: "./media/characters/ashe/front.svg",
  15527. extra: 400 / 373,
  15528. bottom: 0.01
  15529. }
  15530. },
  15531. },
  15532. [
  15533. {
  15534. name: "Normal",
  15535. height: math.unit(5 + 11 / 12, "feet"),
  15536. default: true
  15537. },
  15538. ]
  15539. ))
  15540. characterMakers.push(() => makeCharacter(
  15541. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15542. {
  15543. front: {
  15544. height: math.unit(5 + 5 / 12, "feet"),
  15545. weight: math.unit(135, "lb"),
  15546. name: "Front",
  15547. image: {
  15548. source: "./media/characters/beatrix/front.svg",
  15549. extra: 392 / 379,
  15550. bottom: 0.01
  15551. }
  15552. },
  15553. },
  15554. [
  15555. {
  15556. name: "Normal",
  15557. height: math.unit(6, "feet"),
  15558. default: true
  15559. },
  15560. ]
  15561. ))
  15562. characterMakers.push(() => makeCharacter(
  15563. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15564. {
  15565. front: {
  15566. height: math.unit(6 + 2/12, "feet"),
  15567. weight: math.unit(135, "lb"),
  15568. name: "Front",
  15569. image: {
  15570. source: "./media/characters/ignatius/front.svg",
  15571. extra: 1380/1259,
  15572. bottom: 27/1407
  15573. }
  15574. },
  15575. },
  15576. [
  15577. {
  15578. name: "Normal",
  15579. height: math.unit(6 + 2/12, "feet"),
  15580. default: true
  15581. },
  15582. ]
  15583. ))
  15584. characterMakers.push(() => makeCharacter(
  15585. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15586. {
  15587. front: {
  15588. height: math.unit(6 + 2 / 12, "feet"),
  15589. weight: math.unit(138, "lb"),
  15590. name: "Front",
  15591. image: {
  15592. source: "./media/characters/mei-li/front.svg",
  15593. extra: 237 / 229,
  15594. bottom: 0.03
  15595. }
  15596. },
  15597. },
  15598. [
  15599. {
  15600. name: "Normal",
  15601. height: math.unit(6 + 2 / 12, "feet"),
  15602. default: true
  15603. },
  15604. ]
  15605. ))
  15606. characterMakers.push(() => makeCharacter(
  15607. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15608. {
  15609. front: {
  15610. height: math.unit(2 + 4 / 12, "feet"),
  15611. weight: math.unit(62, "lb"),
  15612. name: "Front",
  15613. image: {
  15614. source: "./media/characters/puru/front.svg",
  15615. extra: 206 / 149,
  15616. bottom: 0.06
  15617. }
  15618. },
  15619. },
  15620. [
  15621. {
  15622. name: "Normal",
  15623. height: math.unit(2 + 4 / 12, "feet"),
  15624. default: true
  15625. },
  15626. ]
  15627. ))
  15628. characterMakers.push(() => makeCharacter(
  15629. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15630. {
  15631. anthro: {
  15632. height: math.unit(5 + 8/12, "feet"),
  15633. weight: math.unit(200, "lb"),
  15634. energyNeed: math.unit(2000, "kcal"),
  15635. name: "Anthro",
  15636. image: {
  15637. source: "./media/characters/kee/anthro.svg",
  15638. extra: 3251/3184,
  15639. bottom: 250/3501
  15640. }
  15641. },
  15642. taur: {
  15643. height: math.unit(11, "feet"),
  15644. weight: math.unit(500, "lb"),
  15645. energyNeed: math.unit(5000, "kcal"),
  15646. name: "Taur",
  15647. image: {
  15648. source: "./media/characters/kee/taur.svg",
  15649. extra: 1362/1320,
  15650. bottom: 83/1445
  15651. }
  15652. },
  15653. },
  15654. [
  15655. {
  15656. name: "Normal",
  15657. height: math.unit(5 + 8/12, "feet"),
  15658. default: true
  15659. },
  15660. {
  15661. name: "Macro",
  15662. height: math.unit(35, "feet")
  15663. },
  15664. ]
  15665. ))
  15666. characterMakers.push(() => makeCharacter(
  15667. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15668. {
  15669. anthro: {
  15670. height: math.unit(7, "feet"),
  15671. weight: math.unit(190, "lb"),
  15672. name: "Anthro",
  15673. image: {
  15674. source: "./media/characters/cobalt-dracha/anthro.svg",
  15675. extra: 231 / 225,
  15676. bottom: 0.04
  15677. }
  15678. },
  15679. feral: {
  15680. height: math.unit(9 + 7 / 12, "feet"),
  15681. weight: math.unit(294, "lb"),
  15682. name: "Feral",
  15683. image: {
  15684. source: "./media/characters/cobalt-dracha/feral.svg",
  15685. extra: 692 / 633,
  15686. bottom: 0.05
  15687. }
  15688. },
  15689. },
  15690. [
  15691. {
  15692. name: "Normal",
  15693. height: math.unit(7, "feet"),
  15694. default: true
  15695. },
  15696. ]
  15697. ))
  15698. characterMakers.push(() => makeCharacter(
  15699. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15700. {
  15701. fallen: {
  15702. height: math.unit(11 + 8 / 12, "feet"),
  15703. weight: math.unit(485, "lb"),
  15704. name: "Java (Fallen)",
  15705. rename: true,
  15706. image: {
  15707. source: "./media/characters/java/fallen.svg",
  15708. extra: 226 / 208,
  15709. bottom: 0.005
  15710. }
  15711. },
  15712. godkin: {
  15713. height: math.unit(10 + 6 / 12, "feet"),
  15714. weight: math.unit(328, "lb"),
  15715. name: "Java (Godkin)",
  15716. rename: true,
  15717. image: {
  15718. source: "./media/characters/java/godkin.svg",
  15719. extra: 1104/1068,
  15720. bottom: 36/1140
  15721. }
  15722. },
  15723. },
  15724. [
  15725. {
  15726. name: "Normal",
  15727. height: math.unit(11 + 8 / 12, "feet"),
  15728. default: true
  15729. },
  15730. ]
  15731. ))
  15732. characterMakers.push(() => makeCharacter(
  15733. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15734. {
  15735. front: {
  15736. height: math.unit(5 + 9 / 12, "feet"),
  15737. weight: math.unit(170, "lb"),
  15738. name: "Front",
  15739. image: {
  15740. source: "./media/characters/purna/front.svg",
  15741. extra: 239 / 229,
  15742. bottom: 0.01
  15743. }
  15744. },
  15745. },
  15746. [
  15747. {
  15748. name: "Normal",
  15749. height: math.unit(5 + 9 / 12, "feet"),
  15750. default: true
  15751. },
  15752. ]
  15753. ))
  15754. characterMakers.push(() => makeCharacter(
  15755. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15756. {
  15757. front: {
  15758. height: math.unit(5 + 9 / 12, "feet"),
  15759. weight: math.unit(142, "lb"),
  15760. name: "Front",
  15761. image: {
  15762. source: "./media/characters/kuva/front.svg",
  15763. extra: 281 / 271,
  15764. bottom: 0.006
  15765. }
  15766. },
  15767. },
  15768. [
  15769. {
  15770. name: "Normal",
  15771. height: math.unit(5 + 9 / 12, "feet"),
  15772. default: true
  15773. },
  15774. ]
  15775. ))
  15776. characterMakers.push(() => makeCharacter(
  15777. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15778. {
  15779. anthro: {
  15780. height: math.unit(9 + 2 / 12, "feet"),
  15781. weight: math.unit(270, "lb"),
  15782. name: "Anthro",
  15783. image: {
  15784. source: "./media/characters/embra/anthro.svg",
  15785. extra: 200 / 187,
  15786. bottom: 0.02
  15787. }
  15788. },
  15789. feral: {
  15790. height: math.unit(18 + 8 / 12, "feet"),
  15791. weight: math.unit(576, "lb"),
  15792. name: "Feral",
  15793. image: {
  15794. source: "./media/characters/embra/feral.svg",
  15795. extra: 152 / 137,
  15796. bottom: 0.037
  15797. }
  15798. },
  15799. },
  15800. [
  15801. {
  15802. name: "Normal",
  15803. height: math.unit(9 + 2 / 12, "feet"),
  15804. default: true
  15805. },
  15806. ]
  15807. ))
  15808. characterMakers.push(() => makeCharacter(
  15809. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15810. {
  15811. anthro: {
  15812. height: math.unit(10 + 9 / 12, "feet"),
  15813. weight: math.unit(224, "lb"),
  15814. name: "Anthro",
  15815. image: {
  15816. source: "./media/characters/grottos/anthro.svg",
  15817. extra: 350 / 332,
  15818. bottom: 0.045
  15819. }
  15820. },
  15821. feral: {
  15822. height: math.unit(20 + 7 / 12, "feet"),
  15823. weight: math.unit(629, "lb"),
  15824. name: "Feral",
  15825. image: {
  15826. source: "./media/characters/grottos/feral.svg",
  15827. extra: 207 / 190,
  15828. bottom: 0.05
  15829. }
  15830. },
  15831. },
  15832. [
  15833. {
  15834. name: "Normal",
  15835. height: math.unit(10 + 9 / 12, "feet"),
  15836. default: true
  15837. },
  15838. ]
  15839. ))
  15840. characterMakers.push(() => makeCharacter(
  15841. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15842. {
  15843. anthro: {
  15844. height: math.unit(9 + 6 / 12, "feet"),
  15845. weight: math.unit(298, "lb"),
  15846. name: "Anthro",
  15847. image: {
  15848. source: "./media/characters/frifna/anthro.svg",
  15849. extra: 282 / 269,
  15850. bottom: 0.015
  15851. }
  15852. },
  15853. feral: {
  15854. height: math.unit(16 + 2 / 12, "feet"),
  15855. weight: math.unit(624, "lb"),
  15856. name: "Feral",
  15857. image: {
  15858. source: "./media/characters/frifna/feral.svg"
  15859. }
  15860. },
  15861. },
  15862. [
  15863. {
  15864. name: "Normal",
  15865. height: math.unit(9 + 6 / 12, "feet"),
  15866. default: true
  15867. },
  15868. ]
  15869. ))
  15870. characterMakers.push(() => makeCharacter(
  15871. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15872. {
  15873. front: {
  15874. height: math.unit(6 + 2 / 12, "feet"),
  15875. weight: math.unit(168, "lb"),
  15876. name: "Front",
  15877. image: {
  15878. source: "./media/characters/elise/front.svg",
  15879. extra: 276 / 271
  15880. }
  15881. },
  15882. },
  15883. [
  15884. {
  15885. name: "Normal",
  15886. height: math.unit(6 + 2 / 12, "feet"),
  15887. default: true
  15888. },
  15889. ]
  15890. ))
  15891. characterMakers.push(() => makeCharacter(
  15892. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15893. {
  15894. front: {
  15895. height: math.unit(5 + 10 / 12, "feet"),
  15896. weight: math.unit(210, "lb"),
  15897. name: "Front",
  15898. image: {
  15899. source: "./media/characters/glade/front.svg",
  15900. extra: 258 / 247,
  15901. bottom: 0.008
  15902. }
  15903. },
  15904. },
  15905. [
  15906. {
  15907. name: "Normal",
  15908. height: math.unit(5 + 10 / 12, "feet"),
  15909. default: true
  15910. },
  15911. ]
  15912. ))
  15913. characterMakers.push(() => makeCharacter(
  15914. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15915. {
  15916. front: {
  15917. height: math.unit(5 + 10 / 12, "feet"),
  15918. weight: math.unit(129, "lb"),
  15919. name: "Front",
  15920. image: {
  15921. source: "./media/characters/rina/front.svg",
  15922. extra: 266 / 255,
  15923. bottom: 0.005
  15924. }
  15925. },
  15926. },
  15927. [
  15928. {
  15929. name: "Normal",
  15930. height: math.unit(5 + 10 / 12, "feet"),
  15931. default: true
  15932. },
  15933. ]
  15934. ))
  15935. characterMakers.push(() => makeCharacter(
  15936. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15937. {
  15938. front: {
  15939. height: math.unit(6 + 1 / 12, "feet"),
  15940. weight: math.unit(192, "lb"),
  15941. name: "Front",
  15942. image: {
  15943. source: "./media/characters/veronica/front.svg",
  15944. extra: 319 / 309,
  15945. bottom: 0.005
  15946. }
  15947. },
  15948. },
  15949. [
  15950. {
  15951. name: "Normal",
  15952. height: math.unit(6 + 1 / 12, "feet"),
  15953. default: true
  15954. },
  15955. ]
  15956. ))
  15957. characterMakers.push(() => makeCharacter(
  15958. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15959. {
  15960. front: {
  15961. height: math.unit(9 + 3 / 12, "feet"),
  15962. weight: math.unit(1100, "lb"),
  15963. name: "Front",
  15964. image: {
  15965. source: "./media/characters/braxton/front.svg",
  15966. extra: 1057 / 984,
  15967. bottom: 0.05
  15968. }
  15969. },
  15970. },
  15971. [
  15972. {
  15973. name: "Normal",
  15974. height: math.unit(9 + 3 / 12, "feet")
  15975. },
  15976. {
  15977. name: "Giant",
  15978. height: math.unit(300, "feet"),
  15979. default: true
  15980. },
  15981. {
  15982. name: "Macro",
  15983. height: math.unit(700, "feet")
  15984. },
  15985. {
  15986. name: "Megamacro",
  15987. height: math.unit(6000, "feet")
  15988. },
  15989. ]
  15990. ))
  15991. characterMakers.push(() => makeCharacter(
  15992. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15993. {
  15994. front: {
  15995. height: math.unit(6 + 7 / 12, "feet"),
  15996. weight: math.unit(150, "lb"),
  15997. name: "Front",
  15998. image: {
  15999. source: "./media/characters/blue-feyonics/front.svg",
  16000. extra: 1403 / 1306,
  16001. bottom: 0.047
  16002. }
  16003. },
  16004. },
  16005. [
  16006. {
  16007. name: "Normal",
  16008. height: math.unit(6 + 7 / 12, "feet"),
  16009. default: true
  16010. },
  16011. ]
  16012. ))
  16013. characterMakers.push(() => makeCharacter(
  16014. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16015. {
  16016. front: {
  16017. height: math.unit(1.8, "meters"),
  16018. weight: math.unit(60, "kg"),
  16019. name: "Front",
  16020. image: {
  16021. source: "./media/characters/maxwell/front.svg",
  16022. extra: 2060 / 1873
  16023. }
  16024. },
  16025. },
  16026. [
  16027. {
  16028. name: "Micro",
  16029. height: math.unit(1, "mm")
  16030. },
  16031. {
  16032. name: "Normal",
  16033. height: math.unit(1.8, "meter"),
  16034. default: true
  16035. },
  16036. {
  16037. name: "Macro",
  16038. height: math.unit(30, "meters")
  16039. },
  16040. {
  16041. name: "Megamacro",
  16042. height: math.unit(10, "km")
  16043. },
  16044. ]
  16045. ))
  16046. characterMakers.push(() => makeCharacter(
  16047. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16048. {
  16049. front: {
  16050. height: math.unit(6, "feet"),
  16051. weight: math.unit(150, "lb"),
  16052. name: "Front",
  16053. image: {
  16054. source: "./media/characters/jack/front.svg",
  16055. extra: 1754 / 1640,
  16056. bottom: 0.01
  16057. }
  16058. },
  16059. },
  16060. [
  16061. {
  16062. name: "Normal",
  16063. height: math.unit(80000, "feet"),
  16064. default: true
  16065. },
  16066. {
  16067. name: "Max size",
  16068. height: math.unit(10, "lightyears")
  16069. },
  16070. ]
  16071. ))
  16072. characterMakers.push(() => makeCharacter(
  16073. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16074. {
  16075. urban: {
  16076. height: math.unit(5, "feet"),
  16077. weight: math.unit(240, "lb"),
  16078. name: "Urban",
  16079. image: {
  16080. source: "./media/characters/cafat/urban.svg",
  16081. extra: 1223/1126,
  16082. bottom: 205/1428
  16083. }
  16084. },
  16085. summer: {
  16086. height: math.unit(5, "feet"),
  16087. weight: math.unit(240, "lb"),
  16088. name: "Summer",
  16089. image: {
  16090. source: "./media/characters/cafat/summer.svg",
  16091. extra: 1223/1126,
  16092. bottom: 205/1428
  16093. }
  16094. },
  16095. winter: {
  16096. height: math.unit(5, "feet"),
  16097. weight: math.unit(240, "lb"),
  16098. name: "Winter",
  16099. image: {
  16100. source: "./media/characters/cafat/winter.svg",
  16101. extra: 1223/1126,
  16102. bottom: 205/1428
  16103. }
  16104. },
  16105. lingerie: {
  16106. height: math.unit(5, "feet"),
  16107. weight: math.unit(240, "lb"),
  16108. name: "Lingerie",
  16109. image: {
  16110. source: "./media/characters/cafat/lingerie.svg",
  16111. extra: 1223/1126,
  16112. bottom: 205/1428
  16113. }
  16114. },
  16115. upright: {
  16116. height: math.unit(6.3, "feet"),
  16117. weight: math.unit(240, "lb"),
  16118. name: "Upright",
  16119. image: {
  16120. source: "./media/characters/cafat/upright.svg",
  16121. bottom: 0.01
  16122. }
  16123. },
  16124. uprightFull: {
  16125. height: math.unit(6.3, "feet"),
  16126. weight: math.unit(240, "lb"),
  16127. name: "Upright (Full)",
  16128. image: {
  16129. source: "./media/characters/cafat/upright-full.svg",
  16130. bottom: 0.01
  16131. }
  16132. },
  16133. },
  16134. [
  16135. {
  16136. name: "Small",
  16137. height: math.unit(5, "feet"),
  16138. default: true
  16139. },
  16140. {
  16141. name: "Large",
  16142. height: math.unit(13, "feet")
  16143. },
  16144. ]
  16145. ))
  16146. characterMakers.push(() => makeCharacter(
  16147. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16148. {
  16149. front: {
  16150. height: math.unit(6, "feet"),
  16151. weight: math.unit(150, "lb"),
  16152. name: "Front",
  16153. image: {
  16154. source: "./media/characters/verin-raharra/front.svg",
  16155. extra: 5019 / 4835,
  16156. bottom: 0.023
  16157. }
  16158. },
  16159. },
  16160. [
  16161. {
  16162. name: "Normal",
  16163. height: math.unit(7 + 5 / 12, "feet"),
  16164. default: true
  16165. },
  16166. {
  16167. name: "Upsized",
  16168. height: math.unit(20, "feet")
  16169. },
  16170. ]
  16171. ))
  16172. characterMakers.push(() => makeCharacter(
  16173. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16174. {
  16175. front: {
  16176. height: math.unit(7, "feet"),
  16177. weight: math.unit(230, "lb"),
  16178. name: "Front",
  16179. image: {
  16180. source: "./media/characters/nakata/front.svg",
  16181. extra: 1.005,
  16182. bottom: 0.01
  16183. }
  16184. },
  16185. },
  16186. [
  16187. {
  16188. name: "Normal",
  16189. height: math.unit(7, "feet"),
  16190. default: true
  16191. },
  16192. {
  16193. name: "Big",
  16194. height: math.unit(14, "feet")
  16195. },
  16196. {
  16197. name: "Macro",
  16198. height: math.unit(400, "feet")
  16199. },
  16200. ]
  16201. ))
  16202. characterMakers.push(() => makeCharacter(
  16203. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16204. {
  16205. front: {
  16206. height: math.unit(4.91, "feet"),
  16207. weight: math.unit(100, "lb"),
  16208. name: "Front",
  16209. image: {
  16210. source: "./media/characters/lily/front.svg",
  16211. extra: 1585 / 1415,
  16212. bottom: 0.02
  16213. }
  16214. },
  16215. },
  16216. [
  16217. {
  16218. name: "Normal",
  16219. height: math.unit(4.91, "feet"),
  16220. default: true
  16221. },
  16222. ]
  16223. ))
  16224. characterMakers.push(() => makeCharacter(
  16225. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16226. {
  16227. laying: {
  16228. height: math.unit(4 + 4 / 12, "feet"),
  16229. weight: math.unit(600, "lb"),
  16230. name: "Laying",
  16231. image: {
  16232. source: "./media/characters/sheila/laying.svg",
  16233. extra: 1333 / 1265,
  16234. bottom: 0.16
  16235. }
  16236. },
  16237. },
  16238. [
  16239. {
  16240. name: "Normal",
  16241. height: math.unit(4 + 4 / 12, "feet"),
  16242. default: true
  16243. },
  16244. ]
  16245. ))
  16246. characterMakers.push(() => makeCharacter(
  16247. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16248. {
  16249. front: {
  16250. height: math.unit(6, "feet"),
  16251. weight: math.unit(190, "lb"),
  16252. name: "Front",
  16253. image: {
  16254. source: "./media/characters/sax/front.svg",
  16255. extra: 1187 / 973,
  16256. bottom: 0.042
  16257. }
  16258. },
  16259. },
  16260. [
  16261. {
  16262. name: "Micro",
  16263. height: math.unit(4, "inches"),
  16264. default: true
  16265. },
  16266. ]
  16267. ))
  16268. characterMakers.push(() => makeCharacter(
  16269. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16270. {
  16271. front: {
  16272. height: math.unit(6, "feet"),
  16273. weight: math.unit(150, "lb"),
  16274. name: "Front",
  16275. image: {
  16276. source: "./media/characters/pandora/front.svg",
  16277. extra: 2720 / 2556,
  16278. bottom: 0.015
  16279. }
  16280. },
  16281. back: {
  16282. height: math.unit(6, "feet"),
  16283. weight: math.unit(150, "lb"),
  16284. name: "Back",
  16285. image: {
  16286. source: "./media/characters/pandora/back.svg",
  16287. extra: 2720 / 2556,
  16288. bottom: 0.01
  16289. }
  16290. },
  16291. beans: {
  16292. height: math.unit(6 / 8, "feet"),
  16293. name: "Beans",
  16294. image: {
  16295. source: "./media/characters/pandora/beans.svg"
  16296. }
  16297. },
  16298. collar: {
  16299. height: math.unit(0.31, "feet"),
  16300. name: "Collar",
  16301. image: {
  16302. source: "./media/characters/pandora/collar.svg"
  16303. }
  16304. },
  16305. skirt: {
  16306. height: math.unit(6, "feet"),
  16307. weight: math.unit(150, "lb"),
  16308. name: "Skirt",
  16309. image: {
  16310. source: "./media/characters/pandora/skirt.svg",
  16311. extra: 1622 / 1525,
  16312. bottom: 0.015
  16313. }
  16314. },
  16315. hoodie: {
  16316. height: math.unit(6, "feet"),
  16317. weight: math.unit(150, "lb"),
  16318. name: "Hoodie",
  16319. image: {
  16320. source: "./media/characters/pandora/hoodie.svg",
  16321. extra: 1622 / 1525,
  16322. bottom: 0.015
  16323. }
  16324. },
  16325. casual: {
  16326. height: math.unit(6, "feet"),
  16327. weight: math.unit(150, "lb"),
  16328. name: "Casual",
  16329. image: {
  16330. source: "./media/characters/pandora/casual.svg",
  16331. extra: 1622 / 1525,
  16332. bottom: 0.015
  16333. }
  16334. },
  16335. },
  16336. [
  16337. {
  16338. name: "Normal",
  16339. height: math.unit(6, "feet")
  16340. },
  16341. {
  16342. name: "Big Steppy",
  16343. height: math.unit(1, "km"),
  16344. default: true
  16345. },
  16346. {
  16347. name: "Galactic Steppy",
  16348. height: math.unit(2, "gigameters")
  16349. },
  16350. ]
  16351. ))
  16352. characterMakers.push(() => makeCharacter(
  16353. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16354. {
  16355. side: {
  16356. height: math.unit(10, "feet"),
  16357. weight: math.unit(800, "kg"),
  16358. name: "Side",
  16359. image: {
  16360. source: "./media/characters/venio-darcony/side.svg",
  16361. extra: 1373 / 1003,
  16362. bottom: 0.037
  16363. }
  16364. },
  16365. front: {
  16366. height: math.unit(19, "feet"),
  16367. weight: math.unit(800, "kg"),
  16368. name: "Front",
  16369. image: {
  16370. source: "./media/characters/venio-darcony/front.svg"
  16371. }
  16372. },
  16373. back: {
  16374. height: math.unit(19, "feet"),
  16375. weight: math.unit(800, "kg"),
  16376. name: "Back",
  16377. image: {
  16378. source: "./media/characters/venio-darcony/back.svg"
  16379. }
  16380. },
  16381. sideNsfw: {
  16382. height: math.unit(10, "feet"),
  16383. weight: math.unit(800, "kg"),
  16384. name: "Side (NSFW)",
  16385. image: {
  16386. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16387. extra: 1373 / 1003,
  16388. bottom: 0.037
  16389. }
  16390. },
  16391. frontNsfw: {
  16392. height: math.unit(19, "feet"),
  16393. weight: math.unit(800, "kg"),
  16394. name: "Front (NSFW)",
  16395. image: {
  16396. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16397. }
  16398. },
  16399. backNsfw: {
  16400. height: math.unit(19, "feet"),
  16401. weight: math.unit(800, "kg"),
  16402. name: "Back (NSFW)",
  16403. image: {
  16404. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16405. }
  16406. },
  16407. sideArmored: {
  16408. height: math.unit(10, "feet"),
  16409. weight: math.unit(800, "kg"),
  16410. name: "Side (Armored)",
  16411. image: {
  16412. source: "./media/characters/venio-darcony/side-armored.svg",
  16413. extra: 1373 / 1003,
  16414. bottom: 0.037
  16415. }
  16416. },
  16417. frontArmored: {
  16418. height: math.unit(19, "feet"),
  16419. weight: math.unit(900, "kg"),
  16420. name: "Front (Armored)",
  16421. image: {
  16422. source: "./media/characters/venio-darcony/front-armored.svg"
  16423. }
  16424. },
  16425. backArmored: {
  16426. height: math.unit(19, "feet"),
  16427. weight: math.unit(900, "kg"),
  16428. name: "Back (Armored)",
  16429. image: {
  16430. source: "./media/characters/venio-darcony/back-armored.svg"
  16431. }
  16432. },
  16433. sword: {
  16434. height: math.unit(10, "feet"),
  16435. weight: math.unit(50, "lb"),
  16436. name: "Sword",
  16437. image: {
  16438. source: "./media/characters/venio-darcony/sword.svg"
  16439. }
  16440. },
  16441. },
  16442. [
  16443. {
  16444. name: "Normal",
  16445. height: math.unit(10, "feet")
  16446. },
  16447. {
  16448. name: "Macro",
  16449. height: math.unit(130, "feet"),
  16450. default: true
  16451. },
  16452. {
  16453. name: "Macro+",
  16454. height: math.unit(240, "feet")
  16455. },
  16456. ]
  16457. ))
  16458. characterMakers.push(() => makeCharacter(
  16459. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16460. {
  16461. front: {
  16462. height: math.unit(6, "feet"),
  16463. weight: math.unit(150, "lb"),
  16464. name: "Front",
  16465. image: {
  16466. source: "./media/characters/veski/front.svg",
  16467. extra: 1299 / 1225,
  16468. bottom: 0.04
  16469. }
  16470. },
  16471. back: {
  16472. height: math.unit(6, "feet"),
  16473. weight: math.unit(150, "lb"),
  16474. name: "Back",
  16475. image: {
  16476. source: "./media/characters/veski/back.svg",
  16477. extra: 1299 / 1225,
  16478. bottom: 0.008
  16479. }
  16480. },
  16481. maw: {
  16482. height: math.unit(1.5 * 1.21, "feet"),
  16483. name: "Maw",
  16484. image: {
  16485. source: "./media/characters/veski/maw.svg"
  16486. }
  16487. },
  16488. },
  16489. [
  16490. {
  16491. name: "Macro",
  16492. height: math.unit(2, "km"),
  16493. default: true
  16494. },
  16495. ]
  16496. ))
  16497. characterMakers.push(() => makeCharacter(
  16498. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16499. {
  16500. front: {
  16501. height: math.unit(5 + 7 / 12, "feet"),
  16502. name: "Front",
  16503. image: {
  16504. source: "./media/characters/isabelle/front.svg",
  16505. extra: 2130 / 1976,
  16506. bottom: 0.05
  16507. }
  16508. },
  16509. },
  16510. [
  16511. {
  16512. name: "Supermicro",
  16513. height: math.unit(10, "micrometers")
  16514. },
  16515. {
  16516. name: "Micro",
  16517. height: math.unit(1, "inch")
  16518. },
  16519. {
  16520. name: "Tiny",
  16521. height: math.unit(5, "inches")
  16522. },
  16523. {
  16524. name: "Standard",
  16525. height: math.unit(5 + 7 / 12, "inches")
  16526. },
  16527. {
  16528. name: "Macro",
  16529. height: math.unit(80, "meters"),
  16530. default: true
  16531. },
  16532. {
  16533. name: "Megamacro",
  16534. height: math.unit(250, "meters")
  16535. },
  16536. {
  16537. name: "Gigamacro",
  16538. height: math.unit(5, "km")
  16539. },
  16540. {
  16541. name: "Cosmic",
  16542. height: math.unit(2.5e6, "miles")
  16543. },
  16544. ]
  16545. ))
  16546. characterMakers.push(() => makeCharacter(
  16547. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16548. {
  16549. front: {
  16550. height: math.unit(6, "feet"),
  16551. weight: math.unit(150, "lb"),
  16552. name: "Front",
  16553. image: {
  16554. source: "./media/characters/hanzo/front.svg",
  16555. extra: 374 / 344,
  16556. bottom: 0.02
  16557. }
  16558. },
  16559. },
  16560. [
  16561. {
  16562. name: "Normal",
  16563. height: math.unit(8, "feet"),
  16564. default: true
  16565. },
  16566. ]
  16567. ))
  16568. characterMakers.push(() => makeCharacter(
  16569. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16570. {
  16571. front: {
  16572. height: math.unit(7, "feet"),
  16573. weight: math.unit(130, "lb"),
  16574. name: "Front",
  16575. image: {
  16576. source: "./media/characters/anna/front.svg",
  16577. extra: 169 / 145,
  16578. bottom: 0.06
  16579. }
  16580. },
  16581. full: {
  16582. height: math.unit(4.96, "feet"),
  16583. weight: math.unit(220, "lb"),
  16584. name: "Full",
  16585. image: {
  16586. source: "./media/characters/anna/full.svg",
  16587. extra: 138 / 114,
  16588. bottom: 0.15
  16589. }
  16590. },
  16591. tongue: {
  16592. height: math.unit(2.53, "feet"),
  16593. name: "Tongue",
  16594. image: {
  16595. source: "./media/characters/anna/tongue.svg"
  16596. }
  16597. },
  16598. },
  16599. [
  16600. {
  16601. name: "Normal",
  16602. height: math.unit(7, "feet"),
  16603. default: true
  16604. },
  16605. ]
  16606. ))
  16607. characterMakers.push(() => makeCharacter(
  16608. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16609. {
  16610. front: {
  16611. height: math.unit(7, "feet"),
  16612. weight: math.unit(150, "lb"),
  16613. name: "Front",
  16614. image: {
  16615. source: "./media/characters/ian-corvid/front.svg",
  16616. extra: 150 / 142,
  16617. bottom: 0.02
  16618. }
  16619. },
  16620. back: {
  16621. height: math.unit(7, "feet"),
  16622. weight: math.unit(150, "lb"),
  16623. name: "Back",
  16624. image: {
  16625. source: "./media/characters/ian-corvid/back.svg",
  16626. extra: 150 / 143,
  16627. bottom: 0.01
  16628. }
  16629. },
  16630. stomping: {
  16631. height: math.unit(7, "feet"),
  16632. weight: math.unit(150, "lb"),
  16633. name: "Stomping",
  16634. image: {
  16635. source: "./media/characters/ian-corvid/stomping.svg",
  16636. extra: 76 / 72
  16637. }
  16638. },
  16639. sitting: {
  16640. height: math.unit(7 / 1.8, "feet"),
  16641. weight: math.unit(150, "lb"),
  16642. name: "Sitting",
  16643. image: {
  16644. source: "./media/characters/ian-corvid/sitting.svg",
  16645. extra: 1400 / 1269,
  16646. bottom: 0.15
  16647. }
  16648. },
  16649. },
  16650. [
  16651. {
  16652. name: "Tiny Microw",
  16653. height: math.unit(1, "inch")
  16654. },
  16655. {
  16656. name: "Microw",
  16657. height: math.unit(6, "inches")
  16658. },
  16659. {
  16660. name: "Crow",
  16661. height: math.unit(7 + 1 / 12, "feet"),
  16662. default: true
  16663. },
  16664. {
  16665. name: "Macrow",
  16666. height: math.unit(176, "feet")
  16667. },
  16668. ]
  16669. ))
  16670. characterMakers.push(() => makeCharacter(
  16671. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16672. {
  16673. front: {
  16674. height: math.unit(5 + 7 / 12, "feet"),
  16675. weight: math.unit(147, "lb"),
  16676. name: "Front",
  16677. image: {
  16678. source: "./media/characters/natalie-kellon/front.svg",
  16679. extra: 1214 / 1141,
  16680. bottom: 0.02
  16681. }
  16682. },
  16683. },
  16684. [
  16685. {
  16686. name: "Micro",
  16687. height: math.unit(1 / 16, "inch")
  16688. },
  16689. {
  16690. name: "Tiny",
  16691. height: math.unit(4, "inches")
  16692. },
  16693. {
  16694. name: "Normal",
  16695. height: math.unit(5 + 7 / 12, "feet"),
  16696. default: true
  16697. },
  16698. {
  16699. name: "Amazon",
  16700. height: math.unit(12, "feet")
  16701. },
  16702. {
  16703. name: "Giantess",
  16704. height: math.unit(160, "meters")
  16705. },
  16706. {
  16707. name: "Titaness",
  16708. height: math.unit(800, "meters")
  16709. },
  16710. ]
  16711. ))
  16712. characterMakers.push(() => makeCharacter(
  16713. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16714. {
  16715. front: {
  16716. height: math.unit(6, "feet"),
  16717. weight: math.unit(150, "lb"),
  16718. name: "Front",
  16719. image: {
  16720. source: "./media/characters/alluria/front.svg",
  16721. extra: 806 / 738,
  16722. bottom: 0.01
  16723. }
  16724. },
  16725. side: {
  16726. height: math.unit(6, "feet"),
  16727. weight: math.unit(150, "lb"),
  16728. name: "Side",
  16729. image: {
  16730. source: "./media/characters/alluria/side.svg",
  16731. extra: 800 / 750,
  16732. }
  16733. },
  16734. back: {
  16735. height: math.unit(6, "feet"),
  16736. weight: math.unit(150, "lb"),
  16737. name: "Back",
  16738. image: {
  16739. source: "./media/characters/alluria/back.svg",
  16740. extra: 806 / 738,
  16741. }
  16742. },
  16743. frontMaid: {
  16744. height: math.unit(6, "feet"),
  16745. weight: math.unit(150, "lb"),
  16746. name: "Front (Maid)",
  16747. image: {
  16748. source: "./media/characters/alluria/front-maid.svg",
  16749. extra: 806 / 738,
  16750. bottom: 0.01
  16751. }
  16752. },
  16753. sideMaid: {
  16754. height: math.unit(6, "feet"),
  16755. weight: math.unit(150, "lb"),
  16756. name: "Side (Maid)",
  16757. image: {
  16758. source: "./media/characters/alluria/side-maid.svg",
  16759. extra: 800 / 750,
  16760. bottom: 0.005
  16761. }
  16762. },
  16763. backMaid: {
  16764. height: math.unit(6, "feet"),
  16765. weight: math.unit(150, "lb"),
  16766. name: "Back (Maid)",
  16767. image: {
  16768. source: "./media/characters/alluria/back-maid.svg",
  16769. extra: 806 / 738,
  16770. }
  16771. },
  16772. },
  16773. [
  16774. {
  16775. name: "Micro",
  16776. height: math.unit(6, "inches"),
  16777. default: true
  16778. },
  16779. ]
  16780. ))
  16781. characterMakers.push(() => makeCharacter(
  16782. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16783. {
  16784. front: {
  16785. height: math.unit(6, "feet"),
  16786. weight: math.unit(150, "lb"),
  16787. name: "Front",
  16788. image: {
  16789. source: "./media/characters/kyle/front.svg",
  16790. extra: 1069 / 962,
  16791. bottom: 77.228 / 1727.45
  16792. }
  16793. },
  16794. },
  16795. [
  16796. {
  16797. name: "Macro",
  16798. height: math.unit(150, "feet"),
  16799. default: true
  16800. },
  16801. ]
  16802. ))
  16803. characterMakers.push(() => makeCharacter(
  16804. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16805. {
  16806. front: {
  16807. height: math.unit(6, "feet"),
  16808. weight: math.unit(300, "lb"),
  16809. name: "Front",
  16810. image: {
  16811. source: "./media/characters/duncan/front.svg",
  16812. extra: 1650 / 1482,
  16813. bottom: 0.05
  16814. }
  16815. },
  16816. },
  16817. [
  16818. {
  16819. name: "Macro",
  16820. height: math.unit(100, "feet"),
  16821. default: true
  16822. },
  16823. ]
  16824. ))
  16825. characterMakers.push(() => makeCharacter(
  16826. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16827. {
  16828. front: {
  16829. height: math.unit(5 + 4 / 12, "feet"),
  16830. weight: math.unit(220, "lb"),
  16831. name: "Front",
  16832. image: {
  16833. source: "./media/characters/memory/front.svg",
  16834. extra: 3641 / 3545,
  16835. bottom: 0.03
  16836. }
  16837. },
  16838. back: {
  16839. height: math.unit(5 + 4 / 12, "feet"),
  16840. weight: math.unit(220, "lb"),
  16841. name: "Back",
  16842. image: {
  16843. source: "./media/characters/memory/back.svg",
  16844. extra: 3641 / 3545,
  16845. bottom: 0.025
  16846. }
  16847. },
  16848. frontSkirt: {
  16849. height: math.unit(5 + 4 / 12, "feet"),
  16850. weight: math.unit(220, "lb"),
  16851. name: "Front (Skirt)",
  16852. image: {
  16853. source: "./media/characters/memory/front-skirt.svg",
  16854. extra: 3641 / 3545,
  16855. bottom: 0.03
  16856. }
  16857. },
  16858. frontDress: {
  16859. height: math.unit(5 + 4 / 12, "feet"),
  16860. weight: math.unit(220, "lb"),
  16861. name: "Front (Dress)",
  16862. image: {
  16863. source: "./media/characters/memory/front-dress.svg",
  16864. extra: 3641 / 3545,
  16865. bottom: 0.03
  16866. }
  16867. },
  16868. },
  16869. [
  16870. {
  16871. name: "Micro",
  16872. height: math.unit(6, "inches"),
  16873. default: true
  16874. },
  16875. {
  16876. name: "Normal",
  16877. height: math.unit(5 + 4 / 12, "feet")
  16878. },
  16879. ]
  16880. ))
  16881. characterMakers.push(() => makeCharacter(
  16882. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16883. {
  16884. front: {
  16885. height: math.unit(4 + 11 / 12, "feet"),
  16886. weight: math.unit(100, "lb"),
  16887. name: "Front",
  16888. image: {
  16889. source: "./media/characters/luno/front.svg",
  16890. extra: 1535 / 1487,
  16891. bottom: 0.03
  16892. }
  16893. },
  16894. },
  16895. [
  16896. {
  16897. name: "Micro",
  16898. height: math.unit(3, "inches")
  16899. },
  16900. {
  16901. name: "Normal",
  16902. height: math.unit(4 + 11 / 12, "feet"),
  16903. default: true
  16904. },
  16905. {
  16906. name: "Macro",
  16907. height: math.unit(300, "feet")
  16908. },
  16909. {
  16910. name: "Megamacro",
  16911. height: math.unit(700, "miles")
  16912. },
  16913. ]
  16914. ))
  16915. characterMakers.push(() => makeCharacter(
  16916. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16917. {
  16918. front: {
  16919. height: math.unit(6 + 2 / 12, "feet"),
  16920. weight: math.unit(170, "lb"),
  16921. name: "Front",
  16922. image: {
  16923. source: "./media/characters/jamesy/front.svg",
  16924. extra: 440 / 382,
  16925. bottom: 0.005
  16926. }
  16927. },
  16928. },
  16929. [
  16930. {
  16931. name: "Micro",
  16932. height: math.unit(3, "inches")
  16933. },
  16934. {
  16935. name: "Normal",
  16936. height: math.unit(6 + 2 / 12, "feet"),
  16937. default: true
  16938. },
  16939. {
  16940. name: "Macro",
  16941. height: math.unit(300, "feet")
  16942. },
  16943. {
  16944. name: "Megamacro",
  16945. height: math.unit(700, "miles")
  16946. },
  16947. ]
  16948. ))
  16949. characterMakers.push(() => makeCharacter(
  16950. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16951. {
  16952. front: {
  16953. height: math.unit(6, "feet"),
  16954. weight: math.unit(160, "lb"),
  16955. name: "Front",
  16956. image: {
  16957. source: "./media/characters/mark/front.svg",
  16958. extra: 3300 / 3100,
  16959. bottom: 136.42 / 3440.47
  16960. }
  16961. },
  16962. },
  16963. [
  16964. {
  16965. name: "Macro",
  16966. height: math.unit(120, "meters")
  16967. },
  16968. {
  16969. name: "Bigger Macro",
  16970. height: math.unit(350, "meters")
  16971. },
  16972. {
  16973. name: "Megamacro",
  16974. height: math.unit(8, "km"),
  16975. default: true
  16976. },
  16977. {
  16978. name: "Continental",
  16979. height: math.unit(4550, "km")
  16980. },
  16981. {
  16982. name: "Planetary",
  16983. height: math.unit(65000, "km")
  16984. },
  16985. ]
  16986. ))
  16987. characterMakers.push(() => makeCharacter(
  16988. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16989. {
  16990. front: {
  16991. height: math.unit(6, "feet"),
  16992. weight: math.unit(400, "lb"),
  16993. name: "Front",
  16994. image: {
  16995. source: "./media/characters/mac/front.svg",
  16996. extra: 1048 / 987.7,
  16997. bottom: 60 / 1107.6,
  16998. }
  16999. },
  17000. },
  17001. [
  17002. {
  17003. name: "Macro",
  17004. height: math.unit(500, "feet"),
  17005. default: true
  17006. },
  17007. ]
  17008. ))
  17009. characterMakers.push(() => makeCharacter(
  17010. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17011. {
  17012. front: {
  17013. height: math.unit(5 + 2 / 12, "feet"),
  17014. weight: math.unit(190, "lb"),
  17015. name: "Front",
  17016. image: {
  17017. source: "./media/characters/bari/front.svg",
  17018. extra: 3156 / 2880,
  17019. bottom: 0.03
  17020. }
  17021. },
  17022. back: {
  17023. height: math.unit(5 + 2 / 12, "feet"),
  17024. weight: math.unit(190, "lb"),
  17025. name: "Back",
  17026. image: {
  17027. source: "./media/characters/bari/back.svg",
  17028. extra: 3260 / 2834,
  17029. bottom: 0.025
  17030. }
  17031. },
  17032. frontPlush: {
  17033. height: math.unit(5 + 2 / 12, "feet"),
  17034. weight: math.unit(190, "lb"),
  17035. name: "Front (Plush)",
  17036. image: {
  17037. source: "./media/characters/bari/front-plush.svg",
  17038. extra: 1112 / 1061,
  17039. bottom: 0.002
  17040. }
  17041. },
  17042. },
  17043. [
  17044. {
  17045. name: "Micro",
  17046. height: math.unit(3, "inches")
  17047. },
  17048. {
  17049. name: "Normal",
  17050. height: math.unit(5 + 2 / 12, "feet"),
  17051. default: true
  17052. },
  17053. {
  17054. name: "Macro",
  17055. height: math.unit(20, "feet")
  17056. },
  17057. ]
  17058. ))
  17059. characterMakers.push(() => makeCharacter(
  17060. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17061. {
  17062. front: {
  17063. height: math.unit(6 + 1 / 12, "feet"),
  17064. weight: math.unit(275, "lb"),
  17065. name: "Front",
  17066. image: {
  17067. source: "./media/characters/hunter-misha-raven/front.svg"
  17068. }
  17069. },
  17070. },
  17071. [
  17072. {
  17073. name: "Mortal",
  17074. height: math.unit(6 + 1 / 12, "feet")
  17075. },
  17076. {
  17077. name: "Divine",
  17078. height: math.unit(1.12134e34, "parsecs"),
  17079. default: true
  17080. },
  17081. ]
  17082. ))
  17083. characterMakers.push(() => makeCharacter(
  17084. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17085. {
  17086. front: {
  17087. height: math.unit(6 + 3 / 12, "feet"),
  17088. weight: math.unit(220, "lb"),
  17089. name: "Front",
  17090. image: {
  17091. source: "./media/characters/max-calore/front.svg",
  17092. extra: 1700 / 1648,
  17093. bottom: 0.01
  17094. }
  17095. },
  17096. back: {
  17097. height: math.unit(6 + 3 / 12, "feet"),
  17098. weight: math.unit(220, "lb"),
  17099. name: "Back",
  17100. image: {
  17101. source: "./media/characters/max-calore/back.svg",
  17102. extra: 1700 / 1648,
  17103. bottom: 0.01
  17104. }
  17105. },
  17106. },
  17107. [
  17108. {
  17109. name: "Normal",
  17110. height: math.unit(6 + 3 / 12, "feet"),
  17111. default: true
  17112. },
  17113. ]
  17114. ))
  17115. characterMakers.push(() => makeCharacter(
  17116. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17117. {
  17118. side: {
  17119. height: math.unit(2 + 8 / 12, "feet"),
  17120. weight: math.unit(99, "lb"),
  17121. name: "Side",
  17122. image: {
  17123. source: "./media/characters/aspen/side.svg",
  17124. extra: 152 / 138,
  17125. bottom: 0.032
  17126. }
  17127. },
  17128. },
  17129. [
  17130. {
  17131. name: "Normal",
  17132. height: math.unit(2 + 8 / 12, "feet"),
  17133. default: true
  17134. },
  17135. ]
  17136. ))
  17137. characterMakers.push(() => makeCharacter(
  17138. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17139. {
  17140. side: {
  17141. height: math.unit(3 + 2 / 12, "feet"),
  17142. weight: math.unit(224, "lb"),
  17143. name: "Side",
  17144. image: {
  17145. source: "./media/characters/sheila-feral-wolf/side.svg",
  17146. extra: 179 / 166,
  17147. bottom: 0.03
  17148. }
  17149. },
  17150. },
  17151. [
  17152. {
  17153. name: "Normal",
  17154. height: math.unit(3 + 2 / 12, "feet"),
  17155. default: true
  17156. },
  17157. ]
  17158. ))
  17159. characterMakers.push(() => makeCharacter(
  17160. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17161. {
  17162. side: {
  17163. height: math.unit(1 + 9 / 12, "feet"),
  17164. weight: math.unit(38, "lb"),
  17165. name: "Side",
  17166. image: {
  17167. source: "./media/characters/michelle/side.svg",
  17168. extra: 147 / 136.7,
  17169. bottom: 0.03
  17170. }
  17171. },
  17172. },
  17173. [
  17174. {
  17175. name: "Normal",
  17176. height: math.unit(1 + 9 / 12, "feet"),
  17177. default: true
  17178. },
  17179. ]
  17180. ))
  17181. characterMakers.push(() => makeCharacter(
  17182. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17183. {
  17184. front: {
  17185. height: math.unit(1.54, "feet"),
  17186. weight: math.unit(50, "lb"),
  17187. name: "Front",
  17188. image: {
  17189. source: "./media/characters/nino/front.svg"
  17190. }
  17191. },
  17192. },
  17193. [
  17194. {
  17195. name: "Normal",
  17196. height: math.unit(1.54, "feet"),
  17197. default: true
  17198. },
  17199. ]
  17200. ))
  17201. characterMakers.push(() => makeCharacter(
  17202. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17203. {
  17204. front: {
  17205. height: math.unit(1, "feet"),
  17206. weight: math.unit(16, "lb"),
  17207. name: "Front",
  17208. image: {
  17209. source: "./media/characters/viola/front.svg"
  17210. }
  17211. },
  17212. },
  17213. [
  17214. {
  17215. name: "Normal",
  17216. height: math.unit(1, "feet"),
  17217. default: true
  17218. },
  17219. ]
  17220. ))
  17221. characterMakers.push(() => makeCharacter(
  17222. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17223. {
  17224. front: {
  17225. height: math.unit(6 + 5 / 12, "feet"),
  17226. weight: math.unit(580, "lb"),
  17227. name: "Front",
  17228. image: {
  17229. source: "./media/characters/atlas/front.svg",
  17230. extra: 298.5 / 290,
  17231. bottom: 0.015
  17232. }
  17233. },
  17234. },
  17235. [
  17236. {
  17237. name: "Normal",
  17238. height: math.unit(6 + 5 / 12, "feet"),
  17239. default: true
  17240. },
  17241. ]
  17242. ))
  17243. characterMakers.push(() => makeCharacter(
  17244. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17245. {
  17246. side: {
  17247. height: math.unit(1 + 10 / 12, "feet"),
  17248. weight: math.unit(25, "lb"),
  17249. name: "Side",
  17250. image: {
  17251. source: "./media/characters/davy/side.svg",
  17252. extra: 200 / 170,
  17253. bottom: 0.01
  17254. }
  17255. },
  17256. },
  17257. [
  17258. {
  17259. name: "Normal",
  17260. height: math.unit(1 + 10 / 12, "feet"),
  17261. default: true
  17262. },
  17263. ]
  17264. ))
  17265. characterMakers.push(() => makeCharacter(
  17266. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17267. {
  17268. side: {
  17269. height: math.unit(4 + 8 / 12, "feet"),
  17270. weight: math.unit(166, "lb"),
  17271. name: "Side",
  17272. image: {
  17273. source: "./media/characters/fiona/side.svg",
  17274. extra: 232 / 220,
  17275. bottom: 0.03
  17276. }
  17277. },
  17278. },
  17279. [
  17280. {
  17281. name: "Normal",
  17282. height: math.unit(4 + 8 / 12, "feet"),
  17283. default: true
  17284. },
  17285. ]
  17286. ))
  17287. characterMakers.push(() => makeCharacter(
  17288. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17289. {
  17290. front: {
  17291. height: math.unit(3, "feet"),
  17292. weight: math.unit(100, "lb"),
  17293. name: "Front",
  17294. image: {
  17295. source: "./media/characters/lyla/front.svg",
  17296. bottom: 0.1
  17297. }
  17298. },
  17299. },
  17300. [
  17301. {
  17302. name: "Normal",
  17303. height: math.unit(3, "feet"),
  17304. default: true
  17305. },
  17306. ]
  17307. ))
  17308. characterMakers.push(() => makeCharacter(
  17309. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17310. {
  17311. side: {
  17312. height: math.unit(1.8, "feet"),
  17313. weight: math.unit(44, "lb"),
  17314. name: "Side",
  17315. image: {
  17316. source: "./media/characters/perseus/side.svg",
  17317. bottom: 0.21
  17318. }
  17319. },
  17320. },
  17321. [
  17322. {
  17323. name: "Normal",
  17324. height: math.unit(1.8, "feet"),
  17325. default: true
  17326. },
  17327. ]
  17328. ))
  17329. characterMakers.push(() => makeCharacter(
  17330. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17331. {
  17332. side: {
  17333. height: math.unit(4 + 2 / 12, "feet"),
  17334. weight: math.unit(20, "lb"),
  17335. name: "Side",
  17336. image: {
  17337. source: "./media/characters/remus/side.svg"
  17338. }
  17339. },
  17340. },
  17341. [
  17342. {
  17343. name: "Normal",
  17344. height: math.unit(4 + 2 / 12, "feet"),
  17345. default: true
  17346. },
  17347. ]
  17348. ))
  17349. characterMakers.push(() => makeCharacter(
  17350. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17351. {
  17352. front: {
  17353. height: math.unit(4 + 11 / 12, "feet"),
  17354. weight: math.unit(114, "lb"),
  17355. name: "Front",
  17356. image: {
  17357. source: "./media/characters/raf/front.svg",
  17358. extra: 1504/1339,
  17359. bottom: 26/1530
  17360. }
  17361. },
  17362. side: {
  17363. height: math.unit(4 + 11 / 12, "feet"),
  17364. weight: math.unit(114, "lb"),
  17365. name: "Side",
  17366. image: {
  17367. source: "./media/characters/raf/side.svg",
  17368. extra: 1466/1316,
  17369. bottom: 29/1495
  17370. }
  17371. },
  17372. },
  17373. [
  17374. {
  17375. name: "Micro",
  17376. height: math.unit(2, "inches")
  17377. },
  17378. {
  17379. name: "Normal",
  17380. height: math.unit(4 + 11 / 12, "feet"),
  17381. default: true
  17382. },
  17383. {
  17384. name: "Macro",
  17385. height: math.unit(70, "feet")
  17386. },
  17387. ]
  17388. ))
  17389. characterMakers.push(() => makeCharacter(
  17390. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17391. {
  17392. front: {
  17393. height: math.unit(1.5, "meters"),
  17394. weight: math.unit(68, "kg"),
  17395. name: "Front",
  17396. image: {
  17397. source: "./media/characters/liam-einarr/front.svg",
  17398. extra: 2822 / 2666
  17399. }
  17400. },
  17401. back: {
  17402. height: math.unit(1.5, "meters"),
  17403. weight: math.unit(68, "kg"),
  17404. name: "Back",
  17405. image: {
  17406. source: "./media/characters/liam-einarr/back.svg",
  17407. extra: 2822 / 2666,
  17408. bottom: 0.015
  17409. }
  17410. },
  17411. },
  17412. [
  17413. {
  17414. name: "Normal",
  17415. height: math.unit(1.5, "meters"),
  17416. default: true
  17417. },
  17418. {
  17419. name: "Macro",
  17420. height: math.unit(150, "meters")
  17421. },
  17422. {
  17423. name: "Megamacro",
  17424. height: math.unit(35, "km")
  17425. },
  17426. ]
  17427. ))
  17428. characterMakers.push(() => makeCharacter(
  17429. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17430. {
  17431. front: {
  17432. height: math.unit(6, "feet"),
  17433. weight: math.unit(75, "kg"),
  17434. name: "Front",
  17435. image: {
  17436. source: "./media/characters/linda/front.svg",
  17437. extra: 930 / 874,
  17438. bottom: 0.004
  17439. }
  17440. },
  17441. },
  17442. [
  17443. {
  17444. name: "Normal",
  17445. height: math.unit(6, "feet"),
  17446. default: true
  17447. },
  17448. ]
  17449. ))
  17450. characterMakers.push(() => makeCharacter(
  17451. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17452. {
  17453. front: {
  17454. height: math.unit(6 + 8 / 12, "feet"),
  17455. weight: math.unit(220, "lb"),
  17456. name: "Front",
  17457. image: {
  17458. source: "./media/characters/caylex/front.svg",
  17459. extra: 821 / 772,
  17460. bottom: 0.07
  17461. }
  17462. },
  17463. back: {
  17464. height: math.unit(6 + 8 / 12, "feet"),
  17465. weight: math.unit(220, "lb"),
  17466. name: "Back",
  17467. image: {
  17468. source: "./media/characters/caylex/back.svg",
  17469. extra: 821 / 772,
  17470. bottom: 0.022
  17471. }
  17472. },
  17473. hand: {
  17474. height: math.unit(1.25, "feet"),
  17475. name: "Hand",
  17476. image: {
  17477. source: "./media/characters/caylex/hand.svg"
  17478. }
  17479. },
  17480. foot: {
  17481. height: math.unit(1.6, "feet"),
  17482. name: "Foot",
  17483. image: {
  17484. source: "./media/characters/caylex/foot.svg"
  17485. }
  17486. },
  17487. armored: {
  17488. height: math.unit(6 + 8 / 12, "feet"),
  17489. weight: math.unit(250, "lb"),
  17490. name: "Armored",
  17491. image: {
  17492. source: "./media/characters/caylex/armored.svg",
  17493. extra: 1420 / 1310,
  17494. bottom: 0.045
  17495. }
  17496. },
  17497. },
  17498. [
  17499. {
  17500. name: "Normal",
  17501. height: math.unit(6 + 8 / 12, "feet"),
  17502. default: true
  17503. },
  17504. {
  17505. name: "Normal+",
  17506. height: math.unit(12, "feet")
  17507. },
  17508. ]
  17509. ))
  17510. characterMakers.push(() => makeCharacter(
  17511. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17512. {
  17513. front: {
  17514. height: math.unit(7 + 6 / 12, "feet"),
  17515. weight: math.unit(288, "lb"),
  17516. name: "Front",
  17517. image: {
  17518. source: "./media/characters/alana/front.svg",
  17519. extra: 679 / 653,
  17520. bottom: 22.5 / 701
  17521. }
  17522. },
  17523. },
  17524. [
  17525. {
  17526. name: "Normal",
  17527. height: math.unit(7 + 6 / 12, "feet")
  17528. },
  17529. {
  17530. name: "Large",
  17531. height: math.unit(50, "feet")
  17532. },
  17533. {
  17534. name: "Macro",
  17535. height: math.unit(100, "feet"),
  17536. default: true
  17537. },
  17538. {
  17539. name: "Macro+",
  17540. height: math.unit(200, "feet")
  17541. },
  17542. ]
  17543. ))
  17544. characterMakers.push(() => makeCharacter(
  17545. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17546. {
  17547. front: {
  17548. height: math.unit(6 + 1 / 12, "feet"),
  17549. weight: math.unit(210, "lb"),
  17550. name: "Front",
  17551. image: {
  17552. source: "./media/characters/hasani/front.svg",
  17553. extra: 244 / 232,
  17554. bottom: 0.01
  17555. }
  17556. },
  17557. back: {
  17558. height: math.unit(6 + 1 / 12, "feet"),
  17559. weight: math.unit(210, "lb"),
  17560. name: "Back",
  17561. image: {
  17562. source: "./media/characters/hasani/back.svg",
  17563. extra: 244 / 232,
  17564. bottom: 0.01
  17565. }
  17566. },
  17567. },
  17568. [
  17569. {
  17570. name: "Normal",
  17571. height: math.unit(6 + 1 / 12, "feet")
  17572. },
  17573. {
  17574. name: "Macro",
  17575. height: math.unit(175, "feet"),
  17576. default: true
  17577. },
  17578. ]
  17579. ))
  17580. characterMakers.push(() => makeCharacter(
  17581. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17582. {
  17583. front: {
  17584. height: math.unit(1.82, "meters"),
  17585. weight: math.unit(140, "lb"),
  17586. name: "Front",
  17587. image: {
  17588. source: "./media/characters/nita/front.svg",
  17589. extra: 2473 / 2363,
  17590. bottom: 0.01
  17591. }
  17592. },
  17593. },
  17594. [
  17595. {
  17596. name: "Normal",
  17597. height: math.unit(1.82, "m")
  17598. },
  17599. {
  17600. name: "Macro",
  17601. height: math.unit(300, "m")
  17602. },
  17603. {
  17604. name: "Mistake Canon",
  17605. height: math.unit(0.5, "miles"),
  17606. default: true
  17607. },
  17608. {
  17609. name: "Big Mistake",
  17610. height: math.unit(13, "miles")
  17611. },
  17612. {
  17613. name: "Playing God",
  17614. height: math.unit(2450, "miles")
  17615. },
  17616. ]
  17617. ))
  17618. characterMakers.push(() => makeCharacter(
  17619. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17620. {
  17621. front: {
  17622. height: math.unit(4, "feet"),
  17623. weight: math.unit(120, "lb"),
  17624. name: "Front",
  17625. image: {
  17626. source: "./media/characters/shiriko/front.svg",
  17627. extra: 970/934,
  17628. bottom: 5/975
  17629. }
  17630. },
  17631. },
  17632. [
  17633. {
  17634. name: "Normal",
  17635. height: math.unit(4, "feet"),
  17636. default: true
  17637. },
  17638. ]
  17639. ))
  17640. characterMakers.push(() => makeCharacter(
  17641. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17642. {
  17643. front: {
  17644. height: math.unit(6, "feet"),
  17645. name: "front",
  17646. image: {
  17647. source: "./media/characters/deja/front.svg",
  17648. extra: 926 / 840,
  17649. bottom: 0.07
  17650. }
  17651. },
  17652. },
  17653. [
  17654. {
  17655. name: "Planck Length",
  17656. height: math.unit(1.6e-35, "meters")
  17657. },
  17658. {
  17659. name: "Normal",
  17660. height: math.unit(30.48, "meters"),
  17661. default: true
  17662. },
  17663. {
  17664. name: "Universal",
  17665. height: math.unit(8.8e26, "meters")
  17666. },
  17667. ]
  17668. ))
  17669. characterMakers.push(() => makeCharacter(
  17670. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17671. {
  17672. side: {
  17673. height: math.unit(8, "feet"),
  17674. weight: math.unit(6300, "lb"),
  17675. name: "Side",
  17676. image: {
  17677. source: "./media/characters/anima/side.svg",
  17678. bottom: 0.035
  17679. }
  17680. },
  17681. },
  17682. [
  17683. {
  17684. name: "Normal",
  17685. height: math.unit(8, "feet"),
  17686. default: true
  17687. },
  17688. ]
  17689. ))
  17690. characterMakers.push(() => makeCharacter(
  17691. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17692. {
  17693. front: {
  17694. height: math.unit(8, "feet"),
  17695. weight: math.unit(350, "lb"),
  17696. name: "Front",
  17697. image: {
  17698. source: "./media/characters/bianca/front.svg",
  17699. extra: 234 / 225,
  17700. bottom: 0.03
  17701. }
  17702. },
  17703. },
  17704. [
  17705. {
  17706. name: "Normal",
  17707. height: math.unit(8, "feet"),
  17708. default: true
  17709. },
  17710. ]
  17711. ))
  17712. characterMakers.push(() => makeCharacter(
  17713. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17714. {
  17715. front: {
  17716. height: math.unit(6, "feet"),
  17717. weight: math.unit(150, "lb"),
  17718. name: "Front",
  17719. image: {
  17720. source: "./media/characters/adinia/front.svg",
  17721. extra: 1845 / 1672,
  17722. bottom: 0.02
  17723. }
  17724. },
  17725. back: {
  17726. height: math.unit(6, "feet"),
  17727. weight: math.unit(150, "lb"),
  17728. name: "Back",
  17729. image: {
  17730. source: "./media/characters/adinia/back.svg",
  17731. extra: 1845 / 1672,
  17732. bottom: 0.002
  17733. }
  17734. },
  17735. },
  17736. [
  17737. {
  17738. name: "Normal",
  17739. height: math.unit(11 + 5 / 12, "feet"),
  17740. default: true
  17741. },
  17742. ]
  17743. ))
  17744. characterMakers.push(() => makeCharacter(
  17745. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17746. {
  17747. front: {
  17748. height: math.unit(3, "meters"),
  17749. weight: math.unit(200, "kg"),
  17750. name: "Front",
  17751. image: {
  17752. source: "./media/characters/lykasa/front.svg",
  17753. extra: 1076 / 976,
  17754. bottom: 0.06
  17755. }
  17756. },
  17757. },
  17758. [
  17759. {
  17760. name: "Normal",
  17761. height: math.unit(3, "meters")
  17762. },
  17763. {
  17764. name: "Kaiju",
  17765. height: math.unit(120, "meters"),
  17766. default: true
  17767. },
  17768. {
  17769. name: "Mega Kaiju",
  17770. height: math.unit(240, "km")
  17771. },
  17772. {
  17773. name: "Giga Kaiju",
  17774. height: math.unit(400, "megameters")
  17775. },
  17776. {
  17777. name: "Tera Kaiju",
  17778. height: math.unit(800, "gigameters")
  17779. },
  17780. {
  17781. name: "Kaiju Dragon Goddess",
  17782. height: math.unit(26, "zettaparsecs")
  17783. },
  17784. ]
  17785. ))
  17786. characterMakers.push(() => makeCharacter(
  17787. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17788. {
  17789. side: {
  17790. height: math.unit(283 / 124 * 6, "feet"),
  17791. weight: math.unit(35000, "lb"),
  17792. name: "Side",
  17793. image: {
  17794. source: "./media/characters/malfaren/side.svg",
  17795. extra: 2500 / 1010,
  17796. bottom: 0.01
  17797. }
  17798. },
  17799. front: {
  17800. height: math.unit(22.36, "feet"),
  17801. weight: math.unit(35000, "lb"),
  17802. name: "Front",
  17803. image: {
  17804. source: "./media/characters/malfaren/front.svg",
  17805. extra: 1631 / 1476,
  17806. bottom: 0.01
  17807. }
  17808. },
  17809. maw: {
  17810. height: math.unit(6.9, "feet"),
  17811. name: "Maw",
  17812. image: {
  17813. source: "./media/characters/malfaren/maw.svg"
  17814. }
  17815. },
  17816. },
  17817. [
  17818. {
  17819. name: "Big",
  17820. height: math.unit(283 / 162 * 6, "feet"),
  17821. },
  17822. {
  17823. name: "Bigger",
  17824. height: math.unit(283 / 124 * 6, "feet")
  17825. },
  17826. {
  17827. name: "Massive",
  17828. height: math.unit(283 / 92 * 6, "feet"),
  17829. default: true
  17830. },
  17831. {
  17832. name: "👀💦",
  17833. height: math.unit(283 / 73 * 6, "feet"),
  17834. },
  17835. ]
  17836. ))
  17837. characterMakers.push(() => makeCharacter(
  17838. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17839. {
  17840. front: {
  17841. height: math.unit(1.7, "m"),
  17842. weight: math.unit(70, "kg"),
  17843. name: "Front",
  17844. image: {
  17845. source: "./media/characters/kernel/front.svg",
  17846. extra: 222 / 210,
  17847. bottom: 0.007
  17848. }
  17849. },
  17850. },
  17851. [
  17852. {
  17853. name: "Nano",
  17854. height: math.unit(17, "micrometers")
  17855. },
  17856. {
  17857. name: "Micro",
  17858. height: math.unit(1.7, "mm")
  17859. },
  17860. {
  17861. name: "Small",
  17862. height: math.unit(1.7, "cm")
  17863. },
  17864. {
  17865. name: "Normal",
  17866. height: math.unit(1.7, "m"),
  17867. default: true
  17868. },
  17869. ]
  17870. ))
  17871. characterMakers.push(() => makeCharacter(
  17872. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17873. {
  17874. front: {
  17875. height: math.unit(1.75, "meters"),
  17876. weight: math.unit(65, "kg"),
  17877. name: "Front",
  17878. image: {
  17879. source: "./media/characters/jayne-folest/front.svg",
  17880. extra: 2115 / 2007,
  17881. bottom: 0.02
  17882. }
  17883. },
  17884. back: {
  17885. height: math.unit(1.75, "meters"),
  17886. weight: math.unit(65, "kg"),
  17887. name: "Back",
  17888. image: {
  17889. source: "./media/characters/jayne-folest/back.svg",
  17890. extra: 2115 / 2007,
  17891. bottom: 0.005
  17892. }
  17893. },
  17894. frontClothed: {
  17895. height: math.unit(1.75, "meters"),
  17896. weight: math.unit(65, "kg"),
  17897. name: "Front (Clothed)",
  17898. image: {
  17899. source: "./media/characters/jayne-folest/front-clothed.svg",
  17900. extra: 2115 / 2007,
  17901. bottom: 0.035
  17902. }
  17903. },
  17904. hand: {
  17905. height: math.unit(1 / 1.260, "feet"),
  17906. name: "Hand",
  17907. image: {
  17908. source: "./media/characters/jayne-folest/hand.svg"
  17909. }
  17910. },
  17911. foot: {
  17912. height: math.unit(1 / 0.918, "feet"),
  17913. name: "Foot",
  17914. image: {
  17915. source: "./media/characters/jayne-folest/foot.svg"
  17916. }
  17917. },
  17918. },
  17919. [
  17920. {
  17921. name: "Micro",
  17922. height: math.unit(4, "cm")
  17923. },
  17924. {
  17925. name: "Normal",
  17926. height: math.unit(1.75, "meters")
  17927. },
  17928. {
  17929. name: "Macro",
  17930. height: math.unit(47.5, "meters"),
  17931. default: true
  17932. },
  17933. ]
  17934. ))
  17935. characterMakers.push(() => makeCharacter(
  17936. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17937. {
  17938. front: {
  17939. height: math.unit(180, "cm"),
  17940. weight: math.unit(70, "kg"),
  17941. name: "Front",
  17942. image: {
  17943. source: "./media/characters/algier/front.svg",
  17944. extra: 596 / 572,
  17945. bottom: 0.04
  17946. }
  17947. },
  17948. back: {
  17949. height: math.unit(180, "cm"),
  17950. weight: math.unit(70, "kg"),
  17951. name: "Back",
  17952. image: {
  17953. source: "./media/characters/algier/back.svg",
  17954. extra: 596 / 572,
  17955. bottom: 0.025
  17956. }
  17957. },
  17958. frontdressed: {
  17959. height: math.unit(180, "cm"),
  17960. weight: math.unit(150, "kg"),
  17961. name: "Front-dressed",
  17962. image: {
  17963. source: "./media/characters/algier/front-dressed.svg",
  17964. extra: 596 / 572,
  17965. bottom: 0.038
  17966. }
  17967. },
  17968. },
  17969. [
  17970. {
  17971. name: "Micro",
  17972. height: math.unit(5, "cm")
  17973. },
  17974. {
  17975. name: "Normal",
  17976. height: math.unit(180, "cm"),
  17977. default: true
  17978. },
  17979. {
  17980. name: "Macro",
  17981. height: math.unit(64, "m")
  17982. },
  17983. ]
  17984. ))
  17985. characterMakers.push(() => makeCharacter(
  17986. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17987. {
  17988. upright: {
  17989. height: math.unit(7, "feet"),
  17990. weight: math.unit(300, "lb"),
  17991. name: "Upright",
  17992. image: {
  17993. source: "./media/characters/pretzel/upright.svg",
  17994. extra: 534 / 522,
  17995. bottom: 0.065
  17996. }
  17997. },
  17998. sprawling: {
  17999. height: math.unit(3.75, "feet"),
  18000. weight: math.unit(300, "lb"),
  18001. name: "Sprawling",
  18002. image: {
  18003. source: "./media/characters/pretzel/sprawling.svg",
  18004. extra: 314 / 281,
  18005. bottom: 0.1
  18006. }
  18007. },
  18008. tongue: {
  18009. height: math.unit(2, "feet"),
  18010. name: "Tongue",
  18011. image: {
  18012. source: "./media/characters/pretzel/tongue.svg"
  18013. }
  18014. },
  18015. },
  18016. [
  18017. {
  18018. name: "Normal",
  18019. height: math.unit(7, "feet"),
  18020. default: true
  18021. },
  18022. {
  18023. name: "Oversized",
  18024. height: math.unit(15, "feet")
  18025. },
  18026. {
  18027. name: "Huge",
  18028. height: math.unit(30, "feet")
  18029. },
  18030. {
  18031. name: "Macro",
  18032. height: math.unit(250, "feet")
  18033. },
  18034. ]
  18035. ))
  18036. characterMakers.push(() => makeCharacter(
  18037. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18038. {
  18039. sideFront: {
  18040. height: math.unit(5 + 2 / 12, "feet"),
  18041. weight: math.unit(120, "lb"),
  18042. name: "Front Side",
  18043. image: {
  18044. source: "./media/characters/roxi/side-front.svg",
  18045. extra: 2924 / 2717,
  18046. bottom: 0.08
  18047. }
  18048. },
  18049. sideBack: {
  18050. height: math.unit(5 + 2 / 12, "feet"),
  18051. weight: math.unit(120, "lb"),
  18052. name: "Back Side",
  18053. image: {
  18054. source: "./media/characters/roxi/side-back.svg",
  18055. extra: 2904 / 2693,
  18056. bottom: 0.06
  18057. }
  18058. },
  18059. front: {
  18060. height: math.unit(5 + 2 / 12, "feet"),
  18061. weight: math.unit(120, "lb"),
  18062. name: "Front",
  18063. image: {
  18064. source: "./media/characters/roxi/front.svg",
  18065. extra: 2028 / 1907,
  18066. bottom: 0.01
  18067. }
  18068. },
  18069. frontAlt: {
  18070. height: math.unit(5 + 2 / 12, "feet"),
  18071. weight: math.unit(120, "lb"),
  18072. name: "Front (Alt)",
  18073. image: {
  18074. source: "./media/characters/roxi/front-alt.svg",
  18075. extra: 1828 / 1798,
  18076. bottom: 0.01
  18077. }
  18078. },
  18079. sitting: {
  18080. height: math.unit(2.8, "feet"),
  18081. weight: math.unit(120, "lb"),
  18082. name: "Sitting",
  18083. image: {
  18084. source: "./media/characters/roxi/sitting.svg",
  18085. extra: 2660 / 2462,
  18086. bottom: 0.1
  18087. }
  18088. },
  18089. },
  18090. [
  18091. {
  18092. name: "Normal",
  18093. height: math.unit(5 + 2 / 12, "feet"),
  18094. default: true
  18095. },
  18096. ]
  18097. ))
  18098. characterMakers.push(() => makeCharacter(
  18099. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18100. {
  18101. side: {
  18102. height: math.unit(55, "feet"),
  18103. weight: math.unit(153, "tons"),
  18104. name: "Side",
  18105. image: {
  18106. source: "./media/characters/shadow/side.svg",
  18107. extra: 701 / 628,
  18108. bottom: 0.02
  18109. }
  18110. },
  18111. flying: {
  18112. height: math.unit(145, "feet"),
  18113. weight: math.unit(153, "tons"),
  18114. name: "Flying",
  18115. image: {
  18116. source: "./media/characters/shadow/flying.svg"
  18117. }
  18118. },
  18119. },
  18120. [
  18121. {
  18122. name: "Normal",
  18123. height: math.unit(55, "feet"),
  18124. default: true
  18125. },
  18126. ]
  18127. ))
  18128. characterMakers.push(() => makeCharacter(
  18129. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18130. {
  18131. front: {
  18132. height: math.unit(6, "feet"),
  18133. weight: math.unit(200, "lb"),
  18134. name: "Front",
  18135. image: {
  18136. source: "./media/characters/marcie/front.svg",
  18137. extra: 960 / 876,
  18138. bottom: 58 / 1017.87
  18139. }
  18140. },
  18141. },
  18142. [
  18143. {
  18144. name: "Macro",
  18145. height: math.unit(1, "mile"),
  18146. default: true
  18147. },
  18148. ]
  18149. ))
  18150. characterMakers.push(() => makeCharacter(
  18151. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18152. {
  18153. front: {
  18154. height: math.unit(7, "feet"),
  18155. weight: math.unit(200, "lb"),
  18156. name: "Front",
  18157. image: {
  18158. source: "./media/characters/kachina/front.svg",
  18159. extra: 1290.68 / 1119,
  18160. bottom: 36.5 / 1327.18
  18161. }
  18162. },
  18163. },
  18164. [
  18165. {
  18166. name: "Normal",
  18167. height: math.unit(7, "feet"),
  18168. default: true
  18169. },
  18170. ]
  18171. ))
  18172. characterMakers.push(() => makeCharacter(
  18173. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18174. {
  18175. looking: {
  18176. height: math.unit(2, "meters"),
  18177. weight: math.unit(300, "kg"),
  18178. name: "Looking",
  18179. image: {
  18180. source: "./media/characters/kash/looking.svg",
  18181. extra: 474 / 344,
  18182. bottom: 0.03
  18183. }
  18184. },
  18185. side: {
  18186. height: math.unit(2, "meters"),
  18187. weight: math.unit(300, "kg"),
  18188. name: "Side",
  18189. image: {
  18190. source: "./media/characters/kash/side.svg",
  18191. extra: 302 / 251,
  18192. bottom: 0.03
  18193. }
  18194. },
  18195. front: {
  18196. height: math.unit(2, "meters"),
  18197. weight: math.unit(300, "kg"),
  18198. name: "Front",
  18199. image: {
  18200. source: "./media/characters/kash/front.svg",
  18201. extra: 495 / 360,
  18202. bottom: 0.015
  18203. }
  18204. },
  18205. },
  18206. [
  18207. {
  18208. name: "Normal",
  18209. height: math.unit(2, "meters"),
  18210. default: true
  18211. },
  18212. {
  18213. name: "Big",
  18214. height: math.unit(3, "meters")
  18215. },
  18216. {
  18217. name: "Large",
  18218. height: math.unit(5, "meters")
  18219. },
  18220. ]
  18221. ))
  18222. characterMakers.push(() => makeCharacter(
  18223. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18224. {
  18225. feeding: {
  18226. height: math.unit(6.7, "feet"),
  18227. weight: math.unit(350, "lb"),
  18228. name: "Feeding",
  18229. image: {
  18230. source: "./media/characters/lalim/feeding.svg",
  18231. }
  18232. },
  18233. },
  18234. [
  18235. {
  18236. name: "Normal",
  18237. height: math.unit(6.7, "feet"),
  18238. default: true
  18239. },
  18240. ]
  18241. ))
  18242. characterMakers.push(() => makeCharacter(
  18243. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18244. {
  18245. front: {
  18246. height: math.unit(9.5, "feet"),
  18247. weight: math.unit(600, "lb"),
  18248. name: "Front",
  18249. image: {
  18250. source: "./media/characters/de'vout/front.svg",
  18251. extra: 1443 / 1328,
  18252. bottom: 0.025
  18253. }
  18254. },
  18255. back: {
  18256. height: math.unit(9.5, "feet"),
  18257. weight: math.unit(600, "lb"),
  18258. name: "Back",
  18259. image: {
  18260. source: "./media/characters/de'vout/back.svg",
  18261. extra: 1443 / 1328
  18262. }
  18263. },
  18264. frontDressed: {
  18265. height: math.unit(9.5, "feet"),
  18266. weight: math.unit(600, "lb"),
  18267. name: "Front (Dressed",
  18268. image: {
  18269. source: "./media/characters/de'vout/front-dressed.svg",
  18270. extra: 1443 / 1328,
  18271. bottom: 0.025
  18272. }
  18273. },
  18274. backDressed: {
  18275. height: math.unit(9.5, "feet"),
  18276. weight: math.unit(600, "lb"),
  18277. name: "Back (Dressed",
  18278. image: {
  18279. source: "./media/characters/de'vout/back-dressed.svg",
  18280. extra: 1443 / 1328
  18281. }
  18282. },
  18283. },
  18284. [
  18285. {
  18286. name: "Normal",
  18287. height: math.unit(9.5, "feet"),
  18288. default: true
  18289. },
  18290. ]
  18291. ))
  18292. characterMakers.push(() => makeCharacter(
  18293. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18294. {
  18295. front: {
  18296. height: math.unit(8, "feet"),
  18297. weight: math.unit(225, "lb"),
  18298. name: "Front",
  18299. image: {
  18300. source: "./media/characters/talana/front.svg",
  18301. extra: 1410 / 1300,
  18302. bottom: 0.015
  18303. }
  18304. },
  18305. frontDressed: {
  18306. height: math.unit(8, "feet"),
  18307. weight: math.unit(225, "lb"),
  18308. name: "Front (Dressed",
  18309. image: {
  18310. source: "./media/characters/talana/front-dressed.svg",
  18311. extra: 1410 / 1300,
  18312. bottom: 0.015
  18313. }
  18314. },
  18315. },
  18316. [
  18317. {
  18318. name: "Normal",
  18319. height: math.unit(8, "feet"),
  18320. default: true
  18321. },
  18322. ]
  18323. ))
  18324. characterMakers.push(() => makeCharacter(
  18325. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18326. {
  18327. side: {
  18328. height: math.unit(7.2, "feet"),
  18329. weight: math.unit(150, "lb"),
  18330. name: "Side",
  18331. image: {
  18332. source: "./media/characters/xeauvok/side.svg",
  18333. extra: 1975 / 1523,
  18334. bottom: 0.07
  18335. }
  18336. },
  18337. },
  18338. [
  18339. {
  18340. name: "Normal",
  18341. height: math.unit(7.2, "feet"),
  18342. default: true
  18343. },
  18344. ]
  18345. ))
  18346. characterMakers.push(() => makeCharacter(
  18347. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18348. {
  18349. side: {
  18350. height: math.unit(10, "feet"),
  18351. weight: math.unit(900, "kg"),
  18352. name: "Side",
  18353. image: {
  18354. source: "./media/characters/zara/side.svg",
  18355. extra: 504 / 498
  18356. }
  18357. },
  18358. },
  18359. [
  18360. {
  18361. name: "Normal",
  18362. height: math.unit(10, "feet"),
  18363. default: true
  18364. },
  18365. ]
  18366. ))
  18367. characterMakers.push(() => makeCharacter(
  18368. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18369. {
  18370. side: {
  18371. height: math.unit(6, "feet"),
  18372. weight: math.unit(150, "lb"),
  18373. name: "Side",
  18374. image: {
  18375. source: "./media/characters/richard-dragon/side.svg",
  18376. extra: 845 / 340,
  18377. bottom: 0.017
  18378. }
  18379. },
  18380. maw: {
  18381. height: math.unit(2.97, "feet"),
  18382. name: "Maw",
  18383. image: {
  18384. source: "./media/characters/richard-dragon/maw.svg"
  18385. }
  18386. },
  18387. },
  18388. [
  18389. ]
  18390. ))
  18391. characterMakers.push(() => makeCharacter(
  18392. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18393. {
  18394. front: {
  18395. height: math.unit(4, "feet"),
  18396. weight: math.unit(100, "lb"),
  18397. name: "Front",
  18398. image: {
  18399. source: "./media/characters/richard-smeargle/front.svg",
  18400. extra: 2952 / 2820,
  18401. bottom: 0.028
  18402. }
  18403. },
  18404. },
  18405. [
  18406. {
  18407. name: "Normal",
  18408. height: math.unit(4, "feet"),
  18409. default: true
  18410. },
  18411. {
  18412. name: "Dynamax",
  18413. height: math.unit(20, "meters")
  18414. },
  18415. ]
  18416. ))
  18417. characterMakers.push(() => makeCharacter(
  18418. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18419. {
  18420. front: {
  18421. height: math.unit(6, "feet"),
  18422. weight: math.unit(110, "lb"),
  18423. name: "Front",
  18424. image: {
  18425. source: "./media/characters/klay/front.svg",
  18426. extra: 962 / 883,
  18427. bottom: 0.04
  18428. }
  18429. },
  18430. back: {
  18431. height: math.unit(6, "feet"),
  18432. weight: math.unit(110, "lb"),
  18433. name: "Back",
  18434. image: {
  18435. source: "./media/characters/klay/back.svg",
  18436. extra: 962 / 883
  18437. }
  18438. },
  18439. beans: {
  18440. height: math.unit(1.15, "feet"),
  18441. name: "Beans",
  18442. image: {
  18443. source: "./media/characters/klay/beans.svg"
  18444. }
  18445. },
  18446. },
  18447. [
  18448. {
  18449. name: "Micro",
  18450. height: math.unit(6, "inches")
  18451. },
  18452. {
  18453. name: "Mini",
  18454. height: math.unit(3, "feet")
  18455. },
  18456. {
  18457. name: "Normal",
  18458. height: math.unit(6, "feet"),
  18459. default: true
  18460. },
  18461. {
  18462. name: "Big",
  18463. height: math.unit(25, "feet")
  18464. },
  18465. {
  18466. name: "Macro",
  18467. height: math.unit(100, "feet")
  18468. },
  18469. {
  18470. name: "Megamacro",
  18471. height: math.unit(400, "feet")
  18472. },
  18473. ]
  18474. ))
  18475. characterMakers.push(() => makeCharacter(
  18476. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18477. {
  18478. front: {
  18479. height: math.unit(6, "feet"),
  18480. weight: math.unit(160, "lb"),
  18481. name: "Front",
  18482. image: {
  18483. source: "./media/characters/marcus/front.svg",
  18484. extra: 734 / 676,
  18485. bottom: 0.03
  18486. }
  18487. },
  18488. },
  18489. [
  18490. {
  18491. name: "Little",
  18492. height: math.unit(6, "feet")
  18493. },
  18494. {
  18495. name: "Normal",
  18496. height: math.unit(110, "feet"),
  18497. default: true
  18498. },
  18499. {
  18500. name: "Macro",
  18501. height: math.unit(250, "feet")
  18502. },
  18503. {
  18504. name: "Megamacro",
  18505. height: math.unit(1000, "feet")
  18506. },
  18507. ]
  18508. ))
  18509. characterMakers.push(() => makeCharacter(
  18510. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18511. {
  18512. front: {
  18513. height: math.unit(7, "feet"),
  18514. weight: math.unit(275, "lb"),
  18515. name: "Front",
  18516. image: {
  18517. source: "./media/characters/claude-delroute/front.svg",
  18518. extra: 902/827,
  18519. bottom: 26/928
  18520. }
  18521. },
  18522. side: {
  18523. height: math.unit(7, "feet"),
  18524. weight: math.unit(275, "lb"),
  18525. name: "Side",
  18526. image: {
  18527. source: "./media/characters/claude-delroute/side.svg",
  18528. extra: 908/853,
  18529. bottom: 16/924
  18530. }
  18531. },
  18532. back: {
  18533. height: math.unit(7, "feet"),
  18534. weight: math.unit(275, "lb"),
  18535. name: "Back",
  18536. image: {
  18537. source: "./media/characters/claude-delroute/back.svg",
  18538. extra: 911/829,
  18539. bottom: 18/929
  18540. }
  18541. },
  18542. maw: {
  18543. height: math.unit(0.6407, "meters"),
  18544. name: "Maw",
  18545. image: {
  18546. source: "./media/characters/claude-delroute/maw.svg"
  18547. }
  18548. },
  18549. },
  18550. [
  18551. {
  18552. name: "Normal",
  18553. height: math.unit(7, "feet"),
  18554. default: true
  18555. },
  18556. {
  18557. name: "Lorge",
  18558. height: math.unit(20, "feet")
  18559. },
  18560. ]
  18561. ))
  18562. characterMakers.push(() => makeCharacter(
  18563. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18564. {
  18565. front: {
  18566. height: math.unit(8 + 4 / 12, "feet"),
  18567. weight: math.unit(600, "lb"),
  18568. name: "Front",
  18569. image: {
  18570. source: "./media/characters/dragonien/front.svg",
  18571. extra: 100 / 94,
  18572. bottom: 3.3 / 103.3445
  18573. }
  18574. },
  18575. back: {
  18576. height: math.unit(8 + 4 / 12, "feet"),
  18577. weight: math.unit(600, "lb"),
  18578. name: "Back",
  18579. image: {
  18580. source: "./media/characters/dragonien/back.svg",
  18581. extra: 776 / 746,
  18582. bottom: 6.4 / 782.0616
  18583. }
  18584. },
  18585. foot: {
  18586. height: math.unit(1.54, "feet"),
  18587. name: "Foot",
  18588. image: {
  18589. source: "./media/characters/dragonien/foot.svg",
  18590. }
  18591. },
  18592. },
  18593. [
  18594. {
  18595. name: "Normal",
  18596. height: math.unit(8 + 4 / 12, "feet"),
  18597. default: true
  18598. },
  18599. {
  18600. name: "Macro",
  18601. height: math.unit(200, "feet")
  18602. },
  18603. {
  18604. name: "Megamacro",
  18605. height: math.unit(1, "mile")
  18606. },
  18607. {
  18608. name: "Gigamacro",
  18609. height: math.unit(1000, "miles")
  18610. },
  18611. ]
  18612. ))
  18613. characterMakers.push(() => makeCharacter(
  18614. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18615. {
  18616. front: {
  18617. height: math.unit(5 + 2 / 12, "feet"),
  18618. weight: math.unit(110, "lb"),
  18619. name: "Front",
  18620. image: {
  18621. source: "./media/characters/desta/front.svg",
  18622. extra: 767 / 726,
  18623. bottom: 11.7 / 779
  18624. }
  18625. },
  18626. back: {
  18627. height: math.unit(5 + 2 / 12, "feet"),
  18628. weight: math.unit(110, "lb"),
  18629. name: "Back",
  18630. image: {
  18631. source: "./media/characters/desta/back.svg",
  18632. extra: 777 / 728,
  18633. bottom: 6 / 784
  18634. }
  18635. },
  18636. frontAlt: {
  18637. height: math.unit(5 + 2 / 12, "feet"),
  18638. weight: math.unit(110, "lb"),
  18639. name: "Front",
  18640. image: {
  18641. source: "./media/characters/desta/front-alt.svg",
  18642. extra: 1482 / 1417
  18643. }
  18644. },
  18645. side: {
  18646. height: math.unit(5 + 2 / 12, "feet"),
  18647. weight: math.unit(110, "lb"),
  18648. name: "Side",
  18649. image: {
  18650. source: "./media/characters/desta/side.svg",
  18651. extra: 2579 / 2491,
  18652. bottom: 0.053
  18653. }
  18654. },
  18655. },
  18656. [
  18657. {
  18658. name: "Micro",
  18659. height: math.unit(6, "inches")
  18660. },
  18661. {
  18662. name: "Normal",
  18663. height: math.unit(5 + 2 / 12, "feet"),
  18664. default: true
  18665. },
  18666. {
  18667. name: "Macro",
  18668. height: math.unit(62, "feet")
  18669. },
  18670. {
  18671. name: "Megamacro",
  18672. height: math.unit(1800, "feet")
  18673. },
  18674. ]
  18675. ))
  18676. characterMakers.push(() => makeCharacter(
  18677. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18678. {
  18679. front: {
  18680. height: math.unit(10, "feet"),
  18681. weight: math.unit(700, "lb"),
  18682. name: "Front",
  18683. image: {
  18684. source: "./media/characters/storm-alystar/front.svg",
  18685. extra: 2112 / 1898,
  18686. bottom: 0.034
  18687. }
  18688. },
  18689. },
  18690. [
  18691. {
  18692. name: "Micro",
  18693. height: math.unit(3.5, "inches")
  18694. },
  18695. {
  18696. name: "Normal",
  18697. height: math.unit(10, "feet"),
  18698. default: true
  18699. },
  18700. {
  18701. name: "Macro",
  18702. height: math.unit(400, "feet")
  18703. },
  18704. {
  18705. name: "Deific",
  18706. height: math.unit(60, "miles")
  18707. },
  18708. ]
  18709. ))
  18710. characterMakers.push(() => makeCharacter(
  18711. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18712. {
  18713. front: {
  18714. height: math.unit(2.35, "meters"),
  18715. weight: math.unit(119, "kg"),
  18716. name: "Front",
  18717. image: {
  18718. source: "./media/characters/ilia/front.svg",
  18719. extra: 1285 / 1255,
  18720. bottom: 0.06
  18721. }
  18722. },
  18723. },
  18724. [
  18725. {
  18726. name: "Normal",
  18727. height: math.unit(2.35, "meters")
  18728. },
  18729. {
  18730. name: "Macro",
  18731. height: math.unit(140, "meters"),
  18732. default: true
  18733. },
  18734. {
  18735. name: "Megamacro",
  18736. height: math.unit(100, "miles")
  18737. },
  18738. ]
  18739. ))
  18740. characterMakers.push(() => makeCharacter(
  18741. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18742. {
  18743. front: {
  18744. height: math.unit(6 + 5 / 12, "feet"),
  18745. weight: math.unit(190, "lb"),
  18746. name: "Front",
  18747. image: {
  18748. source: "./media/characters/kingdead/front.svg",
  18749. extra: 1228 / 1177
  18750. }
  18751. },
  18752. },
  18753. [
  18754. {
  18755. name: "Micro",
  18756. height: math.unit(7, "inches")
  18757. },
  18758. {
  18759. name: "Normal",
  18760. height: math.unit(6 + 5 / 12, "feet")
  18761. },
  18762. {
  18763. name: "Macro",
  18764. height: math.unit(150, "feet"),
  18765. default: true
  18766. },
  18767. {
  18768. name: "Megamacro",
  18769. height: math.unit(200, "miles")
  18770. },
  18771. ]
  18772. ))
  18773. characterMakers.push(() => makeCharacter(
  18774. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18775. {
  18776. front: {
  18777. height: math.unit(8, "feet"),
  18778. weight: math.unit(600, "lb"),
  18779. name: "Front",
  18780. image: {
  18781. source: "./media/characters/kyrehx/front.svg",
  18782. extra: 1195 / 1095,
  18783. bottom: 0.034
  18784. }
  18785. },
  18786. },
  18787. [
  18788. {
  18789. name: "Micro",
  18790. height: math.unit(2, "inches")
  18791. },
  18792. {
  18793. name: "Normal",
  18794. height: math.unit(8, "feet"),
  18795. default: true
  18796. },
  18797. {
  18798. name: "Macro",
  18799. height: math.unit(255, "feet")
  18800. },
  18801. ]
  18802. ))
  18803. characterMakers.push(() => makeCharacter(
  18804. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18805. {
  18806. front: {
  18807. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18808. weight: math.unit(184, "lb"),
  18809. name: "Front",
  18810. image: {
  18811. source: "./media/characters/xang/front.svg",
  18812. extra: 845 / 755
  18813. }
  18814. },
  18815. },
  18816. [
  18817. {
  18818. name: "Normal",
  18819. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18820. default: true
  18821. },
  18822. {
  18823. name: "Macro",
  18824. height: math.unit(0.935 * 146, "feet")
  18825. },
  18826. {
  18827. name: "Megamacro",
  18828. height: math.unit(0.935 * 3, "miles")
  18829. },
  18830. ]
  18831. ))
  18832. characterMakers.push(() => makeCharacter(
  18833. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18834. {
  18835. frontDressed: {
  18836. height: math.unit(5 + 7 / 12, "feet"),
  18837. weight: math.unit(140, "lb"),
  18838. name: "Front (Dressed)",
  18839. image: {
  18840. source: "./media/characters/doc-weardno/front-dressed.svg",
  18841. extra: 263 / 234
  18842. }
  18843. },
  18844. backDressed: {
  18845. height: math.unit(5 + 7 / 12, "feet"),
  18846. weight: math.unit(140, "lb"),
  18847. name: "Back (Dressed)",
  18848. image: {
  18849. source: "./media/characters/doc-weardno/back-dressed.svg",
  18850. extra: 266 / 238
  18851. }
  18852. },
  18853. front: {
  18854. height: math.unit(5 + 7 / 12, "feet"),
  18855. weight: math.unit(140, "lb"),
  18856. name: "Front",
  18857. image: {
  18858. source: "./media/characters/doc-weardno/front.svg",
  18859. extra: 254 / 233
  18860. }
  18861. },
  18862. },
  18863. [
  18864. {
  18865. name: "Micro",
  18866. height: math.unit(3, "inches")
  18867. },
  18868. {
  18869. name: "Normal",
  18870. height: math.unit(5 + 7 / 12, "feet"),
  18871. default: true
  18872. },
  18873. {
  18874. name: "Macro",
  18875. height: math.unit(25, "feet")
  18876. },
  18877. {
  18878. name: "Megamacro",
  18879. height: math.unit(2, "miles")
  18880. },
  18881. ]
  18882. ))
  18883. characterMakers.push(() => makeCharacter(
  18884. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18885. {
  18886. front: {
  18887. height: math.unit(6 + 2 / 12, "feet"),
  18888. weight: math.unit(153, "lb"),
  18889. name: "Front",
  18890. image: {
  18891. source: "./media/characters/seth-whilst/front.svg",
  18892. bottom: 0.07
  18893. }
  18894. },
  18895. },
  18896. [
  18897. {
  18898. name: "Micro",
  18899. height: math.unit(5, "inches")
  18900. },
  18901. {
  18902. name: "Normal",
  18903. height: math.unit(6 + 2 / 12, "feet"),
  18904. default: true
  18905. },
  18906. ]
  18907. ))
  18908. characterMakers.push(() => makeCharacter(
  18909. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18910. {
  18911. front: {
  18912. height: math.unit(3, "inches"),
  18913. weight: math.unit(8, "grams"),
  18914. name: "Front",
  18915. image: {
  18916. source: "./media/characters/pocket-jabari/front.svg",
  18917. extra: 1024 / 974,
  18918. bottom: 0.039
  18919. }
  18920. },
  18921. },
  18922. [
  18923. {
  18924. name: "Minimicro",
  18925. height: math.unit(8, "mm")
  18926. },
  18927. {
  18928. name: "Micro",
  18929. height: math.unit(3, "inches"),
  18930. default: true
  18931. },
  18932. {
  18933. name: "Normal",
  18934. height: math.unit(3, "feet")
  18935. },
  18936. ]
  18937. ))
  18938. characterMakers.push(() => makeCharacter(
  18939. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18940. {
  18941. front: {
  18942. height: math.unit(15, "feet"),
  18943. weight: math.unit(3280, "lb"),
  18944. name: "Front",
  18945. image: {
  18946. source: "./media/characters/sapphy/front.svg",
  18947. extra: 671 / 577,
  18948. bottom: 0.085
  18949. }
  18950. },
  18951. back: {
  18952. height: math.unit(15, "feet"),
  18953. weight: math.unit(3280, "lb"),
  18954. name: "Back",
  18955. image: {
  18956. source: "./media/characters/sapphy/back.svg",
  18957. extra: 631 / 607,
  18958. bottom: 0.045
  18959. }
  18960. },
  18961. },
  18962. [
  18963. {
  18964. name: "Normal",
  18965. height: math.unit(15, "feet")
  18966. },
  18967. {
  18968. name: "Casual Macro",
  18969. height: math.unit(120, "feet")
  18970. },
  18971. {
  18972. name: "Macro",
  18973. height: math.unit(2150, "feet"),
  18974. default: true
  18975. },
  18976. {
  18977. name: "Megamacro",
  18978. height: math.unit(8, "miles")
  18979. },
  18980. {
  18981. name: "Galaxy Mom",
  18982. height: math.unit(6, "megalightyears")
  18983. },
  18984. ]
  18985. ))
  18986. characterMakers.push(() => makeCharacter(
  18987. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18988. {
  18989. front: {
  18990. height: math.unit(6, "feet"),
  18991. weight: math.unit(170, "lb"),
  18992. name: "Front",
  18993. image: {
  18994. source: "./media/characters/kiro/front.svg",
  18995. extra: 1064 / 1012,
  18996. bottom: 0.052
  18997. }
  18998. },
  18999. },
  19000. [
  19001. {
  19002. name: "Micro",
  19003. height: math.unit(6, "inches")
  19004. },
  19005. {
  19006. name: "Normal",
  19007. height: math.unit(6, "feet"),
  19008. default: true
  19009. },
  19010. {
  19011. name: "Macro",
  19012. height: math.unit(72, "feet")
  19013. },
  19014. ]
  19015. ))
  19016. characterMakers.push(() => makeCharacter(
  19017. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19018. {
  19019. front: {
  19020. height: math.unit(5 + 9 / 12, "feet"),
  19021. weight: math.unit(175, "lb"),
  19022. name: "Front",
  19023. image: {
  19024. source: "./media/characters/irishfox/front.svg",
  19025. extra: 1912 / 1680,
  19026. bottom: 0.02
  19027. }
  19028. },
  19029. },
  19030. [
  19031. {
  19032. name: "Nano",
  19033. height: math.unit(1, "mm")
  19034. },
  19035. {
  19036. name: "Micro",
  19037. height: math.unit(2, "inches")
  19038. },
  19039. {
  19040. name: "Normal",
  19041. height: math.unit(5 + 9 / 12, "feet"),
  19042. default: true
  19043. },
  19044. {
  19045. name: "Macro",
  19046. height: math.unit(45, "feet")
  19047. },
  19048. ]
  19049. ))
  19050. characterMakers.push(() => makeCharacter(
  19051. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19052. {
  19053. front: {
  19054. height: math.unit(6 + 1 / 12, "feet"),
  19055. weight: math.unit(75, "lb"),
  19056. name: "Front",
  19057. image: {
  19058. source: "./media/characters/aronai-sieyes/front.svg",
  19059. extra: 1532/1450,
  19060. bottom: 42/1574
  19061. }
  19062. },
  19063. side: {
  19064. height: math.unit(6 + 1 / 12, "feet"),
  19065. weight: math.unit(75, "lb"),
  19066. name: "Side",
  19067. image: {
  19068. source: "./media/characters/aronai-sieyes/side.svg",
  19069. extra: 1422/1365,
  19070. bottom: 148/1570
  19071. }
  19072. },
  19073. back: {
  19074. height: math.unit(6 + 1 / 12, "feet"),
  19075. weight: math.unit(75, "lb"),
  19076. name: "Back",
  19077. image: {
  19078. source: "./media/characters/aronai-sieyes/back.svg",
  19079. extra: 1526/1464,
  19080. bottom: 51/1577
  19081. }
  19082. },
  19083. dressed: {
  19084. height: math.unit(6 + 1 / 12, "feet"),
  19085. weight: math.unit(75, "lb"),
  19086. name: "Dressed",
  19087. image: {
  19088. source: "./media/characters/aronai-sieyes/dressed.svg",
  19089. extra: 1559/1483,
  19090. bottom: 39/1598
  19091. }
  19092. },
  19093. slit: {
  19094. height: math.unit(1.3, "feet"),
  19095. name: "Slit",
  19096. image: {
  19097. source: "./media/characters/aronai-sieyes/slit.svg"
  19098. }
  19099. },
  19100. slitSpread: {
  19101. height: math.unit(0.9, "feet"),
  19102. name: "Slit (Spread)",
  19103. image: {
  19104. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19105. }
  19106. },
  19107. rump: {
  19108. height: math.unit(1.3, "feet"),
  19109. name: "Rump",
  19110. image: {
  19111. source: "./media/characters/aronai-sieyes/rump.svg"
  19112. }
  19113. },
  19114. maw: {
  19115. height: math.unit(1.25, "feet"),
  19116. name: "Maw",
  19117. image: {
  19118. source: "./media/characters/aronai-sieyes/maw.svg"
  19119. }
  19120. },
  19121. feral: {
  19122. height: math.unit(18, "feet"),
  19123. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19124. name: "Feral",
  19125. image: {
  19126. source: "./media/characters/aronai-sieyes/feral.svg",
  19127. extra: 1530 / 1240,
  19128. bottom: 0.035
  19129. }
  19130. },
  19131. },
  19132. [
  19133. {
  19134. name: "Micro",
  19135. height: math.unit(2, "inches")
  19136. },
  19137. {
  19138. name: "Normal",
  19139. height: math.unit(6 + 1 / 12, "feet"),
  19140. default: true
  19141. }
  19142. ]
  19143. ))
  19144. characterMakers.push(() => makeCharacter(
  19145. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19146. {
  19147. front: {
  19148. height: math.unit(12, "feet"),
  19149. weight: math.unit(410, "kg"),
  19150. name: "Front",
  19151. image: {
  19152. source: "./media/characters/xuna/front.svg",
  19153. extra: 2184 / 1980
  19154. }
  19155. },
  19156. side: {
  19157. height: math.unit(12, "feet"),
  19158. weight: math.unit(410, "kg"),
  19159. name: "Side",
  19160. image: {
  19161. source: "./media/characters/xuna/side.svg",
  19162. extra: 2184 / 1980
  19163. }
  19164. },
  19165. back: {
  19166. height: math.unit(12, "feet"),
  19167. weight: math.unit(410, "kg"),
  19168. name: "Back",
  19169. image: {
  19170. source: "./media/characters/xuna/back.svg",
  19171. extra: 2184 / 1980
  19172. }
  19173. },
  19174. },
  19175. [
  19176. {
  19177. name: "Nano glow",
  19178. height: math.unit(10, "nm")
  19179. },
  19180. {
  19181. name: "Micro floof",
  19182. height: math.unit(0.3, "m")
  19183. },
  19184. {
  19185. name: "Huggable softy boi",
  19186. height: math.unit(3.6576, "m"),
  19187. default: true
  19188. },
  19189. {
  19190. name: "Admirable floof",
  19191. height: math.unit(80, "meters")
  19192. },
  19193. {
  19194. name: "Gentle macro",
  19195. height: math.unit(300, "meters")
  19196. },
  19197. {
  19198. name: "Very careful floof",
  19199. height: math.unit(3200, "meters")
  19200. },
  19201. {
  19202. name: "The mega floof",
  19203. height: math.unit(36000, "meters")
  19204. },
  19205. {
  19206. name: "Giga-fur-Wicker",
  19207. height: math.unit(4800000, "meters")
  19208. },
  19209. {
  19210. name: "Licky world",
  19211. height: math.unit(20000000, "meters")
  19212. },
  19213. {
  19214. name: "Floofy cyan sun",
  19215. height: math.unit(1500000000, "meters")
  19216. },
  19217. {
  19218. name: "Milky Wicker",
  19219. height: math.unit(1000000000000000000000, "meters")
  19220. },
  19221. {
  19222. name: "The observing Wicker",
  19223. height: math.unit(999999999999999999999999999, "meters")
  19224. },
  19225. ]
  19226. ))
  19227. characterMakers.push(() => makeCharacter(
  19228. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19229. {
  19230. front: {
  19231. height: math.unit(5 + 9 / 12, "feet"),
  19232. weight: math.unit(150, "lb"),
  19233. name: "Front",
  19234. image: {
  19235. source: "./media/characters/arokha-sieyes/front.svg",
  19236. extra: 1425 / 1284,
  19237. bottom: 0.05
  19238. }
  19239. },
  19240. },
  19241. [
  19242. {
  19243. name: "Normal",
  19244. height: math.unit(5 + 9 / 12, "feet")
  19245. },
  19246. {
  19247. name: "Macro",
  19248. height: math.unit(30, "meters"),
  19249. default: true
  19250. },
  19251. ]
  19252. ))
  19253. characterMakers.push(() => makeCharacter(
  19254. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19255. {
  19256. front: {
  19257. height: math.unit(6, "feet"),
  19258. weight: math.unit(180, "lb"),
  19259. name: "Front",
  19260. image: {
  19261. source: "./media/characters/arokh-sieyes/front.svg",
  19262. extra: 1830 / 1769,
  19263. bottom: 0.01
  19264. }
  19265. },
  19266. },
  19267. [
  19268. {
  19269. name: "Normal",
  19270. height: math.unit(6, "feet")
  19271. },
  19272. {
  19273. name: "Macro",
  19274. height: math.unit(30, "meters"),
  19275. default: true
  19276. },
  19277. ]
  19278. ))
  19279. characterMakers.push(() => makeCharacter(
  19280. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19281. {
  19282. side: {
  19283. height: math.unit(13 + 1 / 12, "feet"),
  19284. weight: math.unit(8.5, "tonnes"),
  19285. name: "Side",
  19286. image: {
  19287. source: "./media/characters/goldeneye/side.svg",
  19288. extra: 1182 / 778,
  19289. bottom: 0.067
  19290. }
  19291. },
  19292. paw: {
  19293. height: math.unit(3.4, "feet"),
  19294. name: "Paw",
  19295. image: {
  19296. source: "./media/characters/goldeneye/paw.svg"
  19297. }
  19298. },
  19299. },
  19300. [
  19301. {
  19302. name: "Normal",
  19303. height: math.unit(13 + 1 / 12, "feet"),
  19304. default: true
  19305. },
  19306. ]
  19307. ))
  19308. characterMakers.push(() => makeCharacter(
  19309. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19310. {
  19311. front: {
  19312. height: math.unit(6 + 1 / 12, "feet"),
  19313. weight: math.unit(210, "lb"),
  19314. name: "Front",
  19315. image: {
  19316. source: "./media/characters/leonardo-lycheborne/front.svg",
  19317. extra: 776/723,
  19318. bottom: 34/810
  19319. }
  19320. },
  19321. side: {
  19322. height: math.unit(6 + 1 / 12, "feet"),
  19323. weight: math.unit(210, "lb"),
  19324. name: "Side",
  19325. image: {
  19326. source: "./media/characters/leonardo-lycheborne/side.svg",
  19327. extra: 780/728,
  19328. bottom: 12/792
  19329. }
  19330. },
  19331. back: {
  19332. height: math.unit(6 + 1 / 12, "feet"),
  19333. weight: math.unit(210, "lb"),
  19334. name: "Back",
  19335. image: {
  19336. source: "./media/characters/leonardo-lycheborne/back.svg",
  19337. extra: 775/721,
  19338. bottom: 17/792
  19339. }
  19340. },
  19341. hand: {
  19342. height: math.unit(1.08, "feet"),
  19343. name: "Hand",
  19344. image: {
  19345. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19346. }
  19347. },
  19348. foot: {
  19349. height: math.unit(1.32, "feet"),
  19350. name: "Foot",
  19351. image: {
  19352. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19353. }
  19354. },
  19355. maw: {
  19356. height: math.unit(1, "feet"),
  19357. name: "Maw",
  19358. image: {
  19359. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19360. }
  19361. },
  19362. were: {
  19363. height: math.unit(20, "feet"),
  19364. weight: math.unit(7800, "lb"),
  19365. name: "Were",
  19366. image: {
  19367. source: "./media/characters/leonardo-lycheborne/were.svg",
  19368. extra: 1224/1165,
  19369. bottom: 72/1296
  19370. }
  19371. },
  19372. feral: {
  19373. height: math.unit(7.5, "feet"),
  19374. weight: math.unit(600, "lb"),
  19375. name: "Feral",
  19376. image: {
  19377. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19378. extra: 797/702,
  19379. bottom: 139/936
  19380. }
  19381. },
  19382. taur: {
  19383. height: math.unit(11, "feet"),
  19384. weight: math.unit(3300, "lb"),
  19385. name: "Taur",
  19386. image: {
  19387. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19388. extra: 1271/1197,
  19389. bottom: 47/1318
  19390. }
  19391. },
  19392. barghest: {
  19393. height: math.unit(11, "feet"),
  19394. weight: math.unit(1300, "lb"),
  19395. name: "Barghest",
  19396. image: {
  19397. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19398. extra: 1291/1204,
  19399. bottom: 37/1328
  19400. }
  19401. },
  19402. dick: {
  19403. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19404. name: "Dick",
  19405. image: {
  19406. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19407. }
  19408. },
  19409. dickWere: {
  19410. height: math.unit((20) / 3.8, "feet"),
  19411. name: "Dick (Were)",
  19412. image: {
  19413. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19414. }
  19415. },
  19416. },
  19417. [
  19418. {
  19419. name: "Normal",
  19420. height: math.unit(6 + 1 / 12, "feet"),
  19421. default: true
  19422. },
  19423. ]
  19424. ))
  19425. characterMakers.push(() => makeCharacter(
  19426. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19427. {
  19428. front: {
  19429. height: math.unit(10, "feet"),
  19430. weight: math.unit(350, "lb"),
  19431. name: "Front",
  19432. image: {
  19433. source: "./media/characters/jet/front.svg",
  19434. extra: 2050 / 1980,
  19435. bottom: 0.013
  19436. }
  19437. },
  19438. back: {
  19439. height: math.unit(10, "feet"),
  19440. weight: math.unit(350, "lb"),
  19441. name: "Back",
  19442. image: {
  19443. source: "./media/characters/jet/back.svg",
  19444. extra: 2050 / 1980,
  19445. bottom: 0.013
  19446. }
  19447. },
  19448. },
  19449. [
  19450. {
  19451. name: "Micro",
  19452. height: math.unit(6, "inches")
  19453. },
  19454. {
  19455. name: "Normal",
  19456. height: math.unit(10, "feet"),
  19457. default: true
  19458. },
  19459. {
  19460. name: "Macro",
  19461. height: math.unit(100, "feet")
  19462. },
  19463. ]
  19464. ))
  19465. characterMakers.push(() => makeCharacter(
  19466. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19467. {
  19468. front: {
  19469. height: math.unit(15, "feet"),
  19470. weight: math.unit(2800, "lb"),
  19471. name: "Front",
  19472. image: {
  19473. source: "./media/characters/tanarath/front.svg",
  19474. extra: 2392 / 2220,
  19475. bottom: 0.03
  19476. }
  19477. },
  19478. back: {
  19479. height: math.unit(15, "feet"),
  19480. weight: math.unit(2800, "lb"),
  19481. name: "Back",
  19482. image: {
  19483. source: "./media/characters/tanarath/back.svg",
  19484. extra: 2392 / 2220,
  19485. bottom: 0.03
  19486. }
  19487. },
  19488. },
  19489. [
  19490. {
  19491. name: "Normal",
  19492. height: math.unit(15, "feet"),
  19493. default: true
  19494. },
  19495. ]
  19496. ))
  19497. characterMakers.push(() => makeCharacter(
  19498. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19499. {
  19500. front: {
  19501. height: math.unit(7 + 1 / 12, "feet"),
  19502. weight: math.unit(175, "lb"),
  19503. name: "Front",
  19504. image: {
  19505. source: "./media/characters/patty-cattybatty/front.svg",
  19506. extra: 908 / 874,
  19507. bottom: 0.025
  19508. }
  19509. },
  19510. },
  19511. [
  19512. {
  19513. name: "Micro",
  19514. height: math.unit(1, "inch")
  19515. },
  19516. {
  19517. name: "Normal",
  19518. height: math.unit(7 + 1 / 12, "feet")
  19519. },
  19520. {
  19521. name: "Mini Macro",
  19522. height: math.unit(155, "feet")
  19523. },
  19524. {
  19525. name: "Macro",
  19526. height: math.unit(1077, "feet")
  19527. },
  19528. {
  19529. name: "Mega Macro",
  19530. height: math.unit(47650, "feet"),
  19531. default: true
  19532. },
  19533. {
  19534. name: "Giga Macro",
  19535. height: math.unit(440, "miles")
  19536. },
  19537. {
  19538. name: "Tera Macro",
  19539. height: math.unit(8700, "miles")
  19540. },
  19541. {
  19542. name: "Planetary Macro",
  19543. height: math.unit(32700, "miles")
  19544. },
  19545. {
  19546. name: "Solar Macro",
  19547. height: math.unit(550000, "miles")
  19548. },
  19549. {
  19550. name: "Celestial Macro",
  19551. height: math.unit(2.5, "AU")
  19552. },
  19553. ]
  19554. ))
  19555. characterMakers.push(() => makeCharacter(
  19556. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19557. {
  19558. front: {
  19559. height: math.unit(4 + 5 / 12, "feet"),
  19560. weight: math.unit(90, "lb"),
  19561. name: "Front",
  19562. image: {
  19563. source: "./media/characters/cappu/front.svg",
  19564. extra: 1247 / 1152,
  19565. bottom: 0.012
  19566. }
  19567. },
  19568. },
  19569. [
  19570. {
  19571. name: "Normal",
  19572. height: math.unit(4 + 5 / 12, "feet"),
  19573. default: true
  19574. },
  19575. ]
  19576. ))
  19577. characterMakers.push(() => makeCharacter(
  19578. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19579. {
  19580. frontDressed: {
  19581. height: math.unit(70, "cm"),
  19582. weight: math.unit(6, "kg"),
  19583. name: "Front (Dressed)",
  19584. image: {
  19585. source: "./media/characters/sebi/front-dressed.svg",
  19586. extra: 713.5 / 686.5,
  19587. bottom: 0.003
  19588. }
  19589. },
  19590. front: {
  19591. height: math.unit(70, "cm"),
  19592. weight: math.unit(5, "kg"),
  19593. name: "Front",
  19594. image: {
  19595. source: "./media/characters/sebi/front.svg",
  19596. extra: 713.5 / 686.5,
  19597. bottom: 0.003
  19598. }
  19599. }
  19600. },
  19601. [
  19602. {
  19603. name: "Normal",
  19604. height: math.unit(70, "cm"),
  19605. default: true
  19606. },
  19607. {
  19608. name: "Macro",
  19609. height: math.unit(8, "meters")
  19610. },
  19611. ]
  19612. ))
  19613. characterMakers.push(() => makeCharacter(
  19614. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19615. {
  19616. front: {
  19617. height: math.unit(6, "feet"),
  19618. weight: math.unit(150, "lb"),
  19619. name: "Front",
  19620. image: {
  19621. source: "./media/characters/typhek/front.svg",
  19622. extra: 1948 / 1929,
  19623. bottom: 0.025
  19624. }
  19625. },
  19626. side: {
  19627. height: math.unit(6, "feet"),
  19628. weight: math.unit(150, "lb"),
  19629. name: "Side",
  19630. image: {
  19631. source: "./media/characters/typhek/side.svg",
  19632. extra: 2034 / 2010,
  19633. bottom: 0.003
  19634. }
  19635. },
  19636. back: {
  19637. height: math.unit(6, "feet"),
  19638. weight: math.unit(150, "lb"),
  19639. name: "Back",
  19640. image: {
  19641. source: "./media/characters/typhek/back.svg",
  19642. extra: 2005 / 1978,
  19643. bottom: 0.004
  19644. }
  19645. },
  19646. palm: {
  19647. height: math.unit(1.2, "feet"),
  19648. name: "Palm",
  19649. image: {
  19650. source: "./media/characters/typhek/palm.svg"
  19651. }
  19652. },
  19653. fist: {
  19654. height: math.unit(1.1, "feet"),
  19655. name: "Fist",
  19656. image: {
  19657. source: "./media/characters/typhek/fist.svg"
  19658. }
  19659. },
  19660. foot: {
  19661. height: math.unit(1.57, "feet"),
  19662. name: "Foot",
  19663. image: {
  19664. source: "./media/characters/typhek/foot.svg"
  19665. }
  19666. },
  19667. sole: {
  19668. height: math.unit(2.05, "feet"),
  19669. name: "Sole",
  19670. image: {
  19671. source: "./media/characters/typhek/sole.svg"
  19672. }
  19673. },
  19674. },
  19675. [
  19676. {
  19677. name: "Macro",
  19678. height: math.unit(40, "stories"),
  19679. default: true
  19680. },
  19681. {
  19682. name: "Megamacro",
  19683. height: math.unit(1, "mile")
  19684. },
  19685. {
  19686. name: "Gigamacro",
  19687. height: math.unit(4000, "solarradii")
  19688. },
  19689. {
  19690. name: "Universal",
  19691. height: math.unit(1.1, "universes")
  19692. }
  19693. ]
  19694. ))
  19695. characterMakers.push(() => makeCharacter(
  19696. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19697. {
  19698. side: {
  19699. height: math.unit(5 + 7 / 12, "feet"),
  19700. weight: math.unit(150, "lb"),
  19701. name: "Side",
  19702. image: {
  19703. source: "./media/characters/kassy/side.svg",
  19704. extra: 1280 / 1225,
  19705. bottom: 0.002
  19706. }
  19707. },
  19708. front: {
  19709. height: math.unit(5 + 7 / 12, "feet"),
  19710. weight: math.unit(150, "lb"),
  19711. name: "Front",
  19712. image: {
  19713. source: "./media/characters/kassy/front.svg",
  19714. extra: 1280 / 1225,
  19715. bottom: 0.025
  19716. }
  19717. },
  19718. back: {
  19719. height: math.unit(5 + 7 / 12, "feet"),
  19720. weight: math.unit(150, "lb"),
  19721. name: "Back",
  19722. image: {
  19723. source: "./media/characters/kassy/back.svg",
  19724. extra: 1280 / 1225,
  19725. bottom: 0.002
  19726. }
  19727. },
  19728. foot: {
  19729. height: math.unit(1.266, "feet"),
  19730. name: "Foot",
  19731. image: {
  19732. source: "./media/characters/kassy/foot.svg"
  19733. }
  19734. },
  19735. },
  19736. [
  19737. {
  19738. name: "Normal",
  19739. height: math.unit(5 + 7 / 12, "feet")
  19740. },
  19741. {
  19742. name: "Macro",
  19743. height: math.unit(137, "feet"),
  19744. default: true
  19745. },
  19746. {
  19747. name: "Megamacro",
  19748. height: math.unit(1, "mile")
  19749. },
  19750. ]
  19751. ))
  19752. characterMakers.push(() => makeCharacter(
  19753. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19754. {
  19755. front: {
  19756. height: math.unit(6 + 1 / 12, "feet"),
  19757. weight: math.unit(200, "lb"),
  19758. name: "Front",
  19759. image: {
  19760. source: "./media/characters/neil/front.svg",
  19761. extra: 1326 / 1250,
  19762. bottom: 0.023
  19763. }
  19764. },
  19765. },
  19766. [
  19767. {
  19768. name: "Normal",
  19769. height: math.unit(6 + 1 / 12, "feet"),
  19770. default: true
  19771. },
  19772. {
  19773. name: "Macro",
  19774. height: math.unit(200, "feet")
  19775. },
  19776. ]
  19777. ))
  19778. characterMakers.push(() => makeCharacter(
  19779. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19780. {
  19781. front: {
  19782. height: math.unit(5 + 9 / 12, "feet"),
  19783. weight: math.unit(190, "lb"),
  19784. name: "Front",
  19785. image: {
  19786. source: "./media/characters/atticus/front.svg",
  19787. extra: 2934 / 2785,
  19788. bottom: 0.025
  19789. }
  19790. },
  19791. },
  19792. [
  19793. {
  19794. name: "Normal",
  19795. height: math.unit(5 + 9 / 12, "feet"),
  19796. default: true
  19797. },
  19798. {
  19799. name: "Macro",
  19800. height: math.unit(180, "feet")
  19801. },
  19802. ]
  19803. ))
  19804. characterMakers.push(() => makeCharacter(
  19805. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19806. {
  19807. side: {
  19808. height: math.unit(9, "feet"),
  19809. weight: math.unit(650, "lb"),
  19810. name: "Side",
  19811. image: {
  19812. source: "./media/characters/milo/side.svg",
  19813. extra: 2644 / 2310,
  19814. bottom: 0.032
  19815. }
  19816. },
  19817. },
  19818. [
  19819. {
  19820. name: "Normal",
  19821. height: math.unit(9, "feet"),
  19822. default: true
  19823. },
  19824. {
  19825. name: "Macro",
  19826. height: math.unit(300, "feet")
  19827. },
  19828. ]
  19829. ))
  19830. characterMakers.push(() => makeCharacter(
  19831. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19832. {
  19833. side: {
  19834. height: math.unit(8, "meters"),
  19835. weight: math.unit(90000, "kg"),
  19836. name: "Side",
  19837. image: {
  19838. source: "./media/characters/ijzer/side.svg",
  19839. extra: 2756 / 1600,
  19840. bottom: 0.01
  19841. }
  19842. },
  19843. },
  19844. [
  19845. {
  19846. name: "Small",
  19847. height: math.unit(3, "meters")
  19848. },
  19849. {
  19850. name: "Normal",
  19851. height: math.unit(8, "meters"),
  19852. default: true
  19853. },
  19854. {
  19855. name: "Normal+",
  19856. height: math.unit(10, "meters")
  19857. },
  19858. {
  19859. name: "Bigger",
  19860. height: math.unit(24, "meters")
  19861. },
  19862. {
  19863. name: "Huge",
  19864. height: math.unit(80, "meters")
  19865. },
  19866. ]
  19867. ))
  19868. characterMakers.push(() => makeCharacter(
  19869. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19870. {
  19871. front: {
  19872. height: math.unit(6 + 2 / 12, "feet"),
  19873. weight: math.unit(153, "lb"),
  19874. name: "Front",
  19875. image: {
  19876. source: "./media/characters/luca-cervicum/front.svg",
  19877. extra: 370 / 327,
  19878. bottom: 0.015
  19879. }
  19880. },
  19881. back: {
  19882. height: math.unit(6 + 2 / 12, "feet"),
  19883. weight: math.unit(153, "lb"),
  19884. name: "Back",
  19885. image: {
  19886. source: "./media/characters/luca-cervicum/back.svg",
  19887. extra: 367 / 333,
  19888. bottom: 0.005
  19889. }
  19890. },
  19891. frontGear: {
  19892. height: math.unit(6 + 2 / 12, "feet"),
  19893. weight: math.unit(173, "lb"),
  19894. name: "Front (Gear)",
  19895. image: {
  19896. source: "./media/characters/luca-cervicum/front-gear.svg",
  19897. extra: 377 / 333,
  19898. bottom: 0.006
  19899. }
  19900. },
  19901. },
  19902. [
  19903. {
  19904. name: "Normal",
  19905. height: math.unit(6 + 2 / 12, "feet"),
  19906. default: true
  19907. },
  19908. ]
  19909. ))
  19910. characterMakers.push(() => makeCharacter(
  19911. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19912. {
  19913. front: {
  19914. height: math.unit(6 + 1 / 12, "feet"),
  19915. weight: math.unit(304, "lb"),
  19916. name: "Front",
  19917. image: {
  19918. source: "./media/characters/oliver/front.svg",
  19919. extra: 157 / 143,
  19920. bottom: 0.08
  19921. }
  19922. },
  19923. },
  19924. [
  19925. {
  19926. name: "Normal",
  19927. height: math.unit(6 + 1 / 12, "feet"),
  19928. default: true
  19929. },
  19930. ]
  19931. ))
  19932. characterMakers.push(() => makeCharacter(
  19933. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19934. {
  19935. front: {
  19936. height: math.unit(5 + 7 / 12, "feet"),
  19937. weight: math.unit(140, "lb"),
  19938. name: "Front",
  19939. image: {
  19940. source: "./media/characters/shane/front.svg",
  19941. extra: 304 / 289,
  19942. bottom: 0.005
  19943. }
  19944. },
  19945. },
  19946. [
  19947. {
  19948. name: "Normal",
  19949. height: math.unit(5 + 7 / 12, "feet"),
  19950. default: true
  19951. },
  19952. ]
  19953. ))
  19954. characterMakers.push(() => makeCharacter(
  19955. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19956. {
  19957. front: {
  19958. height: math.unit(5 + 9 / 12, "feet"),
  19959. weight: math.unit(178, "lb"),
  19960. name: "Front",
  19961. image: {
  19962. source: "./media/characters/shin/front.svg",
  19963. extra: 159 / 151,
  19964. bottom: 0.015
  19965. }
  19966. },
  19967. },
  19968. [
  19969. {
  19970. name: "Normal",
  19971. height: math.unit(5 + 9 / 12, "feet"),
  19972. default: true
  19973. },
  19974. ]
  19975. ))
  19976. characterMakers.push(() => makeCharacter(
  19977. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19978. {
  19979. front: {
  19980. height: math.unit(5 + 10 / 12, "feet"),
  19981. weight: math.unit(168, "lb"),
  19982. name: "Front",
  19983. image: {
  19984. source: "./media/characters/xerxes/front.svg",
  19985. extra: 282 / 260,
  19986. bottom: 0.045
  19987. }
  19988. },
  19989. },
  19990. [
  19991. {
  19992. name: "Normal",
  19993. height: math.unit(5 + 10 / 12, "feet"),
  19994. default: true
  19995. },
  19996. ]
  19997. ))
  19998. characterMakers.push(() => makeCharacter(
  19999. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20000. {
  20001. front: {
  20002. height: math.unit(6 + 7 / 12, "feet"),
  20003. weight: math.unit(208, "lb"),
  20004. name: "Front",
  20005. image: {
  20006. source: "./media/characters/chaska/front.svg",
  20007. extra: 332 / 319,
  20008. bottom: 0.015
  20009. }
  20010. },
  20011. },
  20012. [
  20013. {
  20014. name: "Normal",
  20015. height: math.unit(6 + 7 / 12, "feet"),
  20016. default: true
  20017. },
  20018. ]
  20019. ))
  20020. characterMakers.push(() => makeCharacter(
  20021. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20022. {
  20023. front: {
  20024. height: math.unit(5 + 8 / 12, "feet"),
  20025. weight: math.unit(208, "lb"),
  20026. name: "Front",
  20027. image: {
  20028. source: "./media/characters/enuk/front.svg",
  20029. extra: 437 / 406,
  20030. bottom: 0.02
  20031. }
  20032. },
  20033. },
  20034. [
  20035. {
  20036. name: "Normal",
  20037. height: math.unit(5 + 8 / 12, "feet"),
  20038. default: true
  20039. },
  20040. ]
  20041. ))
  20042. characterMakers.push(() => makeCharacter(
  20043. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20044. {
  20045. front: {
  20046. height: math.unit(5 + 10 / 12, "feet"),
  20047. weight: math.unit(252, "lb"),
  20048. name: "Front",
  20049. image: {
  20050. source: "./media/characters/bruun/front.svg",
  20051. extra: 197 / 187,
  20052. bottom: 0.012
  20053. }
  20054. },
  20055. },
  20056. [
  20057. {
  20058. name: "Normal",
  20059. height: math.unit(5 + 10 / 12, "feet"),
  20060. default: true
  20061. },
  20062. ]
  20063. ))
  20064. characterMakers.push(() => makeCharacter(
  20065. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20066. {
  20067. front: {
  20068. height: math.unit(6 + 10 / 12, "feet"),
  20069. weight: math.unit(255, "lb"),
  20070. name: "Front",
  20071. image: {
  20072. source: "./media/characters/alexeev/front.svg",
  20073. extra: 213 / 200,
  20074. bottom: 0.05
  20075. }
  20076. },
  20077. },
  20078. [
  20079. {
  20080. name: "Normal",
  20081. height: math.unit(6 + 10 / 12, "feet"),
  20082. default: true
  20083. },
  20084. ]
  20085. ))
  20086. characterMakers.push(() => makeCharacter(
  20087. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20088. {
  20089. front: {
  20090. height: math.unit(2 + 8 / 12, "feet"),
  20091. weight: math.unit(22, "lb"),
  20092. name: "Front",
  20093. image: {
  20094. source: "./media/characters/evelyn/front.svg",
  20095. extra: 208 / 180
  20096. }
  20097. },
  20098. },
  20099. [
  20100. {
  20101. name: "Normal",
  20102. height: math.unit(2 + 8 / 12, "feet"),
  20103. default: true
  20104. },
  20105. ]
  20106. ))
  20107. characterMakers.push(() => makeCharacter(
  20108. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20109. {
  20110. front: {
  20111. height: math.unit(5 + 9 / 12, "feet"),
  20112. weight: math.unit(139, "lb"),
  20113. name: "Front",
  20114. image: {
  20115. source: "./media/characters/inca/front.svg",
  20116. extra: 294 / 291,
  20117. bottom: 0.03
  20118. }
  20119. },
  20120. },
  20121. [
  20122. {
  20123. name: "Normal",
  20124. height: math.unit(5 + 9 / 12, "feet"),
  20125. default: true
  20126. },
  20127. ]
  20128. ))
  20129. characterMakers.push(() => makeCharacter(
  20130. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20131. {
  20132. front: {
  20133. height: math.unit(6 + 3 / 12, "feet"),
  20134. weight: math.unit(185, "lb"),
  20135. name: "Front",
  20136. image: {
  20137. source: "./media/characters/mera/front.svg",
  20138. extra: 291 / 277,
  20139. bottom: 0.03
  20140. }
  20141. },
  20142. },
  20143. [
  20144. {
  20145. name: "Normal",
  20146. height: math.unit(6 + 3 / 12, "feet"),
  20147. default: true
  20148. },
  20149. ]
  20150. ))
  20151. characterMakers.push(() => makeCharacter(
  20152. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20153. {
  20154. front: {
  20155. height: math.unit(6 + 7 / 12, "feet"),
  20156. weight: math.unit(160, "lb"),
  20157. name: "Front",
  20158. image: {
  20159. source: "./media/characters/ceres/front.svg",
  20160. extra: 1023 / 950,
  20161. bottom: 0.027
  20162. }
  20163. },
  20164. back: {
  20165. height: math.unit(6 + 7 / 12, "feet"),
  20166. weight: math.unit(160, "lb"),
  20167. name: "Back",
  20168. image: {
  20169. source: "./media/characters/ceres/back.svg",
  20170. extra: 1023 / 950
  20171. }
  20172. },
  20173. },
  20174. [
  20175. {
  20176. name: "Normal",
  20177. height: math.unit(6 + 7 / 12, "feet"),
  20178. default: true
  20179. },
  20180. ]
  20181. ))
  20182. characterMakers.push(() => makeCharacter(
  20183. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20184. {
  20185. front: {
  20186. height: math.unit(5 + 10 / 12, "feet"),
  20187. weight: math.unit(150, "lb"),
  20188. name: "Front",
  20189. image: {
  20190. source: "./media/characters/kris/front.svg",
  20191. extra: 885 / 803,
  20192. bottom: 0.03
  20193. }
  20194. },
  20195. },
  20196. [
  20197. {
  20198. name: "Normal",
  20199. height: math.unit(5 + 10 / 12, "feet"),
  20200. default: true
  20201. },
  20202. ]
  20203. ))
  20204. characterMakers.push(() => makeCharacter(
  20205. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20206. {
  20207. front: {
  20208. height: math.unit(7, "feet"),
  20209. weight: math.unit(120, "kg"),
  20210. name: "Front",
  20211. image: {
  20212. source: "./media/characters/taluthus/front.svg",
  20213. extra: 903 / 833,
  20214. bottom: 0.015
  20215. }
  20216. },
  20217. },
  20218. [
  20219. {
  20220. name: "Normal",
  20221. height: math.unit(7, "feet"),
  20222. default: true
  20223. },
  20224. {
  20225. name: "Macro",
  20226. height: math.unit(300, "feet")
  20227. },
  20228. ]
  20229. ))
  20230. characterMakers.push(() => makeCharacter(
  20231. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20232. {
  20233. front: {
  20234. height: math.unit(5 + 9 / 12, "feet"),
  20235. weight: math.unit(145, "lb"),
  20236. name: "Front",
  20237. image: {
  20238. source: "./media/characters/dawn/front.svg",
  20239. extra: 2094 / 2016,
  20240. bottom: 0.025
  20241. }
  20242. },
  20243. back: {
  20244. height: math.unit(5 + 9 / 12, "feet"),
  20245. weight: math.unit(160, "lb"),
  20246. name: "Back",
  20247. image: {
  20248. source: "./media/characters/dawn/back.svg",
  20249. extra: 2112 / 2080,
  20250. bottom: 0.005
  20251. }
  20252. },
  20253. },
  20254. [
  20255. {
  20256. name: "Normal",
  20257. height: math.unit(6 + 7 / 12, "feet"),
  20258. default: true
  20259. },
  20260. ]
  20261. ))
  20262. characterMakers.push(() => makeCharacter(
  20263. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20264. {
  20265. anthro: {
  20266. height: math.unit(8 + 3 / 12, "feet"),
  20267. weight: math.unit(450, "lb"),
  20268. name: "Anthro",
  20269. image: {
  20270. source: "./media/characters/arador/anthro.svg",
  20271. extra: 1835 / 1718,
  20272. bottom: 0.025
  20273. }
  20274. },
  20275. feral: {
  20276. height: math.unit(4, "feet"),
  20277. weight: math.unit(200, "lb"),
  20278. name: "Feral",
  20279. image: {
  20280. source: "./media/characters/arador/feral.svg",
  20281. extra: 1683 / 1514,
  20282. bottom: 0.07
  20283. }
  20284. },
  20285. },
  20286. [
  20287. {
  20288. name: "Normal",
  20289. height: math.unit(8 + 3 / 12, "feet")
  20290. },
  20291. {
  20292. name: "Macro",
  20293. height: math.unit(82.5, "feet"),
  20294. default: true
  20295. },
  20296. ]
  20297. ))
  20298. characterMakers.push(() => makeCharacter(
  20299. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20300. {
  20301. front: {
  20302. height: math.unit(5 + 10 / 12, "feet"),
  20303. weight: math.unit(125, "lb"),
  20304. name: "Front",
  20305. image: {
  20306. source: "./media/characters/dharsi/front.svg",
  20307. extra: 716 / 630,
  20308. bottom: 0.035
  20309. }
  20310. },
  20311. },
  20312. [
  20313. {
  20314. name: "Nano",
  20315. height: math.unit(100, "nm")
  20316. },
  20317. {
  20318. name: "Micro",
  20319. height: math.unit(2, "inches")
  20320. },
  20321. {
  20322. name: "Normal",
  20323. height: math.unit(5 + 10 / 12, "feet"),
  20324. default: true
  20325. },
  20326. {
  20327. name: "Macro",
  20328. height: math.unit(1000, "feet")
  20329. },
  20330. {
  20331. name: "Megamacro",
  20332. height: math.unit(10, "miles")
  20333. },
  20334. {
  20335. name: "Gigamacro",
  20336. height: math.unit(3000, "miles")
  20337. },
  20338. {
  20339. name: "Teramacro",
  20340. height: math.unit(500000, "miles")
  20341. },
  20342. {
  20343. name: "Teramacro+",
  20344. height: math.unit(30, "galaxies")
  20345. },
  20346. ]
  20347. ))
  20348. characterMakers.push(() => makeCharacter(
  20349. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20350. {
  20351. front: {
  20352. height: math.unit(6, "feet"),
  20353. weight: math.unit(150, "lb"),
  20354. name: "Front",
  20355. image: {
  20356. source: "./media/characters/deathy/front.svg",
  20357. extra: 1552 / 1463,
  20358. bottom: 0.025
  20359. }
  20360. },
  20361. side: {
  20362. height: math.unit(6, "feet"),
  20363. weight: math.unit(150, "lb"),
  20364. name: "Side",
  20365. image: {
  20366. source: "./media/characters/deathy/side.svg",
  20367. extra: 1604 / 1455,
  20368. bottom: 0.025
  20369. }
  20370. },
  20371. back: {
  20372. height: math.unit(6, "feet"),
  20373. weight: math.unit(150, "lb"),
  20374. name: "Back",
  20375. image: {
  20376. source: "./media/characters/deathy/back.svg",
  20377. extra: 1580 / 1463,
  20378. bottom: 0.005
  20379. }
  20380. },
  20381. },
  20382. [
  20383. {
  20384. name: "Micro",
  20385. height: math.unit(5, "millimeters")
  20386. },
  20387. {
  20388. name: "Normal",
  20389. height: math.unit(6 + 5 / 12, "feet"),
  20390. default: true
  20391. },
  20392. ]
  20393. ))
  20394. characterMakers.push(() => makeCharacter(
  20395. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20396. {
  20397. front: {
  20398. height: math.unit(16, "feet"),
  20399. weight: math.unit(4000, "lb"),
  20400. name: "Front",
  20401. image: {
  20402. source: "./media/characters/juniper/front.svg",
  20403. bottom: 0.04
  20404. }
  20405. },
  20406. },
  20407. [
  20408. {
  20409. name: "Normal",
  20410. height: math.unit(16, "feet"),
  20411. default: true
  20412. },
  20413. ]
  20414. ))
  20415. characterMakers.push(() => makeCharacter(
  20416. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20417. {
  20418. front: {
  20419. height: math.unit(6, "feet"),
  20420. weight: math.unit(150, "lb"),
  20421. name: "Front",
  20422. image: {
  20423. source: "./media/characters/hipster/front.svg",
  20424. extra: 1312 / 1209,
  20425. bottom: 0.025
  20426. }
  20427. },
  20428. back: {
  20429. height: math.unit(6, "feet"),
  20430. weight: math.unit(150, "lb"),
  20431. name: "Back",
  20432. image: {
  20433. source: "./media/characters/hipster/back.svg",
  20434. extra: 1281 / 1196,
  20435. bottom: 0.01
  20436. }
  20437. },
  20438. },
  20439. [
  20440. {
  20441. name: "Micro",
  20442. height: math.unit(1, "mm")
  20443. },
  20444. {
  20445. name: "Normal",
  20446. height: math.unit(4, "inches"),
  20447. default: true
  20448. },
  20449. {
  20450. name: "Macro",
  20451. height: math.unit(500, "feet")
  20452. },
  20453. {
  20454. name: "Megamacro",
  20455. height: math.unit(1000, "miles")
  20456. },
  20457. ]
  20458. ))
  20459. characterMakers.push(() => makeCharacter(
  20460. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20461. {
  20462. front: {
  20463. height: math.unit(6, "feet"),
  20464. weight: math.unit(150, "lb"),
  20465. name: "Front",
  20466. image: {
  20467. source: "./media/characters/tendirmuldr/front.svg",
  20468. extra: 1878 / 1772,
  20469. bottom: 0.015
  20470. }
  20471. },
  20472. },
  20473. [
  20474. {
  20475. name: "Megamacro",
  20476. height: math.unit(1500, "miles"),
  20477. default: true
  20478. },
  20479. ]
  20480. ))
  20481. characterMakers.push(() => makeCharacter(
  20482. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20483. {
  20484. front: {
  20485. height: math.unit(14, "feet"),
  20486. weight: math.unit(12000, "lb"),
  20487. name: "Front",
  20488. image: {
  20489. source: "./media/characters/mort/front.svg",
  20490. extra: 365 / 318,
  20491. bottom: 0.01
  20492. }
  20493. },
  20494. side: {
  20495. height: math.unit(14, "feet"),
  20496. weight: math.unit(12000, "lb"),
  20497. name: "Side",
  20498. image: {
  20499. source: "./media/characters/mort/side.svg",
  20500. extra: 365 / 318,
  20501. bottom: 0.052
  20502. },
  20503. default: true
  20504. },
  20505. back: {
  20506. height: math.unit(14, "feet"),
  20507. weight: math.unit(12000, "lb"),
  20508. name: "Back",
  20509. image: {
  20510. source: "./media/characters/mort/back.svg",
  20511. extra: 371 / 332,
  20512. bottom: 0.18
  20513. }
  20514. },
  20515. },
  20516. [
  20517. {
  20518. name: "Normal",
  20519. height: math.unit(14, "feet"),
  20520. default: true
  20521. },
  20522. ]
  20523. ))
  20524. characterMakers.push(() => makeCharacter(
  20525. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20526. {
  20527. front: {
  20528. height: math.unit(8, "feet"),
  20529. weight: math.unit(1, "ton"),
  20530. name: "Front",
  20531. image: {
  20532. source: "./media/characters/lycoa/front.svg",
  20533. extra: 1875 / 1789,
  20534. bottom: 0.022
  20535. }
  20536. },
  20537. back: {
  20538. height: math.unit(8, "feet"),
  20539. weight: math.unit(1, "ton"),
  20540. name: "Back",
  20541. image: {
  20542. source: "./media/characters/lycoa/back.svg",
  20543. extra: 1835 / 1781,
  20544. bottom: 0.03
  20545. }
  20546. },
  20547. head: {
  20548. height: math.unit(2.1, "feet"),
  20549. name: "Head",
  20550. image: {
  20551. source: "./media/characters/lycoa/head.svg"
  20552. }
  20553. },
  20554. tailmaw: {
  20555. height: math.unit(1.9, "feet"),
  20556. name: "Tailmaw",
  20557. image: {
  20558. source: "./media/characters/lycoa/tailmaw.svg"
  20559. }
  20560. },
  20561. tentacles: {
  20562. height: math.unit(2.1, "feet"),
  20563. name: "Tentacles",
  20564. image: {
  20565. source: "./media/characters/lycoa/tentacles.svg"
  20566. }
  20567. },
  20568. dick: {
  20569. height: math.unit(1.73, "feet"),
  20570. name: "Dick",
  20571. image: {
  20572. source: "./media/characters/lycoa/dick.svg"
  20573. }
  20574. },
  20575. },
  20576. [
  20577. {
  20578. name: "Normal",
  20579. height: math.unit(8, "feet"),
  20580. default: true
  20581. },
  20582. {
  20583. name: "Macro",
  20584. height: math.unit(30, "feet")
  20585. },
  20586. ]
  20587. ))
  20588. characterMakers.push(() => makeCharacter(
  20589. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20590. {
  20591. front: {
  20592. height: math.unit(4 + 2 / 12, "feet"),
  20593. weight: math.unit(70, "lb"),
  20594. name: "Front",
  20595. image: {
  20596. source: "./media/characters/naldara/front.svg",
  20597. extra: 841 / 720,
  20598. bottom: 0.04
  20599. }
  20600. },
  20601. naga: {
  20602. height: math.unit(23, "feet"),
  20603. weight: math.unit(15000, "kg"),
  20604. name: "Naga",
  20605. image: {
  20606. source: "./media/characters/naldara/naga.svg",
  20607. extra: 3290 / 2959,
  20608. bottom: 124 / 3432
  20609. }
  20610. },
  20611. },
  20612. [
  20613. {
  20614. name: "Normal",
  20615. height: math.unit(4 + 2 / 12, "feet"),
  20616. default: true
  20617. },
  20618. ]
  20619. ))
  20620. characterMakers.push(() => makeCharacter(
  20621. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20622. {
  20623. front: {
  20624. height: math.unit(13 + 7 / 12, "feet"),
  20625. weight: math.unit(1500, "lb"),
  20626. name: "Front",
  20627. image: {
  20628. source: "./media/characters/briar/front.svg",
  20629. extra: 626 / 596,
  20630. bottom: 0.08
  20631. }
  20632. },
  20633. },
  20634. [
  20635. {
  20636. name: "Normal",
  20637. height: math.unit(13 + 7 / 12, "feet"),
  20638. default: true
  20639. },
  20640. ]
  20641. ))
  20642. characterMakers.push(() => makeCharacter(
  20643. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20644. {
  20645. side: {
  20646. height: math.unit(10, "feet"),
  20647. weight: math.unit(500, "lb"),
  20648. name: "Side",
  20649. image: {
  20650. source: "./media/characters/vanguard/side.svg",
  20651. extra: 502 / 425,
  20652. bottom: 0.087
  20653. }
  20654. },
  20655. },
  20656. [
  20657. {
  20658. name: "Normal",
  20659. height: math.unit(10, "feet"),
  20660. default: true
  20661. },
  20662. ]
  20663. ))
  20664. characterMakers.push(() => makeCharacter(
  20665. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20666. {
  20667. front: {
  20668. height: math.unit(7.5, "feet"),
  20669. weight: math.unit(2, "lb"),
  20670. name: "Front",
  20671. image: {
  20672. source: "./media/characters/artemis/front.svg",
  20673. extra: 1192 / 1075,
  20674. bottom: 0.07
  20675. }
  20676. },
  20677. frontNsfw: {
  20678. height: math.unit(7.5, "feet"),
  20679. weight: math.unit(2, "lb"),
  20680. name: "Front (NSFW)",
  20681. image: {
  20682. source: "./media/characters/artemis/front-nsfw.svg",
  20683. extra: 1192 / 1075,
  20684. bottom: 0.07
  20685. }
  20686. },
  20687. frontNsfwer: {
  20688. height: math.unit(7.5, "feet"),
  20689. weight: math.unit(2, "lb"),
  20690. name: "Front (NSFW-er)",
  20691. image: {
  20692. source: "./media/characters/artemis/front-nsfwer.svg",
  20693. extra: 1192 / 1075,
  20694. bottom: 0.07
  20695. }
  20696. },
  20697. side: {
  20698. height: math.unit(7.5, "feet"),
  20699. weight: math.unit(2, "lb"),
  20700. name: "Side",
  20701. image: {
  20702. source: "./media/characters/artemis/side.svg",
  20703. extra: 1192 / 1075,
  20704. bottom: 0.07
  20705. }
  20706. },
  20707. sideNsfw: {
  20708. height: math.unit(7.5, "feet"),
  20709. weight: math.unit(2, "lb"),
  20710. name: "Side (NSFW)",
  20711. image: {
  20712. source: "./media/characters/artemis/side-nsfw.svg",
  20713. extra: 1192 / 1075,
  20714. bottom: 0.07
  20715. }
  20716. },
  20717. sideNsfwer: {
  20718. height: math.unit(7.5, "feet"),
  20719. weight: math.unit(2, "lb"),
  20720. name: "Side (NSFW-er)",
  20721. image: {
  20722. source: "./media/characters/artemis/side-nsfwer.svg",
  20723. extra: 1192 / 1075,
  20724. bottom: 0.07
  20725. }
  20726. },
  20727. maw: {
  20728. height: math.unit(1.1, "feet"),
  20729. name: "Maw",
  20730. image: {
  20731. source: "./media/characters/artemis/maw.svg"
  20732. }
  20733. },
  20734. stomach: {
  20735. height: math.unit(0.95, "feet"),
  20736. name: "Stomach",
  20737. image: {
  20738. source: "./media/characters/artemis/stomach.svg"
  20739. }
  20740. },
  20741. dickCanine: {
  20742. height: math.unit(1, "feet"),
  20743. name: "Dick (Canine)",
  20744. image: {
  20745. source: "./media/characters/artemis/dick-canine.svg"
  20746. }
  20747. },
  20748. dickEquine: {
  20749. height: math.unit(0.85, "feet"),
  20750. name: "Dick (Equine)",
  20751. image: {
  20752. source: "./media/characters/artemis/dick-equine.svg"
  20753. }
  20754. },
  20755. dickExotic: {
  20756. height: math.unit(0.85, "feet"),
  20757. name: "Dick (Exotic)",
  20758. image: {
  20759. source: "./media/characters/artemis/dick-exotic.svg"
  20760. }
  20761. },
  20762. },
  20763. [
  20764. {
  20765. name: "Normal",
  20766. height: math.unit(7.5, "feet"),
  20767. default: true
  20768. },
  20769. {
  20770. name: "Enlarged",
  20771. height: math.unit(12, "feet")
  20772. },
  20773. ]
  20774. ))
  20775. characterMakers.push(() => makeCharacter(
  20776. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20777. {
  20778. front: {
  20779. height: math.unit(5 + 3 / 12, "feet"),
  20780. weight: math.unit(160, "lb"),
  20781. name: "Front",
  20782. image: {
  20783. source: "./media/characters/kira/front.svg",
  20784. extra: 906 / 786,
  20785. bottom: 0.01
  20786. }
  20787. },
  20788. back: {
  20789. height: math.unit(5 + 3 / 12, "feet"),
  20790. weight: math.unit(160, "lb"),
  20791. name: "Back",
  20792. image: {
  20793. source: "./media/characters/kira/back.svg",
  20794. extra: 882 / 757,
  20795. bottom: 0.005
  20796. }
  20797. },
  20798. frontDressed: {
  20799. height: math.unit(5 + 3 / 12, "feet"),
  20800. weight: math.unit(160, "lb"),
  20801. name: "Front (Dressed)",
  20802. image: {
  20803. source: "./media/characters/kira/front-dressed.svg",
  20804. extra: 906 / 786,
  20805. bottom: 0.01
  20806. }
  20807. },
  20808. beans: {
  20809. height: math.unit(0.92, "feet"),
  20810. name: "Beans",
  20811. image: {
  20812. source: "./media/characters/kira/beans.svg"
  20813. }
  20814. },
  20815. },
  20816. [
  20817. {
  20818. name: "Normal",
  20819. height: math.unit(5 + 3 / 12, "feet"),
  20820. default: true
  20821. },
  20822. ]
  20823. ))
  20824. characterMakers.push(() => makeCharacter(
  20825. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20826. {
  20827. front: {
  20828. height: math.unit(5 + 4 / 12, "feet"),
  20829. weight: math.unit(145, "lb"),
  20830. name: "Front",
  20831. image: {
  20832. source: "./media/characters/scramble/front.svg",
  20833. extra: 763 / 727,
  20834. bottom: 0.05
  20835. }
  20836. },
  20837. back: {
  20838. height: math.unit(5 + 4 / 12, "feet"),
  20839. weight: math.unit(145, "lb"),
  20840. name: "Back",
  20841. image: {
  20842. source: "./media/characters/scramble/back.svg",
  20843. extra: 826 / 737,
  20844. bottom: 0.002
  20845. }
  20846. },
  20847. },
  20848. [
  20849. {
  20850. name: "Normal",
  20851. height: math.unit(5 + 4 / 12, "feet"),
  20852. default: true
  20853. },
  20854. ]
  20855. ))
  20856. characterMakers.push(() => makeCharacter(
  20857. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20858. {
  20859. side: {
  20860. height: math.unit(6 + 2 / 12, "feet"),
  20861. weight: math.unit(190, "lb"),
  20862. name: "Side",
  20863. image: {
  20864. source: "./media/characters/biscuit/side.svg",
  20865. extra: 858 / 791,
  20866. bottom: 0.044
  20867. }
  20868. },
  20869. },
  20870. [
  20871. {
  20872. name: "Normal",
  20873. height: math.unit(6 + 2 / 12, "feet"),
  20874. default: true
  20875. },
  20876. ]
  20877. ))
  20878. characterMakers.push(() => makeCharacter(
  20879. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20880. {
  20881. front: {
  20882. height: math.unit(5 + 2 / 12, "feet"),
  20883. weight: math.unit(120, "lb"),
  20884. name: "Front",
  20885. image: {
  20886. source: "./media/characters/poffin/front.svg",
  20887. extra: 786 / 680,
  20888. bottom: 0.005
  20889. }
  20890. },
  20891. },
  20892. [
  20893. {
  20894. name: "Normal",
  20895. height: math.unit(5 + 2 / 12, "feet"),
  20896. default: true
  20897. },
  20898. ]
  20899. ))
  20900. characterMakers.push(() => makeCharacter(
  20901. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20902. {
  20903. front: {
  20904. height: math.unit(6 + 3 / 12, "feet"),
  20905. weight: math.unit(519, "lb"),
  20906. name: "Front",
  20907. image: {
  20908. source: "./media/characters/dhari/front.svg",
  20909. extra: 1048 / 946,
  20910. bottom: 0.015
  20911. }
  20912. },
  20913. back: {
  20914. height: math.unit(6 + 3 / 12, "feet"),
  20915. weight: math.unit(519, "lb"),
  20916. name: "Back",
  20917. image: {
  20918. source: "./media/characters/dhari/back.svg",
  20919. extra: 1048 / 931,
  20920. bottom: 0.005
  20921. }
  20922. },
  20923. frontDressed: {
  20924. height: math.unit(6 + 3 / 12, "feet"),
  20925. weight: math.unit(519, "lb"),
  20926. name: "Front (Dressed)",
  20927. image: {
  20928. source: "./media/characters/dhari/front-dressed.svg",
  20929. extra: 1713 / 1546,
  20930. bottom: 0.02
  20931. }
  20932. },
  20933. backDressed: {
  20934. height: math.unit(6 + 3 / 12, "feet"),
  20935. weight: math.unit(519, "lb"),
  20936. name: "Back (Dressed)",
  20937. image: {
  20938. source: "./media/characters/dhari/back-dressed.svg",
  20939. extra: 1699 / 1537,
  20940. bottom: 0.01
  20941. }
  20942. },
  20943. maw: {
  20944. height: math.unit(0.95, "feet"),
  20945. name: "Maw",
  20946. image: {
  20947. source: "./media/characters/dhari/maw.svg"
  20948. }
  20949. },
  20950. wereFront: {
  20951. height: math.unit(12 + 8 / 12, "feet"),
  20952. weight: math.unit(4000, "lb"),
  20953. name: "Front (Were)",
  20954. image: {
  20955. source: "./media/characters/dhari/were-front.svg",
  20956. extra: 1065 / 969,
  20957. bottom: 0.015
  20958. }
  20959. },
  20960. wereBack: {
  20961. height: math.unit(12 + 8 / 12, "feet"),
  20962. weight: math.unit(4000, "lb"),
  20963. name: "Back (Were)",
  20964. image: {
  20965. source: "./media/characters/dhari/were-back.svg",
  20966. extra: 1065 / 969,
  20967. bottom: 0.012
  20968. }
  20969. },
  20970. wereMaw: {
  20971. height: math.unit(0.625, "meters"),
  20972. name: "Maw (Were)",
  20973. image: {
  20974. source: "./media/characters/dhari/were-maw.svg"
  20975. }
  20976. },
  20977. },
  20978. [
  20979. {
  20980. name: "Normal",
  20981. height: math.unit(6 + 3 / 12, "feet"),
  20982. default: true
  20983. },
  20984. ]
  20985. ))
  20986. characterMakers.push(() => makeCharacter(
  20987. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20988. {
  20989. anthro: {
  20990. height: math.unit(5 + 7 / 12, "feet"),
  20991. weight: math.unit(175, "lb"),
  20992. name: "Anthro",
  20993. image: {
  20994. source: "./media/characters/rena-dyne/anthro.svg",
  20995. extra: 1849 / 1785,
  20996. bottom: 0.005
  20997. }
  20998. },
  20999. taur: {
  21000. height: math.unit(15 + 6 / 12, "feet"),
  21001. weight: math.unit(8000, "lb"),
  21002. name: "Taur",
  21003. image: {
  21004. source: "./media/characters/rena-dyne/taur.svg",
  21005. extra: 2315 / 2234,
  21006. bottom: 0.033
  21007. }
  21008. },
  21009. },
  21010. [
  21011. {
  21012. name: "Normal",
  21013. height: math.unit(5 + 7 / 12, "feet"),
  21014. default: true
  21015. },
  21016. ]
  21017. ))
  21018. characterMakers.push(() => makeCharacter(
  21019. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21020. {
  21021. front: {
  21022. height: math.unit(8, "feet"),
  21023. weight: math.unit(600, "lb"),
  21024. name: "Front",
  21025. image: {
  21026. source: "./media/characters/weremeep/front.svg",
  21027. extra: 967 / 862,
  21028. bottom: 0.01
  21029. }
  21030. },
  21031. },
  21032. [
  21033. {
  21034. name: "Normal",
  21035. height: math.unit(8, "feet"),
  21036. default: true
  21037. },
  21038. {
  21039. name: "Lorg",
  21040. height: math.unit(12, "feet")
  21041. },
  21042. {
  21043. name: "Oh Lawd She Comin'",
  21044. height: math.unit(20, "feet")
  21045. },
  21046. ]
  21047. ))
  21048. characterMakers.push(() => makeCharacter(
  21049. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21050. {
  21051. front: {
  21052. height: math.unit(4, "feet"),
  21053. weight: math.unit(90, "lb"),
  21054. name: "Front",
  21055. image: {
  21056. source: "./media/characters/reza/front.svg",
  21057. extra: 1183 / 1111,
  21058. bottom: 0.017
  21059. }
  21060. },
  21061. back: {
  21062. height: math.unit(4, "feet"),
  21063. weight: math.unit(90, "lb"),
  21064. name: "Back",
  21065. image: {
  21066. source: "./media/characters/reza/back.svg",
  21067. extra: 1183 / 1111,
  21068. bottom: 0.01
  21069. }
  21070. },
  21071. drake: {
  21072. height: math.unit(30, "feet"),
  21073. weight: math.unit(246960, "lb"),
  21074. name: "Drake",
  21075. image: {
  21076. source: "./media/characters/reza/drake.svg",
  21077. extra: 2350 / 2024,
  21078. bottom: 60.7 / 2403
  21079. }
  21080. },
  21081. },
  21082. [
  21083. {
  21084. name: "Normal",
  21085. height: math.unit(4, "feet"),
  21086. default: true
  21087. },
  21088. ]
  21089. ))
  21090. characterMakers.push(() => makeCharacter(
  21091. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21092. {
  21093. side: {
  21094. height: math.unit(15, "feet"),
  21095. weight: math.unit(14, "tons"),
  21096. name: "Side",
  21097. image: {
  21098. source: "./media/characters/athea/side.svg",
  21099. extra: 960 / 540,
  21100. bottom: 0.003
  21101. }
  21102. },
  21103. sitting: {
  21104. height: math.unit(6 * 2.85, "feet"),
  21105. weight: math.unit(14, "tons"),
  21106. name: "Sitting",
  21107. image: {
  21108. source: "./media/characters/athea/sitting.svg",
  21109. extra: 621 / 581,
  21110. bottom: 0.075
  21111. }
  21112. },
  21113. maw: {
  21114. height: math.unit(7.59498031496063, "feet"),
  21115. name: "Maw",
  21116. image: {
  21117. source: "./media/characters/athea/maw.svg"
  21118. }
  21119. },
  21120. },
  21121. [
  21122. {
  21123. name: "Lap Cat",
  21124. height: math.unit(2.5, "feet")
  21125. },
  21126. {
  21127. name: "Minimacro",
  21128. height: math.unit(15, "feet"),
  21129. default: true
  21130. },
  21131. {
  21132. name: "Macro",
  21133. height: math.unit(120, "feet")
  21134. },
  21135. {
  21136. name: "Macro+",
  21137. height: math.unit(640, "feet")
  21138. },
  21139. {
  21140. name: "Colossus",
  21141. height: math.unit(2.2, "miles")
  21142. },
  21143. ]
  21144. ))
  21145. characterMakers.push(() => makeCharacter(
  21146. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21147. {
  21148. front: {
  21149. height: math.unit(8 + 8 / 12, "feet"),
  21150. weight: math.unit(130, "kg"),
  21151. name: "Front",
  21152. image: {
  21153. source: "./media/characters/seroko/front.svg",
  21154. extra: 1385 / 1280,
  21155. bottom: 0.025
  21156. }
  21157. },
  21158. back: {
  21159. height: math.unit(8 + 8 / 12, "feet"),
  21160. weight: math.unit(130, "kg"),
  21161. name: "Back",
  21162. image: {
  21163. source: "./media/characters/seroko/back.svg",
  21164. extra: 1369 / 1238,
  21165. bottom: 0.018
  21166. }
  21167. },
  21168. frontDressed: {
  21169. height: math.unit(8 + 8 / 12, "feet"),
  21170. weight: math.unit(130, "kg"),
  21171. name: "Front (Dressed)",
  21172. image: {
  21173. source: "./media/characters/seroko/front-dressed.svg",
  21174. extra: 1366 / 1275,
  21175. bottom: 0.03
  21176. }
  21177. },
  21178. },
  21179. [
  21180. {
  21181. name: "Normal",
  21182. height: math.unit(8 + 8 / 12, "feet"),
  21183. default: true
  21184. },
  21185. ]
  21186. ))
  21187. characterMakers.push(() => makeCharacter(
  21188. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21189. {
  21190. front: {
  21191. height: math.unit(5.5, "feet"),
  21192. weight: math.unit(160, "lb"),
  21193. name: "Front",
  21194. image: {
  21195. source: "./media/characters/quatzi/front.svg",
  21196. extra: 2346 / 2242,
  21197. bottom: 0.015
  21198. }
  21199. },
  21200. },
  21201. [
  21202. {
  21203. name: "Normal",
  21204. height: math.unit(5.5, "feet"),
  21205. default: true
  21206. },
  21207. {
  21208. name: "Big",
  21209. height: math.unit(7.7, "feet")
  21210. },
  21211. ]
  21212. ))
  21213. characterMakers.push(() => makeCharacter(
  21214. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21215. {
  21216. front: {
  21217. height: math.unit(5 + 11 / 12, "feet"),
  21218. weight: math.unit(180, "lb"),
  21219. name: "Front",
  21220. image: {
  21221. source: "./media/characters/sen/front.svg",
  21222. extra: 1321 / 1254,
  21223. bottom: 0.015
  21224. }
  21225. },
  21226. side: {
  21227. height: math.unit(5 + 11 / 12, "feet"),
  21228. weight: math.unit(180, "lb"),
  21229. name: "Side",
  21230. image: {
  21231. source: "./media/characters/sen/side.svg",
  21232. extra: 1321 / 1254,
  21233. bottom: 0.007
  21234. }
  21235. },
  21236. back: {
  21237. height: math.unit(5 + 11 / 12, "feet"),
  21238. weight: math.unit(180, "lb"),
  21239. name: "Back",
  21240. image: {
  21241. source: "./media/characters/sen/back.svg",
  21242. extra: 1321 / 1254
  21243. }
  21244. },
  21245. },
  21246. [
  21247. {
  21248. name: "Normal",
  21249. height: math.unit(5 + 11 / 12, "feet"),
  21250. default: true
  21251. },
  21252. ]
  21253. ))
  21254. characterMakers.push(() => makeCharacter(
  21255. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21256. {
  21257. front: {
  21258. height: math.unit(166.6, "cm"),
  21259. weight: math.unit(66.6, "kg"),
  21260. name: "Front",
  21261. image: {
  21262. source: "./media/characters/fruity/front.svg",
  21263. extra: 1510 / 1386,
  21264. bottom: 0.04
  21265. }
  21266. },
  21267. back: {
  21268. height: math.unit(166.6, "cm"),
  21269. weight: math.unit(66.6, "lb"),
  21270. name: "Back",
  21271. image: {
  21272. source: "./media/characters/fruity/back.svg",
  21273. extra: 1563 / 1435,
  21274. bottom: 0.005
  21275. }
  21276. },
  21277. },
  21278. [
  21279. {
  21280. name: "Normal",
  21281. height: math.unit(166.6, "cm"),
  21282. default: true
  21283. },
  21284. {
  21285. name: "Demonic",
  21286. height: math.unit(166.6, "feet")
  21287. },
  21288. ]
  21289. ))
  21290. characterMakers.push(() => makeCharacter(
  21291. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21292. {
  21293. side: {
  21294. height: math.unit(10, "feet"),
  21295. weight: math.unit(500, "lb"),
  21296. name: "Side",
  21297. image: {
  21298. source: "./media/characters/zost/side.svg",
  21299. extra: 966 / 880,
  21300. bottom: 0.075
  21301. }
  21302. },
  21303. mawFront: {
  21304. height: math.unit(1.08, "meters"),
  21305. name: "Maw (Front)",
  21306. image: {
  21307. source: "./media/characters/zost/maw-front.svg"
  21308. }
  21309. },
  21310. mawSide: {
  21311. height: math.unit(2.66, "feet"),
  21312. name: "Maw (Side)",
  21313. image: {
  21314. source: "./media/characters/zost/maw-side.svg"
  21315. }
  21316. },
  21317. },
  21318. [
  21319. {
  21320. name: "Normal",
  21321. height: math.unit(10, "feet"),
  21322. default: true
  21323. },
  21324. ]
  21325. ))
  21326. characterMakers.push(() => makeCharacter(
  21327. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21328. {
  21329. front: {
  21330. height: math.unit(5 + 4 / 12, "feet"),
  21331. weight: math.unit(120, "lb"),
  21332. name: "Front",
  21333. image: {
  21334. source: "./media/characters/luci/front.svg",
  21335. extra: 1985 / 1884,
  21336. bottom: 0.04
  21337. }
  21338. },
  21339. back: {
  21340. height: math.unit(5 + 4 / 12, "feet"),
  21341. weight: math.unit(120, "lb"),
  21342. name: "Back",
  21343. image: {
  21344. source: "./media/characters/luci/back.svg",
  21345. extra: 1892 / 1791,
  21346. bottom: 0.002
  21347. }
  21348. },
  21349. },
  21350. [
  21351. {
  21352. name: "Normal",
  21353. height: math.unit(5 + 4 / 12, "feet"),
  21354. default: true
  21355. },
  21356. ]
  21357. ))
  21358. characterMakers.push(() => makeCharacter(
  21359. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21360. {
  21361. front: {
  21362. height: math.unit(1500, "feet"),
  21363. weight: math.unit(3.8e6, "tons"),
  21364. name: "Front",
  21365. image: {
  21366. source: "./media/characters/2th/front.svg",
  21367. extra: 3489 / 3350,
  21368. bottom: 0.1
  21369. }
  21370. },
  21371. foot: {
  21372. height: math.unit(461, "feet"),
  21373. name: "Foot",
  21374. image: {
  21375. source: "./media/characters/2th/foot.svg"
  21376. }
  21377. },
  21378. },
  21379. [
  21380. {
  21381. name: "\"Micro\"",
  21382. height: math.unit(15 + 7 / 12, "feet")
  21383. },
  21384. {
  21385. name: "Normal",
  21386. height: math.unit(1500, "feet"),
  21387. default: true
  21388. },
  21389. {
  21390. name: "Macro",
  21391. height: math.unit(5000, "feet")
  21392. },
  21393. {
  21394. name: "Megamacro",
  21395. height: math.unit(15, "miles")
  21396. },
  21397. {
  21398. name: "Gigamacro",
  21399. height: math.unit(4000, "miles")
  21400. },
  21401. {
  21402. name: "Galactic",
  21403. height: math.unit(50, "AU")
  21404. },
  21405. ]
  21406. ))
  21407. characterMakers.push(() => makeCharacter(
  21408. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21409. {
  21410. front: {
  21411. height: math.unit(5 + 6 / 12, "feet"),
  21412. weight: math.unit(220, "lb"),
  21413. name: "Front",
  21414. image: {
  21415. source: "./media/characters/amethyst/front.svg",
  21416. extra: 2078 / 2040,
  21417. bottom: 0.045
  21418. }
  21419. },
  21420. back: {
  21421. height: math.unit(5 + 6 / 12, "feet"),
  21422. weight: math.unit(220, "lb"),
  21423. name: "Back",
  21424. image: {
  21425. source: "./media/characters/amethyst/back.svg",
  21426. extra: 2021 / 1989,
  21427. bottom: 0.02
  21428. }
  21429. },
  21430. },
  21431. [
  21432. {
  21433. name: "Normal",
  21434. height: math.unit(5 + 6 / 12, "feet"),
  21435. default: true
  21436. },
  21437. ]
  21438. ))
  21439. characterMakers.push(() => makeCharacter(
  21440. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21441. {
  21442. front: {
  21443. height: math.unit(4 + 11 / 12, "feet"),
  21444. weight: math.unit(120, "lb"),
  21445. name: "Front",
  21446. image: {
  21447. source: "./media/characters/yumi-akiyama/front.svg",
  21448. extra: 1327 / 1235,
  21449. bottom: 0.02
  21450. }
  21451. },
  21452. back: {
  21453. height: math.unit(4 + 11 / 12, "feet"),
  21454. weight: math.unit(120, "lb"),
  21455. name: "Back",
  21456. image: {
  21457. source: "./media/characters/yumi-akiyama/back.svg",
  21458. extra: 1287 / 1245,
  21459. bottom: 0.002
  21460. }
  21461. },
  21462. },
  21463. [
  21464. {
  21465. name: "Galactic",
  21466. height: math.unit(50, "galaxies"),
  21467. default: true
  21468. },
  21469. {
  21470. name: "Universal",
  21471. height: math.unit(100, "universes")
  21472. },
  21473. ]
  21474. ))
  21475. characterMakers.push(() => makeCharacter(
  21476. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21477. {
  21478. front: {
  21479. height: math.unit(8, "feet"),
  21480. weight: math.unit(500, "lb"),
  21481. name: "Front",
  21482. image: {
  21483. source: "./media/characters/rifter-yrmori/front.svg",
  21484. extra: 1180 / 1125,
  21485. bottom: 0.02
  21486. }
  21487. },
  21488. back: {
  21489. height: math.unit(8, "feet"),
  21490. weight: math.unit(500, "lb"),
  21491. name: "Back",
  21492. image: {
  21493. source: "./media/characters/rifter-yrmori/back.svg",
  21494. extra: 1190 / 1145,
  21495. bottom: 0.001
  21496. }
  21497. },
  21498. wings: {
  21499. height: math.unit(7.75, "feet"),
  21500. weight: math.unit(500, "lb"),
  21501. name: "Wings",
  21502. image: {
  21503. source: "./media/characters/rifter-yrmori/wings.svg",
  21504. extra: 1357 / 1285
  21505. }
  21506. },
  21507. maw: {
  21508. height: math.unit(0.8, "feet"),
  21509. name: "Maw",
  21510. image: {
  21511. source: "./media/characters/rifter-yrmori/maw.svg"
  21512. }
  21513. },
  21514. mawfront: {
  21515. height: math.unit(1.45, "feet"),
  21516. name: "Maw (Front)",
  21517. image: {
  21518. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21519. }
  21520. },
  21521. },
  21522. [
  21523. {
  21524. name: "Normal",
  21525. height: math.unit(8, "feet"),
  21526. default: true
  21527. },
  21528. {
  21529. name: "Macro",
  21530. height: math.unit(42, "meters")
  21531. },
  21532. ]
  21533. ))
  21534. characterMakers.push(() => makeCharacter(
  21535. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21536. {
  21537. were: {
  21538. height: math.unit(25 + 6 / 12, "feet"),
  21539. weight: math.unit(10000, "lb"),
  21540. name: "Were",
  21541. image: {
  21542. source: "./media/characters/tahajin/were.svg",
  21543. extra: 801 / 770,
  21544. bottom: 0.042
  21545. }
  21546. },
  21547. aquatic: {
  21548. height: math.unit(6 + 4 / 12, "feet"),
  21549. weight: math.unit(160, "lb"),
  21550. name: "Aquatic",
  21551. image: {
  21552. source: "./media/characters/tahajin/aquatic.svg",
  21553. extra: 572 / 542,
  21554. bottom: 0.04
  21555. }
  21556. },
  21557. chow: {
  21558. height: math.unit(8 + 11 / 12, "feet"),
  21559. weight: math.unit(450, "lb"),
  21560. name: "Chow",
  21561. image: {
  21562. source: "./media/characters/tahajin/chow.svg",
  21563. extra: 660 / 640,
  21564. bottom: 0.015
  21565. }
  21566. },
  21567. demiNaga: {
  21568. height: math.unit(6 + 8 / 12, "feet"),
  21569. weight: math.unit(300, "lb"),
  21570. name: "Demi Naga",
  21571. image: {
  21572. source: "./media/characters/tahajin/demi-naga.svg",
  21573. extra: 643 / 615,
  21574. bottom: 0.1
  21575. }
  21576. },
  21577. data: {
  21578. height: math.unit(5, "inches"),
  21579. weight: math.unit(0.1, "lb"),
  21580. name: "Data",
  21581. image: {
  21582. source: "./media/characters/tahajin/data.svg"
  21583. }
  21584. },
  21585. fluu: {
  21586. height: math.unit(5 + 7 / 12, "feet"),
  21587. weight: math.unit(140, "lb"),
  21588. name: "Fluu",
  21589. image: {
  21590. source: "./media/characters/tahajin/fluu.svg",
  21591. extra: 628 / 592,
  21592. bottom: 0.02
  21593. }
  21594. },
  21595. starWarrior: {
  21596. height: math.unit(4 + 5 / 12, "feet"),
  21597. weight: math.unit(50, "lb"),
  21598. name: "Star Warrior",
  21599. image: {
  21600. source: "./media/characters/tahajin/star-warrior.svg"
  21601. }
  21602. },
  21603. },
  21604. [
  21605. {
  21606. name: "Normal",
  21607. height: math.unit(25 + 6 / 12, "feet"),
  21608. default: true
  21609. },
  21610. ]
  21611. ))
  21612. characterMakers.push(() => makeCharacter(
  21613. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21614. {
  21615. front: {
  21616. height: math.unit(8, "feet"),
  21617. weight: math.unit(350, "lb"),
  21618. name: "Front",
  21619. image: {
  21620. source: "./media/characters/gabira/front.svg",
  21621. extra: 608 / 580,
  21622. bottom: 0.03
  21623. }
  21624. },
  21625. back: {
  21626. height: math.unit(8, "feet"),
  21627. weight: math.unit(350, "lb"),
  21628. name: "Back",
  21629. image: {
  21630. source: "./media/characters/gabira/back.svg",
  21631. extra: 608 / 580,
  21632. bottom: 0.03
  21633. }
  21634. },
  21635. },
  21636. [
  21637. {
  21638. name: "Normal",
  21639. height: math.unit(8, "feet"),
  21640. default: true
  21641. },
  21642. ]
  21643. ))
  21644. characterMakers.push(() => makeCharacter(
  21645. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21646. {
  21647. front: {
  21648. height: math.unit(5 + 3 / 12, "feet"),
  21649. weight: math.unit(137, "lb"),
  21650. name: "Front",
  21651. image: {
  21652. source: "./media/characters/sasha-katraine/front.svg",
  21653. bottom: 0.045
  21654. }
  21655. },
  21656. },
  21657. [
  21658. {
  21659. name: "Micro",
  21660. height: math.unit(5, "inches")
  21661. },
  21662. {
  21663. name: "Normal",
  21664. height: math.unit(5 + 3 / 12, "feet"),
  21665. default: true
  21666. },
  21667. ]
  21668. ))
  21669. characterMakers.push(() => makeCharacter(
  21670. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21671. {
  21672. side: {
  21673. height: math.unit(4, "inches"),
  21674. weight: math.unit(200, "grams"),
  21675. name: "Side",
  21676. image: {
  21677. source: "./media/characters/der/side.svg",
  21678. extra: 719 / 400,
  21679. bottom: 30.6 / 749.9187
  21680. }
  21681. },
  21682. },
  21683. [
  21684. {
  21685. name: "Micro",
  21686. height: math.unit(4, "inches"),
  21687. default: true
  21688. },
  21689. ]
  21690. ))
  21691. characterMakers.push(() => makeCharacter(
  21692. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21693. {
  21694. side: {
  21695. height: math.unit(30, "meters"),
  21696. weight: math.unit(700, "tonnes"),
  21697. name: "Side",
  21698. image: {
  21699. source: "./media/characters/fixerdragon/side.svg",
  21700. extra: (1293.0514 - 116.03) / 1106.86,
  21701. bottom: 116.03 / 1293.0514
  21702. }
  21703. },
  21704. },
  21705. [
  21706. {
  21707. name: "Planck",
  21708. height: math.unit(1.6e-35, "meters")
  21709. },
  21710. {
  21711. name: "Micro",
  21712. height: math.unit(0.4, "meters")
  21713. },
  21714. {
  21715. name: "Normal",
  21716. height: math.unit(30, "meters"),
  21717. default: true
  21718. },
  21719. {
  21720. name: "Megamacro",
  21721. height: math.unit(1.2, "megameters")
  21722. },
  21723. {
  21724. name: "Teramacro",
  21725. height: math.unit(130, "terameters")
  21726. },
  21727. {
  21728. name: "Yottamacro",
  21729. height: math.unit(6200, "yottameters")
  21730. },
  21731. ]
  21732. ));
  21733. characterMakers.push(() => makeCharacter(
  21734. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21735. {
  21736. front: {
  21737. height: math.unit(8, "feet"),
  21738. weight: math.unit(250, "lb"),
  21739. name: "Front",
  21740. image: {
  21741. source: "./media/characters/kite/front.svg",
  21742. extra: 2796 / 2659,
  21743. bottom: 0.002
  21744. }
  21745. },
  21746. },
  21747. [
  21748. {
  21749. name: "Normal",
  21750. height: math.unit(8, "feet"),
  21751. default: true
  21752. },
  21753. {
  21754. name: "Macro",
  21755. height: math.unit(360, "feet")
  21756. },
  21757. {
  21758. name: "Megamacro",
  21759. height: math.unit(1500, "feet")
  21760. },
  21761. ]
  21762. ))
  21763. characterMakers.push(() => makeCharacter(
  21764. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21765. {
  21766. front: {
  21767. height: math.unit(5 + 11/12, "feet"),
  21768. weight: math.unit(170, "lb"),
  21769. name: "Front",
  21770. image: {
  21771. source: "./media/characters/poojawa-vynar/front.svg",
  21772. extra: 1735/1585,
  21773. bottom: 96/1831
  21774. }
  21775. },
  21776. back: {
  21777. height: math.unit(5 + 11/12, "feet"),
  21778. weight: math.unit(170, "lb"),
  21779. name: "Back",
  21780. image: {
  21781. source: "./media/characters/poojawa-vynar/back.svg",
  21782. extra: 1749/1607,
  21783. bottom: 28/1777
  21784. }
  21785. },
  21786. male: {
  21787. height: math.unit(5 + 11/12, "feet"),
  21788. weight: math.unit(170, "lb"),
  21789. name: "Male",
  21790. image: {
  21791. source: "./media/characters/poojawa-vynar/male.svg",
  21792. extra: 1855/1713,
  21793. bottom: 63/1918
  21794. }
  21795. },
  21796. taur: {
  21797. height: math.unit(5 + 11/12, "feet"),
  21798. weight: math.unit(170, "lb"),
  21799. name: "Taur",
  21800. image: {
  21801. source: "./media/characters/poojawa-vynar/taur.svg",
  21802. extra: 1151/1059,
  21803. bottom: 356/1507
  21804. }
  21805. },
  21806. frontDressed: {
  21807. height: math.unit(5 + 11/12, "feet"),
  21808. weight: math.unit(170, "lb"),
  21809. name: "Front (Dressed)",
  21810. image: {
  21811. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  21812. extra: 1735/1585,
  21813. bottom: 96/1831
  21814. }
  21815. },
  21816. backDressed: {
  21817. height: math.unit(5 + 11/12, "feet"),
  21818. weight: math.unit(170, "lb"),
  21819. name: "Back (Dressed)",
  21820. image: {
  21821. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  21822. extra: 1749/1607,
  21823. bottom: 28/1777
  21824. }
  21825. },
  21826. maleDressed: {
  21827. height: math.unit(5 + 11/12, "feet"),
  21828. weight: math.unit(170, "lb"),
  21829. name: "Male (Dressed)",
  21830. image: {
  21831. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  21832. extra: 1855/1713,
  21833. bottom: 63/1918
  21834. }
  21835. },
  21836. taurDressed: {
  21837. height: math.unit(5 + 11/12, "feet"),
  21838. weight: math.unit(170, "lb"),
  21839. name: "Taur (Dressed)",
  21840. image: {
  21841. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  21842. extra: 1151/1059,
  21843. bottom: 356/1507
  21844. }
  21845. },
  21846. maw: {
  21847. height: math.unit(1.46, "feet"),
  21848. name: "Maw",
  21849. image: {
  21850. source: "./media/characters/poojawa-vynar/maw.svg"
  21851. }
  21852. },
  21853. head: {
  21854. height: math.unit(2.34, "feet"),
  21855. name: "Head",
  21856. image: {
  21857. source: "./media/characters/poojawa-vynar/head.svg"
  21858. }
  21859. },
  21860. paw: {
  21861. height: math.unit(1.61, "feet"),
  21862. name: "Paw",
  21863. image: {
  21864. source: "./media/characters/poojawa-vynar/paw.svg"
  21865. }
  21866. },
  21867. pawToering: {
  21868. height: math.unit(1.72, "feet"),
  21869. name: "Paw (Toering)",
  21870. image: {
  21871. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  21872. }
  21873. },
  21874. toering: {
  21875. height: math.unit(2.9, "inches"),
  21876. name: "Toering",
  21877. image: {
  21878. source: "./media/characters/poojawa-vynar/toering.svg"
  21879. }
  21880. },
  21881. shaft: {
  21882. height: math.unit(0.625, "feet"),
  21883. name: "Shaft",
  21884. image: {
  21885. source: "./media/characters/poojawa-vynar/shaft.svg"
  21886. }
  21887. },
  21888. spade: {
  21889. height: math.unit(0.42, "feet"),
  21890. name: "Spade",
  21891. image: {
  21892. source: "./media/characters/poojawa-vynar/spade.svg"
  21893. }
  21894. },
  21895. },
  21896. [
  21897. {
  21898. name: "Shortstack",
  21899. height: math.unit(4, "feet")
  21900. },
  21901. {
  21902. name: "Normal",
  21903. height: math.unit(5 + 11 / 12, "feet"),
  21904. default: true
  21905. },
  21906. {
  21907. name: "Tauric",
  21908. height: math.unit(4, "meters")
  21909. },
  21910. ]
  21911. ))
  21912. characterMakers.push(() => makeCharacter(
  21913. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21914. {
  21915. front: {
  21916. height: math.unit(293, "meters"),
  21917. weight: math.unit(70400, "tons"),
  21918. name: "Front",
  21919. image: {
  21920. source: "./media/characters/violette/front.svg",
  21921. extra: 1227 / 1180,
  21922. bottom: 0.005
  21923. }
  21924. },
  21925. back: {
  21926. height: math.unit(293, "meters"),
  21927. weight: math.unit(70400, "tons"),
  21928. name: "Back",
  21929. image: {
  21930. source: "./media/characters/violette/back.svg",
  21931. extra: 1227 / 1180,
  21932. bottom: 0.005
  21933. }
  21934. },
  21935. },
  21936. [
  21937. {
  21938. name: "Macro",
  21939. height: math.unit(293, "meters"),
  21940. default: true
  21941. },
  21942. ]
  21943. ))
  21944. characterMakers.push(() => makeCharacter(
  21945. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21946. {
  21947. front: {
  21948. height: math.unit(1050, "feet"),
  21949. weight: math.unit(200000, "tons"),
  21950. name: "Front",
  21951. image: {
  21952. source: "./media/characters/alessandra/front.svg",
  21953. extra: 960 / 912,
  21954. bottom: 0.06
  21955. }
  21956. },
  21957. },
  21958. [
  21959. {
  21960. name: "Macro",
  21961. height: math.unit(1050, "feet")
  21962. },
  21963. {
  21964. name: "Macro+",
  21965. height: math.unit(900, "meters"),
  21966. default: true
  21967. },
  21968. ]
  21969. ))
  21970. characterMakers.push(() => makeCharacter(
  21971. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21972. {
  21973. front: {
  21974. height: math.unit(5, "feet"),
  21975. weight: math.unit(187, "lb"),
  21976. name: "Front",
  21977. image: {
  21978. source: "./media/characters/person/front.svg",
  21979. extra: 3087 / 2945,
  21980. bottom: 91 / 3181
  21981. }
  21982. },
  21983. },
  21984. [
  21985. {
  21986. name: "Micro",
  21987. height: math.unit(3, "inches")
  21988. },
  21989. {
  21990. name: "Normal",
  21991. height: math.unit(5, "feet"),
  21992. default: true
  21993. },
  21994. {
  21995. name: "Macro",
  21996. height: math.unit(90, "feet")
  21997. },
  21998. {
  21999. name: "Max Size",
  22000. height: math.unit(280, "feet")
  22001. },
  22002. ]
  22003. ))
  22004. characterMakers.push(() => makeCharacter(
  22005. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22006. {
  22007. front: {
  22008. height: math.unit(4.5, "meters"),
  22009. weight: math.unit(3200, "lb"),
  22010. name: "Front",
  22011. image: {
  22012. source: "./media/characters/ty/front.svg",
  22013. extra: 1038 / 960,
  22014. bottom: 31.156 / 1068
  22015. }
  22016. },
  22017. back: {
  22018. height: math.unit(4.5, "meters"),
  22019. weight: math.unit(3200, "lb"),
  22020. name: "Back",
  22021. image: {
  22022. source: "./media/characters/ty/back.svg",
  22023. extra: 1044 / 966,
  22024. bottom: 7.48 / 1049
  22025. }
  22026. },
  22027. },
  22028. [
  22029. {
  22030. name: "Normal",
  22031. height: math.unit(4.5, "meters"),
  22032. default: true
  22033. },
  22034. ]
  22035. ))
  22036. characterMakers.push(() => makeCharacter(
  22037. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22038. {
  22039. front: {
  22040. height: math.unit(5 + 4 / 12, "feet"),
  22041. weight: math.unit(115, "lb"),
  22042. name: "Front",
  22043. image: {
  22044. source: "./media/characters/rocky/front.svg",
  22045. extra: 1012 / 975,
  22046. bottom: 54 / 1066
  22047. }
  22048. },
  22049. },
  22050. [
  22051. {
  22052. name: "Normal",
  22053. height: math.unit(5 + 4 / 12, "feet"),
  22054. default: true
  22055. },
  22056. ]
  22057. ))
  22058. characterMakers.push(() => makeCharacter(
  22059. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22060. {
  22061. upright: {
  22062. height: math.unit(6, "meters"),
  22063. weight: math.unit(4000, "kg"),
  22064. name: "Upright",
  22065. image: {
  22066. source: "./media/characters/ruin/upright.svg",
  22067. extra: 668 / 661,
  22068. bottom: 42 / 799.8396
  22069. }
  22070. },
  22071. },
  22072. [
  22073. {
  22074. name: "Normal",
  22075. height: math.unit(6, "meters"),
  22076. default: true
  22077. },
  22078. ]
  22079. ))
  22080. characterMakers.push(() => makeCharacter(
  22081. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22082. {
  22083. front: {
  22084. height: math.unit(5, "feet"),
  22085. weight: math.unit(106, "lb"),
  22086. name: "Front",
  22087. image: {
  22088. source: "./media/characters/robin/front.svg",
  22089. extra: 862 / 799,
  22090. bottom: 42.4 / 914.8856
  22091. }
  22092. },
  22093. },
  22094. [
  22095. {
  22096. name: "Normal",
  22097. height: math.unit(5, "feet"),
  22098. default: true
  22099. },
  22100. ]
  22101. ))
  22102. characterMakers.push(() => makeCharacter(
  22103. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22104. {
  22105. side: {
  22106. height: math.unit(3, "feet"),
  22107. weight: math.unit(225, "lb"),
  22108. name: "Side",
  22109. image: {
  22110. source: "./media/characters/saian/side.svg",
  22111. extra: 566 / 356,
  22112. bottom: 79.7 / 643
  22113. }
  22114. },
  22115. maw: {
  22116. height: math.unit(2.85, "feet"),
  22117. name: "Maw",
  22118. image: {
  22119. source: "./media/characters/saian/maw.svg"
  22120. }
  22121. },
  22122. },
  22123. [
  22124. {
  22125. name: "Normal",
  22126. height: math.unit(3, "feet"),
  22127. default: true
  22128. },
  22129. ]
  22130. ))
  22131. characterMakers.push(() => makeCharacter(
  22132. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22133. {
  22134. side: {
  22135. height: math.unit(8, "feet"),
  22136. weight: math.unit(300, "lb"),
  22137. name: "Side",
  22138. image: {
  22139. source: "./media/characters/equus-silvermane/side.svg",
  22140. extra: 2176 / 2050,
  22141. bottom: 65.7 / 2245
  22142. }
  22143. },
  22144. front: {
  22145. height: math.unit(8, "feet"),
  22146. weight: math.unit(300, "lb"),
  22147. name: "Front",
  22148. image: {
  22149. source: "./media/characters/equus-silvermane/front.svg",
  22150. extra: 4633 / 4400,
  22151. bottom: 71.3 / 4706.915
  22152. }
  22153. },
  22154. sideStepping: {
  22155. height: math.unit(8, "feet"),
  22156. weight: math.unit(300, "lb"),
  22157. name: "Side (Stepping)",
  22158. image: {
  22159. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22160. extra: 1968 / 1860,
  22161. bottom: 16.4 / 1989
  22162. }
  22163. },
  22164. },
  22165. [
  22166. {
  22167. name: "Normal",
  22168. height: math.unit(8, "feet")
  22169. },
  22170. {
  22171. name: "Minimacro",
  22172. height: math.unit(75, "feet"),
  22173. default: true
  22174. },
  22175. {
  22176. name: "Macro",
  22177. height: math.unit(150, "feet")
  22178. },
  22179. {
  22180. name: "Macro+",
  22181. height: math.unit(1000, "feet")
  22182. },
  22183. {
  22184. name: "Megamacro",
  22185. height: math.unit(1, "mile")
  22186. },
  22187. ]
  22188. ))
  22189. characterMakers.push(() => makeCharacter(
  22190. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22191. {
  22192. side: {
  22193. height: math.unit(20, "feet"),
  22194. weight: math.unit(30000, "kg"),
  22195. name: "Side",
  22196. image: {
  22197. source: "./media/characters/windar/side.svg",
  22198. extra: 1491 / 1248,
  22199. bottom: 82.56 / 1568
  22200. }
  22201. },
  22202. },
  22203. [
  22204. {
  22205. name: "Normal",
  22206. height: math.unit(20, "feet"),
  22207. default: true
  22208. },
  22209. ]
  22210. ))
  22211. characterMakers.push(() => makeCharacter(
  22212. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22213. {
  22214. side: {
  22215. height: math.unit(15.66, "feet"),
  22216. weight: math.unit(150, "lb"),
  22217. name: "Side",
  22218. image: {
  22219. source: "./media/characters/melody/side.svg",
  22220. extra: 1097 / 944,
  22221. bottom: 11.8 / 1109
  22222. }
  22223. },
  22224. sideOutfit: {
  22225. height: math.unit(15.66, "feet"),
  22226. weight: math.unit(150, "lb"),
  22227. name: "Side (Outfit)",
  22228. image: {
  22229. source: "./media/characters/melody/side-outfit.svg",
  22230. extra: 1097 / 944,
  22231. bottom: 11.8 / 1109
  22232. }
  22233. },
  22234. },
  22235. [
  22236. {
  22237. name: "Normal",
  22238. height: math.unit(15.66, "feet"),
  22239. default: true
  22240. },
  22241. ]
  22242. ))
  22243. characterMakers.push(() => makeCharacter(
  22244. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22245. {
  22246. front: {
  22247. height: math.unit(8, "feet"),
  22248. weight: math.unit(325, "lb"),
  22249. name: "Front",
  22250. image: {
  22251. source: "./media/characters/windera/front.svg",
  22252. extra: 3180 / 2845,
  22253. bottom: 178 / 3365
  22254. }
  22255. },
  22256. },
  22257. [
  22258. {
  22259. name: "Normal",
  22260. height: math.unit(8, "feet"),
  22261. default: true
  22262. },
  22263. ]
  22264. ))
  22265. characterMakers.push(() => makeCharacter(
  22266. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22267. {
  22268. front: {
  22269. height: math.unit(28.75, "feet"),
  22270. weight: math.unit(2000, "kg"),
  22271. name: "Front",
  22272. image: {
  22273. source: "./media/characters/sonear/front.svg",
  22274. extra: 1041.1 / 964.9,
  22275. bottom: 53.7 / 1096.6
  22276. }
  22277. },
  22278. },
  22279. [
  22280. {
  22281. name: "Normal",
  22282. height: math.unit(28.75, "feet"),
  22283. default: true
  22284. },
  22285. ]
  22286. ))
  22287. characterMakers.push(() => makeCharacter(
  22288. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22289. {
  22290. side: {
  22291. height: math.unit(25.5, "feet"),
  22292. weight: math.unit(23000, "kg"),
  22293. name: "Side",
  22294. image: {
  22295. source: "./media/characters/kanara/side.svg"
  22296. }
  22297. },
  22298. },
  22299. [
  22300. {
  22301. name: "Normal",
  22302. height: math.unit(25.5, "feet"),
  22303. default: true
  22304. },
  22305. ]
  22306. ))
  22307. characterMakers.push(() => makeCharacter(
  22308. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22309. {
  22310. side: {
  22311. height: math.unit(10, "feet"),
  22312. weight: math.unit(1000, "kg"),
  22313. name: "Side",
  22314. image: {
  22315. source: "./media/characters/ereus/side.svg",
  22316. extra: 1157 / 959,
  22317. bottom: 153 / 1312.5
  22318. }
  22319. },
  22320. },
  22321. [
  22322. {
  22323. name: "Normal",
  22324. height: math.unit(10, "feet"),
  22325. default: true
  22326. },
  22327. ]
  22328. ))
  22329. characterMakers.push(() => makeCharacter(
  22330. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22331. {
  22332. side: {
  22333. height: math.unit(4.5, "feet"),
  22334. weight: math.unit(500, "lb"),
  22335. name: "Side",
  22336. image: {
  22337. source: "./media/characters/e-ter/side.svg",
  22338. extra: 1550 / 1248,
  22339. bottom: 146 / 1694
  22340. }
  22341. },
  22342. },
  22343. [
  22344. {
  22345. name: "Normal",
  22346. height: math.unit(4.5, "feet"),
  22347. default: true
  22348. },
  22349. ]
  22350. ))
  22351. characterMakers.push(() => makeCharacter(
  22352. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22353. {
  22354. side: {
  22355. height: math.unit(9.7, "feet"),
  22356. weight: math.unit(4000, "kg"),
  22357. name: "Side",
  22358. image: {
  22359. source: "./media/characters/yamie/side.svg"
  22360. }
  22361. },
  22362. },
  22363. [
  22364. {
  22365. name: "Normal",
  22366. height: math.unit(9.7, "feet"),
  22367. default: true
  22368. },
  22369. ]
  22370. ))
  22371. characterMakers.push(() => makeCharacter(
  22372. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22373. {
  22374. front: {
  22375. height: math.unit(50, "feet"),
  22376. weight: math.unit(50000, "kg"),
  22377. name: "Front",
  22378. image: {
  22379. source: "./media/characters/anders/front.svg",
  22380. extra: 570 / 539,
  22381. bottom: 14.7 / 586.7
  22382. }
  22383. },
  22384. },
  22385. [
  22386. {
  22387. name: "Large",
  22388. height: math.unit(50, "feet")
  22389. },
  22390. {
  22391. name: "Macro",
  22392. height: math.unit(2000, "feet"),
  22393. default: true
  22394. },
  22395. {
  22396. name: "Megamacro",
  22397. height: math.unit(12, "miles")
  22398. },
  22399. ]
  22400. ))
  22401. characterMakers.push(() => makeCharacter(
  22402. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22403. {
  22404. front: {
  22405. height: math.unit(7 + 2 / 12, "feet"),
  22406. weight: math.unit(300, "lb"),
  22407. name: "Front",
  22408. image: {
  22409. source: "./media/characters/reban/front.svg",
  22410. extra: 1287/1212,
  22411. bottom: 148/1435
  22412. }
  22413. },
  22414. head: {
  22415. height: math.unit(1.95, "feet"),
  22416. name: "Head",
  22417. image: {
  22418. source: "./media/characters/reban/head.svg"
  22419. }
  22420. },
  22421. maw: {
  22422. height: math.unit(0.95, "feet"),
  22423. name: "Maw",
  22424. image: {
  22425. source: "./media/characters/reban/maw.svg"
  22426. }
  22427. },
  22428. foot: {
  22429. height: math.unit(1.65, "feet"),
  22430. name: "Foot",
  22431. image: {
  22432. source: "./media/characters/reban/foot.svg"
  22433. }
  22434. },
  22435. dick: {
  22436. height: math.unit(7 / 5, "feet"),
  22437. name: "Dick",
  22438. image: {
  22439. source: "./media/characters/reban/dick.svg"
  22440. }
  22441. },
  22442. },
  22443. [
  22444. {
  22445. name: "Natural Height",
  22446. height: math.unit(7 + 2 / 12, "feet")
  22447. },
  22448. {
  22449. name: "Macro",
  22450. height: math.unit(500, "feet"),
  22451. default: true
  22452. },
  22453. {
  22454. name: "Canon Height",
  22455. height: math.unit(50, "AU")
  22456. },
  22457. ]
  22458. ))
  22459. characterMakers.push(() => makeCharacter(
  22460. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22461. {
  22462. front: {
  22463. height: math.unit(6, "feet"),
  22464. weight: math.unit(150, "lb"),
  22465. name: "Front",
  22466. image: {
  22467. source: "./media/characters/terrance-keayes/front.svg",
  22468. extra: 1.005,
  22469. bottom: 151 / 1615
  22470. }
  22471. },
  22472. side: {
  22473. height: math.unit(6, "feet"),
  22474. weight: math.unit(150, "lb"),
  22475. name: "Side",
  22476. image: {
  22477. source: "./media/characters/terrance-keayes/side.svg",
  22478. extra: 1.005,
  22479. bottom: 129.4 / 1544
  22480. }
  22481. },
  22482. back: {
  22483. height: math.unit(6, "feet"),
  22484. weight: math.unit(150, "lb"),
  22485. name: "Back",
  22486. image: {
  22487. source: "./media/characters/terrance-keayes/back.svg",
  22488. extra: 1.005,
  22489. bottom: 58.4 / 1557.3
  22490. }
  22491. },
  22492. dick: {
  22493. height: math.unit(6 * 0.208, "feet"),
  22494. name: "Dick",
  22495. image: {
  22496. source: "./media/characters/terrance-keayes/dick.svg"
  22497. }
  22498. },
  22499. },
  22500. [
  22501. {
  22502. name: "Canon Height",
  22503. height: math.unit(35, "miles"),
  22504. default: true
  22505. },
  22506. ]
  22507. ))
  22508. characterMakers.push(() => makeCharacter(
  22509. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22510. {
  22511. front: {
  22512. height: math.unit(6, "feet"),
  22513. weight: math.unit(150, "lb"),
  22514. name: "Front",
  22515. image: {
  22516. source: "./media/characters/ofelia/front.svg",
  22517. extra: 1130/1117,
  22518. bottom: 91/1221
  22519. }
  22520. },
  22521. back: {
  22522. height: math.unit(6, "feet"),
  22523. weight: math.unit(150, "lb"),
  22524. name: "Back",
  22525. image: {
  22526. source: "./media/characters/ofelia/back.svg",
  22527. extra: 1172/1159,
  22528. bottom: 28/1200
  22529. }
  22530. },
  22531. maw: {
  22532. height: math.unit(1, "feet"),
  22533. name: "Maw",
  22534. image: {
  22535. source: "./media/characters/ofelia/maw.svg"
  22536. }
  22537. },
  22538. foot: {
  22539. height: math.unit(1.949, "feet"),
  22540. name: "Foot",
  22541. image: {
  22542. source: "./media/characters/ofelia/foot.svg"
  22543. }
  22544. },
  22545. },
  22546. [
  22547. {
  22548. name: "Canon Height",
  22549. height: math.unit(2000, "miles"),
  22550. default: true
  22551. },
  22552. ]
  22553. ))
  22554. characterMakers.push(() => makeCharacter(
  22555. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22556. {
  22557. front: {
  22558. height: math.unit(6, "feet"),
  22559. weight: math.unit(150, "lb"),
  22560. name: "Front",
  22561. image: {
  22562. source: "./media/characters/samuel/front.svg",
  22563. extra: 265 / 258,
  22564. bottom: 2 / 266.1566
  22565. }
  22566. },
  22567. },
  22568. [
  22569. {
  22570. name: "Macro",
  22571. height: math.unit(100, "feet"),
  22572. default: true
  22573. },
  22574. {
  22575. name: "Full Size",
  22576. height: math.unit(1000, "miles")
  22577. },
  22578. ]
  22579. ))
  22580. characterMakers.push(() => makeCharacter(
  22581. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22582. {
  22583. front: {
  22584. height: math.unit(6, "feet"),
  22585. weight: math.unit(300, "lb"),
  22586. name: "Front",
  22587. image: {
  22588. source: "./media/characters/beishir-kiel/front.svg",
  22589. extra: 569 / 547,
  22590. bottom: 41.9 / 609
  22591. }
  22592. },
  22593. maw: {
  22594. height: math.unit(6 * 0.202, "feet"),
  22595. name: "Maw",
  22596. image: {
  22597. source: "./media/characters/beishir-kiel/maw.svg"
  22598. }
  22599. },
  22600. },
  22601. [
  22602. {
  22603. name: "Macro",
  22604. height: math.unit(300, "feet"),
  22605. default: true
  22606. },
  22607. ]
  22608. ))
  22609. characterMakers.push(() => makeCharacter(
  22610. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22611. {
  22612. front: {
  22613. height: math.unit(5 + 7/12, "feet"),
  22614. weight: math.unit(120, "lb"),
  22615. name: "Front",
  22616. image: {
  22617. source: "./media/characters/logan-grey/front.svg",
  22618. extra: 1836/1738,
  22619. bottom: 108/1944
  22620. }
  22621. },
  22622. back: {
  22623. height: math.unit(5 + 7/12, "feet"),
  22624. weight: math.unit(120, "lb"),
  22625. name: "Back",
  22626. image: {
  22627. source: "./media/characters/logan-grey/back.svg",
  22628. extra: 1880/1794,
  22629. bottom: 24/1904
  22630. }
  22631. },
  22632. frontSfw: {
  22633. height: math.unit(5 + 7/12, "feet"),
  22634. weight: math.unit(120, "lb"),
  22635. name: "Front (SFW)",
  22636. image: {
  22637. source: "./media/characters/logan-grey/front-sfw.svg",
  22638. extra: 1836/1738,
  22639. bottom: 108/1944
  22640. }
  22641. },
  22642. backSfw: {
  22643. height: math.unit(5 + 7/12, "feet"),
  22644. weight: math.unit(120, "lb"),
  22645. name: "Back (SFW)",
  22646. image: {
  22647. source: "./media/characters/logan-grey/back-sfw.svg",
  22648. extra: 1880/1794,
  22649. bottom: 24/1904
  22650. }
  22651. },
  22652. hands: {
  22653. height: math.unit(0.84, "feet"),
  22654. name: "Hands",
  22655. image: {
  22656. source: "./media/characters/logan-grey/hands.svg"
  22657. }
  22658. },
  22659. paws: {
  22660. height: math.unit(0.72, "feet"),
  22661. name: "Paws",
  22662. image: {
  22663. source: "./media/characters/logan-grey/paws.svg"
  22664. }
  22665. },
  22666. cock: {
  22667. height: math.unit(1.45, "feet"),
  22668. name: "Cock",
  22669. image: {
  22670. source: "./media/characters/logan-grey/cock.svg"
  22671. }
  22672. },
  22673. cockAlt: {
  22674. height: math.unit(1.437, "feet"),
  22675. name: "Cock (alt)",
  22676. image: {
  22677. source: "./media/characters/logan-grey/cock-alt.svg"
  22678. }
  22679. },
  22680. },
  22681. [
  22682. {
  22683. name: "Normal",
  22684. height: math.unit(5 + 8 / 12, "feet")
  22685. },
  22686. {
  22687. name: "The 500 Foot Femboy",
  22688. height: math.unit(500, "feet"),
  22689. default: true
  22690. },
  22691. {
  22692. name: "Megmacro",
  22693. height: math.unit(20, "miles")
  22694. },
  22695. ]
  22696. ))
  22697. characterMakers.push(() => makeCharacter(
  22698. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22699. {
  22700. front: {
  22701. height: math.unit(8 + 2 / 12, "feet"),
  22702. weight: math.unit(275, "lb"),
  22703. name: "Front",
  22704. image: {
  22705. source: "./media/characters/draganta/front.svg",
  22706. extra: 1177 / 1135,
  22707. bottom: 33.46 / 1212.1
  22708. }
  22709. },
  22710. },
  22711. [
  22712. {
  22713. name: "Normal",
  22714. height: math.unit(8 + 6 / 12, "feet"),
  22715. default: true
  22716. },
  22717. {
  22718. name: "Macro",
  22719. height: math.unit(150, "feet")
  22720. },
  22721. {
  22722. name: "Megamacro",
  22723. height: math.unit(1000, "miles")
  22724. },
  22725. ]
  22726. ))
  22727. characterMakers.push(() => makeCharacter(
  22728. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22729. {
  22730. front: {
  22731. height: math.unit(1.72, "m"),
  22732. weight: math.unit(80, "lb"),
  22733. name: "Front",
  22734. image: {
  22735. source: "./media/characters/voski/front.svg",
  22736. extra: 2076.22 / 2022.4,
  22737. bottom: 102.7 / 2177.3866
  22738. }
  22739. },
  22740. frontNsfw: {
  22741. height: math.unit(1.72, "m"),
  22742. weight: math.unit(80, "lb"),
  22743. name: "Front (NSFW)",
  22744. image: {
  22745. source: "./media/characters/voski/front-nsfw.svg",
  22746. extra: 2076.22 / 2022.4,
  22747. bottom: 102.7 / 2177.3866
  22748. }
  22749. },
  22750. back: {
  22751. height: math.unit(1.72, "m"),
  22752. weight: math.unit(80, "lb"),
  22753. name: "Back",
  22754. image: {
  22755. source: "./media/characters/voski/back.svg",
  22756. extra: 2104 / 2051,
  22757. bottom: 10.45 / 2113.63
  22758. }
  22759. },
  22760. },
  22761. [
  22762. {
  22763. name: "Normal",
  22764. height: math.unit(1.72, "m")
  22765. },
  22766. {
  22767. name: "Macro",
  22768. height: math.unit(55, "m"),
  22769. default: true
  22770. },
  22771. {
  22772. name: "Macro+",
  22773. height: math.unit(300, "m")
  22774. },
  22775. {
  22776. name: "Macro++",
  22777. height: math.unit(700, "m")
  22778. },
  22779. {
  22780. name: "Macro+++",
  22781. height: math.unit(4500, "m")
  22782. },
  22783. {
  22784. name: "Macro++++",
  22785. height: math.unit(45, "km")
  22786. },
  22787. {
  22788. name: "Macro+++++",
  22789. height: math.unit(1220, "km")
  22790. },
  22791. ]
  22792. ))
  22793. characterMakers.push(() => makeCharacter(
  22794. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22795. {
  22796. front: {
  22797. height: math.unit(2.3, "m"),
  22798. weight: math.unit(304, "kg"),
  22799. name: "Front",
  22800. image: {
  22801. source: "./media/characters/icowom-lee/front.svg",
  22802. extra: 985 / 955,
  22803. bottom: 25.4 / 1012
  22804. }
  22805. },
  22806. fronttentacles: {
  22807. height: math.unit(2.3, "m"),
  22808. weight: math.unit(304, "kg"),
  22809. name: "Front-tentacles",
  22810. image: {
  22811. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22812. extra: 985 / 955,
  22813. bottom: 25.4 / 1012
  22814. }
  22815. },
  22816. back: {
  22817. height: math.unit(2.3, "m"),
  22818. weight: math.unit(304, "kg"),
  22819. name: "Back",
  22820. image: {
  22821. source: "./media/characters/icowom-lee/back.svg",
  22822. extra: 975 / 954,
  22823. bottom: 9.5 / 985
  22824. }
  22825. },
  22826. backtentacles: {
  22827. height: math.unit(2.3, "m"),
  22828. weight: math.unit(304, "kg"),
  22829. name: "Back-tentacles",
  22830. image: {
  22831. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22832. extra: 975 / 954,
  22833. bottom: 9.5 / 985
  22834. }
  22835. },
  22836. frontDressed: {
  22837. height: math.unit(2.3, "m"),
  22838. weight: math.unit(304, "kg"),
  22839. name: "Front (Dressed)",
  22840. image: {
  22841. source: "./media/characters/icowom-lee/front-dressed.svg",
  22842. extra: 3076 / 2933,
  22843. bottom: 51.4 / 3125.1889
  22844. }
  22845. },
  22846. rump: {
  22847. height: math.unit(0.776, "meters"),
  22848. name: "Rump",
  22849. image: {
  22850. source: "./media/characters/icowom-lee/rump.svg"
  22851. }
  22852. },
  22853. genitals: {
  22854. height: math.unit(0.78, "meters"),
  22855. name: "Genitals",
  22856. image: {
  22857. source: "./media/characters/icowom-lee/genitals.svg"
  22858. }
  22859. },
  22860. },
  22861. [
  22862. {
  22863. name: "Normal",
  22864. height: math.unit(2.3, "meters"),
  22865. default: true
  22866. },
  22867. {
  22868. name: "Macro",
  22869. height: math.unit(94, "meters"),
  22870. default: true
  22871. },
  22872. ]
  22873. ))
  22874. characterMakers.push(() => makeCharacter(
  22875. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22876. {
  22877. front: {
  22878. height: math.unit(22, "meters"),
  22879. weight: math.unit(21000, "kg"),
  22880. name: "Front",
  22881. image: {
  22882. source: "./media/characters/shock-diamond/front.svg",
  22883. extra: 2204 / 2053,
  22884. bottom: 65 / 2239.47
  22885. }
  22886. },
  22887. frontNude: {
  22888. height: math.unit(22, "meters"),
  22889. weight: math.unit(21000, "kg"),
  22890. name: "Front (Nude)",
  22891. image: {
  22892. source: "./media/characters/shock-diamond/front-nude.svg",
  22893. extra: 2514 / 2285,
  22894. bottom: 13 / 2527.56
  22895. }
  22896. },
  22897. },
  22898. [
  22899. {
  22900. name: "Normal",
  22901. height: math.unit(3, "meters")
  22902. },
  22903. {
  22904. name: "Macro",
  22905. height: math.unit(22, "meters"),
  22906. default: true
  22907. },
  22908. ]
  22909. ))
  22910. characterMakers.push(() => makeCharacter(
  22911. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22912. {
  22913. front: {
  22914. height: math.unit(5 + 4 / 12, "feet"),
  22915. weight: math.unit(120, "lb"),
  22916. name: "Front",
  22917. image: {
  22918. source: "./media/characters/rory/front.svg",
  22919. extra: 1318/1241,
  22920. bottom: 42/1360
  22921. }
  22922. },
  22923. back: {
  22924. height: math.unit(5 + 4 / 12, "feet"),
  22925. weight: math.unit(120, "lb"),
  22926. name: "Back",
  22927. image: {
  22928. source: "./media/characters/rory/back.svg",
  22929. extra: 1318/1241,
  22930. bottom: 42/1360
  22931. }
  22932. },
  22933. butt: {
  22934. height: math.unit(1.74, "feet"),
  22935. name: "Butt",
  22936. image: {
  22937. source: "./media/characters/rory/butt.svg"
  22938. }
  22939. },
  22940. dick: {
  22941. height: math.unit(1.02, "feet"),
  22942. name: "Dick",
  22943. image: {
  22944. source: "./media/characters/rory/dick.svg"
  22945. }
  22946. },
  22947. paws: {
  22948. height: math.unit(1, "feet"),
  22949. name: "Paws",
  22950. image: {
  22951. source: "./media/characters/rory/paws.svg"
  22952. }
  22953. },
  22954. frontAlt: {
  22955. height: math.unit(5 + 4 / 12, "feet"),
  22956. weight: math.unit(120, "lb"),
  22957. name: "Front (Alt)",
  22958. image: {
  22959. source: "./media/characters/rory/front-alt.svg",
  22960. extra: 589 / 556,
  22961. bottom: 45.7 / 635.76
  22962. }
  22963. },
  22964. frontAltNude: {
  22965. height: math.unit(5 + 4 / 12, "feet"),
  22966. weight: math.unit(120, "lb"),
  22967. name: "Front (Alt, Nude)",
  22968. image: {
  22969. source: "./media/characters/rory/front-alt-nude.svg",
  22970. extra: 589 / 556,
  22971. bottom: 45.7 / 635.76
  22972. }
  22973. },
  22974. side: {
  22975. height: math.unit(5 + 4 / 12, "feet"),
  22976. weight: math.unit(120, "lb"),
  22977. name: "Side",
  22978. image: {
  22979. source: "./media/characters/rory/side.svg",
  22980. extra: 597 / 564,
  22981. bottom: 55 / 653
  22982. }
  22983. },
  22984. backAlt: {
  22985. height: math.unit(5 + 4 / 12, "feet"),
  22986. weight: math.unit(120, "lb"),
  22987. name: "Back (Alt)",
  22988. image: {
  22989. source: "./media/characters/rory/back-alt.svg",
  22990. extra: 620 / 585,
  22991. bottom: 8.86 / 630.43
  22992. }
  22993. },
  22994. dickAlt: {
  22995. height: math.unit(0.86, "feet"),
  22996. name: "Dick (Alt)",
  22997. image: {
  22998. source: "./media/characters/rory/dick-alt.svg"
  22999. }
  23000. },
  23001. },
  23002. [
  23003. {
  23004. name: "Normal",
  23005. height: math.unit(5 + 4 / 12, "feet"),
  23006. default: true
  23007. },
  23008. {
  23009. name: "Macro",
  23010. height: math.unit(100, "feet")
  23011. },
  23012. {
  23013. name: "Macro+",
  23014. height: math.unit(140, "feet")
  23015. },
  23016. {
  23017. name: "Macro++",
  23018. height: math.unit(300, "feet")
  23019. },
  23020. ]
  23021. ))
  23022. characterMakers.push(() => makeCharacter(
  23023. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23024. {
  23025. front: {
  23026. height: math.unit(5 + 9 / 12, "feet"),
  23027. weight: math.unit(190, "lb"),
  23028. name: "Front",
  23029. image: {
  23030. source: "./media/characters/sprisk/front.svg",
  23031. extra: 1225 / 1180,
  23032. bottom: 42.7 / 1266.4
  23033. }
  23034. },
  23035. frontNsfw: {
  23036. height: math.unit(5 + 9 / 12, "feet"),
  23037. weight: math.unit(190, "lb"),
  23038. name: "Front (NSFW)",
  23039. image: {
  23040. source: "./media/characters/sprisk/front-nsfw.svg",
  23041. extra: 1225 / 1180,
  23042. bottom: 42.7 / 1266.4
  23043. }
  23044. },
  23045. back: {
  23046. height: math.unit(5 + 9 / 12, "feet"),
  23047. weight: math.unit(190, "lb"),
  23048. name: "Back",
  23049. image: {
  23050. source: "./media/characters/sprisk/back.svg",
  23051. extra: 1247 / 1200,
  23052. bottom: 5.6 / 1253.04
  23053. }
  23054. },
  23055. },
  23056. [
  23057. {
  23058. name: "Tiny",
  23059. height: math.unit(2, "inches")
  23060. },
  23061. {
  23062. name: "Normal",
  23063. height: math.unit(5 + 9 / 12, "feet"),
  23064. default: true
  23065. },
  23066. {
  23067. name: "Mini Macro",
  23068. height: math.unit(18, "feet")
  23069. },
  23070. {
  23071. name: "Macro",
  23072. height: math.unit(100, "feet")
  23073. },
  23074. {
  23075. name: "MACRO",
  23076. height: math.unit(50, "miles")
  23077. },
  23078. {
  23079. name: "M A C R O",
  23080. height: math.unit(300, "miles")
  23081. },
  23082. ]
  23083. ))
  23084. characterMakers.push(() => makeCharacter(
  23085. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23086. {
  23087. side: {
  23088. height: math.unit(15.6, "meters"),
  23089. weight: math.unit(700000, "kg"),
  23090. name: "Side",
  23091. image: {
  23092. source: "./media/characters/bunsen/side.svg",
  23093. extra: 1644 / 358
  23094. }
  23095. },
  23096. foot: {
  23097. height: math.unit(1.611 * 1644 / 358, "meter"),
  23098. name: "Foot",
  23099. image: {
  23100. source: "./media/characters/bunsen/foot.svg"
  23101. }
  23102. },
  23103. },
  23104. [
  23105. {
  23106. name: "Small",
  23107. height: math.unit(10, "feet")
  23108. },
  23109. {
  23110. name: "Normal",
  23111. height: math.unit(15.6, "meters"),
  23112. default: true
  23113. },
  23114. ]
  23115. ))
  23116. characterMakers.push(() => makeCharacter(
  23117. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23118. {
  23119. front: {
  23120. height: math.unit(4 + 11 / 12, "feet"),
  23121. weight: math.unit(140, "lb"),
  23122. name: "Front",
  23123. image: {
  23124. source: "./media/characters/sesh/front.svg",
  23125. extra: 3420 / 3231,
  23126. bottom: 72 / 3949.5
  23127. }
  23128. },
  23129. },
  23130. [
  23131. {
  23132. name: "Normal",
  23133. height: math.unit(4 + 11 / 12, "feet")
  23134. },
  23135. {
  23136. name: "Grown",
  23137. height: math.unit(15, "feet"),
  23138. default: true
  23139. },
  23140. {
  23141. name: "Macro",
  23142. height: math.unit(1500, "feet")
  23143. },
  23144. {
  23145. name: "Megamacro",
  23146. height: math.unit(30, "miles")
  23147. },
  23148. {
  23149. name: "Continental",
  23150. height: math.unit(3000, "miles")
  23151. },
  23152. {
  23153. name: "Gravity Mass",
  23154. height: math.unit(300000, "miles")
  23155. },
  23156. {
  23157. name: "Planet Buster",
  23158. height: math.unit(30000000, "miles")
  23159. },
  23160. {
  23161. name: "Big",
  23162. height: math.unit(3000000000, "miles")
  23163. },
  23164. ]
  23165. ))
  23166. characterMakers.push(() => makeCharacter(
  23167. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23168. {
  23169. front: {
  23170. height: math.unit(9, "feet"),
  23171. weight: math.unit(350, "lb"),
  23172. name: "Front",
  23173. image: {
  23174. source: "./media/characters/pepper/front.svg",
  23175. extra: 1448 / 1312,
  23176. bottom: 9.4 / 1457.88
  23177. }
  23178. },
  23179. back: {
  23180. height: math.unit(9, "feet"),
  23181. weight: math.unit(350, "lb"),
  23182. name: "Back",
  23183. image: {
  23184. source: "./media/characters/pepper/back.svg",
  23185. extra: 1423 / 1300,
  23186. bottom: 4.6 / 1429
  23187. }
  23188. },
  23189. maw: {
  23190. height: math.unit(0.932, "feet"),
  23191. name: "Maw",
  23192. image: {
  23193. source: "./media/characters/pepper/maw.svg"
  23194. }
  23195. },
  23196. },
  23197. [
  23198. {
  23199. name: "Normal",
  23200. height: math.unit(9, "feet"),
  23201. default: true
  23202. },
  23203. ]
  23204. ))
  23205. characterMakers.push(() => makeCharacter(
  23206. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23207. {
  23208. front: {
  23209. height: math.unit(6, "feet"),
  23210. weight: math.unit(150, "lb"),
  23211. name: "Front",
  23212. image: {
  23213. source: "./media/characters/maelstrom/front.svg",
  23214. extra: 2100 / 1883,
  23215. bottom: 94 / 2196.7
  23216. }
  23217. },
  23218. },
  23219. [
  23220. {
  23221. name: "Less Kaiju",
  23222. height: math.unit(200, "feet")
  23223. },
  23224. {
  23225. name: "Kaiju",
  23226. height: math.unit(400, "feet"),
  23227. default: true
  23228. },
  23229. {
  23230. name: "Kaiju-er",
  23231. height: math.unit(600, "feet")
  23232. },
  23233. ]
  23234. ))
  23235. characterMakers.push(() => makeCharacter(
  23236. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23237. {
  23238. front: {
  23239. height: math.unit(6 + 5 / 12, "feet"),
  23240. weight: math.unit(180, "lb"),
  23241. name: "Front",
  23242. image: {
  23243. source: "./media/characters/lexir/front.svg",
  23244. extra: 180 / 172,
  23245. bottom: 12 / 192
  23246. }
  23247. },
  23248. back: {
  23249. height: math.unit(6 + 5 / 12, "feet"),
  23250. weight: math.unit(180, "lb"),
  23251. name: "Back",
  23252. image: {
  23253. source: "./media/characters/lexir/back.svg",
  23254. extra: 183.84 / 175.5,
  23255. bottom: 3.1 / 187
  23256. }
  23257. },
  23258. },
  23259. [
  23260. {
  23261. name: "Very Smal",
  23262. height: math.unit(1, "nm")
  23263. },
  23264. {
  23265. name: "Normal",
  23266. height: math.unit(6 + 5 / 12, "feet"),
  23267. default: true
  23268. },
  23269. {
  23270. name: "Macro",
  23271. height: math.unit(1, "mile")
  23272. },
  23273. {
  23274. name: "Megamacro",
  23275. height: math.unit(50, "miles")
  23276. },
  23277. ]
  23278. ))
  23279. characterMakers.push(() => makeCharacter(
  23280. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23281. {
  23282. front: {
  23283. height: math.unit(1.5, "meters"),
  23284. weight: math.unit(100, "lb"),
  23285. name: "Front",
  23286. image: {
  23287. source: "./media/characters/maksio/front.svg",
  23288. extra: 1549 / 1531,
  23289. bottom: 123.7 / 1674.5429
  23290. }
  23291. },
  23292. back: {
  23293. height: math.unit(1.5, "meters"),
  23294. weight: math.unit(100, "lb"),
  23295. name: "Back",
  23296. image: {
  23297. source: "./media/characters/maksio/back.svg",
  23298. extra: 1541 / 1509,
  23299. bottom: 97 / 1639
  23300. }
  23301. },
  23302. hand: {
  23303. height: math.unit(0.621, "feet"),
  23304. name: "Hand",
  23305. image: {
  23306. source: "./media/characters/maksio/hand.svg"
  23307. }
  23308. },
  23309. foot: {
  23310. height: math.unit(1.611, "feet"),
  23311. name: "Foot",
  23312. image: {
  23313. source: "./media/characters/maksio/foot.svg"
  23314. }
  23315. },
  23316. },
  23317. [
  23318. {
  23319. name: "Shrunken",
  23320. height: math.unit(10, "cm")
  23321. },
  23322. {
  23323. name: "Normal",
  23324. height: math.unit(150, "cm"),
  23325. default: true
  23326. },
  23327. ]
  23328. ))
  23329. characterMakers.push(() => makeCharacter(
  23330. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23331. {
  23332. front: {
  23333. height: math.unit(100, "feet"),
  23334. name: "Front",
  23335. image: {
  23336. source: "./media/characters/erza-bear/front.svg",
  23337. extra: 2449 / 2390,
  23338. bottom: 46 / 2494
  23339. }
  23340. },
  23341. back: {
  23342. height: math.unit(100, "feet"),
  23343. name: "Back",
  23344. image: {
  23345. source: "./media/characters/erza-bear/back.svg",
  23346. extra: 2489 / 2430,
  23347. bottom: 85.4 / 2480
  23348. }
  23349. },
  23350. tail: {
  23351. height: math.unit(42, "feet"),
  23352. name: "Tail",
  23353. image: {
  23354. source: "./media/characters/erza-bear/tail.svg"
  23355. }
  23356. },
  23357. tongue: {
  23358. height: math.unit(8, "feet"),
  23359. name: "Tongue",
  23360. image: {
  23361. source: "./media/characters/erza-bear/tongue.svg"
  23362. }
  23363. },
  23364. dick: {
  23365. height: math.unit(10.5, "feet"),
  23366. name: "Dick",
  23367. image: {
  23368. source: "./media/characters/erza-bear/dick.svg"
  23369. }
  23370. },
  23371. dickVertical: {
  23372. height: math.unit(16.9, "feet"),
  23373. name: "Dick (Vertical)",
  23374. image: {
  23375. source: "./media/characters/erza-bear/dick-vertical.svg"
  23376. }
  23377. },
  23378. },
  23379. [
  23380. {
  23381. name: "Macro",
  23382. height: math.unit(100, "feet"),
  23383. default: true
  23384. },
  23385. ]
  23386. ))
  23387. characterMakers.push(() => makeCharacter(
  23388. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23389. {
  23390. front: {
  23391. height: math.unit(172, "cm"),
  23392. weight: math.unit(73, "kg"),
  23393. name: "Front",
  23394. image: {
  23395. source: "./media/characters/violet-flor/front.svg",
  23396. extra: 1530 / 1442,
  23397. bottom: 61.9 / 1588.8
  23398. }
  23399. },
  23400. back: {
  23401. height: math.unit(180, "cm"),
  23402. weight: math.unit(73, "kg"),
  23403. name: "Back",
  23404. image: {
  23405. source: "./media/characters/violet-flor/back.svg",
  23406. extra: 1692 / 1630,
  23407. bottom: 20 / 1712
  23408. }
  23409. },
  23410. },
  23411. [
  23412. {
  23413. name: "Normal",
  23414. height: math.unit(172, "cm"),
  23415. default: true
  23416. },
  23417. ]
  23418. ))
  23419. characterMakers.push(() => makeCharacter(
  23420. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23421. {
  23422. front: {
  23423. height: math.unit(6, "feet"),
  23424. weight: math.unit(220, "lb"),
  23425. name: "Front",
  23426. image: {
  23427. source: "./media/characters/lynn-rhea/front.svg",
  23428. extra: 310 / 273
  23429. }
  23430. },
  23431. back: {
  23432. height: math.unit(6, "feet"),
  23433. weight: math.unit(220, "lb"),
  23434. name: "Back",
  23435. image: {
  23436. source: "./media/characters/lynn-rhea/back.svg",
  23437. extra: 310 / 273
  23438. }
  23439. },
  23440. dicks: {
  23441. height: math.unit(0.9, "feet"),
  23442. name: "Dicks",
  23443. image: {
  23444. source: "./media/characters/lynn-rhea/dicks.svg"
  23445. }
  23446. },
  23447. slit: {
  23448. height: math.unit(0.4, "feet"),
  23449. name: "Slit",
  23450. image: {
  23451. source: "./media/characters/lynn-rhea/slit.svg"
  23452. }
  23453. },
  23454. },
  23455. [
  23456. {
  23457. name: "Micro",
  23458. height: math.unit(1, "inch")
  23459. },
  23460. {
  23461. name: "Macro",
  23462. height: math.unit(60, "feet"),
  23463. default: true
  23464. },
  23465. {
  23466. name: "Megamacro",
  23467. height: math.unit(2, "miles")
  23468. },
  23469. {
  23470. name: "Gigamacro",
  23471. height: math.unit(3, "earths")
  23472. },
  23473. {
  23474. name: "Galactic",
  23475. height: math.unit(0.8, "galaxies")
  23476. },
  23477. ]
  23478. ))
  23479. characterMakers.push(() => makeCharacter(
  23480. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23481. {
  23482. front: {
  23483. height: math.unit(1600, "feet"),
  23484. weight: math.unit(85758785169, "kg"),
  23485. name: "Front",
  23486. image: {
  23487. source: "./media/characters/valathos/front.svg",
  23488. extra: 1451 / 1339
  23489. }
  23490. },
  23491. },
  23492. [
  23493. {
  23494. name: "Macro",
  23495. height: math.unit(1600, "feet"),
  23496. default: true
  23497. },
  23498. ]
  23499. ))
  23500. characterMakers.push(() => makeCharacter(
  23501. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23502. {
  23503. front: {
  23504. height: math.unit(7 + 5 / 12, "feet"),
  23505. weight: math.unit(300, "lb"),
  23506. name: "Front",
  23507. image: {
  23508. source: "./media/characters/azula/front.svg",
  23509. extra: 3208 / 2880,
  23510. bottom: 80.2 / 3277
  23511. }
  23512. },
  23513. back: {
  23514. height: math.unit(7 + 5 / 12, "feet"),
  23515. weight: math.unit(300, "lb"),
  23516. name: "Back",
  23517. image: {
  23518. source: "./media/characters/azula/back.svg",
  23519. extra: 3169 / 2822,
  23520. bottom: 150.6 / 3321
  23521. }
  23522. },
  23523. },
  23524. [
  23525. {
  23526. name: "Normal",
  23527. height: math.unit(7 + 5 / 12, "feet"),
  23528. default: true
  23529. },
  23530. {
  23531. name: "Big",
  23532. height: math.unit(20, "feet")
  23533. },
  23534. ]
  23535. ))
  23536. characterMakers.push(() => makeCharacter(
  23537. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23538. {
  23539. front: {
  23540. height: math.unit(5 + 1 / 12, "feet"),
  23541. weight: math.unit(110, "lb"),
  23542. name: "Front",
  23543. image: {
  23544. source: "./media/characters/rupert/front.svg",
  23545. extra: 1549 / 1495,
  23546. bottom: 54.2 / 1604.4
  23547. }
  23548. },
  23549. },
  23550. [
  23551. {
  23552. name: "Normal",
  23553. height: math.unit(5 + 1 / 12, "feet"),
  23554. default: true
  23555. },
  23556. ]
  23557. ))
  23558. characterMakers.push(() => makeCharacter(
  23559. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23560. {
  23561. front: {
  23562. height: math.unit(8 + 4 / 12, "feet"),
  23563. weight: math.unit(350, "lb"),
  23564. name: "Front",
  23565. image: {
  23566. source: "./media/characters/sheera-castellar/front.svg",
  23567. extra: 1957 / 1894,
  23568. bottom: 26.97 / 1975.017
  23569. }
  23570. },
  23571. side: {
  23572. height: math.unit(8 + 4 / 12, "feet"),
  23573. weight: math.unit(350, "lb"),
  23574. name: "Side",
  23575. image: {
  23576. source: "./media/characters/sheera-castellar/side.svg",
  23577. extra: 1957 / 1894
  23578. }
  23579. },
  23580. back: {
  23581. height: math.unit(8 + 4 / 12, "feet"),
  23582. weight: math.unit(350, "lb"),
  23583. name: "Back",
  23584. image: {
  23585. source: "./media/characters/sheera-castellar/back.svg",
  23586. extra: 1957 / 1894
  23587. }
  23588. },
  23589. angled: {
  23590. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23591. weight: math.unit(350, "lb"),
  23592. name: "Angled",
  23593. image: {
  23594. source: "./media/characters/sheera-castellar/angled.svg",
  23595. extra: 1807 / 1707,
  23596. bottom: 68 / 1875
  23597. }
  23598. },
  23599. genitals: {
  23600. height: math.unit(2.2, "feet"),
  23601. name: "Genitals",
  23602. image: {
  23603. source: "./media/characters/sheera-castellar/genitals.svg"
  23604. }
  23605. },
  23606. taur: {
  23607. height: math.unit(10 + 6/12, "feet"),
  23608. name: "Taur",
  23609. image: {
  23610. source: "./media/characters/sheera-castellar/taur.svg",
  23611. extra: 2017/1909,
  23612. bottom: 185/2202
  23613. }
  23614. },
  23615. },
  23616. [
  23617. {
  23618. name: "Normal",
  23619. height: math.unit(8 + 4 / 12, "feet")
  23620. },
  23621. {
  23622. name: "Macro",
  23623. height: math.unit(150, "feet"),
  23624. default: true
  23625. },
  23626. {
  23627. name: "Macro+",
  23628. height: math.unit(800, "feet")
  23629. },
  23630. ]
  23631. ))
  23632. characterMakers.push(() => makeCharacter(
  23633. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23634. {
  23635. front: {
  23636. height: math.unit(6, "feet"),
  23637. weight: math.unit(150, "lb"),
  23638. name: "Front",
  23639. image: {
  23640. source: "./media/characters/jaipur/front.svg",
  23641. extra: 3860 / 3731,
  23642. bottom: 287 / 4140
  23643. }
  23644. },
  23645. back: {
  23646. height: math.unit(6, "feet"),
  23647. weight: math.unit(150, "lb"),
  23648. name: "Back",
  23649. image: {
  23650. source: "./media/characters/jaipur/back.svg",
  23651. extra: 4060 / 3930,
  23652. bottom: 151 / 4200
  23653. }
  23654. },
  23655. },
  23656. [
  23657. {
  23658. name: "Normal",
  23659. height: math.unit(1.85, "meters"),
  23660. default: true
  23661. },
  23662. {
  23663. name: "Macro",
  23664. height: math.unit(150, "meters")
  23665. },
  23666. {
  23667. name: "Macro+",
  23668. height: math.unit(0.5, "miles")
  23669. },
  23670. {
  23671. name: "Macro++",
  23672. height: math.unit(2.5, "miles")
  23673. },
  23674. {
  23675. name: "Macro+++",
  23676. height: math.unit(12, "miles")
  23677. },
  23678. {
  23679. name: "Macro++++",
  23680. height: math.unit(120, "miles")
  23681. },
  23682. {
  23683. name: "Macro+++++",
  23684. height: math.unit(1200, "miles")
  23685. },
  23686. ]
  23687. ))
  23688. characterMakers.push(() => makeCharacter(
  23689. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23690. {
  23691. front: {
  23692. height: math.unit(6, "feet"),
  23693. weight: math.unit(150, "lb"),
  23694. name: "Front",
  23695. image: {
  23696. source: "./media/characters/sheila-wolf/front.svg",
  23697. extra: 1931 / 1808,
  23698. bottom: 29.5 / 1960
  23699. }
  23700. },
  23701. dick: {
  23702. height: math.unit(1.464, "feet"),
  23703. name: "Dick",
  23704. image: {
  23705. source: "./media/characters/sheila-wolf/dick.svg"
  23706. }
  23707. },
  23708. muzzle: {
  23709. height: math.unit(0.513, "feet"),
  23710. name: "Muzzle",
  23711. image: {
  23712. source: "./media/characters/sheila-wolf/muzzle.svg"
  23713. }
  23714. },
  23715. },
  23716. [
  23717. {
  23718. name: "Macro",
  23719. height: math.unit(70, "feet"),
  23720. default: true
  23721. },
  23722. ]
  23723. ))
  23724. characterMakers.push(() => makeCharacter(
  23725. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23726. {
  23727. front: {
  23728. height: math.unit(32, "meters"),
  23729. weight: math.unit(300000, "kg"),
  23730. name: "Front",
  23731. image: {
  23732. source: "./media/characters/almor/front.svg",
  23733. extra: 1408 / 1322,
  23734. bottom: 94.6 / 1506.5
  23735. }
  23736. },
  23737. },
  23738. [
  23739. {
  23740. name: "Macro",
  23741. height: math.unit(32, "meters"),
  23742. default: true
  23743. },
  23744. ]
  23745. ))
  23746. characterMakers.push(() => makeCharacter(
  23747. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23748. {
  23749. front: {
  23750. height: math.unit(7, "feet"),
  23751. weight: math.unit(200, "lb"),
  23752. name: "Front",
  23753. image: {
  23754. source: "./media/characters/silver/front.svg",
  23755. extra: 472.1 / 450.5,
  23756. bottom: 26.5 / 499.424
  23757. }
  23758. },
  23759. },
  23760. [
  23761. {
  23762. name: "Normal",
  23763. height: math.unit(7, "feet"),
  23764. default: true
  23765. },
  23766. {
  23767. name: "Macro",
  23768. height: math.unit(800, "feet")
  23769. },
  23770. {
  23771. name: "Megamacro",
  23772. height: math.unit(250, "miles")
  23773. },
  23774. ]
  23775. ))
  23776. characterMakers.push(() => makeCharacter(
  23777. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23778. {
  23779. front: {
  23780. height: math.unit(6, "feet"),
  23781. weight: math.unit(150, "lb"),
  23782. name: "Front",
  23783. image: {
  23784. source: "./media/characters/pliskin/front.svg",
  23785. extra: 1469 / 1359,
  23786. bottom: 70 / 1540
  23787. }
  23788. },
  23789. },
  23790. [
  23791. {
  23792. name: "Micro",
  23793. height: math.unit(3, "inches")
  23794. },
  23795. {
  23796. name: "Normal",
  23797. height: math.unit(5 + 11 / 12, "feet"),
  23798. default: true
  23799. },
  23800. {
  23801. name: "Macro",
  23802. height: math.unit(120, "feet")
  23803. },
  23804. ]
  23805. ))
  23806. characterMakers.push(() => makeCharacter(
  23807. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23808. {
  23809. front: {
  23810. height: math.unit(6, "feet"),
  23811. weight: math.unit(150, "lb"),
  23812. name: "Front",
  23813. image: {
  23814. source: "./media/characters/sammy/front.svg",
  23815. extra: 1193 / 1089,
  23816. bottom: 30.5 / 1226
  23817. }
  23818. },
  23819. },
  23820. [
  23821. {
  23822. name: "Macro",
  23823. height: math.unit(1700, "feet"),
  23824. default: true
  23825. },
  23826. {
  23827. name: "Examacro",
  23828. height: math.unit(2.5e9, "lightyears")
  23829. },
  23830. ]
  23831. ))
  23832. characterMakers.push(() => makeCharacter(
  23833. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23834. {
  23835. front: {
  23836. height: math.unit(21, "meters"),
  23837. weight: math.unit(12, "tonnes"),
  23838. name: "Front",
  23839. image: {
  23840. source: "./media/characters/kuru/front.svg",
  23841. extra: 4301 / 3785,
  23842. bottom: 371.3 / 4691
  23843. }
  23844. },
  23845. },
  23846. [
  23847. {
  23848. name: "Macro",
  23849. height: math.unit(21, "meters"),
  23850. default: true
  23851. },
  23852. ]
  23853. ))
  23854. characterMakers.push(() => makeCharacter(
  23855. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23856. {
  23857. front: {
  23858. height: math.unit(23, "meters"),
  23859. weight: math.unit(12.2, "tonnes"),
  23860. name: "Front",
  23861. image: {
  23862. source: "./media/characters/rakka/front.svg",
  23863. extra: 4670 / 4169,
  23864. bottom: 301 / 4968.7
  23865. }
  23866. },
  23867. },
  23868. [
  23869. {
  23870. name: "Macro",
  23871. height: math.unit(23, "meters"),
  23872. default: true
  23873. },
  23874. ]
  23875. ))
  23876. characterMakers.push(() => makeCharacter(
  23877. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23878. {
  23879. front: {
  23880. height: math.unit(6, "feet"),
  23881. weight: math.unit(150, "lb"),
  23882. name: "Front",
  23883. image: {
  23884. source: "./media/characters/rhys-feline/front.svg",
  23885. extra: 2488 / 2308,
  23886. bottom: 35.67 / 2519.19
  23887. }
  23888. },
  23889. },
  23890. [
  23891. {
  23892. name: "Really Small",
  23893. height: math.unit(1, "nm")
  23894. },
  23895. {
  23896. name: "Micro",
  23897. height: math.unit(4, "inches")
  23898. },
  23899. {
  23900. name: "Normal",
  23901. height: math.unit(4 + 10 / 12, "feet"),
  23902. default: true
  23903. },
  23904. {
  23905. name: "Macro",
  23906. height: math.unit(100, "feet")
  23907. },
  23908. {
  23909. name: "Megamacto",
  23910. height: math.unit(50, "miles")
  23911. },
  23912. ]
  23913. ))
  23914. characterMakers.push(() => makeCharacter(
  23915. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23916. {
  23917. side: {
  23918. height: math.unit(30, "feet"),
  23919. weight: math.unit(35000, "kg"),
  23920. name: "Side",
  23921. image: {
  23922. source: "./media/characters/alydar/side.svg",
  23923. extra: 234 / 222,
  23924. bottom: 6.5 / 241
  23925. }
  23926. },
  23927. front: {
  23928. height: math.unit(30, "feet"),
  23929. weight: math.unit(35000, "kg"),
  23930. name: "Front",
  23931. image: {
  23932. source: "./media/characters/alydar/front.svg",
  23933. extra: 223.37 / 210.2,
  23934. bottom: 22.3 / 246.76
  23935. }
  23936. },
  23937. top: {
  23938. height: math.unit(64.54, "feet"),
  23939. weight: math.unit(35000, "kg"),
  23940. name: "Top",
  23941. image: {
  23942. source: "./media/characters/alydar/top.svg"
  23943. }
  23944. },
  23945. anthro: {
  23946. height: math.unit(30, "feet"),
  23947. weight: math.unit(9000, "kg"),
  23948. name: "Anthro",
  23949. image: {
  23950. source: "./media/characters/alydar/anthro.svg",
  23951. extra: 432 / 421,
  23952. bottom: 7.18 / 440
  23953. }
  23954. },
  23955. maw: {
  23956. height: math.unit(11.693, "feet"),
  23957. name: "Maw",
  23958. image: {
  23959. source: "./media/characters/alydar/maw.svg"
  23960. }
  23961. },
  23962. head: {
  23963. height: math.unit(11.693, "feet"),
  23964. name: "Head",
  23965. image: {
  23966. source: "./media/characters/alydar/head.svg"
  23967. }
  23968. },
  23969. headAlt: {
  23970. height: math.unit(12.861, "feet"),
  23971. name: "Head (Alt)",
  23972. image: {
  23973. source: "./media/characters/alydar/head-alt.svg"
  23974. }
  23975. },
  23976. wing: {
  23977. height: math.unit(20.712, "feet"),
  23978. name: "Wing",
  23979. image: {
  23980. source: "./media/characters/alydar/wing.svg"
  23981. }
  23982. },
  23983. wingFeather: {
  23984. height: math.unit(9.662, "feet"),
  23985. name: "Wing Feather",
  23986. image: {
  23987. source: "./media/characters/alydar/wing-feather.svg"
  23988. }
  23989. },
  23990. countourFeather: {
  23991. height: math.unit(4.154, "feet"),
  23992. name: "Contour Feather",
  23993. image: {
  23994. source: "./media/characters/alydar/contour-feather.svg"
  23995. }
  23996. },
  23997. },
  23998. [
  23999. {
  24000. name: "Diplomatic",
  24001. height: math.unit(13, "feet"),
  24002. default: true
  24003. },
  24004. {
  24005. name: "Small",
  24006. height: math.unit(30, "feet")
  24007. },
  24008. {
  24009. name: "Normal",
  24010. height: math.unit(95, "feet"),
  24011. default: true
  24012. },
  24013. {
  24014. name: "Large",
  24015. height: math.unit(285, "feet")
  24016. },
  24017. {
  24018. name: "Incomprehensible",
  24019. height: math.unit(450, "megameters")
  24020. },
  24021. ]
  24022. ))
  24023. characterMakers.push(() => makeCharacter(
  24024. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24025. {
  24026. side: {
  24027. height: math.unit(11, "feet"),
  24028. weight: math.unit(1750, "kg"),
  24029. name: "Side",
  24030. image: {
  24031. source: "./media/characters/selicia/side.svg",
  24032. extra: 440 / 396,
  24033. bottom: 24.8 / 465.979
  24034. }
  24035. },
  24036. maw: {
  24037. height: math.unit(4.665, "feet"),
  24038. name: "Maw",
  24039. image: {
  24040. source: "./media/characters/selicia/maw.svg"
  24041. }
  24042. },
  24043. },
  24044. [
  24045. {
  24046. name: "Normal",
  24047. height: math.unit(11, "feet"),
  24048. default: true
  24049. },
  24050. ]
  24051. ))
  24052. characterMakers.push(() => makeCharacter(
  24053. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24054. {
  24055. side: {
  24056. height: math.unit(2 + 6 / 12, "feet"),
  24057. weight: math.unit(30, "lb"),
  24058. name: "Side",
  24059. image: {
  24060. source: "./media/characters/layla/side.svg",
  24061. extra: 244 / 188,
  24062. bottom: 18.2 / 262.1
  24063. }
  24064. },
  24065. back: {
  24066. height: math.unit(2 + 6 / 12, "feet"),
  24067. weight: math.unit(30, "lb"),
  24068. name: "Back",
  24069. image: {
  24070. source: "./media/characters/layla/back.svg",
  24071. extra: 308 / 241.5,
  24072. bottom: 8.9 / 316.8
  24073. }
  24074. },
  24075. cumming: {
  24076. height: math.unit(2 + 6 / 12, "feet"),
  24077. weight: math.unit(30, "lb"),
  24078. name: "Cumming",
  24079. image: {
  24080. source: "./media/characters/layla/cumming.svg",
  24081. extra: 342 / 279,
  24082. bottom: 595 / 938
  24083. }
  24084. },
  24085. dickFlaccid: {
  24086. height: math.unit(2.595, "feet"),
  24087. name: "Flaccid Genitals",
  24088. image: {
  24089. source: "./media/characters/layla/dick-flaccid.svg"
  24090. }
  24091. },
  24092. dickErect: {
  24093. height: math.unit(2.359, "feet"),
  24094. name: "Erect Genitals",
  24095. image: {
  24096. source: "./media/characters/layla/dick-erect.svg"
  24097. }
  24098. },
  24099. dragon: {
  24100. height: math.unit(40, "feet"),
  24101. name: "Dragon",
  24102. image: {
  24103. source: "./media/characters/layla/dragon.svg",
  24104. extra: 610/535,
  24105. bottom: 367/977
  24106. }
  24107. },
  24108. taur: {
  24109. height: math.unit(30, "feet"),
  24110. name: "Taur",
  24111. image: {
  24112. source: "./media/characters/layla/taur.svg",
  24113. extra: 1268/1199,
  24114. bottom: 112/1380
  24115. }
  24116. },
  24117. },
  24118. [
  24119. {
  24120. name: "Micro",
  24121. height: math.unit(1, "inch")
  24122. },
  24123. {
  24124. name: "Small",
  24125. height: math.unit(1, "foot")
  24126. },
  24127. {
  24128. name: "Normal",
  24129. height: math.unit(2 + 6 / 12, "feet"),
  24130. default: true
  24131. },
  24132. {
  24133. name: "Macro",
  24134. height: math.unit(200, "feet")
  24135. },
  24136. {
  24137. name: "Megamacro",
  24138. height: math.unit(1000, "miles")
  24139. },
  24140. {
  24141. name: "Planetary",
  24142. height: math.unit(8000, "miles")
  24143. },
  24144. {
  24145. name: "True Layla",
  24146. height: math.unit(200000 * 7, "multiverses")
  24147. },
  24148. ]
  24149. ))
  24150. characterMakers.push(() => makeCharacter(
  24151. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24152. {
  24153. back: {
  24154. height: math.unit(10.5, "feet"),
  24155. weight: math.unit(800, "lb"),
  24156. name: "Back",
  24157. image: {
  24158. source: "./media/characters/knox/back.svg",
  24159. extra: 1486 / 1089,
  24160. bottom: 107 / 1601.4
  24161. }
  24162. },
  24163. side: {
  24164. height: math.unit(10.5, "feet"),
  24165. weight: math.unit(800, "lb"),
  24166. name: "Side",
  24167. image: {
  24168. source: "./media/characters/knox/side.svg",
  24169. extra: 244 / 218,
  24170. bottom: 14 / 260
  24171. }
  24172. },
  24173. },
  24174. [
  24175. {
  24176. name: "Compact",
  24177. height: math.unit(10.5, "feet"),
  24178. default: true
  24179. },
  24180. {
  24181. name: "Dynamax",
  24182. height: math.unit(210, "feet")
  24183. },
  24184. {
  24185. name: "Full Macro",
  24186. height: math.unit(850, "feet")
  24187. },
  24188. ]
  24189. ))
  24190. characterMakers.push(() => makeCharacter(
  24191. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24192. {
  24193. front: {
  24194. height: math.unit(28, "feet"),
  24195. weight: math.unit(10500, "lb"),
  24196. name: "Front",
  24197. image: {
  24198. source: "./media/characters/kayda/front.svg",
  24199. extra: 1536 / 1428,
  24200. bottom: 68.7 / 1603
  24201. }
  24202. },
  24203. back: {
  24204. height: math.unit(28, "feet"),
  24205. weight: math.unit(10500, "lb"),
  24206. name: "Back",
  24207. image: {
  24208. source: "./media/characters/kayda/back.svg",
  24209. extra: 1557 / 1464,
  24210. bottom: 39.5 / 1597.49
  24211. }
  24212. },
  24213. dick: {
  24214. height: math.unit(3.858, "feet"),
  24215. name: "Dick",
  24216. image: {
  24217. source: "./media/characters/kayda/dick.svg"
  24218. }
  24219. },
  24220. },
  24221. [
  24222. {
  24223. name: "Macro",
  24224. height: math.unit(28, "feet"),
  24225. default: true
  24226. },
  24227. ]
  24228. ))
  24229. characterMakers.push(() => makeCharacter(
  24230. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24231. {
  24232. front: {
  24233. height: math.unit(10 + 11 / 12, "feet"),
  24234. weight: math.unit(1400, "lb"),
  24235. name: "Front",
  24236. image: {
  24237. source: "./media/characters/brian/front.svg",
  24238. extra: 737 / 692,
  24239. bottom: 55.4 / 785
  24240. }
  24241. },
  24242. },
  24243. [
  24244. {
  24245. name: "Normal",
  24246. height: math.unit(10 + 11 / 12, "feet"),
  24247. default: true
  24248. },
  24249. ]
  24250. ))
  24251. characterMakers.push(() => makeCharacter(
  24252. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24253. {
  24254. front: {
  24255. height: math.unit(5 + 8 / 12, "feet"),
  24256. weight: math.unit(140, "lb"),
  24257. name: "Front",
  24258. image: {
  24259. source: "./media/characters/khemri/front.svg",
  24260. extra: 4780 / 4059,
  24261. bottom: 80.1 / 4859.25
  24262. }
  24263. },
  24264. },
  24265. [
  24266. {
  24267. name: "Micro",
  24268. height: math.unit(6, "inches")
  24269. },
  24270. {
  24271. name: "Normal",
  24272. height: math.unit(5 + 8 / 12, "feet"),
  24273. default: true
  24274. },
  24275. ]
  24276. ))
  24277. characterMakers.push(() => makeCharacter(
  24278. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24279. {
  24280. front: {
  24281. height: math.unit(13, "feet"),
  24282. weight: math.unit(1700, "lb"),
  24283. name: "Front",
  24284. image: {
  24285. source: "./media/characters/felix-braveheart/front.svg",
  24286. extra: 1222 / 1157,
  24287. bottom: 53.2 / 1280
  24288. }
  24289. },
  24290. back: {
  24291. height: math.unit(13, "feet"),
  24292. weight: math.unit(1700, "lb"),
  24293. name: "Back",
  24294. image: {
  24295. source: "./media/characters/felix-braveheart/back.svg",
  24296. extra: 1277 / 1203,
  24297. bottom: 50.2 / 1327
  24298. }
  24299. },
  24300. feral: {
  24301. height: math.unit(6, "feet"),
  24302. weight: math.unit(400, "lb"),
  24303. name: "Feral",
  24304. image: {
  24305. source: "./media/characters/felix-braveheart/feral.svg",
  24306. extra: 682 / 625,
  24307. bottom: 6.9 / 688
  24308. }
  24309. },
  24310. },
  24311. [
  24312. {
  24313. name: "Normal",
  24314. height: math.unit(13, "feet"),
  24315. default: true
  24316. },
  24317. ]
  24318. ))
  24319. characterMakers.push(() => makeCharacter(
  24320. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24321. {
  24322. side: {
  24323. height: math.unit(5 + 11 / 12, "feet"),
  24324. weight: math.unit(1400, "lb"),
  24325. name: "Side",
  24326. image: {
  24327. source: "./media/characters/shadow-blade/side.svg",
  24328. extra: 1726 / 1267,
  24329. bottom: 58.4 / 1785
  24330. }
  24331. },
  24332. },
  24333. [
  24334. {
  24335. name: "Normal",
  24336. height: math.unit(5 + 11 / 12, "feet"),
  24337. default: true
  24338. },
  24339. ]
  24340. ))
  24341. characterMakers.push(() => makeCharacter(
  24342. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24343. {
  24344. front: {
  24345. height: math.unit(1 + 6 / 12, "feet"),
  24346. weight: math.unit(25, "lb"),
  24347. name: "Front",
  24348. image: {
  24349. source: "./media/characters/karla-halldor/front.svg",
  24350. extra: 1459 / 1383,
  24351. bottom: 12 / 1472
  24352. }
  24353. },
  24354. },
  24355. [
  24356. {
  24357. name: "Normal",
  24358. height: math.unit(1 + 6 / 12, "feet"),
  24359. default: true
  24360. },
  24361. ]
  24362. ))
  24363. characterMakers.push(() => makeCharacter(
  24364. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24365. {
  24366. front: {
  24367. height: math.unit(6 + 2 / 12, "feet"),
  24368. weight: math.unit(160, "lb"),
  24369. name: "Front",
  24370. image: {
  24371. source: "./media/characters/ariam/front.svg",
  24372. extra: 1073/976,
  24373. bottom: 52/1125
  24374. }
  24375. },
  24376. back: {
  24377. height: math.unit(6 + 2/12, "feet"),
  24378. weight: math.unit(160, "lb"),
  24379. name: "Back",
  24380. image: {
  24381. source: "./media/characters/ariam/back.svg",
  24382. extra: 1103/1023,
  24383. bottom: 9/1112
  24384. }
  24385. },
  24386. dressed: {
  24387. height: math.unit(6 + 2/12, "feet"),
  24388. weight: math.unit(160, "lb"),
  24389. name: "Dressed",
  24390. image: {
  24391. source: "./media/characters/ariam/dressed.svg",
  24392. extra: 1099/1009,
  24393. bottom: 25/1124
  24394. }
  24395. },
  24396. squatting: {
  24397. height: math.unit(4.1, "feet"),
  24398. weight: math.unit(160, "lb"),
  24399. name: "Squatting",
  24400. image: {
  24401. source: "./media/characters/ariam/squatting.svg",
  24402. extra: 2617 / 2112,
  24403. bottom: 61.2 / 2681,
  24404. }
  24405. },
  24406. },
  24407. [
  24408. {
  24409. name: "Normal",
  24410. height: math.unit(6 + 2 / 12, "feet"),
  24411. default: true
  24412. },
  24413. {
  24414. name: "Normal+",
  24415. height: math.unit(4, "meters")
  24416. },
  24417. {
  24418. name: "Macro",
  24419. height: math.unit(50, "meters")
  24420. },
  24421. {
  24422. name: "Macro+",
  24423. height: math.unit(100, "meters")
  24424. },
  24425. {
  24426. name: "Megamacro",
  24427. height: math.unit(20, "km")
  24428. },
  24429. {
  24430. name: "Caretaker",
  24431. height: math.unit(444, "megameters")
  24432. },
  24433. ]
  24434. ))
  24435. characterMakers.push(() => makeCharacter(
  24436. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24437. {
  24438. front: {
  24439. height: math.unit(1.67, "meters"),
  24440. weight: math.unit(140, "lb"),
  24441. name: "Front",
  24442. image: {
  24443. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24444. extra: 438 / 410,
  24445. bottom: 0.75 / 439
  24446. }
  24447. },
  24448. },
  24449. [
  24450. {
  24451. name: "Shrunken",
  24452. height: math.unit(7.6, "cm")
  24453. },
  24454. {
  24455. name: "Human Scale",
  24456. height: math.unit(1.67, "meters")
  24457. },
  24458. {
  24459. name: "Wolxi Scale",
  24460. height: math.unit(36.7, "meters"),
  24461. default: true
  24462. },
  24463. ]
  24464. ))
  24465. characterMakers.push(() => makeCharacter(
  24466. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24467. {
  24468. front: {
  24469. height: math.unit(1.73, "meters"),
  24470. weight: math.unit(240, "lb"),
  24471. name: "Front",
  24472. image: {
  24473. source: "./media/characters/izue-two-mothers/front.svg",
  24474. extra: 469 / 437,
  24475. bottom: 1.24 / 470.6
  24476. }
  24477. },
  24478. },
  24479. [
  24480. {
  24481. name: "Shrunken",
  24482. height: math.unit(7.86, "cm")
  24483. },
  24484. {
  24485. name: "Human Scale",
  24486. height: math.unit(1.73, "meters")
  24487. },
  24488. {
  24489. name: "Wolxi Scale",
  24490. height: math.unit(38, "meters"),
  24491. default: true
  24492. },
  24493. ]
  24494. ))
  24495. characterMakers.push(() => makeCharacter(
  24496. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24497. {
  24498. front: {
  24499. height: math.unit(1.55, "meters"),
  24500. weight: math.unit(120, "lb"),
  24501. name: "Front",
  24502. image: {
  24503. source: "./media/characters/teeku-love-shack/front.svg",
  24504. extra: 387 / 362,
  24505. bottom: 1.51 / 388
  24506. }
  24507. },
  24508. },
  24509. [
  24510. {
  24511. name: "Shrunken",
  24512. height: math.unit(7, "cm")
  24513. },
  24514. {
  24515. name: "Human Scale",
  24516. height: math.unit(1.55, "meters")
  24517. },
  24518. {
  24519. name: "Wolxi Scale",
  24520. height: math.unit(34.1, "meters"),
  24521. default: true
  24522. },
  24523. ]
  24524. ))
  24525. characterMakers.push(() => makeCharacter(
  24526. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24527. {
  24528. front: {
  24529. height: math.unit(1.83, "meters"),
  24530. weight: math.unit(135, "lb"),
  24531. name: "Front",
  24532. image: {
  24533. source: "./media/characters/dejma-the-red/front.svg",
  24534. extra: 480 / 458,
  24535. bottom: 1.8 / 482
  24536. }
  24537. },
  24538. },
  24539. [
  24540. {
  24541. name: "Shrunken",
  24542. height: math.unit(8.3, "cm")
  24543. },
  24544. {
  24545. name: "Human Scale",
  24546. height: math.unit(1.83, "meters")
  24547. },
  24548. {
  24549. name: "Wolxi Scale",
  24550. height: math.unit(40, "meters"),
  24551. default: true
  24552. },
  24553. ]
  24554. ))
  24555. characterMakers.push(() => makeCharacter(
  24556. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24557. {
  24558. front: {
  24559. height: math.unit(1.78, "meters"),
  24560. weight: math.unit(65, "kg"),
  24561. name: "Front",
  24562. image: {
  24563. source: "./media/characters/aki/front.svg",
  24564. extra: 452 / 415
  24565. }
  24566. },
  24567. frontNsfw: {
  24568. height: math.unit(1.78, "meters"),
  24569. weight: math.unit(65, "kg"),
  24570. name: "Front (NSFW)",
  24571. image: {
  24572. source: "./media/characters/aki/front-nsfw.svg",
  24573. extra: 452 / 415
  24574. }
  24575. },
  24576. back: {
  24577. height: math.unit(1.78, "meters"),
  24578. weight: math.unit(65, "kg"),
  24579. name: "Back",
  24580. image: {
  24581. source: "./media/characters/aki/back.svg",
  24582. extra: 452 / 415
  24583. }
  24584. },
  24585. rump: {
  24586. height: math.unit(2.05, "feet"),
  24587. name: "Rump",
  24588. image: {
  24589. source: "./media/characters/aki/rump.svg"
  24590. }
  24591. },
  24592. dick: {
  24593. height: math.unit(0.95, "feet"),
  24594. name: "Dick",
  24595. image: {
  24596. source: "./media/characters/aki/dick.svg"
  24597. }
  24598. },
  24599. },
  24600. [
  24601. {
  24602. name: "Micro",
  24603. height: math.unit(15, "cm")
  24604. },
  24605. {
  24606. name: "Normal",
  24607. height: math.unit(178, "cm"),
  24608. default: true
  24609. },
  24610. {
  24611. name: "Macro",
  24612. height: math.unit(214, "m")
  24613. },
  24614. {
  24615. name: "Macro+",
  24616. height: math.unit(534, "m")
  24617. },
  24618. ]
  24619. ))
  24620. characterMakers.push(() => makeCharacter(
  24621. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24622. {
  24623. front: {
  24624. height: math.unit(5 + 5 / 12, "feet"),
  24625. weight: math.unit(120, "lb"),
  24626. name: "Front",
  24627. image: {
  24628. source: "./media/characters/ari/front.svg",
  24629. extra: 714.5 / 682,
  24630. bottom: 8 / 722.5
  24631. }
  24632. },
  24633. },
  24634. [
  24635. {
  24636. name: "Normal",
  24637. height: math.unit(5 + 5 / 12, "feet")
  24638. },
  24639. {
  24640. name: "Macro",
  24641. height: math.unit(100, "feet"),
  24642. default: true
  24643. },
  24644. {
  24645. name: "Megamacro",
  24646. height: math.unit(100, "miles")
  24647. },
  24648. {
  24649. name: "Gigamacro",
  24650. height: math.unit(80000, "miles")
  24651. },
  24652. ]
  24653. ))
  24654. characterMakers.push(() => makeCharacter(
  24655. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24656. {
  24657. side: {
  24658. height: math.unit(9, "feet"),
  24659. weight: math.unit(400, "kg"),
  24660. name: "Side",
  24661. image: {
  24662. source: "./media/characters/bolt/side.svg",
  24663. extra: 1126 / 896,
  24664. bottom: 60 / 1187.3,
  24665. }
  24666. },
  24667. },
  24668. [
  24669. {
  24670. name: "Micro",
  24671. height: math.unit(5, "inches")
  24672. },
  24673. {
  24674. name: "Normal",
  24675. height: math.unit(9, "feet"),
  24676. default: true
  24677. },
  24678. {
  24679. name: "Macro",
  24680. height: math.unit(700, "feet")
  24681. },
  24682. {
  24683. name: "Max Size",
  24684. height: math.unit(1.52e22, "yottameters")
  24685. },
  24686. ]
  24687. ))
  24688. characterMakers.push(() => makeCharacter(
  24689. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24690. {
  24691. front: {
  24692. height: math.unit(4.53, "meters"),
  24693. weight: math.unit(3, "tons"),
  24694. name: "Front",
  24695. image: {
  24696. source: "./media/characters/draekon-sylviar/front.svg",
  24697. extra: 1228 / 1068,
  24698. bottom: 41 / 1270
  24699. }
  24700. },
  24701. tail: {
  24702. height: math.unit(1.772, "meter"),
  24703. name: "Tail",
  24704. image: {
  24705. source: "./media/characters/draekon-sylviar/tail.svg"
  24706. }
  24707. },
  24708. head: {
  24709. height: math.unit(1.331, "meter"),
  24710. name: "Head",
  24711. image: {
  24712. source: "./media/characters/draekon-sylviar/head.svg"
  24713. }
  24714. },
  24715. hand: {
  24716. height: math.unit(0.564, "meter"),
  24717. name: "Hand",
  24718. image: {
  24719. source: "./media/characters/draekon-sylviar/hand.svg"
  24720. }
  24721. },
  24722. foot: {
  24723. height: math.unit(0.621, "meter"),
  24724. name: "Foot",
  24725. image: {
  24726. source: "./media/characters/draekon-sylviar/foot.svg",
  24727. bottom: 32 / 324
  24728. }
  24729. },
  24730. dick: {
  24731. height: math.unit(61, "cm"),
  24732. name: "Dick",
  24733. image: {
  24734. source: "./media/characters/draekon-sylviar/dick.svg"
  24735. }
  24736. },
  24737. dickseparated: {
  24738. height: math.unit(61, "cm"),
  24739. name: "Dick-separated",
  24740. image: {
  24741. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24742. }
  24743. },
  24744. },
  24745. [
  24746. {
  24747. name: "Small",
  24748. height: math.unit(4.53 / 2, "meters"),
  24749. default: true
  24750. },
  24751. {
  24752. name: "Normal",
  24753. height: math.unit(4.53, "meters"),
  24754. default: true
  24755. },
  24756. {
  24757. name: "Large",
  24758. height: math.unit(4.53 * 2, "meters"),
  24759. },
  24760. ]
  24761. ))
  24762. characterMakers.push(() => makeCharacter(
  24763. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24764. {
  24765. front: {
  24766. height: math.unit(6 + 2 / 12, "feet"),
  24767. weight: math.unit(180, "lb"),
  24768. name: "Front",
  24769. image: {
  24770. source: "./media/characters/brawler/front.svg",
  24771. extra: 3301 / 3027,
  24772. bottom: 138 / 3439
  24773. }
  24774. },
  24775. },
  24776. [
  24777. {
  24778. name: "Normal",
  24779. height: math.unit(6 + 2 / 12, "feet"),
  24780. default: true
  24781. },
  24782. ]
  24783. ))
  24784. characterMakers.push(() => makeCharacter(
  24785. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24786. {
  24787. front: {
  24788. height: math.unit(11, "feet"),
  24789. weight: math.unit(1000, "lb"),
  24790. name: "Front",
  24791. image: {
  24792. source: "./media/characters/alex/front.svg",
  24793. bottom: 44.5 / 620
  24794. }
  24795. },
  24796. },
  24797. [
  24798. {
  24799. name: "Micro",
  24800. height: math.unit(5, "inches")
  24801. },
  24802. {
  24803. name: "Normal",
  24804. height: math.unit(11, "feet"),
  24805. default: true
  24806. },
  24807. {
  24808. name: "Macro",
  24809. height: math.unit(9.5e9, "feet")
  24810. },
  24811. {
  24812. name: "Max Size",
  24813. height: math.unit(1.4e283, "yottameters")
  24814. },
  24815. ]
  24816. ))
  24817. characterMakers.push(() => makeCharacter(
  24818. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24819. {
  24820. female: {
  24821. height: math.unit(29.9, "m"),
  24822. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24823. name: "Female",
  24824. image: {
  24825. source: "./media/characters/zenari/female.svg",
  24826. extra: 3281.6 / 3217,
  24827. bottom: 72.2 / 3353
  24828. }
  24829. },
  24830. male: {
  24831. height: math.unit(27.7, "m"),
  24832. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24833. name: "Male",
  24834. image: {
  24835. source: "./media/characters/zenari/male.svg",
  24836. extra: 3008 / 2991,
  24837. bottom: 54.6 / 3069
  24838. }
  24839. },
  24840. },
  24841. [
  24842. {
  24843. name: "Macro",
  24844. height: math.unit(29.7, "meters"),
  24845. default: true
  24846. },
  24847. ]
  24848. ))
  24849. characterMakers.push(() => makeCharacter(
  24850. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24851. {
  24852. female: {
  24853. height: math.unit(23.8, "m"),
  24854. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24855. name: "Female",
  24856. image: {
  24857. source: "./media/characters/mactarian/female.svg",
  24858. extra: 2662 / 2569,
  24859. bottom: 73 / 2736
  24860. }
  24861. },
  24862. male: {
  24863. height: math.unit(23.8, "m"),
  24864. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24865. name: "Male",
  24866. image: {
  24867. source: "./media/characters/mactarian/male.svg",
  24868. extra: 2673 / 2600,
  24869. bottom: 76 / 2750
  24870. }
  24871. },
  24872. },
  24873. [
  24874. {
  24875. name: "Macro",
  24876. height: math.unit(23.8, "meters"),
  24877. default: true
  24878. },
  24879. ]
  24880. ))
  24881. characterMakers.push(() => makeCharacter(
  24882. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24883. {
  24884. female: {
  24885. height: math.unit(19.3, "m"),
  24886. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24887. name: "Female",
  24888. image: {
  24889. source: "./media/characters/umok/female.svg",
  24890. extra: 2186 / 2078,
  24891. bottom: 87 / 2277
  24892. }
  24893. },
  24894. male: {
  24895. height: math.unit(19.5, "m"),
  24896. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24897. name: "Male",
  24898. image: {
  24899. source: "./media/characters/umok/male.svg",
  24900. extra: 2233 / 2140,
  24901. bottom: 24.4 / 2258
  24902. }
  24903. },
  24904. },
  24905. [
  24906. {
  24907. name: "Macro",
  24908. height: math.unit(19.3, "meters"),
  24909. default: true
  24910. },
  24911. ]
  24912. ))
  24913. characterMakers.push(() => makeCharacter(
  24914. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24915. {
  24916. female: {
  24917. height: math.unit(26.15, "m"),
  24918. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24919. name: "Female",
  24920. image: {
  24921. source: "./media/characters/joraxian/female.svg",
  24922. extra: 2912 / 2824,
  24923. bottom: 36 / 2956
  24924. }
  24925. },
  24926. male: {
  24927. height: math.unit(25.4, "m"),
  24928. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24929. name: "Male",
  24930. image: {
  24931. source: "./media/characters/joraxian/male.svg",
  24932. extra: 2877 / 2721,
  24933. bottom: 82 / 2967
  24934. }
  24935. },
  24936. },
  24937. [
  24938. {
  24939. name: "Macro",
  24940. height: math.unit(26.15, "meters"),
  24941. default: true
  24942. },
  24943. ]
  24944. ))
  24945. characterMakers.push(() => makeCharacter(
  24946. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24947. {
  24948. female: {
  24949. height: math.unit(21.6, "m"),
  24950. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24951. name: "Female",
  24952. image: {
  24953. source: "./media/characters/sthara/female.svg",
  24954. extra: 2516 / 2347,
  24955. bottom: 21.5 / 2537
  24956. }
  24957. },
  24958. male: {
  24959. height: math.unit(24, "m"),
  24960. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24961. name: "Male",
  24962. image: {
  24963. source: "./media/characters/sthara/male.svg",
  24964. extra: 2732 / 2607,
  24965. bottom: 23 / 2732
  24966. }
  24967. },
  24968. },
  24969. [
  24970. {
  24971. name: "Macro",
  24972. height: math.unit(21.6, "meters"),
  24973. default: true
  24974. },
  24975. ]
  24976. ))
  24977. characterMakers.push(() => makeCharacter(
  24978. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24979. {
  24980. front: {
  24981. height: math.unit(6 + 4 / 12, "feet"),
  24982. weight: math.unit(175, "lb"),
  24983. name: "Front",
  24984. image: {
  24985. source: "./media/characters/luka-bryzant/front.svg",
  24986. extra: 311 / 289,
  24987. bottom: 4 / 315
  24988. }
  24989. },
  24990. back: {
  24991. height: math.unit(6 + 4 / 12, "feet"),
  24992. weight: math.unit(175, "lb"),
  24993. name: "Back",
  24994. image: {
  24995. source: "./media/characters/luka-bryzant/back.svg",
  24996. extra: 311 / 289,
  24997. bottom: 3.8 / 313.7
  24998. }
  24999. },
  25000. },
  25001. [
  25002. {
  25003. name: "Micro",
  25004. height: math.unit(10, "inches")
  25005. },
  25006. {
  25007. name: "Normal",
  25008. height: math.unit(6 + 4 / 12, "feet"),
  25009. default: true
  25010. },
  25011. {
  25012. name: "Large",
  25013. height: math.unit(12, "feet")
  25014. },
  25015. ]
  25016. ))
  25017. characterMakers.push(() => makeCharacter(
  25018. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25019. {
  25020. front: {
  25021. height: math.unit(5 + 7 / 12, "feet"),
  25022. weight: math.unit(185, "lb"),
  25023. name: "Front",
  25024. image: {
  25025. source: "./media/characters/aman-aquila/front.svg",
  25026. extra: 1013 / 976,
  25027. bottom: 45.6 / 1057
  25028. }
  25029. },
  25030. side: {
  25031. height: math.unit(5 + 7 / 12, "feet"),
  25032. weight: math.unit(185, "lb"),
  25033. name: "Side",
  25034. image: {
  25035. source: "./media/characters/aman-aquila/side.svg",
  25036. extra: 1054 / 1011,
  25037. bottom: 15 / 1070
  25038. }
  25039. },
  25040. back: {
  25041. height: math.unit(5 + 7 / 12, "feet"),
  25042. weight: math.unit(185, "lb"),
  25043. name: "Back",
  25044. image: {
  25045. source: "./media/characters/aman-aquila/back.svg",
  25046. extra: 1026 / 970,
  25047. bottom: 12 / 1039
  25048. }
  25049. },
  25050. head: {
  25051. height: math.unit(1.211, "feet"),
  25052. name: "Head",
  25053. image: {
  25054. source: "./media/characters/aman-aquila/head.svg",
  25055. }
  25056. },
  25057. },
  25058. [
  25059. {
  25060. name: "Minimicro",
  25061. height: math.unit(0.057, "inches")
  25062. },
  25063. {
  25064. name: "Micro",
  25065. height: math.unit(7, "inches")
  25066. },
  25067. {
  25068. name: "Mini",
  25069. height: math.unit(3 + 7 / 12, "feet")
  25070. },
  25071. {
  25072. name: "Normal",
  25073. height: math.unit(5 + 7 / 12, "feet"),
  25074. default: true
  25075. },
  25076. {
  25077. name: "Macro",
  25078. height: math.unit(157 + 7 / 12, "feet")
  25079. },
  25080. {
  25081. name: "Megamacro",
  25082. height: math.unit(1557 + 7 / 12, "feet")
  25083. },
  25084. {
  25085. name: "Gigamacro",
  25086. height: math.unit(15557 + 7 / 12, "feet")
  25087. },
  25088. ]
  25089. ))
  25090. characterMakers.push(() => makeCharacter(
  25091. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25092. {
  25093. front: {
  25094. height: math.unit(3 + 2 / 12, "inches"),
  25095. weight: math.unit(0.3, "ounces"),
  25096. name: "Front",
  25097. image: {
  25098. source: "./media/characters/hiphae/front.svg",
  25099. extra: 1931 / 1683,
  25100. bottom: 24 / 1955
  25101. }
  25102. },
  25103. },
  25104. [
  25105. {
  25106. name: "Normal",
  25107. height: math.unit(3 + 1 / 2, "inches"),
  25108. default: true
  25109. },
  25110. ]
  25111. ))
  25112. characterMakers.push(() => makeCharacter(
  25113. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25114. {
  25115. front: {
  25116. height: math.unit(5 + 10 / 12, "feet"),
  25117. weight: math.unit(165, "lb"),
  25118. name: "Front",
  25119. image: {
  25120. source: "./media/characters/nicky/front.svg",
  25121. extra: 3144 / 2886,
  25122. bottom: 45.6 / 3192
  25123. }
  25124. },
  25125. back: {
  25126. height: math.unit(5 + 10 / 12, "feet"),
  25127. weight: math.unit(165, "lb"),
  25128. name: "Back",
  25129. image: {
  25130. source: "./media/characters/nicky/back.svg",
  25131. extra: 3055 / 2804,
  25132. bottom: 28.4 / 3087
  25133. }
  25134. },
  25135. frontclothed: {
  25136. height: math.unit(5 + 10 / 12, "feet"),
  25137. weight: math.unit(165, "lb"),
  25138. name: "Front-clothed",
  25139. image: {
  25140. source: "./media/characters/nicky/front-clothed.svg",
  25141. extra: 3184.9 / 2926.9,
  25142. bottom: 86.5 / 3239.9
  25143. }
  25144. },
  25145. foot: {
  25146. height: math.unit(1.16, "feet"),
  25147. name: "Foot",
  25148. image: {
  25149. source: "./media/characters/nicky/foot.svg"
  25150. }
  25151. },
  25152. feet: {
  25153. height: math.unit(1.34, "feet"),
  25154. name: "Feet",
  25155. image: {
  25156. source: "./media/characters/nicky/feet.svg"
  25157. }
  25158. },
  25159. maw: {
  25160. height: math.unit(0.9, "feet"),
  25161. name: "Maw",
  25162. image: {
  25163. source: "./media/characters/nicky/maw.svg"
  25164. }
  25165. },
  25166. },
  25167. [
  25168. {
  25169. name: "Normal",
  25170. height: math.unit(5 + 10 / 12, "feet"),
  25171. default: true
  25172. },
  25173. {
  25174. name: "Macro",
  25175. height: math.unit(60, "feet")
  25176. },
  25177. {
  25178. name: "Megamacro",
  25179. height: math.unit(1, "mile")
  25180. },
  25181. ]
  25182. ))
  25183. characterMakers.push(() => makeCharacter(
  25184. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25185. {
  25186. side: {
  25187. height: math.unit(10, "feet"),
  25188. weight: math.unit(600, "lb"),
  25189. name: "Side",
  25190. image: {
  25191. source: "./media/characters/blair/side.svg",
  25192. bottom: 16.6 / 475,
  25193. extra: 458 / 431
  25194. }
  25195. },
  25196. },
  25197. [
  25198. {
  25199. name: "Micro",
  25200. height: math.unit(8, "inches")
  25201. },
  25202. {
  25203. name: "Normal",
  25204. height: math.unit(10, "feet"),
  25205. default: true
  25206. },
  25207. {
  25208. name: "Macro",
  25209. height: math.unit(180, "feet")
  25210. },
  25211. ]
  25212. ))
  25213. characterMakers.push(() => makeCharacter(
  25214. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25215. {
  25216. front: {
  25217. height: math.unit(5 + 4 / 12, "feet"),
  25218. weight: math.unit(125, "lb"),
  25219. name: "Front",
  25220. image: {
  25221. source: "./media/characters/fisher/front.svg",
  25222. extra: 444 / 390,
  25223. bottom: 2 / 444.8
  25224. }
  25225. },
  25226. },
  25227. [
  25228. {
  25229. name: "Micro",
  25230. height: math.unit(4, "inches")
  25231. },
  25232. {
  25233. name: "Normal",
  25234. height: math.unit(5 + 4 / 12, "feet"),
  25235. default: true
  25236. },
  25237. {
  25238. name: "Macro",
  25239. height: math.unit(100, "feet")
  25240. },
  25241. ]
  25242. ))
  25243. characterMakers.push(() => makeCharacter(
  25244. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25245. {
  25246. front: {
  25247. height: math.unit(6.71, "feet"),
  25248. weight: math.unit(200, "lb"),
  25249. capacity: math.unit(1000000, "people"),
  25250. name: "Front",
  25251. image: {
  25252. source: "./media/characters/gliss/front.svg",
  25253. extra: 2347 / 2231,
  25254. bottom: 113 / 2462
  25255. }
  25256. },
  25257. hammerspaceSize: {
  25258. height: math.unit(6.71 * 717, "feet"),
  25259. weight: math.unit(200, "lb"),
  25260. capacity: math.unit(1000000, "people"),
  25261. name: "Hammerspace Size",
  25262. image: {
  25263. source: "./media/characters/gliss/front.svg",
  25264. extra: 2347 / 2231,
  25265. bottom: 113 / 2462
  25266. }
  25267. },
  25268. },
  25269. [
  25270. {
  25271. name: "Normal",
  25272. height: math.unit(6.71, "feet"),
  25273. default: true
  25274. },
  25275. ]
  25276. ))
  25277. characterMakers.push(() => makeCharacter(
  25278. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25279. {
  25280. side: {
  25281. height: math.unit(1.44, "m"),
  25282. weight: math.unit(80, "kg"),
  25283. name: "Side",
  25284. image: {
  25285. source: "./media/characters/dune-anderson/side.svg",
  25286. bottom: 49 / 1426
  25287. }
  25288. },
  25289. },
  25290. [
  25291. {
  25292. name: "Wolf-sized",
  25293. height: math.unit(1.44, "meters")
  25294. },
  25295. {
  25296. name: "Normal",
  25297. height: math.unit(5.05, "meters"),
  25298. default: true
  25299. },
  25300. {
  25301. name: "Big",
  25302. height: math.unit(14.4, "meters")
  25303. },
  25304. {
  25305. name: "Huge",
  25306. height: math.unit(144, "meters")
  25307. },
  25308. ]
  25309. ))
  25310. characterMakers.push(() => makeCharacter(
  25311. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25312. {
  25313. front: {
  25314. height: math.unit(7, "feet"),
  25315. weight: math.unit(425, "lb"),
  25316. name: "Front",
  25317. image: {
  25318. source: "./media/characters/hind/front.svg",
  25319. extra: 2091 / 1860,
  25320. bottom: 129 / 2220
  25321. }
  25322. },
  25323. back: {
  25324. height: math.unit(7, "feet"),
  25325. weight: math.unit(425, "lb"),
  25326. name: "Back",
  25327. image: {
  25328. source: "./media/characters/hind/back.svg",
  25329. extra: 2091 / 1860,
  25330. bottom: 24.6 / 2309
  25331. }
  25332. },
  25333. tail: {
  25334. height: math.unit(2.8, "feet"),
  25335. name: "Tail",
  25336. image: {
  25337. source: "./media/characters/hind/tail.svg"
  25338. }
  25339. },
  25340. head: {
  25341. height: math.unit(2.55, "feet"),
  25342. name: "Head",
  25343. image: {
  25344. source: "./media/characters/hind/head.svg"
  25345. }
  25346. },
  25347. },
  25348. [
  25349. {
  25350. name: "XS",
  25351. height: math.unit(0.7, "feet")
  25352. },
  25353. {
  25354. name: "Normal",
  25355. height: math.unit(7, "feet"),
  25356. default: true
  25357. },
  25358. {
  25359. name: "XL",
  25360. height: math.unit(70, "feet")
  25361. },
  25362. ]
  25363. ))
  25364. characterMakers.push(() => makeCharacter(
  25365. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25366. {
  25367. front: {
  25368. height: math.unit(2.1, "meters"),
  25369. weight: math.unit(150, "lb"),
  25370. name: "Front",
  25371. image: {
  25372. source: "./media/characters/tharquench-sizestealer/front.svg",
  25373. extra: 1605/1470,
  25374. bottom: 36/1641
  25375. }
  25376. },
  25377. frontAlt: {
  25378. height: math.unit(2.1, "meters"),
  25379. weight: math.unit(150, "lb"),
  25380. name: "Front (Alt)",
  25381. image: {
  25382. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25383. extra: 2318 / 2063,
  25384. bottom: 93.4 / 2410
  25385. }
  25386. },
  25387. },
  25388. [
  25389. {
  25390. name: "Nano",
  25391. height: math.unit(1, "mm")
  25392. },
  25393. {
  25394. name: "Micro",
  25395. height: math.unit(1, "cm")
  25396. },
  25397. {
  25398. name: "Normal",
  25399. height: math.unit(2.1, "meters"),
  25400. default: true
  25401. },
  25402. ]
  25403. ))
  25404. characterMakers.push(() => makeCharacter(
  25405. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25406. {
  25407. front: {
  25408. height: math.unit(7 + 5 / 12, "feet"),
  25409. weight: math.unit(357, "lb"),
  25410. name: "Front",
  25411. image: {
  25412. source: "./media/characters/solex-draconov/front.svg",
  25413. extra: 1993 / 1865,
  25414. bottom: 117 / 2111
  25415. }
  25416. },
  25417. },
  25418. [
  25419. {
  25420. name: "Natural Height",
  25421. height: math.unit(7 + 5 / 12, "feet"),
  25422. default: true
  25423. },
  25424. {
  25425. name: "Macro",
  25426. height: math.unit(350, "feet")
  25427. },
  25428. {
  25429. name: "Macro+",
  25430. height: math.unit(1000, "feet")
  25431. },
  25432. {
  25433. name: "Megamacro",
  25434. height: math.unit(20, "km")
  25435. },
  25436. {
  25437. name: "Megamacro+",
  25438. height: math.unit(1000, "km")
  25439. },
  25440. {
  25441. name: "Gigamacro",
  25442. height: math.unit(2.5, "Gm")
  25443. },
  25444. {
  25445. name: "Teramacro",
  25446. height: math.unit(15, "Tm")
  25447. },
  25448. {
  25449. name: "Galactic",
  25450. height: math.unit(30, "Zm")
  25451. },
  25452. {
  25453. name: "Universal",
  25454. height: math.unit(21000, "Ym")
  25455. },
  25456. {
  25457. name: "Omniversal",
  25458. height: math.unit(9.861e50, "Ym")
  25459. },
  25460. {
  25461. name: "Existential",
  25462. height: math.unit(1e300, "meters")
  25463. },
  25464. ]
  25465. ))
  25466. characterMakers.push(() => makeCharacter(
  25467. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25468. {
  25469. side: {
  25470. height: math.unit(25, "feet"),
  25471. weight: math.unit(90000, "lb"),
  25472. name: "Side",
  25473. image: {
  25474. source: "./media/characters/mandarax/side.svg",
  25475. extra: 614 / 332,
  25476. bottom: 55 / 630
  25477. }
  25478. },
  25479. head: {
  25480. height: math.unit(11.4, "feet"),
  25481. name: "Head",
  25482. image: {
  25483. source: "./media/characters/mandarax/head.svg"
  25484. }
  25485. },
  25486. belly: {
  25487. height: math.unit(33, "feet"),
  25488. name: "Belly",
  25489. capacity: math.unit(500, "people"),
  25490. image: {
  25491. source: "./media/characters/mandarax/belly.svg"
  25492. }
  25493. },
  25494. dick: {
  25495. height: math.unit(8.46, "feet"),
  25496. name: "Dick",
  25497. image: {
  25498. source: "./media/characters/mandarax/dick.svg"
  25499. }
  25500. },
  25501. top: {
  25502. height: math.unit(28, "meters"),
  25503. name: "Top",
  25504. image: {
  25505. source: "./media/characters/mandarax/top.svg"
  25506. }
  25507. },
  25508. },
  25509. [
  25510. {
  25511. name: "Normal",
  25512. height: math.unit(25, "feet"),
  25513. default: true
  25514. },
  25515. ]
  25516. ))
  25517. characterMakers.push(() => makeCharacter(
  25518. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25519. {
  25520. front: {
  25521. height: math.unit(5, "feet"),
  25522. weight: math.unit(90, "lb"),
  25523. name: "Front",
  25524. image: {
  25525. source: "./media/characters/pixil/front.svg",
  25526. extra: 2000 / 1618,
  25527. bottom: 12.3 / 2011
  25528. }
  25529. },
  25530. },
  25531. [
  25532. {
  25533. name: "Normal",
  25534. height: math.unit(5, "feet"),
  25535. default: true
  25536. },
  25537. {
  25538. name: "Megamacro",
  25539. height: math.unit(10, "miles"),
  25540. },
  25541. ]
  25542. ))
  25543. characterMakers.push(() => makeCharacter(
  25544. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25545. {
  25546. front: {
  25547. height: math.unit(7 + 2 / 12, "feet"),
  25548. weight: math.unit(200, "lb"),
  25549. name: "Front",
  25550. image: {
  25551. source: "./media/characters/angel/front.svg",
  25552. extra: 1830 / 1737,
  25553. bottom: 22.6 / 1854,
  25554. }
  25555. },
  25556. },
  25557. [
  25558. {
  25559. name: "Normal",
  25560. height: math.unit(7 + 2 / 12, "feet"),
  25561. default: true
  25562. },
  25563. {
  25564. name: "Macro",
  25565. height: math.unit(1000, "feet")
  25566. },
  25567. {
  25568. name: "Megamacro",
  25569. height: math.unit(2, "miles")
  25570. },
  25571. {
  25572. name: "Gigamacro",
  25573. height: math.unit(20, "earths")
  25574. },
  25575. ]
  25576. ))
  25577. characterMakers.push(() => makeCharacter(
  25578. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25579. {
  25580. front: {
  25581. height: math.unit(5, "feet"),
  25582. weight: math.unit(180, "lb"),
  25583. name: "Front",
  25584. image: {
  25585. source: "./media/characters/mekana/front.svg",
  25586. extra: 1671 / 1605,
  25587. bottom: 3.5 / 1691
  25588. }
  25589. },
  25590. side: {
  25591. height: math.unit(5, "feet"),
  25592. weight: math.unit(180, "lb"),
  25593. name: "Side",
  25594. image: {
  25595. source: "./media/characters/mekana/side.svg",
  25596. extra: 1671 / 1605,
  25597. bottom: 3.5 / 1691
  25598. }
  25599. },
  25600. back: {
  25601. height: math.unit(5, "feet"),
  25602. weight: math.unit(180, "lb"),
  25603. name: "Back",
  25604. image: {
  25605. source: "./media/characters/mekana/back.svg",
  25606. extra: 1671 / 1605,
  25607. bottom: 3.5 / 1691
  25608. }
  25609. },
  25610. },
  25611. [
  25612. {
  25613. name: "Normal",
  25614. height: math.unit(5, "feet"),
  25615. default: true
  25616. },
  25617. ]
  25618. ))
  25619. characterMakers.push(() => makeCharacter(
  25620. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25621. {
  25622. front: {
  25623. height: math.unit(4 + 6 / 12, "feet"),
  25624. weight: math.unit(80, "lb"),
  25625. name: "Front",
  25626. image: {
  25627. source: "./media/characters/pixie/front.svg",
  25628. extra: 1924 / 1825,
  25629. bottom: 22.4 / 1946
  25630. }
  25631. },
  25632. },
  25633. [
  25634. {
  25635. name: "Normal",
  25636. height: math.unit(4 + 6 / 12, "feet"),
  25637. default: true
  25638. },
  25639. {
  25640. name: "Macro",
  25641. height: math.unit(40, "feet")
  25642. },
  25643. ]
  25644. ))
  25645. characterMakers.push(() => makeCharacter(
  25646. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25647. {
  25648. front: {
  25649. height: math.unit(2.1, "meters"),
  25650. weight: math.unit(200, "lb"),
  25651. name: "Front",
  25652. image: {
  25653. source: "./media/characters/the-lascivious/front.svg",
  25654. extra: 1 / 0.893,
  25655. bottom: 3.5 / 573.7
  25656. }
  25657. },
  25658. },
  25659. [
  25660. {
  25661. name: "Human Scale",
  25662. height: math.unit(2.1, "meters")
  25663. },
  25664. {
  25665. name: "Wolxi Scale",
  25666. height: math.unit(46.2, "m"),
  25667. default: true
  25668. },
  25669. {
  25670. name: "Boinker of Buildings",
  25671. height: math.unit(10, "km")
  25672. },
  25673. {
  25674. name: "Shagger of Skyscrapers",
  25675. height: math.unit(40, "km")
  25676. },
  25677. {
  25678. name: "Banger of Boroughs",
  25679. height: math.unit(4000, "km")
  25680. },
  25681. {
  25682. name: "Screwer of States",
  25683. height: math.unit(100000, "km")
  25684. },
  25685. {
  25686. name: "Pounder of Planets",
  25687. height: math.unit(2000000, "km")
  25688. },
  25689. ]
  25690. ))
  25691. characterMakers.push(() => makeCharacter(
  25692. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25693. {
  25694. front: {
  25695. height: math.unit(6, "feet"),
  25696. weight: math.unit(150, "lb"),
  25697. name: "Front",
  25698. image: {
  25699. source: "./media/characters/aj/front.svg",
  25700. extra: 2039 / 1562,
  25701. bottom: 40 / 2079
  25702. }
  25703. },
  25704. },
  25705. [
  25706. {
  25707. name: "Normal",
  25708. height: math.unit(11 + 6 / 12, "feet"),
  25709. default: true
  25710. },
  25711. {
  25712. name: "Megamacro",
  25713. height: math.unit(60, "megameters")
  25714. },
  25715. ]
  25716. ))
  25717. characterMakers.push(() => makeCharacter(
  25718. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25719. {
  25720. side: {
  25721. height: math.unit(31 + 8 / 12, "feet"),
  25722. weight: math.unit(75000, "kg"),
  25723. name: "Side",
  25724. image: {
  25725. source: "./media/characters/koros/side.svg",
  25726. extra: 1442 / 1297,
  25727. bottom: 122.7 / 1562
  25728. }
  25729. },
  25730. dicksKingsCrown: {
  25731. height: math.unit(6, "feet"),
  25732. name: "Dicks (King's Crown)",
  25733. image: {
  25734. source: "./media/characters/koros/dicks-kings-crown.svg"
  25735. }
  25736. },
  25737. dicksTailSet: {
  25738. height: math.unit(3, "feet"),
  25739. name: "Dicks (Tail Set)",
  25740. image: {
  25741. source: "./media/characters/koros/dicks-tail-set.svg"
  25742. }
  25743. },
  25744. dickCumming: {
  25745. height: math.unit(7.98, "feet"),
  25746. name: "Dick (Cumming)",
  25747. image: {
  25748. source: "./media/characters/koros/dick-cumming.svg"
  25749. }
  25750. },
  25751. dicksBack: {
  25752. height: math.unit(5.9, "feet"),
  25753. name: "Dicks (Back)",
  25754. image: {
  25755. source: "./media/characters/koros/dicks-back.svg"
  25756. }
  25757. },
  25758. dicksFront: {
  25759. height: math.unit(3.72, "feet"),
  25760. name: "Dicks (Front)",
  25761. image: {
  25762. source: "./media/characters/koros/dicks-front.svg"
  25763. }
  25764. },
  25765. dicksPeeking: {
  25766. height: math.unit(3.0, "feet"),
  25767. name: "Dicks (Peeking)",
  25768. image: {
  25769. source: "./media/characters/koros/dicks-peeking.svg"
  25770. }
  25771. },
  25772. eye: {
  25773. height: math.unit(1.7, "feet"),
  25774. name: "Eye",
  25775. image: {
  25776. source: "./media/characters/koros/eye.svg"
  25777. }
  25778. },
  25779. headFront: {
  25780. height: math.unit(11.69, "feet"),
  25781. name: "Head (Front)",
  25782. image: {
  25783. source: "./media/characters/koros/head-front.svg"
  25784. }
  25785. },
  25786. headSide: {
  25787. height: math.unit(14, "feet"),
  25788. name: "Head (Side)",
  25789. image: {
  25790. source: "./media/characters/koros/head-side.svg"
  25791. }
  25792. },
  25793. leg: {
  25794. height: math.unit(17, "feet"),
  25795. name: "Leg",
  25796. image: {
  25797. source: "./media/characters/koros/leg.svg"
  25798. }
  25799. },
  25800. mawSide: {
  25801. height: math.unit(12.8, "feet"),
  25802. name: "Maw (Side)",
  25803. image: {
  25804. source: "./media/characters/koros/maw-side.svg"
  25805. }
  25806. },
  25807. mawSpitting: {
  25808. height: math.unit(17, "feet"),
  25809. name: "Maw (Spitting)",
  25810. image: {
  25811. source: "./media/characters/koros/maw-spitting.svg"
  25812. }
  25813. },
  25814. slit: {
  25815. height: math.unit(2.8, "feet"),
  25816. name: "Slit",
  25817. image: {
  25818. source: "./media/characters/koros/slit.svg"
  25819. }
  25820. },
  25821. stomach: {
  25822. height: math.unit(6.8, "feet"),
  25823. capacity: math.unit(20, "people"),
  25824. name: "Stomach",
  25825. image: {
  25826. source: "./media/characters/koros/stomach.svg"
  25827. }
  25828. },
  25829. wingspanBottom: {
  25830. height: math.unit(114, "feet"),
  25831. name: "Wingspan (Bottom)",
  25832. image: {
  25833. source: "./media/characters/koros/wingspan-bottom.svg"
  25834. }
  25835. },
  25836. wingspanTop: {
  25837. height: math.unit(104, "feet"),
  25838. name: "Wingspan (Top)",
  25839. image: {
  25840. source: "./media/characters/koros/wingspan-top.svg"
  25841. }
  25842. },
  25843. },
  25844. [
  25845. {
  25846. name: "Normal",
  25847. height: math.unit(31 + 8 / 12, "feet"),
  25848. default: true
  25849. },
  25850. ]
  25851. ))
  25852. characterMakers.push(() => makeCharacter(
  25853. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25854. {
  25855. front: {
  25856. height: math.unit(18 + 5 / 12, "feet"),
  25857. weight: math.unit(3750, "kg"),
  25858. name: "Front",
  25859. image: {
  25860. source: "./media/characters/vexx/front.svg",
  25861. extra: 426 / 396,
  25862. bottom: 31.5 / 458
  25863. }
  25864. },
  25865. maw: {
  25866. height: math.unit(6, "feet"),
  25867. name: "Maw",
  25868. image: {
  25869. source: "./media/characters/vexx/maw.svg"
  25870. }
  25871. },
  25872. },
  25873. [
  25874. {
  25875. name: "Normal",
  25876. height: math.unit(18 + 5 / 12, "feet"),
  25877. default: true
  25878. },
  25879. ]
  25880. ))
  25881. characterMakers.push(() => makeCharacter(
  25882. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25883. {
  25884. front: {
  25885. height: math.unit(17 + 6 / 12, "feet"),
  25886. weight: math.unit(150, "lb"),
  25887. name: "Front",
  25888. image: {
  25889. source: "./media/characters/baadra/front.svg",
  25890. extra: 3137 / 2890,
  25891. bottom: 168.4 / 3305
  25892. }
  25893. },
  25894. back: {
  25895. height: math.unit(17 + 6 / 12, "feet"),
  25896. weight: math.unit(150, "lb"),
  25897. name: "Back",
  25898. image: {
  25899. source: "./media/characters/baadra/back.svg",
  25900. extra: 3142 / 2890,
  25901. bottom: 220 / 3371
  25902. }
  25903. },
  25904. head: {
  25905. height: math.unit(5.45, "feet"),
  25906. name: "Head",
  25907. image: {
  25908. source: "./media/characters/baadra/head.svg"
  25909. }
  25910. },
  25911. headAngry: {
  25912. height: math.unit(4.95, "feet"),
  25913. name: "Head (Angry)",
  25914. image: {
  25915. source: "./media/characters/baadra/head-angry.svg"
  25916. }
  25917. },
  25918. headOpen: {
  25919. height: math.unit(6, "feet"),
  25920. name: "Head (Open)",
  25921. image: {
  25922. source: "./media/characters/baadra/head-open.svg"
  25923. }
  25924. },
  25925. },
  25926. [
  25927. {
  25928. name: "Normal",
  25929. height: math.unit(17 + 6 / 12, "feet"),
  25930. default: true
  25931. },
  25932. ]
  25933. ))
  25934. characterMakers.push(() => makeCharacter(
  25935. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25936. {
  25937. front: {
  25938. height: math.unit(7 + 3 / 12, "feet"),
  25939. weight: math.unit(180, "lb"),
  25940. name: "Front",
  25941. image: {
  25942. source: "./media/characters/juri/front.svg",
  25943. extra: 1401 / 1237,
  25944. bottom: 18.5 / 1418
  25945. }
  25946. },
  25947. side: {
  25948. height: math.unit(7 + 3 / 12, "feet"),
  25949. weight: math.unit(180, "lb"),
  25950. name: "Side",
  25951. image: {
  25952. source: "./media/characters/juri/side.svg",
  25953. extra: 1424 / 1242,
  25954. bottom: 18.5 / 1447
  25955. }
  25956. },
  25957. sitting: {
  25958. height: math.unit(6, "feet"),
  25959. weight: math.unit(180, "lb"),
  25960. name: "Sitting",
  25961. image: {
  25962. source: "./media/characters/juri/sitting.svg",
  25963. extra: 1270 / 1143,
  25964. bottom: 100 / 1343
  25965. }
  25966. },
  25967. back: {
  25968. height: math.unit(7 + 3 / 12, "feet"),
  25969. weight: math.unit(180, "lb"),
  25970. name: "Back",
  25971. image: {
  25972. source: "./media/characters/juri/back.svg",
  25973. extra: 1377 / 1240,
  25974. bottom: 23.7 / 1405
  25975. }
  25976. },
  25977. maw: {
  25978. height: math.unit(2.8, "feet"),
  25979. name: "Maw",
  25980. image: {
  25981. source: "./media/characters/juri/maw.svg"
  25982. }
  25983. },
  25984. stomach: {
  25985. height: math.unit(0.89, "feet"),
  25986. capacity: math.unit(4, "liters"),
  25987. name: "Stomach",
  25988. image: {
  25989. source: "./media/characters/juri/stomach.svg"
  25990. }
  25991. },
  25992. },
  25993. [
  25994. {
  25995. name: "Normal",
  25996. height: math.unit(7 + 3 / 12, "feet"),
  25997. default: true
  25998. },
  25999. ]
  26000. ))
  26001. characterMakers.push(() => makeCharacter(
  26002. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26003. {
  26004. fox: {
  26005. height: math.unit(5 + 6 / 12, "feet"),
  26006. weight: math.unit(140, "lb"),
  26007. name: "Fox",
  26008. image: {
  26009. source: "./media/characters/maxene-sita/fox.svg",
  26010. extra: 146 / 138,
  26011. bottom: 2.1 / 148.19
  26012. }
  26013. },
  26014. foxLaying: {
  26015. height: math.unit(1.70, "feet"),
  26016. weight: math.unit(140, "lb"),
  26017. name: "Fox (Laying)",
  26018. image: {
  26019. source: "./media/characters/maxene-sita/fox-laying.svg",
  26020. extra: 910 / 572,
  26021. bottom: 71 / 981
  26022. }
  26023. },
  26024. kitsune: {
  26025. height: math.unit(10, "feet"),
  26026. weight: math.unit(800, "lb"),
  26027. name: "Kitsune",
  26028. image: {
  26029. source: "./media/characters/maxene-sita/kitsune.svg",
  26030. extra: 185 / 176,
  26031. bottom: 4.7 / 189.9
  26032. }
  26033. },
  26034. hellhound: {
  26035. height: math.unit(10, "feet"),
  26036. weight: math.unit(700, "lb"),
  26037. name: "Hellhound",
  26038. image: {
  26039. source: "./media/characters/maxene-sita/hellhound.svg",
  26040. extra: 1600 / 1545,
  26041. bottom: 81 / 1681
  26042. }
  26043. },
  26044. },
  26045. [
  26046. {
  26047. name: "Normal",
  26048. height: math.unit(5 + 6 / 12, "feet"),
  26049. default: true
  26050. },
  26051. ]
  26052. ))
  26053. characterMakers.push(() => makeCharacter(
  26054. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26055. {
  26056. front: {
  26057. height: math.unit(3 + 4 / 12, "feet"),
  26058. weight: math.unit(70, "lb"),
  26059. name: "Front",
  26060. image: {
  26061. source: "./media/characters/maia/front.svg",
  26062. extra: 227 / 219.5,
  26063. bottom: 40 / 267
  26064. }
  26065. },
  26066. back: {
  26067. height: math.unit(3 + 4 / 12, "feet"),
  26068. weight: math.unit(70, "lb"),
  26069. name: "Back",
  26070. image: {
  26071. source: "./media/characters/maia/back.svg",
  26072. extra: 237 / 225
  26073. }
  26074. },
  26075. },
  26076. [
  26077. {
  26078. name: "Normal",
  26079. height: math.unit(3 + 4 / 12, "feet"),
  26080. default: true
  26081. },
  26082. ]
  26083. ))
  26084. characterMakers.push(() => makeCharacter(
  26085. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26086. {
  26087. front: {
  26088. height: math.unit(5 + 10 / 12, "feet"),
  26089. weight: math.unit(197, "lb"),
  26090. name: "Front",
  26091. image: {
  26092. source: "./media/characters/jabaro/front.svg",
  26093. extra: 225 / 216,
  26094. bottom: 5.06 / 230
  26095. }
  26096. },
  26097. back: {
  26098. height: math.unit(5 + 10 / 12, "feet"),
  26099. weight: math.unit(197, "lb"),
  26100. name: "Back",
  26101. image: {
  26102. source: "./media/characters/jabaro/back.svg",
  26103. extra: 225 / 219,
  26104. bottom: 1.9 / 227
  26105. }
  26106. },
  26107. },
  26108. [
  26109. {
  26110. name: "Normal",
  26111. height: math.unit(5 + 10 / 12, "feet"),
  26112. default: true
  26113. },
  26114. ]
  26115. ))
  26116. characterMakers.push(() => makeCharacter(
  26117. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26118. {
  26119. front: {
  26120. height: math.unit(5 + 8 / 12, "feet"),
  26121. weight: math.unit(139, "lb"),
  26122. name: "Front",
  26123. image: {
  26124. source: "./media/characters/risa/front.svg",
  26125. extra: 270 / 260,
  26126. bottom: 11.2 / 282
  26127. }
  26128. },
  26129. back: {
  26130. height: math.unit(5 + 8 / 12, "feet"),
  26131. weight: math.unit(139, "lb"),
  26132. name: "Back",
  26133. image: {
  26134. source: "./media/characters/risa/back.svg",
  26135. extra: 264 / 255,
  26136. bottom: 4 / 268
  26137. }
  26138. },
  26139. },
  26140. [
  26141. {
  26142. name: "Normal",
  26143. height: math.unit(5 + 8 / 12, "feet"),
  26144. default: true
  26145. },
  26146. ]
  26147. ))
  26148. characterMakers.push(() => makeCharacter(
  26149. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26150. {
  26151. front: {
  26152. height: math.unit(2 + 11 / 12, "feet"),
  26153. weight: math.unit(30, "lb"),
  26154. name: "Front",
  26155. image: {
  26156. source: "./media/characters/weatley/front.svg",
  26157. bottom: 10.7 / 414,
  26158. extra: 403.5 / 362
  26159. }
  26160. },
  26161. back: {
  26162. height: math.unit(2 + 11 / 12, "feet"),
  26163. weight: math.unit(30, "lb"),
  26164. name: "Back",
  26165. image: {
  26166. source: "./media/characters/weatley/back.svg",
  26167. bottom: 10.7 / 414,
  26168. extra: 403.5 / 362
  26169. }
  26170. },
  26171. },
  26172. [
  26173. {
  26174. name: "Normal",
  26175. height: math.unit(2 + 11 / 12, "feet"),
  26176. default: true
  26177. },
  26178. ]
  26179. ))
  26180. characterMakers.push(() => makeCharacter(
  26181. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26182. {
  26183. front: {
  26184. height: math.unit(5 + 2 / 12, "feet"),
  26185. weight: math.unit(50, "kg"),
  26186. name: "Front",
  26187. image: {
  26188. source: "./media/characters/mercury-crescent/front.svg",
  26189. extra: 1088 / 1033,
  26190. bottom: 18.9 / 1109
  26191. }
  26192. },
  26193. },
  26194. [
  26195. {
  26196. name: "Normal",
  26197. height: math.unit(5 + 2 / 12, "feet"),
  26198. default: true
  26199. },
  26200. ]
  26201. ))
  26202. characterMakers.push(() => makeCharacter(
  26203. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26204. {
  26205. front: {
  26206. height: math.unit(2, "feet"),
  26207. weight: math.unit(15, "kg"),
  26208. name: "Front",
  26209. image: {
  26210. source: "./media/characters/diamond-jones/front.svg",
  26211. extra: 727/723,
  26212. bottom: 46/773
  26213. }
  26214. },
  26215. },
  26216. [
  26217. {
  26218. name: "Normal",
  26219. height: math.unit(2, "feet"),
  26220. default: true
  26221. },
  26222. ]
  26223. ))
  26224. characterMakers.push(() => makeCharacter(
  26225. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26226. {
  26227. front: {
  26228. height: math.unit(3, "feet"),
  26229. weight: math.unit(30, "kg"),
  26230. name: "Front",
  26231. image: {
  26232. source: "./media/characters/sweet-bit/front.svg",
  26233. extra: 675 / 567,
  26234. bottom: 27.7 / 703
  26235. }
  26236. },
  26237. },
  26238. [
  26239. {
  26240. name: "Normal",
  26241. height: math.unit(3, "feet"),
  26242. default: true
  26243. },
  26244. ]
  26245. ))
  26246. characterMakers.push(() => makeCharacter(
  26247. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26248. {
  26249. side: {
  26250. height: math.unit(9.178, "feet"),
  26251. weight: math.unit(500, "lb"),
  26252. name: "Side",
  26253. image: {
  26254. source: "./media/characters/umbrazen/side.svg",
  26255. extra: 1730 / 1473,
  26256. bottom: 34.6 / 1765
  26257. }
  26258. },
  26259. },
  26260. [
  26261. {
  26262. name: "Normal",
  26263. height: math.unit(9.178, "feet"),
  26264. default: true
  26265. },
  26266. ]
  26267. ))
  26268. characterMakers.push(() => makeCharacter(
  26269. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26270. {
  26271. front: {
  26272. height: math.unit(10, "feet"),
  26273. weight: math.unit(750, "lb"),
  26274. name: "Front",
  26275. image: {
  26276. source: "./media/characters/arlist/front.svg",
  26277. extra: 961 / 778,
  26278. bottom: 6.2 / 986
  26279. }
  26280. },
  26281. },
  26282. [
  26283. {
  26284. name: "Normal",
  26285. height: math.unit(10, "feet"),
  26286. default: true
  26287. },
  26288. ]
  26289. ))
  26290. characterMakers.push(() => makeCharacter(
  26291. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26292. {
  26293. front: {
  26294. height: math.unit(5 + 1 / 12, "feet"),
  26295. weight: math.unit(110, "lb"),
  26296. name: "Front",
  26297. image: {
  26298. source: "./media/characters/aradel/front.svg",
  26299. extra: 324 / 303,
  26300. bottom: 3.6 / 329.4
  26301. }
  26302. },
  26303. },
  26304. [
  26305. {
  26306. name: "Normal",
  26307. height: math.unit(5 + 1 / 12, "feet"),
  26308. default: true
  26309. },
  26310. ]
  26311. ))
  26312. characterMakers.push(() => makeCharacter(
  26313. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26314. {
  26315. front: {
  26316. height: math.unit(3 + 8 / 12, "feet"),
  26317. weight: math.unit(50, "lb"),
  26318. name: "Front",
  26319. image: {
  26320. source: "./media/characters/serryn/front.svg",
  26321. extra: 1792 / 1656,
  26322. bottom: 43.5 / 1840
  26323. }
  26324. },
  26325. },
  26326. [
  26327. {
  26328. name: "Normal",
  26329. height: math.unit(3 + 8 / 12, "feet"),
  26330. default: true
  26331. },
  26332. ]
  26333. ))
  26334. characterMakers.push(() => makeCharacter(
  26335. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26336. {
  26337. front: {
  26338. height: math.unit(7 + 10 / 12, "feet"),
  26339. weight: math.unit(255, "lb"),
  26340. name: "Front",
  26341. image: {
  26342. source: "./media/characters/xavier-thyme/front.svg",
  26343. extra: 3733 / 3642,
  26344. bottom: 131 / 3869
  26345. }
  26346. },
  26347. frontRaven: {
  26348. height: math.unit(7 + 10 / 12, "feet"),
  26349. weight: math.unit(255, "lb"),
  26350. name: "Front (Raven)",
  26351. image: {
  26352. source: "./media/characters/xavier-thyme/front-raven.svg",
  26353. extra: 4385 / 3642,
  26354. bottom: 131 / 4517
  26355. }
  26356. },
  26357. },
  26358. [
  26359. {
  26360. name: "Normal",
  26361. height: math.unit(7 + 10 / 12, "feet"),
  26362. default: true
  26363. },
  26364. ]
  26365. ))
  26366. characterMakers.push(() => makeCharacter(
  26367. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26368. {
  26369. front: {
  26370. height: math.unit(1.6, "m"),
  26371. weight: math.unit(50, "kg"),
  26372. name: "Front",
  26373. image: {
  26374. source: "./media/characters/kiki/front.svg",
  26375. extra: 4682 / 3610,
  26376. bottom: 115 / 4777
  26377. }
  26378. },
  26379. },
  26380. [
  26381. {
  26382. name: "Normal",
  26383. height: math.unit(1.6, "meters"),
  26384. default: true
  26385. },
  26386. ]
  26387. ))
  26388. characterMakers.push(() => makeCharacter(
  26389. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26390. {
  26391. front: {
  26392. height: math.unit(50, "m"),
  26393. weight: math.unit(500, "tonnes"),
  26394. name: "Front",
  26395. image: {
  26396. source: "./media/characters/ryoko/front.svg",
  26397. extra: 4632 / 3926,
  26398. bottom: 193 / 4823
  26399. }
  26400. },
  26401. },
  26402. [
  26403. {
  26404. name: "Normal",
  26405. height: math.unit(50, "meters"),
  26406. default: true
  26407. },
  26408. ]
  26409. ))
  26410. characterMakers.push(() => makeCharacter(
  26411. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26412. {
  26413. front: {
  26414. height: math.unit(30, "m"),
  26415. weight: math.unit(22, "tonnes"),
  26416. name: "Front",
  26417. image: {
  26418. source: "./media/characters/elio/front.svg",
  26419. extra: 4582 / 3720,
  26420. bottom: 236 / 4828
  26421. }
  26422. },
  26423. },
  26424. [
  26425. {
  26426. name: "Normal",
  26427. height: math.unit(30, "meters"),
  26428. default: true
  26429. },
  26430. ]
  26431. ))
  26432. characterMakers.push(() => makeCharacter(
  26433. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26434. {
  26435. front: {
  26436. height: math.unit(6 + 3 / 12, "feet"),
  26437. weight: math.unit(120, "lb"),
  26438. name: "Front",
  26439. image: {
  26440. source: "./media/characters/azura/front.svg",
  26441. extra: 1149 / 1135,
  26442. bottom: 45 / 1194
  26443. }
  26444. },
  26445. frontClothed: {
  26446. height: math.unit(6 + 3 / 12, "feet"),
  26447. weight: math.unit(120, "lb"),
  26448. name: "Front (Clothed)",
  26449. image: {
  26450. source: "./media/characters/azura/front-clothed.svg",
  26451. extra: 1149 / 1135,
  26452. bottom: 45 / 1194
  26453. }
  26454. },
  26455. },
  26456. [
  26457. {
  26458. name: "Normal",
  26459. height: math.unit(6 + 3 / 12, "feet"),
  26460. default: true
  26461. },
  26462. {
  26463. name: "Macro",
  26464. height: math.unit(20 + 6 / 12, "feet")
  26465. },
  26466. {
  26467. name: "Megamacro",
  26468. height: math.unit(12, "miles")
  26469. },
  26470. {
  26471. name: "Gigamacro",
  26472. height: math.unit(10000, "miles")
  26473. },
  26474. {
  26475. name: "Teramacro",
  26476. height: math.unit(900000, "miles")
  26477. },
  26478. ]
  26479. ))
  26480. characterMakers.push(() => makeCharacter(
  26481. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26482. {
  26483. front: {
  26484. height: math.unit(12, "feet"),
  26485. weight: math.unit(1, "ton"),
  26486. capacity: math.unit(660000, "gallons"),
  26487. name: "Front",
  26488. image: {
  26489. source: "./media/characters/zeus/front.svg",
  26490. extra: 5005 / 4717,
  26491. bottom: 363 / 5388
  26492. }
  26493. },
  26494. },
  26495. [
  26496. {
  26497. name: "Normal",
  26498. height: math.unit(12, "feet")
  26499. },
  26500. {
  26501. name: "Preferred Size",
  26502. height: math.unit(0.5, "miles"),
  26503. default: true
  26504. },
  26505. {
  26506. name: "Giga Horse",
  26507. height: math.unit(300, "miles")
  26508. },
  26509. {
  26510. name: "Riding Planets",
  26511. height: math.unit(30, "megameters")
  26512. },
  26513. {
  26514. name: "Cosmic Giant",
  26515. height: math.unit(3, "zettameters")
  26516. },
  26517. {
  26518. name: "Breeding God",
  26519. height: math.unit(9.92e22, "yottameters")
  26520. },
  26521. ]
  26522. ))
  26523. characterMakers.push(() => makeCharacter(
  26524. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26525. {
  26526. side: {
  26527. height: math.unit(9, "feet"),
  26528. weight: math.unit(1500, "kg"),
  26529. name: "Side",
  26530. image: {
  26531. source: "./media/characters/fang/side.svg",
  26532. extra: 924 / 866,
  26533. bottom: 47.5 / 972.3
  26534. }
  26535. },
  26536. },
  26537. [
  26538. {
  26539. name: "Normal",
  26540. height: math.unit(9, "feet"),
  26541. default: true
  26542. },
  26543. {
  26544. name: "Macro",
  26545. height: math.unit(75 + 6 / 12, "feet")
  26546. },
  26547. {
  26548. name: "Teramacro",
  26549. height: math.unit(50000, "miles")
  26550. },
  26551. ]
  26552. ))
  26553. characterMakers.push(() => makeCharacter(
  26554. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26555. {
  26556. front: {
  26557. height: math.unit(10, "feet"),
  26558. weight: math.unit(2, "tons"),
  26559. name: "Front",
  26560. image: {
  26561. source: "./media/characters/rekhit/front.svg",
  26562. extra: 2796 / 2590,
  26563. bottom: 225 / 3022
  26564. }
  26565. },
  26566. },
  26567. [
  26568. {
  26569. name: "Normal",
  26570. height: math.unit(10, "feet"),
  26571. default: true
  26572. },
  26573. {
  26574. name: "Macro",
  26575. height: math.unit(500, "feet")
  26576. },
  26577. ]
  26578. ))
  26579. characterMakers.push(() => makeCharacter(
  26580. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26581. {
  26582. front: {
  26583. height: math.unit(7 + 6.451 / 12, "feet"),
  26584. weight: math.unit(310, "lb"),
  26585. name: "Front",
  26586. image: {
  26587. source: "./media/characters/dahlia-verrick/front.svg",
  26588. extra: 1488 / 1365,
  26589. bottom: 6.2 / 1495
  26590. }
  26591. },
  26592. back: {
  26593. height: math.unit(7 + 6.451 / 12, "feet"),
  26594. weight: math.unit(310, "lb"),
  26595. name: "Back",
  26596. image: {
  26597. source: "./media/characters/dahlia-verrick/back.svg",
  26598. extra: 1472 / 1351,
  26599. bottom: 5.28 / 1477
  26600. }
  26601. },
  26602. frontBusiness: {
  26603. height: math.unit(7 + 6.451 / 12, "feet"),
  26604. weight: math.unit(200, "lb"),
  26605. name: "Front (Business)",
  26606. image: {
  26607. source: "./media/characters/dahlia-verrick/front-business.svg",
  26608. extra: 1478 / 1381,
  26609. bottom: 5.5 / 1484
  26610. }
  26611. },
  26612. frontCasual: {
  26613. height: math.unit(7 + 6.451 / 12, "feet"),
  26614. weight: math.unit(200, "lb"),
  26615. name: "Front (Casual)",
  26616. image: {
  26617. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26618. extra: 1478 / 1381,
  26619. bottom: 5.5 / 1484
  26620. }
  26621. },
  26622. },
  26623. [
  26624. {
  26625. name: "Travel-Sized",
  26626. height: math.unit(7.45, "inches")
  26627. },
  26628. {
  26629. name: "Normal",
  26630. height: math.unit(7 + 6.451 / 12, "feet"),
  26631. default: true
  26632. },
  26633. {
  26634. name: "Hitting the Town",
  26635. height: math.unit(37 + 8 / 12, "feet")
  26636. },
  26637. {
  26638. name: "Stomp in the Suburbs",
  26639. height: math.unit(964 + 9.728 / 12, "feet")
  26640. },
  26641. {
  26642. name: "Sit on the City",
  26643. height: math.unit(61747 + 10.592 / 12, "feet")
  26644. },
  26645. {
  26646. name: "Glomp the Globe",
  26647. height: math.unit(252919327 + 4.832 / 12, "feet")
  26648. },
  26649. ]
  26650. ))
  26651. characterMakers.push(() => makeCharacter(
  26652. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26653. {
  26654. front: {
  26655. height: math.unit(6 + 4 / 12, "feet"),
  26656. weight: math.unit(320, "lb"),
  26657. name: "Front",
  26658. image: {
  26659. source: "./media/characters/balina-mahigan/front.svg",
  26660. extra: 447 / 428,
  26661. bottom: 18 / 466
  26662. }
  26663. },
  26664. back: {
  26665. height: math.unit(6 + 4 / 12, "feet"),
  26666. weight: math.unit(320, "lb"),
  26667. name: "Back",
  26668. image: {
  26669. source: "./media/characters/balina-mahigan/back.svg",
  26670. extra: 445 / 428,
  26671. bottom: 4.07 / 448
  26672. }
  26673. },
  26674. arm: {
  26675. height: math.unit(1.88, "feet"),
  26676. name: "Arm",
  26677. image: {
  26678. source: "./media/characters/balina-mahigan/arm.svg"
  26679. }
  26680. },
  26681. backPort: {
  26682. height: math.unit(0.685, "feet"),
  26683. name: "Back Port",
  26684. image: {
  26685. source: "./media/characters/balina-mahigan/back-port.svg"
  26686. }
  26687. },
  26688. hoofpaw: {
  26689. height: math.unit(1.41, "feet"),
  26690. name: "Hoofpaw",
  26691. image: {
  26692. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26693. }
  26694. },
  26695. leftHandBack: {
  26696. height: math.unit(0.938, "feet"),
  26697. name: "Left Hand (Back)",
  26698. image: {
  26699. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26700. }
  26701. },
  26702. leftHandFront: {
  26703. height: math.unit(0.938, "feet"),
  26704. name: "Left Hand (Front)",
  26705. image: {
  26706. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26707. }
  26708. },
  26709. rightHandBack: {
  26710. height: math.unit(0.95, "feet"),
  26711. name: "Right Hand (Back)",
  26712. image: {
  26713. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26714. }
  26715. },
  26716. rightHandFront: {
  26717. height: math.unit(0.95, "feet"),
  26718. name: "Right Hand (Front)",
  26719. image: {
  26720. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26721. }
  26722. },
  26723. },
  26724. [
  26725. {
  26726. name: "Normal",
  26727. height: math.unit(6 + 4 / 12, "feet"),
  26728. default: true
  26729. },
  26730. ]
  26731. ))
  26732. characterMakers.push(() => makeCharacter(
  26733. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26734. {
  26735. front: {
  26736. height: math.unit(6, "feet"),
  26737. weight: math.unit(320, "lb"),
  26738. name: "Front",
  26739. image: {
  26740. source: "./media/characters/balina-mejeri/front.svg",
  26741. extra: 517 / 488,
  26742. bottom: 44.2 / 561
  26743. }
  26744. },
  26745. },
  26746. [
  26747. {
  26748. name: "Normal",
  26749. height: math.unit(6 + 4 / 12, "feet")
  26750. },
  26751. {
  26752. name: "Business",
  26753. height: math.unit(155, "feet"),
  26754. default: true
  26755. },
  26756. ]
  26757. ))
  26758. characterMakers.push(() => makeCharacter(
  26759. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26760. {
  26761. kneeling: {
  26762. height: math.unit(6 + 4 / 12, "feet"),
  26763. weight: math.unit(300 * 20, "lb"),
  26764. name: "Kneeling",
  26765. image: {
  26766. source: "./media/characters/balbarian/kneeling.svg",
  26767. extra: 922 / 862,
  26768. bottom: 42.4 / 965
  26769. }
  26770. },
  26771. },
  26772. [
  26773. {
  26774. name: "Normal",
  26775. height: math.unit(6 + 4 / 12, "feet")
  26776. },
  26777. {
  26778. name: "Treasured",
  26779. height: math.unit(18 + 9 / 12, "feet"),
  26780. default: true
  26781. },
  26782. {
  26783. name: "Macro",
  26784. height: math.unit(900, "feet")
  26785. },
  26786. ]
  26787. ))
  26788. characterMakers.push(() => makeCharacter(
  26789. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26790. {
  26791. front: {
  26792. height: math.unit(6 + 4 / 12, "feet"),
  26793. weight: math.unit(325, "lb"),
  26794. name: "Front",
  26795. image: {
  26796. source: "./media/characters/balina-amarini/front.svg",
  26797. extra: 415 / 403,
  26798. bottom: 19 / 433.4
  26799. }
  26800. },
  26801. back: {
  26802. height: math.unit(6 + 4 / 12, "feet"),
  26803. weight: math.unit(325, "lb"),
  26804. name: "Back",
  26805. image: {
  26806. source: "./media/characters/balina-amarini/back.svg",
  26807. extra: 415 / 403,
  26808. bottom: 13.5 / 432
  26809. }
  26810. },
  26811. overdrive: {
  26812. height: math.unit(6 + 4 / 12, "feet"),
  26813. weight: math.unit(400, "lb"),
  26814. name: "Overdrive",
  26815. image: {
  26816. source: "./media/characters/balina-amarini/overdrive.svg",
  26817. extra: 269 / 259,
  26818. bottom: 12 / 282
  26819. }
  26820. },
  26821. },
  26822. [
  26823. {
  26824. name: "Boom",
  26825. height: math.unit(9 + 10 / 12, "feet"),
  26826. default: true
  26827. },
  26828. {
  26829. name: "Macro",
  26830. height: math.unit(280, "feet")
  26831. },
  26832. ]
  26833. ))
  26834. characterMakers.push(() => makeCharacter(
  26835. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26836. {
  26837. goddess: {
  26838. height: math.unit(600, "feet"),
  26839. weight: math.unit(2000000, "tons"),
  26840. name: "Goddess",
  26841. image: {
  26842. source: "./media/characters/lady-kubwa/goddess.svg",
  26843. extra: 1240.5 / 1223,
  26844. bottom: 22 / 1263
  26845. }
  26846. },
  26847. goddesser: {
  26848. height: math.unit(900, "feet"),
  26849. weight: math.unit(20000000, "lb"),
  26850. name: "Goddess-er",
  26851. image: {
  26852. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26853. extra: 899 / 888,
  26854. bottom: 12.6 / 912
  26855. }
  26856. },
  26857. },
  26858. [
  26859. {
  26860. name: "Macro",
  26861. height: math.unit(600, "feet"),
  26862. default: true
  26863. },
  26864. {
  26865. name: "Megamacro",
  26866. height: math.unit(250, "miles")
  26867. },
  26868. ]
  26869. ))
  26870. characterMakers.push(() => makeCharacter(
  26871. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26872. {
  26873. front: {
  26874. height: math.unit(7 + 7 / 12, "feet"),
  26875. weight: math.unit(250, "lb"),
  26876. name: "Front",
  26877. image: {
  26878. source: "./media/characters/tala-grovehorn/front.svg",
  26879. extra: 2636 / 2525,
  26880. bottom: 147 / 2781
  26881. }
  26882. },
  26883. back: {
  26884. height: math.unit(7 + 7 / 12, "feet"),
  26885. weight: math.unit(250, "lb"),
  26886. name: "Back",
  26887. image: {
  26888. source: "./media/characters/tala-grovehorn/back.svg",
  26889. extra: 2635 / 2539,
  26890. bottom: 100 / 2732.8
  26891. }
  26892. },
  26893. mouth: {
  26894. height: math.unit(1.15, "feet"),
  26895. name: "Mouth",
  26896. image: {
  26897. source: "./media/characters/tala-grovehorn/mouth.svg"
  26898. }
  26899. },
  26900. dick: {
  26901. height: math.unit(2.36, "feet"),
  26902. name: "Dick",
  26903. image: {
  26904. source: "./media/characters/tala-grovehorn/dick.svg"
  26905. }
  26906. },
  26907. slit: {
  26908. height: math.unit(0.61, "feet"),
  26909. name: "Slit",
  26910. image: {
  26911. source: "./media/characters/tala-grovehorn/slit.svg"
  26912. }
  26913. },
  26914. },
  26915. [
  26916. ]
  26917. ))
  26918. characterMakers.push(() => makeCharacter(
  26919. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26920. {
  26921. front: {
  26922. height: math.unit(7 + 7 / 12, "feet"),
  26923. weight: math.unit(225, "lb"),
  26924. name: "Front",
  26925. image: {
  26926. source: "./media/characters/epona/front.svg",
  26927. extra: 2445 / 2290,
  26928. bottom: 251 / 2696
  26929. }
  26930. },
  26931. back: {
  26932. height: math.unit(7 + 7 / 12, "feet"),
  26933. weight: math.unit(225, "lb"),
  26934. name: "Back",
  26935. image: {
  26936. source: "./media/characters/epona/back.svg",
  26937. extra: 2546 / 2408,
  26938. bottom: 44 / 2589
  26939. }
  26940. },
  26941. genitals: {
  26942. height: math.unit(1.5, "feet"),
  26943. name: "Genitals",
  26944. image: {
  26945. source: "./media/characters/epona/genitals.svg"
  26946. }
  26947. },
  26948. },
  26949. [
  26950. {
  26951. name: "Normal",
  26952. height: math.unit(7 + 7 / 12, "feet"),
  26953. default: true
  26954. },
  26955. ]
  26956. ))
  26957. characterMakers.push(() => makeCharacter(
  26958. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26959. {
  26960. front: {
  26961. height: math.unit(7, "feet"),
  26962. weight: math.unit(518, "lb"),
  26963. name: "Front",
  26964. image: {
  26965. source: "./media/characters/avia-bloodbourn/front.svg",
  26966. extra: 1466 / 1350,
  26967. bottom: 65 / 1527
  26968. }
  26969. },
  26970. },
  26971. [
  26972. ]
  26973. ))
  26974. characterMakers.push(() => makeCharacter(
  26975. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26976. {
  26977. front: {
  26978. height: math.unit(9.35, "feet"),
  26979. weight: math.unit(600, "lb"),
  26980. name: "Front",
  26981. image: {
  26982. source: "./media/characters/amera/front.svg",
  26983. extra: 891 / 818,
  26984. bottom: 30 / 922.7
  26985. }
  26986. },
  26987. back: {
  26988. height: math.unit(9.35, "feet"),
  26989. weight: math.unit(600, "lb"),
  26990. name: "Back",
  26991. image: {
  26992. source: "./media/characters/amera/back.svg",
  26993. extra: 876 / 824,
  26994. bottom: 6.8 / 884
  26995. }
  26996. },
  26997. dick: {
  26998. height: math.unit(2.14, "feet"),
  26999. name: "Dick",
  27000. image: {
  27001. source: "./media/characters/amera/dick.svg"
  27002. }
  27003. },
  27004. },
  27005. [
  27006. {
  27007. name: "Normal",
  27008. height: math.unit(9.35, "feet"),
  27009. default: true
  27010. },
  27011. ]
  27012. ))
  27013. characterMakers.push(() => makeCharacter(
  27014. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27015. {
  27016. kneeling: {
  27017. height: math.unit(3 + 4 / 12, "feet"),
  27018. weight: math.unit(90, "lb"),
  27019. name: "Kneeling",
  27020. image: {
  27021. source: "./media/characters/rosewen/kneeling.svg",
  27022. extra: 1835 / 1571,
  27023. bottom: 27.7 / 1862
  27024. }
  27025. },
  27026. },
  27027. [
  27028. {
  27029. name: "Normal",
  27030. height: math.unit(3 + 4 / 12, "feet"),
  27031. default: true
  27032. },
  27033. ]
  27034. ))
  27035. characterMakers.push(() => makeCharacter(
  27036. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27037. {
  27038. front: {
  27039. height: math.unit(5 + 10 / 12, "feet"),
  27040. weight: math.unit(200, "lb"),
  27041. name: "Front",
  27042. image: {
  27043. source: "./media/characters/sabah/front.svg",
  27044. extra: 849 / 763,
  27045. bottom: 33.9 / 881
  27046. }
  27047. },
  27048. },
  27049. [
  27050. {
  27051. name: "Normal",
  27052. height: math.unit(5 + 10 / 12, "feet"),
  27053. default: true
  27054. },
  27055. ]
  27056. ))
  27057. characterMakers.push(() => makeCharacter(
  27058. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27059. {
  27060. front: {
  27061. height: math.unit(3 + 5 / 12, "feet"),
  27062. weight: math.unit(40, "kg"),
  27063. name: "Front",
  27064. image: {
  27065. source: "./media/characters/purple-flame/front.svg",
  27066. extra: 1577 / 1412,
  27067. bottom: 97 / 1694
  27068. }
  27069. },
  27070. frontDressed: {
  27071. height: math.unit(3 + 5 / 12, "feet"),
  27072. weight: math.unit(40, "kg"),
  27073. name: "Front (Dressed)",
  27074. image: {
  27075. source: "./media/characters/purple-flame/front-dressed.svg",
  27076. extra: 1577 / 1412,
  27077. bottom: 97 / 1694
  27078. }
  27079. },
  27080. headphones: {
  27081. height: math.unit(0.85, "feet"),
  27082. name: "Headphones",
  27083. image: {
  27084. source: "./media/characters/purple-flame/headphones.svg"
  27085. }
  27086. },
  27087. },
  27088. [
  27089. {
  27090. name: "Really Small",
  27091. height: math.unit(5, "cm")
  27092. },
  27093. {
  27094. name: "Micro",
  27095. height: math.unit(1 + 5 / 12, "feet")
  27096. },
  27097. {
  27098. name: "Normal",
  27099. height: math.unit(3 + 5 / 12, "feet"),
  27100. default: true
  27101. },
  27102. {
  27103. name: "Minimacro",
  27104. height: math.unit(125, "feet")
  27105. },
  27106. {
  27107. name: "Macro",
  27108. height: math.unit(0.5, "miles")
  27109. },
  27110. {
  27111. name: "Megamacro",
  27112. height: math.unit(50, "miles")
  27113. },
  27114. {
  27115. name: "Gigantic",
  27116. height: math.unit(750, "miles")
  27117. },
  27118. {
  27119. name: "Planetary",
  27120. height: math.unit(15000, "miles")
  27121. },
  27122. ]
  27123. ))
  27124. characterMakers.push(() => makeCharacter(
  27125. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27126. {
  27127. front: {
  27128. height: math.unit(14, "feet"),
  27129. weight: math.unit(959, "lb"),
  27130. name: "Front",
  27131. image: {
  27132. source: "./media/characters/arsenal/front.svg",
  27133. extra: 2357 / 2157,
  27134. bottom: 93 / 2458
  27135. }
  27136. },
  27137. },
  27138. [
  27139. {
  27140. name: "Normal",
  27141. height: math.unit(14, "feet"),
  27142. default: true
  27143. },
  27144. ]
  27145. ))
  27146. characterMakers.push(() => makeCharacter(
  27147. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27148. {
  27149. front: {
  27150. height: math.unit(6, "feet"),
  27151. weight: math.unit(150, "lb"),
  27152. name: "Front",
  27153. image: {
  27154. source: "./media/characters/adira/front.svg",
  27155. extra: 1078 / 1029,
  27156. bottom: 87 / 1166
  27157. }
  27158. },
  27159. },
  27160. [
  27161. {
  27162. name: "Micro",
  27163. height: math.unit(4, "inches"),
  27164. default: true
  27165. },
  27166. {
  27167. name: "Macro",
  27168. height: math.unit(50, "feet")
  27169. },
  27170. ]
  27171. ))
  27172. characterMakers.push(() => makeCharacter(
  27173. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27174. {
  27175. front: {
  27176. height: math.unit(16, "feet"),
  27177. weight: math.unit(1000, "lb"),
  27178. name: "Front",
  27179. image: {
  27180. source: "./media/characters/grim/front.svg",
  27181. extra: 622 / 614,
  27182. bottom: 18.1 / 642
  27183. }
  27184. },
  27185. back: {
  27186. height: math.unit(16, "feet"),
  27187. weight: math.unit(1000, "lb"),
  27188. name: "Back",
  27189. image: {
  27190. source: "./media/characters/grim/back.svg",
  27191. extra: 610.6 / 602,
  27192. bottom: 40.8 / 652
  27193. }
  27194. },
  27195. hunched: {
  27196. height: math.unit(9.75, "feet"),
  27197. weight: math.unit(1000, "lb"),
  27198. name: "Hunched",
  27199. image: {
  27200. source: "./media/characters/grim/hunched.svg",
  27201. extra: 304 / 297,
  27202. bottom: 35.4 / 394
  27203. }
  27204. },
  27205. },
  27206. [
  27207. {
  27208. name: "Normal",
  27209. height: math.unit(16, "feet"),
  27210. default: true
  27211. },
  27212. ]
  27213. ))
  27214. characterMakers.push(() => makeCharacter(
  27215. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27216. {
  27217. front: {
  27218. height: math.unit(2.3, "meters"),
  27219. weight: math.unit(300, "lb"),
  27220. name: "Front",
  27221. image: {
  27222. source: "./media/characters/sinja/front-sfw.svg",
  27223. extra: 1393 / 1294,
  27224. bottom: 70 / 1463
  27225. }
  27226. },
  27227. frontNsfw: {
  27228. height: math.unit(2.3, "meters"),
  27229. weight: math.unit(300, "lb"),
  27230. name: "Front (NSFW)",
  27231. image: {
  27232. source: "./media/characters/sinja/front-nsfw.svg",
  27233. extra: 1393 / 1294,
  27234. bottom: 70 / 1463
  27235. }
  27236. },
  27237. back: {
  27238. height: math.unit(2.3, "meters"),
  27239. weight: math.unit(300, "lb"),
  27240. name: "Back",
  27241. image: {
  27242. source: "./media/characters/sinja/back.svg",
  27243. extra: 1393 / 1294,
  27244. bottom: 70 / 1463
  27245. }
  27246. },
  27247. head: {
  27248. height: math.unit(1.771, "feet"),
  27249. name: "Head",
  27250. image: {
  27251. source: "./media/characters/sinja/head.svg"
  27252. }
  27253. },
  27254. slit: {
  27255. height: math.unit(0.8, "feet"),
  27256. name: "Slit",
  27257. image: {
  27258. source: "./media/characters/sinja/slit.svg"
  27259. }
  27260. },
  27261. },
  27262. [
  27263. {
  27264. name: "Normal",
  27265. height: math.unit(2.3, "meters")
  27266. },
  27267. {
  27268. name: "Macro",
  27269. height: math.unit(91, "meters"),
  27270. default: true
  27271. },
  27272. {
  27273. name: "Megamacro",
  27274. height: math.unit(91440, "meters")
  27275. },
  27276. {
  27277. name: "Gigamacro",
  27278. height: math.unit(60960000, "meters")
  27279. },
  27280. {
  27281. name: "Teramacro",
  27282. height: math.unit(9144000000, "meters")
  27283. },
  27284. ]
  27285. ))
  27286. characterMakers.push(() => makeCharacter(
  27287. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27288. {
  27289. front: {
  27290. height: math.unit(1.7, "meters"),
  27291. weight: math.unit(130, "lb"),
  27292. name: "Front",
  27293. image: {
  27294. source: "./media/characters/kyu/front.svg",
  27295. extra: 415 / 395,
  27296. bottom: 5 / 420
  27297. }
  27298. },
  27299. head: {
  27300. height: math.unit(1.75, "feet"),
  27301. name: "Head",
  27302. image: {
  27303. source: "./media/characters/kyu/head.svg"
  27304. }
  27305. },
  27306. foot: {
  27307. height: math.unit(0.81, "feet"),
  27308. name: "Foot",
  27309. image: {
  27310. source: "./media/characters/kyu/foot.svg"
  27311. }
  27312. },
  27313. },
  27314. [
  27315. {
  27316. name: "Normal",
  27317. height: math.unit(1.7, "meters")
  27318. },
  27319. {
  27320. name: "Macro",
  27321. height: math.unit(131, "feet"),
  27322. default: true
  27323. },
  27324. {
  27325. name: "Megamacro",
  27326. height: math.unit(91440, "meters")
  27327. },
  27328. {
  27329. name: "Gigamacro",
  27330. height: math.unit(60960000, "meters")
  27331. },
  27332. {
  27333. name: "Teramacro",
  27334. height: math.unit(9144000000, "meters")
  27335. },
  27336. ]
  27337. ))
  27338. characterMakers.push(() => makeCharacter(
  27339. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27340. {
  27341. front: {
  27342. height: math.unit(7 + 1 / 12, "feet"),
  27343. weight: math.unit(250, "lb"),
  27344. name: "Front",
  27345. image: {
  27346. source: "./media/characters/joey/front.svg",
  27347. extra: 1791 / 1537,
  27348. bottom: 28 / 1816
  27349. }
  27350. },
  27351. },
  27352. [
  27353. {
  27354. name: "Micro",
  27355. height: math.unit(3, "inches")
  27356. },
  27357. {
  27358. name: "Normal",
  27359. height: math.unit(7 + 1 / 12, "feet"),
  27360. default: true
  27361. },
  27362. ]
  27363. ))
  27364. characterMakers.push(() => makeCharacter(
  27365. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27366. {
  27367. front: {
  27368. height: math.unit(165, "cm"),
  27369. weight: math.unit(140, "lb"),
  27370. name: "Front",
  27371. image: {
  27372. source: "./media/characters/sam-evans/front.svg",
  27373. extra: 3417 / 3230,
  27374. bottom: 41.3 / 3417
  27375. }
  27376. },
  27377. frontSixTails: {
  27378. height: math.unit(165, "cm"),
  27379. weight: math.unit(140, "lb"),
  27380. name: "Front-six-tails",
  27381. image: {
  27382. source: "./media/characters/sam-evans/front-six-tails.svg",
  27383. extra: 3417 / 3230,
  27384. bottom: 41.3 / 3417
  27385. }
  27386. },
  27387. back: {
  27388. height: math.unit(165, "cm"),
  27389. weight: math.unit(140, "lb"),
  27390. name: "Back",
  27391. image: {
  27392. source: "./media/characters/sam-evans/back.svg",
  27393. extra: 3227 / 3032,
  27394. bottom: 6.8 / 3234
  27395. }
  27396. },
  27397. face: {
  27398. height: math.unit(0.68, "feet"),
  27399. name: "Face",
  27400. image: {
  27401. source: "./media/characters/sam-evans/face.svg"
  27402. }
  27403. },
  27404. },
  27405. [
  27406. {
  27407. name: "Normal",
  27408. height: math.unit(165, "cm"),
  27409. default: true
  27410. },
  27411. {
  27412. name: "Macro",
  27413. height: math.unit(100, "meters")
  27414. },
  27415. {
  27416. name: "Macro+",
  27417. height: math.unit(800, "meters")
  27418. },
  27419. {
  27420. name: "Macro++",
  27421. height: math.unit(3, "km")
  27422. },
  27423. {
  27424. name: "Macro+++",
  27425. height: math.unit(30, "km")
  27426. },
  27427. ]
  27428. ))
  27429. characterMakers.push(() => makeCharacter(
  27430. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27431. {
  27432. front: {
  27433. height: math.unit(10, "feet"),
  27434. weight: math.unit(750, "lb"),
  27435. name: "Front",
  27436. image: {
  27437. source: "./media/characters/juliet-a/front.svg",
  27438. extra: 1766 / 1720,
  27439. bottom: 43 / 1809
  27440. }
  27441. },
  27442. back: {
  27443. height: math.unit(10, "feet"),
  27444. weight: math.unit(750, "lb"),
  27445. name: "Back",
  27446. image: {
  27447. source: "./media/characters/juliet-a/back.svg",
  27448. extra: 1781 / 1734,
  27449. bottom: 35 / 1810,
  27450. }
  27451. },
  27452. },
  27453. [
  27454. {
  27455. name: "Normal",
  27456. height: math.unit(10, "feet"),
  27457. default: true
  27458. },
  27459. {
  27460. name: "Dragon Form",
  27461. height: math.unit(250, "feet")
  27462. },
  27463. {
  27464. name: "Macro",
  27465. height: math.unit(1000, "feet")
  27466. },
  27467. {
  27468. name: "Megamacro",
  27469. height: math.unit(10000, "feet")
  27470. }
  27471. ]
  27472. ))
  27473. characterMakers.push(() => makeCharacter(
  27474. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27475. {
  27476. regular: {
  27477. height: math.unit(7 + 3 / 12, "feet"),
  27478. weight: math.unit(260, "lb"),
  27479. name: "Regular",
  27480. image: {
  27481. source: "./media/characters/wild/regular.svg",
  27482. extra: 97.45 / 92,
  27483. bottom: 6.8 / 104.3
  27484. }
  27485. },
  27486. biggums: {
  27487. height: math.unit(8 + 6 / 12, "feet"),
  27488. weight: math.unit(425, "lb"),
  27489. name: "Biggums",
  27490. image: {
  27491. source: "./media/characters/wild/biggums.svg",
  27492. extra: 97.45 / 92,
  27493. bottom: 7.5 / 132.34
  27494. }
  27495. },
  27496. mawRegular: {
  27497. height: math.unit(1.24, "feet"),
  27498. name: "Maw (Regular)",
  27499. image: {
  27500. source: "./media/characters/wild/maw.svg"
  27501. }
  27502. },
  27503. mawBiggums: {
  27504. height: math.unit(1.47, "feet"),
  27505. name: "Maw (Biggums)",
  27506. image: {
  27507. source: "./media/characters/wild/maw.svg"
  27508. }
  27509. },
  27510. },
  27511. [
  27512. {
  27513. name: "Normal",
  27514. height: math.unit(7 + 3 / 12, "feet"),
  27515. default: true
  27516. },
  27517. ]
  27518. ))
  27519. characterMakers.push(() => makeCharacter(
  27520. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27521. {
  27522. front: {
  27523. height: math.unit(2.5, "meters"),
  27524. weight: math.unit(200, "kg"),
  27525. name: "Front",
  27526. image: {
  27527. source: "./media/characters/vidar/front.svg",
  27528. extra: 2994 / 2795,
  27529. bottom: 56 / 3061
  27530. }
  27531. },
  27532. back: {
  27533. height: math.unit(2.5, "meters"),
  27534. weight: math.unit(200, "kg"),
  27535. name: "Back",
  27536. image: {
  27537. source: "./media/characters/vidar/back.svg",
  27538. extra: 3131 / 2928,
  27539. bottom: 13.5 / 3141.5
  27540. }
  27541. },
  27542. feral: {
  27543. height: math.unit(2.5, "meters"),
  27544. weight: math.unit(2000, "kg"),
  27545. name: "Feral",
  27546. image: {
  27547. source: "./media/characters/vidar/feral.svg",
  27548. extra: 2790 / 1765,
  27549. bottom: 6 / 2796
  27550. }
  27551. },
  27552. },
  27553. [
  27554. {
  27555. name: "Normal",
  27556. height: math.unit(2.5, "meters"),
  27557. default: true
  27558. },
  27559. {
  27560. name: "Macro",
  27561. height: math.unit(100, "meters")
  27562. },
  27563. ]
  27564. ))
  27565. characterMakers.push(() => makeCharacter(
  27566. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27567. {
  27568. front: {
  27569. height: math.unit(5 + 9 / 12, "feet"),
  27570. weight: math.unit(120, "lb"),
  27571. name: "Front",
  27572. image: {
  27573. source: "./media/characters/ash/front.svg",
  27574. extra: 2189 / 1961,
  27575. bottom: 5.2 / 2194
  27576. }
  27577. },
  27578. },
  27579. [
  27580. {
  27581. name: "Normal",
  27582. height: math.unit(5 + 9 / 12, "feet"),
  27583. default: true
  27584. },
  27585. ]
  27586. ))
  27587. characterMakers.push(() => makeCharacter(
  27588. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27589. {
  27590. front: {
  27591. height: math.unit(9, "feet"),
  27592. weight: math.unit(10000, "lb"),
  27593. name: "Front",
  27594. image: {
  27595. source: "./media/characters/gygabite/front.svg",
  27596. bottom: 31.7 / 537.8,
  27597. extra: 505 / 370
  27598. }
  27599. },
  27600. },
  27601. [
  27602. {
  27603. name: "Normal",
  27604. height: math.unit(9, "feet"),
  27605. default: true
  27606. },
  27607. ]
  27608. ))
  27609. characterMakers.push(() => makeCharacter(
  27610. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27611. {
  27612. front: {
  27613. height: math.unit(12, "feet"),
  27614. weight: math.unit(35000, "lb"),
  27615. name: "Front",
  27616. image: {
  27617. source: "./media/characters/p0tat0/front.svg",
  27618. extra: 1065 / 921,
  27619. bottom: 55.7 / 1121.25
  27620. }
  27621. },
  27622. },
  27623. [
  27624. {
  27625. name: "Normal",
  27626. height: math.unit(12, "feet"),
  27627. default: true
  27628. },
  27629. ]
  27630. ))
  27631. characterMakers.push(() => makeCharacter(
  27632. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27633. {
  27634. side: {
  27635. height: math.unit(6.5, "feet"),
  27636. weight: math.unit(800, "lb"),
  27637. name: "Side",
  27638. image: {
  27639. source: "./media/characters/dusk/side.svg",
  27640. extra: 615 / 373,
  27641. bottom: 53 / 664
  27642. }
  27643. },
  27644. sitting: {
  27645. height: math.unit(7, "feet"),
  27646. weight: math.unit(800, "lb"),
  27647. name: "Sitting",
  27648. image: {
  27649. source: "./media/characters/dusk/sitting.svg",
  27650. extra: 753 / 425,
  27651. bottom: 33 / 774
  27652. }
  27653. },
  27654. head: {
  27655. height: math.unit(6.1, "feet"),
  27656. name: "Head",
  27657. image: {
  27658. source: "./media/characters/dusk/head.svg"
  27659. }
  27660. },
  27661. },
  27662. [
  27663. {
  27664. name: "Normal",
  27665. height: math.unit(7, "feet"),
  27666. default: true
  27667. },
  27668. ]
  27669. ))
  27670. characterMakers.push(() => makeCharacter(
  27671. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27672. {
  27673. front: {
  27674. height: math.unit(15, "feet"),
  27675. weight: math.unit(7000, "lb"),
  27676. name: "Front",
  27677. image: {
  27678. source: "./media/characters/jay-direwolf/front.svg",
  27679. extra: 1810 / 1732,
  27680. bottom: 66 / 1892
  27681. }
  27682. },
  27683. },
  27684. [
  27685. {
  27686. name: "Normal",
  27687. height: math.unit(15, "feet"),
  27688. default: true
  27689. },
  27690. ]
  27691. ))
  27692. characterMakers.push(() => makeCharacter(
  27693. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27694. {
  27695. front: {
  27696. height: math.unit(4 + 9 / 12, "feet"),
  27697. weight: math.unit(130, "lb"),
  27698. name: "Front",
  27699. image: {
  27700. source: "./media/characters/anchovie/front.svg",
  27701. extra: 382 / 350,
  27702. bottom: 25 / 409
  27703. }
  27704. },
  27705. back: {
  27706. height: math.unit(4 + 9 / 12, "feet"),
  27707. weight: math.unit(130, "lb"),
  27708. name: "Back",
  27709. image: {
  27710. source: "./media/characters/anchovie/back.svg",
  27711. extra: 385 / 352,
  27712. bottom: 16.6 / 402
  27713. }
  27714. },
  27715. frontDressed: {
  27716. height: math.unit(4 + 9 / 12, "feet"),
  27717. weight: math.unit(130, "lb"),
  27718. name: "Front (Dressed)",
  27719. image: {
  27720. source: "./media/characters/anchovie/front-dressed.svg",
  27721. extra: 382 / 350,
  27722. bottom: 25 / 409
  27723. }
  27724. },
  27725. backDressed: {
  27726. height: math.unit(4 + 9 / 12, "feet"),
  27727. weight: math.unit(130, "lb"),
  27728. name: "Back (Dressed)",
  27729. image: {
  27730. source: "./media/characters/anchovie/back-dressed.svg",
  27731. extra: 385 / 352,
  27732. bottom: 16.6 / 402
  27733. }
  27734. },
  27735. },
  27736. [
  27737. {
  27738. name: "Micro",
  27739. height: math.unit(6.4, "inches")
  27740. },
  27741. {
  27742. name: "Normal",
  27743. height: math.unit(4 + 9 / 12, "feet"),
  27744. default: true
  27745. },
  27746. ]
  27747. ))
  27748. characterMakers.push(() => makeCharacter(
  27749. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27750. {
  27751. front: {
  27752. height: math.unit(2, "meters"),
  27753. weight: math.unit(180, "lb"),
  27754. name: "Front",
  27755. image: {
  27756. source: "./media/characters/acidrenamon/front.svg",
  27757. extra: 987 / 890,
  27758. bottom: 22.8 / 1009
  27759. }
  27760. },
  27761. back: {
  27762. height: math.unit(2, "meters"),
  27763. weight: math.unit(180, "lb"),
  27764. name: "Back",
  27765. image: {
  27766. source: "./media/characters/acidrenamon/back.svg",
  27767. extra: 983 / 891,
  27768. bottom: 8.4 / 992
  27769. }
  27770. },
  27771. head: {
  27772. height: math.unit(1.92, "feet"),
  27773. name: "Head",
  27774. image: {
  27775. source: "./media/characters/acidrenamon/head.svg"
  27776. }
  27777. },
  27778. rump: {
  27779. height: math.unit(1.72, "feet"),
  27780. name: "Rump",
  27781. image: {
  27782. source: "./media/characters/acidrenamon/rump.svg"
  27783. }
  27784. },
  27785. tail: {
  27786. height: math.unit(4.2, "feet"),
  27787. name: "Tail",
  27788. image: {
  27789. source: "./media/characters/acidrenamon/tail.svg"
  27790. }
  27791. },
  27792. },
  27793. [
  27794. {
  27795. name: "Normal",
  27796. height: math.unit(2, "meters"),
  27797. default: true
  27798. },
  27799. {
  27800. name: "Minimacro",
  27801. height: math.unit(7, "meters")
  27802. },
  27803. {
  27804. name: "Macro",
  27805. height: math.unit(200, "meters")
  27806. },
  27807. {
  27808. name: "Gigamacro",
  27809. height: math.unit(0.2, "earths")
  27810. },
  27811. ]
  27812. ))
  27813. characterMakers.push(() => makeCharacter(
  27814. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27815. {
  27816. front: {
  27817. height: math.unit(152, "feet"),
  27818. name: "Front",
  27819. image: {
  27820. source: "./media/characters/kenzie-lee/front.svg",
  27821. extra: 1869/1774,
  27822. bottom: 128/1997
  27823. }
  27824. },
  27825. side: {
  27826. height: math.unit(86, "feet"),
  27827. name: "Side",
  27828. image: {
  27829. source: "./media/characters/kenzie-lee/side.svg",
  27830. extra: 930/815,
  27831. bottom: 177/1107
  27832. }
  27833. },
  27834. paw: {
  27835. height: math.unit(15, "feet"),
  27836. name: "Paw",
  27837. image: {
  27838. source: "./media/characters/kenzie-lee/paw.svg"
  27839. }
  27840. },
  27841. },
  27842. [
  27843. {
  27844. name: "Micro",
  27845. height: math.unit(1.5, "inches")
  27846. },
  27847. {
  27848. name: "Normal",
  27849. height: math.unit(152, "feet"),
  27850. default: true
  27851. },
  27852. {
  27853. name: "Megamacro",
  27854. height: math.unit(7, "miles")
  27855. },
  27856. {
  27857. name: "Gigamacro",
  27858. height: math.unit(8000, "miles")
  27859. },
  27860. ]
  27861. ))
  27862. characterMakers.push(() => makeCharacter(
  27863. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27864. {
  27865. side: {
  27866. height: math.unit(6, "feet"),
  27867. weight: math.unit(150, "lb"),
  27868. name: "Side",
  27869. image: {
  27870. source: "./media/characters/withers/side.svg",
  27871. extra: 1830 / 1728,
  27872. bottom: 96 / 1927
  27873. }
  27874. },
  27875. front: {
  27876. height: math.unit(6, "feet"),
  27877. weight: math.unit(150, "lb"),
  27878. name: "Front",
  27879. image: {
  27880. source: "./media/characters/withers/front.svg",
  27881. extra: 1514 / 1438,
  27882. bottom: 118 / 1632
  27883. }
  27884. },
  27885. },
  27886. [
  27887. {
  27888. name: "Macro",
  27889. height: math.unit(168, "feet"),
  27890. default: true
  27891. },
  27892. {
  27893. name: "Megamacro",
  27894. height: math.unit(15, "miles")
  27895. }
  27896. ]
  27897. ))
  27898. characterMakers.push(() => makeCharacter(
  27899. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27900. {
  27901. front: {
  27902. height: math.unit(6 + 7 / 12, "feet"),
  27903. weight: math.unit(250, "lb"),
  27904. name: "Front",
  27905. image: {
  27906. source: "./media/characters/nemoskii/front.svg",
  27907. extra: 2270 / 1734,
  27908. bottom: 86 / 2354
  27909. }
  27910. },
  27911. back: {
  27912. height: math.unit(6 + 7 / 12, "feet"),
  27913. weight: math.unit(250, "lb"),
  27914. name: "Back",
  27915. image: {
  27916. source: "./media/characters/nemoskii/back.svg",
  27917. extra: 1845 / 1788,
  27918. bottom: 10.5 / 1852
  27919. }
  27920. },
  27921. head: {
  27922. height: math.unit(1.31, "feet"),
  27923. name: "Head",
  27924. image: {
  27925. source: "./media/characters/nemoskii/head.svg"
  27926. }
  27927. },
  27928. },
  27929. [
  27930. {
  27931. name: "Micro",
  27932. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27933. },
  27934. {
  27935. name: "Normal",
  27936. height: math.unit(6 + 7 / 12, "feet"),
  27937. default: true
  27938. },
  27939. {
  27940. name: "Macro",
  27941. height: math.unit((6 + 7 / 12) * 150, "feet")
  27942. },
  27943. {
  27944. name: "Macro+",
  27945. height: math.unit((6 + 7 / 12) * 500, "feet")
  27946. },
  27947. {
  27948. name: "Megamacro",
  27949. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27950. },
  27951. ]
  27952. ))
  27953. characterMakers.push(() => makeCharacter(
  27954. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27955. {
  27956. front: {
  27957. height: math.unit(1, "mile"),
  27958. weight: math.unit(265261.9, "lb"),
  27959. name: "Front",
  27960. image: {
  27961. source: "./media/characters/shui/front.svg",
  27962. extra: 1633 / 1564,
  27963. bottom: 91.5 / 1726
  27964. }
  27965. },
  27966. },
  27967. [
  27968. {
  27969. name: "Macro",
  27970. height: math.unit(1, "mile"),
  27971. default: true
  27972. },
  27973. ]
  27974. ))
  27975. characterMakers.push(() => makeCharacter(
  27976. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27977. {
  27978. front: {
  27979. height: math.unit(12 + 6 / 12, "feet"),
  27980. weight: math.unit(1342, "lb"),
  27981. name: "Front",
  27982. image: {
  27983. source: "./media/characters/arokh-takakura/front.svg",
  27984. extra: 1089 / 1043,
  27985. bottom: 77.4 / 1176.7
  27986. }
  27987. },
  27988. back: {
  27989. height: math.unit(12 + 6 / 12, "feet"),
  27990. weight: math.unit(1342, "lb"),
  27991. name: "Back",
  27992. image: {
  27993. source: "./media/characters/arokh-takakura/back.svg",
  27994. extra: 1046 / 1019,
  27995. bottom: 102 / 1150
  27996. }
  27997. },
  27998. },
  27999. [
  28000. {
  28001. name: "Big",
  28002. height: math.unit(12 + 6 / 12, "feet"),
  28003. default: true
  28004. },
  28005. ]
  28006. ))
  28007. characterMakers.push(() => makeCharacter(
  28008. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28009. {
  28010. front: {
  28011. height: math.unit(5 + 6 / 12, "feet"),
  28012. weight: math.unit(150, "lb"),
  28013. name: "Front",
  28014. image: {
  28015. source: "./media/characters/theo/front.svg",
  28016. extra: 1184 / 1131,
  28017. bottom: 7.4 / 1191
  28018. }
  28019. },
  28020. },
  28021. [
  28022. {
  28023. name: "Micro",
  28024. height: math.unit(5, "inches")
  28025. },
  28026. {
  28027. name: "Normal",
  28028. height: math.unit(5 + 6 / 12, "feet"),
  28029. default: true
  28030. },
  28031. ]
  28032. ))
  28033. characterMakers.push(() => makeCharacter(
  28034. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28035. {
  28036. front: {
  28037. height: math.unit(5 + 9 / 12, "feet"),
  28038. weight: math.unit(130, "lb"),
  28039. name: "Front",
  28040. image: {
  28041. source: "./media/characters/cecelia-swift/front.svg",
  28042. extra: 502 / 484,
  28043. bottom: 23 / 523
  28044. }
  28045. },
  28046. back: {
  28047. height: math.unit(5 + 9 / 12, "feet"),
  28048. weight: math.unit(130, "lb"),
  28049. name: "Back",
  28050. image: {
  28051. source: "./media/characters/cecelia-swift/back.svg",
  28052. extra: 499 / 485,
  28053. bottom: 12 / 511
  28054. }
  28055. },
  28056. head: {
  28057. height: math.unit(0.90, "feet"),
  28058. name: "Head",
  28059. image: {
  28060. source: "./media/characters/cecelia-swift/head.svg"
  28061. }
  28062. },
  28063. rump: {
  28064. height: math.unit(1.75, "feet"),
  28065. name: "Rump",
  28066. image: {
  28067. source: "./media/characters/cecelia-swift/rump.svg"
  28068. }
  28069. },
  28070. },
  28071. [
  28072. {
  28073. name: "Normal",
  28074. height: math.unit(5 + 9 / 12, "feet"),
  28075. default: true
  28076. },
  28077. {
  28078. name: "Big",
  28079. height: math.unit(50, "feet")
  28080. },
  28081. {
  28082. name: "Macro",
  28083. height: math.unit(100, "feet")
  28084. },
  28085. {
  28086. name: "Macro+",
  28087. height: math.unit(500, "feet")
  28088. },
  28089. {
  28090. name: "Macro++",
  28091. height: math.unit(1000, "feet")
  28092. },
  28093. ]
  28094. ))
  28095. characterMakers.push(() => makeCharacter(
  28096. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28097. {
  28098. front: {
  28099. height: math.unit(6, "feet"),
  28100. weight: math.unit(150, "lb"),
  28101. name: "Front",
  28102. image: {
  28103. source: "./media/characters/kaunan/front.svg",
  28104. extra: 2890 / 2523,
  28105. bottom: 49 / 2939
  28106. }
  28107. },
  28108. },
  28109. [
  28110. {
  28111. name: "Macro",
  28112. height: math.unit(150, "feet"),
  28113. default: true
  28114. },
  28115. ]
  28116. ))
  28117. characterMakers.push(() => makeCharacter(
  28118. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28119. {
  28120. front: {
  28121. height: math.unit(175, "cm"),
  28122. weight: math.unit(60, "kg"),
  28123. name: "Front",
  28124. image: {
  28125. source: "./media/characters/fei/front.svg",
  28126. extra: 1873/1723,
  28127. bottom: 53/1926
  28128. }
  28129. },
  28130. },
  28131. [
  28132. {
  28133. name: "Mortal",
  28134. height: math.unit(175, "cm")
  28135. },
  28136. {
  28137. name: "Normal",
  28138. height: math.unit(3500, "m"),
  28139. default: true
  28140. },
  28141. {
  28142. name: "Stroll",
  28143. height: math.unit(17.5, "km")
  28144. },
  28145. {
  28146. name: "Showoff",
  28147. height: math.unit(175, "km")
  28148. },
  28149. ]
  28150. ))
  28151. characterMakers.push(() => makeCharacter(
  28152. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28153. {
  28154. front: {
  28155. height: math.unit(7, "feet"),
  28156. weight: math.unit(1000, "kg"),
  28157. name: "Front",
  28158. image: {
  28159. source: "./media/characters/edrax/front.svg",
  28160. extra: 2838 / 2550,
  28161. bottom: 130 / 2968
  28162. }
  28163. },
  28164. },
  28165. [
  28166. {
  28167. name: "Small",
  28168. height: math.unit(7, "feet")
  28169. },
  28170. {
  28171. name: "Normal",
  28172. height: math.unit(1500, "meters")
  28173. },
  28174. {
  28175. name: "Mega",
  28176. height: math.unit(12000000, "km"),
  28177. default: true
  28178. },
  28179. {
  28180. name: "Megamacro",
  28181. height: math.unit(10600000, "lightyears")
  28182. },
  28183. {
  28184. name: "Hypermacro",
  28185. height: math.unit(256, "yottameters")
  28186. },
  28187. ]
  28188. ))
  28189. characterMakers.push(() => makeCharacter(
  28190. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28191. {
  28192. front: {
  28193. height: math.unit(10, "feet"),
  28194. weight: math.unit(750, "lb"),
  28195. name: "Front",
  28196. image: {
  28197. source: "./media/characters/clove/front.svg",
  28198. extra: 1918/1751,
  28199. bottom: 52/1970
  28200. }
  28201. },
  28202. back: {
  28203. height: math.unit(10, "feet"),
  28204. weight: math.unit(750, "lb"),
  28205. name: "Back",
  28206. image: {
  28207. source: "./media/characters/clove/back.svg",
  28208. extra: 1912/1747,
  28209. bottom: 50/1962
  28210. }
  28211. },
  28212. },
  28213. [
  28214. {
  28215. name: "Normal",
  28216. height: math.unit(10, "feet"),
  28217. default: true
  28218. },
  28219. ]
  28220. ))
  28221. characterMakers.push(() => makeCharacter(
  28222. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28223. {
  28224. front: {
  28225. height: math.unit(4, "feet"),
  28226. weight: math.unit(50, "lb"),
  28227. name: "Front",
  28228. image: {
  28229. source: "./media/characters/alex-rabbit/front.svg",
  28230. extra: 507 / 458,
  28231. bottom: 18.5 / 527
  28232. }
  28233. },
  28234. back: {
  28235. height: math.unit(4, "feet"),
  28236. weight: math.unit(50, "lb"),
  28237. name: "Back",
  28238. image: {
  28239. source: "./media/characters/alex-rabbit/back.svg",
  28240. extra: 502 / 460,
  28241. bottom: 18.9 / 521
  28242. }
  28243. },
  28244. },
  28245. [
  28246. {
  28247. name: "Normal",
  28248. height: math.unit(4, "feet"),
  28249. default: true
  28250. },
  28251. ]
  28252. ))
  28253. characterMakers.push(() => makeCharacter(
  28254. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28255. {
  28256. front: {
  28257. height: math.unit(1 + 3 / 12, "feet"),
  28258. weight: math.unit(80, "lb"),
  28259. name: "Front",
  28260. image: {
  28261. source: "./media/characters/zander-rose/front.svg",
  28262. extra: 916 / 797,
  28263. bottom: 17 / 933
  28264. }
  28265. },
  28266. back: {
  28267. height: math.unit(1 + 3 / 12, "feet"),
  28268. weight: math.unit(80, "lb"),
  28269. name: "Back",
  28270. image: {
  28271. source: "./media/characters/zander-rose/back.svg",
  28272. extra: 903 / 779,
  28273. bottom: 31 / 934
  28274. }
  28275. },
  28276. },
  28277. [
  28278. {
  28279. name: "Normal",
  28280. height: math.unit(1 + 3 / 12, "feet"),
  28281. default: true
  28282. },
  28283. ]
  28284. ))
  28285. characterMakers.push(() => makeCharacter(
  28286. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28287. {
  28288. anthro: {
  28289. height: math.unit(6, "feet"),
  28290. weight: math.unit(150, "lb"),
  28291. name: "Anthro",
  28292. image: {
  28293. source: "./media/characters/razz/anthro.svg",
  28294. extra: 1437 / 1343,
  28295. bottom: 48 / 1485
  28296. }
  28297. },
  28298. feral: {
  28299. height: math.unit(6, "feet"),
  28300. weight: math.unit(150, "lb"),
  28301. name: "Feral",
  28302. image: {
  28303. source: "./media/characters/razz/feral.svg",
  28304. extra: 2569 / 1385,
  28305. bottom: 95 / 2664
  28306. }
  28307. },
  28308. },
  28309. [
  28310. {
  28311. name: "Normal",
  28312. height: math.unit(6, "feet"),
  28313. default: true
  28314. },
  28315. ]
  28316. ))
  28317. characterMakers.push(() => makeCharacter(
  28318. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28319. {
  28320. front: {
  28321. height: math.unit(9 + 4 / 12, "feet"),
  28322. weight: math.unit(500, "lb"),
  28323. name: "Front",
  28324. image: {
  28325. source: "./media/characters/morrigan/front.svg",
  28326. extra: 2707 / 2579,
  28327. bottom: 156 / 2863
  28328. }
  28329. },
  28330. },
  28331. [
  28332. {
  28333. name: "Normal",
  28334. height: math.unit(9 + 4 / 12, "feet"),
  28335. default: true
  28336. },
  28337. ]
  28338. ))
  28339. characterMakers.push(() => makeCharacter(
  28340. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28341. {
  28342. front: {
  28343. height: math.unit(5, "stories"),
  28344. weight: math.unit(4000, "lb"),
  28345. name: "Front",
  28346. image: {
  28347. source: "./media/characters/jenene/front.svg",
  28348. extra: 1780 / 1710,
  28349. bottom: 57 / 1837
  28350. }
  28351. },
  28352. },
  28353. [
  28354. {
  28355. name: "Normal",
  28356. height: math.unit(5, "stories"),
  28357. default: true
  28358. },
  28359. ]
  28360. ))
  28361. characterMakers.push(() => makeCharacter(
  28362. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28363. {
  28364. taurSfw: {
  28365. height: math.unit(10, "meters"),
  28366. weight: math.unit(17500, "kg"),
  28367. name: "Taur",
  28368. image: {
  28369. source: "./media/characters/faey/taur-sfw.svg",
  28370. extra: 1200 / 968,
  28371. bottom: 41 / 1241
  28372. }
  28373. },
  28374. chestmaw: {
  28375. height: math.unit(2.01, "meters"),
  28376. name: "Chestmaw",
  28377. image: {
  28378. source: "./media/characters/faey/chestmaw.svg"
  28379. }
  28380. },
  28381. foot: {
  28382. height: math.unit(2.43, "meters"),
  28383. name: "Foot",
  28384. image: {
  28385. source: "./media/characters/faey/foot.svg"
  28386. }
  28387. },
  28388. jaws: {
  28389. height: math.unit(1.66, "meters"),
  28390. name: "Jaws",
  28391. image: {
  28392. source: "./media/characters/faey/jaws.svg"
  28393. }
  28394. },
  28395. tongues: {
  28396. height: math.unit(2.01, "meters"),
  28397. name: "Tongues",
  28398. image: {
  28399. source: "./media/characters/faey/tongues.svg"
  28400. }
  28401. },
  28402. },
  28403. [
  28404. {
  28405. name: "Small",
  28406. height: math.unit(10, "meters"),
  28407. default: true
  28408. },
  28409. {
  28410. name: "Big",
  28411. height: math.unit(500000, "km")
  28412. },
  28413. ]
  28414. ))
  28415. characterMakers.push(() => makeCharacter(
  28416. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28417. {
  28418. front: {
  28419. height: math.unit(7, "feet"),
  28420. weight: math.unit(275, "lb"),
  28421. name: "Front",
  28422. image: {
  28423. source: "./media/characters/roku/front.svg",
  28424. extra: 903 / 878,
  28425. bottom: 37 / 940
  28426. }
  28427. },
  28428. },
  28429. [
  28430. {
  28431. name: "Normal",
  28432. height: math.unit(7, "feet"),
  28433. default: true
  28434. },
  28435. {
  28436. name: "Macro",
  28437. height: math.unit(500, "feet")
  28438. },
  28439. {
  28440. name: "Megamacro",
  28441. height: math.unit(200, "miles")
  28442. },
  28443. ]
  28444. ))
  28445. characterMakers.push(() => makeCharacter(
  28446. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28447. {
  28448. front: {
  28449. height: math.unit(6 + 2 / 12, "feet"),
  28450. weight: math.unit(150, "lb"),
  28451. name: "Front",
  28452. image: {
  28453. source: "./media/characters/lira/front.svg",
  28454. extra: 1727 / 1605,
  28455. bottom: 26 / 1753
  28456. }
  28457. },
  28458. back: {
  28459. height: math.unit(6 + 2 / 12, "feet"),
  28460. weight: math.unit(150, "lb"),
  28461. name: "Back",
  28462. image: {
  28463. source: "./media/characters/lira/back.svg",
  28464. extra: 1713/1621,
  28465. bottom: 20/1733
  28466. }
  28467. },
  28468. hand: {
  28469. height: math.unit(0.75, "feet"),
  28470. name: "Hand",
  28471. image: {
  28472. source: "./media/characters/lira/hand.svg"
  28473. }
  28474. },
  28475. maw: {
  28476. height: math.unit(0.65, "feet"),
  28477. name: "Maw",
  28478. image: {
  28479. source: "./media/characters/lira/maw.svg"
  28480. }
  28481. },
  28482. pawDigi: {
  28483. height: math.unit(1.6, "feet"),
  28484. name: "Paw Digi",
  28485. image: {
  28486. source: "./media/characters/lira/paw-digi.svg"
  28487. }
  28488. },
  28489. pawPlanti: {
  28490. height: math.unit(1.4, "feet"),
  28491. name: "Paw Planti",
  28492. image: {
  28493. source: "./media/characters/lira/paw-planti.svg"
  28494. }
  28495. },
  28496. },
  28497. [
  28498. {
  28499. name: "Normal",
  28500. height: math.unit(6 + 2 / 12, "feet"),
  28501. default: true
  28502. },
  28503. {
  28504. name: "Macro",
  28505. height: math.unit(100, "feet")
  28506. },
  28507. {
  28508. name: "Macro²",
  28509. height: math.unit(1600, "feet")
  28510. },
  28511. {
  28512. name: "Planetary",
  28513. height: math.unit(20, "earths")
  28514. },
  28515. ]
  28516. ))
  28517. characterMakers.push(() => makeCharacter(
  28518. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28519. {
  28520. front: {
  28521. height: math.unit(6, "feet"),
  28522. weight: math.unit(150, "lb"),
  28523. name: "Front",
  28524. image: {
  28525. source: "./media/characters/hadjet/front.svg",
  28526. extra: 1480 / 1346,
  28527. bottom: 26 / 1506
  28528. }
  28529. },
  28530. frontNsfw: {
  28531. height: math.unit(6, "feet"),
  28532. weight: math.unit(150, "lb"),
  28533. name: "Front (NSFW)",
  28534. image: {
  28535. source: "./media/characters/hadjet/front-nsfw.svg",
  28536. extra: 1440 / 1358,
  28537. bottom: 52 / 1492
  28538. }
  28539. },
  28540. },
  28541. [
  28542. {
  28543. name: "Macro",
  28544. height: math.unit(10, "stories"),
  28545. default: true
  28546. },
  28547. {
  28548. name: "Megamacro",
  28549. height: math.unit(1.5, "miles")
  28550. },
  28551. {
  28552. name: "Megamacro+",
  28553. height: math.unit(5, "miles")
  28554. },
  28555. ]
  28556. ))
  28557. characterMakers.push(() => makeCharacter(
  28558. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28559. {
  28560. side: {
  28561. height: math.unit(106, "feet"),
  28562. weight: math.unit(500, "tonnes"),
  28563. name: "Side",
  28564. image: {
  28565. source: "./media/characters/kodran/side.svg",
  28566. extra: 553 / 480,
  28567. bottom: 33 / 586
  28568. }
  28569. },
  28570. front: {
  28571. height: math.unit(132, "feet"),
  28572. weight: math.unit(500, "tonnes"),
  28573. name: "Front",
  28574. image: {
  28575. source: "./media/characters/kodran/front.svg",
  28576. extra: 667 / 643,
  28577. bottom: 42 / 709
  28578. }
  28579. },
  28580. flying: {
  28581. height: math.unit(350, "feet"),
  28582. weight: math.unit(500, "tonnes"),
  28583. name: "Flying",
  28584. image: {
  28585. source: "./media/characters/kodran/flying.svg"
  28586. }
  28587. },
  28588. foot: {
  28589. height: math.unit(33, "feet"),
  28590. name: "Foot",
  28591. image: {
  28592. source: "./media/characters/kodran/foot.svg"
  28593. }
  28594. },
  28595. footFront: {
  28596. height: math.unit(19, "feet"),
  28597. name: "Foot (Front)",
  28598. image: {
  28599. source: "./media/characters/kodran/foot-front.svg",
  28600. extra: 261 / 261,
  28601. bottom: 91 / 352
  28602. }
  28603. },
  28604. headFront: {
  28605. height: math.unit(53, "feet"),
  28606. name: "Head (Front)",
  28607. image: {
  28608. source: "./media/characters/kodran/head-front.svg"
  28609. }
  28610. },
  28611. headSide: {
  28612. height: math.unit(65, "feet"),
  28613. name: "Head (Side)",
  28614. image: {
  28615. source: "./media/characters/kodran/head-side.svg"
  28616. }
  28617. },
  28618. throat: {
  28619. height: math.unit(79, "feet"),
  28620. name: "Throat",
  28621. image: {
  28622. source: "./media/characters/kodran/throat.svg"
  28623. }
  28624. },
  28625. },
  28626. [
  28627. {
  28628. name: "Large",
  28629. height: math.unit(106, "feet"),
  28630. default: true
  28631. },
  28632. ]
  28633. ))
  28634. characterMakers.push(() => makeCharacter(
  28635. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28636. {
  28637. side: {
  28638. height: math.unit(11, "feet"),
  28639. weight: math.unit(150, "lb"),
  28640. name: "Side",
  28641. image: {
  28642. source: "./media/characters/pyxaron/side.svg",
  28643. extra: 305 / 195,
  28644. bottom: 17 / 322
  28645. }
  28646. },
  28647. },
  28648. [
  28649. {
  28650. name: "Normal",
  28651. height: math.unit(11, "feet"),
  28652. default: true
  28653. },
  28654. ]
  28655. ))
  28656. characterMakers.push(() => makeCharacter(
  28657. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28658. {
  28659. front: {
  28660. height: math.unit(6, "feet"),
  28661. weight: math.unit(150, "lb"),
  28662. name: "Front",
  28663. image: {
  28664. source: "./media/characters/meep/front.svg",
  28665. extra: 88 / 80,
  28666. bottom: 6 / 94
  28667. }
  28668. },
  28669. },
  28670. [
  28671. {
  28672. name: "Fun Sized",
  28673. height: math.unit(2, "inches"),
  28674. default: true
  28675. },
  28676. {
  28677. name: "Friend Sized",
  28678. height: math.unit(8, "inches")
  28679. },
  28680. ]
  28681. ))
  28682. characterMakers.push(() => makeCharacter(
  28683. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28684. {
  28685. front: {
  28686. height: math.unit(15, "feet"),
  28687. weight: math.unit(2500, "lb"),
  28688. name: "Front",
  28689. image: {
  28690. source: "./media/characters/holly-rabbit/front.svg",
  28691. extra: 1433 / 1233,
  28692. bottom: 125 / 1558
  28693. }
  28694. },
  28695. dick: {
  28696. height: math.unit(4.6, "feet"),
  28697. name: "Dick",
  28698. image: {
  28699. source: "./media/characters/holly-rabbit/dick.svg"
  28700. }
  28701. },
  28702. },
  28703. [
  28704. {
  28705. name: "Normal",
  28706. height: math.unit(15, "feet"),
  28707. default: true
  28708. },
  28709. {
  28710. name: "Macro",
  28711. height: math.unit(250, "feet")
  28712. },
  28713. {
  28714. name: "Macro+",
  28715. height: math.unit(2500, "feet")
  28716. },
  28717. ]
  28718. ))
  28719. characterMakers.push(() => makeCharacter(
  28720. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28721. {
  28722. front: {
  28723. height: math.unit(3.02, "meters"),
  28724. weight: math.unit(500, "kg"),
  28725. name: "Front",
  28726. image: {
  28727. source: "./media/characters/drena/front.svg",
  28728. extra: 282 / 243,
  28729. bottom: 8 / 290
  28730. }
  28731. },
  28732. side: {
  28733. height: math.unit(3.02, "meters"),
  28734. weight: math.unit(500, "kg"),
  28735. name: "Side",
  28736. image: {
  28737. source: "./media/characters/drena/side.svg",
  28738. extra: 280 / 245,
  28739. bottom: 10 / 290
  28740. }
  28741. },
  28742. back: {
  28743. height: math.unit(3.02, "meters"),
  28744. weight: math.unit(500, "kg"),
  28745. name: "Back",
  28746. image: {
  28747. source: "./media/characters/drena/back.svg",
  28748. extra: 278 / 243,
  28749. bottom: 2 / 280
  28750. }
  28751. },
  28752. foot: {
  28753. height: math.unit(0.75, "meters"),
  28754. name: "Foot",
  28755. image: {
  28756. source: "./media/characters/drena/foot.svg"
  28757. }
  28758. },
  28759. maw: {
  28760. height: math.unit(0.82, "meters"),
  28761. name: "Maw",
  28762. image: {
  28763. source: "./media/characters/drena/maw.svg"
  28764. }
  28765. },
  28766. rump: {
  28767. height: math.unit(0.93, "meters"),
  28768. name: "Rump",
  28769. image: {
  28770. source: "./media/characters/drena/rump.svg"
  28771. }
  28772. },
  28773. },
  28774. [
  28775. {
  28776. name: "Normal",
  28777. height: math.unit(3.02, "meters"),
  28778. default: true
  28779. },
  28780. ]
  28781. ))
  28782. characterMakers.push(() => makeCharacter(
  28783. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28784. {
  28785. front: {
  28786. height: math.unit(6 + 4 / 12, "feet"),
  28787. weight: math.unit(250, "lb"),
  28788. name: "Front",
  28789. image: {
  28790. source: "./media/characters/remmyzilla/front.svg",
  28791. extra: 4033 / 3588,
  28792. bottom: 123 / 4156
  28793. }
  28794. },
  28795. back: {
  28796. height: math.unit(6 + 4 / 12, "feet"),
  28797. weight: math.unit(250, "lb"),
  28798. name: "Back",
  28799. image: {
  28800. source: "./media/characters/remmyzilla/back.svg",
  28801. extra: 2687 / 2555,
  28802. bottom: 48 / 2735
  28803. }
  28804. },
  28805. paw: {
  28806. height: math.unit(1.73, "feet"),
  28807. name: "Paw",
  28808. image: {
  28809. source: "./media/characters/remmyzilla/paw.svg"
  28810. }
  28811. },
  28812. maw: {
  28813. height: math.unit(1.73, "feet"),
  28814. name: "Maw",
  28815. image: {
  28816. source: "./media/characters/remmyzilla/maw.svg"
  28817. }
  28818. },
  28819. },
  28820. [
  28821. {
  28822. name: "Normal",
  28823. height: math.unit(6 + 4 / 12, "feet")
  28824. },
  28825. {
  28826. name: "Minimacro",
  28827. height: math.unit(12 + 8 / 12, "feet")
  28828. },
  28829. {
  28830. name: "Normal",
  28831. height: math.unit(640, "feet"),
  28832. default: true
  28833. },
  28834. {
  28835. name: "Megamacro",
  28836. height: math.unit(6400, "feet")
  28837. },
  28838. {
  28839. name: "Gigamacro",
  28840. height: math.unit(64000, "miles")
  28841. },
  28842. ]
  28843. ))
  28844. characterMakers.push(() => makeCharacter(
  28845. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28846. {
  28847. front: {
  28848. height: math.unit(2.5, "meters"),
  28849. weight: math.unit(300, "lb"),
  28850. name: "Front",
  28851. image: {
  28852. source: "./media/characters/lawrence/front.svg",
  28853. extra: 357 / 335,
  28854. bottom: 30 / 387
  28855. }
  28856. },
  28857. back: {
  28858. height: math.unit(2.5, "meters"),
  28859. weight: math.unit(300, "lb"),
  28860. name: "Back",
  28861. image: {
  28862. source: "./media/characters/lawrence/back.svg",
  28863. extra: 357 / 338,
  28864. bottom: 16 / 373
  28865. }
  28866. },
  28867. head: {
  28868. height: math.unit(0.9, "meter"),
  28869. name: "Head",
  28870. image: {
  28871. source: "./media/characters/lawrence/head.svg"
  28872. }
  28873. },
  28874. maw: {
  28875. height: math.unit(0.7, "meter"),
  28876. name: "Maw",
  28877. image: {
  28878. source: "./media/characters/lawrence/maw.svg"
  28879. }
  28880. },
  28881. footBottom: {
  28882. height: math.unit(0.5, "meter"),
  28883. name: "Foot (Bottom)",
  28884. image: {
  28885. source: "./media/characters/lawrence/foot-bottom.svg"
  28886. }
  28887. },
  28888. footTop: {
  28889. height: math.unit(0.5, "meter"),
  28890. name: "Foot (Top)",
  28891. image: {
  28892. source: "./media/characters/lawrence/foot-top.svg"
  28893. }
  28894. },
  28895. },
  28896. [
  28897. {
  28898. name: "Normal",
  28899. height: math.unit(2.5, "meters"),
  28900. default: true
  28901. },
  28902. {
  28903. name: "Macro",
  28904. height: math.unit(95, "meters")
  28905. },
  28906. {
  28907. name: "Megamacro",
  28908. height: math.unit(150, "km")
  28909. },
  28910. ]
  28911. ))
  28912. characterMakers.push(() => makeCharacter(
  28913. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28914. {
  28915. front: {
  28916. height: math.unit(4.2, "meters"),
  28917. name: "Front",
  28918. image: {
  28919. source: "./media/characters/sydney/front.svg",
  28920. extra: 1323 / 1277,
  28921. bottom: 111 / 1434
  28922. }
  28923. },
  28924. },
  28925. [
  28926. {
  28927. name: "Normal",
  28928. height: math.unit(4.2, "meters"),
  28929. default: true
  28930. },
  28931. ]
  28932. ))
  28933. characterMakers.push(() => makeCharacter(
  28934. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28935. {
  28936. back: {
  28937. height: math.unit(201, "feet"),
  28938. name: "Back",
  28939. image: {
  28940. source: "./media/characters/jessica/back.svg",
  28941. extra: 273 / 259,
  28942. bottom: 7 / 280
  28943. }
  28944. },
  28945. },
  28946. [
  28947. {
  28948. name: "Normal",
  28949. height: math.unit(201, "feet"),
  28950. default: true
  28951. },
  28952. {
  28953. name: "Megamacro",
  28954. height: math.unit(8, "miles")
  28955. },
  28956. ]
  28957. ))
  28958. characterMakers.push(() => makeCharacter(
  28959. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28960. {
  28961. side: {
  28962. height: math.unit(5.6, "m"),
  28963. weight: math.unit(8000, "kg"),
  28964. name: "Side",
  28965. image: {
  28966. source: "./media/characters/victoria/side.svg",
  28967. extra: 1542/1229,
  28968. bottom: 124/1666
  28969. }
  28970. },
  28971. maw: {
  28972. height: math.unit(7.14, "feet"),
  28973. name: "Maw",
  28974. image: {
  28975. source: "./media/characters/victoria/maw.svg"
  28976. }
  28977. },
  28978. },
  28979. [
  28980. {
  28981. name: "Normal",
  28982. height: math.unit(5.6, "m"),
  28983. default: true
  28984. },
  28985. ]
  28986. ))
  28987. characterMakers.push(() => makeCharacter(
  28988. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28989. {
  28990. front: {
  28991. height: math.unit(5 + 6 / 12, "feet"),
  28992. name: "Front",
  28993. image: {
  28994. source: "./media/characters/cat/front.svg",
  28995. extra: 1449/1295,
  28996. bottom: 34/1483
  28997. }
  28998. },
  28999. back: {
  29000. height: math.unit(5 + 6 / 12, "feet"),
  29001. name: "Back",
  29002. image: {
  29003. source: "./media/characters/cat/back.svg",
  29004. extra: 1466/1301,
  29005. bottom: 19/1485
  29006. }
  29007. },
  29008. taur: {
  29009. height: math.unit(7, "feet"),
  29010. name: "Taur",
  29011. image: {
  29012. source: "./media/characters/cat/taur.svg",
  29013. extra: 1389/1233,
  29014. bottom: 83/1472
  29015. }
  29016. },
  29017. lucarioFront: {
  29018. height: math.unit(4, "feet"),
  29019. name: "Lucario (Front)",
  29020. image: {
  29021. source: "./media/characters/cat/lucario-front.svg",
  29022. extra: 1149/1019,
  29023. bottom: 84/1233
  29024. }
  29025. },
  29026. lucarioBack: {
  29027. height: math.unit(4, "feet"),
  29028. name: "Lucario (Back)",
  29029. image: {
  29030. source: "./media/characters/cat/lucario-back.svg",
  29031. extra: 1190/1059,
  29032. bottom: 33/1223
  29033. }
  29034. },
  29035. megaLucario: {
  29036. height: math.unit(4, "feet"),
  29037. name: "Mega Lucario",
  29038. image: {
  29039. source: "./media/characters/cat/mega-lucario.svg",
  29040. extra: 1515 / 1319,
  29041. bottom: 63 / 1578
  29042. }
  29043. },
  29044. nickit: {
  29045. height: math.unit(2, "feet"),
  29046. name: "Nickit",
  29047. image: {
  29048. source: "./media/characters/cat/nickit.svg",
  29049. extra: 1980 / 1585,
  29050. bottom: 102 / 2082
  29051. }
  29052. },
  29053. lopunnyFront: {
  29054. height: math.unit(5, "feet"),
  29055. name: "Lopunny (Front)",
  29056. image: {
  29057. source: "./media/characters/cat/lopunny-front.svg",
  29058. extra: 1782 / 1469,
  29059. bottom: 38 / 1820
  29060. }
  29061. },
  29062. lopunnyBack: {
  29063. height: math.unit(5, "feet"),
  29064. name: "Lopunny (Back)",
  29065. image: {
  29066. source: "./media/characters/cat/lopunny-back.svg",
  29067. extra: 1660 / 1490,
  29068. bottom: 25 / 1685
  29069. }
  29070. },
  29071. },
  29072. [
  29073. {
  29074. name: "Really small",
  29075. height: math.unit(1, "nm")
  29076. },
  29077. {
  29078. name: "Micro",
  29079. height: math.unit(5, "inches")
  29080. },
  29081. {
  29082. name: "Normal",
  29083. height: math.unit(5 + 6 / 12, "feet"),
  29084. default: true
  29085. },
  29086. {
  29087. name: "Macro",
  29088. height: math.unit(50, "feet")
  29089. },
  29090. {
  29091. name: "Macro+",
  29092. height: math.unit(150, "feet")
  29093. },
  29094. {
  29095. name: "Megamacro",
  29096. height: math.unit(100, "miles")
  29097. },
  29098. ]
  29099. ))
  29100. characterMakers.push(() => makeCharacter(
  29101. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29102. {
  29103. front: {
  29104. height: math.unit(63.4, "meters"),
  29105. weight: math.unit(3.28349e+6, "kilograms"),
  29106. name: "Front",
  29107. image: {
  29108. source: "./media/characters/kirina-violet/front.svg",
  29109. extra: 2812 / 2725,
  29110. bottom: 0 / 2812
  29111. }
  29112. },
  29113. back: {
  29114. height: math.unit(63.4, "meters"),
  29115. weight: math.unit(3.28349e+6, "kilograms"),
  29116. name: "Back",
  29117. image: {
  29118. source: "./media/characters/kirina-violet/back.svg",
  29119. extra: 2812 / 2725,
  29120. bottom: 0 / 2812
  29121. }
  29122. },
  29123. mouth: {
  29124. height: math.unit(4.35, "meters"),
  29125. name: "Mouth",
  29126. image: {
  29127. source: "./media/characters/kirina-violet/mouth.svg"
  29128. }
  29129. },
  29130. paw: {
  29131. height: math.unit(5.6, "meters"),
  29132. name: "Paw",
  29133. image: {
  29134. source: "./media/characters/kirina-violet/paw.svg"
  29135. }
  29136. },
  29137. tail: {
  29138. height: math.unit(18, "meters"),
  29139. name: "Tail",
  29140. image: {
  29141. source: "./media/characters/kirina-violet/tail.svg"
  29142. }
  29143. },
  29144. },
  29145. [
  29146. {
  29147. name: "Macro",
  29148. height: math.unit(63.4, "meters"),
  29149. default: true
  29150. },
  29151. ]
  29152. ))
  29153. characterMakers.push(() => makeCharacter(
  29154. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29155. {
  29156. front: {
  29157. height: math.unit(75, "feet"),
  29158. name: "Front",
  29159. image: {
  29160. source: "./media/characters/cat-gigachu/front.svg",
  29161. extra: 1239/1027,
  29162. bottom: 32/1271
  29163. }
  29164. },
  29165. back: {
  29166. height: math.unit(75, "feet"),
  29167. name: "Back",
  29168. image: {
  29169. source: "./media/characters/cat-gigachu/back.svg",
  29170. extra: 1229/1030,
  29171. bottom: 9/1238
  29172. }
  29173. },
  29174. },
  29175. [
  29176. {
  29177. name: "Dynamax",
  29178. height: math.unit(75, "feet"),
  29179. default: true
  29180. },
  29181. ]
  29182. ))
  29183. characterMakers.push(() => makeCharacter(
  29184. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29185. {
  29186. front: {
  29187. height: math.unit(6, "feet"),
  29188. weight: math.unit(150, "lb"),
  29189. name: "Front",
  29190. image: {
  29191. source: "./media/characters/sfaiyan/front.svg",
  29192. extra: 999 / 978,
  29193. bottom: 5 / 1004
  29194. }
  29195. },
  29196. },
  29197. [
  29198. {
  29199. name: "Normal",
  29200. height: math.unit(1.82, "meters")
  29201. },
  29202. {
  29203. name: "Giant",
  29204. height: math.unit(2.27, "km"),
  29205. default: true
  29206. },
  29207. ]
  29208. ))
  29209. characterMakers.push(() => makeCharacter(
  29210. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29211. {
  29212. front: {
  29213. height: math.unit(179, "cm"),
  29214. weight: math.unit(100, "kg"),
  29215. name: "Front",
  29216. image: {
  29217. source: "./media/characters/raunehkeli/front.svg",
  29218. extra: 1934 / 1926,
  29219. bottom: 0 / 1934
  29220. }
  29221. },
  29222. },
  29223. [
  29224. {
  29225. name: "Normal",
  29226. height: math.unit(179, "cm")
  29227. },
  29228. {
  29229. name: "Maximum",
  29230. height: math.unit(575, "meters"),
  29231. default: true
  29232. },
  29233. ]
  29234. ))
  29235. characterMakers.push(() => makeCharacter(
  29236. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29237. {
  29238. front: {
  29239. height: math.unit(6, "feet"),
  29240. weight: math.unit(150, "lb"),
  29241. name: "Front",
  29242. image: {
  29243. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29244. extra: 2625 / 2518,
  29245. bottom: 60 / 2685
  29246. }
  29247. },
  29248. },
  29249. [
  29250. {
  29251. name: "Normal",
  29252. height: math.unit(6 + 2 / 12, "feet")
  29253. },
  29254. {
  29255. name: "Macro",
  29256. height: math.unit(1180, "feet"),
  29257. default: true
  29258. },
  29259. ]
  29260. ))
  29261. characterMakers.push(() => makeCharacter(
  29262. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29263. {
  29264. front: {
  29265. height: math.unit(5 + 6 / 12, "feet"),
  29266. weight: math.unit(108, "lb"),
  29267. name: "Front",
  29268. image: {
  29269. source: "./media/characters/lilith-zott/front.svg",
  29270. extra: 2510 / 2238,
  29271. bottom: 100 / 2610
  29272. }
  29273. },
  29274. frontDressed: {
  29275. height: math.unit(5 + 6 / 12, "feet"),
  29276. weight: math.unit(108, "lb"),
  29277. name: "Front (Dressed)",
  29278. image: {
  29279. source: "./media/characters/lilith-zott/front-dressed.svg",
  29280. extra: 2510 / 2238,
  29281. bottom: 100 / 2610
  29282. }
  29283. },
  29284. },
  29285. [
  29286. {
  29287. name: "Normal",
  29288. height: math.unit(5 + 6 / 12, "feet")
  29289. },
  29290. {
  29291. name: "Macro",
  29292. height: math.unit(1030, "feet"),
  29293. default: true
  29294. },
  29295. ]
  29296. ))
  29297. characterMakers.push(() => makeCharacter(
  29298. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29299. {
  29300. front: {
  29301. height: math.unit(6, "feet"),
  29302. weight: math.unit(150, "lb"),
  29303. name: "Front",
  29304. image: {
  29305. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29306. extra: 2567 / 2435,
  29307. bottom: 39 / 2606
  29308. }
  29309. },
  29310. frontSuper: {
  29311. height: math.unit(6, "feet"),
  29312. name: "Front (Super)",
  29313. image: {
  29314. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29315. extra: 2567 / 2435,
  29316. bottom: 39 / 2606
  29317. }
  29318. },
  29319. },
  29320. [
  29321. {
  29322. name: "Normal",
  29323. height: math.unit(5 + 10 / 12, "feet")
  29324. },
  29325. {
  29326. name: "Macro",
  29327. height: math.unit(1100, "feet"),
  29328. default: true
  29329. },
  29330. ]
  29331. ))
  29332. characterMakers.push(() => makeCharacter(
  29333. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29334. {
  29335. front: {
  29336. height: math.unit(100, "miles"),
  29337. name: "Front",
  29338. image: {
  29339. source: "./media/characters/sona/front.svg",
  29340. extra: 2433 / 2201,
  29341. bottom: 53 / 2486
  29342. }
  29343. },
  29344. foot: {
  29345. height: math.unit(16.1, "miles"),
  29346. name: "Foot",
  29347. image: {
  29348. source: "./media/characters/sona/foot.svg"
  29349. }
  29350. },
  29351. },
  29352. [
  29353. {
  29354. name: "Macro",
  29355. height: math.unit(100, "miles"),
  29356. default: true
  29357. },
  29358. ]
  29359. ))
  29360. characterMakers.push(() => makeCharacter(
  29361. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29362. {
  29363. front: {
  29364. height: math.unit(6, "feet"),
  29365. weight: math.unit(150, "lb"),
  29366. name: "Front",
  29367. image: {
  29368. source: "./media/characters/bailey/front.svg",
  29369. extra: 1778 / 1724,
  29370. bottom: 30 / 1808
  29371. }
  29372. },
  29373. },
  29374. [
  29375. {
  29376. name: "Micro",
  29377. height: math.unit(4, "inches")
  29378. },
  29379. {
  29380. name: "Normal",
  29381. height: math.unit(5 + 5 / 12, "feet"),
  29382. default: true
  29383. },
  29384. {
  29385. name: "Macro",
  29386. height: math.unit(250, "feet")
  29387. },
  29388. {
  29389. name: "Megamacro",
  29390. height: math.unit(100, "miles")
  29391. },
  29392. ]
  29393. ))
  29394. characterMakers.push(() => makeCharacter(
  29395. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29396. {
  29397. front: {
  29398. height: math.unit(5 + 2 / 12, "feet"),
  29399. weight: math.unit(120, "lb"),
  29400. name: "Front",
  29401. image: {
  29402. source: "./media/characters/snaps/front.svg",
  29403. extra: 2370 / 2177,
  29404. bottom: 48 / 2418
  29405. }
  29406. },
  29407. back: {
  29408. height: math.unit(5 + 2 / 12, "feet"),
  29409. weight: math.unit(120, "lb"),
  29410. name: "Back",
  29411. image: {
  29412. source: "./media/characters/snaps/back.svg",
  29413. extra: 2408 / 2258,
  29414. bottom: 15 / 2423
  29415. }
  29416. },
  29417. },
  29418. [
  29419. {
  29420. name: "Micro",
  29421. height: math.unit(9, "inches")
  29422. },
  29423. {
  29424. name: "Normal",
  29425. height: math.unit(5 + 2 / 12, "feet"),
  29426. default: true
  29427. },
  29428. {
  29429. name: "Mini Macro",
  29430. height: math.unit(10, "feet")
  29431. },
  29432. ]
  29433. ))
  29434. characterMakers.push(() => makeCharacter(
  29435. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29436. {
  29437. front: {
  29438. height: math.unit(1.8, "meters"),
  29439. weight: math.unit(85, "kg"),
  29440. name: "Front",
  29441. image: {
  29442. source: "./media/characters/azteck/front.svg",
  29443. extra: 2815 / 2625,
  29444. bottom: 89 / 2904
  29445. }
  29446. },
  29447. back: {
  29448. height: math.unit(1.8, "meters"),
  29449. weight: math.unit(85, "kg"),
  29450. name: "Back",
  29451. image: {
  29452. source: "./media/characters/azteck/back.svg",
  29453. extra: 2856 / 2648,
  29454. bottom: 85 / 2941
  29455. }
  29456. },
  29457. frontDressed: {
  29458. height: math.unit(1.8, "meters"),
  29459. weight: math.unit(85, "kg"),
  29460. name: "Front (Dressed)",
  29461. image: {
  29462. source: "./media/characters/azteck/front-dressed.svg",
  29463. extra: 2147 / 2003,
  29464. bottom: 68 / 2215
  29465. }
  29466. },
  29467. head: {
  29468. height: math.unit(0.47, "meters"),
  29469. weight: math.unit(85, "kg"),
  29470. name: "Head",
  29471. image: {
  29472. source: "./media/characters/azteck/head.svg"
  29473. }
  29474. },
  29475. },
  29476. [
  29477. {
  29478. name: "Bite sized",
  29479. height: math.unit(16, "cm")
  29480. },
  29481. {
  29482. name: "Normal",
  29483. height: math.unit(1.8, "meters"),
  29484. default: true
  29485. },
  29486. ]
  29487. ))
  29488. characterMakers.push(() => makeCharacter(
  29489. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29490. {
  29491. front: {
  29492. height: math.unit(6, "feet"),
  29493. weight: math.unit(150, "lb"),
  29494. name: "Front",
  29495. image: {
  29496. source: "./media/characters/pidge/front.svg",
  29497. extra: 620 / 588,
  29498. bottom: 9 / 629
  29499. }
  29500. },
  29501. back: {
  29502. height: math.unit(6, "feet"),
  29503. weight: math.unit(150, "lb"),
  29504. name: "Back",
  29505. image: {
  29506. source: "./media/characters/pidge/back.svg",
  29507. extra: 620 / 588,
  29508. bottom: 9 / 629
  29509. }
  29510. },
  29511. },
  29512. [
  29513. {
  29514. name: "Macro",
  29515. height: math.unit(1, "mile"),
  29516. default: true
  29517. },
  29518. ]
  29519. ))
  29520. characterMakers.push(() => makeCharacter(
  29521. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29522. {
  29523. front: {
  29524. height: math.unit(6, "feet"),
  29525. weight: math.unit(150, "lb"),
  29526. name: "Front",
  29527. image: {
  29528. source: "./media/characters/en/front.svg",
  29529. extra: 1697 / 1563,
  29530. bottom: 103 / 1800
  29531. }
  29532. },
  29533. back: {
  29534. height: math.unit(6, "feet"),
  29535. weight: math.unit(150, "lb"),
  29536. name: "Back",
  29537. image: {
  29538. source: "./media/characters/en/back.svg",
  29539. extra: 1700 / 1570,
  29540. bottom: 51 / 1751
  29541. }
  29542. },
  29543. frontDressed: {
  29544. height: math.unit(6, "feet"),
  29545. weight: math.unit(150, "lb"),
  29546. name: "Front (Dressed)",
  29547. image: {
  29548. source: "./media/characters/en/front-dressed.svg",
  29549. extra: 1697 / 1563,
  29550. bottom: 103 / 1800
  29551. }
  29552. },
  29553. backDressed: {
  29554. height: math.unit(6, "feet"),
  29555. weight: math.unit(150, "lb"),
  29556. name: "Back (Dressed)",
  29557. image: {
  29558. source: "./media/characters/en/back-dressed.svg",
  29559. extra: 1700 / 1570,
  29560. bottom: 51 / 1751
  29561. }
  29562. },
  29563. },
  29564. [
  29565. {
  29566. name: "Macro",
  29567. height: math.unit(210, "feet"),
  29568. default: true
  29569. },
  29570. ]
  29571. ))
  29572. characterMakers.push(() => makeCharacter(
  29573. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29574. {
  29575. front: {
  29576. height: math.unit(6, "feet"),
  29577. weight: math.unit(150, "lb"),
  29578. name: "Front",
  29579. image: {
  29580. source: "./media/characters/haze-orris/front.svg",
  29581. extra: 3975 / 3525,
  29582. bottom: 137 / 4112
  29583. }
  29584. },
  29585. },
  29586. [
  29587. {
  29588. name: "Micro",
  29589. height: math.unit(150, "mm"),
  29590. default: true
  29591. },
  29592. ]
  29593. ))
  29594. characterMakers.push(() => makeCharacter(
  29595. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29596. {
  29597. front: {
  29598. height: math.unit(6, "feet"),
  29599. weight: math.unit(150, "lb"),
  29600. name: "Front",
  29601. image: {
  29602. source: "./media/characters/casselene-yaro/front.svg",
  29603. extra: 4721 / 4541,
  29604. bottom: 82 / 4803
  29605. }
  29606. },
  29607. back: {
  29608. height: math.unit(6, "feet"),
  29609. weight: math.unit(150, "lb"),
  29610. name: "Back",
  29611. image: {
  29612. source: "./media/characters/casselene-yaro/back.svg",
  29613. extra: 4569 / 4377,
  29614. bottom: 69 / 4638
  29615. }
  29616. },
  29617. frontDressed: {
  29618. height: math.unit(6, "feet"),
  29619. weight: math.unit(150, "lb"),
  29620. name: "Front-dressed",
  29621. image: {
  29622. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29623. extra: 4721 / 4541,
  29624. bottom: 82 / 4803
  29625. }
  29626. },
  29627. },
  29628. [
  29629. {
  29630. name: "Macro",
  29631. height: math.unit(190, "feet"),
  29632. default: true
  29633. },
  29634. ]
  29635. ))
  29636. characterMakers.push(() => makeCharacter(
  29637. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29638. {
  29639. front: {
  29640. height: math.unit(6, "feet"),
  29641. weight: math.unit(150, "lb"),
  29642. name: "Front",
  29643. image: {
  29644. source: "./media/characters/myra-rue-delore/front.svg",
  29645. extra: 1340 / 1308,
  29646. bottom: 67 / 1407
  29647. }
  29648. },
  29649. back: {
  29650. height: math.unit(6, "feet"),
  29651. weight: math.unit(150, "lb"),
  29652. name: "Back",
  29653. image: {
  29654. source: "./media/characters/myra-rue-delore/back.svg",
  29655. extra: 1341 / 1310,
  29656. bottom: 40 / 1381
  29657. }
  29658. },
  29659. frontDressed: {
  29660. height: math.unit(6, "feet"),
  29661. weight: math.unit(150, "lb"),
  29662. name: "Front (Dressed)",
  29663. image: {
  29664. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29665. extra: 1340 / 1308,
  29666. bottom: 67 / 1407
  29667. }
  29668. },
  29669. },
  29670. [
  29671. {
  29672. name: "Macro",
  29673. height: math.unit(150, "feet"),
  29674. default: true
  29675. },
  29676. ]
  29677. ))
  29678. characterMakers.push(() => makeCharacter(
  29679. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29680. {
  29681. front: {
  29682. height: math.unit(10, "feet"),
  29683. weight: math.unit(15015, "lb"),
  29684. name: "Front",
  29685. image: {
  29686. source: "./media/characters/fem!plat/front.svg",
  29687. extra: 2799 / 2604,
  29688. bottom: 149 / 2948
  29689. }
  29690. },
  29691. },
  29692. [
  29693. {
  29694. name: "Normal",
  29695. height: math.unit(10, "feet"),
  29696. default: true
  29697. },
  29698. {
  29699. name: "Macro",
  29700. height: math.unit(100, "feet")
  29701. },
  29702. {
  29703. name: "Megamacro",
  29704. height: math.unit(1000, "feet")
  29705. },
  29706. ]
  29707. ))
  29708. characterMakers.push(() => makeCharacter(
  29709. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29710. {
  29711. front: {
  29712. height: math.unit(15 + 5 / 12, "feet"),
  29713. weight: math.unit(4600, "lb"),
  29714. name: "Front",
  29715. image: {
  29716. source: "./media/characters/neapolitan-ananassa/front.svg",
  29717. extra: 2903 / 2736,
  29718. bottom: 0 / 2903
  29719. }
  29720. },
  29721. side: {
  29722. height: math.unit(15 + 5 / 12, "feet"),
  29723. weight: math.unit(4600, "lb"),
  29724. name: "Side",
  29725. image: {
  29726. source: "./media/characters/neapolitan-ananassa/side.svg",
  29727. extra: 2925 / 2719,
  29728. bottom: 0 / 2925
  29729. }
  29730. },
  29731. back: {
  29732. height: math.unit(15 + 5 / 12, "feet"),
  29733. weight: math.unit(4600, "lb"),
  29734. name: "Back",
  29735. image: {
  29736. source: "./media/characters/neapolitan-ananassa/back.svg",
  29737. extra: 2903 / 2736,
  29738. bottom: 0 / 2903
  29739. }
  29740. },
  29741. },
  29742. [
  29743. {
  29744. name: "Normal",
  29745. height: math.unit(15 + 5 / 12, "feet"),
  29746. default: true
  29747. },
  29748. {
  29749. name: "Post-Millenium",
  29750. height: math.unit(35 + 5 / 12, "feet")
  29751. },
  29752. {
  29753. name: "Post-Era",
  29754. height: math.unit(450 + 5 / 12, "feet")
  29755. },
  29756. ]
  29757. ))
  29758. characterMakers.push(() => makeCharacter(
  29759. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29760. {
  29761. front: {
  29762. height: math.unit(300, "meters"),
  29763. weight: math.unit(125000, "tonnes"),
  29764. name: "Front",
  29765. image: {
  29766. source: "./media/characters/pazuzu/front.svg",
  29767. extra: 877 / 794,
  29768. bottom: 47 / 924
  29769. }
  29770. },
  29771. },
  29772. [
  29773. {
  29774. name: "Macro",
  29775. height: math.unit(300, "meters"),
  29776. default: true
  29777. },
  29778. ]
  29779. ))
  29780. characterMakers.push(() => makeCharacter(
  29781. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29782. {
  29783. side: {
  29784. height: math.unit(10 + 7 / 12, "feet"),
  29785. weight: math.unit(2.5, "tons"),
  29786. name: "Side",
  29787. image: {
  29788. source: "./media/characters/aasha/side.svg",
  29789. extra: 1345 / 1245,
  29790. bottom: 111 / 1456
  29791. }
  29792. },
  29793. back: {
  29794. height: math.unit(10 + 7 / 12, "feet"),
  29795. weight: math.unit(2.5, "tons"),
  29796. name: "Back",
  29797. image: {
  29798. source: "./media/characters/aasha/back.svg",
  29799. extra: 1133 / 1057,
  29800. bottom: 257 / 1390
  29801. }
  29802. },
  29803. },
  29804. [
  29805. {
  29806. name: "Normal",
  29807. height: math.unit(10 + 7 / 12, "feet"),
  29808. default: true
  29809. },
  29810. ]
  29811. ))
  29812. characterMakers.push(() => makeCharacter(
  29813. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29814. {
  29815. front: {
  29816. height: math.unit(6 + 3 / 12, "feet"),
  29817. name: "Front",
  29818. image: {
  29819. source: "./media/characters/nevan/front.svg",
  29820. extra: 704 / 704,
  29821. bottom: 28 / 732
  29822. }
  29823. },
  29824. back: {
  29825. height: math.unit(6 + 3 / 12, "feet"),
  29826. name: "Back",
  29827. image: {
  29828. source: "./media/characters/nevan/back.svg",
  29829. extra: 714 / 714,
  29830. bottom: 21 / 735
  29831. }
  29832. },
  29833. frontFlaccid: {
  29834. height: math.unit(6 + 3 / 12, "feet"),
  29835. name: "Front (Flaccid)",
  29836. image: {
  29837. source: "./media/characters/nevan/front-flaccid.svg",
  29838. extra: 704 / 704,
  29839. bottom: 28 / 732
  29840. }
  29841. },
  29842. frontErect: {
  29843. height: math.unit(6 + 3 / 12, "feet"),
  29844. name: "Front (Erect)",
  29845. image: {
  29846. source: "./media/characters/nevan/front-erect.svg",
  29847. extra: 704 / 704,
  29848. bottom: 28 / 732
  29849. }
  29850. },
  29851. backFlaccid: {
  29852. height: math.unit(6 + 3 / 12, "feet"),
  29853. name: "Back (Flaccid)",
  29854. image: {
  29855. source: "./media/characters/nevan/back-flaccid.svg",
  29856. extra: 714 / 714,
  29857. bottom: 21 / 735
  29858. }
  29859. },
  29860. },
  29861. [
  29862. {
  29863. name: "Normal",
  29864. height: math.unit(6 + 3 / 12, "feet"),
  29865. default: true
  29866. },
  29867. ]
  29868. ))
  29869. characterMakers.push(() => makeCharacter(
  29870. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29871. {
  29872. front: {
  29873. height: math.unit(4, "feet"),
  29874. name: "Front",
  29875. image: {
  29876. source: "./media/characters/arhan/front.svg",
  29877. extra: 3368 / 3133,
  29878. bottom: 0 / 3368
  29879. }
  29880. },
  29881. side: {
  29882. height: math.unit(4, "feet"),
  29883. name: "Side",
  29884. image: {
  29885. source: "./media/characters/arhan/side.svg",
  29886. extra: 3347 / 3105,
  29887. bottom: 0 / 3347
  29888. }
  29889. },
  29890. tongue: {
  29891. height: math.unit(1.42, "feet"),
  29892. name: "Tongue",
  29893. image: {
  29894. source: "./media/characters/arhan/tongue.svg"
  29895. }
  29896. },
  29897. head: {
  29898. height: math.unit(0.85, "feet"),
  29899. name: "Head",
  29900. image: {
  29901. source: "./media/characters/arhan/head.svg"
  29902. }
  29903. },
  29904. },
  29905. [
  29906. {
  29907. name: "Normal",
  29908. height: math.unit(4, "feet"),
  29909. default: true
  29910. },
  29911. ]
  29912. ))
  29913. characterMakers.push(() => makeCharacter(
  29914. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29915. {
  29916. front: {
  29917. height: math.unit(5 + 7.5 / 12, "feet"),
  29918. weight: math.unit(120, "lb"),
  29919. name: "Front",
  29920. image: {
  29921. source: "./media/characters/digi-duncan/front.svg",
  29922. extra: 330 / 326,
  29923. bottom: 16 / 346
  29924. }
  29925. },
  29926. side: {
  29927. height: math.unit(5 + 7.5 / 12, "feet"),
  29928. weight: math.unit(120, "lb"),
  29929. name: "Side",
  29930. image: {
  29931. source: "./media/characters/digi-duncan/side.svg",
  29932. extra: 341 / 337,
  29933. bottom: 1 / 342
  29934. }
  29935. },
  29936. back: {
  29937. height: math.unit(5 + 7.5 / 12, "feet"),
  29938. weight: math.unit(120, "lb"),
  29939. name: "Back",
  29940. image: {
  29941. source: "./media/characters/digi-duncan/back.svg",
  29942. extra: 330 / 326,
  29943. bottom: 12 / 342
  29944. }
  29945. },
  29946. },
  29947. [
  29948. {
  29949. name: "Speck",
  29950. height: math.unit(0.25, "mm")
  29951. },
  29952. {
  29953. name: "Micro",
  29954. height: math.unit(5, "mm")
  29955. },
  29956. {
  29957. name: "Tiny",
  29958. height: math.unit(0.5, "inches"),
  29959. default: true
  29960. },
  29961. {
  29962. name: "Human",
  29963. height: math.unit(5 + 7.5 / 12, "feet")
  29964. },
  29965. {
  29966. name: "Minigiant",
  29967. height: math.unit(8 + 5.25, "feet")
  29968. },
  29969. {
  29970. name: "Giant",
  29971. height: math.unit(2000, "feet")
  29972. },
  29973. {
  29974. name: "Mega",
  29975. height: math.unit(371.1, "miles")
  29976. },
  29977. ]
  29978. ))
  29979. characterMakers.push(() => makeCharacter(
  29980. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29981. {
  29982. front: {
  29983. height: math.unit(2, "meters"),
  29984. weight: math.unit(350, "kg"),
  29985. name: "Front",
  29986. image: {
  29987. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29988. extra: 898 / 838,
  29989. bottom: 9 / 907
  29990. }
  29991. },
  29992. },
  29993. [
  29994. {
  29995. name: "Micro",
  29996. height: math.unit(8, "meters")
  29997. },
  29998. {
  29999. name: "Normal",
  30000. height: math.unit(50, "meters"),
  30001. default: true
  30002. },
  30003. {
  30004. name: "Macro",
  30005. height: math.unit(500, "meters")
  30006. },
  30007. ]
  30008. ))
  30009. characterMakers.push(() => makeCharacter(
  30010. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30011. {
  30012. front: {
  30013. height: math.unit(6 + 6 / 12, "feet"),
  30014. name: "Front",
  30015. image: {
  30016. source: "./media/characters/khardesh/front.svg",
  30017. extra: 1788/1596,
  30018. bottom: 66/1854
  30019. }
  30020. },
  30021. back: {
  30022. height: math.unit(6 + 6 / 12, "feet"),
  30023. name: "Back",
  30024. image: {
  30025. source: "./media/characters/khardesh/back.svg",
  30026. extra: 1781/1584,
  30027. bottom: 68/1849
  30028. }
  30029. },
  30030. },
  30031. [
  30032. {
  30033. name: "Normal",
  30034. height: math.unit(6 + 6 / 12, "feet"),
  30035. default: true
  30036. },
  30037. {
  30038. name: "Normal+",
  30039. height: math.unit(4, "meters")
  30040. },
  30041. {
  30042. name: "Macro",
  30043. height: math.unit(50, "meters")
  30044. },
  30045. {
  30046. name: "Macro+",
  30047. height: math.unit(100, "meters")
  30048. },
  30049. {
  30050. name: "Megamacro",
  30051. height: math.unit(20, "km")
  30052. },
  30053. ]
  30054. ))
  30055. characterMakers.push(() => makeCharacter(
  30056. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30057. {
  30058. front: {
  30059. height: math.unit(6, "feet"),
  30060. weight: math.unit(150, "lb"),
  30061. name: "Front",
  30062. image: {
  30063. source: "./media/characters/kosho/front.svg",
  30064. extra: 1847 / 1847,
  30065. bottom: 86 / 1933
  30066. }
  30067. },
  30068. },
  30069. [
  30070. {
  30071. name: "Second-stage micro",
  30072. height: math.unit(0.5, "inches")
  30073. },
  30074. {
  30075. name: "First-stage micro",
  30076. height: math.unit(6, "inches")
  30077. },
  30078. {
  30079. name: "Normal",
  30080. height: math.unit(6, "feet"),
  30081. default: true
  30082. },
  30083. {
  30084. name: "First-stage macro",
  30085. height: math.unit(72, "feet")
  30086. },
  30087. {
  30088. name: "Second-stage macro",
  30089. height: math.unit(864, "feet")
  30090. },
  30091. ]
  30092. ))
  30093. characterMakers.push(() => makeCharacter(
  30094. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30095. {
  30096. normal: {
  30097. height: math.unit(4 + 6 / 12, "feet"),
  30098. name: "Normal",
  30099. image: {
  30100. source: "./media/characters/hydra/normal.svg",
  30101. extra: 2833 / 2634,
  30102. bottom: 68 / 2901
  30103. }
  30104. },
  30105. smol: {
  30106. height: math.unit(0.705, "inches"),
  30107. name: "Smol",
  30108. image: {
  30109. source: "./media/characters/hydra/smol.svg",
  30110. extra: 2715 / 2540,
  30111. bottom: 0 / 2715
  30112. }
  30113. },
  30114. },
  30115. [
  30116. {
  30117. name: "Normal",
  30118. height: math.unit(4 + 6 / 12, "feet"),
  30119. default: true
  30120. }
  30121. ]
  30122. ))
  30123. characterMakers.push(() => makeCharacter(
  30124. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30125. {
  30126. front: {
  30127. height: math.unit(0.6, "cm"),
  30128. name: "Front",
  30129. image: {
  30130. source: "./media/characters/daz/front.svg",
  30131. extra: 1682 / 1164,
  30132. bottom: 42 / 1724
  30133. }
  30134. },
  30135. },
  30136. [
  30137. {
  30138. name: "Normal",
  30139. height: math.unit(0.6, "cm"),
  30140. default: true
  30141. },
  30142. ]
  30143. ))
  30144. characterMakers.push(() => makeCharacter(
  30145. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30146. {
  30147. front: {
  30148. height: math.unit(6, "feet"),
  30149. weight: math.unit(235, "lb"),
  30150. name: "Front",
  30151. image: {
  30152. source: "./media/characters/theo-pangolin/front.svg",
  30153. extra: 1996 / 1969,
  30154. bottom: 115 / 2111
  30155. }
  30156. },
  30157. back: {
  30158. height: math.unit(6, "feet"),
  30159. weight: math.unit(235, "lb"),
  30160. name: "Back",
  30161. image: {
  30162. source: "./media/characters/theo-pangolin/back.svg",
  30163. extra: 1979 / 1979,
  30164. bottom: 40 / 2019
  30165. }
  30166. },
  30167. feral: {
  30168. height: math.unit(2, "feet"),
  30169. weight: math.unit(30, "lb"),
  30170. name: "Feral",
  30171. image: {
  30172. source: "./media/characters/theo-pangolin/feral.svg",
  30173. extra: 803 / 791,
  30174. bottom: 181 / 984
  30175. }
  30176. },
  30177. footFive: {
  30178. height: math.unit(1.43, "feet"),
  30179. name: "Foot (Five Toes)",
  30180. image: {
  30181. source: "./media/characters/theo-pangolin/foot-five.svg"
  30182. }
  30183. },
  30184. footFour: {
  30185. height: math.unit(1.43, "feet"),
  30186. name: "Foot (Four Toes)",
  30187. image: {
  30188. source: "./media/characters/theo-pangolin/foot-four.svg"
  30189. }
  30190. },
  30191. handFour: {
  30192. height: math.unit(0.81, "feet"),
  30193. name: "Hand (Four Fingers)",
  30194. image: {
  30195. source: "./media/characters/theo-pangolin/hand-four.svg"
  30196. }
  30197. },
  30198. handThree: {
  30199. height: math.unit(0.81, "feet"),
  30200. name: "Hand (Three Fingers)",
  30201. image: {
  30202. source: "./media/characters/theo-pangolin/hand-three.svg"
  30203. }
  30204. },
  30205. headFront: {
  30206. height: math.unit(1.37, "feet"),
  30207. name: "Head (Front)",
  30208. image: {
  30209. source: "./media/characters/theo-pangolin/head-front.svg"
  30210. }
  30211. },
  30212. headSide: {
  30213. height: math.unit(1.43, "feet"),
  30214. name: "Head (Side)",
  30215. image: {
  30216. source: "./media/characters/theo-pangolin/head-side.svg"
  30217. }
  30218. },
  30219. tongue: {
  30220. height: math.unit(2.29, "feet"),
  30221. name: "Tongue",
  30222. image: {
  30223. source: "./media/characters/theo-pangolin/tongue.svg"
  30224. }
  30225. },
  30226. },
  30227. [
  30228. {
  30229. name: "Normal",
  30230. height: math.unit(6, "feet")
  30231. },
  30232. {
  30233. name: "Macro",
  30234. height: math.unit(400, "feet"),
  30235. default: true
  30236. },
  30237. ]
  30238. ))
  30239. characterMakers.push(() => makeCharacter(
  30240. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30241. {
  30242. front: {
  30243. height: math.unit(6, "inches"),
  30244. weight: math.unit(0.036, "kg"),
  30245. name: "Front",
  30246. image: {
  30247. source: "./media/characters/renée/front.svg",
  30248. extra: 900 / 886,
  30249. bottom: 8 / 908
  30250. }
  30251. },
  30252. },
  30253. [
  30254. {
  30255. name: "Nano",
  30256. height: math.unit(1, "nm")
  30257. },
  30258. {
  30259. name: "Micro",
  30260. height: math.unit(1, "mm")
  30261. },
  30262. {
  30263. name: "Normal",
  30264. height: math.unit(6, "inches")
  30265. },
  30266. {
  30267. name: "Macro",
  30268. height: math.unit(2000, "feet"),
  30269. default: true
  30270. },
  30271. {
  30272. name: "Megamacro",
  30273. height: math.unit(2, "km")
  30274. },
  30275. {
  30276. name: "Gigamacro",
  30277. height: math.unit(2000, "km")
  30278. },
  30279. {
  30280. name: "Teramacro",
  30281. height: math.unit(250000, "km")
  30282. },
  30283. ]
  30284. ))
  30285. characterMakers.push(() => makeCharacter(
  30286. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30287. {
  30288. front: {
  30289. height: math.unit(4, "meters"),
  30290. weight: math.unit(150, "kg"),
  30291. name: "Front",
  30292. image: {
  30293. source: "./media/characters/caledvwlch/front.svg",
  30294. extra: 1760 / 1551,
  30295. bottom: 28 / 1788
  30296. }
  30297. },
  30298. side: {
  30299. height: math.unit(4, "meters"),
  30300. weight: math.unit(150, "kg"),
  30301. name: "Side",
  30302. image: {
  30303. source: "./media/characters/caledvwlch/side.svg",
  30304. extra: 1605 / 1536,
  30305. bottom: 31 / 1636
  30306. }
  30307. },
  30308. back: {
  30309. height: math.unit(4, "meters"),
  30310. weight: math.unit(150, "kg"),
  30311. name: "Back",
  30312. image: {
  30313. source: "./media/characters/caledvwlch/back.svg",
  30314. extra: 1635 / 1565,
  30315. bottom: 27 / 1662
  30316. }
  30317. },
  30318. },
  30319. [
  30320. {
  30321. name: "\"Incognito\"",
  30322. height: math.unit(4, "meters")
  30323. },
  30324. {
  30325. name: "Small rampage",
  30326. height: math.unit(600, "meters")
  30327. },
  30328. {
  30329. name: "Mega",
  30330. height: math.unit(30, "km")
  30331. },
  30332. {
  30333. name: "Home-size",
  30334. height: math.unit(50, "km"),
  30335. default: true
  30336. },
  30337. {
  30338. name: "Giga",
  30339. height: math.unit(300, "km")
  30340. },
  30341. {
  30342. name: "Lounging",
  30343. height: math.unit(11000, "km")
  30344. },
  30345. {
  30346. name: "Planet snacking",
  30347. height: math.unit(2000000, "km")
  30348. },
  30349. ]
  30350. ))
  30351. characterMakers.push(() => makeCharacter(
  30352. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30353. {
  30354. front: {
  30355. height: math.unit(6, "feet"),
  30356. weight: math.unit(215, "lb"),
  30357. name: "Front",
  30358. image: {
  30359. source: "./media/characters/sapphire-svell/front.svg",
  30360. extra: 495 / 455,
  30361. bottom: 20 / 515
  30362. }
  30363. },
  30364. back: {
  30365. height: math.unit(6, "feet"),
  30366. weight: math.unit(216, "lb"),
  30367. name: "Back",
  30368. image: {
  30369. source: "./media/characters/sapphire-svell/back.svg",
  30370. extra: 497 / 477,
  30371. bottom: 7 / 504
  30372. }
  30373. },
  30374. maw: {
  30375. height: math.unit(1.57, "feet"),
  30376. name: "Maw",
  30377. image: {
  30378. source: "./media/characters/sapphire-svell/maw.svg"
  30379. }
  30380. },
  30381. foot: {
  30382. height: math.unit(1.07, "feet"),
  30383. name: "Foot",
  30384. image: {
  30385. source: "./media/characters/sapphire-svell/foot.svg"
  30386. }
  30387. },
  30388. toering: {
  30389. height: math.unit(1.7, "inch"),
  30390. name: "Toering",
  30391. image: {
  30392. source: "./media/characters/sapphire-svell/toering.svg"
  30393. }
  30394. },
  30395. },
  30396. [
  30397. {
  30398. name: "Normal",
  30399. height: math.unit(300, "feet"),
  30400. default: true
  30401. },
  30402. {
  30403. name: "Augmented",
  30404. height: math.unit(1250, "feet")
  30405. },
  30406. {
  30407. name: "Unleashed",
  30408. height: math.unit(3000, "feet")
  30409. },
  30410. ]
  30411. ))
  30412. characterMakers.push(() => makeCharacter(
  30413. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30414. {
  30415. side: {
  30416. height: math.unit(2 + 3 / 12, "feet"),
  30417. weight: math.unit(110, "lb"),
  30418. name: "Side",
  30419. image: {
  30420. source: "./media/characters/glitch-flux/side.svg",
  30421. extra: 997 / 805,
  30422. bottom: 20 / 1017
  30423. }
  30424. },
  30425. },
  30426. [
  30427. {
  30428. name: "Normal",
  30429. height: math.unit(2 + 3 / 12, "feet"),
  30430. default: true
  30431. },
  30432. ]
  30433. ))
  30434. characterMakers.push(() => makeCharacter(
  30435. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30436. {
  30437. front: {
  30438. height: math.unit(4, "meters"),
  30439. name: "Front",
  30440. image: {
  30441. source: "./media/characters/mid/front.svg",
  30442. extra: 507 / 476,
  30443. bottom: 17 / 524
  30444. }
  30445. },
  30446. back: {
  30447. height: math.unit(4, "meters"),
  30448. name: "Back",
  30449. image: {
  30450. source: "./media/characters/mid/back.svg",
  30451. extra: 519 / 487,
  30452. bottom: 7 / 526
  30453. }
  30454. },
  30455. stuck: {
  30456. height: math.unit(2.2, "meters"),
  30457. name: "Stuck",
  30458. image: {
  30459. source: "./media/characters/mid/stuck.svg",
  30460. extra: 1951 / 1869,
  30461. bottom: 88 / 2039
  30462. }
  30463. }
  30464. },
  30465. [
  30466. {
  30467. name: "Normal",
  30468. height: math.unit(4, "meters"),
  30469. default: true
  30470. },
  30471. {
  30472. name: "Big",
  30473. height: math.unit(10, "meters")
  30474. },
  30475. {
  30476. name: "Macro",
  30477. height: math.unit(800, "meters")
  30478. },
  30479. {
  30480. name: "Megamacro",
  30481. height: math.unit(100, "km")
  30482. },
  30483. {
  30484. name: "Overgrown",
  30485. height: math.unit(1, "parsec")
  30486. },
  30487. ]
  30488. ))
  30489. characterMakers.push(() => makeCharacter(
  30490. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30491. {
  30492. front: {
  30493. height: math.unit(2.5, "meters"),
  30494. weight: math.unit(225, "kg"),
  30495. name: "Front",
  30496. image: {
  30497. source: "./media/characters/iris/front.svg",
  30498. extra: 3348 / 3251,
  30499. bottom: 205 / 3553
  30500. }
  30501. },
  30502. maw: {
  30503. height: math.unit(0.56, "meter"),
  30504. name: "Maw",
  30505. image: {
  30506. source: "./media/characters/iris/maw.svg"
  30507. }
  30508. },
  30509. },
  30510. [
  30511. {
  30512. name: "Mewter cat",
  30513. height: math.unit(1.2, "meters")
  30514. },
  30515. {
  30516. name: "Minimacro",
  30517. height: math.unit(2.5, "meters"),
  30518. default: true
  30519. },
  30520. {
  30521. name: "Macro",
  30522. height: math.unit(180, "meters")
  30523. },
  30524. {
  30525. name: "Megamacro",
  30526. height: math.unit(2746, "meters")
  30527. },
  30528. ]
  30529. ))
  30530. characterMakers.push(() => makeCharacter(
  30531. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30532. {
  30533. front: {
  30534. height: math.unit(6, "feet"),
  30535. weight: math.unit(135, "lb"),
  30536. name: "Front",
  30537. image: {
  30538. source: "./media/characters/axel/front.svg",
  30539. extra: 908 / 908,
  30540. bottom: 58 / 966
  30541. }
  30542. },
  30543. side: {
  30544. height: math.unit(6, "feet"),
  30545. weight: math.unit(135, "lb"),
  30546. name: "Side",
  30547. image: {
  30548. source: "./media/characters/axel/side.svg",
  30549. extra: 958 / 958,
  30550. bottom: 11 / 969
  30551. }
  30552. },
  30553. back: {
  30554. height: math.unit(6, "feet"),
  30555. weight: math.unit(135, "lb"),
  30556. name: "Back",
  30557. image: {
  30558. source: "./media/characters/axel/back.svg",
  30559. extra: 887 / 887,
  30560. bottom: 34 / 921
  30561. }
  30562. },
  30563. head: {
  30564. height: math.unit(1.07, "feet"),
  30565. name: "Head",
  30566. image: {
  30567. source: "./media/characters/axel/head.svg"
  30568. }
  30569. },
  30570. beak: {
  30571. height: math.unit(1.4, "feet"),
  30572. name: "Beak",
  30573. image: {
  30574. source: "./media/characters/axel/beak.svg"
  30575. }
  30576. },
  30577. beakSide: {
  30578. height: math.unit(1.4, "feet"),
  30579. name: "Beak Side",
  30580. image: {
  30581. source: "./media/characters/axel/beak-side.svg"
  30582. }
  30583. },
  30584. sheath: {
  30585. height: math.unit(0.5, "feet"),
  30586. name: "Sheath",
  30587. image: {
  30588. source: "./media/characters/axel/sheath.svg"
  30589. }
  30590. },
  30591. dick: {
  30592. height: math.unit(0.98, "feet"),
  30593. name: "Dick",
  30594. image: {
  30595. source: "./media/characters/axel/dick.svg"
  30596. }
  30597. },
  30598. },
  30599. [
  30600. {
  30601. name: "Macro",
  30602. height: math.unit(68, "meters"),
  30603. default: true
  30604. },
  30605. ]
  30606. ))
  30607. characterMakers.push(() => makeCharacter(
  30608. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30609. {
  30610. front: {
  30611. height: math.unit(3.5, "meters"),
  30612. weight: math.unit(1200, "kg"),
  30613. name: "Front",
  30614. image: {
  30615. source: "./media/characters/joanna/front.svg",
  30616. extra: 1596 / 1488,
  30617. bottom: 29 / 1625
  30618. }
  30619. },
  30620. back: {
  30621. height: math.unit(3.5, "meters"),
  30622. weight: math.unit(1200, "kg"),
  30623. name: "Back",
  30624. image: {
  30625. source: "./media/characters/joanna/back.svg",
  30626. extra: 1594 / 1495,
  30627. bottom: 26 / 1620
  30628. }
  30629. },
  30630. frontShorts: {
  30631. height: math.unit(3.5, "meters"),
  30632. weight: math.unit(1200, "kg"),
  30633. name: "Front (Shorts)",
  30634. image: {
  30635. source: "./media/characters/joanna/front-shorts.svg",
  30636. extra: 1596 / 1488,
  30637. bottom: 29 / 1625
  30638. }
  30639. },
  30640. frontBiker: {
  30641. height: math.unit(3.5, "meters"),
  30642. weight: math.unit(1200, "kg"),
  30643. name: "Front (Biker)",
  30644. image: {
  30645. source: "./media/characters/joanna/front-biker.svg",
  30646. extra: 1596 / 1488,
  30647. bottom: 29 / 1625
  30648. }
  30649. },
  30650. backBiker: {
  30651. height: math.unit(3.5, "meters"),
  30652. weight: math.unit(1200, "kg"),
  30653. name: "Back (Biker)",
  30654. image: {
  30655. source: "./media/characters/joanna/back-biker.svg",
  30656. extra: 1594 / 1495,
  30657. bottom: 88 / 1682
  30658. }
  30659. },
  30660. bikeLeft: {
  30661. height: math.unit(2.4, "meters"),
  30662. weight: math.unit(1600, "kg"),
  30663. name: "Bike (Left)",
  30664. image: {
  30665. source: "./media/characters/joanna/bike-left.svg",
  30666. extra: 720 / 720,
  30667. bottom: 8 / 728
  30668. }
  30669. },
  30670. bikeRight: {
  30671. height: math.unit(2.4, "meters"),
  30672. weight: math.unit(1600, "kg"),
  30673. name: "Bike (Right)",
  30674. image: {
  30675. source: "./media/characters/joanna/bike-right.svg",
  30676. extra: 720 / 720,
  30677. bottom: 8 / 728
  30678. }
  30679. },
  30680. },
  30681. [
  30682. {
  30683. name: "Incognito",
  30684. height: math.unit(3.5, "meters")
  30685. },
  30686. {
  30687. name: "Casual Big",
  30688. height: math.unit(200, "meters")
  30689. },
  30690. {
  30691. name: "Macro",
  30692. height: math.unit(600, "meters")
  30693. },
  30694. {
  30695. name: "Original",
  30696. height: math.unit(20, "km"),
  30697. default: true
  30698. },
  30699. {
  30700. name: "Giga",
  30701. height: math.unit(400, "km")
  30702. },
  30703. {
  30704. name: "Lounging",
  30705. height: math.unit(1500, "km")
  30706. },
  30707. {
  30708. name: "Planetary",
  30709. height: math.unit(200000, "km")
  30710. },
  30711. ]
  30712. ))
  30713. characterMakers.push(() => makeCharacter(
  30714. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30715. {
  30716. front: {
  30717. height: math.unit(6, "feet"),
  30718. weight: math.unit(150, "lb"),
  30719. name: "Front",
  30720. image: {
  30721. source: "./media/characters/hugo-sigil/front.svg",
  30722. extra: 522 / 500,
  30723. bottom: 2 / 524
  30724. }
  30725. },
  30726. back: {
  30727. height: math.unit(6, "feet"),
  30728. weight: math.unit(150, "lb"),
  30729. name: "Back",
  30730. image: {
  30731. source: "./media/characters/hugo-sigil/back.svg",
  30732. extra: 519 / 495,
  30733. bottom: 5 / 524
  30734. }
  30735. },
  30736. maw: {
  30737. height: math.unit(1.4, "feet"),
  30738. weight: math.unit(150, "lb"),
  30739. name: "Maw",
  30740. image: {
  30741. source: "./media/characters/hugo-sigil/maw.svg"
  30742. }
  30743. },
  30744. feet: {
  30745. height: math.unit(1.56, "feet"),
  30746. weight: math.unit(150, "lb"),
  30747. name: "Feet",
  30748. image: {
  30749. source: "./media/characters/hugo-sigil/feet.svg",
  30750. extra: 177 / 177,
  30751. bottom: 12 / 189
  30752. }
  30753. },
  30754. },
  30755. [
  30756. {
  30757. name: "Normal",
  30758. height: math.unit(6, "feet")
  30759. },
  30760. {
  30761. name: "Macro",
  30762. height: math.unit(200, "feet"),
  30763. default: true
  30764. },
  30765. ]
  30766. ))
  30767. characterMakers.push(() => makeCharacter(
  30768. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30769. {
  30770. front: {
  30771. height: math.unit(6, "feet"),
  30772. weight: math.unit(150, "lb"),
  30773. name: "Front",
  30774. image: {
  30775. source: "./media/characters/peri/front.svg",
  30776. extra: 2354 / 2233,
  30777. bottom: 49 / 2403
  30778. }
  30779. },
  30780. },
  30781. [
  30782. {
  30783. name: "Really Small",
  30784. height: math.unit(1, "nm")
  30785. },
  30786. {
  30787. name: "Micro",
  30788. height: math.unit(4, "inches")
  30789. },
  30790. {
  30791. name: "Normal",
  30792. height: math.unit(7, "inches"),
  30793. default: true
  30794. },
  30795. {
  30796. name: "Macro",
  30797. height: math.unit(400, "feet")
  30798. },
  30799. {
  30800. name: "Megamacro",
  30801. height: math.unit(100, "miles")
  30802. },
  30803. ]
  30804. ))
  30805. characterMakers.push(() => makeCharacter(
  30806. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30807. {
  30808. frontSlim: {
  30809. height: math.unit(7, "feet"),
  30810. name: "Front (Slim)",
  30811. image: {
  30812. source: "./media/characters/issilora/front-slim.svg",
  30813. extra: 529 / 449,
  30814. bottom: 53 / 582
  30815. }
  30816. },
  30817. sideSlim: {
  30818. height: math.unit(7, "feet"),
  30819. name: "Side (Slim)",
  30820. image: {
  30821. source: "./media/characters/issilora/side-slim.svg",
  30822. extra: 570 / 480,
  30823. bottom: 30 / 600
  30824. }
  30825. },
  30826. backSlim: {
  30827. height: math.unit(7, "feet"),
  30828. name: "Back (Slim)",
  30829. image: {
  30830. source: "./media/characters/issilora/back-slim.svg",
  30831. extra: 537 / 455,
  30832. bottom: 46 / 583
  30833. }
  30834. },
  30835. frontBuff: {
  30836. height: math.unit(7, "feet"),
  30837. name: "Front (Buff)",
  30838. image: {
  30839. source: "./media/characters/issilora/front-buff.svg",
  30840. extra: 2310 / 2035,
  30841. bottom: 335 / 2645
  30842. }
  30843. },
  30844. head: {
  30845. height: math.unit(1.94, "feet"),
  30846. name: "Head",
  30847. image: {
  30848. source: "./media/characters/issilora/head.svg"
  30849. }
  30850. },
  30851. },
  30852. [
  30853. {
  30854. name: "Minimum",
  30855. height: math.unit(7, "feet")
  30856. },
  30857. {
  30858. name: "Comfortable",
  30859. height: math.unit(17, "feet")
  30860. },
  30861. {
  30862. name: "Fun Size",
  30863. height: math.unit(47, "feet")
  30864. },
  30865. {
  30866. name: "Natural Macro",
  30867. height: math.unit(137, "feet"),
  30868. default: true
  30869. },
  30870. {
  30871. name: "Maximum Kaiju",
  30872. height: math.unit(397, "feet")
  30873. },
  30874. ]
  30875. ))
  30876. characterMakers.push(() => makeCharacter(
  30877. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30878. {
  30879. front: {
  30880. height: math.unit(50 + 9/12, "feet"),
  30881. weight: math.unit(32.8, "tons"),
  30882. name: "Front",
  30883. image: {
  30884. source: "./media/characters/irb'iiritaahn/front.svg",
  30885. extra: 1878/1826,
  30886. bottom: 326/2204
  30887. }
  30888. },
  30889. back: {
  30890. height: math.unit(50 + 9/12, "feet"),
  30891. weight: math.unit(32.8, "tons"),
  30892. name: "Back",
  30893. image: {
  30894. source: "./media/characters/irb'iiritaahn/back.svg",
  30895. extra: 2052/2018,
  30896. bottom: 152/2204
  30897. }
  30898. },
  30899. head: {
  30900. height: math.unit(12.86, "feet"),
  30901. name: "Head",
  30902. image: {
  30903. source: "./media/characters/irb'iiritaahn/head.svg"
  30904. }
  30905. },
  30906. maw: {
  30907. height: math.unit(9.66, "feet"),
  30908. name: "Maw",
  30909. image: {
  30910. source: "./media/characters/irb'iiritaahn/maw.svg"
  30911. }
  30912. },
  30913. frontDick: {
  30914. height: math.unit(8.78461, "feet"),
  30915. name: "Front Dick",
  30916. image: {
  30917. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30918. }
  30919. },
  30920. rearDick: {
  30921. height: math.unit(8.78461, "feet"),
  30922. name: "Rear Dick",
  30923. image: {
  30924. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30925. }
  30926. },
  30927. rearDickUnfolded: {
  30928. height: math.unit(8.78, "feet"),
  30929. name: "Rear Dick (Unfolded)",
  30930. image: {
  30931. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30932. }
  30933. },
  30934. wings: {
  30935. height: math.unit(43, "feet"),
  30936. name: "Wings",
  30937. image: {
  30938. source: "./media/characters/irb'iiritaahn/wings.svg"
  30939. }
  30940. },
  30941. },
  30942. [
  30943. {
  30944. name: "Macro",
  30945. height: math.unit(50 + 9/12, "feet"),
  30946. default: true
  30947. },
  30948. ]
  30949. ))
  30950. characterMakers.push(() => makeCharacter(
  30951. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30952. {
  30953. front: {
  30954. height: math.unit(205, "cm"),
  30955. weight: math.unit(102, "kg"),
  30956. name: "Front",
  30957. image: {
  30958. source: "./media/characters/irbisgreif/front.svg",
  30959. extra: 785/706,
  30960. bottom: 13/798
  30961. }
  30962. },
  30963. back: {
  30964. height: math.unit(205, "cm"),
  30965. weight: math.unit(102, "kg"),
  30966. name: "Back",
  30967. image: {
  30968. source: "./media/characters/irbisgreif/back.svg",
  30969. extra: 713/701,
  30970. bottom: 26/739
  30971. }
  30972. },
  30973. frontDressed: {
  30974. height: math.unit(216, "cm"),
  30975. weight: math.unit(102, "kg"),
  30976. name: "Front-dressed",
  30977. image: {
  30978. source: "./media/characters/irbisgreif/front-dressed.svg",
  30979. extra: 902/776,
  30980. bottom: 14/916
  30981. }
  30982. },
  30983. sideDressed: {
  30984. height: math.unit(195, "cm"),
  30985. weight: math.unit(102, "kg"),
  30986. name: "Side-dressed",
  30987. image: {
  30988. source: "./media/characters/irbisgreif/side-dressed.svg",
  30989. extra: 788/688,
  30990. bottom: 21/809
  30991. }
  30992. },
  30993. backDressed: {
  30994. height: math.unit(216, "cm"),
  30995. weight: math.unit(102, "kg"),
  30996. name: "Back-dressed",
  30997. image: {
  30998. source: "./media/characters/irbisgreif/back-dressed.svg",
  30999. extra: 901/783,
  31000. bottom: 10/911
  31001. }
  31002. },
  31003. dick: {
  31004. height: math.unit(0.49, "feet"),
  31005. name: "Dick",
  31006. image: {
  31007. source: "./media/characters/irbisgreif/dick.svg"
  31008. }
  31009. },
  31010. wingTop: {
  31011. height: math.unit(1.93 , "feet"),
  31012. name: "Wing-top",
  31013. image: {
  31014. source: "./media/characters/irbisgreif/wing-top.svg"
  31015. }
  31016. },
  31017. wingBottom: {
  31018. height: math.unit(1.93 , "feet"),
  31019. name: "Wing-bottom",
  31020. image: {
  31021. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31022. }
  31023. },
  31024. },
  31025. [
  31026. {
  31027. name: "Normal",
  31028. height: math.unit(216, "cm"),
  31029. default: true
  31030. },
  31031. ]
  31032. ))
  31033. characterMakers.push(() => makeCharacter(
  31034. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31035. {
  31036. front: {
  31037. height: math.unit(6, "feet"),
  31038. weight: math.unit(150, "lb"),
  31039. name: "Front",
  31040. image: {
  31041. source: "./media/characters/pride/front.svg",
  31042. extra: 1299/1230,
  31043. bottom: 18/1317
  31044. }
  31045. },
  31046. },
  31047. [
  31048. {
  31049. name: "Normal",
  31050. height: math.unit(7, "feet")
  31051. },
  31052. {
  31053. name: "Mini-macro",
  31054. height: math.unit(11, "feet")
  31055. },
  31056. {
  31057. name: "Macro",
  31058. height: math.unit(15, "meters"),
  31059. default: true
  31060. },
  31061. {
  31062. name: "Macro+",
  31063. height: math.unit(40, "meters")
  31064. },
  31065. ]
  31066. ))
  31067. characterMakers.push(() => makeCharacter(
  31068. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31069. {
  31070. front: {
  31071. height: math.unit(4 + 2 / 12, "feet"),
  31072. weight: math.unit(95, "lb"),
  31073. name: "Front",
  31074. image: {
  31075. source: "./media/characters/vaelophis-nyx/front.svg",
  31076. extra: 2532/2330,
  31077. bottom: 0/2532
  31078. }
  31079. },
  31080. back: {
  31081. height: math.unit(4 + 2 / 12, "feet"),
  31082. weight: math.unit(95, "lb"),
  31083. name: "Back",
  31084. image: {
  31085. source: "./media/characters/vaelophis-nyx/back.svg",
  31086. extra: 2484/2361,
  31087. bottom: 0/2484
  31088. }
  31089. },
  31090. feralSide: {
  31091. height: math.unit(2 + 1/12, "feet"),
  31092. weight: math.unit(20, "lb"),
  31093. name: "Feral (Side)",
  31094. image: {
  31095. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31096. extra: 1721/1581,
  31097. bottom: 70/1791
  31098. }
  31099. },
  31100. feralLazing: {
  31101. height: math.unit(1.08, "feet"),
  31102. weight: math.unit(20, "lb"),
  31103. name: "Feral (Lazing)",
  31104. image: {
  31105. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31106. extra: 822/822,
  31107. bottom: 248/1070
  31108. }
  31109. },
  31110. ear: {
  31111. height: math.unit(0.416, "feet"),
  31112. name: "Ear",
  31113. image: {
  31114. source: "./media/characters/vaelophis-nyx/ear.svg"
  31115. }
  31116. },
  31117. eye: {
  31118. height: math.unit(0.0748, "feet"),
  31119. name: "Eye",
  31120. image: {
  31121. source: "./media/characters/vaelophis-nyx/eye.svg"
  31122. }
  31123. },
  31124. mouth: {
  31125. height: math.unit(0.378, "feet"),
  31126. name: "Mouth",
  31127. image: {
  31128. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31129. }
  31130. },
  31131. spade: {
  31132. height: math.unit(0.55, "feet"),
  31133. name: "Spade",
  31134. image: {
  31135. source: "./media/characters/vaelophis-nyx/spade.svg"
  31136. }
  31137. },
  31138. },
  31139. [
  31140. {
  31141. name: "Normal",
  31142. height: math.unit(4 + 2/12, "feet"),
  31143. default: true
  31144. },
  31145. ]
  31146. ))
  31147. characterMakers.push(() => makeCharacter(
  31148. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31149. {
  31150. front: {
  31151. height: math.unit(7, "feet"),
  31152. weight: math.unit(231, "lb"),
  31153. name: "Front",
  31154. image: {
  31155. source: "./media/characters/flux/front.svg",
  31156. extra: 919/871,
  31157. bottom: 0/919
  31158. }
  31159. },
  31160. back: {
  31161. height: math.unit(7, "feet"),
  31162. weight: math.unit(231, "lb"),
  31163. name: "Back",
  31164. image: {
  31165. source: "./media/characters/flux/back.svg",
  31166. extra: 1040/992,
  31167. bottom: 0/1040
  31168. }
  31169. },
  31170. frontDressed: {
  31171. height: math.unit(7, "feet"),
  31172. weight: math.unit(231, "lb"),
  31173. name: "Front (Dressed)",
  31174. image: {
  31175. source: "./media/characters/flux/front-dressed.svg",
  31176. extra: 919/871,
  31177. bottom: 0/919
  31178. }
  31179. },
  31180. feralSide: {
  31181. height: math.unit(5, "feet"),
  31182. weight: math.unit(150, "lb"),
  31183. name: "Feral (Side)",
  31184. image: {
  31185. source: "./media/characters/flux/feral-side.svg",
  31186. extra: 598/528,
  31187. bottom: 28/626
  31188. }
  31189. },
  31190. head: {
  31191. height: math.unit(1.585, "feet"),
  31192. name: "Head",
  31193. image: {
  31194. source: "./media/characters/flux/head.svg"
  31195. }
  31196. },
  31197. headSide: {
  31198. height: math.unit(1.74, "feet"),
  31199. name: "Head (Side)",
  31200. image: {
  31201. source: "./media/characters/flux/head-side.svg"
  31202. }
  31203. },
  31204. headSideFire: {
  31205. height: math.unit(1.76, "feet"),
  31206. name: "Head (Side, Fire)",
  31207. image: {
  31208. source: "./media/characters/flux/head-side-fire.svg"
  31209. }
  31210. },
  31211. },
  31212. [
  31213. {
  31214. name: "Normal",
  31215. height: math.unit(7, "feet"),
  31216. default: true
  31217. },
  31218. ]
  31219. ))
  31220. characterMakers.push(() => makeCharacter(
  31221. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31222. {
  31223. front: {
  31224. height: math.unit(9, "feet"),
  31225. weight: math.unit(1012, "lb"),
  31226. name: "Front",
  31227. image: {
  31228. source: "./media/characters/ulfra-lupae/front.svg",
  31229. extra: 1083/1011,
  31230. bottom: 67/1150
  31231. }
  31232. },
  31233. },
  31234. [
  31235. {
  31236. name: "Micro",
  31237. height: math.unit(6, "inches")
  31238. },
  31239. {
  31240. name: "Socializing",
  31241. height: math.unit(6 + 5/12, "feet")
  31242. },
  31243. {
  31244. name: "Normal",
  31245. height: math.unit(9, "feet"),
  31246. default: true
  31247. },
  31248. {
  31249. name: "Macro",
  31250. height: math.unit(150, "feet")
  31251. },
  31252. ]
  31253. ))
  31254. characterMakers.push(() => makeCharacter(
  31255. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31256. {
  31257. front: {
  31258. height: math.unit(5 + 2/12, "feet"),
  31259. weight: math.unit(120, "lb"),
  31260. name: "Front",
  31261. image: {
  31262. source: "./media/characters/timber/front.svg",
  31263. extra: 2814/2705,
  31264. bottom: 181/2995
  31265. }
  31266. },
  31267. },
  31268. [
  31269. {
  31270. name: "Normal",
  31271. height: math.unit(5 + 2/12, "feet"),
  31272. default: true
  31273. },
  31274. ]
  31275. ))
  31276. characterMakers.push(() => makeCharacter(
  31277. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31278. {
  31279. front: {
  31280. height: math.unit(5 + 7/12, "feet"),
  31281. weight: math.unit(220, "lb"),
  31282. name: "Front",
  31283. image: {
  31284. source: "./media/characters/nicki/front.svg",
  31285. extra: 453/419,
  31286. bottom: 7/460
  31287. }
  31288. },
  31289. frontAlt: {
  31290. height: math.unit(5 + 7/12, "feet"),
  31291. weight: math.unit(220, "lb"),
  31292. name: "Front-alt",
  31293. image: {
  31294. source: "./media/characters/nicki/front-alt.svg",
  31295. extra: 435/411,
  31296. bottom: 12/447
  31297. }
  31298. },
  31299. back: {
  31300. height: math.unit(5 + 7/12, "feet"),
  31301. weight: math.unit(220, "lb"),
  31302. name: "Back",
  31303. image: {
  31304. source: "./media/characters/nicki/back.svg",
  31305. extra: 440/413,
  31306. bottom: 19/459
  31307. }
  31308. },
  31309. taur: {
  31310. height: math.unit(7 + 6/12, "feet"),
  31311. weight: math.unit(700, "lb"),
  31312. name: "Taur",
  31313. image: {
  31314. source: "./media/characters/nicki/taur.svg",
  31315. extra: 975/773,
  31316. bottom: 0/975
  31317. }
  31318. },
  31319. frontNsfw: {
  31320. height: math.unit(5 + 7/12, "feet"),
  31321. weight: math.unit(220, "lb"),
  31322. name: "Front (NSFW)",
  31323. image: {
  31324. source: "./media/characters/nicki/front-nsfw.svg",
  31325. extra: 453/419,
  31326. bottom: 7/460
  31327. }
  31328. },
  31329. frontNsfwAlt: {
  31330. height: math.unit(5 + 7/12, "feet"),
  31331. weight: math.unit(220, "lb"),
  31332. name: "Front (Alt, NSFW)",
  31333. image: {
  31334. source: "./media/characters/nicki/front-alt-nsfw.svg",
  31335. extra: 435/411,
  31336. bottom: 12/447
  31337. }
  31338. },
  31339. backNsfw: {
  31340. height: math.unit(5 + 7/12, "feet"),
  31341. weight: math.unit(220, "lb"),
  31342. name: "Back (NSFW)",
  31343. image: {
  31344. source: "./media/characters/nicki/back-nsfw.svg",
  31345. extra: 440/413,
  31346. bottom: 19/459
  31347. }
  31348. },
  31349. head: {
  31350. height: math.unit(2.1, "feet"),
  31351. name: "Head",
  31352. image: {
  31353. source: "./media/characters/nicki/head.svg"
  31354. }
  31355. },
  31356. paw: {
  31357. height: math.unit(1.88, "feet"),
  31358. name: "Paw",
  31359. image: {
  31360. source: "./media/characters/nicki/paw.svg"
  31361. }
  31362. },
  31363. },
  31364. [
  31365. {
  31366. name: "Normal",
  31367. height: math.unit(5 + 7/12, "feet"),
  31368. default: true
  31369. },
  31370. ]
  31371. ))
  31372. characterMakers.push(() => makeCharacter(
  31373. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31374. {
  31375. front: {
  31376. height: math.unit(7 + 10/12, "feet"),
  31377. weight: math.unit(3.5, "tons"),
  31378. name: "Front",
  31379. image: {
  31380. source: "./media/characters/lee/front.svg",
  31381. extra: 1773/1615,
  31382. bottom: 86/1859
  31383. }
  31384. },
  31385. hand: {
  31386. height: math.unit(1.78, "feet"),
  31387. name: "Hand",
  31388. image: {
  31389. source: "./media/characters/lee/hand.svg"
  31390. }
  31391. },
  31392. maw: {
  31393. height: math.unit(1.18, "feet"),
  31394. name: "Maw",
  31395. image: {
  31396. source: "./media/characters/lee/maw.svg"
  31397. }
  31398. },
  31399. },
  31400. [
  31401. {
  31402. name: "Normal",
  31403. height: math.unit(7 + 10/12, "feet"),
  31404. default: true
  31405. },
  31406. ]
  31407. ))
  31408. characterMakers.push(() => makeCharacter(
  31409. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31410. {
  31411. front: {
  31412. height: math.unit(9, "feet"),
  31413. name: "Front",
  31414. image: {
  31415. source: "./media/characters/guti/front.svg",
  31416. extra: 4551/4355,
  31417. bottom: 123/4674
  31418. }
  31419. },
  31420. tongue: {
  31421. height: math.unit(1, "feet"),
  31422. name: "Tongue",
  31423. image: {
  31424. source: "./media/characters/guti/tongue.svg"
  31425. }
  31426. },
  31427. paw: {
  31428. height: math.unit(1.18, "feet"),
  31429. name: "Paw",
  31430. image: {
  31431. source: "./media/characters/guti/paw.svg"
  31432. }
  31433. },
  31434. },
  31435. [
  31436. {
  31437. name: "Normal",
  31438. height: math.unit(9, "feet"),
  31439. default: true
  31440. },
  31441. ]
  31442. ))
  31443. characterMakers.push(() => makeCharacter(
  31444. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31445. {
  31446. side: {
  31447. height: math.unit(5, "meters"),
  31448. name: "Side",
  31449. image: {
  31450. source: "./media/characters/vesper/side.svg",
  31451. extra: 1605/1518,
  31452. bottom: 0/1605
  31453. }
  31454. },
  31455. },
  31456. [
  31457. {
  31458. name: "Small",
  31459. height: math.unit(5, "meters")
  31460. },
  31461. {
  31462. name: "Sage",
  31463. height: math.unit(100, "meters"),
  31464. default: true
  31465. },
  31466. {
  31467. name: "Fun Size",
  31468. height: math.unit(600, "meters")
  31469. },
  31470. {
  31471. name: "Goddess",
  31472. height: math.unit(20000, "km")
  31473. },
  31474. {
  31475. name: "Maximum",
  31476. height: math.unit(5, "galaxies")
  31477. },
  31478. ]
  31479. ))
  31480. characterMakers.push(() => makeCharacter(
  31481. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31482. {
  31483. front: {
  31484. height: math.unit(6 + 3/12, "feet"),
  31485. weight: math.unit(190, "lb"),
  31486. name: "Front",
  31487. image: {
  31488. source: "./media/characters/gawain/front.svg",
  31489. extra: 2222/2139,
  31490. bottom: 90/2312
  31491. }
  31492. },
  31493. back: {
  31494. height: math.unit(6 + 3/12, "feet"),
  31495. weight: math.unit(190, "lb"),
  31496. name: "Back",
  31497. image: {
  31498. source: "./media/characters/gawain/back.svg",
  31499. extra: 2199/2111,
  31500. bottom: 73/2272
  31501. }
  31502. },
  31503. },
  31504. [
  31505. {
  31506. name: "Normal",
  31507. height: math.unit(6 + 3/12, "feet"),
  31508. default: true
  31509. },
  31510. ]
  31511. ))
  31512. characterMakers.push(() => makeCharacter(
  31513. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31514. {
  31515. side: {
  31516. height: math.unit(3.5, "meters"),
  31517. weight: math.unit(16000, "lb"),
  31518. name: "Side",
  31519. image: {
  31520. source: "./media/characters/dascalti/side.svg",
  31521. extra: 392/273,
  31522. bottom: 47/439
  31523. }
  31524. },
  31525. breath: {
  31526. height: math.unit(7.4, "feet"),
  31527. name: "Breath",
  31528. image: {
  31529. source: "./media/characters/dascalti/breath.svg"
  31530. }
  31531. },
  31532. fed: {
  31533. height: math.unit(3.6, "meters"),
  31534. weight: math.unit(16000, "lb"),
  31535. name: "Fed",
  31536. image: {
  31537. source: "./media/characters/dascalti/fed.svg",
  31538. extra: 1419/820,
  31539. bottom: 95/1514
  31540. }
  31541. },
  31542. },
  31543. [
  31544. {
  31545. name: "Normal",
  31546. height: math.unit(3.5, "meters"),
  31547. default: true
  31548. },
  31549. ]
  31550. ))
  31551. characterMakers.push(() => makeCharacter(
  31552. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31553. {
  31554. front: {
  31555. height: math.unit(3 + 5/12, "feet"),
  31556. name: "Front",
  31557. image: {
  31558. source: "./media/characters/mauve/front.svg",
  31559. extra: 1126/1033,
  31560. bottom: 65/1191
  31561. }
  31562. },
  31563. side: {
  31564. height: math.unit(3 + 5/12, "feet"),
  31565. name: "Side",
  31566. image: {
  31567. source: "./media/characters/mauve/side.svg",
  31568. extra: 1089/1001,
  31569. bottom: 29/1118
  31570. }
  31571. },
  31572. back: {
  31573. height: math.unit(3 + 5/12, "feet"),
  31574. name: "Back",
  31575. image: {
  31576. source: "./media/characters/mauve/back.svg",
  31577. extra: 1173/1053,
  31578. bottom: 109/1282
  31579. }
  31580. },
  31581. },
  31582. [
  31583. {
  31584. name: "Normal",
  31585. height: math.unit(3 + 5/12, "feet"),
  31586. default: true
  31587. },
  31588. ]
  31589. ))
  31590. characterMakers.push(() => makeCharacter(
  31591. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31592. {
  31593. front: {
  31594. height: math.unit(6 + 3/12, "feet"),
  31595. weight: math.unit(430, "lb"),
  31596. name: "Front",
  31597. image: {
  31598. source: "./media/characters/carlos/front.svg",
  31599. extra: 1964/1913,
  31600. bottom: 70/2034
  31601. }
  31602. },
  31603. },
  31604. [
  31605. {
  31606. name: "Normal",
  31607. height: math.unit(6 + 3/12, "feet"),
  31608. default: true
  31609. },
  31610. ]
  31611. ))
  31612. characterMakers.push(() => makeCharacter(
  31613. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31614. {
  31615. back: {
  31616. height: math.unit(5 + 10/12, "feet"),
  31617. weight: math.unit(200, "lb"),
  31618. name: "Back",
  31619. image: {
  31620. source: "./media/characters/jax/back.svg",
  31621. extra: 764/739,
  31622. bottom: 25/789
  31623. }
  31624. },
  31625. },
  31626. [
  31627. {
  31628. name: "Normal",
  31629. height: math.unit(5 + 10/12, "feet"),
  31630. default: true
  31631. },
  31632. ]
  31633. ))
  31634. characterMakers.push(() => makeCharacter(
  31635. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31636. {
  31637. front: {
  31638. height: math.unit(8, "feet"),
  31639. weight: math.unit(250, "lb"),
  31640. name: "Front",
  31641. image: {
  31642. source: "./media/characters/eikthynir/front.svg",
  31643. extra: 1332/1166,
  31644. bottom: 82/1414
  31645. }
  31646. },
  31647. back: {
  31648. height: math.unit(8, "feet"),
  31649. weight: math.unit(250, "lb"),
  31650. name: "Back",
  31651. image: {
  31652. source: "./media/characters/eikthynir/back.svg",
  31653. extra: 1342/1190,
  31654. bottom: 19/1361
  31655. }
  31656. },
  31657. dick: {
  31658. height: math.unit(2.35, "feet"),
  31659. name: "Dick",
  31660. image: {
  31661. source: "./media/characters/eikthynir/dick.svg"
  31662. }
  31663. },
  31664. },
  31665. [
  31666. {
  31667. name: "Normal",
  31668. height: math.unit(8, "feet"),
  31669. default: true
  31670. },
  31671. ]
  31672. ))
  31673. characterMakers.push(() => makeCharacter(
  31674. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31675. {
  31676. front: {
  31677. height: math.unit(99, "meters"),
  31678. weight: math.unit(13000, "tons"),
  31679. name: "Front",
  31680. image: {
  31681. source: "./media/characters/zlmos/front.svg",
  31682. extra: 2202/1992,
  31683. bottom: 315/2517
  31684. }
  31685. },
  31686. },
  31687. [
  31688. {
  31689. name: "Macro",
  31690. height: math.unit(99, "meters"),
  31691. default: true
  31692. },
  31693. ]
  31694. ))
  31695. characterMakers.push(() => makeCharacter(
  31696. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31697. {
  31698. front: {
  31699. height: math.unit(6 + 5/12, "feet"),
  31700. name: "Front",
  31701. image: {
  31702. source: "./media/characters/purri/front.svg",
  31703. extra: 1698/1610,
  31704. bottom: 32/1730
  31705. }
  31706. },
  31707. frontAlt: {
  31708. height: math.unit(6 + 5/12, "feet"),
  31709. name: "Front (Alt)",
  31710. image: {
  31711. source: "./media/characters/purri/front-alt.svg",
  31712. extra: 450/420,
  31713. bottom: 26/476
  31714. }
  31715. },
  31716. boots: {
  31717. height: math.unit(5.5, "feet"),
  31718. name: "Boots",
  31719. image: {
  31720. source: "./media/characters/purri/boots.svg",
  31721. extra: 905/853,
  31722. bottom: 18/923
  31723. }
  31724. },
  31725. lying: {
  31726. height: math.unit(2, "feet"),
  31727. name: "Lying",
  31728. image: {
  31729. source: "./media/characters/purri/lying.svg",
  31730. extra: 940/843,
  31731. bottom: 146/1086
  31732. }
  31733. },
  31734. devious: {
  31735. height: math.unit(1.77, "feet"),
  31736. name: "Devious",
  31737. image: {
  31738. source: "./media/characters/purri/devious.svg",
  31739. extra: 1440/1155,
  31740. bottom: 147/1587
  31741. }
  31742. },
  31743. bean: {
  31744. height: math.unit(1.94, "feet"),
  31745. name: "Bean",
  31746. image: {
  31747. source: "./media/characters/purri/bean.svg"
  31748. }
  31749. },
  31750. },
  31751. [
  31752. {
  31753. name: "Micro",
  31754. height: math.unit(1, "mm")
  31755. },
  31756. {
  31757. name: "Normal",
  31758. height: math.unit(6 + 5/12, "feet"),
  31759. default: true
  31760. },
  31761. {
  31762. name: "Macro :3c",
  31763. height: math.unit(2, "miles")
  31764. },
  31765. ]
  31766. ))
  31767. characterMakers.push(() => makeCharacter(
  31768. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31769. {
  31770. front: {
  31771. height: math.unit(6 + 2/12, "feet"),
  31772. weight: math.unit(250, "lb"),
  31773. name: "Front",
  31774. image: {
  31775. source: "./media/characters/moonlight/front.svg",
  31776. extra: 1044/908,
  31777. bottom: 56/1100
  31778. }
  31779. },
  31780. feral: {
  31781. height: math.unit(3 + 1/12, "feet"),
  31782. weight: math.unit(50, "kg"),
  31783. name: "Feral",
  31784. image: {
  31785. source: "./media/characters/moonlight/feral.svg",
  31786. extra: 3705/2791,
  31787. bottom: 145/3850
  31788. }
  31789. },
  31790. paw: {
  31791. height: math.unit(1, "feet"),
  31792. name: "Paw",
  31793. image: {
  31794. source: "./media/characters/moonlight/paw.svg"
  31795. }
  31796. },
  31797. paws: {
  31798. height: math.unit(0.98, "feet"),
  31799. name: "Paws",
  31800. image: {
  31801. source: "./media/characters/moonlight/paws.svg",
  31802. extra: 939/939,
  31803. bottom: 50/989
  31804. }
  31805. },
  31806. mouth: {
  31807. height: math.unit(0.48, "feet"),
  31808. name: "Mouth",
  31809. image: {
  31810. source: "./media/characters/moonlight/mouth.svg"
  31811. }
  31812. },
  31813. dick: {
  31814. height: math.unit(1.46, "feet"),
  31815. name: "Dick",
  31816. image: {
  31817. source: "./media/characters/moonlight/dick.svg"
  31818. }
  31819. },
  31820. },
  31821. [
  31822. {
  31823. name: "Normal",
  31824. height: math.unit(6 + 2/12, "feet"),
  31825. default: true
  31826. },
  31827. {
  31828. name: "Macro",
  31829. height: math.unit(300, "feet")
  31830. },
  31831. {
  31832. name: "Macro+",
  31833. height: math.unit(1, "mile")
  31834. },
  31835. {
  31836. name: "Mt. Moon",
  31837. height: math.unit(5, "miles")
  31838. },
  31839. {
  31840. name: "Megamacro",
  31841. height: math.unit(15, "miles")
  31842. },
  31843. ]
  31844. ))
  31845. characterMakers.push(() => makeCharacter(
  31846. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31847. {
  31848. back: {
  31849. height: math.unit(6, "feet"),
  31850. weight: math.unit(150, "lb"),
  31851. name: "Back",
  31852. image: {
  31853. source: "./media/characters/sylen/back.svg",
  31854. extra: 1335/1273,
  31855. bottom: 107/1442
  31856. }
  31857. },
  31858. },
  31859. [
  31860. {
  31861. name: "Normal",
  31862. height: math.unit(5 + 5/12, "feet")
  31863. },
  31864. {
  31865. name: "Megamacro",
  31866. height: math.unit(3, "miles"),
  31867. default: true
  31868. },
  31869. ]
  31870. ))
  31871. characterMakers.push(() => makeCharacter(
  31872. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31873. {
  31874. front: {
  31875. height: math.unit(6, "feet"),
  31876. weight: math.unit(190, "lb"),
  31877. name: "Front",
  31878. image: {
  31879. source: "./media/characters/huttser/front.svg",
  31880. extra: 1152/1058,
  31881. bottom: 23/1175
  31882. }
  31883. },
  31884. side: {
  31885. height: math.unit(6, "feet"),
  31886. weight: math.unit(190, "lb"),
  31887. name: "Side",
  31888. image: {
  31889. source: "./media/characters/huttser/side.svg",
  31890. extra: 1174/1065,
  31891. bottom: 18/1192
  31892. }
  31893. },
  31894. back: {
  31895. height: math.unit(6, "feet"),
  31896. weight: math.unit(190, "lb"),
  31897. name: "Back",
  31898. image: {
  31899. source: "./media/characters/huttser/back.svg",
  31900. extra: 1158/1056,
  31901. bottom: 12/1170
  31902. }
  31903. },
  31904. },
  31905. [
  31906. ]
  31907. ))
  31908. characterMakers.push(() => makeCharacter(
  31909. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31910. {
  31911. side: {
  31912. height: math.unit(12 + 9/12, "feet"),
  31913. weight: math.unit(15000, "lb"),
  31914. name: "Side",
  31915. image: {
  31916. source: "./media/characters/faan/side.svg",
  31917. extra: 2747/2697,
  31918. bottom: 0/2747
  31919. }
  31920. },
  31921. front: {
  31922. height: math.unit(12 + 9/12, "feet"),
  31923. weight: math.unit(15000, "lb"),
  31924. name: "Front",
  31925. image: {
  31926. source: "./media/characters/faan/front.svg",
  31927. extra: 607/571,
  31928. bottom: 24/631
  31929. }
  31930. },
  31931. head: {
  31932. height: math.unit(2.85, "feet"),
  31933. name: "Head",
  31934. image: {
  31935. source: "./media/characters/faan/head.svg"
  31936. }
  31937. },
  31938. headAlt: {
  31939. height: math.unit(3.13, "feet"),
  31940. name: "Head-alt",
  31941. image: {
  31942. source: "./media/characters/faan/head-alt.svg"
  31943. }
  31944. },
  31945. },
  31946. [
  31947. {
  31948. name: "Normal",
  31949. height: math.unit(12 + 9/12, "feet"),
  31950. default: true
  31951. },
  31952. ]
  31953. ))
  31954. characterMakers.push(() => makeCharacter(
  31955. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31956. {
  31957. front: {
  31958. height: math.unit(6, "feet"),
  31959. weight: math.unit(300, "lb"),
  31960. name: "Front",
  31961. image: {
  31962. source: "./media/characters/tanio/front.svg",
  31963. extra: 711/673,
  31964. bottom: 25/736
  31965. }
  31966. },
  31967. },
  31968. [
  31969. {
  31970. name: "Normal",
  31971. height: math.unit(6, "feet"),
  31972. default: true
  31973. },
  31974. ]
  31975. ))
  31976. characterMakers.push(() => makeCharacter(
  31977. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31978. {
  31979. front: {
  31980. height: math.unit(3, "inches"),
  31981. name: "Front",
  31982. image: {
  31983. source: "./media/characters/noboru/front.svg",
  31984. extra: 1039/932,
  31985. bottom: 18/1057
  31986. }
  31987. },
  31988. },
  31989. [
  31990. {
  31991. name: "Micro",
  31992. height: math.unit(3, "inches"),
  31993. default: true
  31994. },
  31995. ]
  31996. ))
  31997. characterMakers.push(() => makeCharacter(
  31998. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31999. {
  32000. front: {
  32001. height: math.unit(1.85, "meters"),
  32002. weight: math.unit(80, "kg"),
  32003. name: "Front",
  32004. image: {
  32005. source: "./media/characters/daniel-barrett/front.svg",
  32006. extra: 355/337,
  32007. bottom: 9/364
  32008. }
  32009. },
  32010. },
  32011. [
  32012. {
  32013. name: "Pico",
  32014. height: math.unit(0.0433, "mm")
  32015. },
  32016. {
  32017. name: "Nano",
  32018. height: math.unit(1.5, "mm")
  32019. },
  32020. {
  32021. name: "Micro",
  32022. height: math.unit(5.3, "cm"),
  32023. default: true
  32024. },
  32025. {
  32026. name: "Normal",
  32027. height: math.unit(1.85, "meters")
  32028. },
  32029. {
  32030. name: "Macro",
  32031. height: math.unit(64.7, "meters")
  32032. },
  32033. {
  32034. name: "Megamacro",
  32035. height: math.unit(2.26, "km")
  32036. },
  32037. {
  32038. name: "Gigamacro",
  32039. height: math.unit(79, "km")
  32040. },
  32041. {
  32042. name: "Teramacro",
  32043. height: math.unit(2765, "km")
  32044. },
  32045. {
  32046. name: "Petamacro",
  32047. height: math.unit(96678, "km")
  32048. },
  32049. ]
  32050. ))
  32051. characterMakers.push(() => makeCharacter(
  32052. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32053. {
  32054. front: {
  32055. height: math.unit(30, "meters"),
  32056. weight: math.unit(400, "tons"),
  32057. name: "Front",
  32058. image: {
  32059. source: "./media/characters/zeel/front.svg",
  32060. extra: 2599/2599,
  32061. bottom: 226/2825
  32062. }
  32063. },
  32064. },
  32065. [
  32066. {
  32067. name: "Macro",
  32068. height: math.unit(30, "meters"),
  32069. default: true
  32070. },
  32071. ]
  32072. ))
  32073. characterMakers.push(() => makeCharacter(
  32074. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32075. {
  32076. front: {
  32077. height: math.unit(6 + 7/12, "feet"),
  32078. weight: math.unit(210, "lb"),
  32079. name: "Front",
  32080. image: {
  32081. source: "./media/characters/tarn/front.svg",
  32082. extra: 3517/3220,
  32083. bottom: 91/3608
  32084. }
  32085. },
  32086. back: {
  32087. height: math.unit(6 + 7/12, "feet"),
  32088. weight: math.unit(210, "lb"),
  32089. name: "Back",
  32090. image: {
  32091. source: "./media/characters/tarn/back.svg",
  32092. extra: 3566/3241,
  32093. bottom: 34/3600
  32094. }
  32095. },
  32096. dick: {
  32097. height: math.unit(1.65, "feet"),
  32098. name: "Dick",
  32099. image: {
  32100. source: "./media/characters/tarn/dick.svg"
  32101. }
  32102. },
  32103. paw: {
  32104. height: math.unit(1.80, "feet"),
  32105. name: "Paw",
  32106. image: {
  32107. source: "./media/characters/tarn/paw.svg"
  32108. }
  32109. },
  32110. tongue: {
  32111. height: math.unit(0.97, "feet"),
  32112. name: "Tongue",
  32113. image: {
  32114. source: "./media/characters/tarn/tongue.svg"
  32115. }
  32116. },
  32117. },
  32118. [
  32119. {
  32120. name: "Micro",
  32121. height: math.unit(4, "inches")
  32122. },
  32123. {
  32124. name: "Normal",
  32125. height: math.unit(6 + 7/12, "feet"),
  32126. default: true
  32127. },
  32128. {
  32129. name: "Macro",
  32130. height: math.unit(300, "feet")
  32131. },
  32132. ]
  32133. ))
  32134. characterMakers.push(() => makeCharacter(
  32135. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32136. {
  32137. front: {
  32138. height: math.unit(5 + 7/12, "feet"),
  32139. weight: math.unit(80, "kg"),
  32140. name: "Front",
  32141. image: {
  32142. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32143. extra: 3023/2865,
  32144. bottom: 33/3056
  32145. }
  32146. },
  32147. back: {
  32148. height: math.unit(5 + 7/12, "feet"),
  32149. weight: math.unit(80, "kg"),
  32150. name: "Back",
  32151. image: {
  32152. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32153. extra: 3020/2886,
  32154. bottom: 30/3050
  32155. }
  32156. },
  32157. dick: {
  32158. height: math.unit(0.98, "feet"),
  32159. name: "Dick",
  32160. image: {
  32161. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32162. }
  32163. },
  32164. anatomy: {
  32165. height: math.unit(2.86, "feet"),
  32166. name: "Anatomy",
  32167. image: {
  32168. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32169. }
  32170. },
  32171. },
  32172. [
  32173. {
  32174. name: "Really Small",
  32175. height: math.unit(2, "inches")
  32176. },
  32177. {
  32178. name: "Micro",
  32179. height: math.unit(5.583, "inches")
  32180. },
  32181. {
  32182. name: "Normal",
  32183. height: math.unit(5 + 7/12, "feet"),
  32184. default: true
  32185. },
  32186. {
  32187. name: "Macro",
  32188. height: math.unit(67, "feet")
  32189. },
  32190. {
  32191. name: "Megamacro",
  32192. height: math.unit(134, "feet")
  32193. },
  32194. ]
  32195. ))
  32196. characterMakers.push(() => makeCharacter(
  32197. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32198. {
  32199. front: {
  32200. height: math.unit(9, "feet"),
  32201. weight: math.unit(120, "lb"),
  32202. name: "Front",
  32203. image: {
  32204. source: "./media/characters/sally/front.svg",
  32205. extra: 1506/1349,
  32206. bottom: 66/1572
  32207. }
  32208. },
  32209. },
  32210. [
  32211. {
  32212. name: "Normal",
  32213. height: math.unit(9, "feet"),
  32214. default: true
  32215. },
  32216. ]
  32217. ))
  32218. characterMakers.push(() => makeCharacter(
  32219. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32220. {
  32221. front: {
  32222. height: math.unit(8, "feet"),
  32223. weight: math.unit(900, "lb"),
  32224. name: "Front",
  32225. image: {
  32226. source: "./media/characters/owen/front.svg",
  32227. extra: 1761/1657,
  32228. bottom: 74/1835
  32229. }
  32230. },
  32231. side: {
  32232. height: math.unit(8, "feet"),
  32233. weight: math.unit(900, "lb"),
  32234. name: "Side",
  32235. image: {
  32236. source: "./media/characters/owen/side.svg",
  32237. extra: 1797/1734,
  32238. bottom: 30/1827
  32239. }
  32240. },
  32241. back: {
  32242. height: math.unit(8, "feet"),
  32243. weight: math.unit(900, "lb"),
  32244. name: "Back",
  32245. image: {
  32246. source: "./media/characters/owen/back.svg",
  32247. extra: 1796/1706,
  32248. bottom: 59/1855
  32249. }
  32250. },
  32251. maw: {
  32252. height: math.unit(1.76, "feet"),
  32253. name: "Maw",
  32254. image: {
  32255. source: "./media/characters/owen/maw.svg"
  32256. }
  32257. },
  32258. },
  32259. [
  32260. {
  32261. name: "Normal",
  32262. height: math.unit(8, "feet"),
  32263. default: true
  32264. },
  32265. ]
  32266. ))
  32267. characterMakers.push(() => makeCharacter(
  32268. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32269. {
  32270. front: {
  32271. height: math.unit(4, "feet"),
  32272. weight: math.unit(400, "lb"),
  32273. name: "Front",
  32274. image: {
  32275. source: "./media/characters/ryth/front.svg",
  32276. extra: 1920/1748,
  32277. bottom: 42/1962
  32278. }
  32279. },
  32280. back: {
  32281. height: math.unit(4, "feet"),
  32282. weight: math.unit(400, "lb"),
  32283. name: "Back",
  32284. image: {
  32285. source: "./media/characters/ryth/back.svg",
  32286. extra: 1897/1690,
  32287. bottom: 89/1986
  32288. }
  32289. },
  32290. mouth: {
  32291. height: math.unit(1.39, "feet"),
  32292. name: "Mouth",
  32293. image: {
  32294. source: "./media/characters/ryth/mouth.svg"
  32295. }
  32296. },
  32297. tailmaw: {
  32298. height: math.unit(1.23, "feet"),
  32299. name: "Tailmaw",
  32300. image: {
  32301. source: "./media/characters/ryth/tailmaw.svg"
  32302. }
  32303. },
  32304. goia: {
  32305. height: math.unit(4, "meters"),
  32306. weight: math.unit(10800, "lb"),
  32307. name: "Goia",
  32308. image: {
  32309. source: "./media/characters/ryth/goia.svg",
  32310. extra: 745/640,
  32311. bottom: 107/852
  32312. }
  32313. },
  32314. goiaFront: {
  32315. height: math.unit(4, "meters"),
  32316. weight: math.unit(10800, "lb"),
  32317. name: "Goia (Front)",
  32318. image: {
  32319. source: "./media/characters/ryth/goia-front.svg",
  32320. extra: 750/586,
  32321. bottom: 114/864
  32322. }
  32323. },
  32324. goiaMaw: {
  32325. height: math.unit(5.55, "feet"),
  32326. name: "Goia Maw",
  32327. image: {
  32328. source: "./media/characters/ryth/goia-maw.svg"
  32329. }
  32330. },
  32331. goiaForepaw: {
  32332. height: math.unit(3.5, "feet"),
  32333. name: "Goia Forepaw",
  32334. image: {
  32335. source: "./media/characters/ryth/goia-forepaw.svg"
  32336. }
  32337. },
  32338. goiaHindpaw: {
  32339. height: math.unit(5.55, "feet"),
  32340. name: "Goia Hindpaw",
  32341. image: {
  32342. source: "./media/characters/ryth/goia-hindpaw.svg"
  32343. }
  32344. },
  32345. },
  32346. [
  32347. {
  32348. name: "Normal",
  32349. height: math.unit(4, "feet"),
  32350. default: true
  32351. },
  32352. ]
  32353. ))
  32354. characterMakers.push(() => makeCharacter(
  32355. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32356. {
  32357. front: {
  32358. height: math.unit(7, "feet"),
  32359. weight: math.unit(180, "lb"),
  32360. name: "Front",
  32361. image: {
  32362. source: "./media/characters/necrolance/front.svg",
  32363. extra: 1062/947,
  32364. bottom: 41/1103
  32365. }
  32366. },
  32367. back: {
  32368. height: math.unit(7, "feet"),
  32369. weight: math.unit(180, "lb"),
  32370. name: "Back",
  32371. image: {
  32372. source: "./media/characters/necrolance/back.svg",
  32373. extra: 1045/984,
  32374. bottom: 14/1059
  32375. }
  32376. },
  32377. wing: {
  32378. height: math.unit(2.67, "feet"),
  32379. name: "Wing",
  32380. image: {
  32381. source: "./media/characters/necrolance/wing.svg"
  32382. }
  32383. },
  32384. },
  32385. [
  32386. {
  32387. name: "Normal",
  32388. height: math.unit(7, "feet"),
  32389. default: true
  32390. },
  32391. ]
  32392. ))
  32393. characterMakers.push(() => makeCharacter(
  32394. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32395. {
  32396. front: {
  32397. height: math.unit(76, "meters"),
  32398. weight: math.unit(30000, "tons"),
  32399. name: "Front",
  32400. image: {
  32401. source: "./media/characters/tyler/front.svg",
  32402. extra: 1640/1640,
  32403. bottom: 114/1754
  32404. }
  32405. },
  32406. },
  32407. [
  32408. {
  32409. name: "Macro",
  32410. height: math.unit(76, "meters"),
  32411. default: true
  32412. },
  32413. ]
  32414. ))
  32415. characterMakers.push(() => makeCharacter(
  32416. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32417. {
  32418. front: {
  32419. height: math.unit(4 + 11/12, "feet"),
  32420. weight: math.unit(132, "lb"),
  32421. name: "Front",
  32422. image: {
  32423. source: "./media/characters/icey/front.svg",
  32424. extra: 2750/2550,
  32425. bottom: 33/2783
  32426. }
  32427. },
  32428. back: {
  32429. height: math.unit(4 + 11/12, "feet"),
  32430. weight: math.unit(132, "lb"),
  32431. name: "Back",
  32432. image: {
  32433. source: "./media/characters/icey/back.svg",
  32434. extra: 2624/2481,
  32435. bottom: 35/2659
  32436. }
  32437. },
  32438. },
  32439. [
  32440. {
  32441. name: "Normal",
  32442. height: math.unit(4 + 11/12, "feet"),
  32443. default: true
  32444. },
  32445. ]
  32446. ))
  32447. characterMakers.push(() => makeCharacter(
  32448. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32449. {
  32450. front: {
  32451. height: math.unit(100, "feet"),
  32452. weight: math.unit(0, "lb"),
  32453. name: "Front",
  32454. image: {
  32455. source: "./media/characters/smile/front.svg",
  32456. extra: 2983/2912,
  32457. bottom: 162/3145
  32458. }
  32459. },
  32460. back: {
  32461. height: math.unit(100, "feet"),
  32462. weight: math.unit(0, "lb"),
  32463. name: "Back",
  32464. image: {
  32465. source: "./media/characters/smile/back.svg",
  32466. extra: 3143/3031,
  32467. bottom: 91/3234
  32468. }
  32469. },
  32470. head: {
  32471. height: math.unit(26.3, "feet"),
  32472. weight: math.unit(0, "lb"),
  32473. name: "Head",
  32474. image: {
  32475. source: "./media/characters/smile/head.svg"
  32476. }
  32477. },
  32478. collar: {
  32479. height: math.unit(5.3, "feet"),
  32480. weight: math.unit(0, "lb"),
  32481. name: "Collar",
  32482. image: {
  32483. source: "./media/characters/smile/collar.svg"
  32484. }
  32485. },
  32486. },
  32487. [
  32488. {
  32489. name: "Macro",
  32490. height: math.unit(100, "feet"),
  32491. default: true
  32492. },
  32493. ]
  32494. ))
  32495. characterMakers.push(() => makeCharacter(
  32496. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32497. {
  32498. dragon: {
  32499. height: math.unit(26, "feet"),
  32500. weight: math.unit(36, "tons"),
  32501. name: "Dragon",
  32502. image: {
  32503. source: "./media/characters/arimphae/dragon.svg",
  32504. extra: 1574/983,
  32505. bottom: 357/1931
  32506. }
  32507. },
  32508. drake: {
  32509. height: math.unit(9, "feet"),
  32510. weight: math.unit(1.5, "tons"),
  32511. name: "Drake",
  32512. image: {
  32513. source: "./media/characters/arimphae/drake.svg",
  32514. extra: 1120/925,
  32515. bottom: 435/1555
  32516. }
  32517. },
  32518. },
  32519. [
  32520. {
  32521. name: "Small",
  32522. height: math.unit(26*5/9, "feet")
  32523. },
  32524. {
  32525. name: "Normal",
  32526. height: math.unit(26, "feet"),
  32527. default: true
  32528. },
  32529. ]
  32530. ))
  32531. characterMakers.push(() => makeCharacter(
  32532. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32533. {
  32534. front: {
  32535. height: math.unit(8 + 9/12, "feet"),
  32536. name: "Front",
  32537. image: {
  32538. source: "./media/characters/xander/front.svg",
  32539. extra: 1237/974,
  32540. bottom: 94/1331
  32541. }
  32542. },
  32543. },
  32544. [
  32545. {
  32546. name: "Normal",
  32547. height: math.unit(8 + 9/12, "feet"),
  32548. default: true
  32549. },
  32550. {
  32551. name: "Gaze Grabber",
  32552. height: math.unit(13 + 8/12, "feet")
  32553. },
  32554. {
  32555. name: "Jaw Dropper",
  32556. height: math.unit(27, "feet")
  32557. },
  32558. {
  32559. name: "Show Stopper",
  32560. height: math.unit(136, "feet")
  32561. },
  32562. {
  32563. name: "Superstar",
  32564. height: math.unit(1.9e6, "miles")
  32565. },
  32566. ]
  32567. ))
  32568. characterMakers.push(() => makeCharacter(
  32569. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32570. {
  32571. side: {
  32572. height: math.unit(2100, "feet"),
  32573. name: "Side",
  32574. image: {
  32575. source: "./media/characters/osiris/side.svg",
  32576. extra: 1105/939,
  32577. bottom: 167/1272
  32578. }
  32579. },
  32580. },
  32581. [
  32582. {
  32583. name: "Macro",
  32584. height: math.unit(2100, "feet"),
  32585. default: true
  32586. },
  32587. ]
  32588. ))
  32589. characterMakers.push(() => makeCharacter(
  32590. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32591. {
  32592. front: {
  32593. height: math.unit(6 + 8/12, "feet"),
  32594. weight: math.unit(225, "lb"),
  32595. name: "Front",
  32596. image: {
  32597. source: "./media/characters/rhys-londe/front.svg",
  32598. extra: 2258/2141,
  32599. bottom: 188/2446
  32600. }
  32601. },
  32602. back: {
  32603. height: math.unit(6 + 8/12, "feet"),
  32604. weight: math.unit(225, "lb"),
  32605. name: "Back",
  32606. image: {
  32607. source: "./media/characters/rhys-londe/back.svg",
  32608. extra: 2237/2137,
  32609. bottom: 63/2300
  32610. }
  32611. },
  32612. frontNsfw: {
  32613. height: math.unit(6 + 8/12, "feet"),
  32614. weight: math.unit(225, "lb"),
  32615. name: "Front (NSFW)",
  32616. image: {
  32617. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32618. extra: 2258/2141,
  32619. bottom: 188/2446
  32620. }
  32621. },
  32622. backNsfw: {
  32623. height: math.unit(6 + 8/12, "feet"),
  32624. weight: math.unit(225, "lb"),
  32625. name: "Back (NSFW)",
  32626. image: {
  32627. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32628. extra: 2237/2137,
  32629. bottom: 63/2300
  32630. }
  32631. },
  32632. dick: {
  32633. height: math.unit(30, "inches"),
  32634. name: "Dick",
  32635. image: {
  32636. source: "./media/characters/rhys-londe/dick.svg"
  32637. }
  32638. },
  32639. maw: {
  32640. height: math.unit(1.6, "feet"),
  32641. name: "Maw",
  32642. image: {
  32643. source: "./media/characters/rhys-londe/maw.svg"
  32644. }
  32645. },
  32646. },
  32647. [
  32648. {
  32649. name: "Normal",
  32650. height: math.unit(6 + 8/12, "feet"),
  32651. default: true
  32652. },
  32653. ]
  32654. ))
  32655. characterMakers.push(() => makeCharacter(
  32656. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32657. {
  32658. front: {
  32659. height: math.unit(3 + 10/12, "feet"),
  32660. weight: math.unit(90, "lb"),
  32661. name: "Front",
  32662. image: {
  32663. source: "./media/characters/taivas-ensim/front.svg",
  32664. extra: 1327/1216,
  32665. bottom: 96/1423
  32666. }
  32667. },
  32668. back: {
  32669. height: math.unit(3 + 10/12, "feet"),
  32670. weight: math.unit(90, "lb"),
  32671. name: "Back",
  32672. image: {
  32673. source: "./media/characters/taivas-ensim/back.svg",
  32674. extra: 1355/1247,
  32675. bottom: 11/1366
  32676. }
  32677. },
  32678. frontNsfw: {
  32679. height: math.unit(3 + 10/12, "feet"),
  32680. weight: math.unit(90, "lb"),
  32681. name: "Front (NSFW)",
  32682. image: {
  32683. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32684. extra: 1327/1216,
  32685. bottom: 96/1423
  32686. }
  32687. },
  32688. backNsfw: {
  32689. height: math.unit(3 + 10/12, "feet"),
  32690. weight: math.unit(90, "lb"),
  32691. name: "Back (NSFW)",
  32692. image: {
  32693. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32694. extra: 1355/1247,
  32695. bottom: 11/1366
  32696. }
  32697. },
  32698. },
  32699. [
  32700. {
  32701. name: "Normal",
  32702. height: math.unit(3 + 10/12, "feet"),
  32703. default: true
  32704. },
  32705. ]
  32706. ))
  32707. characterMakers.push(() => makeCharacter(
  32708. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32709. {
  32710. front: {
  32711. height: math.unit(9 + 6/12, "feet"),
  32712. weight: math.unit(940, "lb"),
  32713. name: "Front",
  32714. image: {
  32715. source: "./media/characters/byliss/front.svg",
  32716. extra: 1327/1290,
  32717. bottom: 82/1409
  32718. }
  32719. },
  32720. back: {
  32721. height: math.unit(9 + 6/12, "feet"),
  32722. weight: math.unit(940, "lb"),
  32723. name: "Back",
  32724. image: {
  32725. source: "./media/characters/byliss/back.svg",
  32726. extra: 1376/1349,
  32727. bottom: 9/1385
  32728. }
  32729. },
  32730. frontNsfw: {
  32731. height: math.unit(9 + 6/12, "feet"),
  32732. weight: math.unit(940, "lb"),
  32733. name: "Front (NSFW)",
  32734. image: {
  32735. source: "./media/characters/byliss/front-nsfw.svg",
  32736. extra: 1327/1290,
  32737. bottom: 82/1409
  32738. }
  32739. },
  32740. backNsfw: {
  32741. height: math.unit(9 + 6/12, "feet"),
  32742. weight: math.unit(940, "lb"),
  32743. name: "Back (NSFW)",
  32744. image: {
  32745. source: "./media/characters/byliss/back-nsfw.svg",
  32746. extra: 1376/1349,
  32747. bottom: 9/1385
  32748. }
  32749. },
  32750. },
  32751. [
  32752. {
  32753. name: "Normal",
  32754. height: math.unit(9 + 6/12, "feet"),
  32755. default: true
  32756. },
  32757. ]
  32758. ))
  32759. characterMakers.push(() => makeCharacter(
  32760. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32761. {
  32762. front: {
  32763. height: math.unit(5 + 2/12, "feet"),
  32764. weight: math.unit(200, "lb"),
  32765. name: "Front",
  32766. image: {
  32767. source: "./media/characters/noraly/front.svg",
  32768. extra: 4985/4773,
  32769. bottom: 150/5135
  32770. }
  32771. },
  32772. full: {
  32773. height: math.unit(5 + 2/12, "feet"),
  32774. weight: math.unit(164, "lb"),
  32775. name: "Full",
  32776. image: {
  32777. source: "./media/characters/noraly/full.svg",
  32778. extra: 1114/1059,
  32779. bottom: 35/1149
  32780. }
  32781. },
  32782. fuller: {
  32783. height: math.unit(5 + 2/12, "feet"),
  32784. weight: math.unit(230, "lb"),
  32785. name: "Fuller",
  32786. image: {
  32787. source: "./media/characters/noraly/fuller.svg",
  32788. extra: 1114/1059,
  32789. bottom: 35/1149
  32790. }
  32791. },
  32792. fullest: {
  32793. height: math.unit(5 + 2/12, "feet"),
  32794. weight: math.unit(300, "lb"),
  32795. name: "Fullest",
  32796. image: {
  32797. source: "./media/characters/noraly/fullest.svg",
  32798. extra: 1114/1059,
  32799. bottom: 35/1149
  32800. }
  32801. },
  32802. },
  32803. [
  32804. {
  32805. name: "Normal",
  32806. height: math.unit(5 + 2/12, "feet"),
  32807. default: true
  32808. },
  32809. ]
  32810. ))
  32811. characterMakers.push(() => makeCharacter(
  32812. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32813. {
  32814. front: {
  32815. height: math.unit(5 + 2/12, "feet"),
  32816. weight: math.unit(210, "lb"),
  32817. name: "Front",
  32818. image: {
  32819. source: "./media/characters/pera/front.svg",
  32820. extra: 1560/1531,
  32821. bottom: 165/1725
  32822. }
  32823. },
  32824. back: {
  32825. height: math.unit(5 + 2/12, "feet"),
  32826. weight: math.unit(210, "lb"),
  32827. name: "Back",
  32828. image: {
  32829. source: "./media/characters/pera/back.svg",
  32830. extra: 1523/1493,
  32831. bottom: 152/1675
  32832. }
  32833. },
  32834. dick: {
  32835. height: math.unit(2.4, "feet"),
  32836. name: "Dick",
  32837. image: {
  32838. source: "./media/characters/pera/dick.svg"
  32839. }
  32840. },
  32841. },
  32842. [
  32843. {
  32844. name: "Normal",
  32845. height: math.unit(5 + 2/12, "feet"),
  32846. default: true
  32847. },
  32848. ]
  32849. ))
  32850. characterMakers.push(() => makeCharacter(
  32851. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32852. {
  32853. front: {
  32854. height: math.unit(12, "feet"),
  32855. weight: math.unit(3200, "lb"),
  32856. name: "Front",
  32857. image: {
  32858. source: "./media/characters/julian/front.svg",
  32859. extra: 2962/2701,
  32860. bottom: 184/3146
  32861. }
  32862. },
  32863. maw: {
  32864. height: math.unit(5.35, "feet"),
  32865. name: "Maw",
  32866. image: {
  32867. source: "./media/characters/julian/maw.svg"
  32868. }
  32869. },
  32870. paw: {
  32871. height: math.unit(3.07, "feet"),
  32872. name: "Paw",
  32873. image: {
  32874. source: "./media/characters/julian/paw.svg"
  32875. }
  32876. },
  32877. },
  32878. [
  32879. {
  32880. name: "Default",
  32881. height: math.unit(12, "feet"),
  32882. default: true
  32883. },
  32884. {
  32885. name: "Big",
  32886. height: math.unit(50, "feet")
  32887. },
  32888. {
  32889. name: "Really Big",
  32890. height: math.unit(1, "mile")
  32891. },
  32892. {
  32893. name: "Extremely Big",
  32894. height: math.unit(100, "miles")
  32895. },
  32896. {
  32897. name: "Planet Hugger",
  32898. height: math.unit(200, "megameters")
  32899. },
  32900. {
  32901. name: "Unreasonably Big",
  32902. height: math.unit(1e300, "meters")
  32903. },
  32904. ]
  32905. ))
  32906. characterMakers.push(() => makeCharacter(
  32907. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32908. {
  32909. solgooleo: {
  32910. height: math.unit(4, "meters"),
  32911. weight: math.unit(6000*1.5, "kg"),
  32912. volume: math.unit(6000, "liters"),
  32913. name: "Solgooleo",
  32914. image: {
  32915. source: "./media/characters/pi/solgooleo.svg",
  32916. extra: 388/331,
  32917. bottom: 29/417
  32918. }
  32919. },
  32920. },
  32921. [
  32922. {
  32923. name: "Normal",
  32924. height: math.unit(4, "meters"),
  32925. default: true
  32926. },
  32927. ]
  32928. ))
  32929. characterMakers.push(() => makeCharacter(
  32930. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32931. {
  32932. front: {
  32933. height: math.unit(8, "feet"),
  32934. weight: math.unit(4, "tons"),
  32935. name: "Front",
  32936. image: {
  32937. source: "./media/characters/shaun/front.svg",
  32938. extra: 503/495,
  32939. bottom: 20/523
  32940. }
  32941. },
  32942. back: {
  32943. height: math.unit(8, "feet"),
  32944. weight: math.unit(4, "tons"),
  32945. name: "Back",
  32946. image: {
  32947. source: "./media/characters/shaun/back.svg",
  32948. extra: 487/480,
  32949. bottom: 20/507
  32950. }
  32951. },
  32952. },
  32953. [
  32954. {
  32955. name: "Lorg",
  32956. height: math.unit(8, "feet"),
  32957. default: true
  32958. },
  32959. ]
  32960. ))
  32961. characterMakers.push(() => makeCharacter(
  32962. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32963. {
  32964. front: {
  32965. height: math.unit(7, "feet"),
  32966. name: "Front",
  32967. image: {
  32968. source: "./media/characters/sini/front.svg",
  32969. extra: 726/678,
  32970. bottom: 35/761
  32971. }
  32972. },
  32973. back: {
  32974. height: math.unit(7, "feet"),
  32975. name: "Back",
  32976. image: {
  32977. source: "./media/characters/sini/back.svg",
  32978. extra: 743/701,
  32979. bottom: 12/755
  32980. }
  32981. },
  32982. mawAnthro: {
  32983. height: math.unit(2.14, "feet"),
  32984. name: "Maw (Anthro)",
  32985. image: {
  32986. source: "./media/characters/sini/maw-anthro.svg"
  32987. }
  32988. },
  32989. dick: {
  32990. height: math.unit(1.45, "feet"),
  32991. name: "Dick (Anthro)",
  32992. image: {
  32993. source: "./media/characters/sini/dick-anthro.svg"
  32994. }
  32995. },
  32996. feral: {
  32997. height: math.unit(16, "feet"),
  32998. name: "Feral",
  32999. image: {
  33000. source: "./media/characters/sini/feral.svg",
  33001. extra: 814/605,
  33002. bottom: 11/825
  33003. }
  33004. },
  33005. mawFeral: {
  33006. height: math.unit(5.66, "feet"),
  33007. name: "Maw-feral",
  33008. image: {
  33009. source: "./media/characters/sini/maw-feral.svg"
  33010. }
  33011. },
  33012. footFeral: {
  33013. height: math.unit(5.17, "feet"),
  33014. name: "Foot-feral",
  33015. image: {
  33016. source: "./media/characters/sini/foot-feral.svg"
  33017. }
  33018. },
  33019. },
  33020. [
  33021. {
  33022. name: "Normal",
  33023. height: math.unit(7, "feet"),
  33024. default: true
  33025. },
  33026. ]
  33027. ))
  33028. characterMakers.push(() => makeCharacter(
  33029. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33030. {
  33031. side: {
  33032. height: math.unit(13, "meters"),
  33033. weight: math.unit(9072, "kg"),
  33034. name: "Side",
  33035. image: {
  33036. source: "./media/characters/raylldo/side.svg",
  33037. extra: 403/344,
  33038. bottom: 42/445
  33039. }
  33040. },
  33041. leaping: {
  33042. height: math.unit(12.3, "meters"),
  33043. weight: math.unit(9072, "kg"),
  33044. name: "Leaping",
  33045. image: {
  33046. source: "./media/characters/raylldo/leaping.svg",
  33047. extra: 470/249,
  33048. bottom: 13/483
  33049. }
  33050. },
  33051. flying: {
  33052. height: math.unit(18, "meters"),
  33053. weight: math.unit(9072, "kg"),
  33054. name: "Flying",
  33055. image: {
  33056. source: "./media/characters/raylldo/flying.svg"
  33057. }
  33058. },
  33059. head: {
  33060. height: math.unit(5.85, "meters"),
  33061. name: "Head",
  33062. image: {
  33063. source: "./media/characters/raylldo/head.svg"
  33064. }
  33065. },
  33066. maw: {
  33067. height: math.unit(5.32, "meters"),
  33068. name: "Maw",
  33069. image: {
  33070. source: "./media/characters/raylldo/maw.svg"
  33071. }
  33072. },
  33073. eye: {
  33074. height: math.unit(0.54, "meters"),
  33075. name: "Eye",
  33076. image: {
  33077. source: "./media/characters/raylldo/eye.svg"
  33078. }
  33079. },
  33080. },
  33081. [
  33082. {
  33083. name: "Normal",
  33084. height: math.unit(13, "meters"),
  33085. default: true
  33086. },
  33087. ]
  33088. ))
  33089. characterMakers.push(() => makeCharacter(
  33090. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33091. {
  33092. anthroFront: {
  33093. height: math.unit(9, "feet"),
  33094. weight: math.unit(600, "lb"),
  33095. name: "Anthro (Front)",
  33096. image: {
  33097. source: "./media/characters/glint/anthro-front.svg",
  33098. extra: 1097/1018,
  33099. bottom: 28/1125
  33100. }
  33101. },
  33102. anthroBack: {
  33103. height: math.unit(9, "feet"),
  33104. weight: math.unit(600, "lb"),
  33105. name: "Anthro (Back)",
  33106. image: {
  33107. source: "./media/characters/glint/anthro-back.svg",
  33108. extra: 1154/997,
  33109. bottom: 36/1190
  33110. }
  33111. },
  33112. feral: {
  33113. height: math.unit(11, "feet"),
  33114. weight: math.unit(50000, "lb"),
  33115. name: "Feral",
  33116. image: {
  33117. source: "./media/characters/glint/feral.svg",
  33118. extra: 3035/1585,
  33119. bottom: 1169/4204
  33120. }
  33121. },
  33122. dickAnthro: {
  33123. height: math.unit(0.7, "meters"),
  33124. name: "Dick (Anthro)",
  33125. image: {
  33126. source: "./media/characters/glint/dick-anthro.svg"
  33127. }
  33128. },
  33129. dickFeral: {
  33130. height: math.unit(2.65, "meters"),
  33131. name: "Dick (Feral)",
  33132. image: {
  33133. source: "./media/characters/glint/dick-feral.svg"
  33134. }
  33135. },
  33136. slitHidden: {
  33137. height: math.unit(5.85, "meters"),
  33138. name: "Slit (Hidden)",
  33139. image: {
  33140. source: "./media/characters/glint/slit-hidden.svg"
  33141. }
  33142. },
  33143. slitErect: {
  33144. height: math.unit(5.85, "meters"),
  33145. name: "Slit (Erect)",
  33146. image: {
  33147. source: "./media/characters/glint/slit-erect.svg"
  33148. }
  33149. },
  33150. mawAnthro: {
  33151. height: math.unit(0.63, "meters"),
  33152. name: "Maw (Anthro)",
  33153. image: {
  33154. source: "./media/characters/glint/maw.svg"
  33155. }
  33156. },
  33157. mawFeral: {
  33158. height: math.unit(2.89, "meters"),
  33159. name: "Maw (Feral)",
  33160. image: {
  33161. source: "./media/characters/glint/maw.svg"
  33162. }
  33163. },
  33164. },
  33165. [
  33166. {
  33167. name: "Normal",
  33168. height: math.unit(9, "feet"),
  33169. default: true
  33170. },
  33171. ]
  33172. ))
  33173. characterMakers.push(() => makeCharacter(
  33174. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33175. {
  33176. side: {
  33177. height: math.unit(15, "feet"),
  33178. weight: math.unit(5000, "kg"),
  33179. name: "Side",
  33180. image: {
  33181. source: "./media/characters/kairne/side.svg",
  33182. extra: 979/811,
  33183. bottom: 13/992
  33184. }
  33185. },
  33186. front: {
  33187. height: math.unit(15, "feet"),
  33188. weight: math.unit(5000, "kg"),
  33189. name: "Front",
  33190. image: {
  33191. source: "./media/characters/kairne/front.svg",
  33192. extra: 908/814,
  33193. bottom: 26/934
  33194. }
  33195. },
  33196. sideNsfw: {
  33197. height: math.unit(15, "feet"),
  33198. weight: math.unit(5000, "kg"),
  33199. name: "Side (NSFW)",
  33200. image: {
  33201. source: "./media/characters/kairne/side-nsfw.svg",
  33202. extra: 979/811,
  33203. bottom: 13/992
  33204. }
  33205. },
  33206. frontNsfw: {
  33207. height: math.unit(15, "feet"),
  33208. weight: math.unit(5000, "kg"),
  33209. name: "Front (NSFW)",
  33210. image: {
  33211. source: "./media/characters/kairne/front-nsfw.svg",
  33212. extra: 908/814,
  33213. bottom: 26/934
  33214. }
  33215. },
  33216. dickCaged: {
  33217. height: math.unit(0.65, "meters"),
  33218. name: "Dick-caged",
  33219. image: {
  33220. source: "./media/characters/kairne/dick-caged.svg"
  33221. }
  33222. },
  33223. dick: {
  33224. height: math.unit(0.79, "meters"),
  33225. name: "Dick",
  33226. image: {
  33227. source: "./media/characters/kairne/dick.svg"
  33228. }
  33229. },
  33230. genitals: {
  33231. height: math.unit(1.29, "meters"),
  33232. name: "Genitals",
  33233. image: {
  33234. source: "./media/characters/kairne/genitals.svg"
  33235. }
  33236. },
  33237. maw: {
  33238. height: math.unit(1.73, "meters"),
  33239. name: "Maw",
  33240. image: {
  33241. source: "./media/characters/kairne/maw.svg"
  33242. }
  33243. },
  33244. },
  33245. [
  33246. {
  33247. name: "Normal",
  33248. height: math.unit(15, "feet"),
  33249. default: true
  33250. },
  33251. ]
  33252. ))
  33253. characterMakers.push(() => makeCharacter(
  33254. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33255. {
  33256. front: {
  33257. height: math.unit(5 + 8/12, "feet"),
  33258. weight: math.unit(139, "lb"),
  33259. name: "Front",
  33260. image: {
  33261. source: "./media/characters/biscuit-jackal/front.svg",
  33262. extra: 2106/1961,
  33263. bottom: 58/2164
  33264. }
  33265. },
  33266. back: {
  33267. height: math.unit(5 + 8/12, "feet"),
  33268. weight: math.unit(139, "lb"),
  33269. name: "Back",
  33270. image: {
  33271. source: "./media/characters/biscuit-jackal/back.svg",
  33272. extra: 2132/1976,
  33273. bottom: 57/2189
  33274. }
  33275. },
  33276. werejackal: {
  33277. height: math.unit(6 + 3/12, "feet"),
  33278. weight: math.unit(188, "lb"),
  33279. name: "Werejackal",
  33280. image: {
  33281. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33282. extra: 2373/2178,
  33283. bottom: 53/2426
  33284. }
  33285. },
  33286. },
  33287. [
  33288. {
  33289. name: "Normal",
  33290. height: math.unit(5 + 8/12, "feet"),
  33291. default: true
  33292. },
  33293. ]
  33294. ))
  33295. characterMakers.push(() => makeCharacter(
  33296. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33297. {
  33298. front: {
  33299. height: math.unit(140, "cm"),
  33300. weight: math.unit(45, "kg"),
  33301. name: "Front",
  33302. image: {
  33303. source: "./media/characters/tayra-white/front.svg",
  33304. extra: 2229/2192,
  33305. bottom: 75/2304
  33306. }
  33307. },
  33308. },
  33309. [
  33310. {
  33311. name: "Normal",
  33312. height: math.unit(140, "cm"),
  33313. default: true
  33314. },
  33315. ]
  33316. ))
  33317. characterMakers.push(() => makeCharacter(
  33318. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  33319. {
  33320. front: {
  33321. height: math.unit(4 + 5/12, "feet"),
  33322. name: "Front",
  33323. image: {
  33324. source: "./media/characters/scoop/front.svg",
  33325. extra: 1257/1136,
  33326. bottom: 69/1326
  33327. }
  33328. },
  33329. back: {
  33330. height: math.unit(4 + 5/12, "feet"),
  33331. name: "Back",
  33332. image: {
  33333. source: "./media/characters/scoop/back.svg",
  33334. extra: 1321/1152,
  33335. bottom: 32/1353
  33336. }
  33337. },
  33338. maw: {
  33339. height: math.unit(0.68, "feet"),
  33340. name: "Maw",
  33341. image: {
  33342. source: "./media/characters/scoop/maw.svg"
  33343. }
  33344. },
  33345. },
  33346. [
  33347. {
  33348. name: "Really Small",
  33349. height: math.unit(1, "mm")
  33350. },
  33351. {
  33352. name: "Micro",
  33353. height: math.unit(1, "inch")
  33354. },
  33355. {
  33356. name: "Normal",
  33357. height: math.unit(4 + 5/12, "feet"),
  33358. default: true
  33359. },
  33360. {
  33361. name: "Macro",
  33362. height: math.unit(200, "feet")
  33363. },
  33364. {
  33365. name: "Megamacro",
  33366. height: math.unit(3240, "feet")
  33367. },
  33368. {
  33369. name: "Teramacro",
  33370. height: math.unit(2500, "miles")
  33371. },
  33372. ]
  33373. ))
  33374. characterMakers.push(() => makeCharacter(
  33375. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  33376. {
  33377. front: {
  33378. height: math.unit(15 + 7/12, "feet"),
  33379. name: "Front",
  33380. image: {
  33381. source: "./media/characters/saphinara/front.svg",
  33382. extra: 604/546,
  33383. bottom: 19/623
  33384. }
  33385. },
  33386. side: {
  33387. height: math.unit(15 + 7/12, "feet"),
  33388. name: "Side",
  33389. image: {
  33390. source: "./media/characters/saphinara/side.svg",
  33391. extra: 605/547,
  33392. bottom: 6/611
  33393. }
  33394. },
  33395. back: {
  33396. height: math.unit(15 + 7/12, "feet"),
  33397. name: "Back",
  33398. image: {
  33399. source: "./media/characters/saphinara/back.svg",
  33400. extra: 591/531,
  33401. bottom: 13/604
  33402. }
  33403. },
  33404. frontTail: {
  33405. height: math.unit(15 + 7/12, "feet"),
  33406. name: "Front (Full Tail)",
  33407. image: {
  33408. source: "./media/characters/saphinara/front-tail.svg",
  33409. extra: 748/547,
  33410. bottom: 66/814
  33411. }
  33412. },
  33413. },
  33414. [
  33415. {
  33416. name: "Normal",
  33417. height: math.unit(15 + 7/12, "feet"),
  33418. default: true
  33419. },
  33420. {
  33421. name: "Angry",
  33422. height: math.unit(30 + 6/12, "feet")
  33423. },
  33424. {
  33425. name: "Enraged",
  33426. height: math.unit(102 + 1/12, "feet")
  33427. },
  33428. ]
  33429. ))
  33430. characterMakers.push(() => makeCharacter(
  33431. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  33432. {
  33433. front: {
  33434. height: math.unit(6 + 8/12, "feet"),
  33435. weight: math.unit(300, "lb"),
  33436. name: "Front",
  33437. image: {
  33438. source: "./media/characters/jrain/front.svg",
  33439. extra: 3039/2865,
  33440. bottom: 399/3438
  33441. }
  33442. },
  33443. back: {
  33444. height: math.unit(6 + 8/12, "feet"),
  33445. weight: math.unit(300, "lb"),
  33446. name: "Back",
  33447. image: {
  33448. source: "./media/characters/jrain/back.svg",
  33449. extra: 3089/2938,
  33450. bottom: 172/3261
  33451. }
  33452. },
  33453. head: {
  33454. height: math.unit(2.14, "feet"),
  33455. name: "Head",
  33456. image: {
  33457. source: "./media/characters/jrain/head.svg"
  33458. }
  33459. },
  33460. maw: {
  33461. height: math.unit(1.77, "feet"),
  33462. name: "Maw",
  33463. image: {
  33464. source: "./media/characters/jrain/maw.svg"
  33465. }
  33466. },
  33467. leftHand: {
  33468. height: math.unit(1.1, "feet"),
  33469. name: "Left Hand",
  33470. image: {
  33471. source: "./media/characters/jrain/left-hand.svg"
  33472. }
  33473. },
  33474. rightHand: {
  33475. height: math.unit(1.1, "feet"),
  33476. name: "Right Hand",
  33477. image: {
  33478. source: "./media/characters/jrain/right-hand.svg"
  33479. }
  33480. },
  33481. eye: {
  33482. height: math.unit(0.35, "feet"),
  33483. name: "Eye",
  33484. image: {
  33485. source: "./media/characters/jrain/eye.svg"
  33486. }
  33487. },
  33488. },
  33489. [
  33490. {
  33491. name: "Normal",
  33492. height: math.unit(6 + 8/12, "feet"),
  33493. default: true
  33494. },
  33495. {
  33496. name: "Casually Large",
  33497. height: math.unit(25, "feet")
  33498. },
  33499. {
  33500. name: "Giant",
  33501. height: math.unit(100, "feet")
  33502. },
  33503. {
  33504. name: "Kaiju",
  33505. height: math.unit(300, "feet")
  33506. },
  33507. ]
  33508. ))
  33509. characterMakers.push(() => makeCharacter(
  33510. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33511. {
  33512. dragon: {
  33513. height: math.unit(5, "meters"),
  33514. name: "Dragon",
  33515. image: {
  33516. source: "./media/characters/sabrina/dragon.svg",
  33517. extra: 3670 / 2365,
  33518. bottom: 333 / 4003
  33519. }
  33520. },
  33521. gryphon: {
  33522. height: math.unit(3, "meters"),
  33523. name: "Gryphon",
  33524. image: {
  33525. source: "./media/characters/sabrina/gryphon.svg",
  33526. extra: 1576 / 945,
  33527. bottom: 71 / 1647
  33528. }
  33529. },
  33530. snake: {
  33531. height: math.unit(12, "meters"),
  33532. name: "Snake",
  33533. image: {
  33534. source: "./media/characters/sabrina/snake.svg",
  33535. extra: 1758 / 1320,
  33536. bottom: 186 / 1944
  33537. }
  33538. },
  33539. collar: {
  33540. height: math.unit(1.86, "meters"),
  33541. name: "Collar",
  33542. image: {
  33543. source: "./media/characters/sabrina/collar.svg"
  33544. }
  33545. },
  33546. eye: {
  33547. height: math.unit(0.53, "meters"),
  33548. name: "Eye",
  33549. image: {
  33550. source: "./media/characters/sabrina/eye.svg"
  33551. }
  33552. },
  33553. foot: {
  33554. height: math.unit(1.86, "meters"),
  33555. name: "Foot",
  33556. image: {
  33557. source: "./media/characters/sabrina/foot.svg"
  33558. }
  33559. },
  33560. hand: {
  33561. height: math.unit(1.32, "meters"),
  33562. name: "Hand",
  33563. image: {
  33564. source: "./media/characters/sabrina/hand.svg"
  33565. }
  33566. },
  33567. head: {
  33568. height: math.unit(2.44, "meters"),
  33569. name: "Head",
  33570. image: {
  33571. source: "./media/characters/sabrina/head.svg"
  33572. }
  33573. },
  33574. headAngry: {
  33575. height: math.unit(2.44, "meters"),
  33576. name: "Head (Angry))",
  33577. image: {
  33578. source: "./media/characters/sabrina/head-angry.svg"
  33579. }
  33580. },
  33581. maw: {
  33582. height: math.unit(1.65, "meters"),
  33583. name: "Maw",
  33584. image: {
  33585. source: "./media/characters/sabrina/maw.svg"
  33586. }
  33587. },
  33588. spikes: {
  33589. height: math.unit(1.69, "meters"),
  33590. name: "Spikes",
  33591. image: {
  33592. source: "./media/characters/sabrina/spikes.svg"
  33593. }
  33594. },
  33595. stomach: {
  33596. height: math.unit(1.15, "meters"),
  33597. name: "Stomach",
  33598. image: {
  33599. source: "./media/characters/sabrina/stomach.svg"
  33600. }
  33601. },
  33602. tongue: {
  33603. height: math.unit(1.27, "meters"),
  33604. name: "Tongue",
  33605. image: {
  33606. source: "./media/characters/sabrina/tongue.svg"
  33607. }
  33608. },
  33609. wingDorsal: {
  33610. height: math.unit(4.85, "meters"),
  33611. name: "Wing (Dorsal)",
  33612. image: {
  33613. source: "./media/characters/sabrina/wing-dorsal.svg"
  33614. }
  33615. },
  33616. wingVentral: {
  33617. height: math.unit(4.85, "meters"),
  33618. name: "Wing (Ventral)",
  33619. image: {
  33620. source: "./media/characters/sabrina/wing-ventral.svg"
  33621. }
  33622. },
  33623. },
  33624. [
  33625. {
  33626. name: "Normal",
  33627. height: math.unit(5, "meters"),
  33628. default: true
  33629. },
  33630. ]
  33631. ))
  33632. characterMakers.push(() => makeCharacter(
  33633. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33634. {
  33635. frontMaid: {
  33636. height: math.unit(5 + 5/12, "feet"),
  33637. weight: math.unit(130, "lb"),
  33638. name: "Front (Maid)",
  33639. image: {
  33640. source: "./media/characters/midnight-tales/front-maid.svg",
  33641. extra: 489/454,
  33642. bottom: 61/550
  33643. }
  33644. },
  33645. frontFormal: {
  33646. height: math.unit(5 + 5/12, "feet"),
  33647. weight: math.unit(130, "lb"),
  33648. name: "Front (Formal)",
  33649. image: {
  33650. source: "./media/characters/midnight-tales/front-formal.svg",
  33651. extra: 489/454,
  33652. bottom: 61/550
  33653. }
  33654. },
  33655. back: {
  33656. height: math.unit(5 + 5/12, "feet"),
  33657. weight: math.unit(130, "lb"),
  33658. name: "Back",
  33659. image: {
  33660. source: "./media/characters/midnight-tales/back.svg",
  33661. extra: 498/456,
  33662. bottom: 33/531
  33663. }
  33664. },
  33665. frontBeast: {
  33666. height: math.unit(40, "feet"),
  33667. weight: math.unit(64000, "lb"),
  33668. name: "Front (Beast)",
  33669. image: {
  33670. source: "./media/characters/midnight-tales/front-beast.svg",
  33671. extra: 927/860,
  33672. bottom: 53/980
  33673. }
  33674. },
  33675. backBeast: {
  33676. height: math.unit(40, "feet"),
  33677. weight: math.unit(64000, "lb"),
  33678. name: "Back (Beast)",
  33679. image: {
  33680. source: "./media/characters/midnight-tales/back-beast.svg",
  33681. extra: 929/855,
  33682. bottom: 16/945
  33683. }
  33684. },
  33685. footBeast: {
  33686. height: math.unit(6.7, "feet"),
  33687. name: "Foot (Beast)",
  33688. image: {
  33689. source: "./media/characters/midnight-tales/foot-beast.svg"
  33690. }
  33691. },
  33692. headBeast: {
  33693. height: math.unit(8, "feet"),
  33694. name: "Head (Beast)",
  33695. image: {
  33696. source: "./media/characters/midnight-tales/head-beast.svg"
  33697. }
  33698. },
  33699. },
  33700. [
  33701. {
  33702. name: "Normal",
  33703. height: math.unit(5 + 5 / 12, "feet"),
  33704. default: true
  33705. },
  33706. {
  33707. name: "Macro",
  33708. height: math.unit(25, "feet")
  33709. },
  33710. ]
  33711. ))
  33712. characterMakers.push(() => makeCharacter(
  33713. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33714. {
  33715. front: {
  33716. height: math.unit(5 + 10/12, "feet"),
  33717. name: "Front",
  33718. image: {
  33719. source: "./media/characters/argon/front.svg",
  33720. extra: 2009/1935,
  33721. bottom: 118/2127
  33722. }
  33723. },
  33724. back: {
  33725. height: math.unit(5 + 10/12, "feet"),
  33726. name: "Back",
  33727. image: {
  33728. source: "./media/characters/argon/back.svg",
  33729. extra: 2047/1992,
  33730. bottom: 20/2067
  33731. }
  33732. },
  33733. frontDressed: {
  33734. height: math.unit(5 + 10/12, "feet"),
  33735. name: "Front (Dressed)",
  33736. image: {
  33737. source: "./media/characters/argon/front-dressed.svg",
  33738. extra: 2009/1935,
  33739. bottom: 118/2127
  33740. }
  33741. },
  33742. },
  33743. [
  33744. {
  33745. name: "Normal",
  33746. height: math.unit(5 + 10/12, "feet"),
  33747. default: true
  33748. },
  33749. ]
  33750. ))
  33751. characterMakers.push(() => makeCharacter(
  33752. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33753. {
  33754. front: {
  33755. height: math.unit(8 + 6/12, "feet"),
  33756. weight: math.unit(1150, "lb"),
  33757. name: "Front",
  33758. image: {
  33759. source: "./media/characters/kichi/front.svg",
  33760. extra: 1267/1164,
  33761. bottom: 61/1328
  33762. }
  33763. },
  33764. back: {
  33765. height: math.unit(8 + 6/12, "feet"),
  33766. weight: math.unit(1150, "lb"),
  33767. name: "Back",
  33768. image: {
  33769. source: "./media/characters/kichi/back.svg",
  33770. extra: 1273/1166,
  33771. bottom: 33/1306
  33772. }
  33773. },
  33774. },
  33775. [
  33776. {
  33777. name: "Normal",
  33778. height: math.unit(8 + 6/12, "feet"),
  33779. default: true
  33780. },
  33781. ]
  33782. ))
  33783. characterMakers.push(() => makeCharacter(
  33784. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33785. {
  33786. front: {
  33787. height: math.unit(6, "feet"),
  33788. weight: math.unit(210, "lb"),
  33789. name: "Front",
  33790. image: {
  33791. source: "./media/characters/manetel-greyscale/front.svg",
  33792. extra: 350/312,
  33793. bottom: 8/358
  33794. }
  33795. },
  33796. },
  33797. [
  33798. {
  33799. name: "Micro",
  33800. height: math.unit(2, "inches")
  33801. },
  33802. {
  33803. name: "Normal",
  33804. height: math.unit(6, "feet"),
  33805. default: true
  33806. },
  33807. {
  33808. name: "Minimacro",
  33809. height: math.unit(17, "feet")
  33810. },
  33811. {
  33812. name: "Macro",
  33813. height: math.unit(117, "feet")
  33814. },
  33815. ]
  33816. ))
  33817. characterMakers.push(() => makeCharacter(
  33818. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33819. {
  33820. side: {
  33821. height: math.unit(5 + 1/12, "feet"),
  33822. weight: math.unit(418, "lb"),
  33823. name: "Side",
  33824. image: {
  33825. source: "./media/characters/softpurr/side.svg",
  33826. extra: 1993/1945,
  33827. bottom: 134/2127
  33828. }
  33829. },
  33830. front: {
  33831. height: math.unit(5 + 1/12, "feet"),
  33832. weight: math.unit(418, "lb"),
  33833. name: "Front",
  33834. image: {
  33835. source: "./media/characters/softpurr/front.svg",
  33836. extra: 1950/1856,
  33837. bottom: 174/2124
  33838. }
  33839. },
  33840. paw: {
  33841. height: math.unit(1, "feet"),
  33842. name: "Paw",
  33843. image: {
  33844. source: "./media/characters/softpurr/paw.svg"
  33845. }
  33846. },
  33847. },
  33848. [
  33849. {
  33850. name: "Normal",
  33851. height: math.unit(5 + 1/12, "feet"),
  33852. default: true
  33853. },
  33854. ]
  33855. ))
  33856. characterMakers.push(() => makeCharacter(
  33857. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33858. {
  33859. front: {
  33860. height: math.unit(260, "meters"),
  33861. name: "Front",
  33862. image: {
  33863. source: "./media/characters/anahita/front.svg",
  33864. extra: 665/635,
  33865. bottom: 89/754
  33866. }
  33867. },
  33868. },
  33869. [
  33870. {
  33871. name: "Macro",
  33872. height: math.unit(260, "meters"),
  33873. default: true
  33874. },
  33875. ]
  33876. ))
  33877. characterMakers.push(() => makeCharacter(
  33878. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33879. {
  33880. front: {
  33881. height: math.unit(4 + 10/12, "feet"),
  33882. weight: math.unit(160, "lb"),
  33883. name: "Front",
  33884. image: {
  33885. source: "./media/characters/chip-mouse/front.svg",
  33886. extra: 3528/3408,
  33887. bottom: 0/3528
  33888. }
  33889. },
  33890. frontNsfw: {
  33891. height: math.unit(4 + 10/12, "feet"),
  33892. weight: math.unit(160, "lb"),
  33893. name: "Front (NSFW)",
  33894. image: {
  33895. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33896. extra: 3528/3408,
  33897. bottom: 0/3528
  33898. }
  33899. },
  33900. },
  33901. [
  33902. {
  33903. name: "Normal",
  33904. height: math.unit(4 + 10/12, "feet"),
  33905. default: true
  33906. },
  33907. ]
  33908. ))
  33909. characterMakers.push(() => makeCharacter(
  33910. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33911. {
  33912. side: {
  33913. height: math.unit(10, "feet"),
  33914. weight: math.unit(14000, "lb"),
  33915. name: "Side",
  33916. image: {
  33917. source: "./media/characters/kremm/side.svg",
  33918. extra: 1390/1053,
  33919. bottom: 90/1480
  33920. }
  33921. },
  33922. gut: {
  33923. height: math.unit(5.8, "feet"),
  33924. name: "Gut",
  33925. image: {
  33926. source: "./media/characters/kremm/gut.svg"
  33927. }
  33928. },
  33929. ass: {
  33930. height: math.unit(6.1, "feet"),
  33931. name: "Ass",
  33932. image: {
  33933. source: "./media/characters/kremm/ass.svg"
  33934. }
  33935. },
  33936. jaws: {
  33937. height: math.unit(2.2, "feet"),
  33938. name: "Jaws",
  33939. image: {
  33940. source: "./media/characters/kremm/jaws.svg"
  33941. }
  33942. },
  33943. dick: {
  33944. height: math.unit(4.26, "feet"),
  33945. name: "Dick",
  33946. image: {
  33947. source: "./media/characters/kremm/dick.svg"
  33948. }
  33949. },
  33950. },
  33951. [
  33952. {
  33953. name: "Normal",
  33954. height: math.unit(10, "feet"),
  33955. default: true
  33956. },
  33957. ]
  33958. ))
  33959. characterMakers.push(() => makeCharacter(
  33960. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33961. {
  33962. front: {
  33963. height: math.unit(30, "stories"),
  33964. name: "Front",
  33965. image: {
  33966. source: "./media/characters/kai/front.svg",
  33967. extra: 1892/1718,
  33968. bottom: 162/2054
  33969. }
  33970. },
  33971. },
  33972. [
  33973. {
  33974. name: "Macro",
  33975. height: math.unit(30, "stories"),
  33976. default: true
  33977. },
  33978. ]
  33979. ))
  33980. characterMakers.push(() => makeCharacter(
  33981. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33982. {
  33983. front: {
  33984. height: math.unit(6 + 4/12, "feet"),
  33985. weight: math.unit(145, "lb"),
  33986. name: "Front",
  33987. image: {
  33988. source: "./media/characters/sykes/front.svg",
  33989. extra: 1321 / 1187,
  33990. bottom: 66 / 1387
  33991. }
  33992. },
  33993. back: {
  33994. height: math.unit(6 + 4/12, "feet"),
  33995. weight: math.unit(145, "lb"),
  33996. name: "Back",
  33997. image: {
  33998. source: "./media/characters/sykes/back.svg",
  33999. extra: 1326/1181,
  34000. bottom: 31/1357
  34001. }
  34002. },
  34003. handBack: {
  34004. height: math.unit(0.9, "feet"),
  34005. name: "Hand (Back)",
  34006. image: {
  34007. source: "./media/characters/sykes/hand-back.svg"
  34008. }
  34009. },
  34010. handFront: {
  34011. height: math.unit(0.839, "feet"),
  34012. name: "Hand (Front)",
  34013. image: {
  34014. source: "./media/characters/sykes/hand-front.svg"
  34015. }
  34016. },
  34017. leftFoot: {
  34018. height: math.unit(1.2, "feet"),
  34019. name: "Foot (Left)",
  34020. image: {
  34021. source: "./media/characters/sykes/foot-left.svg"
  34022. }
  34023. },
  34024. rightFoot: {
  34025. height: math.unit(1.2, "feet"),
  34026. name: "Foot (Right)",
  34027. image: {
  34028. source: "./media/characters/sykes/foot-right.svg"
  34029. }
  34030. },
  34031. maw: {
  34032. height: math.unit(1.93, "feet"),
  34033. name: "Maw",
  34034. image: {
  34035. source: "./media/characters/sykes/maw.svg"
  34036. }
  34037. },
  34038. teeth: {
  34039. height: math.unit(0.51, "feet"),
  34040. name: "Teeth",
  34041. image: {
  34042. source: "./media/characters/sykes/teeth.svg"
  34043. }
  34044. },
  34045. tongue: {
  34046. height: math.unit(2.13, "feet"),
  34047. name: "Tongue",
  34048. image: {
  34049. source: "./media/characters/sykes/tongue.svg"
  34050. }
  34051. },
  34052. uvula: {
  34053. height: math.unit(0.16, "feet"),
  34054. name: "Uvula",
  34055. image: {
  34056. source: "./media/characters/sykes/uvula.svg"
  34057. }
  34058. },
  34059. collar: {
  34060. height: math.unit(0.287, "feet"),
  34061. name: "Collar",
  34062. image: {
  34063. source: "./media/characters/sykes/collar.svg"
  34064. }
  34065. },
  34066. },
  34067. [
  34068. {
  34069. name: "Shrunken",
  34070. height: math.unit(5, "inches")
  34071. },
  34072. {
  34073. name: "Normal",
  34074. height: math.unit(6 + 4 / 12, "feet"),
  34075. default: true
  34076. },
  34077. {
  34078. name: "Big",
  34079. height: math.unit(15, "feet")
  34080. },
  34081. ]
  34082. ))
  34083. characterMakers.push(() => makeCharacter(
  34084. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  34085. {
  34086. front: {
  34087. height: math.unit(5 + 8/12, "feet"),
  34088. weight: math.unit(190, "lb"),
  34089. name: "Front",
  34090. image: {
  34091. source: "./media/characters/oven-otter/front.svg",
  34092. extra: 1809/1740,
  34093. bottom: 181/1990
  34094. }
  34095. },
  34096. back: {
  34097. height: math.unit(5 + 8/12, "feet"),
  34098. weight: math.unit(190, "lb"),
  34099. name: "Back",
  34100. image: {
  34101. source: "./media/characters/oven-otter/back.svg",
  34102. extra: 1709/1635,
  34103. bottom: 118/1827
  34104. }
  34105. },
  34106. hand: {
  34107. height: math.unit(1.07, "feet"),
  34108. name: "Hand",
  34109. image: {
  34110. source: "./media/characters/oven-otter/hand.svg"
  34111. }
  34112. },
  34113. beans: {
  34114. height: math.unit(1.74, "feet"),
  34115. name: "Beans",
  34116. image: {
  34117. source: "./media/characters/oven-otter/beans.svg"
  34118. }
  34119. },
  34120. },
  34121. [
  34122. {
  34123. name: "Micro",
  34124. height: math.unit(0.5, "inches")
  34125. },
  34126. {
  34127. name: "Normal",
  34128. height: math.unit(5 + 8/12, "feet"),
  34129. default: true
  34130. },
  34131. {
  34132. name: "Macro",
  34133. height: math.unit(250, "feet")
  34134. },
  34135. {
  34136. name: "Really High",
  34137. height: math.unit(420, "feet")
  34138. },
  34139. ]
  34140. ))
  34141. characterMakers.push(() => makeCharacter(
  34142. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  34143. {
  34144. front: {
  34145. height: math.unit(5, "meters"),
  34146. weight: math.unit(292000000000000, "kg"),
  34147. name: "Front",
  34148. image: {
  34149. source: "./media/characters/devourer/front.svg",
  34150. extra: 1800/1733,
  34151. bottom: 211/2011
  34152. }
  34153. },
  34154. maw: {
  34155. height: math.unit(1.1, "meter"),
  34156. name: "Maw",
  34157. image: {
  34158. source: "./media/characters/devourer/maw.svg"
  34159. }
  34160. },
  34161. },
  34162. [
  34163. {
  34164. name: "Small",
  34165. height: math.unit(3, "meters")
  34166. },
  34167. {
  34168. name: "Large",
  34169. height: math.unit(5, "meters"),
  34170. default: true
  34171. },
  34172. ]
  34173. ))
  34174. characterMakers.push(() => makeCharacter(
  34175. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  34176. {
  34177. front: {
  34178. height: math.unit(6, "feet"),
  34179. weight: math.unit(400, "lb"),
  34180. name: "Front",
  34181. image: {
  34182. source: "./media/characters/ellarby/front.svg",
  34183. extra: 1909/1763,
  34184. bottom: 80/1989
  34185. }
  34186. },
  34187. back: {
  34188. height: math.unit(6, "feet"),
  34189. weight: math.unit(400, "lb"),
  34190. name: "Back",
  34191. image: {
  34192. source: "./media/characters/ellarby/back.svg",
  34193. extra: 1914/1784,
  34194. bottom: 172/2086
  34195. }
  34196. },
  34197. },
  34198. [
  34199. {
  34200. name: "Mischief",
  34201. height: math.unit(18, "inches")
  34202. },
  34203. {
  34204. name: "Trouble",
  34205. height: math.unit(12, "feet")
  34206. },
  34207. {
  34208. name: "Havoc",
  34209. height: math.unit(200, "feet"),
  34210. default: true
  34211. },
  34212. {
  34213. name: "Pandemonium",
  34214. height: math.unit(1, "mile")
  34215. },
  34216. {
  34217. name: "Catastrophe",
  34218. height: math.unit(100, "miles")
  34219. },
  34220. ]
  34221. ))
  34222. characterMakers.push(() => makeCharacter(
  34223. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  34224. {
  34225. front: {
  34226. height: math.unit(4.7, "meters"),
  34227. weight: math.unit(6500, "kg"),
  34228. name: "Front",
  34229. image: {
  34230. source: "./media/characters/vex/front.svg",
  34231. extra: 1288/1140,
  34232. bottom: 100/1388
  34233. }
  34234. },
  34235. },
  34236. [
  34237. {
  34238. name: "Normal",
  34239. height: math.unit(4.7, "meters"),
  34240. default: true
  34241. },
  34242. ]
  34243. ))
  34244. characterMakers.push(() => makeCharacter(
  34245. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  34246. {
  34247. normal: {
  34248. height: math.unit(6, "feet"),
  34249. weight: math.unit(350, "lb"),
  34250. name: "Normal",
  34251. image: {
  34252. source: "./media/characters/teshy/normal.svg",
  34253. extra: 1795/1735,
  34254. bottom: 16/1811
  34255. }
  34256. },
  34257. monsterFront: {
  34258. height: math.unit(12, "feet"),
  34259. weight: math.unit(4700, "lb"),
  34260. name: "Monster (Front)",
  34261. image: {
  34262. source: "./media/characters/teshy/monster-front.svg",
  34263. extra: 2042/2034,
  34264. bottom: 128/2170
  34265. }
  34266. },
  34267. monsterSide: {
  34268. height: math.unit(12, "feet"),
  34269. weight: math.unit(4700, "lb"),
  34270. name: "Monster (Side)",
  34271. image: {
  34272. source: "./media/characters/teshy/monster-side.svg",
  34273. extra: 2067/2056,
  34274. bottom: 70/2137
  34275. }
  34276. },
  34277. monsterBack: {
  34278. height: math.unit(12, "feet"),
  34279. weight: math.unit(4700, "lb"),
  34280. name: "Monster (Back)",
  34281. image: {
  34282. source: "./media/characters/teshy/monster-back.svg",
  34283. extra: 1921/1914,
  34284. bottom: 171/2092
  34285. }
  34286. },
  34287. },
  34288. [
  34289. {
  34290. name: "Normal",
  34291. height: math.unit(6, "feet"),
  34292. default: true
  34293. },
  34294. ]
  34295. ))
  34296. characterMakers.push(() => makeCharacter(
  34297. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  34298. {
  34299. front: {
  34300. height: math.unit(6, "feet"),
  34301. name: "Front",
  34302. image: {
  34303. source: "./media/characters/ramey/front.svg",
  34304. extra: 790/787,
  34305. bottom: 27/817
  34306. }
  34307. },
  34308. },
  34309. [
  34310. {
  34311. name: "Normal",
  34312. height: math.unit(6, "feet"),
  34313. default: true
  34314. },
  34315. ]
  34316. ))
  34317. characterMakers.push(() => makeCharacter(
  34318. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  34319. {
  34320. front: {
  34321. height: math.unit(5 + 5/12, "feet"),
  34322. weight: math.unit(120, "lb"),
  34323. name: "Front",
  34324. image: {
  34325. source: "./media/characters/phirae/front.svg",
  34326. extra: 2491/2436,
  34327. bottom: 38/2529
  34328. }
  34329. },
  34330. },
  34331. [
  34332. {
  34333. name: "Normal",
  34334. height: math.unit(5 + 5/12, "feet"),
  34335. default: true
  34336. },
  34337. ]
  34338. ))
  34339. characterMakers.push(() => makeCharacter(
  34340. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  34341. {
  34342. front: {
  34343. height: math.unit(5 + 3/12, "feet"),
  34344. name: "Front",
  34345. image: {
  34346. source: "./media/characters/stagglas/front.svg",
  34347. extra: 962/882,
  34348. bottom: 53/1015
  34349. }
  34350. },
  34351. feral: {
  34352. height: math.unit(335, "cm"),
  34353. name: "Feral",
  34354. image: {
  34355. source: "./media/characters/stagglas/feral.svg",
  34356. extra: 1732/1090,
  34357. bottom: 48/1780
  34358. }
  34359. },
  34360. },
  34361. [
  34362. {
  34363. name: "Normal",
  34364. height: math.unit(5 + 3/12, "feet"),
  34365. default: true
  34366. },
  34367. ]
  34368. ))
  34369. characterMakers.push(() => makeCharacter(
  34370. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  34371. {
  34372. front: {
  34373. height: math.unit(5 + 4/12, "feet"),
  34374. weight: math.unit(145, "lb"),
  34375. name: "Front",
  34376. image: {
  34377. source: "./media/characters/starra/front.svg",
  34378. extra: 1790/1691,
  34379. bottom: 91/1881
  34380. }
  34381. },
  34382. },
  34383. [
  34384. {
  34385. name: "Normal",
  34386. height: math.unit(5 + 4/12, "feet"),
  34387. default: true
  34388. },
  34389. ]
  34390. ))
  34391. characterMakers.push(() => makeCharacter(
  34392. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  34393. {
  34394. front: {
  34395. height: math.unit(2.2, "meters"),
  34396. name: "Front",
  34397. image: {
  34398. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  34399. extra: 1194/1005,
  34400. bottom: 25/1219
  34401. }
  34402. },
  34403. },
  34404. [
  34405. {
  34406. name: "Normal",
  34407. height: math.unit(2.2, "meters"),
  34408. default: true
  34409. },
  34410. ]
  34411. ))
  34412. characterMakers.push(() => makeCharacter(
  34413. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  34414. {
  34415. side: {
  34416. height: math.unit(8 + 2/12, "feet"),
  34417. weight: math.unit(1240, "lb"),
  34418. name: "Side",
  34419. image: {
  34420. source: "./media/characters/mika-valentine/side.svg",
  34421. extra: 2670/2501,
  34422. bottom: 250/2920
  34423. }
  34424. },
  34425. },
  34426. [
  34427. {
  34428. name: "Normal",
  34429. height: math.unit(8 + 2/12, "feet"),
  34430. default: true
  34431. },
  34432. ]
  34433. ))
  34434. characterMakers.push(() => makeCharacter(
  34435. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  34436. {
  34437. front: {
  34438. height: math.unit(7 + 2/12, "feet"),
  34439. name: "Front",
  34440. image: {
  34441. source: "./media/characters/xoltol/front.svg",
  34442. extra: 2212/2124,
  34443. bottom: 84/2296
  34444. }
  34445. },
  34446. side: {
  34447. height: math.unit(7 + 2/12, "feet"),
  34448. name: "Side",
  34449. image: {
  34450. source: "./media/characters/xoltol/side.svg",
  34451. extra: 2273/2197,
  34452. bottom: 26/2299
  34453. }
  34454. },
  34455. hand: {
  34456. height: math.unit(2.5, "feet"),
  34457. name: "Hand",
  34458. image: {
  34459. source: "./media/characters/xoltol/hand.svg"
  34460. }
  34461. },
  34462. },
  34463. [
  34464. {
  34465. name: "Small-ish",
  34466. height: math.unit(5 + 11/12, "feet")
  34467. },
  34468. {
  34469. name: "Normal",
  34470. height: math.unit(7 + 2/12, "feet")
  34471. },
  34472. {
  34473. name: "\"Macro\"",
  34474. height: math.unit(14 + 9/12, "feet"),
  34475. default: true
  34476. },
  34477. {
  34478. name: "Alternate Height",
  34479. height: math.unit(20, "feet")
  34480. },
  34481. {
  34482. name: "Actually Macro",
  34483. height: math.unit(100, "feet")
  34484. },
  34485. ]
  34486. ))
  34487. characterMakers.push(() => makeCharacter(
  34488. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  34489. {
  34490. front: {
  34491. height: math.unit(5 + 2/12, "feet"),
  34492. name: "Front",
  34493. image: {
  34494. source: "./media/characters/kotetsu-redwood/front.svg",
  34495. extra: 1053/942,
  34496. bottom: 60/1113
  34497. }
  34498. },
  34499. },
  34500. [
  34501. {
  34502. name: "Normal",
  34503. height: math.unit(5 + 2/12, "feet"),
  34504. default: true
  34505. },
  34506. ]
  34507. ))
  34508. characterMakers.push(() => makeCharacter(
  34509. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34510. {
  34511. front: {
  34512. height: math.unit(2.4, "meters"),
  34513. weight: math.unit(125, "kg"),
  34514. name: "Front",
  34515. image: {
  34516. source: "./media/characters/lilith/front.svg",
  34517. extra: 1590/1513,
  34518. bottom: 203/1793
  34519. }
  34520. },
  34521. },
  34522. [
  34523. {
  34524. name: "Humanoid",
  34525. height: math.unit(2.4, "meters")
  34526. },
  34527. {
  34528. name: "Normal",
  34529. height: math.unit(6, "meters"),
  34530. default: true
  34531. },
  34532. {
  34533. name: "Largest",
  34534. height: math.unit(55, "meters")
  34535. },
  34536. ]
  34537. ))
  34538. characterMakers.push(() => makeCharacter(
  34539. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34540. {
  34541. front: {
  34542. height: math.unit(8 + 4/12, "feet"),
  34543. weight: math.unit(535, "lb"),
  34544. name: "Front",
  34545. image: {
  34546. source: "./media/characters/beh'kah-bolger/front.svg",
  34547. extra: 1660/1603,
  34548. bottom: 37/1697
  34549. }
  34550. },
  34551. },
  34552. [
  34553. {
  34554. name: "Normal",
  34555. height: math.unit(8 + 4/12, "feet"),
  34556. default: true
  34557. },
  34558. {
  34559. name: "Kaiju",
  34560. height: math.unit(250, "feet")
  34561. },
  34562. {
  34563. name: "Still Growing",
  34564. height: math.unit(10, "miles")
  34565. },
  34566. {
  34567. name: "Continental",
  34568. height: math.unit(5000, "miles")
  34569. },
  34570. {
  34571. name: "Final Form",
  34572. height: math.unit(2500000, "miles")
  34573. },
  34574. ]
  34575. ))
  34576. characterMakers.push(() => makeCharacter(
  34577. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34578. {
  34579. front: {
  34580. height: math.unit(7 + 2/12, "feet"),
  34581. weight: math.unit(230, "kg"),
  34582. name: "Front",
  34583. image: {
  34584. source: "./media/characters/tatyana-milewska/front.svg",
  34585. extra: 1199/1150,
  34586. bottom: 86/1285
  34587. }
  34588. },
  34589. },
  34590. [
  34591. {
  34592. name: "Normal",
  34593. height: math.unit(7 + 2/12, "feet"),
  34594. default: true
  34595. },
  34596. {
  34597. name: "Big",
  34598. height: math.unit(12, "feet")
  34599. },
  34600. {
  34601. name: "Minimacro",
  34602. height: math.unit(20, "feet")
  34603. },
  34604. {
  34605. name: "Macro",
  34606. height: math.unit(120, "feet")
  34607. },
  34608. ]
  34609. ))
  34610. characterMakers.push(() => makeCharacter(
  34611. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34612. {
  34613. front: {
  34614. height: math.unit(7 + 8/12, "feet"),
  34615. weight: math.unit(152, "kg"),
  34616. name: "Front",
  34617. image: {
  34618. source: "./media/characters/helen-arri/front.svg",
  34619. extra: 440/423,
  34620. bottom: 14/454
  34621. }
  34622. },
  34623. back: {
  34624. height: math.unit(7 + 8/12, "feet"),
  34625. weight: math.unit(152, "kg"),
  34626. name: "Back",
  34627. image: {
  34628. source: "./media/characters/helen-arri/back.svg",
  34629. extra: 443/426,
  34630. bottom: 8/451
  34631. }
  34632. },
  34633. },
  34634. [
  34635. {
  34636. name: "Normal",
  34637. height: math.unit(7 + 8/12, "feet"),
  34638. default: true
  34639. },
  34640. {
  34641. name: "Big",
  34642. height: math.unit(14, "feet")
  34643. },
  34644. {
  34645. name: "Minimacro",
  34646. height: math.unit(24, "feet")
  34647. },
  34648. {
  34649. name: "Macro",
  34650. height: math.unit(140, "feet")
  34651. },
  34652. ]
  34653. ))
  34654. characterMakers.push(() => makeCharacter(
  34655. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34656. {
  34657. front: {
  34658. height: math.unit(6, "meters"),
  34659. name: "Front",
  34660. image: {
  34661. source: "./media/characters/ehanu-rehu/front.svg",
  34662. extra: 1800/1800,
  34663. bottom: 59/1859
  34664. }
  34665. },
  34666. },
  34667. [
  34668. {
  34669. name: "Normal",
  34670. height: math.unit(6, "meters"),
  34671. default: true
  34672. },
  34673. ]
  34674. ))
  34675. characterMakers.push(() => makeCharacter(
  34676. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34677. {
  34678. front: {
  34679. height: math.unit(7 + 3/12, "feet"),
  34680. name: "Front",
  34681. image: {
  34682. source: "./media/characters/renholder/front.svg",
  34683. extra: 3096/2960,
  34684. bottom: 250/3346
  34685. }
  34686. },
  34687. },
  34688. [
  34689. {
  34690. name: "Normal Bat",
  34691. height: math.unit(7 + 3/12, "feet"),
  34692. default: true
  34693. },
  34694. {
  34695. name: "Slightly Tall Bat",
  34696. height: math.unit(100, "feet")
  34697. },
  34698. {
  34699. name: "Big Bat",
  34700. height: math.unit(1000, "feet")
  34701. },
  34702. {
  34703. name: "City-Sized Bat",
  34704. height: math.unit(200000, "feet")
  34705. },
  34706. {
  34707. name: "Bigger Bat",
  34708. height: math.unit(10000, "miles")
  34709. },
  34710. {
  34711. name: "Solar Sized Bat",
  34712. height: math.unit(100, "AU")
  34713. },
  34714. {
  34715. name: "Galactic Bat",
  34716. height: math.unit(200000, "lightyears")
  34717. },
  34718. {
  34719. name: "Universally Known Bat",
  34720. height: math.unit(1, "universe")
  34721. },
  34722. ]
  34723. ))
  34724. characterMakers.push(() => makeCharacter(
  34725. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34726. {
  34727. front: {
  34728. height: math.unit(6 + 11/12, "feet"),
  34729. weight: math.unit(250, "lb"),
  34730. name: "Front",
  34731. image: {
  34732. source: "./media/characters/cookiecat/front.svg",
  34733. extra: 893/827,
  34734. bottom: 14/907
  34735. }
  34736. },
  34737. },
  34738. [
  34739. {
  34740. name: "Micro",
  34741. height: math.unit(3, "inches")
  34742. },
  34743. {
  34744. name: "Normal",
  34745. height: math.unit(6 + 11/12, "feet"),
  34746. default: true
  34747. },
  34748. {
  34749. name: "Macro",
  34750. height: math.unit(100, "feet")
  34751. },
  34752. {
  34753. name: "Macro+",
  34754. height: math.unit(404, "feet")
  34755. },
  34756. {
  34757. name: "Megamacro",
  34758. height: math.unit(165, "miles")
  34759. },
  34760. {
  34761. name: "Planetary",
  34762. height: math.unit(4600, "miles")
  34763. },
  34764. ]
  34765. ))
  34766. characterMakers.push(() => makeCharacter(
  34767. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34768. {
  34769. front: {
  34770. height: math.unit(10 + 3/12, "feet"),
  34771. weight: math.unit(1500, "lb"),
  34772. name: "Front",
  34773. image: {
  34774. source: "./media/characters/tux-kusanagi/front.svg",
  34775. extra: 944/840,
  34776. bottom: 39/983
  34777. }
  34778. },
  34779. back: {
  34780. height: math.unit(10 + 3/12, "feet"),
  34781. weight: math.unit(1500, "lb"),
  34782. name: "Back",
  34783. image: {
  34784. source: "./media/characters/tux-kusanagi/back.svg",
  34785. extra: 941/842,
  34786. bottom: 28/969
  34787. }
  34788. },
  34789. rump: {
  34790. height: math.unit(5.25, "feet"),
  34791. name: "Rump",
  34792. image: {
  34793. source: "./media/characters/tux-kusanagi/rump.svg"
  34794. }
  34795. },
  34796. beak: {
  34797. height: math.unit(1.54, "feet"),
  34798. name: "Beak",
  34799. image: {
  34800. source: "./media/characters/tux-kusanagi/beak.svg"
  34801. }
  34802. },
  34803. },
  34804. [
  34805. {
  34806. name: "Normal",
  34807. height: math.unit(10 + 3/12, "feet"),
  34808. default: true
  34809. },
  34810. ]
  34811. ))
  34812. characterMakers.push(() => makeCharacter(
  34813. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34814. {
  34815. front: {
  34816. height: math.unit(58, "feet"),
  34817. weight: math.unit(200, "tons"),
  34818. name: "Front",
  34819. image: {
  34820. source: "./media/characters/uzarmazari/front.svg",
  34821. extra: 1575/1455,
  34822. bottom: 152/1727
  34823. }
  34824. },
  34825. back: {
  34826. height: math.unit(58, "feet"),
  34827. weight: math.unit(200, "tons"),
  34828. name: "Back",
  34829. image: {
  34830. source: "./media/characters/uzarmazari/back.svg",
  34831. extra: 1585/1510,
  34832. bottom: 157/1742
  34833. }
  34834. },
  34835. head: {
  34836. height: math.unit(26, "feet"),
  34837. name: "Head",
  34838. image: {
  34839. source: "./media/characters/uzarmazari/head.svg"
  34840. }
  34841. },
  34842. },
  34843. [
  34844. {
  34845. name: "Normal",
  34846. height: math.unit(58, "feet"),
  34847. default: true
  34848. },
  34849. ]
  34850. ))
  34851. characterMakers.push(() => makeCharacter(
  34852. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34853. {
  34854. side: {
  34855. height: math.unit(15, "feet"),
  34856. name: "Side",
  34857. image: {
  34858. source: "./media/characters/akitu/side.svg",
  34859. extra: 1421/1321,
  34860. bottom: 157/1578
  34861. }
  34862. },
  34863. front: {
  34864. height: math.unit(15, "feet"),
  34865. name: "Front",
  34866. image: {
  34867. source: "./media/characters/akitu/front.svg",
  34868. extra: 1435/1326,
  34869. bottom: 232/1667
  34870. }
  34871. },
  34872. },
  34873. [
  34874. {
  34875. name: "Normal",
  34876. height: math.unit(15, "feet"),
  34877. default: true
  34878. },
  34879. ]
  34880. ))
  34881. characterMakers.push(() => makeCharacter(
  34882. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34883. {
  34884. front: {
  34885. height: math.unit(10 + 8/12, "feet"),
  34886. name: "Front",
  34887. image: {
  34888. source: "./media/characters/azalie-croixland/front.svg",
  34889. extra: 1972/1856,
  34890. bottom: 31/2003
  34891. }
  34892. },
  34893. },
  34894. [
  34895. {
  34896. name: "Original Height",
  34897. height: math.unit(5 + 4/12, "feet")
  34898. },
  34899. {
  34900. name: "Normal Height",
  34901. height: math.unit(10 + 8/12, "feet"),
  34902. default: true
  34903. },
  34904. ]
  34905. ))
  34906. characterMakers.push(() => makeCharacter(
  34907. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34908. {
  34909. side: {
  34910. height: math.unit(7 + 1/12, "feet"),
  34911. weight: math.unit(245, "lb"),
  34912. name: "Side",
  34913. image: {
  34914. source: "./media/characters/kavus-kazian/side.svg",
  34915. extra: 349/342,
  34916. bottom: 15/364
  34917. }
  34918. },
  34919. },
  34920. [
  34921. {
  34922. name: "Normal",
  34923. height: math.unit(7 + 1/12, "feet"),
  34924. default: true
  34925. },
  34926. ]
  34927. ))
  34928. characterMakers.push(() => makeCharacter(
  34929. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34930. {
  34931. normal: {
  34932. height: math.unit(5 + 11/12, "feet"),
  34933. name: "Normal",
  34934. image: {
  34935. source: "./media/characters/moonlight-rose/normal.svg",
  34936. extra: 1979/1835,
  34937. bottom: 14/1993
  34938. }
  34939. },
  34940. demon: {
  34941. height: math.unit(5, "km"),
  34942. name: "Demon",
  34943. image: {
  34944. source: "./media/characters/moonlight-rose/demon.svg",
  34945. extra: 986/916,
  34946. bottom: 28/1014
  34947. }
  34948. },
  34949. },
  34950. [
  34951. {
  34952. name: "\"Natural\" height",
  34953. height: math.unit(5 + 11/12, "feet")
  34954. },
  34955. {
  34956. name: "Comfortable Size",
  34957. height: math.unit(40, "meters")
  34958. },
  34959. {
  34960. name: "Common Size",
  34961. height: math.unit(50, "km"),
  34962. default: true
  34963. },
  34964. {
  34965. name: "Demonic",
  34966. height: math.unit(1.24415e+21, "meters")
  34967. },
  34968. ]
  34969. ))
  34970. characterMakers.push(() => makeCharacter(
  34971. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34972. {
  34973. front: {
  34974. height: math.unit(16, "feet"),
  34975. weight: math.unit(610, "kg"),
  34976. name: "Front",
  34977. image: {
  34978. source: "./media/characters/huckle/front.svg",
  34979. extra: 1731/1625,
  34980. bottom: 33/1764
  34981. }
  34982. },
  34983. back: {
  34984. height: math.unit(16, "feet"),
  34985. weight: math.unit(610, "kg"),
  34986. name: "Back",
  34987. image: {
  34988. source: "./media/characters/huckle/back.svg",
  34989. extra: 1738/1651,
  34990. bottom: 37/1775
  34991. }
  34992. },
  34993. laughing: {
  34994. height: math.unit(3.75, "feet"),
  34995. name: "Laughing",
  34996. image: {
  34997. source: "./media/characters/huckle/laughing.svg"
  34998. }
  34999. },
  35000. angry: {
  35001. height: math.unit(4.15, "feet"),
  35002. name: "Angry",
  35003. image: {
  35004. source: "./media/characters/huckle/angry.svg"
  35005. }
  35006. },
  35007. },
  35008. [
  35009. {
  35010. name: "Normal",
  35011. height: math.unit(16, "feet"),
  35012. default: true
  35013. },
  35014. {
  35015. name: "Mini Macro",
  35016. height: math.unit(463, "feet")
  35017. },
  35018. {
  35019. name: "Macro",
  35020. height: math.unit(1680, "meters")
  35021. },
  35022. {
  35023. name: "Mega Macro",
  35024. height: math.unit(175, "km")
  35025. },
  35026. {
  35027. name: "Terra Macro",
  35028. height: math.unit(32, "gigameters")
  35029. },
  35030. {
  35031. name: "Multiverse+",
  35032. height: math.unit(2.56e23, "yottameters")
  35033. },
  35034. ]
  35035. ))
  35036. characterMakers.push(() => makeCharacter(
  35037. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  35038. {
  35039. front: {
  35040. height: math.unit(6 + 9/12, "feet"),
  35041. weight: math.unit(280, "lb"),
  35042. name: "Front",
  35043. image: {
  35044. source: "./media/characters/candy/front.svg",
  35045. extra: 234/217,
  35046. bottom: 11/245
  35047. }
  35048. },
  35049. },
  35050. [
  35051. {
  35052. name: "Really Small",
  35053. height: math.unit(0.1, "nm")
  35054. },
  35055. {
  35056. name: "Micro",
  35057. height: math.unit(2, "inches")
  35058. },
  35059. {
  35060. name: "Normal",
  35061. height: math.unit(6 + 9/12, "feet"),
  35062. default: true
  35063. },
  35064. {
  35065. name: "Small Macro",
  35066. height: math.unit(69, "feet")
  35067. },
  35068. {
  35069. name: "Macro",
  35070. height: math.unit(160, "feet")
  35071. },
  35072. {
  35073. name: "Megamacro",
  35074. height: math.unit(22000, "miles")
  35075. },
  35076. {
  35077. name: "Gigamacro",
  35078. height: math.unit(50000, "miles")
  35079. },
  35080. ]
  35081. ))
  35082. characterMakers.push(() => makeCharacter(
  35083. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  35084. {
  35085. front: {
  35086. height: math.unit(4, "feet"),
  35087. weight: math.unit(90, "lb"),
  35088. name: "Front",
  35089. image: {
  35090. source: "./media/characters/joey-mcdonald/front.svg",
  35091. extra: 1059/852,
  35092. bottom: 33/1092
  35093. }
  35094. },
  35095. back: {
  35096. height: math.unit(4, "feet"),
  35097. weight: math.unit(90, "lb"),
  35098. name: "Back",
  35099. image: {
  35100. source: "./media/characters/joey-mcdonald/back.svg",
  35101. extra: 1077/879,
  35102. bottom: 5/1082
  35103. }
  35104. },
  35105. frontKobold: {
  35106. height: math.unit(4, "feet"),
  35107. weight: math.unit(100, "lb"),
  35108. name: "Front-kobold",
  35109. image: {
  35110. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  35111. extra: 1480/1367,
  35112. bottom: 0/1480
  35113. }
  35114. },
  35115. backKobold: {
  35116. height: math.unit(4, "feet"),
  35117. weight: math.unit(100, "lb"),
  35118. name: "Back-kobold",
  35119. image: {
  35120. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  35121. extra: 1449/1361,
  35122. bottom: 0/1449
  35123. }
  35124. },
  35125. },
  35126. [
  35127. {
  35128. name: "Normal",
  35129. height: math.unit(4, "feet"),
  35130. default: true
  35131. },
  35132. ]
  35133. ))
  35134. characterMakers.push(() => makeCharacter(
  35135. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  35136. {
  35137. front: {
  35138. height: math.unit(12 + 6/12, "feet"),
  35139. name: "Front",
  35140. image: {
  35141. source: "./media/characters/kass-lockheed/front.svg",
  35142. extra: 354/343,
  35143. bottom: 9/363
  35144. }
  35145. },
  35146. back: {
  35147. height: math.unit(12 + 6/12, "feet"),
  35148. name: "Back",
  35149. image: {
  35150. source: "./media/characters/kass-lockheed/back.svg",
  35151. extra: 364/352,
  35152. bottom: 3/367
  35153. }
  35154. },
  35155. dick: {
  35156. height: math.unit(3.12, "feet"),
  35157. name: "Dick",
  35158. image: {
  35159. source: "./media/characters/kass-lockheed/dick.svg"
  35160. }
  35161. },
  35162. head: {
  35163. height: math.unit(2.6, "feet"),
  35164. name: "Head",
  35165. image: {
  35166. source: "./media/characters/kass-lockheed/head.svg"
  35167. }
  35168. },
  35169. bleh: {
  35170. height: math.unit(2.85, "feet"),
  35171. name: "Bleh",
  35172. image: {
  35173. source: "./media/characters/kass-lockheed/bleh.svg"
  35174. }
  35175. },
  35176. smug: {
  35177. height: math.unit(2.85, "feet"),
  35178. name: "Smug",
  35179. image: {
  35180. source: "./media/characters/kass-lockheed/smug.svg"
  35181. }
  35182. },
  35183. },
  35184. [
  35185. {
  35186. name: "Normal",
  35187. height: math.unit(12 + 6/12, "feet"),
  35188. default: true
  35189. },
  35190. ]
  35191. ))
  35192. characterMakers.push(() => makeCharacter(
  35193. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  35194. {
  35195. front: {
  35196. height: math.unit(6 + 2/12, "feet"),
  35197. name: "Front",
  35198. image: {
  35199. source: "./media/characters/taylor/front.svg",
  35200. extra: 639/495,
  35201. bottom: 12/651
  35202. }
  35203. },
  35204. },
  35205. [
  35206. {
  35207. name: "Normal",
  35208. height: math.unit(6 + 2/12, "feet"),
  35209. default: true
  35210. },
  35211. {
  35212. name: "Big",
  35213. height: math.unit(15, "feet")
  35214. },
  35215. {
  35216. name: "Lorg",
  35217. height: math.unit(80, "feet")
  35218. },
  35219. {
  35220. name: "Too Lorg",
  35221. height: math.unit(120, "feet")
  35222. },
  35223. ]
  35224. ))
  35225. characterMakers.push(() => makeCharacter(
  35226. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  35227. {
  35228. front: {
  35229. height: math.unit(15, "feet"),
  35230. name: "Front",
  35231. image: {
  35232. source: "./media/characters/kaizer/front.svg",
  35233. extra: 1612/1436,
  35234. bottom: 43/1655
  35235. }
  35236. },
  35237. },
  35238. [
  35239. {
  35240. name: "Normal",
  35241. height: math.unit(15, "feet"),
  35242. default: true
  35243. },
  35244. ]
  35245. ))
  35246. characterMakers.push(() => makeCharacter(
  35247. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  35248. {
  35249. front: {
  35250. height: math.unit(2, "feet"),
  35251. weight: math.unit(30, "lb"),
  35252. name: "Front",
  35253. image: {
  35254. source: "./media/characters/sandy/front.svg",
  35255. extra: 1439/1307,
  35256. bottom: 194/1633
  35257. }
  35258. },
  35259. },
  35260. [
  35261. {
  35262. name: "Normal",
  35263. height: math.unit(2, "feet"),
  35264. default: true
  35265. },
  35266. ]
  35267. ))
  35268. characterMakers.push(() => makeCharacter(
  35269. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  35270. {
  35271. front: {
  35272. height: math.unit(3, "feet"),
  35273. name: "Front",
  35274. image: {
  35275. source: "./media/characters/mellvi/front.svg",
  35276. extra: 1831/1630,
  35277. bottom: 58/1889
  35278. }
  35279. },
  35280. },
  35281. [
  35282. {
  35283. name: "Normal",
  35284. height: math.unit(3, "feet"),
  35285. default: true
  35286. },
  35287. ]
  35288. ))
  35289. characterMakers.push(() => makeCharacter(
  35290. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  35291. {
  35292. front: {
  35293. height: math.unit(5 + 11/12, "feet"),
  35294. weight: math.unit(200, "lb"),
  35295. name: "Front",
  35296. image: {
  35297. source: "./media/characters/shirou/front.svg",
  35298. extra: 2491/2383,
  35299. bottom: 189/2680
  35300. }
  35301. },
  35302. back: {
  35303. height: math.unit(5 + 11/12, "feet"),
  35304. weight: math.unit(200, "lb"),
  35305. name: "Back",
  35306. image: {
  35307. source: "./media/characters/shirou/back.svg",
  35308. extra: 2554/2450,
  35309. bottom: 76/2630
  35310. }
  35311. },
  35312. },
  35313. [
  35314. {
  35315. name: "Normal",
  35316. height: math.unit(5 + 11/12, "feet"),
  35317. default: true
  35318. },
  35319. ]
  35320. ))
  35321. characterMakers.push(() => makeCharacter(
  35322. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  35323. {
  35324. front: {
  35325. height: math.unit(6 + 3/12, "feet"),
  35326. weight: math.unit(177, "lb"),
  35327. name: "Front",
  35328. image: {
  35329. source: "./media/characters/noryu/front.svg",
  35330. extra: 973/885,
  35331. bottom: 10/983
  35332. }
  35333. },
  35334. },
  35335. [
  35336. {
  35337. name: "Normal",
  35338. height: math.unit(6 + 3/12, "feet"),
  35339. default: true
  35340. },
  35341. ]
  35342. ))
  35343. characterMakers.push(() => makeCharacter(
  35344. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  35345. {
  35346. front: {
  35347. height: math.unit(5 + 6/12, "feet"),
  35348. weight: math.unit(170, "lb"),
  35349. name: "Front",
  35350. image: {
  35351. source: "./media/characters/mevolas-rubenido/front.svg",
  35352. extra: 2109/1901,
  35353. bottom: 96/2205
  35354. }
  35355. },
  35356. },
  35357. [
  35358. {
  35359. name: "Normal",
  35360. height: math.unit(5 + 6/12, "feet"),
  35361. default: true
  35362. },
  35363. ]
  35364. ))
  35365. characterMakers.push(() => makeCharacter(
  35366. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  35367. {
  35368. front: {
  35369. height: math.unit(100, "feet"),
  35370. name: "Front",
  35371. image: {
  35372. source: "./media/characters/dee/front.svg",
  35373. extra: 2153/2036,
  35374. bottom: 59/2212
  35375. }
  35376. },
  35377. back: {
  35378. height: math.unit(100, "feet"),
  35379. name: "Back",
  35380. image: {
  35381. source: "./media/characters/dee/back.svg",
  35382. extra: 2183/2058,
  35383. bottom: 75/2258
  35384. }
  35385. },
  35386. foot: {
  35387. height: math.unit(19.43, "feet"),
  35388. name: "Foot",
  35389. image: {
  35390. source: "./media/characters/dee/foot.svg"
  35391. }
  35392. },
  35393. hoof: {
  35394. height: math.unit(20.6, "feet"),
  35395. name: "Hoof",
  35396. image: {
  35397. source: "./media/characters/dee/hoof.svg"
  35398. }
  35399. },
  35400. },
  35401. [
  35402. {
  35403. name: "Macro",
  35404. height: math.unit(100, "feet"),
  35405. default: true
  35406. },
  35407. ]
  35408. ))
  35409. characterMakers.push(() => makeCharacter(
  35410. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  35411. {
  35412. front: {
  35413. height: math.unit(5 + 6/12, "feet"),
  35414. name: "Front",
  35415. image: {
  35416. source: "./media/characters/teh/front.svg",
  35417. extra: 1002/847,
  35418. bottom: 62/1064
  35419. }
  35420. },
  35421. },
  35422. [
  35423. {
  35424. name: "Normal",
  35425. height: math.unit(5 + 6/12, "feet"),
  35426. default: true
  35427. },
  35428. ]
  35429. ))
  35430. characterMakers.push(() => makeCharacter(
  35431. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  35432. {
  35433. side: {
  35434. height: math.unit(6 + 1/12, "feet"),
  35435. weight: math.unit(204, "lb"),
  35436. name: "Side",
  35437. image: {
  35438. source: "./media/characters/quicksilver-ayukoti/side.svg",
  35439. extra: 974/775,
  35440. bottom: 169/1143
  35441. }
  35442. },
  35443. sitting: {
  35444. height: math.unit(6 + 2/12, "feet"),
  35445. weight: math.unit(204, "lb"),
  35446. name: "Sitting",
  35447. image: {
  35448. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  35449. extra: 1175/964,
  35450. bottom: 378/1553
  35451. }
  35452. },
  35453. },
  35454. [
  35455. {
  35456. name: "Normal",
  35457. height: math.unit(6 + 1/12, "feet"),
  35458. default: true
  35459. },
  35460. ]
  35461. ))
  35462. characterMakers.push(() => makeCharacter(
  35463. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  35464. {
  35465. front: {
  35466. height: math.unit(6, "inches"),
  35467. name: "Front",
  35468. image: {
  35469. source: "./media/characters/tululi/front.svg",
  35470. extra: 1997/1876,
  35471. bottom: 20/2017
  35472. }
  35473. },
  35474. },
  35475. [
  35476. {
  35477. name: "Normal",
  35478. height: math.unit(6, "inches"),
  35479. default: true
  35480. },
  35481. ]
  35482. ))
  35483. characterMakers.push(() => makeCharacter(
  35484. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  35485. {
  35486. front: {
  35487. height: math.unit(4 + 1/12, "feet"),
  35488. name: "Front",
  35489. image: {
  35490. source: "./media/characters/star/front.svg",
  35491. extra: 1493/1189,
  35492. bottom: 48/1541
  35493. }
  35494. },
  35495. },
  35496. [
  35497. {
  35498. name: "Normal",
  35499. height: math.unit(4 + 1/12, "feet"),
  35500. default: true
  35501. },
  35502. ]
  35503. ))
  35504. characterMakers.push(() => makeCharacter(
  35505. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  35506. {
  35507. front: {
  35508. height: math.unit(6 + 3/12, "feet"),
  35509. name: "Front",
  35510. image: {
  35511. source: "./media/characters/comet/front.svg",
  35512. extra: 1681/1462,
  35513. bottom: 26/1707
  35514. }
  35515. },
  35516. },
  35517. [
  35518. {
  35519. name: "Normal",
  35520. height: math.unit(6 + 3/12, "feet"),
  35521. default: true
  35522. },
  35523. ]
  35524. ))
  35525. characterMakers.push(() => makeCharacter(
  35526. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35527. {
  35528. front: {
  35529. height: math.unit(950, "feet"),
  35530. name: "Front",
  35531. image: {
  35532. source: "./media/characters/vortex/front.svg",
  35533. extra: 1497/1434,
  35534. bottom: 56/1553
  35535. }
  35536. },
  35537. maw: {
  35538. height: math.unit(285, "feet"),
  35539. name: "Maw",
  35540. image: {
  35541. source: "./media/characters/vortex/maw.svg"
  35542. }
  35543. },
  35544. },
  35545. [
  35546. {
  35547. name: "Macro",
  35548. height: math.unit(950, "feet"),
  35549. default: true
  35550. },
  35551. ]
  35552. ))
  35553. characterMakers.push(() => makeCharacter(
  35554. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  35555. {
  35556. front: {
  35557. height: math.unit(600, "feet"),
  35558. weight: math.unit(0.02, "grams"),
  35559. name: "Front",
  35560. image: {
  35561. source: "./media/characters/doodle/front.svg",
  35562. extra: 1578/1413,
  35563. bottom: 37/1615
  35564. }
  35565. },
  35566. },
  35567. [
  35568. {
  35569. name: "Macro",
  35570. height: math.unit(600, "feet"),
  35571. default: true
  35572. },
  35573. ]
  35574. ))
  35575. characterMakers.push(() => makeCharacter(
  35576. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35577. {
  35578. front: {
  35579. height: math.unit(6 + 6/12, "feet"),
  35580. name: "Front",
  35581. image: {
  35582. source: "./media/characters/jai/front.svg",
  35583. extra: 1645/1534,
  35584. bottom: 115/1760
  35585. }
  35586. },
  35587. },
  35588. [
  35589. {
  35590. name: "Normal",
  35591. height: math.unit(6 + 6/12, "feet"),
  35592. default: true
  35593. },
  35594. ]
  35595. ))
  35596. characterMakers.push(() => makeCharacter(
  35597. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35598. {
  35599. front: {
  35600. height: math.unit(6 + 8/12, "feet"),
  35601. name: "Front",
  35602. image: {
  35603. source: "./media/characters/pixel/front.svg",
  35604. extra: 1900/1735,
  35605. bottom: 63/1963
  35606. }
  35607. },
  35608. },
  35609. [
  35610. {
  35611. name: "Normal",
  35612. height: math.unit(6 + 8/12, "feet"),
  35613. default: true
  35614. },
  35615. ]
  35616. ))
  35617. characterMakers.push(() => makeCharacter(
  35618. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35619. {
  35620. back: {
  35621. height: math.unit(4 + 1/12, "feet"),
  35622. weight: math.unit(75, "lb"),
  35623. name: "Back",
  35624. image: {
  35625. source: "./media/characters/rhett/back.svg",
  35626. extra: 930/878,
  35627. bottom: 25/955
  35628. }
  35629. },
  35630. front: {
  35631. height: math.unit(4 + 1/12, "feet"),
  35632. weight: math.unit(75, "lb"),
  35633. name: "Front",
  35634. image: {
  35635. source: "./media/characters/rhett/front.svg",
  35636. extra: 1682/1586,
  35637. bottom: 92/1774
  35638. }
  35639. },
  35640. },
  35641. [
  35642. {
  35643. name: "Micro",
  35644. height: math.unit(8, "inches")
  35645. },
  35646. {
  35647. name: "Tiny",
  35648. height: math.unit(2, "feet")
  35649. },
  35650. {
  35651. name: "Normal",
  35652. height: math.unit(4 + 1/12, "feet"),
  35653. default: true
  35654. },
  35655. ]
  35656. ))
  35657. characterMakers.push(() => makeCharacter(
  35658. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35659. {
  35660. front: {
  35661. height: math.unit(3 + 3/12, "feet"),
  35662. name: "Front",
  35663. image: {
  35664. source: "./media/characters/penny/front.svg",
  35665. extra: 1406/1311,
  35666. bottom: 26/1432
  35667. }
  35668. },
  35669. },
  35670. [
  35671. {
  35672. name: "Normal",
  35673. height: math.unit(3 + 3/12, "feet"),
  35674. default: true
  35675. },
  35676. ]
  35677. ))
  35678. characterMakers.push(() => makeCharacter(
  35679. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35680. {
  35681. front: {
  35682. height: math.unit(4 + 11/12, "feet"),
  35683. name: "Front",
  35684. image: {
  35685. source: "./media/characters/monty/front.svg",
  35686. extra: 1479/1209,
  35687. bottom: 0/1479
  35688. }
  35689. },
  35690. },
  35691. [
  35692. {
  35693. name: "Normal",
  35694. height: math.unit(4 + 11/12, "feet"),
  35695. default: true
  35696. },
  35697. ]
  35698. ))
  35699. characterMakers.push(() => makeCharacter(
  35700. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35701. {
  35702. front: {
  35703. height: math.unit(8 + 4/12, "feet"),
  35704. name: "Front",
  35705. image: {
  35706. source: "./media/characters/sterling/front.svg",
  35707. extra: 1420/1236,
  35708. bottom: 27/1447
  35709. }
  35710. },
  35711. },
  35712. [
  35713. {
  35714. name: "Normal",
  35715. height: math.unit(8 + 4/12, "feet"),
  35716. default: true
  35717. },
  35718. ]
  35719. ))
  35720. characterMakers.push(() => makeCharacter(
  35721. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35722. {
  35723. front: {
  35724. height: math.unit(15, "feet"),
  35725. name: "Front",
  35726. image: {
  35727. source: "./media/characters/marble/front.svg",
  35728. extra: 973/937,
  35729. bottom: 32/1005
  35730. }
  35731. },
  35732. },
  35733. [
  35734. {
  35735. name: "Normal",
  35736. height: math.unit(15, "feet"),
  35737. default: true
  35738. },
  35739. ]
  35740. ))
  35741. characterMakers.push(() => makeCharacter(
  35742. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35743. {
  35744. front: {
  35745. height: math.unit(3, "inches"),
  35746. name: "Front",
  35747. image: {
  35748. source: "./media/characters/powder/front.svg",
  35749. extra: 1504/1334,
  35750. bottom: 518/2022
  35751. }
  35752. },
  35753. },
  35754. [
  35755. {
  35756. name: "Normal",
  35757. height: math.unit(3, "inches"),
  35758. default: true
  35759. },
  35760. ]
  35761. ))
  35762. characterMakers.push(() => makeCharacter(
  35763. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35764. {
  35765. front: {
  35766. height: math.unit(4 + 5/12, "feet"),
  35767. name: "Front",
  35768. image: {
  35769. source: "./media/characters/joey-raccoon/front.svg",
  35770. extra: 1273/1197,
  35771. bottom: 0/1273
  35772. }
  35773. },
  35774. },
  35775. [
  35776. {
  35777. name: "Normal",
  35778. height: math.unit(4 + 5/12, "feet"),
  35779. default: true
  35780. },
  35781. ]
  35782. ))
  35783. characterMakers.push(() => makeCharacter(
  35784. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35785. {
  35786. front: {
  35787. height: math.unit(8 + 4/12, "feet"),
  35788. name: "Front",
  35789. image: {
  35790. source: "./media/characters/vick/front.svg",
  35791. extra: 2187/2118,
  35792. bottom: 47/2234
  35793. }
  35794. },
  35795. },
  35796. [
  35797. {
  35798. name: "Normal",
  35799. height: math.unit(8 + 4/12, "feet"),
  35800. default: true
  35801. },
  35802. ]
  35803. ))
  35804. characterMakers.push(() => makeCharacter(
  35805. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35806. {
  35807. front: {
  35808. height: math.unit(5 + 5/12, "feet"),
  35809. name: "Front",
  35810. image: {
  35811. source: "./media/characters/mitsy/front.svg",
  35812. extra: 1842/1695,
  35813. bottom: 0/1842
  35814. }
  35815. },
  35816. },
  35817. [
  35818. {
  35819. name: "Normal",
  35820. height: math.unit(5 + 5/12, "feet"),
  35821. default: true
  35822. },
  35823. ]
  35824. ))
  35825. characterMakers.push(() => makeCharacter(
  35826. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35827. {
  35828. front: {
  35829. height: math.unit(6 + 3/12, "feet"),
  35830. name: "Front",
  35831. image: {
  35832. source: "./media/characters/silvy/front.svg",
  35833. extra: 1995/1836,
  35834. bottom: 225/2220
  35835. }
  35836. },
  35837. },
  35838. [
  35839. {
  35840. name: "Normal",
  35841. height: math.unit(6 + 3/12, "feet"),
  35842. default: true
  35843. },
  35844. ]
  35845. ))
  35846. characterMakers.push(() => makeCharacter(
  35847. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35848. {
  35849. front: {
  35850. height: math.unit(3 + 8/12, "feet"),
  35851. name: "Front",
  35852. image: {
  35853. source: "./media/characters/rodney/front.svg",
  35854. extra: 1956/1747,
  35855. bottom: 31/1987
  35856. }
  35857. },
  35858. frontDressed: {
  35859. height: math.unit(2.9, "feet"),
  35860. name: "Front (Dressed)",
  35861. image: {
  35862. source: "./media/characters/rodney/front-dressed.svg",
  35863. extra: 1382/1241,
  35864. bottom: 385/1767
  35865. }
  35866. },
  35867. },
  35868. [
  35869. {
  35870. name: "Normal",
  35871. height: math.unit(3 + 8/12, "feet"),
  35872. default: true
  35873. },
  35874. ]
  35875. ))
  35876. characterMakers.push(() => makeCharacter(
  35877. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35878. {
  35879. front: {
  35880. height: math.unit(5 + 9/12, "feet"),
  35881. weight: math.unit(194, "lbs"),
  35882. name: "Front",
  35883. image: {
  35884. source: "./media/characters/zakail-sudekai/front.svg",
  35885. extra: 2696/2533,
  35886. bottom: 248/2944
  35887. }
  35888. },
  35889. maw: {
  35890. height: math.unit(1.35, "feet"),
  35891. name: "Maw",
  35892. image: {
  35893. source: "./media/characters/zakail-sudekai/maw.svg"
  35894. }
  35895. },
  35896. },
  35897. [
  35898. {
  35899. name: "Normal",
  35900. height: math.unit(5 + 9/12, "feet"),
  35901. default: true
  35902. },
  35903. ]
  35904. ))
  35905. characterMakers.push(() => makeCharacter(
  35906. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35907. {
  35908. front: {
  35909. height: math.unit(8 + 4/12, "feet"),
  35910. weight: math.unit(1200, "lb"),
  35911. name: "Front",
  35912. image: {
  35913. source: "./media/characters/eleanor/front.svg",
  35914. extra: 1226/1192,
  35915. bottom: 52/1278
  35916. }
  35917. },
  35918. back: {
  35919. height: math.unit(8 + 4/12, "feet"),
  35920. weight: math.unit(1200, "lb"),
  35921. name: "Back",
  35922. image: {
  35923. source: "./media/characters/eleanor/back.svg",
  35924. extra: 1242/1184,
  35925. bottom: 60/1302
  35926. }
  35927. },
  35928. head: {
  35929. height: math.unit(2.62, "feet"),
  35930. name: "Head",
  35931. image: {
  35932. source: "./media/characters/eleanor/head.svg"
  35933. }
  35934. },
  35935. },
  35936. [
  35937. {
  35938. name: "Normal",
  35939. height: math.unit(8 + 4/12, "feet"),
  35940. default: true
  35941. },
  35942. ]
  35943. ))
  35944. characterMakers.push(() => makeCharacter(
  35945. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35946. {
  35947. front: {
  35948. height: math.unit(8 + 4/12, "feet"),
  35949. weight: math.unit(750, "lb"),
  35950. name: "Front",
  35951. image: {
  35952. source: "./media/characters/tanya/front.svg",
  35953. extra: 1749/1615,
  35954. bottom: 33/1782
  35955. }
  35956. },
  35957. },
  35958. [
  35959. {
  35960. name: "Normal",
  35961. height: math.unit(8 + 4/12, "feet"),
  35962. default: true
  35963. },
  35964. ]
  35965. ))
  35966. characterMakers.push(() => makeCharacter(
  35967. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35968. {
  35969. front: {
  35970. height: math.unit(5, "feet"),
  35971. weight: math.unit(225, "lb"),
  35972. name: "Front",
  35973. image: {
  35974. source: "./media/characters/cindy/front.svg",
  35975. extra: 1320/1250,
  35976. bottom: 42/1362
  35977. }
  35978. },
  35979. frontDressed: {
  35980. height: math.unit(5, "feet"),
  35981. weight: math.unit(225, "lb"),
  35982. name: "Front (Dressed)",
  35983. image: {
  35984. source: "./media/characters/cindy/front-dressed.svg",
  35985. extra: 1320/1250,
  35986. bottom: 42/1362
  35987. }
  35988. },
  35989. back: {
  35990. height: math.unit(5, "feet"),
  35991. weight: math.unit(225, "lb"),
  35992. name: "Back",
  35993. image: {
  35994. source: "./media/characters/cindy/back.svg",
  35995. extra: 1384/1346,
  35996. bottom: 14/1398
  35997. }
  35998. },
  35999. },
  36000. [
  36001. {
  36002. name: "Normal",
  36003. height: math.unit(5, "feet"),
  36004. default: true
  36005. },
  36006. ]
  36007. ))
  36008. characterMakers.push(() => makeCharacter(
  36009. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  36010. {
  36011. front: {
  36012. height: math.unit(6 + 9/12, "feet"),
  36013. weight: math.unit(440, "lb"),
  36014. name: "Front",
  36015. image: {
  36016. source: "./media/characters/wilbur-owen/front.svg",
  36017. extra: 1575/1448,
  36018. bottom: 72/1647
  36019. }
  36020. },
  36021. back: {
  36022. height: math.unit(6 + 9/12, "feet"),
  36023. weight: math.unit(440, "lb"),
  36024. name: "Back",
  36025. image: {
  36026. source: "./media/characters/wilbur-owen/back.svg",
  36027. extra: 1578/1445,
  36028. bottom: 36/1614
  36029. }
  36030. },
  36031. },
  36032. [
  36033. {
  36034. name: "Normal",
  36035. height: math.unit(6 + 9/12, "feet"),
  36036. default: true
  36037. },
  36038. ]
  36039. ))
  36040. characterMakers.push(() => makeCharacter(
  36041. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  36042. {
  36043. front: {
  36044. height: math.unit(6 + 5/12, "feet"),
  36045. weight: math.unit(650, "lb"),
  36046. name: "Front",
  36047. image: {
  36048. source: "./media/characters/keegan/front.svg",
  36049. extra: 2387/2198,
  36050. bottom: 33/2420
  36051. }
  36052. },
  36053. side: {
  36054. height: math.unit(6 + 5/12, "feet"),
  36055. weight: math.unit(650, "lb"),
  36056. name: "Side",
  36057. image: {
  36058. source: "./media/characters/keegan/side.svg",
  36059. extra: 2390/2202,
  36060. bottom: 47/2437
  36061. }
  36062. },
  36063. back: {
  36064. height: math.unit(6 + 5/12, "feet"),
  36065. weight: math.unit(650, "lb"),
  36066. name: "Back",
  36067. image: {
  36068. source: "./media/characters/keegan/back.svg",
  36069. extra: 2418/2268,
  36070. bottom: 15/2433
  36071. }
  36072. },
  36073. frontSfw: {
  36074. height: math.unit(6 + 5/12, "feet"),
  36075. weight: math.unit(650, "lb"),
  36076. name: "Front (SFW)",
  36077. image: {
  36078. source: "./media/characters/keegan/front-sfw.svg",
  36079. extra: 2387/2198,
  36080. bottom: 33/2420
  36081. }
  36082. },
  36083. beans: {
  36084. height: math.unit(1.85, "feet"),
  36085. name: "Beans",
  36086. image: {
  36087. source: "./media/characters/keegan/beans.svg"
  36088. }
  36089. },
  36090. },
  36091. [
  36092. {
  36093. name: "Normal",
  36094. height: math.unit(6 + 5/12, "feet"),
  36095. default: true
  36096. },
  36097. ]
  36098. ))
  36099. characterMakers.push(() => makeCharacter(
  36100. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  36101. {
  36102. front: {
  36103. height: math.unit(9, "feet"),
  36104. name: "Front",
  36105. image: {
  36106. source: "./media/characters/colton/front.svg",
  36107. extra: 1589/1326,
  36108. bottom: 139/1728
  36109. }
  36110. },
  36111. },
  36112. [
  36113. {
  36114. name: "Normal",
  36115. height: math.unit(9, "feet"),
  36116. default: true
  36117. },
  36118. ]
  36119. ))
  36120. characterMakers.push(() => makeCharacter(
  36121. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  36122. {
  36123. front: {
  36124. height: math.unit(2 + 9/12, "feet"),
  36125. name: "Front",
  36126. image: {
  36127. source: "./media/characters/bora/front.svg",
  36128. extra: 1265/1250,
  36129. bottom: 24/1289
  36130. }
  36131. },
  36132. },
  36133. [
  36134. {
  36135. name: "Normal",
  36136. height: math.unit(2 + 9/12, "feet"),
  36137. default: true
  36138. },
  36139. ]
  36140. ))
  36141. characterMakers.push(() => makeCharacter(
  36142. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  36143. {
  36144. front: {
  36145. height: math.unit(8, "feet"),
  36146. name: "Front",
  36147. image: {
  36148. source: "./media/characters/myu-myu/front.svg",
  36149. extra: 1949/1857,
  36150. bottom: 90/2039
  36151. }
  36152. },
  36153. },
  36154. [
  36155. {
  36156. name: "Normal",
  36157. height: math.unit(8, "feet"),
  36158. default: true
  36159. },
  36160. {
  36161. name: "Big",
  36162. height: math.unit(15, "feet")
  36163. },
  36164. {
  36165. name: "BIG",
  36166. height: math.unit(25, "feet")
  36167. },
  36168. ]
  36169. ))
  36170. characterMakers.push(() => makeCharacter(
  36171. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  36172. {
  36173. side: {
  36174. height: math.unit(7 + 5/12, "feet"),
  36175. weight: math.unit(2800, "lb"),
  36176. name: "Side",
  36177. image: {
  36178. source: "./media/characters/haloren/side.svg",
  36179. extra: 1793/409,
  36180. bottom: 59/1852
  36181. }
  36182. },
  36183. frontPaw: {
  36184. height: math.unit(2.36, "feet"),
  36185. name: "Front paw",
  36186. image: {
  36187. source: "./media/characters/haloren/front-paw.svg"
  36188. }
  36189. },
  36190. hindPaw: {
  36191. height: math.unit(3.18, "feet"),
  36192. name: "Hind paw",
  36193. image: {
  36194. source: "./media/characters/haloren/hind-paw.svg"
  36195. }
  36196. },
  36197. maw: {
  36198. height: math.unit(5.05, "feet"),
  36199. name: "Maw",
  36200. image: {
  36201. source: "./media/characters/haloren/maw.svg"
  36202. }
  36203. },
  36204. dick: {
  36205. height: math.unit(2.90, "feet"),
  36206. name: "Dick",
  36207. image: {
  36208. source: "./media/characters/haloren/dick.svg"
  36209. }
  36210. },
  36211. },
  36212. [
  36213. {
  36214. name: "Normal",
  36215. height: math.unit(7 + 5/12, "feet"),
  36216. default: true
  36217. },
  36218. {
  36219. name: "Enhanced",
  36220. height: math.unit(14 + 3/12, "feet")
  36221. },
  36222. ]
  36223. ))
  36224. characterMakers.push(() => makeCharacter(
  36225. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  36226. {
  36227. front: {
  36228. height: math.unit(171, "cm"),
  36229. name: "Front",
  36230. image: {
  36231. source: "./media/characters/kimmy/front.svg",
  36232. extra: 1491/1435,
  36233. bottom: 53/1544
  36234. }
  36235. },
  36236. },
  36237. [
  36238. {
  36239. name: "Small",
  36240. height: math.unit(9, "cm")
  36241. },
  36242. {
  36243. name: "Normal",
  36244. height: math.unit(171, "cm"),
  36245. default: true
  36246. },
  36247. ]
  36248. ))
  36249. characterMakers.push(() => makeCharacter(
  36250. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  36251. {
  36252. front: {
  36253. height: math.unit(8, "feet"),
  36254. weight: math.unit(300, "lb"),
  36255. name: "Front",
  36256. image: {
  36257. source: "./media/characters/galeboomer/front.svg",
  36258. extra: 4651/4415,
  36259. bottom: 162/4813
  36260. }
  36261. },
  36262. back: {
  36263. height: math.unit(8, "feet"),
  36264. weight: math.unit(300, "lb"),
  36265. name: "Back",
  36266. image: {
  36267. source: "./media/characters/galeboomer/back.svg",
  36268. extra: 4544/4314,
  36269. bottom: 16/4560
  36270. }
  36271. },
  36272. frontAlt: {
  36273. height: math.unit(8, "feet"),
  36274. weight: math.unit(300, "lb"),
  36275. name: "Front (Alt)",
  36276. image: {
  36277. source: "./media/characters/galeboomer/front-alt.svg",
  36278. extra: 4458/4228,
  36279. bottom: 68/4526
  36280. }
  36281. },
  36282. maw: {
  36283. height: math.unit(1.2, "feet"),
  36284. name: "Maw",
  36285. image: {
  36286. source: "./media/characters/galeboomer/maw.svg"
  36287. }
  36288. },
  36289. },
  36290. [
  36291. {
  36292. name: "Normal",
  36293. height: math.unit(8, "feet"),
  36294. default: true
  36295. },
  36296. ]
  36297. ))
  36298. characterMakers.push(() => makeCharacter(
  36299. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  36300. {
  36301. front: {
  36302. height: math.unit(5 + 9/12, "feet"),
  36303. weight: math.unit(120, "lb"),
  36304. name: "Front",
  36305. image: {
  36306. source: "./media/characters/chyr/front.svg",
  36307. extra: 1323/1254,
  36308. bottom: 63/1386
  36309. }
  36310. },
  36311. back: {
  36312. height: math.unit(5 + 9/12, "feet"),
  36313. weight: math.unit(120, "lb"),
  36314. name: "Back",
  36315. image: {
  36316. source: "./media/characters/chyr/back.svg",
  36317. extra: 1323/1252,
  36318. bottom: 48/1371
  36319. }
  36320. },
  36321. },
  36322. [
  36323. {
  36324. name: "Normal",
  36325. height: math.unit(5 + 9/12, "feet"),
  36326. default: true
  36327. },
  36328. ]
  36329. ))
  36330. characterMakers.push(() => makeCharacter(
  36331. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  36332. {
  36333. front: {
  36334. height: math.unit(7, "feet"),
  36335. weight: math.unit(310, "lb"),
  36336. name: "Front",
  36337. image: {
  36338. source: "./media/characters/solarus/front.svg",
  36339. extra: 2415/2021,
  36340. bottom: 103/2518
  36341. }
  36342. },
  36343. back: {
  36344. height: math.unit(7, "feet"),
  36345. weight: math.unit(310, "lb"),
  36346. name: "Back",
  36347. image: {
  36348. source: "./media/characters/solarus/back.svg",
  36349. extra: 2463/2089,
  36350. bottom: 79/2542
  36351. }
  36352. },
  36353. },
  36354. [
  36355. {
  36356. name: "Normal",
  36357. height: math.unit(7, "feet"),
  36358. default: true
  36359. },
  36360. ]
  36361. ))
  36362. characterMakers.push(() => makeCharacter(
  36363. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  36364. {
  36365. front: {
  36366. height: math.unit(16, "feet"),
  36367. name: "Front",
  36368. image: {
  36369. source: "./media/characters/mutsuju-koizaemon/front.svg",
  36370. extra: 1844/1780,
  36371. bottom: 58/1902
  36372. }
  36373. },
  36374. winterCoat: {
  36375. height: math.unit(16, "feet"),
  36376. name: "Winter Coat",
  36377. image: {
  36378. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  36379. extra: 1807/1775,
  36380. bottom: 69/1876
  36381. }
  36382. },
  36383. },
  36384. [
  36385. {
  36386. name: "Normal",
  36387. height: math.unit(16, "feet"),
  36388. default: true
  36389. },
  36390. {
  36391. name: "Chicago Size",
  36392. height: math.unit(560, "feet")
  36393. },
  36394. ]
  36395. ))
  36396. characterMakers.push(() => makeCharacter(
  36397. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  36398. {
  36399. front: {
  36400. height: math.unit(11 + 6/12, "feet"),
  36401. weight: math.unit(1366, "lb"),
  36402. name: "Front",
  36403. image: {
  36404. source: "./media/characters/lexor/front.svg",
  36405. extra: 1560/1481,
  36406. bottom: 211/1771
  36407. }
  36408. },
  36409. back: {
  36410. height: math.unit(11 + 6/12, "feet"),
  36411. weight: math.unit(1366, "lb"),
  36412. name: "Back",
  36413. image: {
  36414. source: "./media/characters/lexor/back.svg",
  36415. extra: 1614/1533,
  36416. bottom: 76/1690
  36417. }
  36418. },
  36419. maw: {
  36420. height: math.unit(3, "feet"),
  36421. name: "Maw",
  36422. image: {
  36423. source: "./media/characters/lexor/maw.svg"
  36424. }
  36425. },
  36426. dick: {
  36427. height: math.unit(2.59, "feet"),
  36428. name: "Dick",
  36429. image: {
  36430. source: "./media/characters/lexor/dick.svg"
  36431. }
  36432. },
  36433. },
  36434. [
  36435. {
  36436. name: "Normal",
  36437. height: math.unit(11 + 6/12, "feet"),
  36438. default: true
  36439. },
  36440. ]
  36441. ))
  36442. characterMakers.push(() => makeCharacter(
  36443. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  36444. {
  36445. front: {
  36446. height: math.unit(5 + 8/12, "feet"),
  36447. name: "Front",
  36448. image: {
  36449. source: "./media/characters/magnum/front.svg",
  36450. extra: 942/855,
  36451. bottom: 26/968
  36452. }
  36453. },
  36454. },
  36455. [
  36456. {
  36457. name: "Normal",
  36458. height: math.unit(5 + 8/12, "feet"),
  36459. default: true
  36460. },
  36461. ]
  36462. ))
  36463. characterMakers.push(() => makeCharacter(
  36464. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  36465. {
  36466. front: {
  36467. height: math.unit(18 + 4/12, "feet"),
  36468. weight: math.unit(1500, "kg"),
  36469. name: "Front",
  36470. image: {
  36471. source: "./media/characters/solas-sharpsman/front.svg",
  36472. extra: 1698/1589,
  36473. bottom: 0/1698
  36474. }
  36475. },
  36476. },
  36477. [
  36478. {
  36479. name: "Normal",
  36480. height: math.unit(18 + 4/12, "feet"),
  36481. default: true
  36482. },
  36483. ]
  36484. ))
  36485. characterMakers.push(() => makeCharacter(
  36486. { name: "October", species: ["tiger"], tags: ["anthro"] },
  36487. {
  36488. front: {
  36489. height: math.unit(5 + 5/12, "feet"),
  36490. weight: math.unit(180, "lb"),
  36491. name: "Front",
  36492. image: {
  36493. source: "./media/characters/october/front.svg",
  36494. extra: 1800/1650,
  36495. bottom: 0/1800
  36496. }
  36497. },
  36498. frontNsfw: {
  36499. height: math.unit(5 + 5/12, "feet"),
  36500. weight: math.unit(180, "lb"),
  36501. name: "Front (NSFW)",
  36502. image: {
  36503. source: "./media/characters/october/front-nsfw.svg",
  36504. extra: 1392/1307,
  36505. bottom: 42/1434
  36506. }
  36507. },
  36508. },
  36509. [
  36510. {
  36511. name: "Normal",
  36512. height: math.unit(5 + 5/12, "feet"),
  36513. default: true
  36514. },
  36515. ]
  36516. ))
  36517. characterMakers.push(() => makeCharacter(
  36518. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  36519. {
  36520. front: {
  36521. height: math.unit(8 + 6/12, "feet"),
  36522. name: "Front",
  36523. image: {
  36524. source: "./media/characters/essynkardi/front.svg",
  36525. extra: 1914/1846,
  36526. bottom: 22/1936
  36527. }
  36528. },
  36529. },
  36530. [
  36531. {
  36532. name: "Normal",
  36533. height: math.unit(8 + 6/12, "feet"),
  36534. default: true
  36535. },
  36536. ]
  36537. ))
  36538. characterMakers.push(() => makeCharacter(
  36539. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36540. {
  36541. front: {
  36542. height: math.unit(6 + 6/12, "feet"),
  36543. weight: math.unit(7, "lb"),
  36544. name: "Front",
  36545. image: {
  36546. source: "./media/characters/icky/front.svg",
  36547. extra: 813/782,
  36548. bottom: 66/879
  36549. }
  36550. },
  36551. back: {
  36552. height: math.unit(6 + 6/12, "feet"),
  36553. weight: math.unit(7, "lb"),
  36554. name: "Back",
  36555. image: {
  36556. source: "./media/characters/icky/back.svg",
  36557. extra: 754/735,
  36558. bottom: 56/810
  36559. }
  36560. },
  36561. },
  36562. [
  36563. {
  36564. name: "Normal",
  36565. height: math.unit(6 + 6/12, "feet"),
  36566. default: true
  36567. },
  36568. ]
  36569. ))
  36570. characterMakers.push(() => makeCharacter(
  36571. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36572. {
  36573. front: {
  36574. height: math.unit(15, "feet"),
  36575. name: "Front",
  36576. image: {
  36577. source: "./media/characters/rojas/front.svg",
  36578. extra: 1462/1408,
  36579. bottom: 95/1557
  36580. }
  36581. },
  36582. back: {
  36583. height: math.unit(15, "feet"),
  36584. name: "Back",
  36585. image: {
  36586. source: "./media/characters/rojas/back.svg",
  36587. extra: 1023/954,
  36588. bottom: 28/1051
  36589. }
  36590. },
  36591. },
  36592. [
  36593. {
  36594. name: "Normal",
  36595. height: math.unit(15, "feet"),
  36596. default: true
  36597. },
  36598. ]
  36599. ))
  36600. characterMakers.push(() => makeCharacter(
  36601. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36602. {
  36603. frontHuman: {
  36604. height: math.unit(5 + 7/12, "feet"),
  36605. name: "Front (Human)",
  36606. image: {
  36607. source: "./media/characters/alek-dryagan/front-human.svg",
  36608. extra: 1687/1667,
  36609. bottom: 69/1756
  36610. }
  36611. },
  36612. backHuman: {
  36613. height: math.unit(5 + 7/12, "feet"),
  36614. name: "Back (Human)",
  36615. image: {
  36616. source: "./media/characters/alek-dryagan/back-human.svg",
  36617. extra: 1670/1649,
  36618. bottom: 65/1735
  36619. }
  36620. },
  36621. frontDemi: {
  36622. height: math.unit(65, "feet"),
  36623. name: "Front (Demi)",
  36624. image: {
  36625. source: "./media/characters/alek-dryagan/front-demi.svg",
  36626. extra: 1669/1642,
  36627. bottom: 49/1718
  36628. }
  36629. },
  36630. backDemi: {
  36631. height: math.unit(65, "feet"),
  36632. name: "Back (Demi)",
  36633. image: {
  36634. source: "./media/characters/alek-dryagan/back-demi.svg",
  36635. extra: 1658/1637,
  36636. bottom: 40/1698
  36637. }
  36638. },
  36639. mawHuman: {
  36640. height: math.unit(0.3, "feet"),
  36641. name: "Maw (Human)",
  36642. image: {
  36643. source: "./media/characters/alek-dryagan/maw-human.svg"
  36644. }
  36645. },
  36646. mawDemi: {
  36647. height: math.unit(3.8, "feet"),
  36648. name: "Maw (Demi)",
  36649. image: {
  36650. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36651. }
  36652. },
  36653. },
  36654. [
  36655. {
  36656. name: "Normal",
  36657. height: math.unit(5 + 7/12, "feet"),
  36658. default: true
  36659. },
  36660. ]
  36661. ))
  36662. characterMakers.push(() => makeCharacter(
  36663. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36664. {
  36665. frontHuman: {
  36666. height: math.unit(5 + 2/12, "feet"),
  36667. name: "Front (Human)",
  36668. image: {
  36669. source: "./media/characters/gen/front-human.svg",
  36670. extra: 1627/1538,
  36671. bottom: 71/1698
  36672. }
  36673. },
  36674. backHuman: {
  36675. height: math.unit(5 + 2/12, "feet"),
  36676. name: "Back (Human)",
  36677. image: {
  36678. source: "./media/characters/gen/back-human.svg",
  36679. extra: 1638/1548,
  36680. bottom: 69/1707
  36681. }
  36682. },
  36683. frontDemi: {
  36684. height: math.unit(5 + 2/12, "feet"),
  36685. name: "Front (Demi)",
  36686. image: {
  36687. source: "./media/characters/gen/front-demi.svg",
  36688. extra: 1627/1538,
  36689. bottom: 71/1698
  36690. }
  36691. },
  36692. backDemi: {
  36693. height: math.unit(5 + 2/12, "feet"),
  36694. name: "Back (Demi)",
  36695. image: {
  36696. source: "./media/characters/gen/back-demi.svg",
  36697. extra: 1638/1548,
  36698. bottom: 69/1707
  36699. }
  36700. },
  36701. },
  36702. [
  36703. {
  36704. name: "Normal",
  36705. height: math.unit(5 + 2/12, "feet"),
  36706. default: true
  36707. },
  36708. ]
  36709. ))
  36710. characterMakers.push(() => makeCharacter(
  36711. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36712. {
  36713. frontImp: {
  36714. height: math.unit(1 + 11/12, "feet"),
  36715. name: "Front (Imp)",
  36716. image: {
  36717. source: "./media/characters/max-kobold/front-imp.svg",
  36718. extra: 1238/1134,
  36719. bottom: 81/1319
  36720. }
  36721. },
  36722. backImp: {
  36723. height: math.unit(1 + 11/12, "feet"),
  36724. name: "Back (Imp)",
  36725. image: {
  36726. source: "./media/characters/max-kobold/back-imp.svg",
  36727. extra: 1334/1175,
  36728. bottom: 34/1368
  36729. }
  36730. },
  36731. frontDemi: {
  36732. height: math.unit(5 + 9/12, "feet"),
  36733. name: "Front (Demi)",
  36734. image: {
  36735. source: "./media/characters/max-kobold/front-demi.svg",
  36736. extra: 1715/1685,
  36737. bottom: 54/1769
  36738. }
  36739. },
  36740. backDemi: {
  36741. height: math.unit(5 + 9/12, "feet"),
  36742. name: "Back (Demi)",
  36743. image: {
  36744. source: "./media/characters/max-kobold/back-demi.svg",
  36745. extra: 1752/1729,
  36746. bottom: 41/1793
  36747. }
  36748. },
  36749. handImp: {
  36750. height: math.unit(0.45, "feet"),
  36751. name: "Hand (Imp)",
  36752. image: {
  36753. source: "./media/characters/max-kobold/hand.svg"
  36754. }
  36755. },
  36756. pawImp: {
  36757. height: math.unit(0.46, "feet"),
  36758. name: "Paw (Imp)",
  36759. image: {
  36760. source: "./media/characters/max-kobold/paw.svg"
  36761. }
  36762. },
  36763. handDemi: {
  36764. height: math.unit(0.80, "feet"),
  36765. name: "Hand (Demi)",
  36766. image: {
  36767. source: "./media/characters/max-kobold/hand.svg"
  36768. }
  36769. },
  36770. pawDemi: {
  36771. height: math.unit(1.1, "feet"),
  36772. name: "Paw (Demi)",
  36773. image: {
  36774. source: "./media/characters/max-kobold/paw.svg"
  36775. }
  36776. },
  36777. headImp: {
  36778. height: math.unit(1.33, "feet"),
  36779. name: "Head (Imp)",
  36780. image: {
  36781. source: "./media/characters/max-kobold/head-imp.svg"
  36782. }
  36783. },
  36784. mawImp: {
  36785. height: math.unit(0.75, "feet"),
  36786. name: "Maw (Imp)",
  36787. image: {
  36788. source: "./media/characters/max-kobold/maw-imp.svg"
  36789. }
  36790. },
  36791. mawDemi: {
  36792. height: math.unit(0.42, "feet"),
  36793. name: "Maw (Demi)",
  36794. image: {
  36795. source: "./media/characters/max-kobold/maw-demi.svg"
  36796. }
  36797. },
  36798. },
  36799. [
  36800. {
  36801. name: "Normal",
  36802. height: math.unit(1 + 11/12, "feet"),
  36803. default: true
  36804. },
  36805. ]
  36806. ))
  36807. characterMakers.push(() => makeCharacter(
  36808. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36809. {
  36810. front: {
  36811. height: math.unit(7 + 5/12, "feet"),
  36812. name: "Front",
  36813. image: {
  36814. source: "./media/characters/carbon/front.svg",
  36815. extra: 1754/1689,
  36816. bottom: 65/1819
  36817. }
  36818. },
  36819. back: {
  36820. height: math.unit(7 + 5/12, "feet"),
  36821. name: "Back",
  36822. image: {
  36823. source: "./media/characters/carbon/back.svg",
  36824. extra: 1762/1695,
  36825. bottom: 24/1786
  36826. }
  36827. },
  36828. frontGigantamax: {
  36829. height: math.unit(150, "feet"),
  36830. name: "Front (Gigantamax)",
  36831. image: {
  36832. source: "./media/characters/carbon/front-gigantamax.svg",
  36833. extra: 1826/1669,
  36834. bottom: 59/1885
  36835. }
  36836. },
  36837. backGigantamax: {
  36838. height: math.unit(150, "feet"),
  36839. name: "Back (Gigantamax)",
  36840. image: {
  36841. source: "./media/characters/carbon/back-gigantamax.svg",
  36842. extra: 1796/1653,
  36843. bottom: 53/1849
  36844. }
  36845. },
  36846. maw: {
  36847. height: math.unit(0.48, "feet"),
  36848. name: "Maw",
  36849. image: {
  36850. source: "./media/characters/carbon/maw.svg"
  36851. }
  36852. },
  36853. mawGigantamax: {
  36854. height: math.unit(7.5, "feet"),
  36855. name: "Maw (Gigantamax)",
  36856. image: {
  36857. source: "./media/characters/carbon/maw-gigantamax.svg"
  36858. }
  36859. },
  36860. },
  36861. [
  36862. {
  36863. name: "Normal",
  36864. height: math.unit(7 + 5/12, "feet"),
  36865. default: true
  36866. },
  36867. ]
  36868. ))
  36869. characterMakers.push(() => makeCharacter(
  36870. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36871. {
  36872. front: {
  36873. height: math.unit(6, "feet"),
  36874. name: "Front",
  36875. image: {
  36876. source: "./media/characters/maverick/front.svg",
  36877. extra: 1672/1661,
  36878. bottom: 85/1757
  36879. }
  36880. },
  36881. back: {
  36882. height: math.unit(6, "feet"),
  36883. name: "Back",
  36884. image: {
  36885. source: "./media/characters/maverick/back.svg",
  36886. extra: 1642/1631,
  36887. bottom: 38/1680
  36888. }
  36889. },
  36890. },
  36891. [
  36892. {
  36893. name: "Normal",
  36894. height: math.unit(6, "feet"),
  36895. default: true
  36896. },
  36897. ]
  36898. ))
  36899. characterMakers.push(() => makeCharacter(
  36900. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36901. {
  36902. front: {
  36903. height: math.unit(15, "feet"),
  36904. weight: math.unit(615, "lb"),
  36905. name: "Front",
  36906. image: {
  36907. source: "./media/characters/grockle/front.svg",
  36908. extra: 1535/1427,
  36909. bottom: 56/1591
  36910. }
  36911. },
  36912. },
  36913. [
  36914. {
  36915. name: "Normal",
  36916. height: math.unit(15, "feet"),
  36917. default: true
  36918. },
  36919. {
  36920. name: "Large",
  36921. height: math.unit(150, "feet")
  36922. },
  36923. {
  36924. name: "Macro",
  36925. height: math.unit(1876, "feet")
  36926. },
  36927. {
  36928. name: "Mega Macro",
  36929. height: math.unit(121940, "feet")
  36930. },
  36931. {
  36932. name: "Giga Macro",
  36933. height: math.unit(750, "km")
  36934. },
  36935. {
  36936. name: "Tera Macro",
  36937. height: math.unit(750000, "km")
  36938. },
  36939. {
  36940. name: "Galactic",
  36941. height: math.unit(1.4e5, "km")
  36942. },
  36943. {
  36944. name: "Godlike",
  36945. height: math.unit(9.8e280, "galaxies")
  36946. },
  36947. ]
  36948. ))
  36949. characterMakers.push(() => makeCharacter(
  36950. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36951. {
  36952. front: {
  36953. height: math.unit(11, "meters"),
  36954. weight: math.unit(20, "tonnes"),
  36955. name: "Front",
  36956. image: {
  36957. source: "./media/characters/alistair/front.svg",
  36958. extra: 1265/1009,
  36959. bottom: 93/1358
  36960. }
  36961. },
  36962. },
  36963. [
  36964. {
  36965. name: "Normal",
  36966. height: math.unit(11, "meters"),
  36967. default: true
  36968. },
  36969. ]
  36970. ))
  36971. characterMakers.push(() => makeCharacter(
  36972. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36973. {
  36974. front: {
  36975. height: math.unit(5 + 8/12, "feet"),
  36976. name: "Front",
  36977. image: {
  36978. source: "./media/characters/haruka/front.svg",
  36979. extra: 2012/1952,
  36980. bottom: 0/2012
  36981. }
  36982. },
  36983. },
  36984. [
  36985. {
  36986. name: "Normal",
  36987. height: math.unit(5 + 8/12, "feet"),
  36988. default: true
  36989. },
  36990. ]
  36991. ))
  36992. characterMakers.push(() => makeCharacter(
  36993. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36994. {
  36995. back: {
  36996. height: math.unit(9, "feet"),
  36997. name: "Back",
  36998. image: {
  36999. source: "./media/characters/vivian-sylveon/back.svg",
  37000. extra: 1853/1714,
  37001. bottom: 0/1853
  37002. }
  37003. },
  37004. },
  37005. [
  37006. {
  37007. name: "Normal",
  37008. height: math.unit(9, "feet"),
  37009. default: true
  37010. },
  37011. {
  37012. name: "Macro",
  37013. height: math.unit(500, "feet")
  37014. },
  37015. {
  37016. name: "Megamacro",
  37017. height: math.unit(600, "miles")
  37018. },
  37019. {
  37020. name: "Gigamacro",
  37021. height: math.unit(30000, "miles")
  37022. },
  37023. ]
  37024. ))
  37025. characterMakers.push(() => makeCharacter(
  37026. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  37027. {
  37028. anthro: {
  37029. height: math.unit(5 + 10/12, "feet"),
  37030. weight: math.unit(100, "lb"),
  37031. name: "Anthro",
  37032. image: {
  37033. source: "./media/characters/daiki/anthro.svg",
  37034. extra: 1115/1027,
  37035. bottom: 69/1184
  37036. }
  37037. },
  37038. feral: {
  37039. height: math.unit(200, "feet"),
  37040. name: "Feral",
  37041. image: {
  37042. source: "./media/characters/daiki/feral.svg",
  37043. extra: 1256/313,
  37044. bottom: 39/1295
  37045. }
  37046. },
  37047. feralHead: {
  37048. height: math.unit(171, "feet"),
  37049. name: "Feral Head",
  37050. image: {
  37051. source: "./media/characters/daiki/feral-head.svg"
  37052. }
  37053. },
  37054. manaDragon: {
  37055. height: math.unit(170, "meters"),
  37056. name: "Mana-dragon",
  37057. image: {
  37058. source: "./media/characters/daiki/mana-dragon.svg",
  37059. extra: 763/420,
  37060. bottom: 97/860
  37061. }
  37062. },
  37063. },
  37064. [
  37065. {
  37066. name: "Normal",
  37067. height: math.unit(5 + 10/12, "feet"),
  37068. default: true
  37069. },
  37070. ]
  37071. ))
  37072. characterMakers.push(() => makeCharacter(
  37073. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  37074. {
  37075. fullyEquippedFront: {
  37076. height: math.unit(3 + 1/12, "feet"),
  37077. weight: math.unit(24, "lb"),
  37078. name: "Fully Equipped (Front)",
  37079. image: {
  37080. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  37081. extra: 687/605,
  37082. bottom: 18/705
  37083. }
  37084. },
  37085. fullyEquippedBack: {
  37086. height: math.unit(3 + 1/12, "feet"),
  37087. weight: math.unit(24, "lb"),
  37088. name: "Fully Equipped (Back)",
  37089. image: {
  37090. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  37091. extra: 689/590,
  37092. bottom: 18/707
  37093. }
  37094. },
  37095. dailyWear: {
  37096. height: math.unit(3 + 1/12, "feet"),
  37097. weight: math.unit(24, "lb"),
  37098. name: "Daily Wear",
  37099. image: {
  37100. source: "./media/characters/tea-spot/daily-wear.svg",
  37101. extra: 701/620,
  37102. bottom: 21/722
  37103. }
  37104. },
  37105. maidWork: {
  37106. height: math.unit(3 + 1/12, "feet"),
  37107. weight: math.unit(24, "lb"),
  37108. name: "Maid Work",
  37109. image: {
  37110. source: "./media/characters/tea-spot/maid-work.svg",
  37111. extra: 693/609,
  37112. bottom: 15/708
  37113. }
  37114. },
  37115. },
  37116. [
  37117. {
  37118. name: "Normal",
  37119. height: math.unit(3 + 1/12, "feet"),
  37120. default: true
  37121. },
  37122. ]
  37123. ))
  37124. characterMakers.push(() => makeCharacter(
  37125. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  37126. {
  37127. front: {
  37128. height: math.unit(175, "cm"),
  37129. weight: math.unit(75, "kg"),
  37130. name: "Front",
  37131. image: {
  37132. source: "./media/characters/chee/front.svg",
  37133. extra: 1796/1740,
  37134. bottom: 40/1836
  37135. }
  37136. },
  37137. },
  37138. [
  37139. {
  37140. name: "Micro-Micro",
  37141. height: math.unit(1, "nm")
  37142. },
  37143. {
  37144. name: "Micro-erst",
  37145. height: math.unit(1, "micrometer")
  37146. },
  37147. {
  37148. name: "Micro-er",
  37149. height: math.unit(1, "cm")
  37150. },
  37151. {
  37152. name: "Normal",
  37153. height: math.unit(175, "cm"),
  37154. default: true
  37155. },
  37156. {
  37157. name: "Macro",
  37158. height: math.unit(100, "m")
  37159. },
  37160. {
  37161. name: "Macro-er",
  37162. height: math.unit(1, "km")
  37163. },
  37164. {
  37165. name: "Macro-erst",
  37166. height: math.unit(10, "km")
  37167. },
  37168. {
  37169. name: "Macro-Macro",
  37170. height: math.unit(100, "km")
  37171. },
  37172. ]
  37173. ))
  37174. characterMakers.push(() => makeCharacter(
  37175. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  37176. {
  37177. front: {
  37178. height: math.unit(11 + 9/12, "feet"),
  37179. weight: math.unit(935, "lb"),
  37180. name: "Front",
  37181. image: {
  37182. source: "./media/characters/kingsley/front.svg",
  37183. extra: 1803/1674,
  37184. bottom: 127/1930
  37185. }
  37186. },
  37187. frontNude: {
  37188. height: math.unit(11 + 9/12, "feet"),
  37189. weight: math.unit(935, "lb"),
  37190. name: "Front (Nude)",
  37191. image: {
  37192. source: "./media/characters/kingsley/front-nude.svg",
  37193. extra: 1803/1674,
  37194. bottom: 127/1930
  37195. }
  37196. },
  37197. },
  37198. [
  37199. {
  37200. name: "Normal",
  37201. height: math.unit(11 + 9/12, "feet"),
  37202. default: true
  37203. },
  37204. ]
  37205. ))
  37206. characterMakers.push(() => makeCharacter(
  37207. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  37208. {
  37209. side: {
  37210. height: math.unit(9, "feet"),
  37211. name: "Side",
  37212. image: {
  37213. source: "./media/characters/rymel/side.svg",
  37214. extra: 792/469,
  37215. bottom: 121/913
  37216. }
  37217. },
  37218. maw: {
  37219. height: math.unit(2.4, "meters"),
  37220. name: "Maw",
  37221. image: {
  37222. source: "./media/characters/rymel/maw.svg"
  37223. }
  37224. },
  37225. },
  37226. [
  37227. {
  37228. name: "House Drake",
  37229. height: math.unit(2, "feet")
  37230. },
  37231. {
  37232. name: "Reduced",
  37233. height: math.unit(4.5, "feet")
  37234. },
  37235. {
  37236. name: "Normal",
  37237. height: math.unit(9, "feet"),
  37238. default: true
  37239. },
  37240. ]
  37241. ))
  37242. characterMakers.push(() => makeCharacter(
  37243. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  37244. {
  37245. front: {
  37246. height: math.unit(1.74, "meters"),
  37247. weight: math.unit(55, "kg"),
  37248. name: "Front",
  37249. image: {
  37250. source: "./media/characters/rubus/front.svg",
  37251. extra: 1894/1742,
  37252. bottom: 44/1938
  37253. }
  37254. },
  37255. },
  37256. [
  37257. {
  37258. name: "Normal",
  37259. height: math.unit(1.74, "meters"),
  37260. default: true
  37261. },
  37262. ]
  37263. ))
  37264. characterMakers.push(() => makeCharacter(
  37265. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  37266. {
  37267. front: {
  37268. height: math.unit(5 + 2/12, "feet"),
  37269. weight: math.unit(112, "lb"),
  37270. name: "Front",
  37271. image: {
  37272. source: "./media/characters/cassie-kingston/front.svg",
  37273. extra: 1438/1390,
  37274. bottom: 47/1485
  37275. }
  37276. },
  37277. },
  37278. [
  37279. {
  37280. name: "Normal",
  37281. height: math.unit(5 + 2/12, "feet"),
  37282. default: true
  37283. },
  37284. {
  37285. name: "Macro",
  37286. height: math.unit(128, "feet")
  37287. },
  37288. {
  37289. name: "Megamacro",
  37290. height: math.unit(2.56, "miles")
  37291. },
  37292. ]
  37293. ))
  37294. characterMakers.push(() => makeCharacter(
  37295. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  37296. {
  37297. front: {
  37298. height: math.unit(7, "feet"),
  37299. name: "Front",
  37300. image: {
  37301. source: "./media/characters/fox/front.svg",
  37302. extra: 1798/1703,
  37303. bottom: 55/1853
  37304. }
  37305. },
  37306. back: {
  37307. height: math.unit(7, "feet"),
  37308. name: "Back",
  37309. image: {
  37310. source: "./media/characters/fox/back.svg",
  37311. extra: 1748/1649,
  37312. bottom: 32/1780
  37313. }
  37314. },
  37315. head: {
  37316. height: math.unit(1.95, "feet"),
  37317. name: "Head",
  37318. image: {
  37319. source: "./media/characters/fox/head.svg"
  37320. }
  37321. },
  37322. dick: {
  37323. height: math.unit(1.33, "feet"),
  37324. name: "Dick",
  37325. image: {
  37326. source: "./media/characters/fox/dick.svg"
  37327. }
  37328. },
  37329. foot: {
  37330. height: math.unit(1, "feet"),
  37331. name: "Foot",
  37332. image: {
  37333. source: "./media/characters/fox/foot.svg"
  37334. }
  37335. },
  37336. paw: {
  37337. height: math.unit(0.92, "feet"),
  37338. name: "Paw",
  37339. image: {
  37340. source: "./media/characters/fox/paw.svg"
  37341. }
  37342. },
  37343. },
  37344. [
  37345. {
  37346. name: "Small",
  37347. height: math.unit(3, "inches")
  37348. },
  37349. {
  37350. name: "\"Realistic\"",
  37351. height: math.unit(7, "feet")
  37352. },
  37353. {
  37354. name: "Normal",
  37355. height: math.unit(150, "feet"),
  37356. default: true
  37357. },
  37358. {
  37359. name: "BIG",
  37360. height: math.unit(1200, "feet")
  37361. },
  37362. {
  37363. name: "👀",
  37364. height: math.unit(5, "miles")
  37365. },
  37366. {
  37367. name: "👀👀👀",
  37368. height: math.unit(64, "miles")
  37369. },
  37370. ]
  37371. ))
  37372. characterMakers.push(() => makeCharacter(
  37373. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  37374. {
  37375. front: {
  37376. height: math.unit(625, "feet"),
  37377. name: "Front",
  37378. image: {
  37379. source: "./media/characters/asonja-rossa/front.svg",
  37380. extra: 1833/1686,
  37381. bottom: 24/1857
  37382. }
  37383. },
  37384. back: {
  37385. height: math.unit(625, "feet"),
  37386. name: "Back",
  37387. image: {
  37388. source: "./media/characters/asonja-rossa/back.svg",
  37389. extra: 1852/1753,
  37390. bottom: 26/1878
  37391. }
  37392. },
  37393. },
  37394. [
  37395. {
  37396. name: "Macro",
  37397. height: math.unit(625, "feet"),
  37398. default: true
  37399. },
  37400. ]
  37401. ))
  37402. characterMakers.push(() => makeCharacter(
  37403. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  37404. {
  37405. side: {
  37406. height: math.unit(8, "feet"),
  37407. name: "Side",
  37408. image: {
  37409. source: "./media/characters/rezukii/side.svg",
  37410. extra: 979/542,
  37411. bottom: 87/1066
  37412. }
  37413. },
  37414. sitting: {
  37415. height: math.unit(14.6, "feet"),
  37416. name: "Sitting",
  37417. image: {
  37418. source: "./media/characters/rezukii/sitting.svg",
  37419. extra: 1023/813,
  37420. bottom: 45/1068
  37421. }
  37422. },
  37423. },
  37424. [
  37425. {
  37426. name: "Tiny",
  37427. height: math.unit(2, "feet")
  37428. },
  37429. {
  37430. name: "Smol",
  37431. height: math.unit(4, "feet")
  37432. },
  37433. {
  37434. name: "Normal",
  37435. height: math.unit(8, "feet"),
  37436. default: true
  37437. },
  37438. {
  37439. name: "Big",
  37440. height: math.unit(12, "feet")
  37441. },
  37442. {
  37443. name: "Macro",
  37444. height: math.unit(30, "feet")
  37445. },
  37446. ]
  37447. ))
  37448. characterMakers.push(() => makeCharacter(
  37449. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  37450. {
  37451. front: {
  37452. height: math.unit(14, "feet"),
  37453. weight: math.unit(9.5, "tonnes"),
  37454. name: "Front",
  37455. image: {
  37456. source: "./media/characters/dawnheart/front.svg",
  37457. extra: 2792/2675,
  37458. bottom: 64/2856
  37459. }
  37460. },
  37461. },
  37462. [
  37463. {
  37464. name: "Normal",
  37465. height: math.unit(14, "feet"),
  37466. default: true
  37467. },
  37468. ]
  37469. ))
  37470. characterMakers.push(() => makeCharacter(
  37471. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  37472. {
  37473. front: {
  37474. height: math.unit(1.7, "m"),
  37475. name: "Front",
  37476. image: {
  37477. source: "./media/characters/gladi/front.svg",
  37478. extra: 1460/1362,
  37479. bottom: 19/1479
  37480. }
  37481. },
  37482. back: {
  37483. height: math.unit(1.7, "m"),
  37484. name: "Back",
  37485. image: {
  37486. source: "./media/characters/gladi/back.svg",
  37487. extra: 1459/1357,
  37488. bottom: 12/1471
  37489. }
  37490. },
  37491. feral: {
  37492. height: math.unit(2.05, "m"),
  37493. name: "Feral",
  37494. image: {
  37495. source: "./media/characters/gladi/feral.svg",
  37496. extra: 821/557,
  37497. bottom: 91/912
  37498. }
  37499. },
  37500. },
  37501. [
  37502. {
  37503. name: "Shortest",
  37504. height: math.unit(70, "cm")
  37505. },
  37506. {
  37507. name: "Normal",
  37508. height: math.unit(1.7, "m")
  37509. },
  37510. {
  37511. name: "Macro",
  37512. height: math.unit(10, "m"),
  37513. default: true
  37514. },
  37515. {
  37516. name: "Tallest",
  37517. height: math.unit(200, "m")
  37518. },
  37519. ]
  37520. ))
  37521. characterMakers.push(() => makeCharacter(
  37522. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  37523. {
  37524. front: {
  37525. height: math.unit(5 + 7/12, "feet"),
  37526. weight: math.unit(2, "tons"),
  37527. name: "Front",
  37528. image: {
  37529. source: "./media/characters/erdno/front.svg",
  37530. extra: 1234/1129,
  37531. bottom: 35/1269
  37532. }
  37533. },
  37534. angled: {
  37535. height: math.unit(5 + 7/12, "feet"),
  37536. weight: math.unit(2, "tons"),
  37537. name: "Angled",
  37538. image: {
  37539. source: "./media/characters/erdno/angled.svg",
  37540. extra: 1185/1139,
  37541. bottom: 36/1221
  37542. }
  37543. },
  37544. side: {
  37545. height: math.unit(5 + 7/12, "feet"),
  37546. weight: math.unit(2, "tons"),
  37547. name: "Side",
  37548. image: {
  37549. source: "./media/characters/erdno/side.svg",
  37550. extra: 1191/1144,
  37551. bottom: 40/1231
  37552. }
  37553. },
  37554. back: {
  37555. height: math.unit(5 + 7/12, "feet"),
  37556. weight: math.unit(2, "tons"),
  37557. name: "Back",
  37558. image: {
  37559. source: "./media/characters/erdno/back.svg",
  37560. extra: 1202/1146,
  37561. bottom: 17/1219
  37562. }
  37563. },
  37564. frontNsfw: {
  37565. height: math.unit(5 + 7/12, "feet"),
  37566. weight: math.unit(2, "tons"),
  37567. name: "Front (NSFW)",
  37568. image: {
  37569. source: "./media/characters/erdno/front-nsfw.svg",
  37570. extra: 1234/1129,
  37571. bottom: 35/1269
  37572. }
  37573. },
  37574. angledNsfw: {
  37575. height: math.unit(5 + 7/12, "feet"),
  37576. weight: math.unit(2, "tons"),
  37577. name: "Angled (NSFW)",
  37578. image: {
  37579. source: "./media/characters/erdno/angled-nsfw.svg",
  37580. extra: 1185/1139,
  37581. bottom: 36/1221
  37582. }
  37583. },
  37584. sideNsfw: {
  37585. height: math.unit(5 + 7/12, "feet"),
  37586. weight: math.unit(2, "tons"),
  37587. name: "Side (NSFW)",
  37588. image: {
  37589. source: "./media/characters/erdno/side-nsfw.svg",
  37590. extra: 1191/1144,
  37591. bottom: 40/1231
  37592. }
  37593. },
  37594. backNsfw: {
  37595. height: math.unit(5 + 7/12, "feet"),
  37596. weight: math.unit(2, "tons"),
  37597. name: "Back (NSFW)",
  37598. image: {
  37599. source: "./media/characters/erdno/back-nsfw.svg",
  37600. extra: 1202/1146,
  37601. bottom: 17/1219
  37602. }
  37603. },
  37604. frontHyper: {
  37605. height: math.unit(5 + 7/12, "feet"),
  37606. weight: math.unit(2, "tons"),
  37607. name: "Front (Hyper)",
  37608. image: {
  37609. source: "./media/characters/erdno/front-hyper.svg",
  37610. extra: 1298/1136,
  37611. bottom: 35/1333
  37612. }
  37613. },
  37614. },
  37615. [
  37616. {
  37617. name: "Normal",
  37618. height: math.unit(5 + 7/12, "feet"),
  37619. default: true
  37620. },
  37621. {
  37622. name: "Big",
  37623. height: math.unit(5.7, "meters")
  37624. },
  37625. {
  37626. name: "Macro",
  37627. height: math.unit(5.7, "kilometers")
  37628. },
  37629. {
  37630. name: "Megamacro",
  37631. height: math.unit(5.7, "earths")
  37632. },
  37633. ]
  37634. ))
  37635. characterMakers.push(() => makeCharacter(
  37636. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37637. {
  37638. front: {
  37639. height: math.unit(5 + 10/12, "feet"),
  37640. weight: math.unit(150, "lb"),
  37641. name: "Front",
  37642. image: {
  37643. source: "./media/characters/jamie/front.svg",
  37644. extra: 1908/1768,
  37645. bottom: 19/1927
  37646. }
  37647. },
  37648. },
  37649. [
  37650. {
  37651. name: "Minimum",
  37652. height: math.unit(2, "cm")
  37653. },
  37654. {
  37655. name: "Micro",
  37656. height: math.unit(3, "inches")
  37657. },
  37658. {
  37659. name: "Normal",
  37660. height: math.unit(5 + 10/12, "feet"),
  37661. default: true
  37662. },
  37663. {
  37664. name: "Macro",
  37665. height: math.unit(150, "feet")
  37666. },
  37667. {
  37668. name: "Megamacro",
  37669. height: math.unit(10000, "m")
  37670. },
  37671. ]
  37672. ))
  37673. characterMakers.push(() => makeCharacter(
  37674. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  37675. {
  37676. front: {
  37677. height: math.unit(2, "meters"),
  37678. weight: math.unit(100, "kg"),
  37679. name: "Front",
  37680. image: {
  37681. source: "./media/characters/shiron/front.svg",
  37682. extra: 2103/1985,
  37683. bottom: 98/2201
  37684. }
  37685. },
  37686. back: {
  37687. height: math.unit(2, "meters"),
  37688. weight: math.unit(100, "kg"),
  37689. name: "Back",
  37690. image: {
  37691. source: "./media/characters/shiron/back.svg",
  37692. extra: 2110/2015,
  37693. bottom: 89/2199
  37694. }
  37695. },
  37696. hand: {
  37697. height: math.unit(0.96, "feet"),
  37698. name: "Hand",
  37699. image: {
  37700. source: "./media/characters/shiron/hand.svg"
  37701. }
  37702. },
  37703. foot: {
  37704. height: math.unit(1.464, "feet"),
  37705. name: "Foot",
  37706. image: {
  37707. source: "./media/characters/shiron/foot.svg"
  37708. }
  37709. },
  37710. },
  37711. [
  37712. {
  37713. name: "Normal",
  37714. height: math.unit(2, "meters")
  37715. },
  37716. {
  37717. name: "Macro",
  37718. height: math.unit(500, "meters"),
  37719. default: true
  37720. },
  37721. {
  37722. name: "Megamacro",
  37723. height: math.unit(20, "km")
  37724. },
  37725. ]
  37726. ))
  37727. characterMakers.push(() => makeCharacter(
  37728. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  37729. {
  37730. front: {
  37731. height: math.unit(6, "feet"),
  37732. name: "Front",
  37733. image: {
  37734. source: "./media/characters/sam/front.svg",
  37735. extra: 849/826,
  37736. bottom: 19/868
  37737. }
  37738. },
  37739. },
  37740. [
  37741. {
  37742. name: "Normal",
  37743. height: math.unit(6, "feet"),
  37744. default: true
  37745. },
  37746. ]
  37747. ))
  37748. characterMakers.push(() => makeCharacter(
  37749. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  37750. {
  37751. front: {
  37752. height: math.unit(8 + 4/12, "feet"),
  37753. weight: math.unit(122, "kg"),
  37754. name: "Front",
  37755. image: {
  37756. source: "./media/characters/namori-kurogawa/front.svg",
  37757. extra: 1894/1576,
  37758. bottom: 34/1928
  37759. }
  37760. },
  37761. },
  37762. [
  37763. {
  37764. name: "Normal",
  37765. height: math.unit(8 + 4/12, "feet"),
  37766. default: true
  37767. },
  37768. ]
  37769. ))
  37770. characterMakers.push(() => makeCharacter(
  37771. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  37772. {
  37773. front: {
  37774. height: math.unit(9, "feet"),
  37775. weight: math.unit(621, "lb"),
  37776. name: "Front",
  37777. image: {
  37778. source: "./media/characters/unmru/front.svg",
  37779. extra: 1853/1747,
  37780. bottom: 73/1926
  37781. }
  37782. },
  37783. side: {
  37784. height: math.unit(9, "feet"),
  37785. weight: math.unit(621, "lb"),
  37786. name: "Side",
  37787. image: {
  37788. source: "./media/characters/unmru/side.svg",
  37789. extra: 1781/1671,
  37790. bottom: 127/1908
  37791. }
  37792. },
  37793. back: {
  37794. height: math.unit(9, "feet"),
  37795. weight: math.unit(621, "lb"),
  37796. name: "Back",
  37797. image: {
  37798. source: "./media/characters/unmru/back.svg",
  37799. extra: 1894/1765,
  37800. bottom: 75/1969
  37801. }
  37802. },
  37803. dick: {
  37804. height: math.unit(3, "feet"),
  37805. weight: math.unit(35, "lb"),
  37806. name: "Dick",
  37807. image: {
  37808. source: "./media/characters/unmru/dick.svg"
  37809. }
  37810. },
  37811. },
  37812. [
  37813. {
  37814. name: "Normal",
  37815. height: math.unit(9, "feet")
  37816. },
  37817. {
  37818. name: "Natural",
  37819. height: math.unit(27, "feet"),
  37820. default: true
  37821. },
  37822. {
  37823. name: "Giant",
  37824. height: math.unit(90, "feet")
  37825. },
  37826. {
  37827. name: "Kaiju",
  37828. height: math.unit(270, "feet")
  37829. },
  37830. {
  37831. name: "Macro",
  37832. height: math.unit(900, "feet")
  37833. },
  37834. {
  37835. name: "Macro+",
  37836. height: math.unit(2700, "feet")
  37837. },
  37838. {
  37839. name: "Megamacro",
  37840. height: math.unit(9000, "feet")
  37841. },
  37842. {
  37843. name: "City-Crushing",
  37844. height: math.unit(27000, "feet")
  37845. },
  37846. {
  37847. name: "Mountain-Mashing",
  37848. height: math.unit(90000, "feet")
  37849. },
  37850. {
  37851. name: "Earth-Eclipsing",
  37852. height: math.unit(2.7e8, "feet")
  37853. },
  37854. {
  37855. name: "Sol-Swallowing",
  37856. height: math.unit(9e10, "feet")
  37857. },
  37858. {
  37859. name: "Majoris-Munching",
  37860. height: math.unit(2.7e13, "feet")
  37861. },
  37862. ]
  37863. ))
  37864. characterMakers.push(() => makeCharacter(
  37865. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37866. {
  37867. front: {
  37868. height: math.unit(1, "inch"),
  37869. name: "Front",
  37870. image: {
  37871. source: "./media/characters/squeaks-mouse/front.svg",
  37872. extra: 352/308,
  37873. bottom: 25/377
  37874. }
  37875. },
  37876. },
  37877. [
  37878. {
  37879. name: "Micro",
  37880. height: math.unit(1, "inch"),
  37881. default: true
  37882. },
  37883. ]
  37884. ))
  37885. characterMakers.push(() => makeCharacter(
  37886. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37887. {
  37888. side: {
  37889. height: math.unit(35, "feet"),
  37890. name: "Side",
  37891. image: {
  37892. source: "./media/characters/sayko/side.svg",
  37893. extra: 1697/1021,
  37894. bottom: 82/1779
  37895. }
  37896. },
  37897. head: {
  37898. height: math.unit(16, "feet"),
  37899. name: "Head",
  37900. image: {
  37901. source: "./media/characters/sayko/head.svg"
  37902. }
  37903. },
  37904. forepaw: {
  37905. height: math.unit(7.85, "feet"),
  37906. name: "Forepaw",
  37907. image: {
  37908. source: "./media/characters/sayko/forepaw.svg"
  37909. }
  37910. },
  37911. hindpaw: {
  37912. height: math.unit(8.8, "feet"),
  37913. name: "Hindpaw",
  37914. image: {
  37915. source: "./media/characters/sayko/hindpaw.svg"
  37916. }
  37917. },
  37918. },
  37919. [
  37920. {
  37921. name: "Normal",
  37922. height: math.unit(35, "feet"),
  37923. default: true
  37924. },
  37925. {
  37926. name: "Colossus",
  37927. height: math.unit(100, "meters")
  37928. },
  37929. {
  37930. name: "\"Small\" Deity",
  37931. height: math.unit(1, "km")
  37932. },
  37933. {
  37934. name: "\"Large\" Deity",
  37935. height: math.unit(15, "km")
  37936. },
  37937. ]
  37938. ))
  37939. characterMakers.push(() => makeCharacter(
  37940. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37941. {
  37942. front: {
  37943. height: math.unit(6, "feet"),
  37944. weight: math.unit(250, "lb"),
  37945. name: "Front",
  37946. image: {
  37947. source: "./media/characters/mukiro/front.svg",
  37948. extra: 1368/1310,
  37949. bottom: 34/1402
  37950. }
  37951. },
  37952. },
  37953. [
  37954. {
  37955. name: "Normal",
  37956. height: math.unit(6, "feet"),
  37957. default: true
  37958. },
  37959. ]
  37960. ))
  37961. characterMakers.push(() => makeCharacter(
  37962. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37963. {
  37964. front: {
  37965. height: math.unit(12 + 4/12, "feet"),
  37966. name: "Front",
  37967. image: {
  37968. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37969. extra: 1346/1311,
  37970. bottom: 65/1411
  37971. }
  37972. },
  37973. },
  37974. [
  37975. {
  37976. name: "Base",
  37977. height: math.unit(12 + 4/12, "feet"),
  37978. default: true
  37979. },
  37980. {
  37981. name: "Macro",
  37982. height: math.unit(150, "feet")
  37983. },
  37984. {
  37985. name: "Mega",
  37986. height: math.unit(2, "miles")
  37987. },
  37988. {
  37989. name: "Demi God",
  37990. height: math.unit(4, "AU")
  37991. },
  37992. {
  37993. name: "God Size",
  37994. height: math.unit(1, "universe")
  37995. },
  37996. ]
  37997. ))
  37998. characterMakers.push(() => makeCharacter(
  37999. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  38000. {
  38001. front: {
  38002. height: math.unit(3 + 3/12, "feet"),
  38003. weight: math.unit(88, "lb"),
  38004. name: "Front",
  38005. image: {
  38006. source: "./media/characters/trey/front.svg",
  38007. extra: 1815/1509,
  38008. bottom: 60/1875
  38009. }
  38010. },
  38011. },
  38012. [
  38013. {
  38014. name: "Normal",
  38015. height: math.unit(3 + 3/12, "feet"),
  38016. default: true
  38017. },
  38018. ]
  38019. ))
  38020. characterMakers.push(() => makeCharacter(
  38021. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  38022. {
  38023. front: {
  38024. height: math.unit(4, "meters"),
  38025. name: "Front",
  38026. image: {
  38027. source: "./media/characters/adelonda/front.svg",
  38028. extra: 1077/982,
  38029. bottom: 39/1116
  38030. }
  38031. },
  38032. back: {
  38033. height: math.unit(4, "meters"),
  38034. name: "Back",
  38035. image: {
  38036. source: "./media/characters/adelonda/back.svg",
  38037. extra: 1105/1003,
  38038. bottom: 25/1130
  38039. }
  38040. },
  38041. feral: {
  38042. height: math.unit(40/1.5, "meters"),
  38043. name: "Feral",
  38044. image: {
  38045. source: "./media/characters/adelonda/feral.svg",
  38046. extra: 597/271,
  38047. bottom: 387/984
  38048. }
  38049. },
  38050. },
  38051. [
  38052. {
  38053. name: "Normal",
  38054. height: math.unit(4, "meters"),
  38055. default: true
  38056. },
  38057. ]
  38058. ))
  38059. characterMakers.push(() => makeCharacter(
  38060. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  38061. {
  38062. front: {
  38063. height: math.unit(8 + 4/12, "feet"),
  38064. weight: math.unit(670, "lb"),
  38065. name: "Front",
  38066. image: {
  38067. source: "./media/characters/acadiel/front.svg",
  38068. extra: 1901/1595,
  38069. bottom: 142/2043
  38070. }
  38071. },
  38072. },
  38073. [
  38074. {
  38075. name: "Normal",
  38076. height: math.unit(8 + 4/12, "feet"),
  38077. default: true
  38078. },
  38079. {
  38080. name: "Macro",
  38081. height: math.unit(200, "feet")
  38082. },
  38083. ]
  38084. ))
  38085. characterMakers.push(() => makeCharacter(
  38086. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  38087. {
  38088. front: {
  38089. height: math.unit(6 + 2/12, "feet"),
  38090. weight: math.unit(185, "lb"),
  38091. name: "Front",
  38092. image: {
  38093. source: "./media/characters/kayne-ein/front.svg",
  38094. extra: 1780/1560,
  38095. bottom: 81/1861
  38096. }
  38097. },
  38098. },
  38099. [
  38100. {
  38101. name: "Normal",
  38102. height: math.unit(6 + 2/12, "feet"),
  38103. default: true
  38104. },
  38105. {
  38106. name: "Transformation Stage",
  38107. height: math.unit(15, "feet")
  38108. },
  38109. {
  38110. name: "Macro",
  38111. height: math.unit(150, "feet")
  38112. },
  38113. {
  38114. name: "Earth's Shadow",
  38115. height: math.unit(6200, "miles")
  38116. },
  38117. {
  38118. name: "Universal Demon",
  38119. height: math.unit(28e9, "parsecs")
  38120. },
  38121. {
  38122. name: "Multiverse God",
  38123. height: math.unit(3, "multiverses")
  38124. },
  38125. ]
  38126. ))
  38127. characterMakers.push(() => makeCharacter(
  38128. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  38129. {
  38130. front: {
  38131. height: math.unit(5 + 5/12, "feet"),
  38132. name: "Front",
  38133. image: {
  38134. source: "./media/characters/fawn/front.svg",
  38135. extra: 1873/1731,
  38136. bottom: 95/1968
  38137. }
  38138. },
  38139. back: {
  38140. height: math.unit(5 + 5/12, "feet"),
  38141. name: "Back",
  38142. image: {
  38143. source: "./media/characters/fawn/back.svg",
  38144. extra: 1813/1700,
  38145. bottom: 14/1827
  38146. }
  38147. },
  38148. hoof: {
  38149. height: math.unit(1.45, "feet"),
  38150. name: "Hoof",
  38151. image: {
  38152. source: "./media/characters/fawn/hoof.svg"
  38153. }
  38154. },
  38155. },
  38156. [
  38157. {
  38158. name: "Normal",
  38159. height: math.unit(5 + 5/12, "feet"),
  38160. default: true
  38161. },
  38162. ]
  38163. ))
  38164. characterMakers.push(() => makeCharacter(
  38165. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  38166. {
  38167. front: {
  38168. height: math.unit(2 + 5/12, "feet"),
  38169. name: "Front",
  38170. image: {
  38171. source: "./media/characters/orion/front.svg",
  38172. extra: 1366/1304,
  38173. bottom: 43/1409
  38174. }
  38175. },
  38176. paw: {
  38177. height: math.unit(0.52, "feet"),
  38178. name: "Paw",
  38179. image: {
  38180. source: "./media/characters/orion/paw.svg"
  38181. }
  38182. },
  38183. },
  38184. [
  38185. {
  38186. name: "Normal",
  38187. height: math.unit(2 + 5/12, "feet"),
  38188. default: true
  38189. },
  38190. ]
  38191. ))
  38192. characterMakers.push(() => makeCharacter(
  38193. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  38194. {
  38195. front: {
  38196. height: math.unit(5 + 10/12, "feet"),
  38197. name: "Front",
  38198. image: {
  38199. source: "./media/characters/vera/front.svg",
  38200. extra: 1680/1575,
  38201. bottom: 49/1729
  38202. }
  38203. },
  38204. back: {
  38205. height: math.unit(5 + 10/12, "feet"),
  38206. name: "Back",
  38207. image: {
  38208. source: "./media/characters/vera/back.svg",
  38209. extra: 1700/1588,
  38210. bottom: 18/1718
  38211. }
  38212. },
  38213. arcanine: {
  38214. height: math.unit(6 + 8/12, "feet"),
  38215. name: "Arcanine",
  38216. image: {
  38217. source: "./media/characters/vera/arcanine.svg",
  38218. extra: 1590/1511,
  38219. bottom: 71/1661
  38220. }
  38221. },
  38222. maw: {
  38223. height: math.unit(0.82, "feet"),
  38224. name: "Maw",
  38225. image: {
  38226. source: "./media/characters/vera/maw.svg"
  38227. }
  38228. },
  38229. mawArcanine: {
  38230. height: math.unit(0.97, "feet"),
  38231. name: "Maw (Arcanine)",
  38232. image: {
  38233. source: "./media/characters/vera/maw-arcanine.svg"
  38234. }
  38235. },
  38236. paw: {
  38237. height: math.unit(0.75, "feet"),
  38238. name: "Paw",
  38239. image: {
  38240. source: "./media/characters/vera/paw.svg"
  38241. }
  38242. },
  38243. pawprint: {
  38244. height: math.unit(0.52, "feet"),
  38245. name: "Pawprint",
  38246. image: {
  38247. source: "./media/characters/vera/pawprint.svg"
  38248. }
  38249. },
  38250. },
  38251. [
  38252. {
  38253. name: "Normal",
  38254. height: math.unit(5 + 10/12, "feet"),
  38255. default: true
  38256. },
  38257. {
  38258. name: "Macro",
  38259. height: math.unit(75, "feet")
  38260. },
  38261. ]
  38262. ))
  38263. characterMakers.push(() => makeCharacter(
  38264. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  38265. {
  38266. front: {
  38267. height: math.unit(4, "feet"),
  38268. weight: math.unit(40, "lb"),
  38269. name: "Front",
  38270. image: {
  38271. source: "./media/characters/orvan-rabbit/front.svg",
  38272. extra: 1896/1642,
  38273. bottom: 29/1925
  38274. }
  38275. },
  38276. },
  38277. [
  38278. {
  38279. name: "Normal",
  38280. height: math.unit(4, "feet"),
  38281. default: true
  38282. },
  38283. ]
  38284. ))
  38285. characterMakers.push(() => makeCharacter(
  38286. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  38287. {
  38288. front: {
  38289. height: math.unit(6, "feet"),
  38290. weight: math.unit(168, "lb"),
  38291. name: "Front",
  38292. image: {
  38293. source: "./media/characters/lisa/front.svg",
  38294. extra: 2065/1867,
  38295. bottom: 46/2111
  38296. }
  38297. },
  38298. back: {
  38299. height: math.unit(6, "feet"),
  38300. weight: math.unit(168, "lb"),
  38301. name: "Back",
  38302. image: {
  38303. source: "./media/characters/lisa/back.svg",
  38304. extra: 1982/1838,
  38305. bottom: 29/2011
  38306. }
  38307. },
  38308. maw: {
  38309. height: math.unit(0.81, "feet"),
  38310. name: "Maw",
  38311. image: {
  38312. source: "./media/characters/lisa/maw.svg"
  38313. }
  38314. },
  38315. paw: {
  38316. height: math.unit(0.9, "feet"),
  38317. name: "Paw",
  38318. image: {
  38319. source: "./media/characters/lisa/paw.svg"
  38320. }
  38321. },
  38322. caribousune: {
  38323. height: math.unit(7 + 2/12, "feet"),
  38324. weight: math.unit(268, "lb"),
  38325. name: "Caribousune",
  38326. image: {
  38327. source: "./media/characters/lisa/caribousune.svg",
  38328. extra: 1843/1633,
  38329. bottom: 29/1872
  38330. }
  38331. },
  38332. frontCaribousune: {
  38333. height: math.unit(7 + 2/12, "feet"),
  38334. weight: math.unit(268, "lb"),
  38335. name: "Front (Caribousune)",
  38336. image: {
  38337. source: "./media/characters/lisa/front-caribousune.svg",
  38338. extra: 1818/1638,
  38339. bottom: 52/1870
  38340. }
  38341. },
  38342. sideCaribousune: {
  38343. height: math.unit(7 + 2/12, "feet"),
  38344. weight: math.unit(268, "lb"),
  38345. name: "Side (Caribousune)",
  38346. image: {
  38347. source: "./media/characters/lisa/side-caribousune.svg",
  38348. extra: 1851/1635,
  38349. bottom: 16/1867
  38350. }
  38351. },
  38352. backCaribousune: {
  38353. height: math.unit(7 + 2/12, "feet"),
  38354. weight: math.unit(268, "lb"),
  38355. name: "Back (Caribousune)",
  38356. image: {
  38357. source: "./media/characters/lisa/back-caribousune.svg",
  38358. extra: 1801/1604,
  38359. bottom: 44/1845
  38360. }
  38361. },
  38362. caribou: {
  38363. height: math.unit(7 + 2/12, "feet"),
  38364. weight: math.unit(268, "lb"),
  38365. name: "Caribou",
  38366. image: {
  38367. source: "./media/characters/lisa/caribou.svg",
  38368. extra: 1843/1633,
  38369. bottom: 29/1872
  38370. }
  38371. },
  38372. frontCaribou: {
  38373. height: math.unit(7 + 2/12, "feet"),
  38374. weight: math.unit(268, "lb"),
  38375. name: "Front (Caribou)",
  38376. image: {
  38377. source: "./media/characters/lisa/front-caribou.svg",
  38378. extra: 1818/1638,
  38379. bottom: 52/1870
  38380. }
  38381. },
  38382. sideCaribou: {
  38383. height: math.unit(7 + 2/12, "feet"),
  38384. weight: math.unit(268, "lb"),
  38385. name: "Side (Caribou)",
  38386. image: {
  38387. source: "./media/characters/lisa/side-caribou.svg",
  38388. extra: 1851/1635,
  38389. bottom: 16/1867
  38390. }
  38391. },
  38392. backCaribou: {
  38393. height: math.unit(7 + 2/12, "feet"),
  38394. weight: math.unit(268, "lb"),
  38395. name: "Back (Caribou)",
  38396. image: {
  38397. source: "./media/characters/lisa/back-caribou.svg",
  38398. extra: 1801/1604,
  38399. bottom: 44/1845
  38400. }
  38401. },
  38402. mawCaribou: {
  38403. height: math.unit(1.45, "feet"),
  38404. name: "Maw (Caribou)",
  38405. image: {
  38406. source: "./media/characters/lisa/maw-caribou.svg"
  38407. }
  38408. },
  38409. mawCaribousune: {
  38410. height: math.unit(1.45, "feet"),
  38411. name: "Maw (Caribousune)",
  38412. image: {
  38413. source: "./media/characters/lisa/maw-caribousune.svg"
  38414. }
  38415. },
  38416. pawCaribousune: {
  38417. height: math.unit(1.61, "feet"),
  38418. name: "Paw (Caribou)",
  38419. image: {
  38420. source: "./media/characters/lisa/paw-caribousune.svg"
  38421. }
  38422. },
  38423. },
  38424. [
  38425. {
  38426. name: "Normal",
  38427. height: math.unit(6, "feet")
  38428. },
  38429. {
  38430. name: "God Size",
  38431. height: math.unit(72, "feet"),
  38432. default: true
  38433. },
  38434. {
  38435. name: "Towering",
  38436. height: math.unit(288, "feet")
  38437. },
  38438. {
  38439. name: "City Size",
  38440. height: math.unit(48384, "feet")
  38441. },
  38442. {
  38443. name: "Continental",
  38444. height: math.unit(4200, "miles")
  38445. },
  38446. {
  38447. name: "Planet Eater",
  38448. height: math.unit(42, "earths")
  38449. },
  38450. {
  38451. name: "Star Swallower",
  38452. height: math.unit(42, "solarradii")
  38453. },
  38454. {
  38455. name: "System Swallower",
  38456. height: math.unit(84000, "AU")
  38457. },
  38458. {
  38459. name: "Galaxy Gobbler",
  38460. height: math.unit(42, "galaxies")
  38461. },
  38462. {
  38463. name: "Universe Devourer",
  38464. height: math.unit(42, "universes")
  38465. },
  38466. {
  38467. name: "Multiverse Muncher",
  38468. height: math.unit(42, "multiverses")
  38469. },
  38470. ]
  38471. ))
  38472. characterMakers.push(() => makeCharacter(
  38473. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  38474. {
  38475. front: {
  38476. height: math.unit(36, "feet"),
  38477. name: "Front",
  38478. image: {
  38479. source: "./media/characters/shadow-rat/front.svg",
  38480. extra: 1845/1758,
  38481. bottom: 83/1928
  38482. }
  38483. },
  38484. },
  38485. [
  38486. {
  38487. name: "Macro",
  38488. height: math.unit(36, "feet"),
  38489. default: true
  38490. },
  38491. ]
  38492. ))
  38493. characterMakers.push(() => makeCharacter(
  38494. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  38495. {
  38496. side: {
  38497. height: math.unit(8, "feet"),
  38498. weight: math.unit(2630, "lb"),
  38499. name: "Side",
  38500. image: {
  38501. source: "./media/characters/torallia/side.svg",
  38502. extra: 2164/2021,
  38503. bottom: 371/2535
  38504. }
  38505. },
  38506. },
  38507. [
  38508. {
  38509. name: "Mortal Interaction",
  38510. height: math.unit(8, "feet")
  38511. },
  38512. {
  38513. name: "Natural",
  38514. height: math.unit(24, "feet"),
  38515. default: true
  38516. },
  38517. {
  38518. name: "Giant",
  38519. height: math.unit(80, "feet")
  38520. },
  38521. {
  38522. name: "Kaiju",
  38523. height: math.unit(240, "feet")
  38524. },
  38525. {
  38526. name: "Macro",
  38527. height: math.unit(800, "feet")
  38528. },
  38529. {
  38530. name: "Macro+",
  38531. height: math.unit(2400, "feet")
  38532. },
  38533. {
  38534. name: "Macro++",
  38535. height: math.unit(8000, "feet")
  38536. },
  38537. {
  38538. name: "City-Crushing",
  38539. height: math.unit(24000, "feet")
  38540. },
  38541. {
  38542. name: "Mountain-Mashing",
  38543. height: math.unit(80000, "feet")
  38544. },
  38545. {
  38546. name: "District Demolisher",
  38547. height: math.unit(240000, "feet")
  38548. },
  38549. {
  38550. name: "Tri-County Terror",
  38551. height: math.unit(800000, "feet")
  38552. },
  38553. {
  38554. name: "State Smasher",
  38555. height: math.unit(2.4e6, "feet")
  38556. },
  38557. {
  38558. name: "Nation Nemesis",
  38559. height: math.unit(8e6, "feet")
  38560. },
  38561. {
  38562. name: "Continent Cracker",
  38563. height: math.unit(2.4e7, "feet")
  38564. },
  38565. {
  38566. name: "Planet-Pillaging",
  38567. height: math.unit(8e7, "feet")
  38568. },
  38569. {
  38570. name: "Earth-Eclipsing",
  38571. height: math.unit(2.4e8, "feet")
  38572. },
  38573. {
  38574. name: "Jovian-Jostling",
  38575. height: math.unit(8e8, "feet")
  38576. },
  38577. {
  38578. name: "Gas Giant Gulper",
  38579. height: math.unit(2.4e9, "feet")
  38580. },
  38581. {
  38582. name: "Astral Annihilator",
  38583. height: math.unit(8e9, "feet")
  38584. },
  38585. {
  38586. name: "Celestial Conqueror",
  38587. height: math.unit(2.4e10, "feet")
  38588. },
  38589. {
  38590. name: "Sol-Swallowing",
  38591. height: math.unit(8e10, "feet")
  38592. },
  38593. {
  38594. name: "Hunter of the Heavens",
  38595. height: math.unit(2.4e13, "feet")
  38596. },
  38597. ]
  38598. ))
  38599. characterMakers.push(() => makeCharacter(
  38600. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38601. {
  38602. front: {
  38603. height: math.unit(6 + 8/12, "feet"),
  38604. name: "Front",
  38605. image: {
  38606. source: "./media/characters/rebecca-pawlson/front.svg",
  38607. extra: 1737/1596,
  38608. bottom: 107/1844
  38609. }
  38610. },
  38611. back: {
  38612. height: math.unit(6 + 8/12, "feet"),
  38613. name: "Back",
  38614. image: {
  38615. source: "./media/characters/rebecca-pawlson/back.svg",
  38616. extra: 1702/1523,
  38617. bottom: 86/1788
  38618. }
  38619. },
  38620. },
  38621. [
  38622. {
  38623. name: "Normal",
  38624. height: math.unit(6 + 8/12, "feet")
  38625. },
  38626. {
  38627. name: "Mini Macro",
  38628. height: math.unit(10, "feet"),
  38629. default: true
  38630. },
  38631. {
  38632. name: "Macro",
  38633. height: math.unit(100, "feet")
  38634. },
  38635. {
  38636. name: "Mega Macro",
  38637. height: math.unit(2500, "feet")
  38638. },
  38639. {
  38640. name: "Giga Macro",
  38641. height: math.unit(50, "miles")
  38642. },
  38643. ]
  38644. ))
  38645. characterMakers.push(() => makeCharacter(
  38646. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38647. {
  38648. front: {
  38649. height: math.unit(7 + 6/12, "feet"),
  38650. weight: math.unit(600, "lb"),
  38651. name: "Front",
  38652. image: {
  38653. source: "./media/characters/moxie-nova/front.svg",
  38654. extra: 1734/1652,
  38655. bottom: 41/1775
  38656. }
  38657. },
  38658. },
  38659. [
  38660. {
  38661. name: "Normal",
  38662. height: math.unit(7 + 6/12, "feet"),
  38663. default: true
  38664. },
  38665. ]
  38666. ))
  38667. characterMakers.push(() => makeCharacter(
  38668. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  38669. {
  38670. goat: {
  38671. height: math.unit(4, "feet"),
  38672. weight: math.unit(180, "lb"),
  38673. name: "Goat",
  38674. image: {
  38675. source: "./media/characters/tiffany/goat.svg",
  38676. extra: 1845/1595,
  38677. bottom: 106/1951
  38678. }
  38679. },
  38680. front: {
  38681. height: math.unit(5, "feet"),
  38682. weight: math.unit(150, "lb"),
  38683. name: "Foxcoon",
  38684. image: {
  38685. source: "./media/characters/tiffany/foxcoon.svg",
  38686. extra: 1941/1845,
  38687. bottom: 58/1999
  38688. }
  38689. },
  38690. },
  38691. [
  38692. {
  38693. name: "Normal",
  38694. height: math.unit(5, "feet"),
  38695. default: true
  38696. },
  38697. ]
  38698. ))
  38699. characterMakers.push(() => makeCharacter(
  38700. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  38701. {
  38702. front: {
  38703. height: math.unit(8, "feet"),
  38704. weight: math.unit(300, "lb"),
  38705. name: "Front",
  38706. image: {
  38707. source: "./media/characters/raxinath/front.svg",
  38708. extra: 1407/1309,
  38709. bottom: 39/1446
  38710. }
  38711. },
  38712. back: {
  38713. height: math.unit(8, "feet"),
  38714. weight: math.unit(300, "lb"),
  38715. name: "Back",
  38716. image: {
  38717. source: "./media/characters/raxinath/back.svg",
  38718. extra: 1405/1315,
  38719. bottom: 9/1414
  38720. }
  38721. },
  38722. },
  38723. [
  38724. {
  38725. name: "Speck",
  38726. height: math.unit(0.5, "nm")
  38727. },
  38728. {
  38729. name: "Micro",
  38730. height: math.unit(3, "inches")
  38731. },
  38732. {
  38733. name: "Kobold",
  38734. height: math.unit(3, "feet")
  38735. },
  38736. {
  38737. name: "Normal",
  38738. height: math.unit(8, "feet"),
  38739. default: true
  38740. },
  38741. {
  38742. name: "Giant",
  38743. height: math.unit(50, "feet")
  38744. },
  38745. {
  38746. name: "Macro",
  38747. height: math.unit(1000, "feet")
  38748. },
  38749. {
  38750. name: "Megamacro",
  38751. height: math.unit(1, "mile")
  38752. },
  38753. ]
  38754. ))
  38755. characterMakers.push(() => makeCharacter(
  38756. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  38757. {
  38758. front: {
  38759. height: math.unit(10, "feet"),
  38760. weight: math.unit(1442, "lb"),
  38761. name: "Front",
  38762. image: {
  38763. source: "./media/characters/mal-dragon/front.svg",
  38764. extra: 1515/1444,
  38765. bottom: 113/1628
  38766. }
  38767. },
  38768. back: {
  38769. height: math.unit(10, "feet"),
  38770. weight: math.unit(1442, "lb"),
  38771. name: "Back",
  38772. image: {
  38773. source: "./media/characters/mal-dragon/back.svg",
  38774. extra: 1527/1434,
  38775. bottom: 25/1552
  38776. }
  38777. },
  38778. },
  38779. [
  38780. {
  38781. name: "Mortal Interaction",
  38782. height: math.unit(10, "feet"),
  38783. default: true
  38784. },
  38785. {
  38786. name: "Large",
  38787. height: math.unit(30, "feet")
  38788. },
  38789. {
  38790. name: "Kaiju",
  38791. height: math.unit(300, "feet")
  38792. },
  38793. {
  38794. name: "Megamacro",
  38795. height: math.unit(10000, "feet")
  38796. },
  38797. {
  38798. name: "Continent Cracker",
  38799. height: math.unit(30000000, "feet")
  38800. },
  38801. {
  38802. name: "Sol-Swallowing",
  38803. height: math.unit(1e11, "feet")
  38804. },
  38805. {
  38806. name: "Light Universal",
  38807. height: math.unit(5, "universes")
  38808. },
  38809. {
  38810. name: "Universe Atoms",
  38811. height: math.unit(1.829e9, "universes")
  38812. },
  38813. {
  38814. name: "Light Multiversal",
  38815. height: math.unit(5, "multiverses")
  38816. },
  38817. {
  38818. name: "Multiverse Atoms",
  38819. height: math.unit(1.829e9, "multiverses")
  38820. },
  38821. {
  38822. name: "Fabric of Time",
  38823. height: math.unit(1e262, "multiverses")
  38824. },
  38825. ]
  38826. ))
  38827. characterMakers.push(() => makeCharacter(
  38828. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38829. {
  38830. front: {
  38831. height: math.unit(9, "feet"),
  38832. weight: math.unit(1050, "lb"),
  38833. name: "Front",
  38834. image: {
  38835. source: "./media/characters/tabitha/front.svg",
  38836. extra: 2083/1994,
  38837. bottom: 68/2151
  38838. }
  38839. },
  38840. },
  38841. [
  38842. {
  38843. name: "Baseline",
  38844. height: math.unit(9, "feet"),
  38845. default: true
  38846. },
  38847. {
  38848. name: "Giant",
  38849. height: math.unit(90, "feet")
  38850. },
  38851. {
  38852. name: "Macro",
  38853. height: math.unit(900, "feet")
  38854. },
  38855. {
  38856. name: "Megamacro",
  38857. height: math.unit(9000, "feet")
  38858. },
  38859. {
  38860. name: "City-Crushing",
  38861. height: math.unit(27000, "feet")
  38862. },
  38863. {
  38864. name: "Mountain-Mashing",
  38865. height: math.unit(90000, "feet")
  38866. },
  38867. {
  38868. name: "Nation Nemesis",
  38869. height: math.unit(9e6, "feet")
  38870. },
  38871. {
  38872. name: "Continent Cracker",
  38873. height: math.unit(27e6, "feet")
  38874. },
  38875. {
  38876. name: "Earth-Eclipsing",
  38877. height: math.unit(2.7e8, "feet")
  38878. },
  38879. {
  38880. name: "Gas Giant Gulper",
  38881. height: math.unit(2.7e9, "feet")
  38882. },
  38883. {
  38884. name: "Sol-Swallowing",
  38885. height: math.unit(9e10, "feet")
  38886. },
  38887. {
  38888. name: "Galaxy Gulper",
  38889. height: math.unit(9, "galaxies")
  38890. },
  38891. {
  38892. name: "Cosmos Churner",
  38893. height: math.unit(9, "universes")
  38894. },
  38895. ]
  38896. ))
  38897. characterMakers.push(() => makeCharacter(
  38898. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38899. {
  38900. front: {
  38901. height: math.unit(160, "cm"),
  38902. weight: math.unit(55, "kg"),
  38903. name: "Front",
  38904. image: {
  38905. source: "./media/characters/tow/front.svg",
  38906. extra: 1751/1722,
  38907. bottom: 74/1825
  38908. }
  38909. },
  38910. },
  38911. [
  38912. {
  38913. name: "Norm",
  38914. height: math.unit(160, "cm")
  38915. },
  38916. {
  38917. name: "Casual",
  38918. height: math.unit(3200, "m"),
  38919. default: true
  38920. },
  38921. {
  38922. name: "Show-Off",
  38923. height: math.unit(160, "km")
  38924. },
  38925. ]
  38926. ))
  38927. characterMakers.push(() => makeCharacter(
  38928. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38929. {
  38930. front: {
  38931. height: math.unit(7 + 11/12, "feet"),
  38932. weight: math.unit(342.8, "lb"),
  38933. name: "Front",
  38934. image: {
  38935. source: "./media/characters/vivian-orca-dragon/front.svg",
  38936. extra: 1890/1865,
  38937. bottom: 28/1918
  38938. }
  38939. },
  38940. },
  38941. [
  38942. {
  38943. name: "Micro",
  38944. height: math.unit(5, "inches")
  38945. },
  38946. {
  38947. name: "Normal",
  38948. height: math.unit(7 + 11/12, "feet"),
  38949. default: true
  38950. },
  38951. {
  38952. name: "Macro",
  38953. height: math.unit(395 + 7/12, "feet")
  38954. },
  38955. ]
  38956. ))
  38957. characterMakers.push(() => makeCharacter(
  38958. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38959. {
  38960. side: {
  38961. height: math.unit(10, "feet"),
  38962. weight: math.unit(1442, "lb"),
  38963. name: "Side",
  38964. image: {
  38965. source: "./media/characters/lotherakon/side.svg",
  38966. extra: 1604/1497,
  38967. bottom: 89/1693
  38968. }
  38969. },
  38970. },
  38971. [
  38972. {
  38973. name: "Mortal Interaction",
  38974. height: math.unit(10, "feet")
  38975. },
  38976. {
  38977. name: "Large",
  38978. height: math.unit(30, "feet"),
  38979. default: true
  38980. },
  38981. {
  38982. name: "Giant",
  38983. height: math.unit(100, "feet")
  38984. },
  38985. {
  38986. name: "Kaiju",
  38987. height: math.unit(300, "feet")
  38988. },
  38989. {
  38990. name: "Macro",
  38991. height: math.unit(1000, "feet")
  38992. },
  38993. {
  38994. name: "Macro+",
  38995. height: math.unit(3000, "feet")
  38996. },
  38997. {
  38998. name: "Megamacro",
  38999. height: math.unit(10000, "feet")
  39000. },
  39001. {
  39002. name: "City-Crushing",
  39003. height: math.unit(30000, "feet")
  39004. },
  39005. {
  39006. name: "Continent Cracker",
  39007. height: math.unit(30e6, "feet")
  39008. },
  39009. {
  39010. name: "Earth Eclipsing",
  39011. height: math.unit(3e8, "feet")
  39012. },
  39013. {
  39014. name: "Gas Giant Gulper",
  39015. height: math.unit(3e9, "feet")
  39016. },
  39017. {
  39018. name: "Sol-Swallowing",
  39019. height: math.unit(1e11, "feet")
  39020. },
  39021. {
  39022. name: "System Swallower",
  39023. height: math.unit(3e14, "feet")
  39024. },
  39025. {
  39026. name: "Galaxy Gulper",
  39027. height: math.unit(10, "galaxies")
  39028. },
  39029. {
  39030. name: "Light Universal",
  39031. height: math.unit(5, "universes")
  39032. },
  39033. {
  39034. name: "Universe Palm",
  39035. height: math.unit(20, "universes")
  39036. },
  39037. {
  39038. name: "Light Multiversal",
  39039. height: math.unit(5, "multiverses")
  39040. },
  39041. {
  39042. name: "Multiverse Palm",
  39043. height: math.unit(20, "multiverses")
  39044. },
  39045. {
  39046. name: "Inferno Incarnate",
  39047. height: math.unit(1e7, "multiverses")
  39048. },
  39049. ]
  39050. ))
  39051. characterMakers.push(() => makeCharacter(
  39052. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  39053. {
  39054. front: {
  39055. height: math.unit(8, "feet"),
  39056. weight: math.unit(1200, "lb"),
  39057. name: "Front",
  39058. image: {
  39059. source: "./media/characters/malithee/front.svg",
  39060. extra: 1675/1640,
  39061. bottom: 162/1837
  39062. }
  39063. },
  39064. },
  39065. [
  39066. {
  39067. name: "Mortal Interaction",
  39068. height: math.unit(8, "feet"),
  39069. default: true
  39070. },
  39071. {
  39072. name: "Large",
  39073. height: math.unit(24, "feet")
  39074. },
  39075. {
  39076. name: "Kaiju",
  39077. height: math.unit(240, "feet")
  39078. },
  39079. {
  39080. name: "Megamacro",
  39081. height: math.unit(8000, "feet")
  39082. },
  39083. {
  39084. name: "Continent Cracker",
  39085. height: math.unit(24e6, "feet")
  39086. },
  39087. {
  39088. name: "Earth-Eclipsing",
  39089. height: math.unit(2.4e8, "feet")
  39090. },
  39091. {
  39092. name: "Sol-Swallowing",
  39093. height: math.unit(8e10, "feet")
  39094. },
  39095. {
  39096. name: "Galaxy Gulper",
  39097. height: math.unit(8, "galaxies")
  39098. },
  39099. {
  39100. name: "Light Universal",
  39101. height: math.unit(4, "universes")
  39102. },
  39103. {
  39104. name: "Universe Atoms",
  39105. height: math.unit(1.829e9, "universes")
  39106. },
  39107. {
  39108. name: "Light Multiversal",
  39109. height: math.unit(4, "multiverses")
  39110. },
  39111. {
  39112. name: "Multiverse Atoms",
  39113. height: math.unit(1.829e9, "multiverses")
  39114. },
  39115. {
  39116. name: "Nigh-Omnipresence",
  39117. height: math.unit(8e261, "multiverses")
  39118. },
  39119. ]
  39120. ))
  39121. characterMakers.push(() => makeCharacter(
  39122. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  39123. {
  39124. front: {
  39125. height: math.unit(10, "feet"),
  39126. weight: math.unit(1500, "lb"),
  39127. name: "Front",
  39128. image: {
  39129. source: "./media/characters/miles-thestia/front.svg",
  39130. extra: 1812/1727,
  39131. bottom: 86/1898
  39132. }
  39133. },
  39134. back: {
  39135. height: math.unit(10, "feet"),
  39136. weight: math.unit(1500, "lb"),
  39137. name: "Back",
  39138. image: {
  39139. source: "./media/characters/miles-thestia/back.svg",
  39140. extra: 1799/1690,
  39141. bottom: 47/1846
  39142. }
  39143. },
  39144. frontNsfw: {
  39145. height: math.unit(10, "feet"),
  39146. weight: math.unit(1500, "lb"),
  39147. name: "Front (NSFW)",
  39148. image: {
  39149. source: "./media/characters/miles-thestia/front-nsfw.svg",
  39150. extra: 1812/1727,
  39151. bottom: 86/1898
  39152. }
  39153. },
  39154. },
  39155. [
  39156. {
  39157. name: "Mini-Macro",
  39158. height: math.unit(10, "feet"),
  39159. default: true
  39160. },
  39161. ]
  39162. ))
  39163. characterMakers.push(() => makeCharacter(
  39164. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  39165. {
  39166. front: {
  39167. height: math.unit(25, "feet"),
  39168. name: "Front",
  39169. image: {
  39170. source: "./media/characters/titan-s-wulf/front.svg",
  39171. extra: 1560/1484,
  39172. bottom: 76/1636
  39173. }
  39174. },
  39175. },
  39176. [
  39177. {
  39178. name: "Smallest",
  39179. height: math.unit(25, "feet"),
  39180. default: true
  39181. },
  39182. {
  39183. name: "Normal",
  39184. height: math.unit(200, "feet")
  39185. },
  39186. {
  39187. name: "Macro",
  39188. height: math.unit(200000, "feet")
  39189. },
  39190. {
  39191. name: "Multiversal Original",
  39192. height: math.unit(10000, "multiverses")
  39193. },
  39194. ]
  39195. ))
  39196. characterMakers.push(() => makeCharacter(
  39197. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  39198. {
  39199. front: {
  39200. height: math.unit(8, "feet"),
  39201. weight: math.unit(553, "lb"),
  39202. name: "Front",
  39203. image: {
  39204. source: "./media/characters/tawendeh/front.svg",
  39205. extra: 2365/2268,
  39206. bottom: 83/2448
  39207. }
  39208. },
  39209. frontClothed: {
  39210. height: math.unit(8, "feet"),
  39211. weight: math.unit(553, "lb"),
  39212. name: "Front (Clothed)",
  39213. image: {
  39214. source: "./media/characters/tawendeh/front-clothed.svg",
  39215. extra: 2365/2268,
  39216. bottom: 83/2448
  39217. }
  39218. },
  39219. back: {
  39220. height: math.unit(8, "feet"),
  39221. weight: math.unit(553, "lb"),
  39222. name: "Back",
  39223. image: {
  39224. source: "./media/characters/tawendeh/back.svg",
  39225. extra: 2397/2294,
  39226. bottom: 42/2439
  39227. }
  39228. },
  39229. },
  39230. [
  39231. {
  39232. name: "Mortal Interaction",
  39233. height: math.unit(8, "feet"),
  39234. default: true
  39235. },
  39236. {
  39237. name: "Giant",
  39238. height: math.unit(80, "feet")
  39239. },
  39240. {
  39241. name: "Macro",
  39242. height: math.unit(800, "feet")
  39243. },
  39244. {
  39245. name: "Megamacro",
  39246. height: math.unit(8000, "feet")
  39247. },
  39248. {
  39249. name: "City-Crushing",
  39250. height: math.unit(24000, "feet")
  39251. },
  39252. {
  39253. name: "Mountain-Mashing",
  39254. height: math.unit(80000, "feet")
  39255. },
  39256. {
  39257. name: "Nation Nemesis",
  39258. height: math.unit(8e6, "feet")
  39259. },
  39260. {
  39261. name: "Continent Cracker",
  39262. height: math.unit(24e6, "feet")
  39263. },
  39264. {
  39265. name: "Earth-Eclipsing",
  39266. height: math.unit(2.4e8, "feet")
  39267. },
  39268. {
  39269. name: "Gas Giant Gulper",
  39270. height: math.unit(2.4e9, "feet")
  39271. },
  39272. {
  39273. name: "Sol-Swallowing",
  39274. height: math.unit(8e10, "feet")
  39275. },
  39276. {
  39277. name: "Galaxy Gulper",
  39278. height: math.unit(8, "galaxies")
  39279. },
  39280. {
  39281. name: "Cosmos Churner",
  39282. height: math.unit(8, "universes")
  39283. },
  39284. {
  39285. name: "Omnipotent Otter",
  39286. height: math.unit(80, "universes")
  39287. },
  39288. ]
  39289. ))
  39290. characterMakers.push(() => makeCharacter(
  39291. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  39292. {
  39293. front: {
  39294. height: math.unit(2.6, "meters"),
  39295. weight: math.unit(900, "kg"),
  39296. name: "Front",
  39297. image: {
  39298. source: "./media/characters/neesha/front.svg",
  39299. extra: 1803/1653,
  39300. bottom: 128/1931
  39301. }
  39302. },
  39303. },
  39304. [
  39305. {
  39306. name: "Normal",
  39307. height: math.unit(2.6, "meters"),
  39308. default: true
  39309. },
  39310. {
  39311. name: "Macro",
  39312. height: math.unit(50, "meters")
  39313. },
  39314. ]
  39315. ))
  39316. characterMakers.push(() => makeCharacter(
  39317. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  39318. {
  39319. front: {
  39320. height: math.unit(5, "feet"),
  39321. weight: math.unit(185, "lb"),
  39322. name: "Front",
  39323. image: {
  39324. source: "./media/characters/kyera/front.svg",
  39325. extra: 1875/1790,
  39326. bottom: 96/1971
  39327. }
  39328. },
  39329. },
  39330. [
  39331. {
  39332. name: "Normal",
  39333. height: math.unit(5, "feet"),
  39334. default: true
  39335. },
  39336. ]
  39337. ))
  39338. characterMakers.push(() => makeCharacter(
  39339. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  39340. {
  39341. front: {
  39342. height: math.unit(7 + 6/12, "feet"),
  39343. weight: math.unit(540, "lb"),
  39344. name: "Front",
  39345. image: {
  39346. source: "./media/characters/yuko/front.svg",
  39347. extra: 1282/1222,
  39348. bottom: 101/1383
  39349. }
  39350. },
  39351. frontClothed: {
  39352. height: math.unit(7 + 6/12, "feet"),
  39353. weight: math.unit(540, "lb"),
  39354. name: "Front (Clothed)",
  39355. image: {
  39356. source: "./media/characters/yuko/front-clothed.svg",
  39357. extra: 1282/1222,
  39358. bottom: 101/1383
  39359. }
  39360. },
  39361. },
  39362. [
  39363. {
  39364. name: "Normal",
  39365. height: math.unit(7 + 6/12, "feet"),
  39366. default: true
  39367. },
  39368. {
  39369. name: "Macro",
  39370. height: math.unit(26 + 9/12, "feet")
  39371. },
  39372. {
  39373. name: "Megamacro",
  39374. height: math.unit(300, "feet")
  39375. },
  39376. {
  39377. name: "Gigamacro",
  39378. height: math.unit(5000, "feet")
  39379. },
  39380. {
  39381. name: "Planetary",
  39382. height: math.unit(10000, "miles")
  39383. },
  39384. ]
  39385. ))
  39386. characterMakers.push(() => makeCharacter(
  39387. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  39388. {
  39389. front: {
  39390. height: math.unit(8 + 2/12, "feet"),
  39391. weight: math.unit(600, "lb"),
  39392. name: "Front",
  39393. image: {
  39394. source: "./media/characters/deam-nitrel/front.svg",
  39395. extra: 1308/1234,
  39396. bottom: 125/1433
  39397. }
  39398. },
  39399. },
  39400. [
  39401. {
  39402. name: "Normal",
  39403. height: math.unit(8 + 2/12, "feet"),
  39404. default: true
  39405. },
  39406. ]
  39407. ))
  39408. characterMakers.push(() => makeCharacter(
  39409. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  39410. {
  39411. front: {
  39412. height: math.unit(6.1, "feet"),
  39413. weight: math.unit(180, "lb"),
  39414. name: "Front",
  39415. image: {
  39416. source: "./media/characters/skyress/front.svg",
  39417. extra: 1045/915,
  39418. bottom: 28/1073
  39419. }
  39420. },
  39421. maw: {
  39422. height: math.unit(1, "feet"),
  39423. name: "Maw",
  39424. image: {
  39425. source: "./media/characters/skyress/maw.svg"
  39426. }
  39427. },
  39428. },
  39429. [
  39430. {
  39431. name: "Normal",
  39432. height: math.unit(6.1, "feet"),
  39433. default: true
  39434. },
  39435. {
  39436. name: "Macro",
  39437. height: math.unit(200, "feet")
  39438. },
  39439. ]
  39440. ))
  39441. characterMakers.push(() => makeCharacter(
  39442. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  39443. {
  39444. front: {
  39445. height: math.unit(4 + 2/12, "feet"),
  39446. weight: math.unit(40, "kg"),
  39447. name: "Front",
  39448. image: {
  39449. source: "./media/characters/amethyst-jones/front.svg",
  39450. extra: 1220/1150,
  39451. bottom: 101/1321
  39452. }
  39453. },
  39454. },
  39455. [
  39456. {
  39457. name: "Normal",
  39458. height: math.unit(4 + 2/12, "feet"),
  39459. default: true
  39460. },
  39461. ]
  39462. ))
  39463. characterMakers.push(() => makeCharacter(
  39464. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  39465. {
  39466. front: {
  39467. height: math.unit(1.7, "m"),
  39468. weight: math.unit(135, "lb"),
  39469. name: "Front",
  39470. image: {
  39471. source: "./media/characters/jade/front.svg",
  39472. extra: 1818/1767,
  39473. bottom: 32/1850
  39474. }
  39475. },
  39476. back: {
  39477. height: math.unit(1.7, "m"),
  39478. weight: math.unit(135, "lb"),
  39479. name: "Back",
  39480. image: {
  39481. source: "./media/characters/jade/back.svg",
  39482. extra: 1869/1809,
  39483. bottom: 35/1904
  39484. }
  39485. },
  39486. hand: {
  39487. height: math.unit(0.24, "m"),
  39488. name: "Hand",
  39489. image: {
  39490. source: "./media/characters/jade/hand.svg"
  39491. }
  39492. },
  39493. foot: {
  39494. height: math.unit(0.263, "m"),
  39495. name: "Foot",
  39496. image: {
  39497. source: "./media/characters/jade/foot.svg"
  39498. }
  39499. },
  39500. dick: {
  39501. height: math.unit(0.47, "m"),
  39502. name: "Dick",
  39503. image: {
  39504. source: "./media/characters/jade/dick.svg"
  39505. }
  39506. },
  39507. },
  39508. [
  39509. {
  39510. name: "Micro",
  39511. height: math.unit(22, "cm")
  39512. },
  39513. {
  39514. name: "Normal",
  39515. height: math.unit(1.7, "m"),
  39516. default: true
  39517. },
  39518. {
  39519. name: "Macro",
  39520. height: math.unit(152, "m")
  39521. },
  39522. ]
  39523. ))
  39524. characterMakers.push(() => makeCharacter(
  39525. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  39526. {
  39527. front: {
  39528. height: math.unit(100, "miles"),
  39529. weight: math.unit(20000, "tons"),
  39530. name: "Front",
  39531. image: {
  39532. source: "./media/characters/cookie/front.svg",
  39533. extra: 1125/1070,
  39534. bottom: 30/1155
  39535. }
  39536. },
  39537. },
  39538. [
  39539. {
  39540. name: "Big",
  39541. height: math.unit(50, "feet")
  39542. },
  39543. {
  39544. name: "Macro",
  39545. height: math.unit(100, "miles"),
  39546. default: true
  39547. },
  39548. {
  39549. name: "Megamacro",
  39550. height: math.unit(90000, "miles")
  39551. },
  39552. ]
  39553. ))
  39554. characterMakers.push(() => makeCharacter(
  39555. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  39556. {
  39557. front: {
  39558. height: math.unit(6, "feet"),
  39559. weight: math.unit(145, "lb"),
  39560. name: "Front",
  39561. image: {
  39562. source: "./media/characters/farzian/front.svg",
  39563. extra: 1902/1693,
  39564. bottom: 108/2010
  39565. }
  39566. },
  39567. },
  39568. [
  39569. {
  39570. name: "Macro",
  39571. height: math.unit(500, "feet"),
  39572. default: true
  39573. },
  39574. ]
  39575. ))
  39576. characterMakers.push(() => makeCharacter(
  39577. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  39578. {
  39579. front: {
  39580. height: math.unit(3 + 6/12, "feet"),
  39581. weight: math.unit(50, "lb"),
  39582. name: "Front",
  39583. image: {
  39584. source: "./media/characters/kimberly-tilson/front.svg",
  39585. extra: 1400/1322,
  39586. bottom: 36/1436
  39587. }
  39588. },
  39589. back: {
  39590. height: math.unit(3 + 6/12, "feet"),
  39591. weight: math.unit(50, "lb"),
  39592. name: "Back",
  39593. image: {
  39594. source: "./media/characters/kimberly-tilson/back.svg",
  39595. extra: 1370/1307,
  39596. bottom: 20/1390
  39597. }
  39598. },
  39599. },
  39600. [
  39601. {
  39602. name: "Normal",
  39603. height: math.unit(3 + 6/12, "feet"),
  39604. default: true
  39605. },
  39606. ]
  39607. ))
  39608. characterMakers.push(() => makeCharacter(
  39609. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39610. {
  39611. front: {
  39612. height: math.unit(1148, "feet"),
  39613. weight: math.unit(34057, "lb"),
  39614. name: "Front",
  39615. image: {
  39616. source: "./media/characters/harthos/front.svg",
  39617. extra: 1391/1339,
  39618. bottom: 13/1404
  39619. }
  39620. },
  39621. },
  39622. [
  39623. {
  39624. name: "Macro",
  39625. height: math.unit(1148, "feet"),
  39626. default: true
  39627. },
  39628. ]
  39629. ))
  39630. characterMakers.push(() => makeCharacter(
  39631. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39632. {
  39633. front: {
  39634. height: math.unit(15, "feet"),
  39635. name: "Front",
  39636. image: {
  39637. source: "./media/characters/hypatia/front.svg",
  39638. extra: 1653/1591,
  39639. bottom: 79/1732
  39640. }
  39641. },
  39642. },
  39643. [
  39644. {
  39645. name: "Normal",
  39646. height: math.unit(15, "feet")
  39647. },
  39648. {
  39649. name: "Small",
  39650. height: math.unit(300, "feet")
  39651. },
  39652. {
  39653. name: "Macro",
  39654. height: math.unit(2500, "feet"),
  39655. default: true
  39656. },
  39657. {
  39658. name: "Mega Macro",
  39659. height: math.unit(1500, "miles")
  39660. },
  39661. {
  39662. name: "Giga Macro",
  39663. height: math.unit(1.5e6, "miles")
  39664. },
  39665. ]
  39666. ))
  39667. characterMakers.push(() => makeCharacter(
  39668. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  39669. {
  39670. front: {
  39671. height: math.unit(6, "feet"),
  39672. weight: math.unit(200, "lb"),
  39673. name: "Front",
  39674. image: {
  39675. source: "./media/characters/wulver/front.svg",
  39676. extra: 1724/1632,
  39677. bottom: 130/1854
  39678. }
  39679. },
  39680. frontNsfw: {
  39681. height: math.unit(6, "feet"),
  39682. weight: math.unit(200, "lb"),
  39683. name: "Front (NSFW)",
  39684. image: {
  39685. source: "./media/characters/wulver/front-nsfw.svg",
  39686. extra: 1724/1632,
  39687. bottom: 130/1854
  39688. }
  39689. },
  39690. },
  39691. [
  39692. {
  39693. name: "Human-Sized",
  39694. height: math.unit(6, "feet")
  39695. },
  39696. {
  39697. name: "Normal",
  39698. height: math.unit(4, "meters"),
  39699. default: true
  39700. },
  39701. {
  39702. name: "Large",
  39703. height: math.unit(6, "m")
  39704. },
  39705. ]
  39706. ))
  39707. characterMakers.push(() => makeCharacter(
  39708. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  39709. {
  39710. front: {
  39711. height: math.unit(7, "feet"),
  39712. name: "Front",
  39713. image: {
  39714. source: "./media/characters/maru/front.svg",
  39715. extra: 1595/1570,
  39716. bottom: 0/1595
  39717. }
  39718. },
  39719. },
  39720. [
  39721. {
  39722. name: "Normal",
  39723. height: math.unit(7, "feet"),
  39724. default: true
  39725. },
  39726. {
  39727. name: "Macro",
  39728. height: math.unit(700, "feet")
  39729. },
  39730. {
  39731. name: "Mega Macro",
  39732. height: math.unit(25, "miles")
  39733. },
  39734. ]
  39735. ))
  39736. characterMakers.push(() => makeCharacter(
  39737. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  39738. {
  39739. front: {
  39740. height: math.unit(6, "feet"),
  39741. weight: math.unit(170, "lb"),
  39742. name: "Front",
  39743. image: {
  39744. source: "./media/characters/xenon/front.svg",
  39745. extra: 1376/1305,
  39746. bottom: 56/1432
  39747. }
  39748. },
  39749. back: {
  39750. height: math.unit(6, "feet"),
  39751. weight: math.unit(170, "lb"),
  39752. name: "Back",
  39753. image: {
  39754. source: "./media/characters/xenon/back.svg",
  39755. extra: 1328/1259,
  39756. bottom: 95/1423
  39757. }
  39758. },
  39759. maw: {
  39760. height: math.unit(0.52, "feet"),
  39761. name: "Maw",
  39762. image: {
  39763. source: "./media/characters/xenon/maw.svg"
  39764. }
  39765. },
  39766. hand: {
  39767. height: math.unit(0.82, "feet"),
  39768. name: "Hand",
  39769. image: {
  39770. source: "./media/characters/xenon/hand.svg"
  39771. }
  39772. },
  39773. foot: {
  39774. height: math.unit(1.13, "feet"),
  39775. name: "Foot",
  39776. image: {
  39777. source: "./media/characters/xenon/foot.svg"
  39778. }
  39779. },
  39780. },
  39781. [
  39782. {
  39783. name: "Micro",
  39784. height: math.unit(0.8, "inches")
  39785. },
  39786. {
  39787. name: "Normal",
  39788. height: math.unit(6, "feet")
  39789. },
  39790. {
  39791. name: "Macro",
  39792. height: math.unit(50, "feet"),
  39793. default: true
  39794. },
  39795. {
  39796. name: "Macro+",
  39797. height: math.unit(250, "feet")
  39798. },
  39799. {
  39800. name: "Megamacro",
  39801. height: math.unit(1500, "feet")
  39802. },
  39803. ]
  39804. ))
  39805. characterMakers.push(() => makeCharacter(
  39806. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  39807. {
  39808. front: {
  39809. height: math.unit(7 + 5/12, "feet"),
  39810. name: "Front",
  39811. image: {
  39812. source: "./media/characters/zane/front.svg",
  39813. extra: 1260/1203,
  39814. bottom: 94/1354
  39815. }
  39816. },
  39817. back: {
  39818. height: math.unit(5.05, "feet"),
  39819. name: "Back",
  39820. image: {
  39821. source: "./media/characters/zane/back.svg",
  39822. extra: 893/829,
  39823. bottom: 30/923
  39824. }
  39825. },
  39826. werewolf: {
  39827. height: math.unit(11, "feet"),
  39828. name: "Werewolf",
  39829. image: {
  39830. source: "./media/characters/zane/werewolf.svg",
  39831. extra: 1383/1323,
  39832. bottom: 89/1472
  39833. }
  39834. },
  39835. foot: {
  39836. height: math.unit(1.46, "feet"),
  39837. name: "Foot",
  39838. image: {
  39839. source: "./media/characters/zane/foot.svg"
  39840. }
  39841. },
  39842. footFront: {
  39843. height: math.unit(0.784, "feet"),
  39844. name: "Foot (Front)",
  39845. image: {
  39846. source: "./media/characters/zane/foot-front.svg"
  39847. }
  39848. },
  39849. dick: {
  39850. height: math.unit(1.95, "feet"),
  39851. name: "Dick",
  39852. image: {
  39853. source: "./media/characters/zane/dick.svg"
  39854. }
  39855. },
  39856. dickWerewolf: {
  39857. height: math.unit(3.77, "feet"),
  39858. name: "Dick (Werewolf)",
  39859. image: {
  39860. source: "./media/characters/zane/dick.svg"
  39861. }
  39862. },
  39863. },
  39864. [
  39865. {
  39866. name: "Normal",
  39867. height: math.unit(7 + 5/12, "feet"),
  39868. default: true
  39869. },
  39870. ]
  39871. ))
  39872. characterMakers.push(() => makeCharacter(
  39873. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39874. {
  39875. front: {
  39876. height: math.unit(6 + 2/12, "feet"),
  39877. weight: math.unit(284, "lb"),
  39878. name: "Front",
  39879. image: {
  39880. source: "./media/characters/benni-desparque/front.svg",
  39881. extra: 1353/1126,
  39882. bottom: 69/1422
  39883. }
  39884. },
  39885. },
  39886. [
  39887. {
  39888. name: "Civilian",
  39889. height: math.unit(6 + 2/12, "feet")
  39890. },
  39891. {
  39892. name: "Normal",
  39893. height: math.unit(98, "feet"),
  39894. default: true
  39895. },
  39896. {
  39897. name: "Kaiju Fighter",
  39898. height: math.unit(268, "feet")
  39899. },
  39900. ]
  39901. ))
  39902. characterMakers.push(() => makeCharacter(
  39903. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39904. {
  39905. front: {
  39906. height: math.unit(5, "feet"),
  39907. weight: math.unit(105, "lb"),
  39908. name: "Front",
  39909. image: {
  39910. source: "./media/characters/maxine/front.svg",
  39911. extra: 1386/1250,
  39912. bottom: 71/1457
  39913. }
  39914. },
  39915. },
  39916. [
  39917. {
  39918. name: "Normal",
  39919. height: math.unit(5, "feet"),
  39920. default: true
  39921. },
  39922. ]
  39923. ))
  39924. characterMakers.push(() => makeCharacter(
  39925. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39926. {
  39927. front: {
  39928. height: math.unit(11 + 7/12, "feet"),
  39929. weight: math.unit(9576, "lb"),
  39930. name: "Front",
  39931. image: {
  39932. source: "./media/characters/scaly/front.svg",
  39933. extra: 888/867,
  39934. bottom: 36/924
  39935. }
  39936. },
  39937. },
  39938. [
  39939. {
  39940. name: "Normal",
  39941. height: math.unit(11 + 7/12, "feet"),
  39942. default: true
  39943. },
  39944. ]
  39945. ))
  39946. characterMakers.push(() => makeCharacter(
  39947. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  39948. {
  39949. front: {
  39950. height: math.unit(6 + 3/12, "feet"),
  39951. name: "Front",
  39952. image: {
  39953. source: "./media/characters/saelria/front.svg",
  39954. extra: 1243/1138,
  39955. bottom: 46/1289
  39956. }
  39957. },
  39958. },
  39959. [
  39960. {
  39961. name: "Micro",
  39962. height: math.unit(6, "inches"),
  39963. },
  39964. {
  39965. name: "Normal",
  39966. height: math.unit(6 + 3/12, "feet"),
  39967. default: true
  39968. },
  39969. {
  39970. name: "Macro",
  39971. height: math.unit(25, "feet")
  39972. },
  39973. ]
  39974. ))
  39975. characterMakers.push(() => makeCharacter(
  39976. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39977. {
  39978. front: {
  39979. height: math.unit(80, "meters"),
  39980. weight: math.unit(7000, "tonnes"),
  39981. name: "Front",
  39982. image: {
  39983. source: "./media/characters/tef/front.svg",
  39984. extra: 2036/1991,
  39985. bottom: 54/2090
  39986. }
  39987. },
  39988. back: {
  39989. height: math.unit(80, "meters"),
  39990. weight: math.unit(7000, "tonnes"),
  39991. name: "Back",
  39992. image: {
  39993. source: "./media/characters/tef/back.svg",
  39994. extra: 2036/1991,
  39995. bottom: 54/2090
  39996. }
  39997. },
  39998. },
  39999. [
  40000. {
  40001. name: "Macro",
  40002. height: math.unit(80, "meters"),
  40003. default: true
  40004. },
  40005. ]
  40006. ))
  40007. characterMakers.push(() => makeCharacter(
  40008. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  40009. {
  40010. front: {
  40011. height: math.unit(13, "feet"),
  40012. weight: math.unit(6, "tons"),
  40013. name: "Front",
  40014. image: {
  40015. source: "./media/characters/rover/front.svg",
  40016. extra: 1233/1156,
  40017. bottom: 50/1283
  40018. }
  40019. },
  40020. back: {
  40021. height: math.unit(13, "feet"),
  40022. weight: math.unit(6, "tons"),
  40023. name: "Back",
  40024. image: {
  40025. source: "./media/characters/rover/back.svg",
  40026. extra: 1327/1258,
  40027. bottom: 39/1366
  40028. }
  40029. },
  40030. },
  40031. [
  40032. {
  40033. name: "Normal",
  40034. height: math.unit(13, "feet"),
  40035. default: true
  40036. },
  40037. {
  40038. name: "Macro",
  40039. height: math.unit(1300, "feet")
  40040. },
  40041. {
  40042. name: "Megamacro",
  40043. height: math.unit(1300, "miles")
  40044. },
  40045. {
  40046. name: "Gigamacro",
  40047. height: math.unit(1300000, "miles")
  40048. },
  40049. ]
  40050. ))
  40051. characterMakers.push(() => makeCharacter(
  40052. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  40053. {
  40054. front: {
  40055. height: math.unit(6, "feet"),
  40056. weight: math.unit(150, "lb"),
  40057. name: "Front",
  40058. image: {
  40059. source: "./media/characters/ariz/front.svg",
  40060. extra: 1401/1346,
  40061. bottom: 5/1406
  40062. }
  40063. },
  40064. },
  40065. [
  40066. {
  40067. name: "Normal",
  40068. height: math.unit(10, "feet"),
  40069. default: true
  40070. },
  40071. ]
  40072. ))
  40073. characterMakers.push(() => makeCharacter(
  40074. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  40075. {
  40076. front: {
  40077. height: math.unit(6, "feet"),
  40078. weight: math.unit(140, "lb"),
  40079. name: "Front",
  40080. image: {
  40081. source: "./media/characters/sigrun/front.svg",
  40082. extra: 1418/1359,
  40083. bottom: 27/1445
  40084. }
  40085. },
  40086. },
  40087. [
  40088. {
  40089. name: "Macro",
  40090. height: math.unit(35, "feet"),
  40091. default: true
  40092. },
  40093. ]
  40094. ))
  40095. characterMakers.push(() => makeCharacter(
  40096. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  40097. {
  40098. front: {
  40099. height: math.unit(6, "feet"),
  40100. weight: math.unit(150, "lb"),
  40101. name: "Front",
  40102. image: {
  40103. source: "./media/characters/numin/front.svg",
  40104. extra: 1433/1388,
  40105. bottom: 12/1445
  40106. }
  40107. },
  40108. },
  40109. [
  40110. {
  40111. name: "Macro",
  40112. height: math.unit(21.5, "km"),
  40113. default: true
  40114. },
  40115. ]
  40116. ))
  40117. characterMakers.push(() => makeCharacter(
  40118. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  40119. {
  40120. front: {
  40121. height: math.unit(6, "feet"),
  40122. weight: math.unit(463, "lb"),
  40123. name: "Front",
  40124. image: {
  40125. source: "./media/characters/melwa/front.svg",
  40126. extra: 1307/1248,
  40127. bottom: 93/1400
  40128. }
  40129. },
  40130. },
  40131. [
  40132. {
  40133. name: "Macro",
  40134. height: math.unit(50, "meters"),
  40135. default: true
  40136. },
  40137. ]
  40138. ))
  40139. characterMakers.push(() => makeCharacter(
  40140. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  40141. {
  40142. front: {
  40143. height: math.unit(325, "feet"),
  40144. name: "Front",
  40145. image: {
  40146. source: "./media/characters/zorkaiju/front.svg",
  40147. extra: 1955/1814,
  40148. bottom: 40/1995
  40149. }
  40150. },
  40151. frontExtended: {
  40152. height: math.unit(325, "feet"),
  40153. name: "Front (Extended)",
  40154. image: {
  40155. source: "./media/characters/zorkaiju/front-extended.svg",
  40156. extra: 1955/1814,
  40157. bottom: 40/1995
  40158. }
  40159. },
  40160. side: {
  40161. height: math.unit(325, "feet"),
  40162. name: "Side",
  40163. image: {
  40164. source: "./media/characters/zorkaiju/side.svg",
  40165. extra: 1495/1396,
  40166. bottom: 17/1512
  40167. }
  40168. },
  40169. sideExtended: {
  40170. height: math.unit(325, "feet"),
  40171. name: "Side (Extended)",
  40172. image: {
  40173. source: "./media/characters/zorkaiju/side-extended.svg",
  40174. extra: 1495/1396,
  40175. bottom: 17/1512
  40176. }
  40177. },
  40178. back: {
  40179. height: math.unit(325, "feet"),
  40180. name: "Back",
  40181. image: {
  40182. source: "./media/characters/zorkaiju/back.svg",
  40183. extra: 1959/1821,
  40184. bottom: 31/1990
  40185. }
  40186. },
  40187. backExtended: {
  40188. height: math.unit(325, "feet"),
  40189. name: "Back (Extended)",
  40190. image: {
  40191. source: "./media/characters/zorkaiju/back-extended.svg",
  40192. extra: 1959/1821,
  40193. bottom: 31/1990
  40194. }
  40195. },
  40196. hand: {
  40197. height: math.unit(58.4, "feet"),
  40198. name: "Hand",
  40199. image: {
  40200. source: "./media/characters/zorkaiju/hand.svg"
  40201. }
  40202. },
  40203. handExtended: {
  40204. height: math.unit(61.4, "feet"),
  40205. name: "Hand (Extended)",
  40206. image: {
  40207. source: "./media/characters/zorkaiju/hand-extended.svg"
  40208. }
  40209. },
  40210. foot: {
  40211. height: math.unit(95, "feet"),
  40212. name: "Foot",
  40213. image: {
  40214. source: "./media/characters/zorkaiju/foot.svg"
  40215. }
  40216. },
  40217. leftArm: {
  40218. height: math.unit(59, "feet"),
  40219. name: "Left Arm",
  40220. image: {
  40221. source: "./media/characters/zorkaiju/left-arm.svg"
  40222. }
  40223. },
  40224. rightArm: {
  40225. height: math.unit(59, "feet"),
  40226. name: "Right Arm",
  40227. image: {
  40228. source: "./media/characters/zorkaiju/right-arm.svg"
  40229. }
  40230. },
  40231. tail: {
  40232. height: math.unit(104, "feet"),
  40233. name: "Tail",
  40234. image: {
  40235. source: "./media/characters/zorkaiju/tail.svg"
  40236. }
  40237. },
  40238. tailExtended: {
  40239. height: math.unit(104, "feet"),
  40240. name: "Tail (Extended)",
  40241. image: {
  40242. source: "./media/characters/zorkaiju/tail-extended.svg"
  40243. }
  40244. },
  40245. tailBottom: {
  40246. height: math.unit(104, "feet"),
  40247. name: "Tail Bottom",
  40248. image: {
  40249. source: "./media/characters/zorkaiju/tail-bottom.svg"
  40250. }
  40251. },
  40252. crystal: {
  40253. height: math.unit(27.54, "feet"),
  40254. name: "Crystal",
  40255. image: {
  40256. source: "./media/characters/zorkaiju/crystal.svg"
  40257. }
  40258. },
  40259. },
  40260. [
  40261. {
  40262. name: "Kaiju",
  40263. height: math.unit(325, "feet"),
  40264. default: true
  40265. },
  40266. ]
  40267. ))
  40268. characterMakers.push(() => makeCharacter(
  40269. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  40270. {
  40271. front: {
  40272. height: math.unit(6 + 1/12, "feet"),
  40273. weight: math.unit(115, "lb"),
  40274. name: "Front",
  40275. image: {
  40276. source: "./media/characters/bailey-belfry/front.svg",
  40277. extra: 1240/1121,
  40278. bottom: 101/1341
  40279. }
  40280. },
  40281. },
  40282. [
  40283. {
  40284. name: "Normal",
  40285. height: math.unit(6 + 1/12, "feet"),
  40286. default: true
  40287. },
  40288. ]
  40289. ))
  40290. characterMakers.push(() => makeCharacter(
  40291. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  40292. {
  40293. side: {
  40294. height: math.unit(4, "meters"),
  40295. weight: math.unit(250, "kg"),
  40296. name: "Side",
  40297. image: {
  40298. source: "./media/characters/blacky/side.svg",
  40299. extra: 1027/919,
  40300. bottom: 43/1070
  40301. }
  40302. },
  40303. maw: {
  40304. height: math.unit(1, "meters"),
  40305. name: "Maw",
  40306. image: {
  40307. source: "./media/characters/blacky/maw.svg"
  40308. }
  40309. },
  40310. paw: {
  40311. height: math.unit(1, "meters"),
  40312. name: "Paw",
  40313. image: {
  40314. source: "./media/characters/blacky/paw.svg"
  40315. }
  40316. },
  40317. },
  40318. [
  40319. {
  40320. name: "Normal",
  40321. height: math.unit(4, "meters"),
  40322. default: true
  40323. },
  40324. ]
  40325. ))
  40326. characterMakers.push(() => makeCharacter(
  40327. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  40328. {
  40329. front: {
  40330. height: math.unit(170, "cm"),
  40331. weight: math.unit(66, "kg"),
  40332. name: "Front",
  40333. image: {
  40334. source: "./media/characters/thux-ei/front.svg",
  40335. extra: 1109/1011,
  40336. bottom: 8/1117
  40337. }
  40338. },
  40339. },
  40340. [
  40341. {
  40342. name: "Normal",
  40343. height: math.unit(170, "cm"),
  40344. default: true
  40345. },
  40346. ]
  40347. ))
  40348. characterMakers.push(() => makeCharacter(
  40349. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  40350. {
  40351. front: {
  40352. height: math.unit(5, "feet"),
  40353. weight: math.unit(120, "lb"),
  40354. name: "Front",
  40355. image: {
  40356. source: "./media/characters/roxanne-voltaire/front.svg",
  40357. extra: 1901/1779,
  40358. bottom: 53/1954
  40359. }
  40360. },
  40361. },
  40362. [
  40363. {
  40364. name: "Normal",
  40365. height: math.unit(5, "feet"),
  40366. default: true
  40367. },
  40368. {
  40369. name: "Giant",
  40370. height: math.unit(50, "feet")
  40371. },
  40372. {
  40373. name: "Titan",
  40374. height: math.unit(500, "feet")
  40375. },
  40376. {
  40377. name: "Macro",
  40378. height: math.unit(5000, "feet")
  40379. },
  40380. {
  40381. name: "Megamacro",
  40382. height: math.unit(50000, "feet")
  40383. },
  40384. {
  40385. name: "Gigamacro",
  40386. height: math.unit(500000, "feet")
  40387. },
  40388. {
  40389. name: "Teramacro",
  40390. height: math.unit(5e6, "feet")
  40391. },
  40392. ]
  40393. ))
  40394. characterMakers.push(() => makeCharacter(
  40395. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  40396. {
  40397. front: {
  40398. height: math.unit(6 + 2/12, "feet"),
  40399. name: "Front",
  40400. image: {
  40401. source: "./media/characters/squeaks/front.svg",
  40402. extra: 1823/1768,
  40403. bottom: 138/1961
  40404. }
  40405. },
  40406. },
  40407. [
  40408. {
  40409. name: "Micro",
  40410. height: math.unit(0.5, "inches")
  40411. },
  40412. {
  40413. name: "Normal",
  40414. height: math.unit(6 + 2/12, "feet"),
  40415. default: true
  40416. },
  40417. {
  40418. name: "Macro",
  40419. height: math.unit(600, "feet")
  40420. },
  40421. ]
  40422. ))
  40423. characterMakers.push(() => makeCharacter(
  40424. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  40425. {
  40426. front: {
  40427. height: math.unit(1.72, "meters"),
  40428. name: "Front",
  40429. image: {
  40430. source: "./media/characters/archinger/front.svg",
  40431. extra: 1861/1675,
  40432. bottom: 125/1986
  40433. }
  40434. },
  40435. back: {
  40436. height: math.unit(1.72, "meters"),
  40437. name: "Back",
  40438. image: {
  40439. source: "./media/characters/archinger/back.svg",
  40440. extra: 1844/1701,
  40441. bottom: 104/1948
  40442. }
  40443. },
  40444. cock: {
  40445. height: math.unit(0.59, "feet"),
  40446. name: "Cock",
  40447. image: {
  40448. source: "./media/characters/archinger/cock.svg"
  40449. }
  40450. },
  40451. },
  40452. [
  40453. {
  40454. name: "Normal",
  40455. height: math.unit(1.72, "meters"),
  40456. default: true
  40457. },
  40458. {
  40459. name: "Macro",
  40460. height: math.unit(84, "meters")
  40461. },
  40462. {
  40463. name: "Macro+",
  40464. height: math.unit(112, "meters")
  40465. },
  40466. {
  40467. name: "Macro++",
  40468. height: math.unit(960, "meters")
  40469. },
  40470. {
  40471. name: "Macro+++",
  40472. height: math.unit(4, "km")
  40473. },
  40474. {
  40475. name: "Macro++++",
  40476. height: math.unit(48, "km")
  40477. },
  40478. {
  40479. name: "Macro+++++",
  40480. height: math.unit(4500, "km")
  40481. },
  40482. ]
  40483. ))
  40484. characterMakers.push(() => makeCharacter(
  40485. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  40486. {
  40487. front: {
  40488. height: math.unit(5 + 5/12, "feet"),
  40489. name: "Front",
  40490. image: {
  40491. source: "./media/characters/alsnapz/front.svg",
  40492. extra: 1157/1065,
  40493. bottom: 42/1199
  40494. }
  40495. },
  40496. },
  40497. [
  40498. {
  40499. name: "Normal",
  40500. height: math.unit(5 + 5/12, "feet"),
  40501. default: true
  40502. },
  40503. ]
  40504. ))
  40505. characterMakers.push(() => makeCharacter(
  40506. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  40507. {
  40508. side: {
  40509. height: math.unit(3.2, "earths"),
  40510. name: "Side",
  40511. image: {
  40512. source: "./media/characters/mag/side.svg",
  40513. extra: 1331/1008,
  40514. bottom: 52/1383
  40515. }
  40516. },
  40517. wing: {
  40518. height: math.unit(1.94, "earths"),
  40519. name: "Wing",
  40520. image: {
  40521. source: "./media/characters/mag/wing.svg"
  40522. }
  40523. },
  40524. dick: {
  40525. height: math.unit(1.8, "earths"),
  40526. name: "Dick",
  40527. image: {
  40528. source: "./media/characters/mag/dick.svg"
  40529. }
  40530. },
  40531. ass: {
  40532. height: math.unit(1.33, "earths"),
  40533. name: "Ass",
  40534. image: {
  40535. source: "./media/characters/mag/ass.svg"
  40536. }
  40537. },
  40538. head: {
  40539. height: math.unit(1.1, "earths"),
  40540. name: "Head",
  40541. image: {
  40542. source: "./media/characters/mag/head.svg"
  40543. }
  40544. },
  40545. maw: {
  40546. height: math.unit(1.62, "earths"),
  40547. name: "Maw",
  40548. image: {
  40549. source: "./media/characters/mag/maw.svg"
  40550. }
  40551. },
  40552. },
  40553. [
  40554. {
  40555. name: "Small",
  40556. height: math.unit(162, "feet")
  40557. },
  40558. {
  40559. name: "Normal",
  40560. height: math.unit(3.2, "earths"),
  40561. default: true
  40562. },
  40563. ]
  40564. ))
  40565. characterMakers.push(() => makeCharacter(
  40566. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  40567. {
  40568. front: {
  40569. height: math.unit(512, "feet"),
  40570. weight: math.unit(63509, "tonnes"),
  40571. name: "Front",
  40572. image: {
  40573. source: "./media/characters/vorrel-harroc/front.svg",
  40574. extra: 1075/1063,
  40575. bottom: 62/1137
  40576. }
  40577. },
  40578. },
  40579. [
  40580. {
  40581. name: "Normal",
  40582. height: math.unit(10, "feet")
  40583. },
  40584. {
  40585. name: "Macro",
  40586. height: math.unit(512, "feet"),
  40587. default: true
  40588. },
  40589. {
  40590. name: "Megamacro",
  40591. height: math.unit(256, "miles")
  40592. },
  40593. {
  40594. name: "Gigamacro",
  40595. height: math.unit(4096, "miles")
  40596. },
  40597. ]
  40598. ))
  40599. characterMakers.push(() => makeCharacter(
  40600. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40601. {
  40602. side: {
  40603. height: math.unit(50, "feet"),
  40604. name: "Side",
  40605. image: {
  40606. source: "./media/characters/froimar/side.svg",
  40607. extra: 855/638,
  40608. bottom: 99/954
  40609. }
  40610. },
  40611. },
  40612. [
  40613. {
  40614. name: "Macro",
  40615. height: math.unit(50, "feet"),
  40616. default: true
  40617. },
  40618. ]
  40619. ))
  40620. characterMakers.push(() => makeCharacter(
  40621. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40622. {
  40623. front: {
  40624. height: math.unit(210, "miles"),
  40625. name: "Front",
  40626. image: {
  40627. source: "./media/characters/timothy/front.svg",
  40628. extra: 1007/943,
  40629. bottom: 62/1069
  40630. }
  40631. },
  40632. frontSkirt: {
  40633. height: math.unit(210, "miles"),
  40634. name: "Front (Skirt)",
  40635. image: {
  40636. source: "./media/characters/timothy/front-skirt.svg",
  40637. extra: 1007/943,
  40638. bottom: 62/1069
  40639. }
  40640. },
  40641. frontCoat: {
  40642. height: math.unit(210, "miles"),
  40643. name: "Front (Coat)",
  40644. image: {
  40645. source: "./media/characters/timothy/front-coat.svg",
  40646. extra: 1007/943,
  40647. bottom: 62/1069
  40648. }
  40649. },
  40650. },
  40651. [
  40652. {
  40653. name: "Macro",
  40654. height: math.unit(210, "miles"),
  40655. default: true
  40656. },
  40657. {
  40658. name: "Megamacro",
  40659. height: math.unit(210000, "miles")
  40660. },
  40661. ]
  40662. ))
  40663. characterMakers.push(() => makeCharacter(
  40664. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  40665. {
  40666. front: {
  40667. height: math.unit(188, "feet"),
  40668. name: "Front",
  40669. image: {
  40670. source: "./media/characters/pyotr/front.svg",
  40671. extra: 1912/1826,
  40672. bottom: 18/1930
  40673. }
  40674. },
  40675. },
  40676. [
  40677. {
  40678. name: "Macro",
  40679. height: math.unit(188, "feet"),
  40680. default: true
  40681. },
  40682. {
  40683. name: "Megamacro",
  40684. height: math.unit(8, "miles")
  40685. },
  40686. ]
  40687. ))
  40688. characterMakers.push(() => makeCharacter(
  40689. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  40690. {
  40691. side: {
  40692. height: math.unit(10, "feet"),
  40693. weight: math.unit(4500, "lb"),
  40694. name: "Side",
  40695. image: {
  40696. source: "./media/characters/ackart/side.svg",
  40697. extra: 1776/1668,
  40698. bottom: 116/1892
  40699. }
  40700. },
  40701. },
  40702. [
  40703. {
  40704. name: "Normal",
  40705. height: math.unit(10, "feet"),
  40706. default: true
  40707. },
  40708. ]
  40709. ))
  40710. characterMakers.push(() => makeCharacter(
  40711. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  40712. {
  40713. side: {
  40714. height: math.unit(21, "feet"),
  40715. name: "Side",
  40716. image: {
  40717. source: "./media/characters/nolow/side.svg",
  40718. extra: 1484/1434,
  40719. bottom: 85/1569
  40720. }
  40721. },
  40722. sideErect: {
  40723. height: math.unit(21, "feet"),
  40724. name: "Side-erect",
  40725. image: {
  40726. source: "./media/characters/nolow/side-erect.svg",
  40727. extra: 1484/1434,
  40728. bottom: 85/1569
  40729. }
  40730. },
  40731. },
  40732. [
  40733. {
  40734. name: "Regular",
  40735. height: math.unit(12, "feet")
  40736. },
  40737. {
  40738. name: "Big Chee",
  40739. height: math.unit(21, "feet"),
  40740. default: true
  40741. },
  40742. ]
  40743. ))
  40744. characterMakers.push(() => makeCharacter(
  40745. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  40746. {
  40747. front: {
  40748. height: math.unit(7, "feet"),
  40749. weight: math.unit(250, "lb"),
  40750. name: "Front",
  40751. image: {
  40752. source: "./media/characters/nines/front.svg",
  40753. extra: 1741/1607,
  40754. bottom: 41/1782
  40755. }
  40756. },
  40757. side: {
  40758. height: math.unit(7, "feet"),
  40759. weight: math.unit(250, "lb"),
  40760. name: "Side",
  40761. image: {
  40762. source: "./media/characters/nines/side.svg",
  40763. extra: 1854/1735,
  40764. bottom: 93/1947
  40765. }
  40766. },
  40767. back: {
  40768. height: math.unit(7, "feet"),
  40769. weight: math.unit(250, "lb"),
  40770. name: "Back",
  40771. image: {
  40772. source: "./media/characters/nines/back.svg",
  40773. extra: 1748/1615,
  40774. bottom: 20/1768
  40775. }
  40776. },
  40777. },
  40778. [
  40779. {
  40780. name: "Megamacro",
  40781. height: math.unit(99, "km"),
  40782. default: true
  40783. },
  40784. ]
  40785. ))
  40786. characterMakers.push(() => makeCharacter(
  40787. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  40788. {
  40789. front: {
  40790. height: math.unit(5 + 10/12, "feet"),
  40791. weight: math.unit(210, "lb"),
  40792. name: "Front",
  40793. image: {
  40794. source: "./media/characters/zenith/front.svg",
  40795. extra: 1531/1452,
  40796. bottom: 198/1729
  40797. }
  40798. },
  40799. back: {
  40800. height: math.unit(5 + 10/12, "feet"),
  40801. weight: math.unit(210, "lb"),
  40802. name: "Back",
  40803. image: {
  40804. source: "./media/characters/zenith/back.svg",
  40805. extra: 1571/1487,
  40806. bottom: 75/1646
  40807. }
  40808. },
  40809. },
  40810. [
  40811. {
  40812. name: "Normal",
  40813. height: math.unit(5 + 10/12, "feet"),
  40814. default: true
  40815. }
  40816. ]
  40817. ))
  40818. characterMakers.push(() => makeCharacter(
  40819. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  40820. {
  40821. front: {
  40822. height: math.unit(4, "feet"),
  40823. weight: math.unit(60, "lb"),
  40824. name: "Front",
  40825. image: {
  40826. source: "./media/characters/jasper/front.svg",
  40827. extra: 1450/1379,
  40828. bottom: 19/1469
  40829. }
  40830. },
  40831. },
  40832. [
  40833. {
  40834. name: "Normal",
  40835. height: math.unit(4, "feet"),
  40836. default: true
  40837. },
  40838. ]
  40839. ))
  40840. characterMakers.push(() => makeCharacter(
  40841. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40842. {
  40843. front: {
  40844. height: math.unit(6 + 5/12, "feet"),
  40845. weight: math.unit(290, "lb"),
  40846. name: "Front",
  40847. image: {
  40848. source: "./media/characters/tiberius-thyben/front.svg",
  40849. extra: 757/739,
  40850. bottom: 39/796
  40851. }
  40852. },
  40853. },
  40854. [
  40855. {
  40856. name: "Micro",
  40857. height: math.unit(1.5, "inches")
  40858. },
  40859. {
  40860. name: "Normal",
  40861. height: math.unit(6 + 5/12, "feet"),
  40862. default: true
  40863. },
  40864. {
  40865. name: "Macro",
  40866. height: math.unit(300, "feet")
  40867. },
  40868. ]
  40869. ))
  40870. characterMakers.push(() => makeCharacter(
  40871. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40872. {
  40873. front: {
  40874. height: math.unit(5 + 6/12, "feet"),
  40875. weight: math.unit(60, "kg"),
  40876. name: "Front",
  40877. image: {
  40878. source: "./media/characters/sabre/front.svg",
  40879. extra: 738/671,
  40880. bottom: 27/765
  40881. }
  40882. },
  40883. },
  40884. [
  40885. {
  40886. name: "Teeny",
  40887. height: math.unit(2, "inches")
  40888. },
  40889. {
  40890. name: "Smol",
  40891. height: math.unit(8, "inches")
  40892. },
  40893. {
  40894. name: "Normal",
  40895. height: math.unit(5 + 6/12, "feet"),
  40896. default: true
  40897. },
  40898. {
  40899. name: "Mini-Macro",
  40900. height: math.unit(15, "feet")
  40901. },
  40902. {
  40903. name: "Macro",
  40904. height: math.unit(50, "feet")
  40905. },
  40906. ]
  40907. ))
  40908. characterMakers.push(() => makeCharacter(
  40909. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40910. {
  40911. front: {
  40912. height: math.unit(6 + 4/12, "feet"),
  40913. weight: math.unit(170, "lb"),
  40914. name: "Front",
  40915. image: {
  40916. source: "./media/characters/charlie/front.svg",
  40917. extra: 1348/1228,
  40918. bottom: 15/1363
  40919. }
  40920. },
  40921. },
  40922. [
  40923. {
  40924. name: "Macro",
  40925. height: math.unit(1700, "meters"),
  40926. default: true
  40927. },
  40928. {
  40929. name: "MegaMacro",
  40930. height: math.unit(20400, "meters")
  40931. },
  40932. ]
  40933. ))
  40934. characterMakers.push(() => makeCharacter(
  40935. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40936. {
  40937. front: {
  40938. height: math.unit(6 + 3/12, "feet"),
  40939. weight: math.unit(185, "lb"),
  40940. name: "Front",
  40941. image: {
  40942. source: "./media/characters/susan-grant/front.svg",
  40943. extra: 1351/1327,
  40944. bottom: 26/1377
  40945. }
  40946. },
  40947. },
  40948. [
  40949. {
  40950. name: "Normal",
  40951. height: math.unit(6 + 3/12, "feet"),
  40952. default: true
  40953. },
  40954. {
  40955. name: "Macro",
  40956. height: math.unit(225, "feet")
  40957. },
  40958. {
  40959. name: "Macro+",
  40960. height: math.unit(900, "feet")
  40961. },
  40962. {
  40963. name: "MegaMacro",
  40964. height: math.unit(14400, "feet")
  40965. },
  40966. ]
  40967. ))
  40968. characterMakers.push(() => makeCharacter(
  40969. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40970. {
  40971. front: {
  40972. height: math.unit(5 + 4/12, "feet"),
  40973. weight: math.unit(110, "lb"),
  40974. name: "Front",
  40975. image: {
  40976. source: "./media/characters/axel-isanov/front.svg",
  40977. extra: 1096/1065,
  40978. bottom: 13/1109
  40979. }
  40980. },
  40981. },
  40982. [
  40983. {
  40984. name: "Normal",
  40985. height: math.unit(5 + 4/12, "feet"),
  40986. default: true
  40987. },
  40988. ]
  40989. ))
  40990. characterMakers.push(() => makeCharacter(
  40991. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40992. {
  40993. front: {
  40994. height: math.unit(9, "feet"),
  40995. weight: math.unit(467, "lb"),
  40996. name: "Front",
  40997. image: {
  40998. source: "./media/characters/necahual/front.svg",
  40999. extra: 920/873,
  41000. bottom: 26/946
  41001. }
  41002. },
  41003. back: {
  41004. height: math.unit(9, "feet"),
  41005. weight: math.unit(467, "lb"),
  41006. name: "Back",
  41007. image: {
  41008. source: "./media/characters/necahual/back.svg",
  41009. extra: 930/884,
  41010. bottom: 16/946
  41011. }
  41012. },
  41013. frontUnderwear: {
  41014. height: math.unit(9, "feet"),
  41015. weight: math.unit(467, "lb"),
  41016. name: "Front (Underwear)",
  41017. image: {
  41018. source: "./media/characters/necahual/front-underwear.svg",
  41019. extra: 920/873,
  41020. bottom: 26/946
  41021. }
  41022. },
  41023. frontDressed: {
  41024. height: math.unit(9, "feet"),
  41025. weight: math.unit(467, "lb"),
  41026. name: "Front (Dressed)",
  41027. image: {
  41028. source: "./media/characters/necahual/front-dressed.svg",
  41029. extra: 920/873,
  41030. bottom: 26/946
  41031. }
  41032. },
  41033. },
  41034. [
  41035. {
  41036. name: "Comprsesed",
  41037. height: math.unit(9, "feet")
  41038. },
  41039. {
  41040. name: "Natural",
  41041. height: math.unit(15, "feet"),
  41042. default: true
  41043. },
  41044. {
  41045. name: "Boosted",
  41046. height: math.unit(50, "feet")
  41047. },
  41048. {
  41049. name: "Boosted+",
  41050. height: math.unit(150, "feet")
  41051. },
  41052. {
  41053. name: "Max",
  41054. height: math.unit(500, "feet")
  41055. },
  41056. ]
  41057. ))
  41058. characterMakers.push(() => makeCharacter(
  41059. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  41060. {
  41061. front: {
  41062. height: math.unit(22 + 1/12, "feet"),
  41063. weight: math.unit(3200, "lb"),
  41064. name: "Front",
  41065. image: {
  41066. source: "./media/characters/theo-acacia/front.svg",
  41067. extra: 1796/1741,
  41068. bottom: 83/1879
  41069. }
  41070. },
  41071. frontUnderwear: {
  41072. height: math.unit(22 + 1/12, "feet"),
  41073. weight: math.unit(3200, "lb"),
  41074. name: "Front (Underwear)",
  41075. image: {
  41076. source: "./media/characters/theo-acacia/front-underwear.svg",
  41077. extra: 1796/1741,
  41078. bottom: 83/1879
  41079. }
  41080. },
  41081. frontNude: {
  41082. height: math.unit(22 + 1/12, "feet"),
  41083. weight: math.unit(3200, "lb"),
  41084. name: "Front (Nude)",
  41085. image: {
  41086. source: "./media/characters/theo-acacia/front-nude.svg",
  41087. extra: 1796/1741,
  41088. bottom: 83/1879
  41089. }
  41090. },
  41091. },
  41092. [
  41093. {
  41094. name: "Normal",
  41095. height: math.unit(22 + 1/12, "feet"),
  41096. default: true
  41097. },
  41098. ]
  41099. ))
  41100. characterMakers.push(() => makeCharacter(
  41101. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41102. {
  41103. front: {
  41104. height: math.unit(20, "feet"),
  41105. name: "Front",
  41106. image: {
  41107. source: "./media/characters/astra/front.svg",
  41108. extra: 1850/1714,
  41109. bottom: 106/1956
  41110. }
  41111. },
  41112. frontUndressed: {
  41113. height: math.unit(20, "feet"),
  41114. name: "Front (Undressed)",
  41115. image: {
  41116. source: "./media/characters/astra/front-undressed.svg",
  41117. extra: 1926/1749,
  41118. bottom: 0/1926
  41119. }
  41120. },
  41121. hand: {
  41122. height: math.unit(1.53, "feet"),
  41123. name: "Hand",
  41124. image: {
  41125. source: "./media/characters/astra/hand.svg"
  41126. }
  41127. },
  41128. paw: {
  41129. height: math.unit(1.53, "feet"),
  41130. name: "Paw",
  41131. image: {
  41132. source: "./media/characters/astra/paw.svg"
  41133. }
  41134. },
  41135. },
  41136. [
  41137. {
  41138. name: "Smallest",
  41139. height: math.unit(20, "feet")
  41140. },
  41141. {
  41142. name: "Normal",
  41143. height: math.unit(1e9, "miles"),
  41144. default: true
  41145. },
  41146. {
  41147. name: "Larger",
  41148. height: math.unit(5, "multiverses")
  41149. },
  41150. {
  41151. name: "Largest",
  41152. height: math.unit(1e9, "multiverses")
  41153. },
  41154. ]
  41155. ))
  41156. characterMakers.push(() => makeCharacter(
  41157. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41158. {
  41159. front: {
  41160. height: math.unit(8, "feet"),
  41161. name: "Front",
  41162. image: {
  41163. source: "./media/characters/breanna/front.svg",
  41164. extra: 1912/1632,
  41165. bottom: 33/1945
  41166. }
  41167. },
  41168. },
  41169. [
  41170. {
  41171. name: "Smallest",
  41172. height: math.unit(8, "feet")
  41173. },
  41174. {
  41175. name: "Normal",
  41176. height: math.unit(1, "mile"),
  41177. default: true
  41178. },
  41179. {
  41180. name: "Maximum",
  41181. height: math.unit(1500000000000, "lightyears")
  41182. },
  41183. ]
  41184. ))
  41185. characterMakers.push(() => makeCharacter(
  41186. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  41187. {
  41188. front: {
  41189. height: math.unit(5 + 11/12, "feet"),
  41190. weight: math.unit(155, "lb"),
  41191. name: "Front",
  41192. image: {
  41193. source: "./media/characters/cai/front.svg",
  41194. extra: 1823/1702,
  41195. bottom: 32/1855
  41196. }
  41197. },
  41198. back: {
  41199. height: math.unit(5 + 11/12, "feet"),
  41200. weight: math.unit(155, "lb"),
  41201. name: "Back",
  41202. image: {
  41203. source: "./media/characters/cai/back.svg",
  41204. extra: 1809/1708,
  41205. bottom: 31/1840
  41206. }
  41207. },
  41208. },
  41209. [
  41210. {
  41211. name: "Normal",
  41212. height: math.unit(5 + 11/12, "feet"),
  41213. default: true
  41214. },
  41215. {
  41216. name: "Big",
  41217. height: math.unit(15, "feet")
  41218. },
  41219. {
  41220. name: "Macro",
  41221. height: math.unit(200, "feet")
  41222. },
  41223. ]
  41224. ))
  41225. characterMakers.push(() => makeCharacter(
  41226. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  41227. {
  41228. front: {
  41229. height: math.unit(5 + 6/12, "feet"),
  41230. weight: math.unit(160, "lb"),
  41231. name: "Front",
  41232. image: {
  41233. source: "./media/characters/zanna-virtuedòttir/front.svg",
  41234. extra: 1227/1174,
  41235. bottom: 37/1264
  41236. }
  41237. },
  41238. },
  41239. [
  41240. {
  41241. name: "Macro",
  41242. height: math.unit(444, "meters"),
  41243. default: true
  41244. },
  41245. ]
  41246. ))
  41247. characterMakers.push(() => makeCharacter(
  41248. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  41249. {
  41250. front: {
  41251. height: math.unit(18 + 7/12, "feet"),
  41252. name: "Front",
  41253. image: {
  41254. source: "./media/characters/rex/front.svg",
  41255. extra: 1941/1807,
  41256. bottom: 66/2007
  41257. }
  41258. },
  41259. back: {
  41260. height: math.unit(18 + 7/12, "feet"),
  41261. name: "Back",
  41262. image: {
  41263. source: "./media/characters/rex/back.svg",
  41264. extra: 1937/1822,
  41265. bottom: 42/1979
  41266. }
  41267. },
  41268. boot: {
  41269. height: math.unit(3.45, "feet"),
  41270. name: "Boot",
  41271. image: {
  41272. source: "./media/characters/rex/boot.svg"
  41273. }
  41274. },
  41275. paw: {
  41276. height: math.unit(4.17, "feet"),
  41277. name: "Paw",
  41278. image: {
  41279. source: "./media/characters/rex/paw.svg"
  41280. }
  41281. },
  41282. head: {
  41283. height: math.unit(6.728, "feet"),
  41284. name: "Head",
  41285. image: {
  41286. source: "./media/characters/rex/head.svg"
  41287. }
  41288. },
  41289. },
  41290. [
  41291. {
  41292. name: "Nano",
  41293. height: math.unit(18 + 7/12, "feet")
  41294. },
  41295. {
  41296. name: "Micro",
  41297. height: math.unit(1.5, "megameters")
  41298. },
  41299. {
  41300. name: "Normal",
  41301. height: math.unit(440, "megameters"),
  41302. default: true
  41303. },
  41304. {
  41305. name: "Macro",
  41306. height: math.unit(2.5, "gigameters")
  41307. },
  41308. {
  41309. name: "Gigamacro",
  41310. height: math.unit(2, "galaxies")
  41311. },
  41312. ]
  41313. ))
  41314. characterMakers.push(() => makeCharacter(
  41315. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  41316. {
  41317. side: {
  41318. height: math.unit(32, "feet"),
  41319. weight: math.unit(250000, "lb"),
  41320. name: "Side",
  41321. image: {
  41322. source: "./media/characters/silverwing/side.svg",
  41323. extra: 1100/1019,
  41324. bottom: 204/1304
  41325. }
  41326. },
  41327. },
  41328. [
  41329. {
  41330. name: "Normal",
  41331. height: math.unit(32, "feet"),
  41332. default: true
  41333. },
  41334. ]
  41335. ))
  41336. characterMakers.push(() => makeCharacter(
  41337. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  41338. {
  41339. front: {
  41340. height: math.unit(6 + 6/12, "feet"),
  41341. weight: math.unit(350, "lb"),
  41342. name: "Front",
  41343. image: {
  41344. source: "./media/characters/tristan-hawthorne/front.svg",
  41345. extra: 1159/1124,
  41346. bottom: 37/1196
  41347. }
  41348. },
  41349. },
  41350. [
  41351. {
  41352. name: "Normal",
  41353. height: math.unit(6 + 6/12, "feet"),
  41354. default: true
  41355. },
  41356. ]
  41357. ))
  41358. characterMakers.push(() => makeCharacter(
  41359. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  41360. {
  41361. front: {
  41362. height: math.unit(5 + 11/12, "feet"),
  41363. weight: math.unit(190, "lb"),
  41364. name: "Front",
  41365. image: {
  41366. source: "./media/characters/mizu/front.svg",
  41367. extra: 1988/1788,
  41368. bottom: 14/2002
  41369. }
  41370. },
  41371. },
  41372. [
  41373. {
  41374. name: "Normal",
  41375. height: math.unit(5 + 11/12, "feet"),
  41376. default: true
  41377. },
  41378. ]
  41379. ))
  41380. characterMakers.push(() => makeCharacter(
  41381. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  41382. {
  41383. front: {
  41384. height: math.unit(6, "feet"),
  41385. name: "Front",
  41386. image: {
  41387. source: "./media/characters/moonlight-rose-terra/front.svg",
  41388. extra: 1434/1252,
  41389. bottom: 48/1482
  41390. }
  41391. },
  41392. },
  41393. [
  41394. {
  41395. name: "TRAPPIST-1D",
  41396. height: math.unit(4992*2, "km")
  41397. },
  41398. {
  41399. name: "Earth",
  41400. height: math.unit(6367*2, "km"),
  41401. default: true
  41402. },
  41403. {
  41404. name: "Kepler-22b",
  41405. height: math.unit(15282*2, "km")
  41406. },
  41407. ]
  41408. ))
  41409. characterMakers.push(() => makeCharacter(
  41410. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  41411. {
  41412. front: {
  41413. height: math.unit(6, "feet"),
  41414. name: "Front",
  41415. image: {
  41416. source: "./media/characters/moonlight-rose-neptune/front.svg",
  41417. extra: 1851/1712,
  41418. bottom: 0/1851
  41419. }
  41420. },
  41421. },
  41422. [
  41423. {
  41424. name: "Enceladus",
  41425. height: math.unit(513*2, "km")
  41426. },
  41427. {
  41428. name: "Europe",
  41429. height: math.unit(1560*2, "km")
  41430. },
  41431. {
  41432. name: "Neptune",
  41433. height: math.unit(24622*2, "km"),
  41434. default: true
  41435. },
  41436. {
  41437. name: "CoRoT-9b",
  41438. height: math.unit(75067*2, "km")
  41439. },
  41440. ]
  41441. ))
  41442. characterMakers.push(() => makeCharacter(
  41443. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  41444. {
  41445. front: {
  41446. height: math.unit(6, "feet"),
  41447. name: "Front",
  41448. image: {
  41449. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  41450. extra: 1367/1286,
  41451. bottom: 55/1422
  41452. }
  41453. },
  41454. },
  41455. [
  41456. {
  41457. name: "Saturn",
  41458. height: math.unit(58232*2, "km")
  41459. },
  41460. {
  41461. name: "Jupiter",
  41462. height: math.unit(69911*2, "km"),
  41463. default: true
  41464. },
  41465. {
  41466. name: "HD 100546 b",
  41467. height: math.unit(482938, "km")
  41468. },
  41469. ]
  41470. ))
  41471. characterMakers.push(() => makeCharacter(
  41472. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  41473. {
  41474. front: {
  41475. height: math.unit(1.7, "feet"),
  41476. weight: math.unit(50, "lb"),
  41477. name: "Front",
  41478. image: {
  41479. source: "./media/characters/dechroma/front.svg",
  41480. extra: 1095/859,
  41481. bottom: 64/1159
  41482. }
  41483. },
  41484. },
  41485. [
  41486. {
  41487. name: "Normal",
  41488. height: math.unit(1.7, "feet"),
  41489. default: true
  41490. },
  41491. ]
  41492. ))
  41493. characterMakers.push(() => makeCharacter(
  41494. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  41495. {
  41496. side: {
  41497. height: math.unit(30, "feet"),
  41498. name: "Side",
  41499. image: {
  41500. source: "./media/characters/veluren-thanazel/side.svg",
  41501. extra: 1611/633,
  41502. bottom: 118/1729
  41503. }
  41504. },
  41505. front: {
  41506. height: math.unit(30, "feet"),
  41507. name: "Front",
  41508. image: {
  41509. source: "./media/characters/veluren-thanazel/front.svg",
  41510. extra: 1486/636,
  41511. bottom: 238/1724
  41512. }
  41513. },
  41514. head: {
  41515. height: math.unit(21.4, "feet"),
  41516. name: "Head",
  41517. image: {
  41518. source: "./media/characters/veluren-thanazel/head.svg"
  41519. }
  41520. },
  41521. genitals: {
  41522. height: math.unit(19.4, "feet"),
  41523. name: "Genitals",
  41524. image: {
  41525. source: "./media/characters/veluren-thanazel/genitals.svg"
  41526. }
  41527. },
  41528. },
  41529. [
  41530. {
  41531. name: "Social",
  41532. height: math.unit(6, "feet")
  41533. },
  41534. {
  41535. name: "Play",
  41536. height: math.unit(12, "feet")
  41537. },
  41538. {
  41539. name: "True",
  41540. height: math.unit(30, "feet"),
  41541. default: true
  41542. },
  41543. ]
  41544. ))
  41545. characterMakers.push(() => makeCharacter(
  41546. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  41547. {
  41548. front: {
  41549. height: math.unit(7 + 6/12, "feet"),
  41550. weight: math.unit(500, "kg"),
  41551. name: "Front",
  41552. image: {
  41553. source: "./media/characters/arcturas/front.svg",
  41554. extra: 1700/1500,
  41555. bottom: 145/1845
  41556. }
  41557. },
  41558. },
  41559. [
  41560. {
  41561. name: "Normal",
  41562. height: math.unit(7 + 6/12, "feet"),
  41563. default: true
  41564. },
  41565. ]
  41566. ))
  41567. characterMakers.push(() => makeCharacter(
  41568. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41569. {
  41570. side: {
  41571. height: math.unit(6, "feet"),
  41572. weight: math.unit(2, "tons"),
  41573. name: "Side",
  41574. image: {
  41575. source: "./media/characters/vitaen/side.svg",
  41576. extra: 1157/617,
  41577. bottom: 122/1279
  41578. }
  41579. },
  41580. },
  41581. [
  41582. {
  41583. name: "Normal",
  41584. height: math.unit(6, "feet"),
  41585. default: true
  41586. },
  41587. ]
  41588. ))
  41589. characterMakers.push(() => makeCharacter(
  41590. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41591. {
  41592. front: {
  41593. height: math.unit(19, "feet"),
  41594. name: "Front",
  41595. image: {
  41596. source: "./media/characters/fia-dreamweaver/front.svg",
  41597. extra: 1630/1504,
  41598. bottom: 25/1655
  41599. }
  41600. },
  41601. },
  41602. [
  41603. {
  41604. name: "Normal",
  41605. height: math.unit(19, "feet"),
  41606. default: true
  41607. },
  41608. ]
  41609. ))
  41610. characterMakers.push(() => makeCharacter(
  41611. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41612. {
  41613. front: {
  41614. height: math.unit(5 + 4/12, "feet"),
  41615. name: "Front",
  41616. image: {
  41617. source: "./media/characters/artan/front.svg",
  41618. extra: 1618/1535,
  41619. bottom: 46/1664
  41620. }
  41621. },
  41622. back: {
  41623. height: math.unit(5 + 4/12, "feet"),
  41624. name: "Back",
  41625. image: {
  41626. source: "./media/characters/artan/back.svg",
  41627. extra: 1618/1543,
  41628. bottom: 31/1649
  41629. }
  41630. },
  41631. },
  41632. [
  41633. {
  41634. name: "Normal",
  41635. height: math.unit(5 + 4/12, "feet"),
  41636. default: true
  41637. },
  41638. ]
  41639. ))
  41640. characterMakers.push(() => makeCharacter(
  41641. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41642. {
  41643. side: {
  41644. height: math.unit(182, "cm"),
  41645. weight: math.unit(1000, "lb"),
  41646. name: "Side",
  41647. image: {
  41648. source: "./media/characters/silver-dragon/side.svg",
  41649. extra: 710/287,
  41650. bottom: 88/798
  41651. }
  41652. },
  41653. },
  41654. [
  41655. {
  41656. name: "Normal",
  41657. height: math.unit(182, "cm"),
  41658. default: true
  41659. },
  41660. ]
  41661. ))
  41662. characterMakers.push(() => makeCharacter(
  41663. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41664. {
  41665. side: {
  41666. height: math.unit(6 + 6/12, "feet"),
  41667. weight: math.unit(1.5, "tons"),
  41668. name: "Side",
  41669. image: {
  41670. source: "./media/characters/zephyr/side.svg",
  41671. extra: 1433/586,
  41672. bottom: 109/1542
  41673. }
  41674. },
  41675. },
  41676. [
  41677. {
  41678. name: "Normal",
  41679. height: math.unit(6 + 6/12, "feet"),
  41680. default: true
  41681. },
  41682. ]
  41683. ))
  41684. characterMakers.push(() => makeCharacter(
  41685. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41686. {
  41687. side: {
  41688. height: math.unit(1, "feet"),
  41689. name: "Side",
  41690. image: {
  41691. source: "./media/characters/vixye/side.svg",
  41692. extra: 632/541,
  41693. bottom: 0/632
  41694. }
  41695. },
  41696. },
  41697. [
  41698. {
  41699. name: "Normal",
  41700. height: math.unit(1, "feet"),
  41701. default: true
  41702. },
  41703. {
  41704. name: "True",
  41705. height: math.unit(1e15, "multiverses")
  41706. },
  41707. ]
  41708. ))
  41709. characterMakers.push(() => makeCharacter(
  41710. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41711. {
  41712. front: {
  41713. height: math.unit(8 + 2/12, "feet"),
  41714. weight: math.unit(650, "lb"),
  41715. name: "Front",
  41716. image: {
  41717. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41718. extra: 1174/1137,
  41719. bottom: 82/1256
  41720. }
  41721. },
  41722. back: {
  41723. height: math.unit(8 + 2/12, "feet"),
  41724. weight: math.unit(650, "lb"),
  41725. name: "Back",
  41726. image: {
  41727. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41728. extra: 1204/1157,
  41729. bottom: 46/1250
  41730. }
  41731. },
  41732. },
  41733. [
  41734. {
  41735. name: "Wildform",
  41736. height: math.unit(8 + 2/12, "feet"),
  41737. default: true
  41738. },
  41739. ]
  41740. ))
  41741. characterMakers.push(() => makeCharacter(
  41742. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41743. {
  41744. front: {
  41745. height: math.unit(18, "feet"),
  41746. name: "Front",
  41747. image: {
  41748. source: "./media/characters/cyphin/front.svg",
  41749. extra: 970/886,
  41750. bottom: 42/1012
  41751. }
  41752. },
  41753. back: {
  41754. height: math.unit(18, "feet"),
  41755. name: "Back",
  41756. image: {
  41757. source: "./media/characters/cyphin/back.svg",
  41758. extra: 1009/894,
  41759. bottom: 24/1033
  41760. }
  41761. },
  41762. head: {
  41763. height: math.unit(5.05, "feet"),
  41764. name: "Head",
  41765. image: {
  41766. source: "./media/characters/cyphin/head.svg"
  41767. }
  41768. },
  41769. tailbud: {
  41770. height: math.unit(5, "feet"),
  41771. name: "Tailbud",
  41772. image: {
  41773. source: "./media/characters/cyphin/tailbud.svg"
  41774. }
  41775. },
  41776. },
  41777. [
  41778. ]
  41779. ))
  41780. characterMakers.push(() => makeCharacter(
  41781. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41782. {
  41783. side: {
  41784. height: math.unit(10, "feet"),
  41785. weight: math.unit(6, "tons"),
  41786. name: "Side",
  41787. image: {
  41788. source: "./media/characters/raijin/side.svg",
  41789. extra: 1529/613,
  41790. bottom: 337/1866
  41791. }
  41792. },
  41793. },
  41794. [
  41795. {
  41796. name: "Normal",
  41797. height: math.unit(10, "feet"),
  41798. default: true
  41799. },
  41800. ]
  41801. ))
  41802. characterMakers.push(() => makeCharacter(
  41803. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41804. {
  41805. side: {
  41806. height: math.unit(9, "feet"),
  41807. name: "Side",
  41808. image: {
  41809. source: "./media/characters/nilghais/side.svg",
  41810. extra: 1047/744,
  41811. bottom: 91/1138
  41812. }
  41813. },
  41814. head: {
  41815. height: math.unit(3.14, "feet"),
  41816. name: "Head",
  41817. image: {
  41818. source: "./media/characters/nilghais/head.svg"
  41819. }
  41820. },
  41821. mouth: {
  41822. height: math.unit(4.6, "feet"),
  41823. name: "Mouth",
  41824. image: {
  41825. source: "./media/characters/nilghais/mouth.svg"
  41826. }
  41827. },
  41828. wings: {
  41829. height: math.unit(24, "feet"),
  41830. name: "Wings",
  41831. image: {
  41832. source: "./media/characters/nilghais/wings.svg"
  41833. }
  41834. },
  41835. ass: {
  41836. height: math.unit(6.12, "feet"),
  41837. name: "Ass",
  41838. image: {
  41839. source: "./media/characters/nilghais/ass.svg"
  41840. }
  41841. },
  41842. },
  41843. [
  41844. {
  41845. name: "Normal",
  41846. height: math.unit(9, "feet"),
  41847. default: true
  41848. },
  41849. ]
  41850. ))
  41851. characterMakers.push(() => makeCharacter(
  41852. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  41853. {
  41854. regular: {
  41855. height: math.unit(16 + 2/12, "feet"),
  41856. weight: math.unit(2300, "lb"),
  41857. name: "Regular",
  41858. image: {
  41859. source: "./media/characters/zolgar/regular.svg",
  41860. extra: 1246/1004,
  41861. bottom: 124/1370
  41862. }
  41863. },
  41864. boxers: {
  41865. height: math.unit(16 + 2/12, "feet"),
  41866. weight: math.unit(2300, "lb"),
  41867. name: "Boxers",
  41868. image: {
  41869. source: "./media/characters/zolgar/boxers.svg",
  41870. extra: 1246/1004,
  41871. bottom: 124/1370
  41872. }
  41873. },
  41874. armored: {
  41875. height: math.unit(16 + 2/12, "feet"),
  41876. weight: math.unit(2300, "lb"),
  41877. name: "Armored",
  41878. image: {
  41879. source: "./media/characters/zolgar/armored.svg",
  41880. extra: 1246/1004,
  41881. bottom: 124/1370
  41882. }
  41883. },
  41884. goth: {
  41885. height: math.unit(16 + 2/12, "feet"),
  41886. weight: math.unit(2300, "lb"),
  41887. name: "Goth",
  41888. image: {
  41889. source: "./media/characters/zolgar/goth.svg",
  41890. extra: 1246/1004,
  41891. bottom: 124/1370
  41892. }
  41893. },
  41894. },
  41895. [
  41896. {
  41897. name: "Shrunken Down",
  41898. height: math.unit(9 + 2/12, "feet")
  41899. },
  41900. {
  41901. name: "Normal",
  41902. height: math.unit(16 + 2/12, "feet"),
  41903. default: true
  41904. },
  41905. ]
  41906. ))
  41907. characterMakers.push(() => makeCharacter(
  41908. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  41909. {
  41910. front: {
  41911. height: math.unit(6, "feet"),
  41912. weight: math.unit(168, "lb"),
  41913. name: "Front",
  41914. image: {
  41915. source: "./media/characters/luca/front.svg",
  41916. extra: 841/667,
  41917. bottom: 102/943
  41918. }
  41919. },
  41920. },
  41921. [
  41922. {
  41923. name: "Normal",
  41924. height: math.unit(6, "feet"),
  41925. default: true
  41926. },
  41927. ]
  41928. ))
  41929. characterMakers.push(() => makeCharacter(
  41930. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  41931. {
  41932. side: {
  41933. height: math.unit(7 + 3/12, "feet"),
  41934. weight: math.unit(312, "lb"),
  41935. name: "Side",
  41936. image: {
  41937. source: "./media/characters/zezo/side.svg",
  41938. extra: 1192/1067,
  41939. bottom: 63/1255
  41940. }
  41941. },
  41942. },
  41943. [
  41944. {
  41945. name: "Normal",
  41946. height: math.unit(7 + 3/12, "feet"),
  41947. default: true
  41948. },
  41949. ]
  41950. ))
  41951. characterMakers.push(() => makeCharacter(
  41952. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  41953. {
  41954. front: {
  41955. height: math.unit(5 + 5/12, "feet"),
  41956. weight: math.unit(170, "lb"),
  41957. name: "Front",
  41958. image: {
  41959. source: "./media/characters/mayso/front.svg",
  41960. extra: 1215/1108,
  41961. bottom: 16/1231
  41962. }
  41963. },
  41964. },
  41965. [
  41966. {
  41967. name: "Normal",
  41968. height: math.unit(5 + 5/12, "feet"),
  41969. default: true
  41970. },
  41971. ]
  41972. ))
  41973. characterMakers.push(() => makeCharacter(
  41974. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  41975. {
  41976. front: {
  41977. height: math.unit(4 + 3/12, "feet"),
  41978. weight: math.unit(80, "lb"),
  41979. name: "Front",
  41980. image: {
  41981. source: "./media/characters/hess/front.svg",
  41982. extra: 1200/1123,
  41983. bottom: 16/1216
  41984. }
  41985. },
  41986. },
  41987. [
  41988. {
  41989. name: "Normal",
  41990. height: math.unit(4 + 3/12, "feet"),
  41991. default: true
  41992. },
  41993. ]
  41994. ))
  41995. characterMakers.push(() => makeCharacter(
  41996. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  41997. {
  41998. front: {
  41999. height: math.unit(1.9, "meters"),
  42000. name: "Front",
  42001. image: {
  42002. source: "./media/characters/ashgar/front.svg",
  42003. extra: 1177/1146,
  42004. bottom: 99/1276
  42005. }
  42006. },
  42007. back: {
  42008. height: math.unit(1.9, "meters"),
  42009. name: "Back",
  42010. image: {
  42011. source: "./media/characters/ashgar/back.svg",
  42012. extra: 1201/1183,
  42013. bottom: 53/1254
  42014. }
  42015. },
  42016. feral: {
  42017. height: math.unit(1.4, "meters"),
  42018. name: "Feral",
  42019. image: {
  42020. source: "./media/characters/ashgar/feral.svg",
  42021. extra: 370/345,
  42022. bottom: 45/415
  42023. }
  42024. },
  42025. },
  42026. [
  42027. {
  42028. name: "Normal",
  42029. height: math.unit(1.9, "meters"),
  42030. default: true
  42031. },
  42032. ]
  42033. ))
  42034. characterMakers.push(() => makeCharacter(
  42035. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  42036. {
  42037. regular: {
  42038. height: math.unit(6, "feet"),
  42039. weight: math.unit(220, "lb"),
  42040. name: "Regular",
  42041. image: {
  42042. source: "./media/characters/phillip/regular.svg",
  42043. extra: 1373/1277,
  42044. bottom: 75/1448
  42045. }
  42046. },
  42047. dressed: {
  42048. height: math.unit(6, "feet"),
  42049. weight: math.unit(220, "lb"),
  42050. name: "Dressed",
  42051. image: {
  42052. source: "./media/characters/phillip/dressed.svg",
  42053. extra: 1373/1277,
  42054. bottom: 75/1448
  42055. }
  42056. },
  42057. paw: {
  42058. height: math.unit(1.44, "feet"),
  42059. name: "Paw",
  42060. image: {
  42061. source: "./media/characters/phillip/paw.svg"
  42062. }
  42063. },
  42064. },
  42065. [
  42066. {
  42067. name: "Normal",
  42068. height: math.unit(6, "feet"),
  42069. default: true
  42070. },
  42071. ]
  42072. ))
  42073. characterMakers.push(() => makeCharacter(
  42074. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  42075. {
  42076. side: {
  42077. height: math.unit(42, "feet"),
  42078. name: "Side",
  42079. image: {
  42080. source: "./media/characters/uvula/side.svg",
  42081. extra: 683/586,
  42082. bottom: 60/743
  42083. }
  42084. },
  42085. front: {
  42086. height: math.unit(42, "feet"),
  42087. name: "Front",
  42088. image: {
  42089. source: "./media/characters/uvula/front.svg",
  42090. extra: 705/613,
  42091. bottom: 54/759
  42092. }
  42093. },
  42094. maw: {
  42095. height: math.unit(23.5, "feet"),
  42096. name: "Maw",
  42097. image: {
  42098. source: "./media/characters/uvula/maw.svg"
  42099. }
  42100. },
  42101. },
  42102. [
  42103. {
  42104. name: "Original Size",
  42105. height: math.unit(14, "inches")
  42106. },
  42107. {
  42108. name: "Human Size",
  42109. height: math.unit(6, "feet")
  42110. },
  42111. {
  42112. name: "Big",
  42113. height: math.unit(42, "feet"),
  42114. default: true
  42115. },
  42116. {
  42117. name: "Bigger",
  42118. height: math.unit(100, "feet")
  42119. },
  42120. ]
  42121. ))
  42122. characterMakers.push(() => makeCharacter(
  42123. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  42124. {
  42125. front: {
  42126. height: math.unit(5 + 11/12, "feet"),
  42127. name: "Front",
  42128. image: {
  42129. source: "./media/characters/lannah/front.svg",
  42130. extra: 1208/1113,
  42131. bottom: 97/1305
  42132. }
  42133. },
  42134. },
  42135. [
  42136. {
  42137. name: "Normal",
  42138. height: math.unit(5 + 11/12, "feet"),
  42139. default: true
  42140. },
  42141. ]
  42142. ))
  42143. characterMakers.push(() => makeCharacter(
  42144. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  42145. {
  42146. front: {
  42147. height: math.unit(6 + 3/12, "feet"),
  42148. weight: math.unit(3.5, "tons"),
  42149. name: "Front",
  42150. image: {
  42151. source: "./media/characters/emberflame/front.svg",
  42152. extra: 1198/672,
  42153. bottom: 82/1280
  42154. }
  42155. },
  42156. side: {
  42157. height: math.unit(6 + 3/12, "feet"),
  42158. weight: math.unit(3.5, "tons"),
  42159. name: "Side",
  42160. image: {
  42161. source: "./media/characters/emberflame/side.svg",
  42162. extra: 938/527,
  42163. bottom: 56/994
  42164. }
  42165. },
  42166. },
  42167. [
  42168. {
  42169. name: "Normal",
  42170. height: math.unit(6 + 3/12, "feet"),
  42171. default: true
  42172. },
  42173. ]
  42174. ))
  42175. characterMakers.push(() => makeCharacter(
  42176. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  42177. {
  42178. side: {
  42179. height: math.unit(17.5, "feet"),
  42180. weight: math.unit(35, "tons"),
  42181. name: "Side",
  42182. image: {
  42183. source: "./media/characters/sophie-ambrose/side.svg",
  42184. extra: 1573/1242,
  42185. bottom: 71/1644
  42186. }
  42187. },
  42188. maw: {
  42189. height: math.unit(7.4, "feet"),
  42190. name: "Maw",
  42191. image: {
  42192. source: "./media/characters/sophie-ambrose/maw.svg"
  42193. }
  42194. },
  42195. },
  42196. [
  42197. {
  42198. name: "Normal",
  42199. height: math.unit(17.5, "feet"),
  42200. default: true
  42201. },
  42202. ]
  42203. ))
  42204. characterMakers.push(() => makeCharacter(
  42205. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  42206. {
  42207. front: {
  42208. height: math.unit(280, "feet"),
  42209. weight: math.unit(550, "tons"),
  42210. name: "Front",
  42211. image: {
  42212. source: "./media/characters/king-mugi/front.svg",
  42213. extra: 1102/947,
  42214. bottom: 104/1206
  42215. }
  42216. },
  42217. },
  42218. [
  42219. {
  42220. name: "King Mugi",
  42221. height: math.unit(280, "feet"),
  42222. default: true
  42223. },
  42224. ]
  42225. ))
  42226. characterMakers.push(() => makeCharacter(
  42227. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  42228. {
  42229. front: {
  42230. height: math.unit(64, "meters"),
  42231. name: "Front",
  42232. image: {
  42233. source: "./media/characters/nova-fox/front.svg",
  42234. extra: 1310/1246,
  42235. bottom: 65/1375
  42236. }
  42237. },
  42238. },
  42239. [
  42240. {
  42241. name: "Macro",
  42242. height: math.unit(64, "meters"),
  42243. default: true
  42244. },
  42245. ]
  42246. ))
  42247. characterMakers.push(() => makeCharacter(
  42248. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  42249. {
  42250. front: {
  42251. height: math.unit(6 + 3/12, "feet"),
  42252. weight: math.unit(170, "lb"),
  42253. name: "Front",
  42254. image: {
  42255. source: "./media/characters/sam-bat/front.svg",
  42256. extra: 1601/1411,
  42257. bottom: 125/1726
  42258. }
  42259. },
  42260. back: {
  42261. height: math.unit(6 + 3/12, "feet"),
  42262. weight: math.unit(170, "lb"),
  42263. name: "Back",
  42264. image: {
  42265. source: "./media/characters/sam-bat/back.svg",
  42266. extra: 1577/1405,
  42267. bottom: 58/1635
  42268. }
  42269. },
  42270. },
  42271. [
  42272. {
  42273. name: "Normal",
  42274. height: math.unit(6 + 3/12, "feet"),
  42275. default: true
  42276. },
  42277. ]
  42278. ))
  42279. characterMakers.push(() => makeCharacter(
  42280. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  42281. {
  42282. front: {
  42283. height: math.unit(59, "feet"),
  42284. weight: math.unit(40000, "lb"),
  42285. name: "Front",
  42286. image: {
  42287. source: "./media/characters/inari/front.svg",
  42288. extra: 1884/1350,
  42289. bottom: 95/1979
  42290. }
  42291. },
  42292. },
  42293. [
  42294. {
  42295. name: "Gigantamax",
  42296. height: math.unit(59, "feet"),
  42297. default: true
  42298. },
  42299. ]
  42300. ))
  42301. characterMakers.push(() => makeCharacter(
  42302. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  42303. {
  42304. front: {
  42305. height: math.unit(5 + 8/12, "feet"),
  42306. name: "Front",
  42307. image: {
  42308. source: "./media/characters/elizabeth/front.svg",
  42309. extra: 1395/1298,
  42310. bottom: 54/1449
  42311. }
  42312. },
  42313. mouth: {
  42314. height: math.unit(1.97, "feet"),
  42315. name: "Mouth",
  42316. image: {
  42317. source: "./media/characters/elizabeth/mouth.svg"
  42318. }
  42319. },
  42320. foot: {
  42321. height: math.unit(1.17, "feet"),
  42322. name: "Foot",
  42323. image: {
  42324. source: "./media/characters/elizabeth/foot.svg"
  42325. }
  42326. },
  42327. },
  42328. [
  42329. {
  42330. name: "Normal",
  42331. height: math.unit(5 + 8/12, "feet"),
  42332. default: true
  42333. },
  42334. {
  42335. name: "Minimacro",
  42336. height: math.unit(18, "feet")
  42337. },
  42338. {
  42339. name: "Macro",
  42340. height: math.unit(180, "feet")
  42341. },
  42342. ]
  42343. ))
  42344. characterMakers.push(() => makeCharacter(
  42345. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  42346. {
  42347. front: {
  42348. height: math.unit(5 + 2/12, "feet"),
  42349. name: "Front",
  42350. image: {
  42351. source: "./media/characters/october-gossamer/front.svg",
  42352. extra: 505/454,
  42353. bottom: 7/512
  42354. }
  42355. },
  42356. back: {
  42357. height: math.unit(5 + 2/12, "feet"),
  42358. name: "Back",
  42359. image: {
  42360. source: "./media/characters/october-gossamer/back.svg",
  42361. extra: 501/454,
  42362. bottom: 11/512
  42363. }
  42364. },
  42365. },
  42366. [
  42367. {
  42368. name: "Normal",
  42369. height: math.unit(5 + 2/12, "feet"),
  42370. default: true
  42371. },
  42372. ]
  42373. ))
  42374. characterMakers.push(() => makeCharacter(
  42375. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  42376. {
  42377. front: {
  42378. height: math.unit(5, "feet"),
  42379. name: "Front",
  42380. image: {
  42381. source: "./media/characters/epiglottis/front.svg",
  42382. extra: 923/849,
  42383. bottom: 17/940
  42384. }
  42385. },
  42386. },
  42387. [
  42388. {
  42389. name: "Original Size",
  42390. height: math.unit(10, "inches")
  42391. },
  42392. {
  42393. name: "Human Size",
  42394. height: math.unit(5, "feet"),
  42395. default: true
  42396. },
  42397. {
  42398. name: "Big",
  42399. height: math.unit(25, "feet")
  42400. },
  42401. {
  42402. name: "Bigger",
  42403. height: math.unit(50, "feet")
  42404. },
  42405. {
  42406. name: "oh lawd",
  42407. height: math.unit(75, "feet")
  42408. },
  42409. ]
  42410. ))
  42411. characterMakers.push(() => makeCharacter(
  42412. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  42413. {
  42414. front: {
  42415. height: math.unit(2 + 4/12, "feet"),
  42416. weight: math.unit(60, "lb"),
  42417. name: "Front",
  42418. image: {
  42419. source: "./media/characters/lerm/front.svg",
  42420. extra: 796/790,
  42421. bottom: 79/875
  42422. }
  42423. },
  42424. },
  42425. [
  42426. {
  42427. name: "Normal",
  42428. height: math.unit(2 + 4/12, "feet"),
  42429. default: true
  42430. },
  42431. ]
  42432. ))
  42433. characterMakers.push(() => makeCharacter(
  42434. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  42435. {
  42436. front: {
  42437. height: math.unit(5.5, "feet"),
  42438. weight: math.unit(130, "lb"),
  42439. name: "Front",
  42440. image: {
  42441. source: "./media/characters/xena-nebadon/front.svg",
  42442. extra: 1828/1730,
  42443. bottom: 79/1907
  42444. }
  42445. },
  42446. },
  42447. [
  42448. {
  42449. name: "Tiny Puppy",
  42450. height: math.unit(3, "inches")
  42451. },
  42452. {
  42453. name: "Normal",
  42454. height: math.unit(5.5, "feet"),
  42455. default: true
  42456. },
  42457. {
  42458. name: "Lotta Lady",
  42459. height: math.unit(12, "feet")
  42460. },
  42461. {
  42462. name: "Pretty Big",
  42463. height: math.unit(100, "feet")
  42464. },
  42465. {
  42466. name: "Big",
  42467. height: math.unit(500, "feet")
  42468. },
  42469. {
  42470. name: "Skyscraper Toys",
  42471. height: math.unit(2500, "feet")
  42472. },
  42473. {
  42474. name: "Plane Catcher",
  42475. height: math.unit(8, "miles")
  42476. },
  42477. {
  42478. name: "Planet Toys",
  42479. height: math.unit(15, "earths")
  42480. },
  42481. {
  42482. name: "Stardust",
  42483. height: math.unit(0.25, "galaxies")
  42484. },
  42485. {
  42486. name: "Snacks",
  42487. height: math.unit(70, "universes")
  42488. },
  42489. ]
  42490. ))
  42491. characterMakers.push(() => makeCharacter(
  42492. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  42493. {
  42494. front: {
  42495. height: math.unit(1.6, "meters"),
  42496. weight: math.unit(60, "kg"),
  42497. name: "Front",
  42498. image: {
  42499. source: "./media/characters/bounty/front.svg",
  42500. extra: 1426/1308,
  42501. bottom: 15/1441
  42502. }
  42503. },
  42504. back: {
  42505. height: math.unit(1.6, "meters"),
  42506. weight: math.unit(60, "kg"),
  42507. name: "Back",
  42508. image: {
  42509. source: "./media/characters/bounty/back.svg",
  42510. extra: 1417/1307,
  42511. bottom: 8/1425
  42512. }
  42513. },
  42514. },
  42515. [
  42516. {
  42517. name: "Normal",
  42518. height: math.unit(1.6, "meters"),
  42519. default: true
  42520. },
  42521. {
  42522. name: "Macro",
  42523. height: math.unit(300, "meters")
  42524. },
  42525. ]
  42526. ))
  42527. characterMakers.push(() => makeCharacter(
  42528. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  42529. {
  42530. front: {
  42531. height: math.unit(2 + 8/12, "feet"),
  42532. weight: math.unit(15, "lb"),
  42533. name: "Front",
  42534. image: {
  42535. source: "./media/characters/mochi/front.svg",
  42536. extra: 1022/852,
  42537. bottom: 435/1457
  42538. }
  42539. },
  42540. back: {
  42541. height: math.unit(2 + 8/12, "feet"),
  42542. weight: math.unit(15, "lb"),
  42543. name: "Back",
  42544. image: {
  42545. source: "./media/characters/mochi/back.svg",
  42546. extra: 1335/1119,
  42547. bottom: 39/1374
  42548. }
  42549. },
  42550. bird: {
  42551. height: math.unit(2 + 8/12, "feet"),
  42552. weight: math.unit(15, "lb"),
  42553. name: "Bird",
  42554. image: {
  42555. source: "./media/characters/mochi/bird.svg",
  42556. extra: 1251/1113,
  42557. bottom: 178/1429
  42558. }
  42559. },
  42560. kaiju: {
  42561. height: math.unit(154, "feet"),
  42562. weight: math.unit(1e7, "lb"),
  42563. name: "Kaiju",
  42564. image: {
  42565. source: "./media/characters/mochi/kaiju.svg",
  42566. extra: 460/324,
  42567. bottom: 40/500
  42568. }
  42569. },
  42570. head: {
  42571. height: math.unit(1.21, "feet"),
  42572. name: "Head",
  42573. image: {
  42574. source: "./media/characters/mochi/head.svg"
  42575. }
  42576. },
  42577. alternateTail: {
  42578. height: math.unit(2 + 8/12, "feet"),
  42579. weight: math.unit(45, "lb"),
  42580. name: "Alternate Tail",
  42581. image: {
  42582. source: "./media/characters/mochi/alternate-tail.svg",
  42583. extra: 139/76,
  42584. bottom: 45/184
  42585. }
  42586. },
  42587. },
  42588. [
  42589. {
  42590. name: "Micro",
  42591. height: math.unit(2, "inches")
  42592. },
  42593. {
  42594. name: "Normal",
  42595. height: math.unit(2 + 8/12, "feet"),
  42596. default: true
  42597. },
  42598. {
  42599. name: "Macro",
  42600. height: math.unit(106, "feet")
  42601. },
  42602. ]
  42603. ))
  42604. characterMakers.push(() => makeCharacter(
  42605. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42606. {
  42607. front: {
  42608. height: math.unit(5.67, "feet"),
  42609. weight: math.unit(135, "lb"),
  42610. name: "Front",
  42611. image: {
  42612. source: "./media/characters/sarel/front.svg",
  42613. extra: 865/788,
  42614. bottom: 97/962
  42615. }
  42616. },
  42617. back: {
  42618. height: math.unit(5.67, "feet"),
  42619. weight: math.unit(135, "lb"),
  42620. name: "Back",
  42621. image: {
  42622. source: "./media/characters/sarel/back.svg",
  42623. extra: 857/777,
  42624. bottom: 32/889
  42625. }
  42626. },
  42627. chozoan: {
  42628. height: math.unit(5.67, "feet"),
  42629. weight: math.unit(135, "lb"),
  42630. name: "Chozoan",
  42631. image: {
  42632. source: "./media/characters/sarel/chozoan.svg",
  42633. extra: 865/788,
  42634. bottom: 97/962
  42635. }
  42636. },
  42637. current: {
  42638. height: math.unit(5.67, "feet"),
  42639. weight: math.unit(135, "lb"),
  42640. name: "Current",
  42641. image: {
  42642. source: "./media/characters/sarel/current.svg",
  42643. extra: 865/788,
  42644. bottom: 97/962
  42645. }
  42646. },
  42647. head: {
  42648. height: math.unit(1.77, "feet"),
  42649. name: "Head",
  42650. image: {
  42651. source: "./media/characters/sarel/head.svg"
  42652. }
  42653. },
  42654. claws: {
  42655. height: math.unit(1.8, "feet"),
  42656. name: "Claws",
  42657. image: {
  42658. source: "./media/characters/sarel/claws.svg"
  42659. }
  42660. },
  42661. clawsAlt: {
  42662. height: math.unit(1.8, "feet"),
  42663. name: "Claws-alt",
  42664. image: {
  42665. source: "./media/characters/sarel/claws-alt.svg"
  42666. }
  42667. },
  42668. },
  42669. [
  42670. {
  42671. name: "Normal",
  42672. height: math.unit(5.67, "feet"),
  42673. default: true
  42674. },
  42675. ]
  42676. ))
  42677. characterMakers.push(() => makeCharacter(
  42678. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42679. {
  42680. front: {
  42681. height: math.unit(5500, "feet"),
  42682. name: "Front",
  42683. image: {
  42684. source: "./media/characters/alyonia/front.svg",
  42685. extra: 1200/1135,
  42686. bottom: 29/1229
  42687. }
  42688. },
  42689. back: {
  42690. height: math.unit(5500, "feet"),
  42691. name: "Back",
  42692. image: {
  42693. source: "./media/characters/alyonia/back.svg",
  42694. extra: 1205/1138,
  42695. bottom: 10/1215
  42696. }
  42697. },
  42698. },
  42699. [
  42700. {
  42701. name: "Small",
  42702. height: math.unit(10, "feet")
  42703. },
  42704. {
  42705. name: "Macro",
  42706. height: math.unit(500, "feet")
  42707. },
  42708. {
  42709. name: "Mega Macro",
  42710. height: math.unit(5500, "feet"),
  42711. default: true
  42712. },
  42713. {
  42714. name: "Mega Macro+",
  42715. height: math.unit(500000, "feet")
  42716. },
  42717. {
  42718. name: "Giga Macro",
  42719. height: math.unit(3000, "miles")
  42720. },
  42721. {
  42722. name: "Tera Macro",
  42723. height: math.unit(2.8e6, "miles")
  42724. },
  42725. {
  42726. name: "Galactic",
  42727. height: math.unit(120000, "lightyears")
  42728. },
  42729. ]
  42730. ))
  42731. characterMakers.push(() => makeCharacter(
  42732. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42733. {
  42734. werewolf: {
  42735. height: math.unit(8, "feet"),
  42736. weight: math.unit(425, "lb"),
  42737. name: "Werewolf",
  42738. image: {
  42739. source: "./media/characters/autumn/werewolf.svg",
  42740. extra: 2154/2031,
  42741. bottom: 160/2314
  42742. }
  42743. },
  42744. human: {
  42745. height: math.unit(5 + 8/12, "feet"),
  42746. weight: math.unit(150, "lb"),
  42747. name: "Human",
  42748. image: {
  42749. source: "./media/characters/autumn/human.svg",
  42750. extra: 1200/1149,
  42751. bottom: 30/1230
  42752. }
  42753. },
  42754. },
  42755. [
  42756. {
  42757. name: "Normal",
  42758. height: math.unit(8, "feet"),
  42759. default: true
  42760. },
  42761. ]
  42762. ))
  42763. characterMakers.push(() => makeCharacter(
  42764. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  42765. {
  42766. front: {
  42767. height: math.unit(8 + 5/12, "feet"),
  42768. weight: math.unit(825, "lb"),
  42769. name: "Front",
  42770. image: {
  42771. source: "./media/characters/cobalt-charizard/front.svg",
  42772. extra: 1268/1155,
  42773. bottom: 122/1390
  42774. }
  42775. },
  42776. side: {
  42777. height: math.unit(8 + 5/12, "feet"),
  42778. weight: math.unit(825, "lb"),
  42779. name: "Side",
  42780. image: {
  42781. source: "./media/characters/cobalt-charizard/side.svg",
  42782. extra: 1348/1257,
  42783. bottom: 58/1406
  42784. }
  42785. },
  42786. gMax: {
  42787. height: math.unit(134 + 11/12, "feet"),
  42788. name: "G-Max",
  42789. image: {
  42790. source: "./media/characters/cobalt-charizard/g-max.svg",
  42791. extra: 1835/1541,
  42792. bottom: 151/1986
  42793. }
  42794. },
  42795. },
  42796. [
  42797. {
  42798. name: "Normal",
  42799. height: math.unit(8 + 5/12, "feet"),
  42800. default: true
  42801. },
  42802. ]
  42803. ))
  42804. characterMakers.push(() => makeCharacter(
  42805. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  42806. {
  42807. front: {
  42808. height: math.unit(6 + 3/12, "feet"),
  42809. weight: math.unit(210, "lb"),
  42810. name: "Front",
  42811. image: {
  42812. source: "./media/characters/stella/front.svg",
  42813. extra: 3549/3335,
  42814. bottom: 51/3600
  42815. }
  42816. },
  42817. },
  42818. [
  42819. {
  42820. name: "Normal",
  42821. height: math.unit(6 + 3/12, "feet"),
  42822. default: true
  42823. },
  42824. ]
  42825. ))
  42826. characterMakers.push(() => makeCharacter(
  42827. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  42828. {
  42829. front: {
  42830. height: math.unit(5, "feet"),
  42831. weight: math.unit(90, "lb"),
  42832. name: "Front",
  42833. image: {
  42834. source: "./media/characters/riley-bishop/front.svg",
  42835. extra: 1450/1428,
  42836. bottom: 152/1602
  42837. }
  42838. },
  42839. },
  42840. [
  42841. {
  42842. name: "Normal",
  42843. height: math.unit(5, "feet"),
  42844. default: true
  42845. },
  42846. ]
  42847. ))
  42848. characterMakers.push(() => makeCharacter(
  42849. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  42850. {
  42851. side: {
  42852. height: math.unit(8 + 2/12, "feet"),
  42853. weight: math.unit(500, "kg"),
  42854. name: "Side",
  42855. image: {
  42856. source: "./media/characters/theo-arcanine/side.svg",
  42857. extra: 1342/1074,
  42858. bottom: 111/1453
  42859. }
  42860. },
  42861. },
  42862. [
  42863. {
  42864. name: "Normal",
  42865. height: math.unit(8 + 2/12, "feet"),
  42866. default: true
  42867. },
  42868. ]
  42869. ))
  42870. characterMakers.push(() => makeCharacter(
  42871. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  42872. {
  42873. front: {
  42874. height: math.unit(4, "feet"),
  42875. name: "Front",
  42876. image: {
  42877. source: "./media/characters/kali/front.svg",
  42878. extra: 1921/1357,
  42879. bottom: 70/1991
  42880. }
  42881. },
  42882. },
  42883. [
  42884. {
  42885. name: "Normal",
  42886. height: math.unit(4, "feet"),
  42887. default: true
  42888. },
  42889. {
  42890. name: "Macro",
  42891. height: math.unit(32, "meters")
  42892. },
  42893. {
  42894. name: "Macro+",
  42895. height: math.unit(150, "meters")
  42896. },
  42897. {
  42898. name: "Megamacro",
  42899. height: math.unit(7500, "meters")
  42900. },
  42901. {
  42902. name: "Megamacro+",
  42903. height: math.unit(80, "kilometers")
  42904. },
  42905. ]
  42906. ))
  42907. characterMakers.push(() => makeCharacter(
  42908. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  42909. {
  42910. side: {
  42911. height: math.unit(5 + 11/12, "feet"),
  42912. weight: math.unit(236, "lb"),
  42913. name: "Side",
  42914. image: {
  42915. source: "./media/characters/gapp/side.svg",
  42916. extra: 775/340,
  42917. bottom: 58/833
  42918. }
  42919. },
  42920. mouth: {
  42921. height: math.unit(2.98, "feet"),
  42922. name: "Mouth",
  42923. image: {
  42924. source: "./media/characters/gapp/mouth.svg"
  42925. }
  42926. },
  42927. },
  42928. [
  42929. {
  42930. name: "Normal",
  42931. height: math.unit(5 + 1/12, "feet"),
  42932. default: true
  42933. },
  42934. ]
  42935. ))
  42936. characterMakers.push(() => makeCharacter(
  42937. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  42938. {
  42939. front: {
  42940. height: math.unit(6, "feet"),
  42941. name: "Front",
  42942. image: {
  42943. source: "./media/characters/persephone/front.svg",
  42944. extra: 1895/1717,
  42945. bottom: 96/1991
  42946. }
  42947. },
  42948. back: {
  42949. height: math.unit(6, "feet"),
  42950. name: "Back",
  42951. image: {
  42952. source: "./media/characters/persephone/back.svg",
  42953. extra: 1868/1679,
  42954. bottom: 26/1894
  42955. }
  42956. },
  42957. casual: {
  42958. height: math.unit(6, "feet"),
  42959. name: "Casual",
  42960. image: {
  42961. source: "./media/characters/persephone/casual.svg",
  42962. extra: 1713/1541,
  42963. bottom: 76/1789
  42964. }
  42965. },
  42966. },
  42967. [
  42968. {
  42969. name: "Human Size",
  42970. height: math.unit(6, "feet")
  42971. },
  42972. {
  42973. name: "Big Steppy",
  42974. height: math.unit(600, "meters"),
  42975. default: true
  42976. },
  42977. {
  42978. name: "Galaxy Brain",
  42979. height: math.unit(1, "zettameter")
  42980. },
  42981. ]
  42982. ))
  42983. characterMakers.push(() => makeCharacter(
  42984. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  42985. {
  42986. front: {
  42987. height: math.unit(1.85, "meters"),
  42988. name: "Front",
  42989. image: {
  42990. source: "./media/characters/riley-foxthing/front.svg",
  42991. extra: 1495/1354,
  42992. bottom: 122/1617
  42993. }
  42994. },
  42995. frontAlt: {
  42996. height: math.unit(1.85, "meters"),
  42997. name: "Front (Alt)",
  42998. image: {
  42999. source: "./media/characters/riley-foxthing/front-alt.svg",
  43000. extra: 1572/1389,
  43001. bottom: 116/1688
  43002. }
  43003. },
  43004. },
  43005. [
  43006. {
  43007. name: "Normal Sized",
  43008. height: math.unit(1.85, "meters"),
  43009. default: true
  43010. },
  43011. {
  43012. name: "Quite Sizable",
  43013. height: math.unit(5, "meters")
  43014. },
  43015. {
  43016. name: "Rather Large",
  43017. height: math.unit(20, "meters")
  43018. },
  43019. {
  43020. name: "Macro",
  43021. height: math.unit(450, "meters")
  43022. },
  43023. {
  43024. name: "Giga",
  43025. height: math.unit(5, "km")
  43026. },
  43027. ]
  43028. ))
  43029. characterMakers.push(() => makeCharacter(
  43030. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  43031. {
  43032. front: {
  43033. height: math.unit(6, "feet"),
  43034. weight: math.unit(200, "lb"),
  43035. name: "Front",
  43036. image: {
  43037. source: "./media/characters/blizzard/front.svg",
  43038. extra: 1136/990,
  43039. bottom: 136/1272
  43040. }
  43041. },
  43042. back: {
  43043. height: math.unit(6, "feet"),
  43044. weight: math.unit(200, "lb"),
  43045. name: "Back",
  43046. image: {
  43047. source: "./media/characters/blizzard/back.svg",
  43048. extra: 1175/1034,
  43049. bottom: 97/1272
  43050. }
  43051. },
  43052. sitting: {
  43053. height: math.unit(3.725, "feet"),
  43054. weight: math.unit(200, "lb"),
  43055. name: "Sitting",
  43056. image: {
  43057. source: "./media/characters/blizzard/sitting.svg",
  43058. extra: 581/485,
  43059. bottom: 90/671
  43060. }
  43061. },
  43062. frontWizard: {
  43063. height: math.unit(7.9, "feet"),
  43064. weight: math.unit(200, "lb"),
  43065. name: "Front (Wizard)",
  43066. image: {
  43067. source: "./media/characters/blizzard/front-wizard.svg"
  43068. }
  43069. },
  43070. backWizard: {
  43071. height: math.unit(7.9, "feet"),
  43072. weight: math.unit(200, "lb"),
  43073. name: "Back (Wizard)",
  43074. image: {
  43075. source: "./media/characters/blizzard/back-wizard.svg"
  43076. }
  43077. },
  43078. frontNsfw: {
  43079. height: math.unit(6, "feet"),
  43080. weight: math.unit(200, "lb"),
  43081. name: "Front (NSFW)",
  43082. image: {
  43083. source: "./media/characters/blizzard/front-nsfw.svg",
  43084. extra: 1136/990,
  43085. bottom: 136/1272
  43086. }
  43087. },
  43088. backNsfw: {
  43089. height: math.unit(6, "feet"),
  43090. weight: math.unit(200, "lb"),
  43091. name: "Back (NSFW)",
  43092. image: {
  43093. source: "./media/characters/blizzard/back-nsfw.svg",
  43094. extra: 1175/1034,
  43095. bottom: 97/1272
  43096. }
  43097. },
  43098. sittingNsfw: {
  43099. height: math.unit(3.725, "feet"),
  43100. weight: math.unit(200, "lb"),
  43101. name: "Sitting (NSFW)",
  43102. image: {
  43103. source: "./media/characters/blizzard/sitting-nsfw.svg",
  43104. extra: 581/485,
  43105. bottom: 90/671
  43106. }
  43107. },
  43108. wizardFrontNsfw: {
  43109. height: math.unit(7.9, "feet"),
  43110. weight: math.unit(200, "lb"),
  43111. name: "Wizard (Front, NSFW)",
  43112. image: {
  43113. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  43114. }
  43115. },
  43116. },
  43117. [
  43118. {
  43119. name: "Normal",
  43120. height: math.unit(6, "feet"),
  43121. default: true
  43122. },
  43123. ]
  43124. ))
  43125. characterMakers.push(() => makeCharacter(
  43126. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  43127. {
  43128. front: {
  43129. height: math.unit(5 + 2/12, "feet"),
  43130. name: "Front",
  43131. image: {
  43132. source: "./media/characters/lumi/front.svg",
  43133. extra: 1328/1268,
  43134. bottom: 103/1431
  43135. }
  43136. },
  43137. back: {
  43138. height: math.unit(5 + 2/12, "feet"),
  43139. name: "Back",
  43140. image: {
  43141. source: "./media/characters/lumi/back.svg",
  43142. extra: 1381/1327,
  43143. bottom: 43/1424
  43144. }
  43145. },
  43146. },
  43147. [
  43148. {
  43149. name: "Normal",
  43150. height: math.unit(5 + 2/12, "feet"),
  43151. default: true
  43152. },
  43153. ]
  43154. ))
  43155. characterMakers.push(() => makeCharacter(
  43156. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  43157. {
  43158. front: {
  43159. height: math.unit(5 + 9/12, "feet"),
  43160. name: "Front",
  43161. image: {
  43162. source: "./media/characters/aliya-cotton/front.svg",
  43163. extra: 577/564,
  43164. bottom: 29/606
  43165. }
  43166. },
  43167. },
  43168. [
  43169. {
  43170. name: "Normal",
  43171. height: math.unit(5 + 9/12, "feet"),
  43172. default: true
  43173. },
  43174. ]
  43175. ))
  43176. characterMakers.push(() => makeCharacter(
  43177. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  43178. {
  43179. front: {
  43180. height: math.unit(2.7, "meters"),
  43181. weight: math.unit(25000, "lb"),
  43182. name: "Front",
  43183. image: {
  43184. source: "./media/characters/noah-luxray/front.svg",
  43185. extra: 1644/825,
  43186. bottom: 339/1983
  43187. }
  43188. },
  43189. side: {
  43190. height: math.unit(2.97, "meters"),
  43191. weight: math.unit(25000, "lb"),
  43192. name: "Side",
  43193. image: {
  43194. source: "./media/characters/noah-luxray/side.svg",
  43195. extra: 1319/650,
  43196. bottom: 163/1482
  43197. }
  43198. },
  43199. dick: {
  43200. height: math.unit(7.4, "feet"),
  43201. weight: math.unit(2500, "lb"),
  43202. name: "Dick",
  43203. image: {
  43204. source: "./media/characters/noah-luxray/dick.svg"
  43205. }
  43206. },
  43207. dickAlt: {
  43208. height: math.unit(10.83, "feet"),
  43209. weight: math.unit(2500, "lb"),
  43210. name: "Dick-alt",
  43211. image: {
  43212. source: "./media/characters/noah-luxray/dick-alt.svg"
  43213. }
  43214. },
  43215. },
  43216. [
  43217. {
  43218. name: "BIG",
  43219. height: math.unit(2.7, "meters"),
  43220. default: true
  43221. },
  43222. ]
  43223. ))
  43224. characterMakers.push(() => makeCharacter(
  43225. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  43226. {
  43227. standing: {
  43228. height: math.unit(183, "cm"),
  43229. weight: math.unit(68, "kg"),
  43230. name: "Standing",
  43231. image: {
  43232. source: "./media/characters/arion/standing.svg",
  43233. extra: 1869/1807,
  43234. bottom: 93/1962
  43235. }
  43236. },
  43237. reclining: {
  43238. height: math.unit(70.5, "cm"),
  43239. weight: math.unit(68, "lb"),
  43240. name: "Reclining",
  43241. image: {
  43242. source: "./media/characters/arion/reclining.svg",
  43243. extra: 937/870,
  43244. bottom: 63/1000
  43245. }
  43246. },
  43247. },
  43248. [
  43249. {
  43250. name: "Colossus Size, Low",
  43251. height: math.unit(33, "meters"),
  43252. default: true
  43253. },
  43254. {
  43255. name: "Colossus Size, Mid",
  43256. height: math.unit(52, "meters")
  43257. },
  43258. {
  43259. name: "Colossus Size, High",
  43260. height: math.unit(60, "meters")
  43261. },
  43262. {
  43263. name: "Titan Size, Low",
  43264. height: math.unit(91, "meters"),
  43265. },
  43266. {
  43267. name: "Titan Size, Mid",
  43268. height: math.unit(122, "meters")
  43269. },
  43270. {
  43271. name: "Titan Size, High",
  43272. height: math.unit(162, "meters")
  43273. },
  43274. ]
  43275. ))
  43276. characterMakers.push(() => makeCharacter(
  43277. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  43278. {
  43279. front: {
  43280. height: math.unit(53, "meters"),
  43281. name: "Front",
  43282. image: {
  43283. source: "./media/characters/stellar-marbey/front.svg",
  43284. extra: 1913/1805,
  43285. bottom: 92/2005
  43286. }
  43287. },
  43288. back: {
  43289. height: math.unit(53, "meters"),
  43290. name: "Back",
  43291. image: {
  43292. source: "./media/characters/stellar-marbey/back.svg",
  43293. extra: 1960/1851,
  43294. bottom: 28/1988
  43295. }
  43296. },
  43297. mouth: {
  43298. height: math.unit(3.5, "meters"),
  43299. name: "Mouth",
  43300. image: {
  43301. source: "./media/characters/stellar-marbey/mouth.svg"
  43302. }
  43303. },
  43304. },
  43305. [
  43306. {
  43307. name: "Macro",
  43308. height: math.unit(53, "meters"),
  43309. default: true
  43310. },
  43311. ]
  43312. ))
  43313. characterMakers.push(() => makeCharacter(
  43314. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  43315. {
  43316. front: {
  43317. height: math.unit(8 + 1/12, "feet"),
  43318. weight: math.unit(233, "lb"),
  43319. name: "Front",
  43320. image: {
  43321. source: "./media/characters/matsu/front.svg",
  43322. extra: 832/772,
  43323. bottom: 40/872
  43324. }
  43325. },
  43326. back: {
  43327. height: math.unit(8 + 1/12, "feet"),
  43328. weight: math.unit(233, "lb"),
  43329. name: "Back",
  43330. image: {
  43331. source: "./media/characters/matsu/back.svg",
  43332. extra: 839/780,
  43333. bottom: 47/886
  43334. }
  43335. },
  43336. },
  43337. [
  43338. {
  43339. name: "Normal",
  43340. height: math.unit(8 + 1/12, "feet"),
  43341. default: true
  43342. },
  43343. ]
  43344. ))
  43345. characterMakers.push(() => makeCharacter(
  43346. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  43347. {
  43348. front: {
  43349. height: math.unit(4, "feet"),
  43350. weight: math.unit(148, "lb"),
  43351. name: "Front",
  43352. image: {
  43353. source: "./media/characters/thiz/front.svg",
  43354. extra: 1913/1748,
  43355. bottom: 62/1975
  43356. }
  43357. },
  43358. },
  43359. [
  43360. {
  43361. name: "Normal",
  43362. height: math.unit(4, "feet"),
  43363. default: true
  43364. },
  43365. ]
  43366. ))
  43367. characterMakers.push(() => makeCharacter(
  43368. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  43369. {
  43370. front: {
  43371. height: math.unit(7 + 6/12, "feet"),
  43372. weight: math.unit(267, "lb"),
  43373. name: "Front",
  43374. image: {
  43375. source: "./media/characters/marcel/front.svg",
  43376. extra: 1221/1096,
  43377. bottom: 76/1297
  43378. }
  43379. },
  43380. },
  43381. [
  43382. {
  43383. name: "Normal",
  43384. height: math.unit(7 + 6/12, "feet"),
  43385. default: true
  43386. },
  43387. ]
  43388. ))
  43389. characterMakers.push(() => makeCharacter(
  43390. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  43391. {
  43392. side: {
  43393. height: math.unit(42, "meters"),
  43394. name: "Side",
  43395. image: {
  43396. source: "./media/characters/flake/side.svg",
  43397. extra: 1525/1306,
  43398. bottom: 209/1734
  43399. }
  43400. },
  43401. },
  43402. [
  43403. {
  43404. name: "Normal",
  43405. height: math.unit(42, "meters"),
  43406. default: true
  43407. },
  43408. ]
  43409. ))
  43410. characterMakers.push(() => makeCharacter(
  43411. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  43412. {
  43413. dressed: {
  43414. height: math.unit(6 + 4/12, "feet"),
  43415. weight: math.unit(520, "lb"),
  43416. name: "Dressed",
  43417. image: {
  43418. source: "./media/characters/someonne/dressed.svg",
  43419. extra: 1020/1010,
  43420. bottom: 178/1198
  43421. }
  43422. },
  43423. undressed: {
  43424. height: math.unit(6 + 4/12, "feet"),
  43425. weight: math.unit(520, "lb"),
  43426. name: "Undressed",
  43427. image: {
  43428. source: "./media/characters/someonne/undressed.svg",
  43429. extra: 1019/1014,
  43430. bottom: 169/1188
  43431. }
  43432. },
  43433. },
  43434. [
  43435. {
  43436. name: "Normal",
  43437. height: math.unit(6 + 4/12, "feet"),
  43438. default: true
  43439. },
  43440. ]
  43441. ))
  43442. characterMakers.push(() => makeCharacter(
  43443. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  43444. {
  43445. front: {
  43446. height: math.unit(3, "feet"),
  43447. weight: math.unit(30, "lb"),
  43448. name: "Front",
  43449. image: {
  43450. source: "./media/characters/till/front.svg",
  43451. extra: 892/823,
  43452. bottom: 55/947
  43453. }
  43454. },
  43455. },
  43456. [
  43457. {
  43458. name: "Normal",
  43459. height: math.unit(3, "feet"),
  43460. default: true
  43461. },
  43462. ]
  43463. ))
  43464. characterMakers.push(() => makeCharacter(
  43465. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  43466. {
  43467. front: {
  43468. height: math.unit(9 + 8/12, "feet"),
  43469. weight: math.unit(800, "lb"),
  43470. name: "Front",
  43471. image: {
  43472. source: "./media/characters/sydney-heki/front.svg",
  43473. extra: 1360/1300,
  43474. bottom: 22/1382
  43475. }
  43476. },
  43477. back: {
  43478. height: math.unit(9 + 8/12, "feet"),
  43479. weight: math.unit(800, "lb"),
  43480. name: "Back",
  43481. image: {
  43482. source: "./media/characters/sydney-heki/back.svg",
  43483. extra: 1356/1293,
  43484. bottom: 12/1368
  43485. }
  43486. },
  43487. frontDressed: {
  43488. height: math.unit(9 + 8/12, "feet"),
  43489. weight: math.unit(800, "lb"),
  43490. name: "Front-dressed",
  43491. image: {
  43492. source: "./media/characters/sydney-heki/front-dressed.svg",
  43493. extra: 1360/1300,
  43494. bottom: 22/1382
  43495. }
  43496. },
  43497. },
  43498. [
  43499. {
  43500. name: "Normal",
  43501. height: math.unit(9 + 8/12, "feet"),
  43502. default: true
  43503. },
  43504. {
  43505. name: "Macro",
  43506. height: math.unit(500, "feet")
  43507. },
  43508. {
  43509. name: "Megamacro",
  43510. height: math.unit(3.6, "miles")
  43511. },
  43512. ]
  43513. ))
  43514. characterMakers.push(() => makeCharacter(
  43515. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  43516. {
  43517. front: {
  43518. height: math.unit(200, "cm"),
  43519. weight: math.unit(250, "lb"),
  43520. name: "Front",
  43521. image: {
  43522. source: "./media/characters/fowler-karlsson/front.svg",
  43523. extra: 897/845,
  43524. bottom: 123/1020
  43525. }
  43526. },
  43527. back: {
  43528. height: math.unit(200, "cm"),
  43529. weight: math.unit(250, "lb"),
  43530. name: "Back",
  43531. image: {
  43532. source: "./media/characters/fowler-karlsson/back.svg",
  43533. extra: 999/944,
  43534. bottom: 26/1025
  43535. }
  43536. },
  43537. dick: {
  43538. height: math.unit(1.92, "feet"),
  43539. weight: math.unit(150, "lb"),
  43540. name: "Dick",
  43541. image: {
  43542. source: "./media/characters/fowler-karlsson/dick.svg"
  43543. }
  43544. },
  43545. },
  43546. [
  43547. {
  43548. name: "Normal",
  43549. height: math.unit(200, "cm"),
  43550. default: true
  43551. },
  43552. {
  43553. name: "Smaller Macro",
  43554. height: math.unit(90, "m")
  43555. },
  43556. {
  43557. name: "Macro",
  43558. height: math.unit(150, "m")
  43559. },
  43560. {
  43561. name: "Bigger Macro",
  43562. height: math.unit(300, "m")
  43563. },
  43564. ]
  43565. ))
  43566. characterMakers.push(() => makeCharacter(
  43567. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  43568. {
  43569. side: {
  43570. height: math.unit(8 + 2/12, "feet"),
  43571. weight: math.unit(1, "tonne"),
  43572. name: "Side",
  43573. image: {
  43574. source: "./media/characters/rylide/side.svg",
  43575. extra: 1318/1034,
  43576. bottom: 106/1424
  43577. }
  43578. },
  43579. sitting: {
  43580. height: math.unit(303, "cm"),
  43581. weight: math.unit(1, "tonne"),
  43582. name: "Sitting",
  43583. image: {
  43584. source: "./media/characters/rylide/sitting.svg",
  43585. extra: 1303/1103,
  43586. bottom: 36/1339
  43587. }
  43588. },
  43589. },
  43590. [
  43591. {
  43592. name: "Normal",
  43593. height: math.unit(8 + 2/12, "feet"),
  43594. default: true
  43595. },
  43596. ]
  43597. ))
  43598. characterMakers.push(() => makeCharacter(
  43599. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  43600. {
  43601. front: {
  43602. height: math.unit(5 + 10/12, "feet"),
  43603. weight: math.unit(160, "lb"),
  43604. name: "Front",
  43605. image: {
  43606. source: "./media/characters/pudask/front.svg",
  43607. extra: 1616/1590,
  43608. bottom: 161/1777
  43609. }
  43610. },
  43611. },
  43612. [
  43613. {
  43614. name: "Ferret Height",
  43615. height: math.unit(2 + 5/12, "feet")
  43616. },
  43617. {
  43618. name: "Canon Height",
  43619. height: math.unit(5 + 10/12, "feet"),
  43620. default: true
  43621. },
  43622. ]
  43623. ))
  43624. characterMakers.push(() => makeCharacter(
  43625. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  43626. {
  43627. front: {
  43628. height: math.unit(3 + 6/12, "feet"),
  43629. weight: math.unit(60, "lb"),
  43630. name: "Front",
  43631. image: {
  43632. source: "./media/characters/ramita/front.svg",
  43633. extra: 1402/1232,
  43634. bottom: 62/1464
  43635. }
  43636. },
  43637. dressed: {
  43638. height: math.unit(3 + 6/12, "feet"),
  43639. weight: math.unit(60, "lb"),
  43640. name: "Dressed",
  43641. image: {
  43642. source: "./media/characters/ramita/dressed.svg",
  43643. extra: 1534/1249,
  43644. bottom: 50/1584
  43645. }
  43646. },
  43647. },
  43648. [
  43649. {
  43650. name: "Normal",
  43651. height: math.unit(3 + 6/12, "feet"),
  43652. default: true
  43653. },
  43654. ]
  43655. ))
  43656. characterMakers.push(() => makeCharacter(
  43657. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  43658. {
  43659. front: {
  43660. height: math.unit(8, "feet"),
  43661. name: "Front",
  43662. image: {
  43663. source: "./media/characters/ark/front.svg",
  43664. extra: 772/693,
  43665. bottom: 45/817
  43666. }
  43667. },
  43668. },
  43669. [
  43670. {
  43671. name: "Normal",
  43672. height: math.unit(8, "feet"),
  43673. default: true
  43674. },
  43675. ]
  43676. ))
  43677. characterMakers.push(() => makeCharacter(
  43678. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  43679. {
  43680. front: {
  43681. height: math.unit(6, "feet"),
  43682. weight: math.unit(250, "lb"),
  43683. volume: math.unit(5/8, "gallons"),
  43684. name: "Front",
  43685. image: {
  43686. source: "./media/characters/ludwig-horn/front.svg",
  43687. extra: 1782/1635,
  43688. bottom: 96/1878
  43689. }
  43690. },
  43691. back: {
  43692. height: math.unit(6, "feet"),
  43693. weight: math.unit(250, "lb"),
  43694. volume: math.unit(5/8, "gallons"),
  43695. name: "Back",
  43696. image: {
  43697. source: "./media/characters/ludwig-horn/back.svg",
  43698. extra: 1874/1729,
  43699. bottom: 27/1901
  43700. }
  43701. },
  43702. dick: {
  43703. height: math.unit(1.05, "feet"),
  43704. weight: math.unit(15, "lb"),
  43705. volume: math.unit(5/8, "gallons"),
  43706. name: "Dick",
  43707. image: {
  43708. source: "./media/characters/ludwig-horn/dick.svg"
  43709. }
  43710. },
  43711. },
  43712. [
  43713. {
  43714. name: "Small",
  43715. height: math.unit(6, "feet")
  43716. },
  43717. {
  43718. name: "Typical",
  43719. height: math.unit(12, "feet"),
  43720. default: true
  43721. },
  43722. {
  43723. name: "Building",
  43724. height: math.unit(80, "feet")
  43725. },
  43726. {
  43727. name: "Town",
  43728. height: math.unit(800, "feet")
  43729. },
  43730. {
  43731. name: "Kingdom",
  43732. height: math.unit(80000, "feet")
  43733. },
  43734. {
  43735. name: "Planet",
  43736. height: math.unit(8000000, "feet")
  43737. },
  43738. {
  43739. name: "Universe",
  43740. height: math.unit(8000000000, "feet")
  43741. },
  43742. {
  43743. name: "Transcended",
  43744. height: math.unit(8e27, "feet")
  43745. },
  43746. ]
  43747. ))
  43748. characterMakers.push(() => makeCharacter(
  43749. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  43750. {
  43751. front: {
  43752. height: math.unit(5, "feet"),
  43753. weight: math.unit(50, "kg"),
  43754. name: "Front",
  43755. image: {
  43756. source: "./media/characters/biot-avery/front.svg",
  43757. extra: 1295/1232,
  43758. bottom: 86/1381
  43759. }
  43760. },
  43761. },
  43762. [
  43763. {
  43764. name: "Normal",
  43765. height: math.unit(5, "feet"),
  43766. default: true
  43767. },
  43768. ]
  43769. ))
  43770. characterMakers.push(() => makeCharacter(
  43771. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  43772. {
  43773. front: {
  43774. height: math.unit(6, "feet"),
  43775. name: "Front",
  43776. image: {
  43777. source: "./media/characters/kitsune-kiro/front.svg",
  43778. extra: 1270/1158,
  43779. bottom: 42/1312
  43780. }
  43781. },
  43782. frontAlt: {
  43783. height: math.unit(6, "feet"),
  43784. name: "Front-alt",
  43785. image: {
  43786. source: "./media/characters/kitsune-kiro/front-alt.svg",
  43787. extra: 1130/1081,
  43788. bottom: 36/1166
  43789. }
  43790. },
  43791. },
  43792. [
  43793. {
  43794. name: "Smol",
  43795. height: math.unit(3, "feet")
  43796. },
  43797. {
  43798. name: "Normal",
  43799. height: math.unit(6, "feet"),
  43800. default: true
  43801. },
  43802. ]
  43803. ))
  43804. characterMakers.push(() => makeCharacter(
  43805. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  43806. {
  43807. front: {
  43808. height: math.unit(6, "feet"),
  43809. weight: math.unit(125, "lb"),
  43810. name: "Front",
  43811. image: {
  43812. source: "./media/characters/jack-thatcher/front.svg",
  43813. extra: 1474/1370,
  43814. bottom: 26/1500
  43815. }
  43816. },
  43817. back: {
  43818. height: math.unit(6, "feet"),
  43819. weight: math.unit(125, "lb"),
  43820. name: "Back",
  43821. image: {
  43822. source: "./media/characters/jack-thatcher/back.svg",
  43823. extra: 1489/1384,
  43824. bottom: 18/1507
  43825. }
  43826. },
  43827. },
  43828. [
  43829. {
  43830. name: "Normal",
  43831. height: math.unit(6, "feet"),
  43832. default: true
  43833. },
  43834. {
  43835. name: "Macro",
  43836. height: math.unit(75, "feet")
  43837. },
  43838. {
  43839. name: "Macro-er",
  43840. height: math.unit(250, "feet")
  43841. },
  43842. ]
  43843. ))
  43844. characterMakers.push(() => makeCharacter(
  43845. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  43846. {
  43847. front: {
  43848. height: math.unit(7, "feet"),
  43849. weight: math.unit(110, "kg"),
  43850. name: "Front",
  43851. image: {
  43852. source: "./media/characters/max-hyper/front.svg",
  43853. extra: 1969/1881,
  43854. bottom: 49/2018
  43855. }
  43856. },
  43857. },
  43858. [
  43859. {
  43860. name: "Normal",
  43861. height: math.unit(7, "feet"),
  43862. default: true
  43863. },
  43864. ]
  43865. ))
  43866. characterMakers.push(() => makeCharacter(
  43867. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  43868. {
  43869. front: {
  43870. height: math.unit(5 + 5/12, "feet"),
  43871. weight: math.unit(160, "lb"),
  43872. name: "Front",
  43873. image: {
  43874. source: "./media/characters/spook/front.svg",
  43875. extra: 794/791,
  43876. bottom: 54/848
  43877. }
  43878. },
  43879. back: {
  43880. height: math.unit(5 + 5/12, "feet"),
  43881. weight: math.unit(160, "lb"),
  43882. name: "Back",
  43883. image: {
  43884. source: "./media/characters/spook/back.svg",
  43885. extra: 812/798,
  43886. bottom: 32/844
  43887. }
  43888. },
  43889. },
  43890. [
  43891. {
  43892. name: "Normal",
  43893. height: math.unit(5 + 5/12, "feet"),
  43894. default: true
  43895. },
  43896. ]
  43897. ))
  43898. characterMakers.push(() => makeCharacter(
  43899. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  43900. {
  43901. front: {
  43902. height: math.unit(18, "feet"),
  43903. name: "Front",
  43904. image: {
  43905. source: "./media/characters/xeaduulix/front.svg",
  43906. extra: 1380/1166,
  43907. bottom: 110/1490
  43908. }
  43909. },
  43910. back: {
  43911. height: math.unit(18, "feet"),
  43912. name: "Back",
  43913. image: {
  43914. source: "./media/characters/xeaduulix/back.svg",
  43915. extra: 1592/1170,
  43916. bottom: 128/1720
  43917. }
  43918. },
  43919. frontNsfw: {
  43920. height: math.unit(18, "feet"),
  43921. name: "Front (NSFW)",
  43922. image: {
  43923. source: "./media/characters/xeaduulix/front-nsfw.svg",
  43924. extra: 1380/1166,
  43925. bottom: 110/1490
  43926. }
  43927. },
  43928. backNsfw: {
  43929. height: math.unit(18, "feet"),
  43930. name: "Back (NSFW)",
  43931. image: {
  43932. source: "./media/characters/xeaduulix/back-nsfw.svg",
  43933. extra: 1592/1170,
  43934. bottom: 128/1720
  43935. }
  43936. },
  43937. },
  43938. [
  43939. {
  43940. name: "Normal",
  43941. height: math.unit(18, "feet"),
  43942. default: true
  43943. },
  43944. ]
  43945. ))
  43946. characterMakers.push(() => makeCharacter(
  43947. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  43948. {
  43949. spreadWings: {
  43950. height: math.unit(20, "feet"),
  43951. name: "Spread Wings",
  43952. image: {
  43953. source: "./media/characters/fledge/spread-wings.svg",
  43954. extra: 693/635,
  43955. bottom: 26/719
  43956. }
  43957. },
  43958. front: {
  43959. height: math.unit(20, "feet"),
  43960. name: "Front",
  43961. image: {
  43962. source: "./media/characters/fledge/front.svg",
  43963. extra: 684/637,
  43964. bottom: 18/702
  43965. }
  43966. },
  43967. frontAlt: {
  43968. height: math.unit(20, "feet"),
  43969. name: "Front (Alt)",
  43970. image: {
  43971. source: "./media/characters/fledge/front-alt.svg",
  43972. extra: 708/664,
  43973. bottom: 13/721
  43974. }
  43975. },
  43976. back: {
  43977. height: math.unit(20, "feet"),
  43978. name: "Back",
  43979. image: {
  43980. source: "./media/characters/fledge/back.svg",
  43981. extra: 718/634,
  43982. bottom: 22/740
  43983. }
  43984. },
  43985. head: {
  43986. height: math.unit(5.55, "feet"),
  43987. name: "Head",
  43988. image: {
  43989. source: "./media/characters/fledge/head.svg"
  43990. }
  43991. },
  43992. headAlt: {
  43993. height: math.unit(5.1, "feet"),
  43994. name: "Head (Alt)",
  43995. image: {
  43996. source: "./media/characters/fledge/head-alt.svg"
  43997. }
  43998. },
  43999. },
  44000. [
  44001. {
  44002. name: "Small",
  44003. height: math.unit(6 + 2/12, "feet")
  44004. },
  44005. {
  44006. name: "Big",
  44007. height: math.unit(20, "feet"),
  44008. default: true
  44009. },
  44010. {
  44011. name: "Giant",
  44012. height: math.unit(100, "feet")
  44013. },
  44014. {
  44015. name: "Macro",
  44016. height: math.unit(200, "feet")
  44017. },
  44018. ]
  44019. ))
  44020. characterMakers.push(() => makeCharacter(
  44021. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  44022. {
  44023. front: {
  44024. height: math.unit(1, "meter"),
  44025. name: "Front",
  44026. image: {
  44027. source: "./media/characters/atlas-morenai/front.svg",
  44028. extra: 1275/1043,
  44029. bottom: 19/1294
  44030. }
  44031. },
  44032. back: {
  44033. height: math.unit(1, "meter"),
  44034. name: "Back",
  44035. image: {
  44036. source: "./media/characters/atlas-morenai/back.svg",
  44037. extra: 1141/1001,
  44038. bottom: 25/1166
  44039. }
  44040. },
  44041. },
  44042. [
  44043. {
  44044. name: "Normal",
  44045. height: math.unit(1, "meter"),
  44046. default: true
  44047. },
  44048. {
  44049. name: "Magic-Infused",
  44050. height: math.unit(5, "meters")
  44051. },
  44052. ]
  44053. ))
  44054. characterMakers.push(() => makeCharacter(
  44055. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  44056. {
  44057. front: {
  44058. height: math.unit(5, "meters"),
  44059. name: "Front",
  44060. image: {
  44061. source: "./media/characters/cintia/front.svg",
  44062. extra: 1312/1228,
  44063. bottom: 38/1350
  44064. }
  44065. },
  44066. back: {
  44067. height: math.unit(5, "meters"),
  44068. name: "Back",
  44069. image: {
  44070. source: "./media/characters/cintia/back.svg",
  44071. extra: 1260/1166,
  44072. bottom: 98/1358
  44073. }
  44074. },
  44075. frontDick: {
  44076. height: math.unit(5, "meters"),
  44077. name: "Front (Dick)",
  44078. image: {
  44079. source: "./media/characters/cintia/front-dick.svg",
  44080. extra: 1312/1228,
  44081. bottom: 38/1350
  44082. }
  44083. },
  44084. backDick: {
  44085. height: math.unit(5, "meters"),
  44086. name: "Back (Dick)",
  44087. image: {
  44088. source: "./media/characters/cintia/back-dick.svg",
  44089. extra: 1260/1166,
  44090. bottom: 98/1358
  44091. }
  44092. },
  44093. bust: {
  44094. height: math.unit(1.97, "meters"),
  44095. name: "Bust",
  44096. image: {
  44097. source: "./media/characters/cintia/bust.svg",
  44098. extra: 617/565,
  44099. bottom: 0/617
  44100. }
  44101. },
  44102. },
  44103. [
  44104. {
  44105. name: "Normal",
  44106. height: math.unit(5, "meters"),
  44107. default: true
  44108. },
  44109. ]
  44110. ))
  44111. characterMakers.push(() => makeCharacter(
  44112. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  44113. {
  44114. side: {
  44115. height: math.unit(100, "feet"),
  44116. name: "Side",
  44117. image: {
  44118. source: "./media/characters/denora/side.svg",
  44119. extra: 875/803,
  44120. bottom: 9/884
  44121. }
  44122. },
  44123. },
  44124. [
  44125. {
  44126. name: "Standard",
  44127. height: math.unit(100, "feet"),
  44128. default: true
  44129. },
  44130. {
  44131. name: "Grand",
  44132. height: math.unit(1000, "feet")
  44133. },
  44134. {
  44135. name: "Conquering",
  44136. height: math.unit(10000, "feet")
  44137. },
  44138. ]
  44139. ))
  44140. characterMakers.push(() => makeCharacter(
  44141. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  44142. {
  44143. dressed: {
  44144. height: math.unit(8 + 5/12, "feet"),
  44145. weight: math.unit(700, "lb"),
  44146. name: "Dressed",
  44147. image: {
  44148. source: "./media/characters/kiva/dressed.svg",
  44149. extra: 1102/1055,
  44150. bottom: 60/1162
  44151. }
  44152. },
  44153. nude: {
  44154. height: math.unit(8 + 5/12, "feet"),
  44155. weight: math.unit(700, "lb"),
  44156. name: "Nude",
  44157. image: {
  44158. source: "./media/characters/kiva/nude.svg",
  44159. extra: 1102/1055,
  44160. bottom: 60/1162
  44161. }
  44162. },
  44163. },
  44164. [
  44165. {
  44166. name: "Base Height",
  44167. height: math.unit(8 + 5/12, "feet"),
  44168. default: true
  44169. },
  44170. {
  44171. name: "Macro",
  44172. height: math.unit(100, "feet")
  44173. },
  44174. {
  44175. name: "Max",
  44176. height: math.unit(3280, "feet")
  44177. },
  44178. ]
  44179. ))
  44180. characterMakers.push(() => makeCharacter(
  44181. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  44182. {
  44183. front: {
  44184. height: math.unit(6 + 8/12, "feet"),
  44185. weight: math.unit(250, "lb"),
  44186. name: "Front",
  44187. image: {
  44188. source: "./media/characters/ztragon/front.svg",
  44189. extra: 1825/1684,
  44190. bottom: 98/1923
  44191. }
  44192. },
  44193. },
  44194. [
  44195. {
  44196. name: "Normal",
  44197. height: math.unit(6 + 8/12, "feet"),
  44198. default: true
  44199. },
  44200. {
  44201. name: "Macro",
  44202. height: math.unit(80, "feet")
  44203. },
  44204. ]
  44205. ))
  44206. characterMakers.push(() => makeCharacter(
  44207. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  44208. {
  44209. front: {
  44210. height: math.unit(10.4, "feet"),
  44211. weight: math.unit(2, "tons"),
  44212. name: "Front",
  44213. image: {
  44214. source: "./media/characters/yesenia/front.svg",
  44215. extra: 1479/1474,
  44216. bottom: 233/1712
  44217. }
  44218. },
  44219. },
  44220. [
  44221. {
  44222. name: "Normal",
  44223. height: math.unit(10.4, "feet"),
  44224. default: true
  44225. },
  44226. ]
  44227. ))
  44228. characterMakers.push(() => makeCharacter(
  44229. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  44230. {
  44231. normal: {
  44232. height: math.unit(6 + 1/12, "feet"),
  44233. weight: math.unit(180, "lb"),
  44234. name: "Normal",
  44235. image: {
  44236. source: "./media/characters/leanne-lycheborne/normal.svg",
  44237. extra: 1748/1660,
  44238. bottom: 98/1846
  44239. }
  44240. },
  44241. were: {
  44242. height: math.unit(12, "feet"),
  44243. weight: math.unit(1600, "lb"),
  44244. name: "Were",
  44245. image: {
  44246. source: "./media/characters/leanne-lycheborne/were.svg",
  44247. extra: 1485/1432,
  44248. bottom: 66/1551
  44249. }
  44250. },
  44251. },
  44252. [
  44253. {
  44254. name: "Normal",
  44255. height: math.unit(6 + 1/12, "feet"),
  44256. default: true
  44257. },
  44258. ]
  44259. ))
  44260. characterMakers.push(() => makeCharacter(
  44261. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  44262. {
  44263. side: {
  44264. height: math.unit(13, "feet"),
  44265. name: "Side",
  44266. image: {
  44267. source: "./media/characters/kira-tyler/side.svg",
  44268. extra: 693/393,
  44269. bottom: 58/751
  44270. }
  44271. },
  44272. },
  44273. [
  44274. {
  44275. name: "Normal",
  44276. height: math.unit(13, "feet"),
  44277. default: true
  44278. },
  44279. ]
  44280. ))
  44281. characterMakers.push(() => makeCharacter(
  44282. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  44283. {
  44284. front: {
  44285. height: math.unit(10.3, "feet"),
  44286. weight: math.unit(150, "lb"),
  44287. name: "Front",
  44288. image: {
  44289. source: "./media/characters/blaze/front.svg",
  44290. extra: 1378/1286,
  44291. bottom: 172/1550
  44292. }
  44293. },
  44294. },
  44295. [
  44296. {
  44297. name: "Normal",
  44298. height: math.unit(10.3, "feet"),
  44299. default: true
  44300. },
  44301. ]
  44302. ))
  44303. characterMakers.push(() => makeCharacter(
  44304. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  44305. {
  44306. side: {
  44307. height: math.unit(2, "meters"),
  44308. weight: math.unit(400, "kg"),
  44309. name: "Side",
  44310. image: {
  44311. source: "./media/characters/anu/side.svg",
  44312. extra: 506/394,
  44313. bottom: 18/524
  44314. }
  44315. },
  44316. },
  44317. [
  44318. {
  44319. name: "Humanoid",
  44320. height: math.unit(2, "meters")
  44321. },
  44322. {
  44323. name: "Normal",
  44324. height: math.unit(5, "meters"),
  44325. default: true
  44326. },
  44327. ]
  44328. ))
  44329. characterMakers.push(() => makeCharacter(
  44330. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  44331. {
  44332. front: {
  44333. height: math.unit(5 + 5/12, "feet"),
  44334. weight: math.unit(170, "lb"),
  44335. name: "Front",
  44336. image: {
  44337. source: "./media/characters/synx-the-lynx/front.svg",
  44338. extra: 1893/1745,
  44339. bottom: 17/1910
  44340. }
  44341. },
  44342. side: {
  44343. height: math.unit(5 + 5/12, "feet"),
  44344. weight: math.unit(170, "lb"),
  44345. name: "Side",
  44346. image: {
  44347. source: "./media/characters/synx-the-lynx/side.svg",
  44348. extra: 1884/1740,
  44349. bottom: 39/1923
  44350. }
  44351. },
  44352. back: {
  44353. height: math.unit(5 + 5/12, "feet"),
  44354. weight: math.unit(170, "lb"),
  44355. name: "Back",
  44356. image: {
  44357. source: "./media/characters/synx-the-lynx/back.svg",
  44358. extra: 1903/1755,
  44359. bottom: 14/1917
  44360. }
  44361. },
  44362. },
  44363. [
  44364. {
  44365. name: "Normal",
  44366. height: math.unit(5 + 5/12, "feet"),
  44367. default: true
  44368. },
  44369. ]
  44370. ))
  44371. characterMakers.push(() => makeCharacter(
  44372. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  44373. {
  44374. back: {
  44375. height: math.unit(15, "feet"),
  44376. name: "Back",
  44377. image: {
  44378. source: "./media/characters/nadezda-fex/back.svg",
  44379. extra: 1695/1481,
  44380. bottom: 25/1720
  44381. }
  44382. },
  44383. },
  44384. [
  44385. {
  44386. name: "Normal",
  44387. height: math.unit(15, "feet"),
  44388. default: true
  44389. },
  44390. {
  44391. name: "Macro",
  44392. height: math.unit(2.5, "miles")
  44393. },
  44394. {
  44395. name: "Goddess",
  44396. height: math.unit(2, "multiverses")
  44397. },
  44398. ]
  44399. ))
  44400. characterMakers.push(() => makeCharacter(
  44401. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  44402. {
  44403. front: {
  44404. height: math.unit(216, "cm"),
  44405. name: "Front",
  44406. image: {
  44407. source: "./media/characters/lev/front.svg",
  44408. extra: 1728/1670,
  44409. bottom: 82/1810
  44410. }
  44411. },
  44412. back: {
  44413. height: math.unit(216, "cm"),
  44414. name: "Back",
  44415. image: {
  44416. source: "./media/characters/lev/back.svg",
  44417. extra: 1738/1675,
  44418. bottom: 24/1762
  44419. }
  44420. },
  44421. dressed: {
  44422. height: math.unit(216, "cm"),
  44423. name: "Dressed",
  44424. image: {
  44425. source: "./media/characters/lev/dressed.svg",
  44426. extra: 1397/1351,
  44427. bottom: 73/1470
  44428. }
  44429. },
  44430. head: {
  44431. height: math.unit(0.51, "meter"),
  44432. name: "Head",
  44433. image: {
  44434. source: "./media/characters/lev/head.svg"
  44435. }
  44436. },
  44437. },
  44438. [
  44439. {
  44440. name: "Normal",
  44441. height: math.unit(216, "cm"),
  44442. default: true
  44443. },
  44444. {
  44445. name: "Relatively Macro",
  44446. height: math.unit(80, "meters")
  44447. },
  44448. {
  44449. name: "Megamacro",
  44450. height: math.unit(21600, "meters")
  44451. },
  44452. {
  44453. name: "Megamacro+",
  44454. height: math.unit(64800, "meters")
  44455. },
  44456. ]
  44457. ))
  44458. characterMakers.push(() => makeCharacter(
  44459. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  44460. {
  44461. front: {
  44462. height: math.unit(2, "meters"),
  44463. weight: math.unit(80, "kg"),
  44464. name: "Front",
  44465. image: {
  44466. source: "./media/characters/moka/front.svg",
  44467. extra: 1337/1255,
  44468. bottom: 58/1395
  44469. }
  44470. },
  44471. },
  44472. [
  44473. {
  44474. name: "Micro",
  44475. height: math.unit(15, "cm")
  44476. },
  44477. {
  44478. name: "Normal",
  44479. height: math.unit(2, "meters"),
  44480. default: true
  44481. },
  44482. {
  44483. name: "Macro",
  44484. height: math.unit(20, "meters"),
  44485. },
  44486. ]
  44487. ))
  44488. characterMakers.push(() => makeCharacter(
  44489. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  44490. {
  44491. front: {
  44492. height: math.unit(9, "feet"),
  44493. weight: math.unit(240, "lb"),
  44494. name: "Front",
  44495. image: {
  44496. source: "./media/characters/kuzco/front.svg",
  44497. extra: 1593/1487,
  44498. bottom: 32/1625
  44499. }
  44500. },
  44501. side: {
  44502. height: math.unit(9, "feet"),
  44503. weight: math.unit(240, "lb"),
  44504. name: "Side",
  44505. image: {
  44506. source: "./media/characters/kuzco/side.svg",
  44507. extra: 1575/1485,
  44508. bottom: 30/1605
  44509. }
  44510. },
  44511. back: {
  44512. height: math.unit(9, "feet"),
  44513. weight: math.unit(240, "lb"),
  44514. name: "Back",
  44515. image: {
  44516. source: "./media/characters/kuzco/back.svg",
  44517. extra: 1603/1514,
  44518. bottom: 14/1617
  44519. }
  44520. },
  44521. },
  44522. [
  44523. {
  44524. name: "Normal",
  44525. height: math.unit(9, "feet"),
  44526. default: true
  44527. },
  44528. ]
  44529. ))
  44530. characterMakers.push(() => makeCharacter(
  44531. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  44532. {
  44533. side: {
  44534. height: math.unit(2, "meters"),
  44535. weight: math.unit(300, "kg"),
  44536. name: "Side",
  44537. image: {
  44538. source: "./media/characters/ceruleus/side.svg",
  44539. extra: 1068/974,
  44540. bottom: 126/1194
  44541. }
  44542. },
  44543. },
  44544. [
  44545. {
  44546. name: "Normal",
  44547. height: math.unit(16, "meters"),
  44548. default: true
  44549. },
  44550. ]
  44551. ))
  44552. characterMakers.push(() => makeCharacter(
  44553. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  44554. {
  44555. front: {
  44556. height: math.unit(9, "feet"),
  44557. weight: math.unit(500, "kg"),
  44558. name: "Front",
  44559. image: {
  44560. source: "./media/characters/acouya/front.svg",
  44561. extra: 1660/1473,
  44562. bottom: 28/1688
  44563. }
  44564. },
  44565. },
  44566. [
  44567. {
  44568. name: "Normal",
  44569. height: math.unit(9, "feet"),
  44570. default: true
  44571. },
  44572. ]
  44573. ))
  44574. characterMakers.push(() => makeCharacter(
  44575. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  44576. {
  44577. front: {
  44578. height: math.unit(5 + 6/12, "feet"),
  44579. weight: math.unit(195, "lb"),
  44580. name: "Front",
  44581. image: {
  44582. source: "./media/characters/vant/front.svg",
  44583. extra: 1396/1320,
  44584. bottom: 20/1416
  44585. }
  44586. },
  44587. back: {
  44588. height: math.unit(5 + 6/12, "feet"),
  44589. weight: math.unit(195, "lb"),
  44590. name: "Back",
  44591. image: {
  44592. source: "./media/characters/vant/back.svg",
  44593. extra: 1396/1320,
  44594. bottom: 20/1416
  44595. }
  44596. },
  44597. maw: {
  44598. height: math.unit(0.75, "feet"),
  44599. name: "Maw",
  44600. image: {
  44601. source: "./media/characters/vant/maw.svg"
  44602. }
  44603. },
  44604. paw: {
  44605. height: math.unit(1.07, "feet"),
  44606. name: "Paw",
  44607. image: {
  44608. source: "./media/characters/vant/paw.svg"
  44609. }
  44610. },
  44611. },
  44612. [
  44613. {
  44614. name: "Micro",
  44615. height: math.unit(0.25, "inches")
  44616. },
  44617. {
  44618. name: "Normal",
  44619. height: math.unit(5 + 6/12, "feet"),
  44620. default: true
  44621. },
  44622. {
  44623. name: "Macro",
  44624. height: math.unit(75, "feet")
  44625. },
  44626. ]
  44627. ))
  44628. characterMakers.push(() => makeCharacter(
  44629. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  44630. {
  44631. front: {
  44632. height: math.unit(30, "meters"),
  44633. weight: math.unit(363, "tons"),
  44634. name: "Front",
  44635. image: {
  44636. source: "./media/characters/ahra/front.svg",
  44637. extra: 1914/1814,
  44638. bottom: 46/1960
  44639. }
  44640. },
  44641. },
  44642. [
  44643. {
  44644. name: "Macro",
  44645. height: math.unit(30, "meters"),
  44646. default: true
  44647. },
  44648. ]
  44649. ))
  44650. characterMakers.push(() => makeCharacter(
  44651. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  44652. {
  44653. undressed: {
  44654. height: math.unit(2, "m"),
  44655. weight: math.unit(250, "kg"),
  44656. name: "Undressed",
  44657. image: {
  44658. source: "./media/characters/coriander/undressed.svg",
  44659. extra: 1757/1606,
  44660. bottom: 107/1864
  44661. }
  44662. },
  44663. dressed: {
  44664. height: math.unit(2, "m"),
  44665. weight: math.unit(250, "kg"),
  44666. name: "Dressed",
  44667. image: {
  44668. source: "./media/characters/coriander/dressed.svg",
  44669. extra: 1757/1606,
  44670. bottom: 107/1864
  44671. }
  44672. },
  44673. },
  44674. [
  44675. {
  44676. name: "Normal",
  44677. height: math.unit(4, "meters"),
  44678. default: true
  44679. },
  44680. {
  44681. name: "XL",
  44682. height: math.unit(6, "meters")
  44683. },
  44684. {
  44685. name: "XXL",
  44686. height: math.unit(8, "meters")
  44687. },
  44688. ]
  44689. ))
  44690. characterMakers.push(() => makeCharacter(
  44691. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  44692. {
  44693. front: {
  44694. height: math.unit(6, "feet"),
  44695. name: "Front",
  44696. image: {
  44697. source: "./media/characters/syrinx/front.svg",
  44698. extra: 1557/1259,
  44699. bottom: 171/1728
  44700. }
  44701. },
  44702. },
  44703. [
  44704. {
  44705. name: "Normal",
  44706. height: math.unit(6 + 3/12, "feet"),
  44707. default: true
  44708. },
  44709. ]
  44710. ))
  44711. characterMakers.push(() => makeCharacter(
  44712. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  44713. {
  44714. front: {
  44715. height: math.unit(11 + 6/12, "feet"),
  44716. weight: math.unit(1.5, "tons"),
  44717. name: "Front",
  44718. image: {
  44719. source: "./media/characters/bor/front.svg",
  44720. extra: 1189/1109,
  44721. bottom: 170/1359
  44722. }
  44723. },
  44724. },
  44725. [
  44726. {
  44727. name: "Normal",
  44728. height: math.unit(11 + 6/12, "feet"),
  44729. default: true
  44730. },
  44731. {
  44732. name: "Macro",
  44733. height: math.unit(32 + 9/12, "feet")
  44734. },
  44735. ]
  44736. ))
  44737. characterMakers.push(() => makeCharacter(
  44738. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  44739. {
  44740. anthro: {
  44741. height: math.unit(9, "feet"),
  44742. weight: math.unit(2076, "lb"),
  44743. name: "Anthro",
  44744. image: {
  44745. source: "./media/characters/abacus/anthro.svg",
  44746. extra: 1540/1494,
  44747. bottom: 233/1773
  44748. }
  44749. },
  44750. pigeon: {
  44751. height: math.unit(1, "feet"),
  44752. name: "Pigeon",
  44753. image: {
  44754. source: "./media/characters/abacus/pigeon.svg",
  44755. extra: 528/525,
  44756. bottom: 46/574
  44757. }
  44758. },
  44759. },
  44760. [
  44761. {
  44762. name: "Normal",
  44763. height: math.unit(9, "feet"),
  44764. default: true
  44765. },
  44766. ]
  44767. ))
  44768. characterMakers.push(() => makeCharacter(
  44769. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  44770. {
  44771. side: {
  44772. height: math.unit(6, "feet"),
  44773. name: "Side",
  44774. image: {
  44775. source: "./media/characters/delkhan/side.svg",
  44776. extra: 1884/1786,
  44777. bottom: 308/2192
  44778. }
  44779. },
  44780. head: {
  44781. height: math.unit(3.38, "feet"),
  44782. name: "Head",
  44783. image: {
  44784. source: "./media/characters/delkhan/head.svg"
  44785. }
  44786. },
  44787. },
  44788. [
  44789. {
  44790. name: "Normal",
  44791. height: math.unit(72, "feet"),
  44792. default: true
  44793. },
  44794. {
  44795. name: "Giant",
  44796. height: math.unit(172, "feet")
  44797. },
  44798. ]
  44799. ))
  44800. characterMakers.push(() => makeCharacter(
  44801. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  44802. {
  44803. standing: {
  44804. height: math.unit(6, "feet"),
  44805. name: "Standing",
  44806. image: {
  44807. source: "./media/characters/euchidat/standing.svg",
  44808. extra: 1612/1553,
  44809. bottom: 116/1728
  44810. }
  44811. },
  44812. leaning: {
  44813. height: math.unit(6, "feet"),
  44814. name: "Leaning",
  44815. image: {
  44816. source: "./media/characters/euchidat/leaning.svg",
  44817. extra: 1719/1674,
  44818. bottom: 27/1746
  44819. }
  44820. },
  44821. },
  44822. [
  44823. {
  44824. name: "Normal",
  44825. height: math.unit(175, "feet"),
  44826. default: true
  44827. },
  44828. {
  44829. name: "Megamacro",
  44830. height: math.unit(190, "miles")
  44831. },
  44832. {
  44833. name: "Gigamacro",
  44834. height: math.unit(190000, "miles")
  44835. },
  44836. ]
  44837. ))
  44838. characterMakers.push(() => makeCharacter(
  44839. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  44840. {
  44841. front: {
  44842. height: math.unit(6, "feet"),
  44843. weight: math.unit(150, "lb"),
  44844. name: "Front",
  44845. image: {
  44846. source: "./media/characters/rebecca-stack/front.svg",
  44847. extra: 1256/1201,
  44848. bottom: 18/1274
  44849. }
  44850. },
  44851. },
  44852. [
  44853. {
  44854. name: "Normal",
  44855. height: math.unit(5 + 8/12, "feet"),
  44856. default: true
  44857. },
  44858. {
  44859. name: "Demolitionist",
  44860. height: math.unit(200, "feet")
  44861. },
  44862. {
  44863. name: "Out of Control",
  44864. height: math.unit(2, "miles")
  44865. },
  44866. {
  44867. name: "Giga",
  44868. height: math.unit(7200, "miles")
  44869. },
  44870. ]
  44871. ))
  44872. characterMakers.push(() => makeCharacter(
  44873. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  44874. {
  44875. front: {
  44876. height: math.unit(6, "feet"),
  44877. weight: math.unit(150, "lb"),
  44878. name: "Front",
  44879. image: {
  44880. source: "./media/characters/jenny-cartwright/front.svg",
  44881. extra: 1384/1376,
  44882. bottom: 58/1442
  44883. }
  44884. },
  44885. },
  44886. [
  44887. {
  44888. name: "Normal",
  44889. height: math.unit(6 + 7/12, "feet"),
  44890. default: true
  44891. },
  44892. {
  44893. name: "Librarian",
  44894. height: math.unit(55, "feet")
  44895. },
  44896. {
  44897. name: "Sightseer",
  44898. height: math.unit(50, "miles")
  44899. },
  44900. {
  44901. name: "Giga",
  44902. height: math.unit(30000, "miles")
  44903. },
  44904. ]
  44905. ))
  44906. characterMakers.push(() => makeCharacter(
  44907. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  44908. {
  44909. nude: {
  44910. height: math.unit(8, "feet"),
  44911. weight: math.unit(225, "lb"),
  44912. name: "Nude",
  44913. image: {
  44914. source: "./media/characters/marvy/nude.svg",
  44915. extra: 1900/1683,
  44916. bottom: 89/1989
  44917. }
  44918. },
  44919. dressed: {
  44920. height: math.unit(8, "feet"),
  44921. weight: math.unit(225, "lb"),
  44922. name: "Dressed",
  44923. image: {
  44924. source: "./media/characters/marvy/dressed.svg",
  44925. extra: 1900/1683,
  44926. bottom: 89/1989
  44927. }
  44928. },
  44929. head: {
  44930. height: math.unit(2.85, "feet"),
  44931. name: "Head",
  44932. image: {
  44933. source: "./media/characters/marvy/head.svg"
  44934. }
  44935. },
  44936. },
  44937. [
  44938. {
  44939. name: "Normal",
  44940. height: math.unit(8, "feet"),
  44941. default: true
  44942. },
  44943. ]
  44944. ))
  44945. characterMakers.push(() => makeCharacter(
  44946. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  44947. {
  44948. front: {
  44949. height: math.unit(8, "feet"),
  44950. weight: math.unit(250, "lb"),
  44951. name: "Front",
  44952. image: {
  44953. source: "./media/characters/leah/front.svg",
  44954. extra: 1257/1149,
  44955. bottom: 109/1366
  44956. }
  44957. },
  44958. },
  44959. [
  44960. {
  44961. name: "Normal",
  44962. height: math.unit(8, "feet"),
  44963. default: true
  44964. },
  44965. {
  44966. name: "Minimacro",
  44967. height: math.unit(40, "feet")
  44968. },
  44969. {
  44970. name: "Macro",
  44971. height: math.unit(124, "feet")
  44972. },
  44973. {
  44974. name: "Megamacro",
  44975. height: math.unit(850, "feet")
  44976. },
  44977. ]
  44978. ))
  44979. characterMakers.push(() => makeCharacter(
  44980. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  44981. {
  44982. side: {
  44983. height: math.unit(13 + 6/12, "feet"),
  44984. weight: math.unit(3200, "lb"),
  44985. name: "Side",
  44986. image: {
  44987. source: "./media/characters/alvir/side.svg",
  44988. extra: 896/589,
  44989. bottom: 26/922
  44990. }
  44991. },
  44992. },
  44993. [
  44994. {
  44995. name: "Normal",
  44996. height: math.unit(13 + 6/12, "feet"),
  44997. default: true
  44998. },
  44999. ]
  45000. ))
  45001. characterMakers.push(() => makeCharacter(
  45002. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  45003. {
  45004. front: {
  45005. height: math.unit(5 + 4/12, "feet"),
  45006. weight: math.unit(236, "lb"),
  45007. name: "Front",
  45008. image: {
  45009. source: "./media/characters/zaina-khalil/front.svg",
  45010. extra: 1533/1485,
  45011. bottom: 94/1627
  45012. }
  45013. },
  45014. side: {
  45015. height: math.unit(5 + 4/12, "feet"),
  45016. weight: math.unit(236, "lb"),
  45017. name: "Side",
  45018. image: {
  45019. source: "./media/characters/zaina-khalil/side.svg",
  45020. extra: 1537/1498,
  45021. bottom: 66/1603
  45022. }
  45023. },
  45024. back: {
  45025. height: math.unit(5 + 4/12, "feet"),
  45026. weight: math.unit(236, "lb"),
  45027. name: "Back",
  45028. image: {
  45029. source: "./media/characters/zaina-khalil/back.svg",
  45030. extra: 1546/1494,
  45031. bottom: 89/1635
  45032. }
  45033. },
  45034. },
  45035. [
  45036. {
  45037. name: "Normal",
  45038. height: math.unit(5 + 4/12, "feet"),
  45039. default: true
  45040. },
  45041. ]
  45042. ))
  45043. characterMakers.push(() => makeCharacter(
  45044. { name: "Terry", species: ["husky"], tags: ["taur"] },
  45045. {
  45046. side: {
  45047. height: math.unit(12, "feet"),
  45048. weight: math.unit(4000, "lb"),
  45049. name: "Side",
  45050. image: {
  45051. source: "./media/characters/terry/side.svg",
  45052. extra: 1518/1439,
  45053. bottom: 149/1667
  45054. }
  45055. },
  45056. },
  45057. [
  45058. {
  45059. name: "Normal",
  45060. height: math.unit(12, "feet"),
  45061. default: true
  45062. },
  45063. ]
  45064. ))
  45065. characterMakers.push(() => makeCharacter(
  45066. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  45067. {
  45068. front: {
  45069. height: math.unit(12, "feet"),
  45070. weight: math.unit(1500, "lb"),
  45071. name: "Front",
  45072. image: {
  45073. source: "./media/characters/kahea/front.svg",
  45074. extra: 1722/1617,
  45075. bottom: 179/1901
  45076. }
  45077. },
  45078. },
  45079. [
  45080. {
  45081. name: "Normal",
  45082. height: math.unit(12, "feet"),
  45083. default: true
  45084. },
  45085. ]
  45086. ))
  45087. characterMakers.push(() => makeCharacter(
  45088. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  45089. {
  45090. demonFront: {
  45091. height: math.unit(36, "feet"),
  45092. name: "Front",
  45093. image: {
  45094. source: "./media/characters/alex-xuria/demon-front.svg",
  45095. extra: 1705/1673,
  45096. bottom: 198/1903
  45097. },
  45098. form: "demon",
  45099. default: true
  45100. },
  45101. demonBack: {
  45102. height: math.unit(36, "feet"),
  45103. name: "Back",
  45104. image: {
  45105. source: "./media/characters/alex-xuria/demon-back.svg",
  45106. extra: 1725/1693,
  45107. bottom: 70/1795
  45108. },
  45109. form: "demon"
  45110. },
  45111. demonHead: {
  45112. height: math.unit(2.14, "meters"),
  45113. name: "Head",
  45114. image: {
  45115. source: "./media/characters/alex-xuria/demon-head.svg"
  45116. },
  45117. form: "demon"
  45118. },
  45119. demonHand: {
  45120. height: math.unit(1.61, "meters"),
  45121. name: "Hand",
  45122. image: {
  45123. source: "./media/characters/alex-xuria/demon-hand.svg"
  45124. },
  45125. form: "demon"
  45126. },
  45127. demonPaw: {
  45128. height: math.unit(1.35, "meters"),
  45129. name: "Paw",
  45130. image: {
  45131. source: "./media/characters/alex-xuria/demon-paw.svg"
  45132. },
  45133. form: "demon"
  45134. },
  45135. demonFoot: {
  45136. height: math.unit(2.2, "meters"),
  45137. name: "Foot",
  45138. image: {
  45139. source: "./media/characters/alex-xuria/demon-foot.svg"
  45140. },
  45141. form: "demon"
  45142. },
  45143. demonCock: {
  45144. height: math.unit(1.74, "meters"),
  45145. name: "Cock",
  45146. image: {
  45147. source: "./media/characters/alex-xuria/demon-cock.svg"
  45148. },
  45149. form: "demon"
  45150. },
  45151. demonTailClosed: {
  45152. height: math.unit(1.47, "meters"),
  45153. name: "Tail (Closed)",
  45154. image: {
  45155. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  45156. },
  45157. form: "demon"
  45158. },
  45159. demonTailOpen: {
  45160. height: math.unit(2.85, "meters"),
  45161. name: "Tail (Open)",
  45162. image: {
  45163. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  45164. },
  45165. form: "demon"
  45166. },
  45167. incubusFront: {
  45168. height: math.unit(12, "feet"),
  45169. name: "Front",
  45170. image: {
  45171. source: "./media/characters/alex-xuria/incubus-front.svg",
  45172. extra: 1754/1677,
  45173. bottom: 125/1879
  45174. },
  45175. form: "incubus",
  45176. default: true
  45177. },
  45178. incubusBack: {
  45179. height: math.unit(12, "feet"),
  45180. name: "Back",
  45181. image: {
  45182. source: "./media/characters/alex-xuria/incubus-back.svg",
  45183. extra: 1702/1647,
  45184. bottom: 30/1732
  45185. },
  45186. form: "incubus"
  45187. },
  45188. incubusHead: {
  45189. height: math.unit(3.45, "feet"),
  45190. name: "Head",
  45191. image: {
  45192. source: "./media/characters/alex-xuria/incubus-head.svg"
  45193. },
  45194. form: "incubus"
  45195. },
  45196. rabbitFront: {
  45197. height: math.unit(6, "feet"),
  45198. name: "Front",
  45199. image: {
  45200. source: "./media/characters/alex-xuria/rabbit-front.svg",
  45201. extra: 1369/1349,
  45202. bottom: 45/1414
  45203. },
  45204. form: "rabbit",
  45205. default: true
  45206. },
  45207. rabbitSide: {
  45208. height: math.unit(6, "feet"),
  45209. name: "Side",
  45210. image: {
  45211. source: "./media/characters/alex-xuria/rabbit-side.svg",
  45212. extra: 1370/1356,
  45213. bottom: 37/1407
  45214. },
  45215. form: "rabbit"
  45216. },
  45217. rabbitBack: {
  45218. height: math.unit(6, "feet"),
  45219. name: "Back",
  45220. image: {
  45221. source: "./media/characters/alex-xuria/rabbit-back.svg",
  45222. extra: 1375/1358,
  45223. bottom: 43/1418
  45224. },
  45225. form: "rabbit"
  45226. },
  45227. },
  45228. [
  45229. {
  45230. name: "Normal",
  45231. height: math.unit(6, "feet"),
  45232. default: true,
  45233. form: "rabbit"
  45234. },
  45235. {
  45236. name: "Incubus",
  45237. height: math.unit(12, "feet"),
  45238. default: true,
  45239. form: "incubus"
  45240. },
  45241. {
  45242. name: "Demon",
  45243. height: math.unit(36, "feet"),
  45244. default: true,
  45245. form: "demon"
  45246. }
  45247. ],
  45248. {
  45249. "demon": {
  45250. name: "Demon",
  45251. default: true
  45252. },
  45253. "incubus": {
  45254. name: "Incubus",
  45255. },
  45256. "rabbit": {
  45257. name: "Rabbit"
  45258. }
  45259. }
  45260. ))
  45261. characterMakers.push(() => makeCharacter(
  45262. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  45263. {
  45264. front: {
  45265. height: math.unit(7 + 5/12, "feet"),
  45266. weight: math.unit(510, "lb"),
  45267. name: "Front",
  45268. image: {
  45269. source: "./media/characters/syrup/front.svg",
  45270. extra: 932/916,
  45271. bottom: 26/958
  45272. }
  45273. },
  45274. },
  45275. [
  45276. {
  45277. name: "Normal",
  45278. height: math.unit(7 + 5/12, "feet"),
  45279. default: true
  45280. },
  45281. {
  45282. name: "Big",
  45283. height: math.unit(50, "feet")
  45284. },
  45285. {
  45286. name: "Macro",
  45287. height: math.unit(300, "feet")
  45288. },
  45289. {
  45290. name: "Megamacro",
  45291. height: math.unit(1, "mile")
  45292. },
  45293. ]
  45294. ))
  45295. characterMakers.push(() => makeCharacter(
  45296. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  45297. {
  45298. front: {
  45299. height: math.unit(6 + 9/12, "feet"),
  45300. name: "Front",
  45301. image: {
  45302. source: "./media/characters/zeimne/front.svg",
  45303. extra: 1969/1806,
  45304. bottom: 53/2022
  45305. }
  45306. },
  45307. },
  45308. [
  45309. {
  45310. name: "Normal",
  45311. height: math.unit(6 + 9/12, "feet"),
  45312. default: true
  45313. },
  45314. {
  45315. name: "Giant",
  45316. height: math.unit(550, "feet")
  45317. },
  45318. {
  45319. name: "Mega",
  45320. height: math.unit(3, "miles")
  45321. },
  45322. {
  45323. name: "Giga",
  45324. height: math.unit(250, "miles")
  45325. },
  45326. {
  45327. name: "Tera",
  45328. height: math.unit(1, "AU")
  45329. },
  45330. ]
  45331. ))
  45332. characterMakers.push(() => makeCharacter(
  45333. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  45334. {
  45335. front: {
  45336. height: math.unit(5 + 2/12, "feet"),
  45337. name: "Front",
  45338. image: {
  45339. source: "./media/characters/grar/front.svg",
  45340. extra: 1331/1119,
  45341. bottom: 60/1391
  45342. }
  45343. },
  45344. back: {
  45345. height: math.unit(5 + 2/12, "feet"),
  45346. name: "Back",
  45347. image: {
  45348. source: "./media/characters/grar/back.svg",
  45349. extra: 1385/1169,
  45350. bottom: 23/1408
  45351. }
  45352. },
  45353. },
  45354. [
  45355. {
  45356. name: "Normal",
  45357. height: math.unit(5 + 2/12, "feet"),
  45358. default: true
  45359. },
  45360. ]
  45361. ))
  45362. characterMakers.push(() => makeCharacter(
  45363. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  45364. {
  45365. front: {
  45366. height: math.unit(13 + 7/12, "feet"),
  45367. weight: math.unit(2200, "lb"),
  45368. name: "Front",
  45369. image: {
  45370. source: "./media/characters/endraya/front.svg",
  45371. extra: 1289/1215,
  45372. bottom: 50/1339
  45373. }
  45374. },
  45375. nude: {
  45376. height: math.unit(13 + 7/12, "feet"),
  45377. weight: math.unit(2200, "lb"),
  45378. name: "Nude",
  45379. image: {
  45380. source: "./media/characters/endraya/nude.svg",
  45381. extra: 1247/1171,
  45382. bottom: 40/1287
  45383. }
  45384. },
  45385. head: {
  45386. height: math.unit(2.6, "feet"),
  45387. name: "Head",
  45388. image: {
  45389. source: "./media/characters/endraya/head.svg"
  45390. }
  45391. },
  45392. slit: {
  45393. height: math.unit(3.4, "feet"),
  45394. name: "Slit",
  45395. image: {
  45396. source: "./media/characters/endraya/slit.svg"
  45397. }
  45398. },
  45399. },
  45400. [
  45401. {
  45402. name: "Normal",
  45403. height: math.unit(13 + 7/12, "feet"),
  45404. default: true
  45405. },
  45406. {
  45407. name: "Macro",
  45408. height: math.unit(200, "feet")
  45409. },
  45410. ]
  45411. ))
  45412. characterMakers.push(() => makeCharacter(
  45413. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  45414. {
  45415. front: {
  45416. height: math.unit(412, "meters"),
  45417. name: "Front",
  45418. image: {
  45419. source: "./media/characters/rodryana/front.svg",
  45420. extra: 2002/1921,
  45421. bottom: 53/2055
  45422. }
  45423. },
  45424. back: {
  45425. height: math.unit(412, "meters"),
  45426. name: "Back",
  45427. image: {
  45428. source: "./media/characters/rodryana/back.svg",
  45429. extra: 1993/1926,
  45430. bottom: 48/2041
  45431. }
  45432. },
  45433. maw: {
  45434. height: math.unit(45, "meters"),
  45435. name: "Maw",
  45436. image: {
  45437. source: "./media/characters/rodryana/maw.svg"
  45438. }
  45439. },
  45440. slit: {
  45441. height: math.unit(72, "meters"),
  45442. name: "Slit",
  45443. image: {
  45444. source: "./media/characters/rodryana/slit.svg"
  45445. }
  45446. },
  45447. },
  45448. [
  45449. {
  45450. name: "Macro",
  45451. height: math.unit(412, "meters"),
  45452. default: true
  45453. },
  45454. ]
  45455. ))
  45456. characterMakers.push(() => makeCharacter(
  45457. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  45458. {
  45459. front: {
  45460. height: math.unit(6, "feet"),
  45461. weight: math.unit(1000, "lb"),
  45462. name: "Front",
  45463. image: {
  45464. source: "./media/characters/asaya/front.svg",
  45465. extra: 1460/1200,
  45466. bottom: 71/1531
  45467. }
  45468. },
  45469. },
  45470. [
  45471. {
  45472. name: "Normal",
  45473. height: math.unit(8, "km"),
  45474. default: true
  45475. },
  45476. ]
  45477. ))
  45478. characterMakers.push(() => makeCharacter(
  45479. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  45480. {
  45481. front: {
  45482. height: math.unit(3.5, "meters"),
  45483. name: "Front",
  45484. image: {
  45485. source: "./media/characters/sarzu-and-israz/front.svg",
  45486. extra: 1570/1558,
  45487. bottom: 150/1720
  45488. },
  45489. },
  45490. back: {
  45491. height: math.unit(3.5, "meters"),
  45492. name: "Back",
  45493. image: {
  45494. source: "./media/characters/sarzu-and-israz/back.svg",
  45495. extra: 1523/1509,
  45496. bottom: 132/1655
  45497. },
  45498. },
  45499. frontFemale: {
  45500. height: math.unit(3.5, "meters"),
  45501. name: "Front (Female)",
  45502. image: {
  45503. source: "./media/characters/sarzu-and-israz/front-female.svg",
  45504. extra: 1570/1558,
  45505. bottom: 150/1720
  45506. },
  45507. },
  45508. frontHerm: {
  45509. height: math.unit(3.5, "meters"),
  45510. name: "Front (Herm)",
  45511. image: {
  45512. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  45513. extra: 1570/1558,
  45514. bottom: 150/1720
  45515. },
  45516. },
  45517. },
  45518. [
  45519. {
  45520. name: "Normal",
  45521. height: math.unit(3.5, "meters"),
  45522. default: true,
  45523. },
  45524. {
  45525. name: "Macro",
  45526. height: math.unit(65.5, "meters"),
  45527. },
  45528. ],
  45529. ))
  45530. characterMakers.push(() => makeCharacter(
  45531. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  45532. {
  45533. front: {
  45534. height: math.unit(6, "feet"),
  45535. weight: math.unit(250, "lb"),
  45536. name: "Front",
  45537. image: {
  45538. source: "./media/characters/zenimma/front.svg",
  45539. extra: 1346/1320,
  45540. bottom: 58/1404
  45541. }
  45542. },
  45543. back: {
  45544. height: math.unit(6, "feet"),
  45545. weight: math.unit(250, "lb"),
  45546. name: "Back",
  45547. image: {
  45548. source: "./media/characters/zenimma/back.svg",
  45549. extra: 1324/1308,
  45550. bottom: 44/1368
  45551. }
  45552. },
  45553. dick: {
  45554. height: math.unit(1.44, "feet"),
  45555. name: "Dick",
  45556. image: {
  45557. source: "./media/characters/zenimma/dick.svg"
  45558. }
  45559. },
  45560. },
  45561. [
  45562. {
  45563. name: "Canon Height",
  45564. height: math.unit(66, "miles"),
  45565. default: true
  45566. },
  45567. ]
  45568. ))
  45569. characterMakers.push(() => makeCharacter(
  45570. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  45571. {
  45572. nude: {
  45573. height: math.unit(6, "feet"),
  45574. weight: math.unit(150, "lb"),
  45575. name: "Nude",
  45576. image: {
  45577. source: "./media/characters/shavon/nude.svg",
  45578. extra: 1242/1096,
  45579. bottom: 98/1340
  45580. }
  45581. },
  45582. dressed: {
  45583. height: math.unit(6, "feet"),
  45584. weight: math.unit(150, "lb"),
  45585. name: "Dressed",
  45586. image: {
  45587. source: "./media/characters/shavon/dressed.svg",
  45588. extra: 1242/1096,
  45589. bottom: 98/1340
  45590. }
  45591. },
  45592. },
  45593. [
  45594. {
  45595. name: "Macro",
  45596. height: math.unit(255, "feet"),
  45597. default: true
  45598. },
  45599. ]
  45600. ))
  45601. characterMakers.push(() => makeCharacter(
  45602. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  45603. {
  45604. front: {
  45605. height: math.unit(6, "feet"),
  45606. name: "Front",
  45607. image: {
  45608. source: "./media/characters/steph/front.svg",
  45609. extra: 1430/1330,
  45610. bottom: 54/1484
  45611. }
  45612. },
  45613. },
  45614. [
  45615. {
  45616. name: "Normal",
  45617. height: math.unit(6, "feet"),
  45618. default: true
  45619. },
  45620. ]
  45621. ))
  45622. characterMakers.push(() => makeCharacter(
  45623. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  45624. {
  45625. front: {
  45626. height: math.unit(9, "feet"),
  45627. weight: math.unit(400, "lb"),
  45628. name: "Front",
  45629. image: {
  45630. source: "./media/characters/kil'aman/front.svg",
  45631. extra: 1210/1159,
  45632. bottom: 109/1319
  45633. }
  45634. },
  45635. head: {
  45636. height: math.unit(2.14, "feet"),
  45637. name: "Head",
  45638. image: {
  45639. source: "./media/characters/kil'aman/head.svg"
  45640. }
  45641. },
  45642. maw: {
  45643. height: math.unit(1.21, "feet"),
  45644. name: "Maw",
  45645. image: {
  45646. source: "./media/characters/kil'aman/maw.svg"
  45647. }
  45648. },
  45649. foot: {
  45650. height: math.unit(1.7, "feet"),
  45651. name: "Foot",
  45652. image: {
  45653. source: "./media/characters/kil'aman/foot.svg"
  45654. }
  45655. },
  45656. dick: {
  45657. height: math.unit(2.1, "feet"),
  45658. name: "Dick",
  45659. image: {
  45660. source: "./media/characters/kil'aman/dick.svg"
  45661. }
  45662. },
  45663. },
  45664. [
  45665. {
  45666. name: "Normal",
  45667. height: math.unit(9, "feet")
  45668. },
  45669. {
  45670. name: "Canon Height",
  45671. height: math.unit(10, "miles"),
  45672. default: true
  45673. },
  45674. {
  45675. name: "Maximum",
  45676. height: math.unit(6e9, "miles")
  45677. },
  45678. ]
  45679. ))
  45680. //characters
  45681. function makeCharacters() {
  45682. const results = [];
  45683. characterMakers.forEach(character => {
  45684. results.push(character());
  45685. });
  45686. return results;
  45687. }