less copy protection, more size visualization
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 

47200 satır
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. "utahraptor": {
  1832. name: "Utahraptor",
  1833. parents: ["raptor"]
  1834. },
  1835. "indian-giant-squirrel": {
  1836. name: "Indian Giant Squirrel",
  1837. parents: ["squirrel"]
  1838. },
  1839. "golden-retriever": {
  1840. name: "Golden Retriever",
  1841. parents: ["dog"]
  1842. },
  1843. }
  1844. //species
  1845. function getSpeciesInfo(speciesList) {
  1846. let result = new Set();
  1847. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1848. result.add(entry)
  1849. });
  1850. return Array.from(result);
  1851. };
  1852. function getSpeciesInfoHelper(species) {
  1853. if (!speciesData[species]) {
  1854. console.warn(species + " doesn't exist");
  1855. return [];
  1856. }
  1857. if (speciesData[species].parents) {
  1858. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1859. } else {
  1860. return [species];
  1861. }
  1862. }
  1863. characterMakers.push(() => makeCharacter(
  1864. {
  1865. name: "Fen",
  1866. species: ["crux"],
  1867. description: {
  1868. title: "Bio",
  1869. text: "Very furry. Sheds on everything."
  1870. },
  1871. tags: [
  1872. "anthro",
  1873. "goo"
  1874. ]
  1875. },
  1876. {
  1877. front: {
  1878. height: math.unit(12, "feet"),
  1879. weight: math.unit(2400, "lb"),
  1880. name: "Front",
  1881. image: {
  1882. source: "./media/characters/fen/front.svg",
  1883. extra: 1804/1562,
  1884. bottom: 205/2009
  1885. }
  1886. },
  1887. diving: {
  1888. height: math.unit(4.9, "meters"),
  1889. weight: math.unit(2400, "lb"),
  1890. name: "Diving",
  1891. image: {
  1892. source: "./media/characters/fen/diving.svg"
  1893. }
  1894. },
  1895. goo: {
  1896. height: math.unit(12, "feet"),
  1897. weight: math.unit(3000, "lb"),
  1898. capacity: math.unit(6, "people"),
  1899. name: "Goo",
  1900. image: {
  1901. source: "./media/characters/fen/goo.svg",
  1902. extra: 1307/1071,
  1903. bottom: 134/1441
  1904. }
  1905. },
  1906. maw: {
  1907. height: math.unit(5.03, "feet"),
  1908. name: "Maw",
  1909. image: {
  1910. source: "./media/characters/fen/maw.svg"
  1911. }
  1912. },
  1913. gooCeiling: {
  1914. height: math.unit(6.6, "feet"),
  1915. weight: math.unit(3000, "lb"),
  1916. capacity: math.unit(6, "people"),
  1917. name: "Goo (Ceiling)",
  1918. image: {
  1919. source: "./media/characters/fen/goo-ceiling.svg"
  1920. }
  1921. },
  1922. back: {
  1923. height: math.unit(12, "feet"),
  1924. weight: math.unit(2400, "lb"),
  1925. name: "Back",
  1926. image: {
  1927. source: "./media/characters/fen/back.svg",
  1928. },
  1929. info: {
  1930. description: {
  1931. mode: "append",
  1932. text: "\n\nHe is not currently looking at you."
  1933. }
  1934. }
  1935. },
  1936. full: {
  1937. height: math.unit(1.6, "meter"),
  1938. weight: math.unit(3200, "lb"),
  1939. name: "Full",
  1940. image: {
  1941. source: "./media/characters/fen/full.svg",
  1942. extra: 1133/859,
  1943. bottom: 145/1278
  1944. },
  1945. info: {
  1946. description: {
  1947. mode: "append",
  1948. text: "\n\nMunch."
  1949. }
  1950. }
  1951. },
  1952. gooLounging: {
  1953. height: math.unit(4.53, "feet"),
  1954. weight: math.unit(3000, "lb"),
  1955. capacity: math.unit(6, "people"),
  1956. name: "Goo (Lounging)",
  1957. image: {
  1958. source: "./media/characters/fen/goo.svg",
  1959. bottom: 116 / 613
  1960. }
  1961. },
  1962. lounging: {
  1963. height: math.unit(10.52, "feet"),
  1964. weight: math.unit(2400, "lb"),
  1965. name: "Lounging",
  1966. image: {
  1967. source: "./media/characters/fen/lounging.svg"
  1968. }
  1969. },
  1970. },
  1971. [
  1972. {
  1973. name: "Small",
  1974. height: math.unit(2.2428, "meter")
  1975. },
  1976. {
  1977. name: "Normal",
  1978. height: math.unit(12, "feet"),
  1979. default: true,
  1980. },
  1981. {
  1982. name: "Big",
  1983. height: math.unit(20, "feet")
  1984. },
  1985. {
  1986. name: "Minimacro",
  1987. height: math.unit(40, "feet"),
  1988. info: {
  1989. description: {
  1990. mode: "append",
  1991. text: "\n\nTOO DAMN BIG"
  1992. }
  1993. }
  1994. },
  1995. {
  1996. name: "Macro",
  1997. height: math.unit(100, "feet"),
  1998. info: {
  1999. description: {
  2000. mode: "append",
  2001. text: "\n\nTOO DAMN BIG"
  2002. }
  2003. }
  2004. },
  2005. {
  2006. name: "Megamacro",
  2007. height: math.unit(2, "miles")
  2008. },
  2009. {
  2010. name: "Gigamacro",
  2011. height: math.unit(10, "earths")
  2012. },
  2013. ]
  2014. ))
  2015. characterMakers.push(() => makeCharacter(
  2016. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2017. {
  2018. front: {
  2019. height: math.unit(183, "cm"),
  2020. weight: math.unit(80, "kg"),
  2021. name: "Front",
  2022. image: {
  2023. source: "./media/characters/sofia-fluttertail/front.svg",
  2024. bottom: 0.01,
  2025. extra: 2154 / 2081
  2026. }
  2027. },
  2028. frontAlt: {
  2029. height: math.unit(183, "cm"),
  2030. weight: math.unit(80, "kg"),
  2031. name: "Front (alt)",
  2032. image: {
  2033. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2034. }
  2035. },
  2036. back: {
  2037. height: math.unit(183, "cm"),
  2038. weight: math.unit(80, "kg"),
  2039. name: "Back",
  2040. image: {
  2041. source: "./media/characters/sofia-fluttertail/back.svg"
  2042. }
  2043. },
  2044. kneeling: {
  2045. height: math.unit(125, "cm"),
  2046. weight: math.unit(80, "kg"),
  2047. name: "Kneeling",
  2048. image: {
  2049. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2050. extra: 1033 / 977,
  2051. bottom: 23.7 / 1057
  2052. }
  2053. },
  2054. maw: {
  2055. height: math.unit(183 / 5, "cm"),
  2056. name: "Maw",
  2057. image: {
  2058. source: "./media/characters/sofia-fluttertail/maw.svg"
  2059. }
  2060. },
  2061. mawcloseup: {
  2062. height: math.unit(183 / 5 * 0.41, "cm"),
  2063. name: "Maw (Closeup)",
  2064. image: {
  2065. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2066. }
  2067. },
  2068. paws: {
  2069. height: math.unit(1.17, "feet"),
  2070. name: "Paws",
  2071. image: {
  2072. source: "./media/characters/sofia-fluttertail/paws.svg",
  2073. extra: 851 / 851,
  2074. bottom: 17 / 868
  2075. }
  2076. },
  2077. },
  2078. [
  2079. {
  2080. name: "Normal",
  2081. height: math.unit(1.83, "meter")
  2082. },
  2083. {
  2084. name: "Size Thief",
  2085. height: math.unit(18, "feet")
  2086. },
  2087. {
  2088. name: "50 Foot Collie",
  2089. height: math.unit(50, "feet")
  2090. },
  2091. {
  2092. name: "Macro",
  2093. height: math.unit(96, "feet"),
  2094. default: true
  2095. },
  2096. {
  2097. name: "Megamerger",
  2098. height: math.unit(650, "feet")
  2099. },
  2100. ]
  2101. ))
  2102. characterMakers.push(() => makeCharacter(
  2103. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2104. {
  2105. front: {
  2106. height: math.unit(7, "feet"),
  2107. weight: math.unit(100, "kg"),
  2108. name: "Front",
  2109. image: {
  2110. source: "./media/characters/march/front.svg",
  2111. extra: 1992/1851,
  2112. bottom: 39/2031
  2113. }
  2114. },
  2115. foot: {
  2116. height: math.unit(0.9, "feet"),
  2117. name: "Foot",
  2118. image: {
  2119. source: "./media/characters/march/foot.svg"
  2120. }
  2121. },
  2122. },
  2123. [
  2124. {
  2125. name: "Normal",
  2126. height: math.unit(7.9, "feet")
  2127. },
  2128. {
  2129. name: "Macro",
  2130. height: math.unit(220, "meters")
  2131. },
  2132. {
  2133. name: "Megamacro",
  2134. height: math.unit(2.98, "km"),
  2135. default: true
  2136. },
  2137. {
  2138. name: "Gigamacro",
  2139. height: math.unit(15963, "km")
  2140. },
  2141. {
  2142. name: "Teramacro",
  2143. height: math.unit(2980000000, "km")
  2144. },
  2145. {
  2146. name: "Examacro",
  2147. height: math.unit(250, "parsecs")
  2148. },
  2149. ]
  2150. ))
  2151. characterMakers.push(() => makeCharacter(
  2152. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2153. {
  2154. front: {
  2155. height: math.unit(6, "feet"),
  2156. weight: math.unit(60, "kg"),
  2157. name: "Front",
  2158. image: {
  2159. source: "./media/characters/noir/front.svg",
  2160. extra: 1,
  2161. bottom: 0.032
  2162. }
  2163. },
  2164. },
  2165. [
  2166. {
  2167. name: "Normal",
  2168. height: math.unit(6.6, "feet")
  2169. },
  2170. {
  2171. name: "Macro",
  2172. height: math.unit(500, "feet")
  2173. },
  2174. {
  2175. name: "Megamacro",
  2176. height: math.unit(2.5, "km"),
  2177. default: true
  2178. },
  2179. {
  2180. name: "Gigamacro",
  2181. height: math.unit(22500, "km")
  2182. },
  2183. {
  2184. name: "Teramacro",
  2185. height: math.unit(2500000000, "km")
  2186. },
  2187. {
  2188. name: "Examacro",
  2189. height: math.unit(200, "parsecs")
  2190. },
  2191. ]
  2192. ))
  2193. characterMakers.push(() => makeCharacter(
  2194. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2195. {
  2196. front: {
  2197. height: math.unit(7, "feet"),
  2198. weight: math.unit(100, "kg"),
  2199. name: "Front",
  2200. image: {
  2201. source: "./media/characters/okuri/front.svg",
  2202. extra: 1,
  2203. bottom: 0.037
  2204. }
  2205. },
  2206. back: {
  2207. height: math.unit(7, "feet"),
  2208. weight: math.unit(100, "kg"),
  2209. name: "Back",
  2210. image: {
  2211. source: "./media/characters/okuri/back.svg",
  2212. extra: 1,
  2213. bottom: 0.007
  2214. }
  2215. },
  2216. },
  2217. [
  2218. {
  2219. name: "Megamacro",
  2220. height: math.unit(100, "miles"),
  2221. default: true
  2222. },
  2223. ]
  2224. ))
  2225. characterMakers.push(() => makeCharacter(
  2226. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2227. {
  2228. front: {
  2229. height: math.unit(7, "feet"),
  2230. weight: math.unit(100, "kg"),
  2231. name: "Front",
  2232. image: {
  2233. source: "./media/characters/manny/front.svg",
  2234. extra: 1,
  2235. bottom: 0.06
  2236. }
  2237. },
  2238. back: {
  2239. height: math.unit(7, "feet"),
  2240. weight: math.unit(100, "kg"),
  2241. name: "Back",
  2242. image: {
  2243. source: "./media/characters/manny/back.svg",
  2244. extra: 1,
  2245. bottom: 0.014
  2246. }
  2247. },
  2248. },
  2249. [
  2250. {
  2251. name: "Normal",
  2252. height: math.unit(7, "feet"),
  2253. },
  2254. {
  2255. name: "Macro",
  2256. height: math.unit(78, "feet"),
  2257. default: true
  2258. },
  2259. {
  2260. name: "Macro+",
  2261. height: math.unit(300, "meters")
  2262. },
  2263. {
  2264. name: "Macro++",
  2265. height: math.unit(2400, "meters")
  2266. },
  2267. {
  2268. name: "Megamacro",
  2269. height: math.unit(5167, "meters")
  2270. },
  2271. {
  2272. name: "Gigamacro",
  2273. height: math.unit(41769, "miles")
  2274. },
  2275. ]
  2276. ))
  2277. characterMakers.push(() => makeCharacter(
  2278. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2279. {
  2280. front: {
  2281. height: math.unit(7, "feet"),
  2282. weight: math.unit(100, "kg"),
  2283. name: "Front",
  2284. image: {
  2285. source: "./media/characters/adake/front-1.svg"
  2286. }
  2287. },
  2288. frontAlt: {
  2289. height: math.unit(7, "feet"),
  2290. weight: math.unit(100, "kg"),
  2291. name: "Front (Alt)",
  2292. image: {
  2293. source: "./media/characters/adake/front-2.svg",
  2294. extra: 1,
  2295. bottom: 0.01
  2296. }
  2297. },
  2298. back: {
  2299. height: math.unit(7, "feet"),
  2300. weight: math.unit(100, "kg"),
  2301. name: "Back",
  2302. image: {
  2303. source: "./media/characters/adake/back.svg",
  2304. }
  2305. },
  2306. kneel: {
  2307. height: math.unit(5.385, "feet"),
  2308. weight: math.unit(100, "kg"),
  2309. name: "Kneeling",
  2310. image: {
  2311. source: "./media/characters/adake/kneel.svg",
  2312. bottom: 0.052
  2313. }
  2314. },
  2315. },
  2316. [
  2317. {
  2318. name: "Normal",
  2319. height: math.unit(7, "feet"),
  2320. },
  2321. {
  2322. name: "Macro",
  2323. height: math.unit(78, "feet"),
  2324. default: true
  2325. },
  2326. {
  2327. name: "Macro+",
  2328. height: math.unit(300, "meters")
  2329. },
  2330. {
  2331. name: "Macro++",
  2332. height: math.unit(2400, "meters")
  2333. },
  2334. {
  2335. name: "Megamacro",
  2336. height: math.unit(5167, "meters")
  2337. },
  2338. {
  2339. name: "Gigamacro",
  2340. height: math.unit(41769, "miles")
  2341. },
  2342. ]
  2343. ))
  2344. characterMakers.push(() => makeCharacter(
  2345. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2346. {
  2347. front: {
  2348. height: math.unit(1.65, "meters"),
  2349. weight: math.unit(50, "kg"),
  2350. name: "Front",
  2351. image: {
  2352. source: "./media/characters/elijah/front.svg",
  2353. extra: 858 / 830,
  2354. bottom: 95.5 / 953.8559
  2355. }
  2356. },
  2357. back: {
  2358. height: math.unit(1.65, "meters"),
  2359. weight: math.unit(50, "kg"),
  2360. name: "Back",
  2361. image: {
  2362. source: "./media/characters/elijah/back.svg",
  2363. extra: 895 / 850,
  2364. bottom: 5.3 / 897.956
  2365. }
  2366. },
  2367. frontNsfw: {
  2368. height: math.unit(1.65, "meters"),
  2369. weight: math.unit(50, "kg"),
  2370. name: "Front (NSFW)",
  2371. image: {
  2372. source: "./media/characters/elijah/front-nsfw.svg",
  2373. extra: 858 / 830,
  2374. bottom: 95.5 / 953.8559
  2375. }
  2376. },
  2377. backNsfw: {
  2378. height: math.unit(1.65, "meters"),
  2379. weight: math.unit(50, "kg"),
  2380. name: "Back (NSFW)",
  2381. image: {
  2382. source: "./media/characters/elijah/back-nsfw.svg",
  2383. extra: 895 / 850,
  2384. bottom: 5.3 / 897.956
  2385. }
  2386. },
  2387. dick: {
  2388. height: math.unit(1, "feet"),
  2389. name: "Dick",
  2390. image: {
  2391. source: "./media/characters/elijah/dick.svg"
  2392. }
  2393. },
  2394. beakOpen: {
  2395. height: math.unit(1.25, "feet"),
  2396. name: "Beak (Open)",
  2397. image: {
  2398. source: "./media/characters/elijah/beak-open.svg"
  2399. }
  2400. },
  2401. beakShut: {
  2402. height: math.unit(1.25, "feet"),
  2403. name: "Beak (Shut)",
  2404. image: {
  2405. source: "./media/characters/elijah/beak-shut.svg"
  2406. }
  2407. },
  2408. footFlexing: {
  2409. height: math.unit(1.61, "feet"),
  2410. name: "Foot (Flexing)",
  2411. image: {
  2412. source: "./media/characters/elijah/foot-flexing.svg"
  2413. }
  2414. },
  2415. footStepping: {
  2416. height: math.unit(1.44, "feet"),
  2417. name: "Foot (Stepping)",
  2418. image: {
  2419. source: "./media/characters/elijah/foot-stepping.svg"
  2420. }
  2421. },
  2422. plantigradeLeg: {
  2423. height: math.unit(2.34, "feet"),
  2424. name: "Plantigrade Leg",
  2425. image: {
  2426. source: "./media/characters/elijah/plantigrade-leg.svg"
  2427. }
  2428. },
  2429. plantigradeFootLeft: {
  2430. height: math.unit(0.9, "feet"),
  2431. name: "Plantigrade Foot (Left)",
  2432. image: {
  2433. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2434. }
  2435. },
  2436. plantigradeFootRight: {
  2437. height: math.unit(0.9, "feet"),
  2438. name: "Plantigrade Foot (Right)",
  2439. image: {
  2440. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2441. }
  2442. },
  2443. },
  2444. [
  2445. {
  2446. name: "Normal",
  2447. height: math.unit(1.65, "meters")
  2448. },
  2449. {
  2450. name: "Macro",
  2451. height: math.unit(55, "meters"),
  2452. default: true
  2453. },
  2454. {
  2455. name: "Macro+",
  2456. height: math.unit(105, "meters")
  2457. },
  2458. ]
  2459. ))
  2460. characterMakers.push(() => makeCharacter(
  2461. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2462. {
  2463. front: {
  2464. height: math.unit(7 + 2/12, "feet"),
  2465. weight: math.unit(320, "kg"),
  2466. name: "Front",
  2467. image: {
  2468. source: "./media/characters/rai/front.svg",
  2469. extra: 1802/1696,
  2470. bottom: 68/1870
  2471. }
  2472. },
  2473. frontDressed: {
  2474. height: math.unit(7 + 2/12, "feet"),
  2475. weight: math.unit(320, "kg"),
  2476. name: "Front (Dressed)",
  2477. image: {
  2478. source: "./media/characters/rai/front-dressed.svg",
  2479. extra: 1802/1696,
  2480. bottom: 68/1870
  2481. }
  2482. },
  2483. side: {
  2484. height: math.unit(7 + 2/12, "feet"),
  2485. weight: math.unit(320, "kg"),
  2486. name: "Side",
  2487. image: {
  2488. source: "./media/characters/rai/side.svg",
  2489. extra: 1789/1710,
  2490. bottom: 115/1904
  2491. }
  2492. },
  2493. back: {
  2494. height: math.unit(7 + 2/12, "feet"),
  2495. weight: math.unit(320, "kg"),
  2496. name: "Back",
  2497. image: {
  2498. source: "./media/characters/rai/back.svg",
  2499. extra: 1770/1707,
  2500. bottom: 28/1798
  2501. }
  2502. },
  2503. feral: {
  2504. height: math.unit(9.5, "feet"),
  2505. weight: math.unit(640, "kg"),
  2506. name: "Feral",
  2507. image: {
  2508. source: "./media/characters/rai/feral.svg",
  2509. extra: 945/553,
  2510. bottom: 176/1121
  2511. }
  2512. },
  2513. dragon: {
  2514. height: math.unit(23, "feet"),
  2515. weight: math.unit(50000, "lb"),
  2516. name: "Dragon",
  2517. image: {
  2518. source: "./media/characters/rai/dragon.svg",
  2519. extra: 2498 / 2030,
  2520. bottom: 85.2 / 2584
  2521. }
  2522. },
  2523. maw: {
  2524. height: math.unit(1.69, "feet"),
  2525. name: "Maw",
  2526. image: {
  2527. source: "./media/characters/rai/maw.svg"
  2528. }
  2529. },
  2530. },
  2531. [
  2532. {
  2533. name: "Normal",
  2534. height: math.unit(7 + 2/12, "feet")
  2535. },
  2536. {
  2537. name: "Big",
  2538. height: math.unit(11, "feet")
  2539. },
  2540. {
  2541. name: "Macro",
  2542. height: math.unit(302, "feet"),
  2543. default: true
  2544. },
  2545. ]
  2546. ))
  2547. characterMakers.push(() => makeCharacter(
  2548. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2549. {
  2550. frontDressed: {
  2551. height: math.unit(216, "feet"),
  2552. weight: math.unit(7000000, "lb"),
  2553. name: "Front (Dressed)",
  2554. image: {
  2555. source: "./media/characters/jazzy/front-dressed.svg",
  2556. extra: 2738 / 2651,
  2557. bottom: 41.8 / 2786
  2558. }
  2559. },
  2560. backDressed: {
  2561. height: math.unit(216, "feet"),
  2562. weight: math.unit(7000000, "lb"),
  2563. name: "Back (Dressed)",
  2564. image: {
  2565. source: "./media/characters/jazzy/back-dressed.svg",
  2566. extra: 2775 / 2673,
  2567. bottom: 36.8 / 2817
  2568. }
  2569. },
  2570. front: {
  2571. height: math.unit(216, "feet"),
  2572. weight: math.unit(7000000, "lb"),
  2573. name: "Front",
  2574. image: {
  2575. source: "./media/characters/jazzy/front.svg",
  2576. extra: 2738 / 2651,
  2577. bottom: 41.8 / 2786
  2578. }
  2579. },
  2580. back: {
  2581. height: math.unit(216, "feet"),
  2582. weight: math.unit(7000000, "lb"),
  2583. name: "Back",
  2584. image: {
  2585. source: "./media/characters/jazzy/back.svg",
  2586. extra: 2775 / 2673,
  2587. bottom: 36.8 / 2817
  2588. }
  2589. },
  2590. maw: {
  2591. height: math.unit(20, "feet"),
  2592. name: "Maw",
  2593. image: {
  2594. source: "./media/characters/jazzy/maw.svg"
  2595. }
  2596. },
  2597. paws: {
  2598. height: math.unit(27.5, "feet"),
  2599. name: "Paws",
  2600. image: {
  2601. source: "./media/characters/jazzy/paws.svg"
  2602. }
  2603. },
  2604. eye: {
  2605. height: math.unit(4.4, "feet"),
  2606. name: "Eye",
  2607. image: {
  2608. source: "./media/characters/jazzy/eye.svg"
  2609. }
  2610. },
  2611. droneOffense: {
  2612. height: math.unit(9.5, "inches"),
  2613. name: "Drone (Offense)",
  2614. image: {
  2615. source: "./media/characters/jazzy/drone-offense.svg"
  2616. }
  2617. },
  2618. droneRecon: {
  2619. height: math.unit(9.5, "inches"),
  2620. name: "Drone (Recon)",
  2621. image: {
  2622. source: "./media/characters/jazzy/drone-recon.svg"
  2623. }
  2624. },
  2625. droneDefense: {
  2626. height: math.unit(9.5, "inches"),
  2627. name: "Drone (Defense)",
  2628. image: {
  2629. source: "./media/characters/jazzy/drone-defense.svg"
  2630. }
  2631. },
  2632. },
  2633. [
  2634. {
  2635. name: "Macro",
  2636. height: math.unit(216, "feet"),
  2637. default: true
  2638. },
  2639. ]
  2640. ))
  2641. characterMakers.push(() => makeCharacter(
  2642. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2643. {
  2644. front: {
  2645. height: math.unit(9 + 6/12, "feet"),
  2646. weight: math.unit(700, "lb"),
  2647. name: "Front",
  2648. image: {
  2649. source: "./media/characters/flamm/front.svg",
  2650. extra: 1751/1632,
  2651. bottom: 46/1797
  2652. }
  2653. },
  2654. buff: {
  2655. height: math.unit(9 + 6/12, "feet"),
  2656. weight: math.unit(950, "lb"),
  2657. name: "Buff",
  2658. image: {
  2659. source: "./media/characters/flamm/buff.svg",
  2660. extra: 3018/2874,
  2661. bottom: 221/3239
  2662. }
  2663. },
  2664. },
  2665. [
  2666. {
  2667. name: "Normal",
  2668. height: math.unit(9.5, "feet")
  2669. },
  2670. {
  2671. name: "Macro",
  2672. height: math.unit(200, "feet"),
  2673. default: true
  2674. },
  2675. ]
  2676. ))
  2677. characterMakers.push(() => makeCharacter(
  2678. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2679. {
  2680. front: {
  2681. height: math.unit(5 + 3/12, "feet"),
  2682. weight: math.unit(60, "kg"),
  2683. name: "Front",
  2684. image: {
  2685. source: "./media/characters/zephiro/front.svg",
  2686. extra: 2309 / 2162,
  2687. bottom: 0.069
  2688. }
  2689. },
  2690. side: {
  2691. height: math.unit(5 + 3/12, "feet"),
  2692. weight: math.unit(60, "kg"),
  2693. name: "Side",
  2694. image: {
  2695. source: "./media/characters/zephiro/side.svg",
  2696. extra: 2403 / 2279,
  2697. bottom: 0.015
  2698. }
  2699. },
  2700. back: {
  2701. height: math.unit(5 + 3/12, "feet"),
  2702. weight: math.unit(60, "kg"),
  2703. name: "Back",
  2704. image: {
  2705. source: "./media/characters/zephiro/back.svg",
  2706. extra: 2373 / 2244,
  2707. bottom: 0.013
  2708. }
  2709. },
  2710. hand: {
  2711. height: math.unit(0.68, "feet"),
  2712. name: "Hand",
  2713. image: {
  2714. source: "./media/characters/zephiro/hand.svg"
  2715. }
  2716. },
  2717. paw: {
  2718. height: math.unit(1, "feet"),
  2719. name: "Paw",
  2720. image: {
  2721. source: "./media/characters/zephiro/paw.svg"
  2722. }
  2723. },
  2724. beans: {
  2725. height: math.unit(0.93, "feet"),
  2726. name: "Beans",
  2727. image: {
  2728. source: "./media/characters/zephiro/beans.svg"
  2729. }
  2730. },
  2731. },
  2732. [
  2733. {
  2734. name: "Micro",
  2735. height: math.unit(3, "inches")
  2736. },
  2737. {
  2738. name: "Normal",
  2739. height: math.unit(5 + 3 / 12, "feet"),
  2740. default: true
  2741. },
  2742. {
  2743. name: "Macro",
  2744. height: math.unit(118, "feet")
  2745. },
  2746. ]
  2747. ))
  2748. characterMakers.push(() => makeCharacter(
  2749. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2750. {
  2751. front: {
  2752. height: math.unit(5, "feet"),
  2753. weight: math.unit(90, "kg"),
  2754. name: "Front",
  2755. image: {
  2756. source: "./media/characters/fory/front.svg",
  2757. extra: 2862 / 2674,
  2758. bottom: 180 / 3043.8
  2759. }
  2760. },
  2761. back: {
  2762. height: math.unit(5, "feet"),
  2763. weight: math.unit(90, "kg"),
  2764. name: "Back",
  2765. image: {
  2766. source: "./media/characters/fory/back.svg",
  2767. extra: 2962 / 2791,
  2768. bottom: 106 / 3071.8
  2769. }
  2770. },
  2771. foot: {
  2772. height: math.unit(2.14, "feet"),
  2773. name: "Foot",
  2774. image: {
  2775. source: "./media/characters/fory/foot.svg"
  2776. }
  2777. },
  2778. },
  2779. [
  2780. {
  2781. name: "Normal",
  2782. height: math.unit(5, "feet")
  2783. },
  2784. {
  2785. name: "Macro",
  2786. height: math.unit(50, "feet"),
  2787. default: true
  2788. },
  2789. {
  2790. name: "Megamacro",
  2791. height: math.unit(10, "miles")
  2792. },
  2793. {
  2794. name: "Gigamacro",
  2795. height: math.unit(5, "earths")
  2796. },
  2797. ]
  2798. ))
  2799. characterMakers.push(() => makeCharacter(
  2800. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2801. {
  2802. front: {
  2803. height: math.unit(7, "feet"),
  2804. weight: math.unit(90, "kg"),
  2805. name: "Front",
  2806. image: {
  2807. source: "./media/characters/kurrikage/front.svg",
  2808. extra: 1845/1733,
  2809. bottom: 119/1964
  2810. }
  2811. },
  2812. back: {
  2813. height: math.unit(7, "feet"),
  2814. weight: math.unit(90, "kg"),
  2815. name: "Back",
  2816. image: {
  2817. source: "./media/characters/kurrikage/back.svg",
  2818. extra: 1790/1677,
  2819. bottom: 61/1851
  2820. }
  2821. },
  2822. dressed: {
  2823. height: math.unit(7, "feet"),
  2824. weight: math.unit(90, "kg"),
  2825. name: "Dressed",
  2826. image: {
  2827. source: "./media/characters/kurrikage/dressed.svg",
  2828. extra: 1845/1733,
  2829. bottom: 119/1964
  2830. }
  2831. },
  2832. foot: {
  2833. height: math.unit(1.5, "feet"),
  2834. name: "Foot",
  2835. image: {
  2836. source: "./media/characters/kurrikage/foot.svg"
  2837. }
  2838. },
  2839. staff: {
  2840. height: math.unit(6.7, "feet"),
  2841. name: "Staff",
  2842. image: {
  2843. source: "./media/characters/kurrikage/staff.svg"
  2844. }
  2845. },
  2846. peek: {
  2847. height: math.unit(1.05, "feet"),
  2848. name: "Peeking",
  2849. image: {
  2850. source: "./media/characters/kurrikage/peek.svg",
  2851. bottom: 0.08
  2852. }
  2853. },
  2854. },
  2855. [
  2856. {
  2857. name: "Normal",
  2858. height: math.unit(12, "feet"),
  2859. default: true
  2860. },
  2861. {
  2862. name: "Big",
  2863. height: math.unit(20, "feet")
  2864. },
  2865. {
  2866. name: "Macro",
  2867. height: math.unit(500, "feet")
  2868. },
  2869. {
  2870. name: "Megamacro",
  2871. height: math.unit(20, "miles")
  2872. },
  2873. ]
  2874. ))
  2875. characterMakers.push(() => makeCharacter(
  2876. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2877. {
  2878. front: {
  2879. height: math.unit(6, "feet"),
  2880. weight: math.unit(75, "kg"),
  2881. name: "Front",
  2882. image: {
  2883. source: "./media/characters/shingo/front.svg",
  2884. extra: 1900/1825,
  2885. bottom: 82/1982
  2886. }
  2887. },
  2888. side: {
  2889. height: math.unit(6, "feet"),
  2890. weight: math.unit(75, "kg"),
  2891. name: "Side",
  2892. image: {
  2893. source: "./media/characters/shingo/side.svg",
  2894. extra: 1930/1865,
  2895. bottom: 16/1946
  2896. }
  2897. },
  2898. back: {
  2899. height: math.unit(6, "feet"),
  2900. weight: math.unit(75, "kg"),
  2901. name: "Back",
  2902. image: {
  2903. source: "./media/characters/shingo/back.svg",
  2904. extra: 1922/1852,
  2905. bottom: 16/1938
  2906. }
  2907. },
  2908. frontDressed: {
  2909. height: math.unit(6, "feet"),
  2910. weight: math.unit(150, "lb"),
  2911. name: "Front-dressed",
  2912. image: {
  2913. source: "./media/characters/shingo/front-dressed.svg",
  2914. extra: 1900/1825,
  2915. bottom: 82/1982
  2916. }
  2917. },
  2918. paw: {
  2919. height: math.unit(1.29, "feet"),
  2920. name: "Paw",
  2921. image: {
  2922. source: "./media/characters/shingo/paw.svg"
  2923. }
  2924. },
  2925. hand: {
  2926. height: math.unit(1.07, "feet"),
  2927. name: "Hand",
  2928. image: {
  2929. source: "./media/characters/shingo/hand.svg"
  2930. }
  2931. },
  2932. frontAlt: {
  2933. height: math.unit(6, "feet"),
  2934. weight: math.unit(75, "kg"),
  2935. name: "Front (Alt)",
  2936. image: {
  2937. source: "./media/characters/shingo/front-alt.svg",
  2938. extra: 3511 / 3338,
  2939. bottom: 0.005
  2940. }
  2941. },
  2942. frontAlt2: {
  2943. height: math.unit(6, "feet"),
  2944. weight: math.unit(75, "kg"),
  2945. name: "Front (Alt 2)",
  2946. image: {
  2947. source: "./media/characters/shingo/front-alt-2.svg",
  2948. extra: 706/681,
  2949. bottom: 11/717
  2950. }
  2951. },
  2952. pawAlt: {
  2953. height: math.unit(1, "feet"),
  2954. name: "Paw (Alt)",
  2955. image: {
  2956. source: "./media/characters/shingo/paw-alt.svg"
  2957. }
  2958. },
  2959. },
  2960. [
  2961. {
  2962. name: "Micro",
  2963. height: math.unit(4, "inches")
  2964. },
  2965. {
  2966. name: "Normal",
  2967. height: math.unit(6, "feet"),
  2968. default: true
  2969. },
  2970. {
  2971. name: "Macro",
  2972. height: math.unit(108, "feet")
  2973. },
  2974. {
  2975. name: "Macro+",
  2976. height: math.unit(1500, "feet")
  2977. },
  2978. ]
  2979. ))
  2980. characterMakers.push(() => makeCharacter(
  2981. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2982. {
  2983. side: {
  2984. height: math.unit(6, "feet"),
  2985. weight: math.unit(75, "kg"),
  2986. name: "Side",
  2987. image: {
  2988. source: "./media/characters/aigey/side.svg"
  2989. }
  2990. },
  2991. },
  2992. [
  2993. {
  2994. name: "Macro",
  2995. height: math.unit(200, "feet"),
  2996. default: true
  2997. },
  2998. {
  2999. name: "Megamacro",
  3000. height: math.unit(100, "miles")
  3001. },
  3002. ]
  3003. )
  3004. )
  3005. characterMakers.push(() => makeCharacter(
  3006. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3007. {
  3008. front: {
  3009. height: math.unit(5 + 5 / 12, "feet"),
  3010. weight: math.unit(75, "kg"),
  3011. name: "Front",
  3012. image: {
  3013. source: "./media/characters/natasha/front.svg",
  3014. extra: 859 / 824,
  3015. bottom: 23 / 879.6
  3016. }
  3017. },
  3018. frontNsfw: {
  3019. height: math.unit(5 + 5 / 12, "feet"),
  3020. weight: math.unit(75, "kg"),
  3021. name: "Front (NSFW)",
  3022. image: {
  3023. source: "./media/characters/natasha/front-nsfw.svg",
  3024. extra: 859 / 824,
  3025. bottom: 23 / 879.6
  3026. }
  3027. },
  3028. frontErect: {
  3029. height: math.unit(5 + 5 / 12, "feet"),
  3030. weight: math.unit(75, "kg"),
  3031. name: "Front (Erect)",
  3032. image: {
  3033. source: "./media/characters/natasha/front-erect.svg",
  3034. extra: 859 / 824,
  3035. bottom: 23 / 879.6
  3036. }
  3037. },
  3038. back: {
  3039. height: math.unit(5 + 5 / 12, "feet"),
  3040. weight: math.unit(75, "kg"),
  3041. name: "Back",
  3042. image: {
  3043. source: "./media/characters/natasha/back.svg",
  3044. extra: 887.9 / 852.6,
  3045. bottom: 9.7 / 896.4
  3046. }
  3047. },
  3048. backAlt: {
  3049. height: math.unit(5 + 5 / 12, "feet"),
  3050. weight: math.unit(75, "kg"),
  3051. name: "Back (Alt)",
  3052. image: {
  3053. source: "./media/characters/natasha/back-alt.svg",
  3054. extra: 1236.7 / 1192,
  3055. bottom: 22.3 / 1258.2
  3056. }
  3057. },
  3058. dick: {
  3059. height: math.unit(1.772, "feet"),
  3060. name: "Dick",
  3061. image: {
  3062. source: "./media/characters/natasha/dick.svg"
  3063. }
  3064. },
  3065. paw: {
  3066. height: math.unit(0.250, "meters"),
  3067. name: "Paw",
  3068. image: {
  3069. source: "./media/characters/natasha/paw.svg"
  3070. }
  3071. },
  3072. },
  3073. [
  3074. {
  3075. name: "Normal",
  3076. height: math.unit(5 + 5 / 12, "feet")
  3077. },
  3078. {
  3079. name: "Large",
  3080. height: math.unit(12, "feet")
  3081. },
  3082. {
  3083. name: "Macro",
  3084. height: math.unit(100, "feet"),
  3085. default: true
  3086. },
  3087. {
  3088. name: "Macro+",
  3089. height: math.unit(260, "feet")
  3090. },
  3091. {
  3092. name: "Macro++",
  3093. height: math.unit(1, "mile")
  3094. },
  3095. ]
  3096. ))
  3097. characterMakers.push(() => makeCharacter(
  3098. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3099. {
  3100. front: {
  3101. height: math.unit(6, "feet"),
  3102. weight: math.unit(75, "kg"),
  3103. name: "Front",
  3104. image: {
  3105. source: "./media/characters/malik/front.svg"
  3106. }
  3107. },
  3108. side: {
  3109. height: math.unit(6, "feet"),
  3110. weight: math.unit(75, "kg"),
  3111. name: "Side",
  3112. image: {
  3113. source: "./media/characters/malik/side.svg",
  3114. extra: 1.1539
  3115. }
  3116. },
  3117. back: {
  3118. height: math.unit(6, "feet"),
  3119. weight: math.unit(75, "kg"),
  3120. name: "Back",
  3121. image: {
  3122. source: "./media/characters/malik/back.svg"
  3123. }
  3124. },
  3125. },
  3126. [
  3127. {
  3128. name: "Macro",
  3129. height: math.unit(156, "feet"),
  3130. default: true
  3131. },
  3132. {
  3133. name: "Macro+",
  3134. height: math.unit(1188, "feet")
  3135. },
  3136. ]
  3137. ))
  3138. characterMakers.push(() => makeCharacter(
  3139. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3140. {
  3141. front: {
  3142. height: math.unit(6, "feet"),
  3143. weight: math.unit(75, "kg"),
  3144. name: "Front",
  3145. image: {
  3146. source: "./media/characters/sefer/front.svg",
  3147. extra: 848 / 659,
  3148. bottom: 28.3 / 876.442
  3149. }
  3150. },
  3151. back: {
  3152. height: math.unit(6, "feet"),
  3153. weight: math.unit(75, "kg"),
  3154. name: "Back",
  3155. image: {
  3156. source: "./media/characters/sefer/back.svg",
  3157. extra: 864 / 695,
  3158. bottom: 10 / 871
  3159. }
  3160. },
  3161. frontDressed: {
  3162. height: math.unit(6, "feet"),
  3163. weight: math.unit(75, "kg"),
  3164. name: "Front (Dressed)",
  3165. image: {
  3166. source: "./media/characters/sefer/front-dressed.svg",
  3167. extra: 839 / 653,
  3168. bottom: 37.6 / 878
  3169. }
  3170. },
  3171. },
  3172. [
  3173. {
  3174. name: "Normal",
  3175. height: math.unit(6, "feet"),
  3176. default: true
  3177. },
  3178. ]
  3179. ))
  3180. characterMakers.push(() => makeCharacter(
  3181. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3182. {
  3183. body: {
  3184. height: math.unit(2.2428, "meter"),
  3185. weight: math.unit(124.738, "kg"),
  3186. name: "Body",
  3187. image: {
  3188. extra: 1225 / 1050,
  3189. source: "./media/characters/north/front.svg"
  3190. }
  3191. }
  3192. },
  3193. [
  3194. {
  3195. name: "Micro",
  3196. height: math.unit(4, "inches")
  3197. },
  3198. {
  3199. name: "Macro",
  3200. height: math.unit(63, "meters")
  3201. },
  3202. {
  3203. name: "Megamacro",
  3204. height: math.unit(101, "miles"),
  3205. default: true
  3206. }
  3207. ]
  3208. ))
  3209. characterMakers.push(() => makeCharacter(
  3210. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3211. {
  3212. angled: {
  3213. height: math.unit(4, "meter"),
  3214. weight: math.unit(150, "kg"),
  3215. name: "Angled",
  3216. image: {
  3217. source: "./media/characters/talan/angled-sfw.svg",
  3218. bottom: 29 / 3734
  3219. }
  3220. },
  3221. angledNsfw: {
  3222. height: math.unit(4, "meter"),
  3223. weight: math.unit(150, "kg"),
  3224. name: "Angled (NSFW)",
  3225. image: {
  3226. source: "./media/characters/talan/angled-nsfw.svg",
  3227. bottom: 29 / 3734
  3228. }
  3229. },
  3230. frontNsfw: {
  3231. height: math.unit(4, "meter"),
  3232. weight: math.unit(150, "kg"),
  3233. name: "Front (NSFW)",
  3234. image: {
  3235. source: "./media/characters/talan/front-nsfw.svg",
  3236. bottom: 29 / 3734
  3237. }
  3238. },
  3239. sideNsfw: {
  3240. height: math.unit(4, "meter"),
  3241. weight: math.unit(150, "kg"),
  3242. name: "Side (NSFW)",
  3243. image: {
  3244. source: "./media/characters/talan/side-nsfw.svg",
  3245. bottom: 29 / 3734
  3246. }
  3247. },
  3248. back: {
  3249. height: math.unit(4, "meter"),
  3250. weight: math.unit(150, "kg"),
  3251. name: "Back",
  3252. image: {
  3253. source: "./media/characters/talan/back.svg"
  3254. }
  3255. },
  3256. dickBottom: {
  3257. height: math.unit(0.621, "meter"),
  3258. name: "Dick (Bottom)",
  3259. image: {
  3260. source: "./media/characters/talan/dick-bottom.svg"
  3261. }
  3262. },
  3263. dickTop: {
  3264. height: math.unit(0.621, "meter"),
  3265. name: "Dick (Top)",
  3266. image: {
  3267. source: "./media/characters/talan/dick-top.svg"
  3268. }
  3269. },
  3270. dickSide: {
  3271. height: math.unit(0.305, "meter"),
  3272. name: "Dick (Side)",
  3273. image: {
  3274. source: "./media/characters/talan/dick-side.svg"
  3275. }
  3276. },
  3277. dickFront: {
  3278. height: math.unit(0.305, "meter"),
  3279. name: "Dick (Front)",
  3280. image: {
  3281. source: "./media/characters/talan/dick-front.svg"
  3282. }
  3283. },
  3284. },
  3285. [
  3286. {
  3287. name: "Normal",
  3288. height: math.unit(4, "meters")
  3289. },
  3290. {
  3291. name: "Macro",
  3292. height: math.unit(100, "meters")
  3293. },
  3294. {
  3295. name: "Megamacro",
  3296. height: math.unit(2, "miles"),
  3297. default: true
  3298. },
  3299. {
  3300. name: "Gigamacro",
  3301. height: math.unit(5000, "miles")
  3302. },
  3303. {
  3304. name: "Teramacro",
  3305. height: math.unit(100, "parsecs")
  3306. }
  3307. ]
  3308. ))
  3309. characterMakers.push(() => makeCharacter(
  3310. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3311. {
  3312. front: {
  3313. height: math.unit(2, "meter"),
  3314. weight: math.unit(90, "kg"),
  3315. name: "Front",
  3316. image: {
  3317. source: "./media/characters/gael'rathus/front.svg"
  3318. }
  3319. },
  3320. frontAlt: {
  3321. height: math.unit(2, "meter"),
  3322. weight: math.unit(90, "kg"),
  3323. name: "Front (alt)",
  3324. image: {
  3325. source: "./media/characters/gael'rathus/front-alt.svg"
  3326. }
  3327. },
  3328. frontAlt2: {
  3329. height: math.unit(2, "meter"),
  3330. weight: math.unit(90, "kg"),
  3331. name: "Front (alt 2)",
  3332. image: {
  3333. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3334. }
  3335. }
  3336. },
  3337. [
  3338. {
  3339. name: "Normal",
  3340. height: math.unit(9, "feet"),
  3341. default: true
  3342. },
  3343. {
  3344. name: "Large",
  3345. height: math.unit(25, "feet")
  3346. },
  3347. {
  3348. name: "Macro",
  3349. height: math.unit(0.25, "miles")
  3350. },
  3351. {
  3352. name: "Megamacro",
  3353. height: math.unit(10, "miles")
  3354. }
  3355. ]
  3356. ))
  3357. characterMakers.push(() => makeCharacter(
  3358. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3359. {
  3360. side: {
  3361. height: math.unit(2, "meter"),
  3362. weight: math.unit(140, "kg"),
  3363. name: "Side",
  3364. image: {
  3365. source: "./media/characters/sosha/side.svg",
  3366. bottom: 0.042
  3367. }
  3368. },
  3369. },
  3370. [
  3371. {
  3372. name: "Normal",
  3373. height: math.unit(12, "feet"),
  3374. default: true
  3375. }
  3376. ]
  3377. ))
  3378. characterMakers.push(() => makeCharacter(
  3379. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3380. {
  3381. side: {
  3382. height: math.unit(5 + 5 / 12, "feet"),
  3383. weight: math.unit(170, "kg"),
  3384. name: "Side",
  3385. image: {
  3386. source: "./media/characters/runnola/side.svg",
  3387. extra: 741 / 448,
  3388. bottom: 0.05
  3389. }
  3390. },
  3391. },
  3392. [
  3393. {
  3394. name: "Small",
  3395. height: math.unit(3, "feet")
  3396. },
  3397. {
  3398. name: "Normal",
  3399. height: math.unit(5 + 5 / 12, "feet"),
  3400. default: true
  3401. },
  3402. {
  3403. name: "Big",
  3404. height: math.unit(10, "feet")
  3405. },
  3406. ]
  3407. ))
  3408. characterMakers.push(() => makeCharacter(
  3409. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3410. {
  3411. front: {
  3412. height: math.unit(2, "meter"),
  3413. weight: math.unit(50, "kg"),
  3414. name: "Front",
  3415. image: {
  3416. source: "./media/characters/kurribird/front.svg",
  3417. bottom: 0.015
  3418. }
  3419. },
  3420. frontAlt: {
  3421. height: math.unit(1.5, "meter"),
  3422. weight: math.unit(50, "kg"),
  3423. name: "Front (Alt)",
  3424. image: {
  3425. source: "./media/characters/kurribird/front-alt.svg",
  3426. extra: 1.45
  3427. }
  3428. },
  3429. },
  3430. [
  3431. {
  3432. name: "Normal",
  3433. height: math.unit(7, "feet")
  3434. },
  3435. {
  3436. name: "Big",
  3437. height: math.unit(12, "feet"),
  3438. default: true
  3439. },
  3440. {
  3441. name: "Macro",
  3442. height: math.unit(1500, "feet")
  3443. },
  3444. {
  3445. name: "Megamacro",
  3446. height: math.unit(2, "miles")
  3447. }
  3448. ]
  3449. ))
  3450. characterMakers.push(() => makeCharacter(
  3451. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3452. {
  3453. front: {
  3454. height: math.unit(2, "meter"),
  3455. weight: math.unit(80, "kg"),
  3456. name: "Front",
  3457. image: {
  3458. source: "./media/characters/elbial/front.svg",
  3459. extra: 1643 / 1556,
  3460. bottom: 60.2 / 1696
  3461. }
  3462. },
  3463. side: {
  3464. height: math.unit(2, "meter"),
  3465. weight: math.unit(80, "kg"),
  3466. name: "Side",
  3467. image: {
  3468. source: "./media/characters/elbial/side.svg",
  3469. extra: 1601/1528,
  3470. bottom: 97/1698
  3471. }
  3472. },
  3473. back: {
  3474. height: math.unit(2, "meter"),
  3475. weight: math.unit(80, "kg"),
  3476. name: "Back",
  3477. image: {
  3478. source: "./media/characters/elbial/back.svg",
  3479. extra: 1653/1569,
  3480. bottom: 20/1673
  3481. }
  3482. },
  3483. frontDressed: {
  3484. height: math.unit(2, "meter"),
  3485. weight: math.unit(80, "kg"),
  3486. name: "Front (Dressed)",
  3487. image: {
  3488. source: "./media/characters/elbial/front-dressed.svg",
  3489. extra: 1638/1569,
  3490. bottom: 70/1708
  3491. }
  3492. },
  3493. genitals: {
  3494. height: math.unit(2 / 3.367, "meter"),
  3495. name: "Genitals",
  3496. image: {
  3497. source: "./media/characters/elbial/genitals.svg"
  3498. }
  3499. },
  3500. },
  3501. [
  3502. {
  3503. name: "Large",
  3504. height: math.unit(100, "feet")
  3505. },
  3506. {
  3507. name: "Macro",
  3508. height: math.unit(500, "feet"),
  3509. default: true
  3510. },
  3511. {
  3512. name: "Megamacro",
  3513. height: math.unit(10, "miles")
  3514. },
  3515. {
  3516. name: "Gigamacro",
  3517. height: math.unit(25000, "miles")
  3518. },
  3519. {
  3520. name: "Full-Size",
  3521. height: math.unit(8000000, "gigaparsecs")
  3522. }
  3523. ]
  3524. ))
  3525. characterMakers.push(() => makeCharacter(
  3526. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3527. {
  3528. front: {
  3529. height: math.unit(2, "meter"),
  3530. weight: math.unit(60, "kg"),
  3531. name: "Front",
  3532. image: {
  3533. source: "./media/characters/noah/front.svg"
  3534. }
  3535. },
  3536. talons: {
  3537. height: math.unit(0.315, "meter"),
  3538. name: "Talons",
  3539. image: {
  3540. source: "./media/characters/noah/talons.svg"
  3541. }
  3542. }
  3543. },
  3544. [
  3545. {
  3546. name: "Large",
  3547. height: math.unit(50, "feet")
  3548. },
  3549. {
  3550. name: "Macro",
  3551. height: math.unit(750, "feet"),
  3552. default: true
  3553. },
  3554. {
  3555. name: "Megamacro",
  3556. height: math.unit(50, "miles")
  3557. },
  3558. {
  3559. name: "Gigamacro",
  3560. height: math.unit(100000, "miles")
  3561. },
  3562. {
  3563. name: "Full-Size",
  3564. height: math.unit(3000000000, "miles")
  3565. }
  3566. ]
  3567. ))
  3568. characterMakers.push(() => makeCharacter(
  3569. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3570. {
  3571. front: {
  3572. height: math.unit(2, "meter"),
  3573. weight: math.unit(80, "kg"),
  3574. name: "Front",
  3575. image: {
  3576. source: "./media/characters/natalya/front.svg"
  3577. }
  3578. },
  3579. back: {
  3580. height: math.unit(2, "meter"),
  3581. weight: math.unit(80, "kg"),
  3582. name: "Back",
  3583. image: {
  3584. source: "./media/characters/natalya/back.svg"
  3585. }
  3586. }
  3587. },
  3588. [
  3589. {
  3590. name: "Normal",
  3591. height: math.unit(150, "feet"),
  3592. default: true
  3593. },
  3594. {
  3595. name: "Megamacro",
  3596. height: math.unit(5, "miles")
  3597. },
  3598. {
  3599. name: "Full-Size",
  3600. height: math.unit(600, "kiloparsecs")
  3601. }
  3602. ]
  3603. ))
  3604. characterMakers.push(() => makeCharacter(
  3605. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3606. {
  3607. front: {
  3608. height: math.unit(2, "meter"),
  3609. weight: math.unit(50, "kg"),
  3610. name: "Front",
  3611. image: {
  3612. source: "./media/characters/erestrebah/front.svg",
  3613. extra: 1262/1162,
  3614. bottom: 96/1358
  3615. }
  3616. },
  3617. back: {
  3618. height: math.unit(2, "meter"),
  3619. weight: math.unit(50, "kg"),
  3620. name: "Back",
  3621. image: {
  3622. source: "./media/characters/erestrebah/back.svg",
  3623. extra: 1257/1139,
  3624. bottom: 13/1270
  3625. }
  3626. },
  3627. wing: {
  3628. height: math.unit(2, "meter"),
  3629. weight: math.unit(50, "kg"),
  3630. name: "Wing",
  3631. image: {
  3632. source: "./media/characters/erestrebah/wing.svg",
  3633. extra: 1262/1162,
  3634. bottom: 96/1358
  3635. }
  3636. },
  3637. mouth: {
  3638. height: math.unit(0.39, "feet"),
  3639. name: "Mouth",
  3640. image: {
  3641. source: "./media/characters/erestrebah/mouth.svg"
  3642. }
  3643. }
  3644. },
  3645. [
  3646. {
  3647. name: "Normal",
  3648. height: math.unit(10, "feet")
  3649. },
  3650. {
  3651. name: "Large",
  3652. height: math.unit(50, "feet"),
  3653. default: true
  3654. },
  3655. {
  3656. name: "Macro",
  3657. height: math.unit(300, "feet")
  3658. },
  3659. {
  3660. name: "Macro+",
  3661. height: math.unit(750, "feet")
  3662. },
  3663. {
  3664. name: "Megamacro",
  3665. height: math.unit(3, "miles")
  3666. }
  3667. ]
  3668. ))
  3669. characterMakers.push(() => makeCharacter(
  3670. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3671. {
  3672. front: {
  3673. height: math.unit(2, "meter"),
  3674. weight: math.unit(80, "kg"),
  3675. name: "Front",
  3676. image: {
  3677. source: "./media/characters/jennifer/front.svg",
  3678. bottom: 0.11,
  3679. extra: 1.16
  3680. }
  3681. },
  3682. frontAlt: {
  3683. height: math.unit(2, "meter"),
  3684. weight: math.unit(80, "kg"),
  3685. name: "Front (Alt)",
  3686. image: {
  3687. source: "./media/characters/jennifer/front-alt.svg"
  3688. }
  3689. }
  3690. },
  3691. [
  3692. {
  3693. name: "Canon Height",
  3694. height: math.unit(120, "feet"),
  3695. default: true
  3696. },
  3697. {
  3698. name: "Macro+",
  3699. height: math.unit(300, "feet")
  3700. },
  3701. {
  3702. name: "Megamacro",
  3703. height: math.unit(20000, "feet")
  3704. }
  3705. ]
  3706. ))
  3707. characterMakers.push(() => makeCharacter(
  3708. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3709. {
  3710. front: {
  3711. height: math.unit(2, "meter"),
  3712. weight: math.unit(50, "kg"),
  3713. name: "Front",
  3714. image: {
  3715. source: "./media/characters/kalista/front.svg",
  3716. extra: 1314/1145,
  3717. bottom: 101/1415
  3718. }
  3719. },
  3720. back: {
  3721. height: math.unit(2, "meter"),
  3722. weight: math.unit(50, "kg"),
  3723. name: "Back",
  3724. image: {
  3725. source: "./media/characters/kalista/back.svg",
  3726. extra: 1366 / 1156,
  3727. bottom: 33.9 / 1362.78
  3728. }
  3729. }
  3730. },
  3731. [
  3732. {
  3733. name: "Uncomfortably Small",
  3734. height: math.unit(10, "feet")
  3735. },
  3736. {
  3737. name: "Small",
  3738. height: math.unit(30, "feet")
  3739. },
  3740. {
  3741. name: "Macro",
  3742. height: math.unit(100, "feet"),
  3743. default: true
  3744. },
  3745. {
  3746. name: "Macro+",
  3747. height: math.unit(2000, "feet")
  3748. },
  3749. {
  3750. name: "True Form",
  3751. height: math.unit(8924, "miles")
  3752. }
  3753. ]
  3754. ))
  3755. characterMakers.push(() => makeCharacter(
  3756. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3757. {
  3758. front: {
  3759. height: math.unit(2, "meter"),
  3760. weight: math.unit(120, "kg"),
  3761. name: "Front",
  3762. image: {
  3763. source: "./media/characters/ggv/front.svg"
  3764. }
  3765. },
  3766. side: {
  3767. height: math.unit(2, "meter"),
  3768. weight: math.unit(120, "kg"),
  3769. name: "Side",
  3770. image: {
  3771. source: "./media/characters/ggv/side.svg"
  3772. }
  3773. }
  3774. },
  3775. [
  3776. {
  3777. name: "Extremely Puny",
  3778. height: math.unit(9 + 5 / 12, "feet")
  3779. },
  3780. {
  3781. name: "Horribly Small",
  3782. height: math.unit(47.7, "miles"),
  3783. default: true
  3784. },
  3785. {
  3786. name: "Reasonably Sized",
  3787. height: math.unit(25000, "parsecs")
  3788. },
  3789. {
  3790. name: "Slightly Uncompressed",
  3791. height: math.unit(7.77e31, "parsecs")
  3792. },
  3793. {
  3794. name: "Omniversal",
  3795. height: math.unit(1e300, "meters")
  3796. },
  3797. ]
  3798. ))
  3799. characterMakers.push(() => makeCharacter(
  3800. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3801. {
  3802. front: {
  3803. height: math.unit(2, "meter"),
  3804. weight: math.unit(75, "lb"),
  3805. name: "Front",
  3806. image: {
  3807. source: "./media/characters/napalm/front.svg"
  3808. }
  3809. },
  3810. back: {
  3811. height: math.unit(2, "meter"),
  3812. weight: math.unit(75, "lb"),
  3813. name: "Back",
  3814. image: {
  3815. source: "./media/characters/napalm/back.svg"
  3816. }
  3817. }
  3818. },
  3819. [
  3820. {
  3821. name: "Standard",
  3822. height: math.unit(55, "feet"),
  3823. default: true
  3824. }
  3825. ]
  3826. ))
  3827. characterMakers.push(() => makeCharacter(
  3828. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3829. {
  3830. front: {
  3831. height: math.unit(7 + 5 / 6, "feet"),
  3832. weight: math.unit(325, "lb"),
  3833. name: "Front",
  3834. image: {
  3835. source: "./media/characters/asana/front.svg",
  3836. extra: 1133 / 1060,
  3837. bottom: 15.2 / 1148.6
  3838. }
  3839. },
  3840. back: {
  3841. height: math.unit(7 + 5 / 6, "feet"),
  3842. weight: math.unit(325, "lb"),
  3843. name: "Back",
  3844. image: {
  3845. source: "./media/characters/asana/back.svg",
  3846. extra: 1114 / 1043,
  3847. bottom: 5 / 1120
  3848. }
  3849. },
  3850. dressedDark: {
  3851. height: math.unit(7 + 5 / 6, "feet"),
  3852. weight: math.unit(325, "lb"),
  3853. name: "Dressed (Dark)",
  3854. image: {
  3855. source: "./media/characters/asana/dressed-dark.svg",
  3856. extra: 1133 / 1060,
  3857. bottom: 15.2 / 1148.6
  3858. }
  3859. },
  3860. dressedLight: {
  3861. height: math.unit(7 + 5 / 6, "feet"),
  3862. weight: math.unit(325, "lb"),
  3863. name: "Dressed (Light)",
  3864. image: {
  3865. source: "./media/characters/asana/dressed-light.svg",
  3866. extra: 1133 / 1060,
  3867. bottom: 15.2 / 1148.6
  3868. }
  3869. },
  3870. },
  3871. [
  3872. {
  3873. name: "Standard",
  3874. height: math.unit(7 + 5 / 6, "feet"),
  3875. default: true
  3876. },
  3877. {
  3878. name: "Large",
  3879. height: math.unit(10, "meters")
  3880. },
  3881. {
  3882. name: "Macro",
  3883. height: math.unit(2500, "meters")
  3884. },
  3885. {
  3886. name: "Megamacro",
  3887. height: math.unit(5e6, "meters")
  3888. },
  3889. {
  3890. name: "Examacro",
  3891. height: math.unit(5e12, "lightyears")
  3892. },
  3893. {
  3894. name: "Max Size",
  3895. height: math.unit(1e31, "lightyears")
  3896. }
  3897. ]
  3898. ))
  3899. characterMakers.push(() => makeCharacter(
  3900. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3901. {
  3902. front: {
  3903. height: math.unit(2, "meter"),
  3904. weight: math.unit(60, "kg"),
  3905. name: "Front",
  3906. image: {
  3907. source: "./media/characters/ebony/front.svg",
  3908. bottom: 0.03,
  3909. extra: 1045 / 810 + 0.03
  3910. }
  3911. },
  3912. side: {
  3913. height: math.unit(2, "meter"),
  3914. weight: math.unit(60, "kg"),
  3915. name: "Side",
  3916. image: {
  3917. source: "./media/characters/ebony/side.svg",
  3918. bottom: 0.03,
  3919. extra: 1045 / 810 + 0.03
  3920. }
  3921. },
  3922. back: {
  3923. height: math.unit(2, "meter"),
  3924. weight: math.unit(60, "kg"),
  3925. name: "Back",
  3926. image: {
  3927. source: "./media/characters/ebony/back.svg",
  3928. bottom: 0.01,
  3929. extra: 1045 / 810 + 0.01
  3930. }
  3931. },
  3932. },
  3933. [
  3934. // TODO check why I did this lol
  3935. {
  3936. name: "Standard",
  3937. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3938. default: true
  3939. },
  3940. {
  3941. name: "Macro",
  3942. height: math.unit(200, "feet")
  3943. },
  3944. {
  3945. name: "Gigamacro",
  3946. height: math.unit(13000, "km")
  3947. }
  3948. ]
  3949. ))
  3950. characterMakers.push(() => makeCharacter(
  3951. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3952. {
  3953. front: {
  3954. height: math.unit(6, "feet"),
  3955. weight: math.unit(175, "lb"),
  3956. name: "Front",
  3957. image: {
  3958. source: "./media/characters/mountain/front.svg",
  3959. extra: 972 / 955,
  3960. bottom: 64 / 1036.6
  3961. }
  3962. },
  3963. back: {
  3964. height: math.unit(6, "feet"),
  3965. weight: math.unit(175, "lb"),
  3966. name: "Back",
  3967. image: {
  3968. source: "./media/characters/mountain/back.svg",
  3969. extra: 970 / 950,
  3970. bottom: 28.25 / 999
  3971. }
  3972. },
  3973. },
  3974. [
  3975. {
  3976. name: "Large",
  3977. height: math.unit(20, "meters")
  3978. },
  3979. {
  3980. name: "Macro",
  3981. height: math.unit(300, "meters")
  3982. },
  3983. {
  3984. name: "Gigamacro",
  3985. height: math.unit(10000, "km"),
  3986. default: true
  3987. },
  3988. {
  3989. name: "Examacro",
  3990. height: math.unit(10e9, "lightyears")
  3991. }
  3992. ]
  3993. ))
  3994. characterMakers.push(() => makeCharacter(
  3995. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3996. {
  3997. front: {
  3998. height: math.unit(8, "feet"),
  3999. weight: math.unit(500, "lb"),
  4000. name: "Front",
  4001. image: {
  4002. source: "./media/characters/rick/front.svg"
  4003. }
  4004. }
  4005. },
  4006. [
  4007. {
  4008. name: "Normal",
  4009. height: math.unit(8, "feet"),
  4010. default: true
  4011. },
  4012. {
  4013. name: "Macro",
  4014. height: math.unit(5, "km")
  4015. }
  4016. ]
  4017. ))
  4018. characterMakers.push(() => makeCharacter(
  4019. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4020. {
  4021. front: {
  4022. height: math.unit(8, "feet"),
  4023. weight: math.unit(120, "lb"),
  4024. name: "Front",
  4025. image: {
  4026. source: "./media/characters/ona/front.svg"
  4027. }
  4028. },
  4029. frontAlt: {
  4030. height: math.unit(8, "feet"),
  4031. weight: math.unit(120, "lb"),
  4032. name: "Front (Alt)",
  4033. image: {
  4034. source: "./media/characters/ona/front-alt.svg"
  4035. }
  4036. },
  4037. back: {
  4038. height: math.unit(8, "feet"),
  4039. weight: math.unit(120, "lb"),
  4040. name: "Back",
  4041. image: {
  4042. source: "./media/characters/ona/back.svg"
  4043. }
  4044. },
  4045. foot: {
  4046. height: math.unit(1.1, "feet"),
  4047. name: "Foot",
  4048. image: {
  4049. source: "./media/characters/ona/foot.svg"
  4050. }
  4051. }
  4052. },
  4053. [
  4054. {
  4055. name: "Megamacro",
  4056. height: math.unit(70, "km"),
  4057. default: true
  4058. },
  4059. {
  4060. name: "Gigamacro",
  4061. height: math.unit(681818, "miles")
  4062. },
  4063. {
  4064. name: "Examacro",
  4065. height: math.unit(3800000, "lightyears")
  4066. },
  4067. ]
  4068. ))
  4069. characterMakers.push(() => makeCharacter(
  4070. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4071. {
  4072. front: {
  4073. height: math.unit(12, "feet"),
  4074. weight: math.unit(3000, "lb"),
  4075. name: "Front",
  4076. image: {
  4077. source: "./media/characters/mech/front.svg",
  4078. extra: 2900 / 2770,
  4079. bottom: 110 / 3010
  4080. }
  4081. },
  4082. back: {
  4083. height: math.unit(12, "feet"),
  4084. weight: math.unit(3000, "lb"),
  4085. name: "Back",
  4086. image: {
  4087. source: "./media/characters/mech/back.svg",
  4088. extra: 3011 / 2890,
  4089. bottom: 94 / 3105
  4090. }
  4091. },
  4092. maw: {
  4093. height: math.unit(3.07, "feet"),
  4094. name: "Maw",
  4095. image: {
  4096. source: "./media/characters/mech/maw.svg"
  4097. }
  4098. },
  4099. head: {
  4100. height: math.unit(2.82, "feet"),
  4101. name: "Head",
  4102. image: {
  4103. source: "./media/characters/mech/head.svg"
  4104. }
  4105. },
  4106. dick: {
  4107. height: math.unit(1.43, "feet"),
  4108. name: "Dick",
  4109. image: {
  4110. source: "./media/characters/mech/dick.svg"
  4111. }
  4112. },
  4113. },
  4114. [
  4115. {
  4116. name: "Normal",
  4117. height: math.unit(12, "feet")
  4118. },
  4119. {
  4120. name: "Macro",
  4121. height: math.unit(300, "feet"),
  4122. default: true
  4123. },
  4124. {
  4125. name: "Macro+",
  4126. height: math.unit(1500, "feet")
  4127. },
  4128. ]
  4129. ))
  4130. characterMakers.push(() => makeCharacter(
  4131. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4132. {
  4133. front: {
  4134. height: math.unit(1.3, "meter"),
  4135. weight: math.unit(30, "kg"),
  4136. name: "Front",
  4137. image: {
  4138. source: "./media/characters/gregory/front.svg",
  4139. }
  4140. }
  4141. },
  4142. [
  4143. {
  4144. name: "Normal",
  4145. height: math.unit(1.3, "meter"),
  4146. default: true
  4147. },
  4148. {
  4149. name: "Macro",
  4150. height: math.unit(20, "meter")
  4151. }
  4152. ]
  4153. ))
  4154. characterMakers.push(() => makeCharacter(
  4155. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4156. {
  4157. front: {
  4158. height: math.unit(2.8, "meter"),
  4159. weight: math.unit(200, "kg"),
  4160. name: "Front",
  4161. image: {
  4162. source: "./media/characters/elory/front.svg",
  4163. }
  4164. }
  4165. },
  4166. [
  4167. {
  4168. name: "Normal",
  4169. height: math.unit(2.8, "meter"),
  4170. default: true
  4171. },
  4172. {
  4173. name: "Macro",
  4174. height: math.unit(38, "meter")
  4175. }
  4176. ]
  4177. ))
  4178. characterMakers.push(() => makeCharacter(
  4179. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4180. {
  4181. front: {
  4182. height: math.unit(470, "feet"),
  4183. weight: math.unit(924, "tons"),
  4184. name: "Front",
  4185. image: {
  4186. source: "./media/characters/angelpatamon/front.svg",
  4187. }
  4188. }
  4189. },
  4190. [
  4191. {
  4192. name: "Normal",
  4193. height: math.unit(470, "feet"),
  4194. default: true
  4195. },
  4196. {
  4197. name: "Deity Size I",
  4198. height: math.unit(28651.2, "km")
  4199. },
  4200. {
  4201. name: "Deity Size II",
  4202. height: math.unit(171907.2, "km")
  4203. }
  4204. ]
  4205. ))
  4206. characterMakers.push(() => makeCharacter(
  4207. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4208. {
  4209. side: {
  4210. height: math.unit(7.2, "meter"),
  4211. weight: math.unit(8.2, "tons"),
  4212. name: "Side",
  4213. image: {
  4214. source: "./media/characters/cryae/side.svg",
  4215. extra: 3500 / 1500
  4216. }
  4217. }
  4218. },
  4219. [
  4220. {
  4221. name: "Normal",
  4222. height: math.unit(7.2, "meter"),
  4223. default: true
  4224. }
  4225. ]
  4226. ))
  4227. characterMakers.push(() => makeCharacter(
  4228. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4229. {
  4230. front: {
  4231. height: math.unit(6, "feet"),
  4232. weight: math.unit(175, "lb"),
  4233. name: "Front",
  4234. image: {
  4235. source: "./media/characters/xera/front.svg",
  4236. extra: 2377 / 1972,
  4237. bottom: 75.5 / 2452
  4238. }
  4239. },
  4240. side: {
  4241. height: math.unit(6, "feet"),
  4242. weight: math.unit(175, "lb"),
  4243. name: "Side",
  4244. image: {
  4245. source: "./media/characters/xera/side.svg",
  4246. extra: 2345 / 2019,
  4247. bottom: 39.7 / 2384
  4248. }
  4249. },
  4250. back: {
  4251. height: math.unit(6, "feet"),
  4252. weight: math.unit(175, "lb"),
  4253. name: "Back",
  4254. image: {
  4255. source: "./media/characters/xera/back.svg",
  4256. extra: 2095 / 1984,
  4257. bottom: 67 / 2166
  4258. }
  4259. },
  4260. },
  4261. [
  4262. {
  4263. name: "Small",
  4264. height: math.unit(10, "feet")
  4265. },
  4266. {
  4267. name: "Macro",
  4268. height: math.unit(500, "meters"),
  4269. default: true
  4270. },
  4271. {
  4272. name: "Macro+",
  4273. height: math.unit(10, "km")
  4274. },
  4275. {
  4276. name: "Gigamacro",
  4277. height: math.unit(25000, "km")
  4278. },
  4279. {
  4280. name: "Teramacro",
  4281. height: math.unit(3e6, "km")
  4282. }
  4283. ]
  4284. ))
  4285. characterMakers.push(() => makeCharacter(
  4286. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4287. {
  4288. front: {
  4289. height: math.unit(6, "feet"),
  4290. weight: math.unit(175, "lb"),
  4291. name: "Front",
  4292. image: {
  4293. source: "./media/characters/nebula/front.svg",
  4294. extra: 2566 / 2362,
  4295. bottom: 81 / 2644
  4296. }
  4297. }
  4298. },
  4299. [
  4300. {
  4301. name: "Small",
  4302. height: math.unit(4.5, "meters")
  4303. },
  4304. {
  4305. name: "Macro",
  4306. height: math.unit(1500, "meters"),
  4307. default: true
  4308. },
  4309. {
  4310. name: "Megamacro",
  4311. height: math.unit(150, "km")
  4312. },
  4313. {
  4314. name: "Gigamacro",
  4315. height: math.unit(27000, "km")
  4316. }
  4317. ]
  4318. ))
  4319. characterMakers.push(() => makeCharacter(
  4320. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4321. {
  4322. front: {
  4323. height: math.unit(6, "feet"),
  4324. weight: math.unit(225, "lb"),
  4325. name: "Front",
  4326. image: {
  4327. source: "./media/characters/abysgar/front.svg"
  4328. }
  4329. }
  4330. },
  4331. [
  4332. {
  4333. name: "Small",
  4334. height: math.unit(4.5, "meters")
  4335. },
  4336. {
  4337. name: "Macro",
  4338. height: math.unit(1250, "meters"),
  4339. default: true
  4340. },
  4341. {
  4342. name: "Megamacro",
  4343. height: math.unit(125, "km")
  4344. },
  4345. {
  4346. name: "Gigamacro",
  4347. height: math.unit(26000, "km")
  4348. }
  4349. ]
  4350. ))
  4351. characterMakers.push(() => makeCharacter(
  4352. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4353. {
  4354. front: {
  4355. height: math.unit(6, "feet"),
  4356. weight: math.unit(180, "lb"),
  4357. name: "Front",
  4358. image: {
  4359. source: "./media/characters/yakuz/front.svg"
  4360. }
  4361. }
  4362. },
  4363. [
  4364. {
  4365. name: "Small",
  4366. height: math.unit(5, "meters")
  4367. },
  4368. {
  4369. name: "Macro",
  4370. height: math.unit(1500, "meters"),
  4371. default: true
  4372. },
  4373. {
  4374. name: "Megamacro",
  4375. height: math.unit(200, "km")
  4376. },
  4377. {
  4378. name: "Gigamacro",
  4379. height: math.unit(100000, "km")
  4380. }
  4381. ]
  4382. ))
  4383. characterMakers.push(() => makeCharacter(
  4384. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4385. {
  4386. front: {
  4387. height: math.unit(6, "feet"),
  4388. weight: math.unit(175, "lb"),
  4389. name: "Front",
  4390. image: {
  4391. source: "./media/characters/mirova/front.svg",
  4392. extra: 3334 / 3071,
  4393. bottom: 42 / 3375.6
  4394. }
  4395. }
  4396. },
  4397. [
  4398. {
  4399. name: "Small",
  4400. height: math.unit(5, "meters")
  4401. },
  4402. {
  4403. name: "Macro",
  4404. height: math.unit(900, "meters"),
  4405. default: true
  4406. },
  4407. {
  4408. name: "Megamacro",
  4409. height: math.unit(135, "km")
  4410. },
  4411. {
  4412. name: "Gigamacro",
  4413. height: math.unit(20000, "km")
  4414. }
  4415. ]
  4416. ))
  4417. characterMakers.push(() => makeCharacter(
  4418. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4419. {
  4420. side: {
  4421. height: math.unit(28.35, "feet"),
  4422. weight: math.unit(99.75, "tons"),
  4423. name: "Side",
  4424. image: {
  4425. source: "./media/characters/asana-mech/side.svg",
  4426. extra: 923 / 699,
  4427. bottom: 50 / 975
  4428. }
  4429. },
  4430. chaingun: {
  4431. height: math.unit(7, "feet"),
  4432. weight: math.unit(2400, "lb"),
  4433. name: "Chaingun",
  4434. image: {
  4435. source: "./media/characters/asana-mech/chaingun.svg"
  4436. }
  4437. },
  4438. laser: {
  4439. height: math.unit(7.12, "feet"),
  4440. weight: math.unit(2000, "lb"),
  4441. name: "Laser",
  4442. image: {
  4443. source: "./media/characters/asana-mech/laser.svg"
  4444. }
  4445. },
  4446. },
  4447. [
  4448. {
  4449. name: "Normal",
  4450. height: math.unit(28.35, "feet"),
  4451. default: true
  4452. },
  4453. {
  4454. name: "Macro",
  4455. height: math.unit(2500, "feet")
  4456. },
  4457. {
  4458. name: "Megamacro",
  4459. height: math.unit(25, "miles")
  4460. },
  4461. {
  4462. name: "Examacro",
  4463. height: math.unit(6e8, "lightyears")
  4464. },
  4465. ]
  4466. ))
  4467. characterMakers.push(() => makeCharacter(
  4468. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4469. {
  4470. front: {
  4471. height: math.unit(5, "meters"),
  4472. weight: math.unit(1000, "kg"),
  4473. name: "Front",
  4474. image: {
  4475. source: "./media/characters/asche/front.svg",
  4476. extra: 1258 / 1190,
  4477. bottom: 47 / 1305
  4478. }
  4479. },
  4480. frontUnderwear: {
  4481. height: math.unit(5, "meters"),
  4482. weight: math.unit(1000, "kg"),
  4483. name: "Front (Underwear)",
  4484. image: {
  4485. source: "./media/characters/asche/front-underwear.svg",
  4486. extra: 1258 / 1190,
  4487. bottom: 47 / 1305
  4488. }
  4489. },
  4490. frontDressed: {
  4491. height: math.unit(5, "meters"),
  4492. weight: math.unit(1000, "kg"),
  4493. name: "Front (Dressed)",
  4494. image: {
  4495. source: "./media/characters/asche/front-dressed.svg",
  4496. extra: 1258 / 1190,
  4497. bottom: 47 / 1305
  4498. }
  4499. },
  4500. frontArmor: {
  4501. height: math.unit(5, "meters"),
  4502. weight: math.unit(1000, "kg"),
  4503. name: "Front (Armored)",
  4504. image: {
  4505. source: "./media/characters/asche/front-armored.svg",
  4506. extra: 1374 / 1308,
  4507. bottom: 23 / 1397
  4508. }
  4509. },
  4510. mp724: {
  4511. height: math.unit(0.96, "meters"),
  4512. weight: math.unit(38, "kg"),
  4513. name: "H&K MP724",
  4514. image: {
  4515. source: "./media/characters/asche/h&k-mp724.svg"
  4516. }
  4517. },
  4518. side: {
  4519. height: math.unit(5, "meters"),
  4520. weight: math.unit(1000, "kg"),
  4521. name: "Side",
  4522. image: {
  4523. source: "./media/characters/asche/side.svg",
  4524. extra: 1717 / 1609,
  4525. bottom: 0.005
  4526. }
  4527. },
  4528. back: {
  4529. height: math.unit(5, "meters"),
  4530. weight: math.unit(1000, "kg"),
  4531. name: "Back",
  4532. image: {
  4533. source: "./media/characters/asche/back.svg",
  4534. extra: 1570 / 1501
  4535. }
  4536. },
  4537. },
  4538. [
  4539. {
  4540. name: "DEFCON 5",
  4541. height: math.unit(5, "meters")
  4542. },
  4543. {
  4544. name: "DEFCON 4",
  4545. height: math.unit(500, "meters"),
  4546. default: true
  4547. },
  4548. {
  4549. name: "DEFCON 3",
  4550. height: math.unit(5, "km")
  4551. },
  4552. {
  4553. name: "DEFCON 2",
  4554. height: math.unit(500, "km")
  4555. },
  4556. {
  4557. name: "DEFCON 1",
  4558. height: math.unit(500000, "km")
  4559. },
  4560. {
  4561. name: "DEFCON 0",
  4562. height: math.unit(3, "gigaparsecs")
  4563. },
  4564. ]
  4565. ))
  4566. characterMakers.push(() => makeCharacter(
  4567. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4568. {
  4569. front: {
  4570. height: math.unit(2, "meters"),
  4571. weight: math.unit(76, "kg"),
  4572. name: "Front",
  4573. image: {
  4574. source: "./media/characters/gale/front.svg"
  4575. }
  4576. },
  4577. frontAlt1: {
  4578. height: math.unit(2, "meters"),
  4579. weight: math.unit(76, "kg"),
  4580. name: "Front (Alt 1)",
  4581. image: {
  4582. source: "./media/characters/gale/front-alt-1.svg"
  4583. }
  4584. },
  4585. frontAlt2: {
  4586. height: math.unit(2, "meters"),
  4587. weight: math.unit(76, "kg"),
  4588. name: "Front (Alt 2)",
  4589. image: {
  4590. source: "./media/characters/gale/front-alt-2.svg"
  4591. }
  4592. },
  4593. },
  4594. [
  4595. {
  4596. name: "Normal",
  4597. height: math.unit(7, "feet")
  4598. },
  4599. {
  4600. name: "Macro",
  4601. height: math.unit(150, "feet"),
  4602. default: true
  4603. },
  4604. {
  4605. name: "Macro+",
  4606. height: math.unit(300, "feet")
  4607. },
  4608. ]
  4609. ))
  4610. characterMakers.push(() => makeCharacter(
  4611. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4612. {
  4613. front: {
  4614. height: math.unit(5 + 10/12, "feet"),
  4615. weight: math.unit(67, "kg"),
  4616. name: "Front",
  4617. image: {
  4618. source: "./media/characters/draylen/front.svg",
  4619. extra: 832/777,
  4620. bottom: 85/917
  4621. }
  4622. }
  4623. },
  4624. [
  4625. {
  4626. name: "Normal",
  4627. height: math.unit(5 + 10/12, "feet")
  4628. },
  4629. {
  4630. name: "Macro",
  4631. height: math.unit(150, "feet"),
  4632. default: true
  4633. }
  4634. ]
  4635. ))
  4636. characterMakers.push(() => makeCharacter(
  4637. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4638. {
  4639. front: {
  4640. height: math.unit(7 + 9 / 12, "feet"),
  4641. weight: math.unit(379, "lbs"),
  4642. name: "Front",
  4643. image: {
  4644. source: "./media/characters/chez/front.svg"
  4645. }
  4646. },
  4647. side: {
  4648. height: math.unit(7 + 9 / 12, "feet"),
  4649. weight: math.unit(379, "lbs"),
  4650. name: "Side",
  4651. image: {
  4652. source: "./media/characters/chez/side.svg"
  4653. }
  4654. }
  4655. },
  4656. [
  4657. {
  4658. name: "Normal",
  4659. height: math.unit(7 + 9 / 12, "feet"),
  4660. default: true
  4661. },
  4662. {
  4663. name: "God King",
  4664. height: math.unit(9750000, "meters")
  4665. }
  4666. ]
  4667. ))
  4668. characterMakers.push(() => makeCharacter(
  4669. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4670. {
  4671. front: {
  4672. height: math.unit(6, "feet"),
  4673. weight: math.unit(275, "lbs"),
  4674. name: "Front",
  4675. image: {
  4676. source: "./media/characters/kaylum/front.svg",
  4677. bottom: 0.01,
  4678. extra: 1166 / 1031
  4679. }
  4680. },
  4681. frontWingless: {
  4682. height: math.unit(6, "feet"),
  4683. weight: math.unit(275, "lbs"),
  4684. name: "Front (Wingless)",
  4685. image: {
  4686. source: "./media/characters/kaylum/front-wingless.svg",
  4687. bottom: 0.01,
  4688. extra: 1117 / 1031
  4689. }
  4690. }
  4691. },
  4692. [
  4693. {
  4694. name: "Normal",
  4695. height: math.unit(3.05, "meters")
  4696. },
  4697. {
  4698. name: "Master",
  4699. height: math.unit(5.5, "meters")
  4700. },
  4701. {
  4702. name: "Rampage",
  4703. height: math.unit(19, "meters")
  4704. },
  4705. {
  4706. name: "Macro Lite",
  4707. height: math.unit(37, "meters")
  4708. },
  4709. {
  4710. name: "Hyper Predator",
  4711. height: math.unit(61, "meters")
  4712. },
  4713. {
  4714. name: "Macro",
  4715. height: math.unit(138, "meters"),
  4716. default: true
  4717. }
  4718. ]
  4719. ))
  4720. characterMakers.push(() => makeCharacter(
  4721. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4722. {
  4723. front: {
  4724. height: math.unit(6, "feet"),
  4725. weight: math.unit(150, "lbs"),
  4726. name: "Front",
  4727. image: {
  4728. source: "./media/characters/geta/front.svg"
  4729. }
  4730. }
  4731. },
  4732. [
  4733. {
  4734. name: "Micro",
  4735. height: math.unit(3, "inches"),
  4736. default: true
  4737. },
  4738. {
  4739. name: "Normal",
  4740. height: math.unit(5 + 5 / 12, "feet")
  4741. }
  4742. ]
  4743. ))
  4744. characterMakers.push(() => makeCharacter(
  4745. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4746. {
  4747. front: {
  4748. height: math.unit(6, "feet"),
  4749. weight: math.unit(300, "lbs"),
  4750. name: "Front",
  4751. image: {
  4752. source: "./media/characters/tyrnn/front.svg"
  4753. }
  4754. }
  4755. },
  4756. [
  4757. {
  4758. name: "Main Height",
  4759. height: math.unit(355, "feet"),
  4760. default: true
  4761. },
  4762. {
  4763. name: "Fave. Height",
  4764. height: math.unit(2400, "feet")
  4765. }
  4766. ]
  4767. ))
  4768. characterMakers.push(() => makeCharacter(
  4769. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4770. {
  4771. front: {
  4772. height: math.unit(6, "feet"),
  4773. weight: math.unit(300, "lbs"),
  4774. name: "Front",
  4775. image: {
  4776. source: "./media/characters/appledectomy/front.svg"
  4777. }
  4778. }
  4779. },
  4780. [
  4781. {
  4782. name: "Macro",
  4783. height: math.unit(2500, "feet")
  4784. },
  4785. {
  4786. name: "Megamacro",
  4787. height: math.unit(50, "miles"),
  4788. default: true
  4789. },
  4790. {
  4791. name: "Gigamacro",
  4792. height: math.unit(5000, "miles")
  4793. },
  4794. {
  4795. name: "Teramacro",
  4796. height: math.unit(250000, "miles")
  4797. },
  4798. ]
  4799. ))
  4800. characterMakers.push(() => makeCharacter(
  4801. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4802. {
  4803. front: {
  4804. height: math.unit(6, "feet"),
  4805. weight: math.unit(200, "lbs"),
  4806. name: "Front",
  4807. image: {
  4808. source: "./media/characters/vulpes/front.svg",
  4809. extra: 573 / 543,
  4810. bottom: 0.033
  4811. }
  4812. },
  4813. side: {
  4814. height: math.unit(6, "feet"),
  4815. weight: math.unit(200, "lbs"),
  4816. name: "Side",
  4817. image: {
  4818. source: "./media/characters/vulpes/side.svg",
  4819. extra: 577 / 549,
  4820. bottom: 11 / 588
  4821. }
  4822. },
  4823. back: {
  4824. height: math.unit(6, "feet"),
  4825. weight: math.unit(200, "lbs"),
  4826. name: "Back",
  4827. image: {
  4828. source: "./media/characters/vulpes/back.svg",
  4829. extra: 573 / 549,
  4830. bottom: 20 / 593
  4831. }
  4832. },
  4833. feet: {
  4834. height: math.unit(1.276, "feet"),
  4835. name: "Feet",
  4836. image: {
  4837. source: "./media/characters/vulpes/feet.svg"
  4838. }
  4839. },
  4840. maw: {
  4841. height: math.unit(1.18, "feet"),
  4842. name: "Maw",
  4843. image: {
  4844. source: "./media/characters/vulpes/maw.svg"
  4845. }
  4846. },
  4847. },
  4848. [
  4849. {
  4850. name: "Micro",
  4851. height: math.unit(2, "inches")
  4852. },
  4853. {
  4854. name: "Normal",
  4855. height: math.unit(6.3, "feet")
  4856. },
  4857. {
  4858. name: "Macro",
  4859. height: math.unit(850, "feet")
  4860. },
  4861. {
  4862. name: "Megamacro",
  4863. height: math.unit(7500, "feet"),
  4864. default: true
  4865. },
  4866. {
  4867. name: "Gigamacro",
  4868. height: math.unit(570000, "miles")
  4869. }
  4870. ]
  4871. ))
  4872. characterMakers.push(() => makeCharacter(
  4873. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4874. {
  4875. front: {
  4876. height: math.unit(6, "feet"),
  4877. weight: math.unit(210, "lbs"),
  4878. name: "Front",
  4879. image: {
  4880. source: "./media/characters/rain-fallen/front.svg"
  4881. }
  4882. },
  4883. side: {
  4884. height: math.unit(6, "feet"),
  4885. weight: math.unit(210, "lbs"),
  4886. name: "Side",
  4887. image: {
  4888. source: "./media/characters/rain-fallen/side.svg"
  4889. }
  4890. },
  4891. back: {
  4892. height: math.unit(6, "feet"),
  4893. weight: math.unit(210, "lbs"),
  4894. name: "Back",
  4895. image: {
  4896. source: "./media/characters/rain-fallen/back.svg"
  4897. }
  4898. },
  4899. feral: {
  4900. height: math.unit(9, "feet"),
  4901. weight: math.unit(700, "lbs"),
  4902. name: "Feral",
  4903. image: {
  4904. source: "./media/characters/rain-fallen/feral.svg"
  4905. }
  4906. },
  4907. },
  4908. [
  4909. {
  4910. name: "Meddling with Mortals",
  4911. height: math.unit(8 + 8/12, "feet")
  4912. },
  4913. {
  4914. name: "Normal",
  4915. height: math.unit(5, "meter")
  4916. },
  4917. {
  4918. name: "Macro",
  4919. height: math.unit(150, "meter"),
  4920. default: true
  4921. },
  4922. {
  4923. name: "Megamacro",
  4924. height: math.unit(278e6, "meter")
  4925. },
  4926. {
  4927. name: "Gigamacro",
  4928. height: math.unit(2e9, "meter")
  4929. },
  4930. {
  4931. name: "Teramacro",
  4932. height: math.unit(8e12, "meter")
  4933. },
  4934. {
  4935. name: "Devourer",
  4936. height: math.unit(14, "zettameters")
  4937. },
  4938. {
  4939. name: "Scarlet King",
  4940. height: math.unit(18, "yottameters")
  4941. },
  4942. {
  4943. name: "Void",
  4944. height: math.unit(1e88, "yottameters")
  4945. }
  4946. ]
  4947. ))
  4948. characterMakers.push(() => makeCharacter(
  4949. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4950. {
  4951. standing: {
  4952. height: math.unit(6, "feet"),
  4953. weight: math.unit(180, "lbs"),
  4954. name: "Standing",
  4955. image: {
  4956. source: "./media/characters/zaakira/standing.svg",
  4957. extra: 1599/1504,
  4958. bottom: 39/1638
  4959. }
  4960. },
  4961. laying: {
  4962. height: math.unit(3, "feet"),
  4963. weight: math.unit(180, "lbs"),
  4964. name: "Laying",
  4965. image: {
  4966. source: "./media/characters/zaakira/laying.svg"
  4967. }
  4968. },
  4969. },
  4970. [
  4971. {
  4972. name: "Normal",
  4973. height: math.unit(12, "feet")
  4974. },
  4975. {
  4976. name: "Macro",
  4977. height: math.unit(279, "feet"),
  4978. default: true
  4979. }
  4980. ]
  4981. ))
  4982. characterMakers.push(() => makeCharacter(
  4983. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4984. {
  4985. femSfw: {
  4986. height: math.unit(8, "feet"),
  4987. weight: math.unit(350, "lb"),
  4988. name: "Fem",
  4989. image: {
  4990. source: "./media/characters/sigvald/fem-sfw.svg",
  4991. extra: 182 / 164,
  4992. bottom: 8.7 / 190.5
  4993. }
  4994. },
  4995. femNsfw: {
  4996. height: math.unit(8, "feet"),
  4997. weight: math.unit(350, "lb"),
  4998. name: "Fem (NSFW)",
  4999. image: {
  5000. source: "./media/characters/sigvald/fem-nsfw.svg",
  5001. extra: 182 / 164,
  5002. bottom: 8.7 / 190.5
  5003. }
  5004. },
  5005. maleNsfw: {
  5006. height: math.unit(8, "feet"),
  5007. weight: math.unit(350, "lb"),
  5008. name: "Male (NSFW)",
  5009. image: {
  5010. source: "./media/characters/sigvald/male-nsfw.svg",
  5011. extra: 182 / 164,
  5012. bottom: 8.7 / 190.5
  5013. }
  5014. },
  5015. hermNsfw: {
  5016. height: math.unit(8, "feet"),
  5017. weight: math.unit(350, "lb"),
  5018. name: "Herm (NSFW)",
  5019. image: {
  5020. source: "./media/characters/sigvald/herm-nsfw.svg",
  5021. extra: 182 / 164,
  5022. bottom: 8.7 / 190.5
  5023. }
  5024. },
  5025. dick: {
  5026. height: math.unit(2.36, "feet"),
  5027. name: "Dick",
  5028. image: {
  5029. source: "./media/characters/sigvald/dick.svg"
  5030. }
  5031. },
  5032. eye: {
  5033. height: math.unit(0.31, "feet"),
  5034. name: "Eye",
  5035. image: {
  5036. source: "./media/characters/sigvald/eye.svg"
  5037. }
  5038. },
  5039. mouth: {
  5040. height: math.unit(0.92, "feet"),
  5041. name: "Mouth",
  5042. image: {
  5043. source: "./media/characters/sigvald/mouth.svg"
  5044. }
  5045. },
  5046. paws: {
  5047. height: math.unit(2.2, "feet"),
  5048. name: "Paws",
  5049. image: {
  5050. source: "./media/characters/sigvald/paws.svg"
  5051. }
  5052. }
  5053. },
  5054. [
  5055. {
  5056. name: "Normal",
  5057. height: math.unit(8, "feet")
  5058. },
  5059. {
  5060. name: "Large",
  5061. height: math.unit(12, "feet")
  5062. },
  5063. {
  5064. name: "Larger",
  5065. height: math.unit(20, "feet")
  5066. },
  5067. {
  5068. name: "Macro",
  5069. height: math.unit(150, "feet")
  5070. },
  5071. {
  5072. name: "Macro+",
  5073. height: math.unit(200, "feet"),
  5074. default: true
  5075. },
  5076. ]
  5077. ))
  5078. characterMakers.push(() => makeCharacter(
  5079. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5080. {
  5081. side: {
  5082. height: math.unit(12, "feet"),
  5083. weight: math.unit(2000, "kg"),
  5084. name: "Side",
  5085. image: {
  5086. source: "./media/characters/scott/side.svg",
  5087. extra: 754 / 724,
  5088. bottom: 0.069
  5089. }
  5090. },
  5091. upright: {
  5092. height: math.unit(12, "feet"),
  5093. weight: math.unit(2000, "kg"),
  5094. name: "Upright",
  5095. image: {
  5096. source: "./media/characters/scott/upright.svg",
  5097. extra: 3881 / 3722,
  5098. bottom: 0.05
  5099. }
  5100. },
  5101. },
  5102. [
  5103. {
  5104. name: "Normal",
  5105. height: math.unit(12, "feet"),
  5106. default: true
  5107. },
  5108. ]
  5109. ))
  5110. characterMakers.push(() => makeCharacter(
  5111. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5112. {
  5113. side: {
  5114. height: math.unit(8, "meters"),
  5115. weight: math.unit(84755, "lbs"),
  5116. name: "Side",
  5117. image: {
  5118. source: "./media/characters/tobias/side.svg",
  5119. extra: 1474 / 1096,
  5120. bottom: 38.9 / 1513.1235
  5121. }
  5122. },
  5123. },
  5124. [
  5125. {
  5126. name: "Normal",
  5127. height: math.unit(8, "meters"),
  5128. default: true
  5129. },
  5130. ]
  5131. ))
  5132. characterMakers.push(() => makeCharacter(
  5133. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5134. {
  5135. front: {
  5136. height: math.unit(5.5, "feet"),
  5137. weight: math.unit(400, "lbs"),
  5138. name: "Front",
  5139. image: {
  5140. source: "./media/characters/kieran/front.svg",
  5141. extra: 2694 / 2364,
  5142. bottom: 217 / 2908
  5143. }
  5144. },
  5145. side: {
  5146. height: math.unit(5.5, "feet"),
  5147. weight: math.unit(400, "lbs"),
  5148. name: "Side",
  5149. image: {
  5150. source: "./media/characters/kieran/side.svg",
  5151. extra: 875 / 777,
  5152. bottom: 84.6 / 959
  5153. }
  5154. },
  5155. },
  5156. [
  5157. {
  5158. name: "Normal",
  5159. height: math.unit(5.5, "feet"),
  5160. default: true
  5161. },
  5162. ]
  5163. ))
  5164. characterMakers.push(() => makeCharacter(
  5165. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5166. {
  5167. side: {
  5168. height: math.unit(2, "meters"),
  5169. weight: math.unit(70, "kg"),
  5170. name: "Side",
  5171. image: {
  5172. source: "./media/characters/sanya/side.svg",
  5173. bottom: 0.02,
  5174. extra: 1.02
  5175. }
  5176. },
  5177. },
  5178. [
  5179. {
  5180. name: "Small",
  5181. height: math.unit(2, "meters")
  5182. },
  5183. {
  5184. name: "Normal",
  5185. height: math.unit(3, "meters")
  5186. },
  5187. {
  5188. name: "Macro",
  5189. height: math.unit(16, "meters"),
  5190. default: true
  5191. },
  5192. ]
  5193. ))
  5194. characterMakers.push(() => makeCharacter(
  5195. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5196. {
  5197. front: {
  5198. height: math.unit(2, "meters"),
  5199. weight: math.unit(120, "kg"),
  5200. name: "Front",
  5201. image: {
  5202. source: "./media/characters/miranda/front.svg",
  5203. extra: 195 / 185,
  5204. bottom: 10.9 / 206.5
  5205. }
  5206. },
  5207. back: {
  5208. height: math.unit(2, "meters"),
  5209. weight: math.unit(120, "kg"),
  5210. name: "Back",
  5211. image: {
  5212. source: "./media/characters/miranda/back.svg",
  5213. extra: 201 / 193,
  5214. bottom: 2.3 / 203.7
  5215. }
  5216. },
  5217. },
  5218. [
  5219. {
  5220. name: "Normal",
  5221. height: math.unit(10, "feet"),
  5222. default: true
  5223. }
  5224. ]
  5225. ))
  5226. characterMakers.push(() => makeCharacter(
  5227. { name: "James", species: ["deer"], tags: ["anthro"] },
  5228. {
  5229. side: {
  5230. height: math.unit(2, "meters"),
  5231. weight: math.unit(100, "kg"),
  5232. name: "Front",
  5233. image: {
  5234. source: "./media/characters/james/front.svg",
  5235. extra: 10 / 8.5
  5236. }
  5237. },
  5238. },
  5239. [
  5240. {
  5241. name: "Normal",
  5242. height: math.unit(8.5, "feet"),
  5243. default: true
  5244. }
  5245. ]
  5246. ))
  5247. characterMakers.push(() => makeCharacter(
  5248. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5249. {
  5250. side: {
  5251. height: math.unit(9.5, "feet"),
  5252. weight: math.unit(2500, "lbs"),
  5253. name: "Side",
  5254. image: {
  5255. source: "./media/characters/heather/side.svg"
  5256. }
  5257. },
  5258. },
  5259. [
  5260. {
  5261. name: "Normal",
  5262. height: math.unit(9.5, "feet"),
  5263. default: true
  5264. }
  5265. ]
  5266. ))
  5267. characterMakers.push(() => makeCharacter(
  5268. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5269. {
  5270. side: {
  5271. height: math.unit(6.5, "feet"),
  5272. weight: math.unit(400, "lbs"),
  5273. name: "Side",
  5274. image: {
  5275. source: "./media/characters/lukas/side.svg",
  5276. extra: 7.25 / 6.5
  5277. }
  5278. },
  5279. },
  5280. [
  5281. {
  5282. name: "Normal",
  5283. height: math.unit(6.5, "feet"),
  5284. default: true
  5285. }
  5286. ]
  5287. ))
  5288. characterMakers.push(() => makeCharacter(
  5289. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5290. {
  5291. side: {
  5292. height: math.unit(5, "feet"),
  5293. weight: math.unit(3000, "lbs"),
  5294. name: "Side",
  5295. image: {
  5296. source: "./media/characters/louise/side.svg"
  5297. }
  5298. },
  5299. },
  5300. [
  5301. {
  5302. name: "Normal",
  5303. height: math.unit(5, "feet"),
  5304. default: true
  5305. }
  5306. ]
  5307. ))
  5308. characterMakers.push(() => makeCharacter(
  5309. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5310. {
  5311. side: {
  5312. height: math.unit(6, "feet"),
  5313. weight: math.unit(150, "lbs"),
  5314. name: "Side",
  5315. image: {
  5316. source: "./media/characters/ramona/side.svg",
  5317. extra: 871/854,
  5318. bottom: 41/912
  5319. }
  5320. },
  5321. },
  5322. [
  5323. {
  5324. name: "Normal",
  5325. height: math.unit(5.3, "meters"),
  5326. default: true
  5327. },
  5328. {
  5329. name: "Macro",
  5330. height: math.unit(20, "stories")
  5331. },
  5332. {
  5333. name: "Macro+",
  5334. height: math.unit(50, "stories")
  5335. },
  5336. ]
  5337. ))
  5338. characterMakers.push(() => makeCharacter(
  5339. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5340. {
  5341. standing: {
  5342. height: math.unit(5.75, "feet"),
  5343. weight: math.unit(160, "lbs"),
  5344. name: "Standing",
  5345. image: {
  5346. source: "./media/characters/deerpuff/standing.svg",
  5347. extra: 682 / 624
  5348. }
  5349. },
  5350. sitting: {
  5351. height: math.unit(5.75 / 1.79, "feet"),
  5352. weight: math.unit(160, "lbs"),
  5353. name: "Sitting",
  5354. image: {
  5355. source: "./media/characters/deerpuff/sitting.svg",
  5356. bottom: 44 / 400,
  5357. extra: 1
  5358. }
  5359. },
  5360. taurLaying: {
  5361. height: math.unit(6, "feet"),
  5362. weight: math.unit(400, "lbs"),
  5363. name: "Taur (Laying)",
  5364. image: {
  5365. source: "./media/characters/deerpuff/taur-laying.svg"
  5366. }
  5367. },
  5368. },
  5369. [
  5370. {
  5371. name: "Puffball",
  5372. height: math.unit(6, "inches")
  5373. },
  5374. {
  5375. name: "Normalpuff",
  5376. height: math.unit(5.75, "feet")
  5377. },
  5378. {
  5379. name: "Macropuff",
  5380. height: math.unit(1500, "feet"),
  5381. default: true
  5382. },
  5383. {
  5384. name: "Megapuff",
  5385. height: math.unit(500, "miles")
  5386. },
  5387. {
  5388. name: "Gigapuff",
  5389. height: math.unit(250000, "miles")
  5390. },
  5391. {
  5392. name: "Omegapuff",
  5393. height: math.unit(1000, "lightyears")
  5394. },
  5395. ]
  5396. ))
  5397. characterMakers.push(() => makeCharacter(
  5398. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5399. {
  5400. stomping: {
  5401. height: math.unit(6, "feet"),
  5402. weight: math.unit(170, "lbs"),
  5403. name: "Stomping",
  5404. image: {
  5405. source: "./media/characters/vivian/stomping.svg"
  5406. }
  5407. },
  5408. sitting: {
  5409. height: math.unit(6 / 1.75, "feet"),
  5410. weight: math.unit(170, "lbs"),
  5411. name: "Sitting",
  5412. image: {
  5413. source: "./media/characters/vivian/sitting.svg",
  5414. bottom: 1 / 6.4,
  5415. extra: 1,
  5416. }
  5417. },
  5418. },
  5419. [
  5420. {
  5421. name: "Normal",
  5422. height: math.unit(7, "feet"),
  5423. default: true
  5424. },
  5425. {
  5426. name: "Macro",
  5427. height: math.unit(10, "stories")
  5428. },
  5429. {
  5430. name: "Macro+",
  5431. height: math.unit(30, "stories")
  5432. },
  5433. {
  5434. name: "Megamacro",
  5435. height: math.unit(10, "miles")
  5436. },
  5437. {
  5438. name: "Megamacro+",
  5439. height: math.unit(2750000, "meters")
  5440. },
  5441. ]
  5442. ))
  5443. characterMakers.push(() => makeCharacter(
  5444. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5445. {
  5446. front: {
  5447. height: math.unit(6, "feet"),
  5448. weight: math.unit(160, "lbs"),
  5449. name: "Front",
  5450. image: {
  5451. source: "./media/characters/prince/front.svg",
  5452. extra: 3400 / 3000
  5453. }
  5454. },
  5455. jumping: {
  5456. height: math.unit(6, "feet"),
  5457. weight: math.unit(160, "lbs"),
  5458. name: "Jumping",
  5459. image: {
  5460. source: "./media/characters/prince/jump.svg",
  5461. extra: 2555 / 2134
  5462. }
  5463. },
  5464. },
  5465. [
  5466. {
  5467. name: "Normal",
  5468. height: math.unit(7.75, "feet"),
  5469. default: true
  5470. },
  5471. {
  5472. name: "Not cute",
  5473. height: math.unit(17, "feet")
  5474. },
  5475. {
  5476. name: "I said NOT",
  5477. height: math.unit(91, "feet")
  5478. },
  5479. {
  5480. name: "Please stop",
  5481. height: math.unit(560, "feet")
  5482. },
  5483. {
  5484. name: "What have you done",
  5485. height: math.unit(2200, "feet")
  5486. },
  5487. {
  5488. name: "Deer God",
  5489. height: math.unit(3.6, "miles")
  5490. },
  5491. ]
  5492. ))
  5493. characterMakers.push(() => makeCharacter(
  5494. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5495. {
  5496. standing: {
  5497. height: math.unit(6, "feet"),
  5498. weight: math.unit(300, "lbs"),
  5499. name: "Standing",
  5500. image: {
  5501. source: "./media/characters/psymon/standing.svg",
  5502. extra: 1888 / 1810,
  5503. bottom: 0.05
  5504. }
  5505. },
  5506. slithering: {
  5507. height: math.unit(6, "feet"),
  5508. weight: math.unit(300, "lbs"),
  5509. name: "Slithering",
  5510. image: {
  5511. source: "./media/characters/psymon/slithering.svg",
  5512. extra: 1330 / 1224
  5513. }
  5514. },
  5515. slitheringAlt: {
  5516. height: math.unit(6, "feet"),
  5517. weight: math.unit(300, "lbs"),
  5518. name: "Slithering (Alt)",
  5519. image: {
  5520. source: "./media/characters/psymon/slithering-alt.svg",
  5521. extra: 1330 / 1224
  5522. }
  5523. },
  5524. },
  5525. [
  5526. {
  5527. name: "Normal",
  5528. height: math.unit(11.25, "feet"),
  5529. default: true
  5530. },
  5531. {
  5532. name: "Large",
  5533. height: math.unit(27, "feet")
  5534. },
  5535. {
  5536. name: "Giant",
  5537. height: math.unit(87, "feet")
  5538. },
  5539. {
  5540. name: "Macro",
  5541. height: math.unit(365, "feet")
  5542. },
  5543. {
  5544. name: "Megamacro",
  5545. height: math.unit(3, "miles")
  5546. },
  5547. {
  5548. name: "World Serpent",
  5549. height: math.unit(8000, "miles")
  5550. },
  5551. ]
  5552. ))
  5553. characterMakers.push(() => makeCharacter(
  5554. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5555. {
  5556. front: {
  5557. height: math.unit(6, "feet"),
  5558. weight: math.unit(180, "lbs"),
  5559. name: "Front",
  5560. image: {
  5561. source: "./media/characters/daimos/front.svg",
  5562. extra: 4160 / 3897,
  5563. bottom: 0.021
  5564. }
  5565. }
  5566. },
  5567. [
  5568. {
  5569. name: "Normal",
  5570. height: math.unit(8, "feet"),
  5571. default: true
  5572. },
  5573. {
  5574. name: "Big Dog",
  5575. height: math.unit(22, "feet")
  5576. },
  5577. {
  5578. name: "Macro",
  5579. height: math.unit(127, "feet")
  5580. },
  5581. {
  5582. name: "Megamacro",
  5583. height: math.unit(3600, "feet")
  5584. },
  5585. ]
  5586. ))
  5587. characterMakers.push(() => makeCharacter(
  5588. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5589. {
  5590. side: {
  5591. height: math.unit(6, "feet"),
  5592. weight: math.unit(180, "lbs"),
  5593. name: "Side",
  5594. image: {
  5595. source: "./media/characters/blake/side.svg",
  5596. extra: 1212 / 1120,
  5597. bottom: 0.05
  5598. }
  5599. },
  5600. crouched: {
  5601. height: math.unit(6 * 0.57, "feet"),
  5602. weight: math.unit(180, "lbs"),
  5603. name: "Crouched",
  5604. image: {
  5605. source: "./media/characters/blake/crouched.svg",
  5606. extra: 840 / 587,
  5607. bottom: 0.04
  5608. }
  5609. },
  5610. bent: {
  5611. height: math.unit(6 * 0.75, "feet"),
  5612. weight: math.unit(180, "lbs"),
  5613. name: "Bent",
  5614. image: {
  5615. source: "./media/characters/blake/bent.svg",
  5616. extra: 592 / 544,
  5617. bottom: 0.035
  5618. }
  5619. },
  5620. },
  5621. [
  5622. {
  5623. name: "Normal",
  5624. height: math.unit(8 + 1 / 6, "feet"),
  5625. default: true
  5626. },
  5627. {
  5628. name: "Big Backside",
  5629. height: math.unit(37, "feet")
  5630. },
  5631. {
  5632. name: "Subway Shredder",
  5633. height: math.unit(72, "feet")
  5634. },
  5635. {
  5636. name: "City Carver",
  5637. height: math.unit(1675, "feet")
  5638. },
  5639. {
  5640. name: "Tectonic Tweaker",
  5641. height: math.unit(2300, "miles")
  5642. },
  5643. ]
  5644. ))
  5645. characterMakers.push(() => makeCharacter(
  5646. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5647. {
  5648. front: {
  5649. height: math.unit(6, "feet"),
  5650. weight: math.unit(180, "lbs"),
  5651. name: "Front",
  5652. image: {
  5653. source: "./media/characters/guisetto/front.svg",
  5654. extra: 856 / 817,
  5655. bottom: 0.06
  5656. }
  5657. },
  5658. airborne: {
  5659. height: math.unit(6, "feet"),
  5660. weight: math.unit(180, "lbs"),
  5661. name: "Airborne",
  5662. image: {
  5663. source: "./media/characters/guisetto/airborne.svg",
  5664. extra: 584 / 525
  5665. }
  5666. },
  5667. },
  5668. [
  5669. {
  5670. name: "Normal",
  5671. height: math.unit(10 + 11 / 12, "feet"),
  5672. default: true
  5673. },
  5674. {
  5675. name: "Large",
  5676. height: math.unit(35, "feet")
  5677. },
  5678. {
  5679. name: "Macro",
  5680. height: math.unit(475, "feet")
  5681. },
  5682. ]
  5683. ))
  5684. characterMakers.push(() => makeCharacter(
  5685. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5686. {
  5687. front: {
  5688. height: math.unit(6, "feet"),
  5689. weight: math.unit(180, "lbs"),
  5690. name: "Front",
  5691. image: {
  5692. source: "./media/characters/luxor/front.svg",
  5693. extra: 2940 / 2152
  5694. }
  5695. },
  5696. back: {
  5697. height: math.unit(6, "feet"),
  5698. weight: math.unit(180, "lbs"),
  5699. name: "Back",
  5700. image: {
  5701. source: "./media/characters/luxor/back.svg",
  5702. extra: 1083 / 960
  5703. }
  5704. },
  5705. },
  5706. [
  5707. {
  5708. name: "Normal",
  5709. height: math.unit(5 + 5 / 6, "feet"),
  5710. default: true
  5711. },
  5712. {
  5713. name: "Lamp",
  5714. height: math.unit(50, "feet")
  5715. },
  5716. {
  5717. name: "Lämp",
  5718. height: math.unit(300, "feet")
  5719. },
  5720. {
  5721. name: "The sun is a lamp",
  5722. height: math.unit(250000, "miles")
  5723. },
  5724. ]
  5725. ))
  5726. characterMakers.push(() => makeCharacter(
  5727. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5728. {
  5729. front: {
  5730. height: math.unit(6, "feet"),
  5731. weight: math.unit(50, "lbs"),
  5732. name: "Front",
  5733. image: {
  5734. source: "./media/characters/huoyan/front.svg"
  5735. }
  5736. },
  5737. side: {
  5738. height: math.unit(6, "feet"),
  5739. weight: math.unit(180, "lbs"),
  5740. name: "Side",
  5741. image: {
  5742. source: "./media/characters/huoyan/side.svg"
  5743. }
  5744. },
  5745. },
  5746. [
  5747. {
  5748. name: "Chef",
  5749. height: math.unit(9, "feet")
  5750. },
  5751. {
  5752. name: "Normal",
  5753. height: math.unit(65, "feet"),
  5754. default: true
  5755. },
  5756. {
  5757. name: "Macro",
  5758. height: math.unit(780, "feet")
  5759. },
  5760. {
  5761. name: "Flaming Mountain",
  5762. height: math.unit(4.8, "miles")
  5763. },
  5764. {
  5765. name: "Celestial",
  5766. height: math.unit(765000, "miles")
  5767. },
  5768. ]
  5769. ))
  5770. characterMakers.push(() => makeCharacter(
  5771. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5772. {
  5773. front: {
  5774. height: math.unit(5 + 3 / 4, "feet"),
  5775. weight: math.unit(120, "lbs"),
  5776. name: "Front",
  5777. image: {
  5778. source: "./media/characters/tails/front.svg"
  5779. }
  5780. }
  5781. },
  5782. [
  5783. {
  5784. name: "Normal",
  5785. height: math.unit(5 + 3 / 4, "feet"),
  5786. default: true
  5787. }
  5788. ]
  5789. ))
  5790. characterMakers.push(() => makeCharacter(
  5791. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5792. {
  5793. front: {
  5794. height: math.unit(4, "feet"),
  5795. weight: math.unit(50, "lbs"),
  5796. name: "Front",
  5797. image: {
  5798. source: "./media/characters/rainy/front.svg"
  5799. }
  5800. }
  5801. },
  5802. [
  5803. {
  5804. name: "Macro",
  5805. height: math.unit(800, "feet"),
  5806. default: true
  5807. }
  5808. ]
  5809. ))
  5810. characterMakers.push(() => makeCharacter(
  5811. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5812. {
  5813. front: {
  5814. height: math.unit(6, "feet"),
  5815. weight: math.unit(150, "lbs"),
  5816. name: "Front",
  5817. image: {
  5818. source: "./media/characters/rainier/front.svg"
  5819. }
  5820. }
  5821. },
  5822. [
  5823. {
  5824. name: "Micro",
  5825. height: math.unit(2, "mm"),
  5826. default: true
  5827. }
  5828. ]
  5829. ))
  5830. characterMakers.push(() => makeCharacter(
  5831. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5832. {
  5833. front: {
  5834. height: math.unit(8 + 4/12, "feet"),
  5835. name: "Front",
  5836. image: {
  5837. source: "./media/characters/andy-renard/front.svg",
  5838. extra: 1839/1726,
  5839. bottom: 134/1973
  5840. }
  5841. },
  5842. back: {
  5843. height: math.unit(8 + 4/12, "feet"),
  5844. name: "Back",
  5845. image: {
  5846. source: "./media/characters/andy-renard/back.svg",
  5847. extra: 1838/1710,
  5848. bottom: 105/1943
  5849. }
  5850. },
  5851. },
  5852. [
  5853. {
  5854. name: "Tall",
  5855. height: math.unit(8 + 4/12, "feet")
  5856. },
  5857. {
  5858. name: "Mini Macro",
  5859. height: math.unit(15, "feet"),
  5860. default: true
  5861. },
  5862. {
  5863. name: "Macro",
  5864. height: math.unit(100, "feet")
  5865. },
  5866. {
  5867. name: "Mega Macro",
  5868. height: math.unit(1000, "feet")
  5869. },
  5870. {
  5871. name: "Giga Macro",
  5872. height: math.unit(10, "miles")
  5873. },
  5874. {
  5875. name: "God Macro",
  5876. height: math.unit(1, "multiverse")
  5877. },
  5878. ]
  5879. ))
  5880. characterMakers.push(() => makeCharacter(
  5881. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5882. {
  5883. front: {
  5884. height: math.unit(6, "feet"),
  5885. weight: math.unit(210, "lbs"),
  5886. name: "Front",
  5887. image: {
  5888. source: "./media/characters/cimmaron/front-sfw.svg",
  5889. extra: 701 / 676,
  5890. bottom: 0.046
  5891. }
  5892. },
  5893. back: {
  5894. height: math.unit(6, "feet"),
  5895. weight: math.unit(210, "lbs"),
  5896. name: "Back",
  5897. image: {
  5898. source: "./media/characters/cimmaron/back-sfw.svg",
  5899. extra: 701 / 676,
  5900. bottom: 0.046
  5901. }
  5902. },
  5903. frontNsfw: {
  5904. height: math.unit(6, "feet"),
  5905. weight: math.unit(210, "lbs"),
  5906. name: "Front (NSFW)",
  5907. image: {
  5908. source: "./media/characters/cimmaron/front-nsfw.svg",
  5909. extra: 701 / 676,
  5910. bottom: 0.046
  5911. }
  5912. },
  5913. backNsfw: {
  5914. height: math.unit(6, "feet"),
  5915. weight: math.unit(210, "lbs"),
  5916. name: "Back (NSFW)",
  5917. image: {
  5918. source: "./media/characters/cimmaron/back-nsfw.svg",
  5919. extra: 701 / 676,
  5920. bottom: 0.046
  5921. }
  5922. },
  5923. dick: {
  5924. height: math.unit(1.714, "feet"),
  5925. name: "Dick",
  5926. image: {
  5927. source: "./media/characters/cimmaron/dick.svg"
  5928. }
  5929. },
  5930. },
  5931. [
  5932. {
  5933. name: "Normal",
  5934. height: math.unit(6, "feet"),
  5935. default: true
  5936. },
  5937. {
  5938. name: "Macro Mayor",
  5939. height: math.unit(350, "meters")
  5940. },
  5941. ]
  5942. ))
  5943. characterMakers.push(() => makeCharacter(
  5944. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5945. {
  5946. front: {
  5947. height: math.unit(6, "feet"),
  5948. weight: math.unit(200, "lbs"),
  5949. name: "Front",
  5950. image: {
  5951. source: "./media/characters/akari/front.svg",
  5952. extra: 962 / 901,
  5953. bottom: 0.04
  5954. }
  5955. }
  5956. },
  5957. [
  5958. {
  5959. name: "Micro",
  5960. height: math.unit(5, "inches"),
  5961. default: true
  5962. },
  5963. {
  5964. name: "Normal",
  5965. height: math.unit(7, "feet")
  5966. },
  5967. ]
  5968. ))
  5969. characterMakers.push(() => makeCharacter(
  5970. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5971. {
  5972. front: {
  5973. height: math.unit(6, "feet"),
  5974. weight: math.unit(140, "lbs"),
  5975. name: "Front",
  5976. image: {
  5977. source: "./media/characters/cynosura/front.svg",
  5978. extra: 896 / 847
  5979. }
  5980. },
  5981. back: {
  5982. height: math.unit(6, "feet"),
  5983. weight: math.unit(140, "lbs"),
  5984. name: "Back",
  5985. image: {
  5986. source: "./media/characters/cynosura/back.svg",
  5987. extra: 1365 / 1250
  5988. }
  5989. },
  5990. },
  5991. [
  5992. {
  5993. name: "Micro",
  5994. height: math.unit(4, "inches")
  5995. },
  5996. {
  5997. name: "Normal",
  5998. height: math.unit(5.75, "feet"),
  5999. default: true
  6000. },
  6001. {
  6002. name: "Tall",
  6003. height: math.unit(10, "feet")
  6004. },
  6005. {
  6006. name: "Big",
  6007. height: math.unit(20, "feet")
  6008. },
  6009. {
  6010. name: "Macro",
  6011. height: math.unit(50, "feet")
  6012. },
  6013. ]
  6014. ))
  6015. characterMakers.push(() => makeCharacter(
  6016. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6017. {
  6018. front: {
  6019. height: math.unit(13 + 2/12, "feet"),
  6020. weight: math.unit(800, "kg"),
  6021. name: "Front",
  6022. image: {
  6023. source: "./media/characters/gin/front.svg",
  6024. extra: 1312/1191,
  6025. bottom: 45/1357
  6026. }
  6027. },
  6028. mouth: {
  6029. height: math.unit(2.39 * 1.8, "feet"),
  6030. name: "Mouth",
  6031. image: {
  6032. source: "./media/characters/gin/mouth.svg"
  6033. }
  6034. },
  6035. hand: {
  6036. height: math.unit(1.57 * 2.19, "feet"),
  6037. name: "Hand",
  6038. image: {
  6039. source: "./media/characters/gin/hand.svg"
  6040. }
  6041. },
  6042. foot: {
  6043. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6044. name: "Foot",
  6045. image: {
  6046. source: "./media/characters/gin/foot.svg"
  6047. }
  6048. },
  6049. sole: {
  6050. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6051. name: "Sole",
  6052. image: {
  6053. source: "./media/characters/gin/sole.svg"
  6054. }
  6055. },
  6056. },
  6057. [
  6058. {
  6059. name: "Very Small",
  6060. height: math.unit(13 + 2 / 12, "feet")
  6061. },
  6062. {
  6063. name: "Micro",
  6064. height: math.unit(600, "miles")
  6065. },
  6066. {
  6067. name: "Regular",
  6068. height: math.unit(20, "earths"),
  6069. default: true
  6070. },
  6071. {
  6072. name: "Macro",
  6073. height: math.unit(2.2, "solarradii")
  6074. },
  6075. {
  6076. name: "Teramacro",
  6077. height: math.unit(1.2, "galaxies")
  6078. },
  6079. {
  6080. name: "Omegamacro",
  6081. height: math.unit(200, "universes")
  6082. },
  6083. ]
  6084. ))
  6085. characterMakers.push(() => makeCharacter(
  6086. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6087. {
  6088. front: {
  6089. height: math.unit(6 + 1 / 6, "feet"),
  6090. weight: math.unit(178, "lbs"),
  6091. name: "Front",
  6092. image: {
  6093. source: "./media/characters/guy/front.svg"
  6094. }
  6095. }
  6096. },
  6097. [
  6098. {
  6099. name: "Normal",
  6100. height: math.unit(6 + 1 / 6, "feet"),
  6101. default: true
  6102. },
  6103. {
  6104. name: "Large",
  6105. height: math.unit(25 + 7 / 12, "feet")
  6106. },
  6107. {
  6108. name: "Macro",
  6109. height: math.unit(60 + 9 / 12, "feet")
  6110. },
  6111. {
  6112. name: "Macro+",
  6113. height: math.unit(246, "feet")
  6114. },
  6115. {
  6116. name: "Macro++",
  6117. height: math.unit(878, "feet")
  6118. }
  6119. ]
  6120. ))
  6121. characterMakers.push(() => makeCharacter(
  6122. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6123. {
  6124. front: {
  6125. height: math.unit(9, "feet"),
  6126. weight: math.unit(800, "lbs"),
  6127. name: "Front",
  6128. image: {
  6129. source: "./media/characters/tiberius/front.svg",
  6130. extra: 2295 / 2071
  6131. }
  6132. },
  6133. back: {
  6134. height: math.unit(9, "feet"),
  6135. weight: math.unit(800, "lbs"),
  6136. name: "Back",
  6137. image: {
  6138. source: "./media/characters/tiberius/back.svg",
  6139. extra: 2373 / 2160
  6140. }
  6141. },
  6142. },
  6143. [
  6144. {
  6145. name: "Normal",
  6146. height: math.unit(9, "feet"),
  6147. default: true
  6148. }
  6149. ]
  6150. ))
  6151. characterMakers.push(() => makeCharacter(
  6152. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6153. {
  6154. front: {
  6155. height: math.unit(6, "feet"),
  6156. weight: math.unit(600, "lbs"),
  6157. name: "Front",
  6158. image: {
  6159. source: "./media/characters/surgo/front.svg",
  6160. extra: 3591 / 2227
  6161. }
  6162. },
  6163. back: {
  6164. height: math.unit(6, "feet"),
  6165. weight: math.unit(600, "lbs"),
  6166. name: "Back",
  6167. image: {
  6168. source: "./media/characters/surgo/back.svg",
  6169. extra: 3557 / 2228
  6170. }
  6171. },
  6172. laying: {
  6173. height: math.unit(6 * 0.85, "feet"),
  6174. weight: math.unit(600, "lbs"),
  6175. name: "Laying",
  6176. image: {
  6177. source: "./media/characters/surgo/laying.svg"
  6178. }
  6179. },
  6180. },
  6181. [
  6182. {
  6183. name: "Normal",
  6184. height: math.unit(6, "feet"),
  6185. default: true
  6186. }
  6187. ]
  6188. ))
  6189. characterMakers.push(() => makeCharacter(
  6190. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6191. {
  6192. side: {
  6193. height: math.unit(6, "feet"),
  6194. weight: math.unit(150, "lbs"),
  6195. name: "Side",
  6196. image: {
  6197. source: "./media/characters/cibus/side.svg",
  6198. extra: 800 / 400
  6199. }
  6200. },
  6201. },
  6202. [
  6203. {
  6204. name: "Normal",
  6205. height: math.unit(6, "feet"),
  6206. default: true
  6207. }
  6208. ]
  6209. ))
  6210. characterMakers.push(() => makeCharacter(
  6211. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6212. {
  6213. front: {
  6214. height: math.unit(6, "feet"),
  6215. weight: math.unit(240, "lbs"),
  6216. name: "Front",
  6217. image: {
  6218. source: "./media/characters/nibbles/front.svg"
  6219. }
  6220. },
  6221. side: {
  6222. height: math.unit(6, "feet"),
  6223. weight: math.unit(240, "lbs"),
  6224. name: "Side",
  6225. image: {
  6226. source: "./media/characters/nibbles/side.svg"
  6227. }
  6228. },
  6229. },
  6230. [
  6231. {
  6232. name: "Normal",
  6233. height: math.unit(9, "feet"),
  6234. default: true
  6235. }
  6236. ]
  6237. ))
  6238. characterMakers.push(() => makeCharacter(
  6239. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6240. {
  6241. side: {
  6242. height: math.unit(5 + 1 / 6, "feet"),
  6243. weight: math.unit(130, "lbs"),
  6244. name: "Side",
  6245. image: {
  6246. source: "./media/characters/rikky/side.svg",
  6247. extra: 851 / 801
  6248. }
  6249. },
  6250. },
  6251. [
  6252. {
  6253. name: "Normal",
  6254. height: math.unit(5 + 1 / 6, "feet")
  6255. },
  6256. {
  6257. name: "Macro",
  6258. height: math.unit(152, "feet"),
  6259. default: true
  6260. },
  6261. {
  6262. name: "Megamacro",
  6263. height: math.unit(7, "miles")
  6264. }
  6265. ]
  6266. ))
  6267. characterMakers.push(() => makeCharacter(
  6268. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6269. {
  6270. side: {
  6271. height: math.unit(370, "cm"),
  6272. weight: math.unit(350, "lbs"),
  6273. name: "Side",
  6274. image: {
  6275. source: "./media/characters/malfressa/side.svg"
  6276. }
  6277. },
  6278. walking: {
  6279. height: math.unit(370, "cm"),
  6280. weight: math.unit(350, "lbs"),
  6281. name: "Walking",
  6282. image: {
  6283. source: "./media/characters/malfressa/walking.svg"
  6284. }
  6285. },
  6286. feral: {
  6287. height: math.unit(2500, "cm"),
  6288. weight: math.unit(100000, "lbs"),
  6289. name: "Feral",
  6290. image: {
  6291. source: "./media/characters/malfressa/feral.svg",
  6292. extra: 2108 / 837,
  6293. bottom: 0.02
  6294. }
  6295. },
  6296. },
  6297. [
  6298. {
  6299. name: "Normal",
  6300. height: math.unit(370, "cm")
  6301. },
  6302. {
  6303. name: "Macro",
  6304. height: math.unit(300, "meters"),
  6305. default: true
  6306. }
  6307. ]
  6308. ))
  6309. characterMakers.push(() => makeCharacter(
  6310. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6311. {
  6312. front: {
  6313. height: math.unit(6, "feet"),
  6314. weight: math.unit(60, "kg"),
  6315. name: "Front",
  6316. image: {
  6317. source: "./media/characters/jaro/front.svg"
  6318. }
  6319. },
  6320. back: {
  6321. height: math.unit(6, "feet"),
  6322. weight: math.unit(60, "kg"),
  6323. name: "Back",
  6324. image: {
  6325. source: "./media/characters/jaro/back.svg"
  6326. }
  6327. },
  6328. },
  6329. [
  6330. {
  6331. name: "Micro",
  6332. height: math.unit(7, "inches")
  6333. },
  6334. {
  6335. name: "Normal",
  6336. height: math.unit(5.5, "feet"),
  6337. default: true
  6338. },
  6339. {
  6340. name: "Minimacro",
  6341. height: math.unit(20, "feet")
  6342. },
  6343. {
  6344. name: "Macro",
  6345. height: math.unit(200, "meters")
  6346. }
  6347. ]
  6348. ))
  6349. characterMakers.push(() => makeCharacter(
  6350. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6351. {
  6352. front: {
  6353. height: math.unit(6, "feet"),
  6354. weight: math.unit(195, "lb"),
  6355. name: "Front",
  6356. image: {
  6357. source: "./media/characters/rogue/front.svg"
  6358. }
  6359. },
  6360. },
  6361. [
  6362. {
  6363. name: "Macro",
  6364. height: math.unit(90, "feet"),
  6365. default: true
  6366. },
  6367. ]
  6368. ))
  6369. characterMakers.push(() => makeCharacter(
  6370. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6371. {
  6372. front: {
  6373. height: math.unit(5 + 8 / 12, "feet"),
  6374. weight: math.unit(140, "lb"),
  6375. name: "Front",
  6376. image: {
  6377. source: "./media/characters/piper/front.svg",
  6378. extra: 3948/3655,
  6379. bottom: 0/3948
  6380. }
  6381. },
  6382. },
  6383. [
  6384. {
  6385. name: "Micro",
  6386. height: math.unit(2, "inches")
  6387. },
  6388. {
  6389. name: "Normal",
  6390. height: math.unit(5 + 8 / 12, "feet")
  6391. },
  6392. {
  6393. name: "Macro",
  6394. height: math.unit(250, "feet"),
  6395. default: true
  6396. },
  6397. {
  6398. name: "Megamacro",
  6399. height: math.unit(7, "miles")
  6400. },
  6401. ]
  6402. ))
  6403. characterMakers.push(() => makeCharacter(
  6404. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6405. {
  6406. front: {
  6407. height: math.unit(6, "feet"),
  6408. weight: math.unit(220, "lb"),
  6409. name: "Front",
  6410. image: {
  6411. source: "./media/characters/gemini/front.svg"
  6412. }
  6413. },
  6414. back: {
  6415. height: math.unit(6, "feet"),
  6416. weight: math.unit(220, "lb"),
  6417. name: "Back",
  6418. image: {
  6419. source: "./media/characters/gemini/back.svg"
  6420. }
  6421. },
  6422. kneeling: {
  6423. height: math.unit(6 / 1.5, "feet"),
  6424. weight: math.unit(220, "lb"),
  6425. name: "Kneeling",
  6426. image: {
  6427. source: "./media/characters/gemini/kneeling.svg",
  6428. bottom: 0.02
  6429. }
  6430. },
  6431. },
  6432. [
  6433. {
  6434. name: "Macro",
  6435. height: math.unit(300, "meters"),
  6436. default: true
  6437. },
  6438. {
  6439. name: "Megamacro",
  6440. height: math.unit(6900, "meters")
  6441. },
  6442. ]
  6443. ))
  6444. characterMakers.push(() => makeCharacter(
  6445. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6446. {
  6447. anthro: {
  6448. height: math.unit(2.35, "meters"),
  6449. weight: math.unit(73, "kg"),
  6450. name: "Anthro",
  6451. image: {
  6452. source: "./media/characters/alicia/anthro.svg",
  6453. extra: 2571 / 2385,
  6454. bottom: 75 / 2648
  6455. }
  6456. },
  6457. paw: {
  6458. height: math.unit(1.32, "feet"),
  6459. name: "Paw",
  6460. image: {
  6461. source: "./media/characters/alicia/paw.svg"
  6462. }
  6463. },
  6464. feral: {
  6465. height: math.unit(1.69, "meters"),
  6466. weight: math.unit(73, "kg"),
  6467. name: "Feral",
  6468. image: {
  6469. source: "./media/characters/alicia/feral.svg",
  6470. extra: 2123 / 1715,
  6471. bottom: 222 / 2349
  6472. }
  6473. },
  6474. },
  6475. [
  6476. {
  6477. name: "Normal",
  6478. height: math.unit(2.35, "meters")
  6479. },
  6480. {
  6481. name: "Macro",
  6482. height: math.unit(60, "meters"),
  6483. default: true
  6484. },
  6485. {
  6486. name: "Megamacro",
  6487. height: math.unit(10000, "kilometers")
  6488. },
  6489. ]
  6490. ))
  6491. characterMakers.push(() => makeCharacter(
  6492. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6493. {
  6494. front: {
  6495. height: math.unit(7, "feet"),
  6496. weight: math.unit(250, "lbs"),
  6497. name: "Front",
  6498. image: {
  6499. source: "./media/characters/archy/front.svg"
  6500. }
  6501. }
  6502. },
  6503. [
  6504. {
  6505. name: "Micro",
  6506. height: math.unit(1, "inch")
  6507. },
  6508. {
  6509. name: "Shorty",
  6510. height: math.unit(5, "feet")
  6511. },
  6512. {
  6513. name: "Normal",
  6514. height: math.unit(7, "feet")
  6515. },
  6516. {
  6517. name: "Macro",
  6518. height: math.unit(600, "meters"),
  6519. default: true
  6520. },
  6521. {
  6522. name: "Megamacro",
  6523. height: math.unit(1, "mile")
  6524. },
  6525. ]
  6526. ))
  6527. characterMakers.push(() => makeCharacter(
  6528. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6529. {
  6530. front: {
  6531. height: math.unit(1.65, "meters"),
  6532. weight: math.unit(74, "kg"),
  6533. name: "Front",
  6534. image: {
  6535. source: "./media/characters/berri/front.svg",
  6536. extra: 857 / 837,
  6537. bottom: 18 / 877
  6538. }
  6539. },
  6540. bum: {
  6541. height: math.unit(1.46, "feet"),
  6542. name: "Bum",
  6543. image: {
  6544. source: "./media/characters/berri/bum.svg"
  6545. }
  6546. },
  6547. mouth: {
  6548. height: math.unit(0.44, "feet"),
  6549. name: "Mouth",
  6550. image: {
  6551. source: "./media/characters/berri/mouth.svg"
  6552. }
  6553. },
  6554. paw: {
  6555. height: math.unit(0.826, "feet"),
  6556. name: "Paw",
  6557. image: {
  6558. source: "./media/characters/berri/paw.svg"
  6559. }
  6560. },
  6561. },
  6562. [
  6563. {
  6564. name: "Normal",
  6565. height: math.unit(1.65, "meters")
  6566. },
  6567. {
  6568. name: "Macro",
  6569. height: math.unit(60, "m"),
  6570. default: true
  6571. },
  6572. {
  6573. name: "Megamacro",
  6574. height: math.unit(9.213, "km")
  6575. },
  6576. {
  6577. name: "Planet Eater",
  6578. height: math.unit(489, "megameters")
  6579. },
  6580. {
  6581. name: "Teramacro",
  6582. height: math.unit(2471635000000, "meters")
  6583. },
  6584. {
  6585. name: "Examacro",
  6586. height: math.unit(8.0624e+26, "meters")
  6587. }
  6588. ]
  6589. ))
  6590. characterMakers.push(() => makeCharacter(
  6591. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6592. {
  6593. front: {
  6594. height: math.unit(1.72, "meters"),
  6595. weight: math.unit(68, "kg"),
  6596. name: "Front",
  6597. image: {
  6598. source: "./media/characters/lexi/front.svg"
  6599. }
  6600. }
  6601. },
  6602. [
  6603. {
  6604. name: "Very Smol",
  6605. height: math.unit(10, "mm")
  6606. },
  6607. {
  6608. name: "Micro",
  6609. height: math.unit(6.8, "cm"),
  6610. default: true
  6611. },
  6612. {
  6613. name: "Normal",
  6614. height: math.unit(1.72, "m")
  6615. }
  6616. ]
  6617. ))
  6618. characterMakers.push(() => makeCharacter(
  6619. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6620. {
  6621. front: {
  6622. height: math.unit(1.69, "meters"),
  6623. weight: math.unit(68, "kg"),
  6624. name: "Front",
  6625. image: {
  6626. source: "./media/characters/martin/front.svg",
  6627. extra: 596 / 581
  6628. }
  6629. }
  6630. },
  6631. [
  6632. {
  6633. name: "Micro",
  6634. height: math.unit(6.85, "cm"),
  6635. default: true
  6636. },
  6637. {
  6638. name: "Normal",
  6639. height: math.unit(1.69, "m")
  6640. }
  6641. ]
  6642. ))
  6643. characterMakers.push(() => makeCharacter(
  6644. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6645. {
  6646. front: {
  6647. height: math.unit(1.69, "meters"),
  6648. weight: math.unit(68, "kg"),
  6649. name: "Front",
  6650. image: {
  6651. source: "./media/characters/juno/front.svg"
  6652. }
  6653. }
  6654. },
  6655. [
  6656. {
  6657. name: "Micro",
  6658. height: math.unit(7, "cm")
  6659. },
  6660. {
  6661. name: "Normal",
  6662. height: math.unit(1.89, "m")
  6663. },
  6664. {
  6665. name: "Macro",
  6666. height: math.unit(353, "meters"),
  6667. default: true
  6668. }
  6669. ]
  6670. ))
  6671. characterMakers.push(() => makeCharacter(
  6672. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6673. {
  6674. front: {
  6675. height: math.unit(1.93, "meters"),
  6676. weight: math.unit(83, "kg"),
  6677. name: "Front",
  6678. image: {
  6679. source: "./media/characters/samantha/front.svg"
  6680. }
  6681. },
  6682. frontClothed: {
  6683. height: math.unit(1.93, "meters"),
  6684. weight: math.unit(83, "kg"),
  6685. name: "Front (Clothed)",
  6686. image: {
  6687. source: "./media/characters/samantha/front-clothed.svg"
  6688. }
  6689. },
  6690. back: {
  6691. height: math.unit(1.93, "meters"),
  6692. weight: math.unit(83, "kg"),
  6693. name: "Back",
  6694. image: {
  6695. source: "./media/characters/samantha/back.svg"
  6696. }
  6697. },
  6698. },
  6699. [
  6700. {
  6701. name: "Normal",
  6702. height: math.unit(1.93, "m")
  6703. },
  6704. {
  6705. name: "Macro",
  6706. height: math.unit(74, "meters"),
  6707. default: true
  6708. },
  6709. {
  6710. name: "Macro+",
  6711. height: math.unit(223, "meters"),
  6712. },
  6713. {
  6714. name: "Megamacro",
  6715. height: math.unit(8381, "meters"),
  6716. },
  6717. {
  6718. name: "Megamacro+",
  6719. height: math.unit(12000, "kilometers")
  6720. },
  6721. ]
  6722. ))
  6723. characterMakers.push(() => makeCharacter(
  6724. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6725. {
  6726. front: {
  6727. height: math.unit(1.92, "meters"),
  6728. weight: math.unit(80, "kg"),
  6729. name: "Front",
  6730. image: {
  6731. source: "./media/characters/dr-clay/front.svg"
  6732. }
  6733. },
  6734. frontClothed: {
  6735. height: math.unit(1.92, "meters"),
  6736. weight: math.unit(80, "kg"),
  6737. name: "Front (Clothed)",
  6738. image: {
  6739. source: "./media/characters/dr-clay/front-clothed.svg"
  6740. }
  6741. }
  6742. },
  6743. [
  6744. {
  6745. name: "Normal",
  6746. height: math.unit(1.92, "m")
  6747. },
  6748. {
  6749. name: "Macro",
  6750. height: math.unit(214, "meters"),
  6751. default: true
  6752. },
  6753. {
  6754. name: "Macro+",
  6755. height: math.unit(12.237, "meters"),
  6756. },
  6757. {
  6758. name: "Megamacro",
  6759. height: math.unit(557, "megameters"),
  6760. },
  6761. {
  6762. name: "Unimaginable",
  6763. height: math.unit(120e9, "lightyears")
  6764. },
  6765. ]
  6766. ))
  6767. characterMakers.push(() => makeCharacter(
  6768. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6769. {
  6770. front: {
  6771. height: math.unit(2, "meters"),
  6772. weight: math.unit(80, "kg"),
  6773. name: "Front",
  6774. image: {
  6775. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6776. }
  6777. }
  6778. },
  6779. [
  6780. {
  6781. name: "Teramacro",
  6782. height: math.unit(500000, "lightyears"),
  6783. default: true
  6784. },
  6785. ]
  6786. ))
  6787. characterMakers.push(() => makeCharacter(
  6788. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6789. {
  6790. crux: {
  6791. height: math.unit(2, "meters"),
  6792. weight: math.unit(150, "kg"),
  6793. name: "Crux",
  6794. image: {
  6795. source: "./media/characters/vemus/crux.svg",
  6796. extra: 1074/936,
  6797. bottom: 23/1097
  6798. }
  6799. },
  6800. skunkTanuki: {
  6801. height: math.unit(2, "meters"),
  6802. weight: math.unit(150, "kg"),
  6803. name: "Skunk-Tanuki",
  6804. image: {
  6805. source: "./media/characters/vemus/skunk-tanuki.svg",
  6806. extra: 926/893,
  6807. bottom: 20/946
  6808. }
  6809. },
  6810. },
  6811. [
  6812. {
  6813. name: "Normal",
  6814. height: math.unit(3.75, "meters"),
  6815. default: true
  6816. },
  6817. {
  6818. name: "Big",
  6819. height: math.unit(8, "meters")
  6820. },
  6821. {
  6822. name: "Macro",
  6823. height: math.unit(100, "meters")
  6824. },
  6825. {
  6826. name: "Macro+",
  6827. height: math.unit(1500, "meters")
  6828. },
  6829. {
  6830. name: "Stellar",
  6831. height: math.unit(14e8, "meters")
  6832. },
  6833. ]
  6834. ))
  6835. characterMakers.push(() => makeCharacter(
  6836. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6837. {
  6838. front: {
  6839. height: math.unit(2, "meters"),
  6840. weight: math.unit(70, "kg"),
  6841. name: "Front",
  6842. image: {
  6843. source: "./media/characters/beherit/front.svg",
  6844. extra: 1408 / 1242
  6845. }
  6846. }
  6847. },
  6848. [
  6849. {
  6850. name: "Normal",
  6851. height: math.unit(6, "feet")
  6852. },
  6853. {
  6854. name: "Lorg",
  6855. height: math.unit(25, "feet"),
  6856. default: true
  6857. },
  6858. {
  6859. name: "Lorger",
  6860. height: math.unit(75, "feet")
  6861. },
  6862. {
  6863. name: "Macro",
  6864. height: math.unit(200, "meters")
  6865. },
  6866. ]
  6867. ))
  6868. characterMakers.push(() => makeCharacter(
  6869. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6870. {
  6871. front: {
  6872. height: math.unit(2, "meters"),
  6873. weight: math.unit(150, "kg"),
  6874. name: "Front",
  6875. image: {
  6876. source: "./media/characters/everett/front.svg",
  6877. extra: 2038 / 1737,
  6878. bottom: 0.03
  6879. }
  6880. },
  6881. paw: {
  6882. height: math.unit(2 / 3.6, "meters"),
  6883. name: "Paw",
  6884. image: {
  6885. source: "./media/characters/everett/paw.svg"
  6886. }
  6887. },
  6888. },
  6889. [
  6890. {
  6891. name: "Normal",
  6892. height: math.unit(15, "feet"),
  6893. default: true
  6894. },
  6895. {
  6896. name: "Lorg",
  6897. height: math.unit(70, "feet"),
  6898. default: true
  6899. },
  6900. {
  6901. name: "Lorger",
  6902. height: math.unit(250, "feet")
  6903. },
  6904. {
  6905. name: "Macro",
  6906. height: math.unit(500, "meters")
  6907. },
  6908. ]
  6909. ))
  6910. characterMakers.push(() => makeCharacter(
  6911. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6912. {
  6913. front: {
  6914. height: math.unit(2, "meters"),
  6915. weight: math.unit(86, "kg"),
  6916. name: "Front",
  6917. image: {
  6918. source: "./media/characters/rose/front.svg",
  6919. extra: 1785/1636,
  6920. bottom: 30/1815
  6921. }
  6922. },
  6923. frontSporty: {
  6924. height: math.unit(2, "meters"),
  6925. weight: math.unit(86, "kg"),
  6926. name: "Front (Sporty)",
  6927. image: {
  6928. source: "./media/characters/rose/front-sporty.svg",
  6929. extra: 350/335,
  6930. bottom: 10/360
  6931. }
  6932. },
  6933. frontAlt: {
  6934. height: math.unit(1.6, "meters"),
  6935. weight: math.unit(86, "kg"),
  6936. name: "Front (Alt)",
  6937. image: {
  6938. source: "./media/characters/rose/front-alt.svg",
  6939. extra: 299/283,
  6940. bottom: 3/302
  6941. }
  6942. },
  6943. plush: {
  6944. height: math.unit(2, "meters"),
  6945. weight: math.unit(86/3, "kg"),
  6946. name: "Plush",
  6947. image: {
  6948. source: "./media/characters/rose/plush.svg",
  6949. extra: 361/337,
  6950. bottom: 11/372
  6951. }
  6952. },
  6953. },
  6954. [
  6955. {
  6956. name: "True Micro",
  6957. height: math.unit(9, "cm")
  6958. },
  6959. {
  6960. name: "Micro",
  6961. height: math.unit(16, "cm")
  6962. },
  6963. {
  6964. name: "Normal",
  6965. height: math.unit(1.85, "meters"),
  6966. default: true
  6967. },
  6968. {
  6969. name: "Mini-Macro",
  6970. height: math.unit(5, "meters")
  6971. },
  6972. {
  6973. name: "Macro",
  6974. height: math.unit(15, "meters")
  6975. },
  6976. {
  6977. name: "True Macro",
  6978. height: math.unit(40, "meters")
  6979. },
  6980. {
  6981. name: "City Scale",
  6982. height: math.unit(1, "km")
  6983. },
  6984. ]
  6985. ))
  6986. characterMakers.push(() => makeCharacter(
  6987. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6988. {
  6989. front: {
  6990. height: math.unit(2, "meters"),
  6991. weight: math.unit(350, "lbs"),
  6992. name: "Front",
  6993. image: {
  6994. source: "./media/characters/regal/front.svg"
  6995. }
  6996. },
  6997. back: {
  6998. height: math.unit(2, "meters"),
  6999. weight: math.unit(350, "lbs"),
  7000. name: "Back",
  7001. image: {
  7002. source: "./media/characters/regal/back.svg"
  7003. }
  7004. },
  7005. },
  7006. [
  7007. {
  7008. name: "Macro",
  7009. height: math.unit(350, "feet"),
  7010. default: true
  7011. }
  7012. ]
  7013. ))
  7014. characterMakers.push(() => makeCharacter(
  7015. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7016. {
  7017. front: {
  7018. height: math.unit(4 + 11 / 12, "feet"),
  7019. weight: math.unit(100, "lbs"),
  7020. name: "Front",
  7021. image: {
  7022. source: "./media/characters/opal/front.svg"
  7023. }
  7024. },
  7025. frontAlt: {
  7026. height: math.unit(4 + 11 / 12, "feet"),
  7027. weight: math.unit(100, "lbs"),
  7028. name: "Front (Alt)",
  7029. image: {
  7030. source: "./media/characters/opal/front-alt.svg"
  7031. }
  7032. },
  7033. },
  7034. [
  7035. {
  7036. name: "Small",
  7037. height: math.unit(4 + 11 / 12, "feet")
  7038. },
  7039. {
  7040. name: "Normal",
  7041. height: math.unit(20, "feet"),
  7042. default: true
  7043. },
  7044. {
  7045. name: "Macro",
  7046. height: math.unit(120, "feet")
  7047. },
  7048. {
  7049. name: "Megamacro",
  7050. height: math.unit(80, "miles")
  7051. },
  7052. {
  7053. name: "True Size",
  7054. height: math.unit(100000, "lightyears")
  7055. },
  7056. ]
  7057. ))
  7058. characterMakers.push(() => makeCharacter(
  7059. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7060. {
  7061. front: {
  7062. height: math.unit(6, "feet"),
  7063. weight: math.unit(200, "lbs"),
  7064. name: "Front",
  7065. image: {
  7066. source: "./media/characters/vector-wuff/front.svg"
  7067. }
  7068. }
  7069. },
  7070. [
  7071. {
  7072. name: "Normal",
  7073. height: math.unit(2.8, "meters")
  7074. },
  7075. {
  7076. name: "Macro",
  7077. height: math.unit(450, "meters"),
  7078. default: true
  7079. },
  7080. {
  7081. name: "Megamacro",
  7082. height: math.unit(15, "kilometers")
  7083. }
  7084. ]
  7085. ))
  7086. characterMakers.push(() => makeCharacter(
  7087. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7088. {
  7089. front: {
  7090. height: math.unit(6, "feet"),
  7091. weight: math.unit(256, "lbs"),
  7092. name: "Front",
  7093. image: {
  7094. source: "./media/characters/dannik/front.svg"
  7095. }
  7096. }
  7097. },
  7098. [
  7099. {
  7100. name: "Macro",
  7101. height: math.unit(69.57, "meters"),
  7102. default: true
  7103. },
  7104. ]
  7105. ))
  7106. characterMakers.push(() => makeCharacter(
  7107. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7108. {
  7109. front: {
  7110. height: math.unit(6, "feet"),
  7111. weight: math.unit(120, "lbs"),
  7112. name: "Front",
  7113. image: {
  7114. source: "./media/characters/azura-saharah/front.svg"
  7115. }
  7116. },
  7117. back: {
  7118. height: math.unit(6, "feet"),
  7119. weight: math.unit(120, "lbs"),
  7120. name: "Back",
  7121. image: {
  7122. source: "./media/characters/azura-saharah/back.svg"
  7123. }
  7124. },
  7125. },
  7126. [
  7127. {
  7128. name: "Macro",
  7129. height: math.unit(100, "feet"),
  7130. default: true
  7131. },
  7132. ]
  7133. ))
  7134. characterMakers.push(() => makeCharacter(
  7135. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7136. {
  7137. side: {
  7138. height: math.unit(5 + 4 / 12, "feet"),
  7139. weight: math.unit(163, "lbs"),
  7140. name: "Side",
  7141. image: {
  7142. source: "./media/characters/kennedy/side.svg"
  7143. }
  7144. }
  7145. },
  7146. [
  7147. {
  7148. name: "Standard Doggo",
  7149. height: math.unit(5 + 4 / 12, "feet")
  7150. },
  7151. {
  7152. name: "Big Doggo",
  7153. height: math.unit(25 + 3 / 12, "feet"),
  7154. default: true
  7155. },
  7156. ]
  7157. ))
  7158. characterMakers.push(() => makeCharacter(
  7159. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7160. {
  7161. front: {
  7162. height: math.unit(5 + 5/12, "feet"),
  7163. weight: math.unit(100, "lbs"),
  7164. name: "Front",
  7165. image: {
  7166. source: "./media/characters/odios-de-lunar/front.svg",
  7167. extra: 1468/1323,
  7168. bottom: 22/1490
  7169. }
  7170. }
  7171. },
  7172. [
  7173. {
  7174. name: "Micro",
  7175. height: math.unit(3, "inches")
  7176. },
  7177. {
  7178. name: "Normal",
  7179. height: math.unit(5.5, "feet"),
  7180. default: true
  7181. },
  7182. {
  7183. name: "Macro",
  7184. height: math.unit(100, "feet")
  7185. },
  7186. ]
  7187. ))
  7188. characterMakers.push(() => makeCharacter(
  7189. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7190. {
  7191. back: {
  7192. height: math.unit(6, "feet"),
  7193. weight: math.unit(220, "lbs"),
  7194. name: "Back",
  7195. image: {
  7196. source: "./media/characters/mandake/back.svg"
  7197. }
  7198. }
  7199. },
  7200. [
  7201. {
  7202. name: "Normal",
  7203. height: math.unit(7, "feet"),
  7204. default: true
  7205. },
  7206. {
  7207. name: "Macro",
  7208. height: math.unit(78, "feet")
  7209. },
  7210. {
  7211. name: "Macro+",
  7212. height: math.unit(300, "meters")
  7213. },
  7214. {
  7215. name: "Macro++",
  7216. height: math.unit(2400, "feet")
  7217. },
  7218. {
  7219. name: "Megamacro",
  7220. height: math.unit(5167, "meters")
  7221. },
  7222. {
  7223. name: "Gigamacro",
  7224. height: math.unit(41769, "miles")
  7225. },
  7226. ]
  7227. ))
  7228. characterMakers.push(() => makeCharacter(
  7229. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7230. {
  7231. front: {
  7232. height: math.unit(6, "feet"),
  7233. weight: math.unit(120, "lbs"),
  7234. name: "Front",
  7235. image: {
  7236. source: "./media/characters/yozey/front.svg"
  7237. }
  7238. },
  7239. frontAlt: {
  7240. height: math.unit(6, "feet"),
  7241. weight: math.unit(120, "lbs"),
  7242. name: "Front (Alt)",
  7243. image: {
  7244. source: "./media/characters/yozey/front-alt.svg"
  7245. }
  7246. },
  7247. side: {
  7248. height: math.unit(6, "feet"),
  7249. weight: math.unit(120, "lbs"),
  7250. name: "Side",
  7251. image: {
  7252. source: "./media/characters/yozey/side.svg"
  7253. }
  7254. },
  7255. },
  7256. [
  7257. {
  7258. name: "Micro",
  7259. height: math.unit(3, "inches"),
  7260. default: true
  7261. },
  7262. {
  7263. name: "Normal",
  7264. height: math.unit(6, "feet")
  7265. }
  7266. ]
  7267. ))
  7268. characterMakers.push(() => makeCharacter(
  7269. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7270. {
  7271. front: {
  7272. height: math.unit(6, "feet"),
  7273. weight: math.unit(103, "lbs"),
  7274. name: "Front",
  7275. image: {
  7276. source: "./media/characters/valeska-voss/front.svg"
  7277. }
  7278. }
  7279. },
  7280. [
  7281. {
  7282. name: "Mini-Sized Sub",
  7283. height: math.unit(3.1, "inches")
  7284. },
  7285. {
  7286. name: "Mid-Sized Sub",
  7287. height: math.unit(6.2, "inches")
  7288. },
  7289. {
  7290. name: "Full-Sized Sub",
  7291. height: math.unit(9.3, "inches")
  7292. },
  7293. {
  7294. name: "Normal",
  7295. height: math.unit(5 + 2 / 12, "foot"),
  7296. default: true
  7297. },
  7298. ]
  7299. ))
  7300. characterMakers.push(() => makeCharacter(
  7301. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7302. {
  7303. front: {
  7304. height: math.unit(6, "feet"),
  7305. weight: math.unit(160, "lbs"),
  7306. name: "Front",
  7307. image: {
  7308. source: "./media/characters/gene-zeta/front.svg",
  7309. extra: 3006 / 2826,
  7310. bottom: 182 / 3188
  7311. }
  7312. }
  7313. },
  7314. [
  7315. {
  7316. name: "Micro",
  7317. height: math.unit(6, "inches")
  7318. },
  7319. {
  7320. name: "Normal",
  7321. height: math.unit(5 + 11 / 12, "foot"),
  7322. default: true
  7323. },
  7324. {
  7325. name: "Macro",
  7326. height: math.unit(140, "feet")
  7327. },
  7328. {
  7329. name: "Supercharged",
  7330. height: math.unit(2500, "feet")
  7331. },
  7332. ]
  7333. ))
  7334. characterMakers.push(() => makeCharacter(
  7335. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7336. {
  7337. front: {
  7338. height: math.unit(6, "feet"),
  7339. weight: math.unit(350, "lbs"),
  7340. name: "Front",
  7341. image: {
  7342. source: "./media/characters/razinox/front.svg",
  7343. extra: 1686 / 1548,
  7344. bottom: 28.2 / 1868
  7345. }
  7346. },
  7347. back: {
  7348. height: math.unit(6, "feet"),
  7349. weight: math.unit(350, "lbs"),
  7350. name: "Back",
  7351. image: {
  7352. source: "./media/characters/razinox/back.svg",
  7353. extra: 1660 / 1590,
  7354. bottom: 15 / 1665
  7355. }
  7356. },
  7357. },
  7358. [
  7359. {
  7360. name: "Normal",
  7361. height: math.unit(10 + 8 / 12, "foot")
  7362. },
  7363. {
  7364. name: "Minimacro",
  7365. height: math.unit(15, "foot")
  7366. },
  7367. {
  7368. name: "Macro",
  7369. height: math.unit(60, "foot"),
  7370. default: true
  7371. },
  7372. {
  7373. name: "Megamacro",
  7374. height: math.unit(5, "miles")
  7375. },
  7376. {
  7377. name: "Gigamacro",
  7378. height: math.unit(6000, "miles")
  7379. },
  7380. ]
  7381. ))
  7382. characterMakers.push(() => makeCharacter(
  7383. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7384. {
  7385. front: {
  7386. height: math.unit(6, "feet"),
  7387. weight: math.unit(150, "lbs"),
  7388. name: "Front",
  7389. image: {
  7390. source: "./media/characters/cobalt/front.svg"
  7391. }
  7392. }
  7393. },
  7394. [
  7395. {
  7396. name: "Normal",
  7397. height: math.unit(8 + 1 / 12, "foot")
  7398. },
  7399. {
  7400. name: "Macro",
  7401. height: math.unit(111, "foot"),
  7402. default: true
  7403. },
  7404. {
  7405. name: "Supracosmic",
  7406. height: math.unit(1e42, "feet")
  7407. },
  7408. ]
  7409. ))
  7410. characterMakers.push(() => makeCharacter(
  7411. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7412. {
  7413. front: {
  7414. height: math.unit(6, "feet"),
  7415. weight: math.unit(140, "lbs"),
  7416. name: "Front",
  7417. image: {
  7418. source: "./media/characters/amanda/front.svg"
  7419. }
  7420. }
  7421. },
  7422. [
  7423. {
  7424. name: "Micro",
  7425. height: math.unit(5, "inches"),
  7426. default: true
  7427. },
  7428. ]
  7429. ))
  7430. characterMakers.push(() => makeCharacter(
  7431. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7432. {
  7433. front: {
  7434. height: math.unit(2.75, "meters"),
  7435. weight: math.unit(1200, "lb"),
  7436. name: "Front",
  7437. image: {
  7438. source: "./media/characters/teal/front.svg",
  7439. extra: 2463 / 2320,
  7440. bottom: 166 / 2629
  7441. }
  7442. },
  7443. back: {
  7444. height: math.unit(2.75, "meters"),
  7445. weight: math.unit(1200, "lb"),
  7446. name: "Back",
  7447. image: {
  7448. source: "./media/characters/teal/back.svg",
  7449. extra: 2580 / 2489,
  7450. bottom: 151 / 2731
  7451. }
  7452. },
  7453. sitting: {
  7454. height: math.unit(1.9, "meters"),
  7455. weight: math.unit(1200, "lb"),
  7456. name: "Sitting",
  7457. image: {
  7458. source: "./media/characters/teal/sitting.svg",
  7459. extra: 623 / 590,
  7460. bottom: 121 / 744
  7461. }
  7462. },
  7463. standing: {
  7464. height: math.unit(2.75, "meters"),
  7465. weight: math.unit(1200, "lb"),
  7466. name: "Standing",
  7467. image: {
  7468. source: "./media/characters/teal/standing.svg",
  7469. extra: 923 / 893,
  7470. bottom: 60 / 983
  7471. }
  7472. },
  7473. stretching: {
  7474. height: math.unit(3.65, "meters"),
  7475. weight: math.unit(1200, "lb"),
  7476. name: "Stretching",
  7477. image: {
  7478. source: "./media/characters/teal/stretching.svg",
  7479. extra: 1276 / 1244,
  7480. bottom: 0 / 1276
  7481. }
  7482. },
  7483. legged: {
  7484. height: math.unit(1.3, "meters"),
  7485. weight: math.unit(100, "lb"),
  7486. name: "Legged",
  7487. image: {
  7488. source: "./media/characters/teal/legged.svg",
  7489. extra: 462 / 437,
  7490. bottom: 24 / 486
  7491. }
  7492. },
  7493. naga: {
  7494. height: math.unit(5.4, "meters"),
  7495. weight: math.unit(4000, "lb"),
  7496. name: "Naga",
  7497. image: {
  7498. source: "./media/characters/teal/naga.svg",
  7499. extra: 1902 / 1858,
  7500. bottom: 0 / 1902
  7501. }
  7502. },
  7503. hand: {
  7504. height: math.unit(0.52, "meters"),
  7505. name: "Hand",
  7506. image: {
  7507. source: "./media/characters/teal/hand.svg"
  7508. }
  7509. },
  7510. maw: {
  7511. height: math.unit(0.43, "meters"),
  7512. name: "Maw",
  7513. image: {
  7514. source: "./media/characters/teal/maw.svg"
  7515. }
  7516. },
  7517. slit: {
  7518. height: math.unit(0.25, "meters"),
  7519. name: "Slit",
  7520. image: {
  7521. source: "./media/characters/teal/slit.svg"
  7522. }
  7523. },
  7524. },
  7525. [
  7526. {
  7527. name: "Normal",
  7528. height: math.unit(2.75, "meters"),
  7529. default: true
  7530. },
  7531. {
  7532. name: "Macro",
  7533. height: math.unit(300, "feet")
  7534. },
  7535. {
  7536. name: "Macro+",
  7537. height: math.unit(2000, "feet")
  7538. },
  7539. ]
  7540. ))
  7541. characterMakers.push(() => makeCharacter(
  7542. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7543. {
  7544. frontCat: {
  7545. height: math.unit(6, "feet"),
  7546. weight: math.unit(180, "lbs"),
  7547. name: "Front (Cat)",
  7548. image: {
  7549. source: "./media/characters/ravin-amulet/front-cat.svg"
  7550. }
  7551. },
  7552. frontCatAlt: {
  7553. height: math.unit(6, "feet"),
  7554. weight: math.unit(180, "lbs"),
  7555. name: "Front (Alt, Cat)",
  7556. image: {
  7557. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7558. }
  7559. },
  7560. frontWerewolf: {
  7561. height: math.unit(6 * 1.2, "feet"),
  7562. weight: math.unit(225, "lbs"),
  7563. name: "Front (Werewolf)",
  7564. image: {
  7565. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7566. }
  7567. },
  7568. backWerewolf: {
  7569. height: math.unit(6 * 1.2, "feet"),
  7570. weight: math.unit(225, "lbs"),
  7571. name: "Back (Werewolf)",
  7572. image: {
  7573. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7574. }
  7575. },
  7576. },
  7577. [
  7578. {
  7579. name: "Nano",
  7580. height: math.unit(1, "micrometer")
  7581. },
  7582. {
  7583. name: "Micro",
  7584. height: math.unit(1, "inch")
  7585. },
  7586. {
  7587. name: "Normal",
  7588. height: math.unit(6, "feet"),
  7589. default: true
  7590. },
  7591. {
  7592. name: "Macro",
  7593. height: math.unit(60, "feet")
  7594. }
  7595. ]
  7596. ))
  7597. characterMakers.push(() => makeCharacter(
  7598. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7599. {
  7600. front: {
  7601. height: math.unit(6, "feet"),
  7602. weight: math.unit(165, "lbs"),
  7603. name: "Front",
  7604. image: {
  7605. source: "./media/characters/fluoresce/front.svg"
  7606. }
  7607. }
  7608. },
  7609. [
  7610. {
  7611. name: "Micro",
  7612. height: math.unit(6, "cm")
  7613. },
  7614. {
  7615. name: "Normal",
  7616. height: math.unit(5 + 7 / 12, "feet"),
  7617. default: true
  7618. },
  7619. {
  7620. name: "Macro",
  7621. height: math.unit(56, "feet")
  7622. },
  7623. {
  7624. name: "Megamacro",
  7625. height: math.unit(1.9, "miles")
  7626. },
  7627. ]
  7628. ))
  7629. characterMakers.push(() => makeCharacter(
  7630. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7631. {
  7632. front: {
  7633. height: math.unit(9 + 6 / 12, "feet"),
  7634. weight: math.unit(523, "lbs"),
  7635. name: "Side",
  7636. image: {
  7637. source: "./media/characters/aurora/side.svg"
  7638. }
  7639. }
  7640. },
  7641. [
  7642. {
  7643. name: "Normal",
  7644. height: math.unit(9 + 6 / 12, "feet")
  7645. },
  7646. {
  7647. name: "Macro",
  7648. height: math.unit(96, "feet"),
  7649. default: true
  7650. },
  7651. {
  7652. name: "Macro+",
  7653. height: math.unit(243, "feet")
  7654. },
  7655. ]
  7656. ))
  7657. characterMakers.push(() => makeCharacter(
  7658. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7659. {
  7660. front: {
  7661. height: math.unit(194, "cm"),
  7662. weight: math.unit(90, "kg"),
  7663. name: "Front",
  7664. image: {
  7665. source: "./media/characters/ranek/front.svg"
  7666. }
  7667. },
  7668. side: {
  7669. height: math.unit(194, "cm"),
  7670. weight: math.unit(90, "kg"),
  7671. name: "Side",
  7672. image: {
  7673. source: "./media/characters/ranek/side.svg"
  7674. }
  7675. },
  7676. back: {
  7677. height: math.unit(194, "cm"),
  7678. weight: math.unit(90, "kg"),
  7679. name: "Back",
  7680. image: {
  7681. source: "./media/characters/ranek/back.svg"
  7682. }
  7683. },
  7684. feral: {
  7685. height: math.unit(30, "cm"),
  7686. weight: math.unit(1.6, "lbs"),
  7687. name: "Feral",
  7688. image: {
  7689. source: "./media/characters/ranek/feral.svg"
  7690. }
  7691. },
  7692. },
  7693. [
  7694. {
  7695. name: "Normal",
  7696. height: math.unit(194, "cm"),
  7697. default: true
  7698. },
  7699. {
  7700. name: "Macro",
  7701. height: math.unit(100, "meters")
  7702. },
  7703. ]
  7704. ))
  7705. characterMakers.push(() => makeCharacter(
  7706. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7707. {
  7708. front: {
  7709. height: math.unit(5 + 6 / 12, "feet"),
  7710. weight: math.unit(153, "lbs"),
  7711. name: "Front",
  7712. image: {
  7713. source: "./media/characters/andrew-cooper/front.svg"
  7714. }
  7715. },
  7716. },
  7717. [
  7718. {
  7719. name: "Nano",
  7720. height: math.unit(1, "mm")
  7721. },
  7722. {
  7723. name: "Micro",
  7724. height: math.unit(2, "inches")
  7725. },
  7726. {
  7727. name: "Normal",
  7728. height: math.unit(5 + 6 / 12, "feet"),
  7729. default: true
  7730. }
  7731. ]
  7732. ))
  7733. characterMakers.push(() => makeCharacter(
  7734. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7735. {
  7736. front: {
  7737. height: math.unit(6, "feet"),
  7738. weight: math.unit(180, "lbs"),
  7739. name: "Front",
  7740. image: {
  7741. source: "./media/characters/akane-sato/front.svg",
  7742. extra: 1219 / 1140
  7743. }
  7744. },
  7745. back: {
  7746. height: math.unit(6, "feet"),
  7747. weight: math.unit(180, "lbs"),
  7748. name: "Back",
  7749. image: {
  7750. source: "./media/characters/akane-sato/back.svg",
  7751. extra: 1219 / 1170
  7752. }
  7753. },
  7754. },
  7755. [
  7756. {
  7757. name: "Normal",
  7758. height: math.unit(2.5, "meters")
  7759. },
  7760. {
  7761. name: "Macro",
  7762. height: math.unit(250, "meters"),
  7763. default: true
  7764. },
  7765. {
  7766. name: "Megamacro",
  7767. height: math.unit(25, "km")
  7768. },
  7769. ]
  7770. ))
  7771. characterMakers.push(() => makeCharacter(
  7772. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7773. {
  7774. front: {
  7775. height: math.unit(6, "feet"),
  7776. weight: math.unit(65, "kg"),
  7777. name: "Front",
  7778. image: {
  7779. source: "./media/characters/rook/front.svg",
  7780. extra: 960 / 950
  7781. }
  7782. }
  7783. },
  7784. [
  7785. {
  7786. name: "Normal",
  7787. height: math.unit(8.8, "feet")
  7788. },
  7789. {
  7790. name: "Macro",
  7791. height: math.unit(88, "feet"),
  7792. default: true
  7793. },
  7794. {
  7795. name: "Megamacro",
  7796. height: math.unit(8, "miles")
  7797. },
  7798. ]
  7799. ))
  7800. characterMakers.push(() => makeCharacter(
  7801. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7802. {
  7803. front: {
  7804. height: math.unit(12 + 2 / 12, "feet"),
  7805. weight: math.unit(808, "lbs"),
  7806. name: "Front",
  7807. image: {
  7808. source: "./media/characters/prodigy/front.svg"
  7809. }
  7810. }
  7811. },
  7812. [
  7813. {
  7814. name: "Normal",
  7815. height: math.unit(12 + 2 / 12, "feet"),
  7816. default: true
  7817. },
  7818. {
  7819. name: "Macro",
  7820. height: math.unit(143, "feet")
  7821. },
  7822. {
  7823. name: "Macro+",
  7824. height: math.unit(400, "feet")
  7825. },
  7826. ]
  7827. ))
  7828. characterMakers.push(() => makeCharacter(
  7829. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7830. {
  7831. front: {
  7832. height: math.unit(6, "feet"),
  7833. weight: math.unit(225, "lbs"),
  7834. name: "Front",
  7835. image: {
  7836. source: "./media/characters/daniel/front.svg"
  7837. }
  7838. },
  7839. leaning: {
  7840. height: math.unit(6, "feet"),
  7841. weight: math.unit(225, "lbs"),
  7842. name: "Leaning",
  7843. image: {
  7844. source: "./media/characters/daniel/leaning.svg"
  7845. }
  7846. },
  7847. },
  7848. [
  7849. {
  7850. name: "Macro",
  7851. height: math.unit(1000, "feet"),
  7852. default: true
  7853. },
  7854. ]
  7855. ))
  7856. characterMakers.push(() => makeCharacter(
  7857. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7858. {
  7859. front: {
  7860. height: math.unit(6, "feet"),
  7861. weight: math.unit(88, "lbs"),
  7862. name: "Front",
  7863. image: {
  7864. source: "./media/characters/chiros/front.svg",
  7865. extra: 306 / 226
  7866. }
  7867. },
  7868. side: {
  7869. height: math.unit(6, "feet"),
  7870. weight: math.unit(88, "lbs"),
  7871. name: "Side",
  7872. image: {
  7873. source: "./media/characters/chiros/side.svg",
  7874. extra: 306 / 226
  7875. }
  7876. },
  7877. },
  7878. [
  7879. {
  7880. name: "Normal",
  7881. height: math.unit(6, "cm"),
  7882. default: true
  7883. },
  7884. ]
  7885. ))
  7886. characterMakers.push(() => makeCharacter(
  7887. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7888. {
  7889. front: {
  7890. height: math.unit(6, "feet"),
  7891. weight: math.unit(100, "lbs"),
  7892. name: "Front",
  7893. image: {
  7894. source: "./media/characters/selka/front.svg",
  7895. extra: 947 / 887
  7896. }
  7897. }
  7898. },
  7899. [
  7900. {
  7901. name: "Normal",
  7902. height: math.unit(5, "cm"),
  7903. default: true
  7904. },
  7905. ]
  7906. ))
  7907. characterMakers.push(() => makeCharacter(
  7908. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7909. {
  7910. front: {
  7911. height: math.unit(8 + 3 / 12, "feet"),
  7912. weight: math.unit(424, "lbs"),
  7913. name: "Front",
  7914. image: {
  7915. source: "./media/characters/verin/front.svg",
  7916. extra: 1845 / 1550
  7917. }
  7918. },
  7919. frontArmored: {
  7920. height: math.unit(8 + 3 / 12, "feet"),
  7921. weight: math.unit(424, "lbs"),
  7922. name: "Front (Armored)",
  7923. image: {
  7924. source: "./media/characters/verin/front-armor.svg",
  7925. extra: 1845 / 1550,
  7926. bottom: 0.01
  7927. }
  7928. },
  7929. back: {
  7930. height: math.unit(8 + 3 / 12, "feet"),
  7931. weight: math.unit(424, "lbs"),
  7932. name: "Back",
  7933. image: {
  7934. source: "./media/characters/verin/back.svg",
  7935. bottom: 0.1,
  7936. extra: 1
  7937. }
  7938. },
  7939. foot: {
  7940. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7941. name: "Foot",
  7942. image: {
  7943. source: "./media/characters/verin/foot.svg"
  7944. }
  7945. },
  7946. },
  7947. [
  7948. {
  7949. name: "Normal",
  7950. height: math.unit(8 + 3 / 12, "feet")
  7951. },
  7952. {
  7953. name: "Minimacro",
  7954. height: math.unit(21, "feet"),
  7955. default: true
  7956. },
  7957. {
  7958. name: "Macro",
  7959. height: math.unit(626, "feet")
  7960. },
  7961. ]
  7962. ))
  7963. characterMakers.push(() => makeCharacter(
  7964. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7965. {
  7966. front: {
  7967. height: math.unit(2.718, "meters"),
  7968. weight: math.unit(150, "lbs"),
  7969. name: "Front",
  7970. image: {
  7971. source: "./media/characters/sovrim-terraquian/front.svg"
  7972. }
  7973. },
  7974. back: {
  7975. height: math.unit(2.718, "meters"),
  7976. weight: math.unit(150, "lbs"),
  7977. name: "Back",
  7978. image: {
  7979. source: "./media/characters/sovrim-terraquian/back.svg"
  7980. }
  7981. }
  7982. },
  7983. [
  7984. {
  7985. name: "Micro",
  7986. height: math.unit(2, "inches")
  7987. },
  7988. {
  7989. name: "Small",
  7990. height: math.unit(1, "meter")
  7991. },
  7992. {
  7993. name: "Normal",
  7994. height: math.unit(Math.E, "meters"),
  7995. default: true
  7996. },
  7997. {
  7998. name: "Macro",
  7999. height: math.unit(20, "meters")
  8000. },
  8001. {
  8002. name: "Macro+",
  8003. height: math.unit(400, "meters")
  8004. },
  8005. ]
  8006. ))
  8007. characterMakers.push(() => makeCharacter(
  8008. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8009. {
  8010. front: {
  8011. height: math.unit(7, "feet"),
  8012. weight: math.unit(489, "lbs"),
  8013. name: "Front",
  8014. image: {
  8015. source: "./media/characters/reece-silvermane/front.svg",
  8016. bottom: 0.02,
  8017. extra: 1
  8018. }
  8019. },
  8020. },
  8021. [
  8022. {
  8023. name: "Macro",
  8024. height: math.unit(1.5, "miles"),
  8025. default: true
  8026. },
  8027. ]
  8028. ))
  8029. characterMakers.push(() => makeCharacter(
  8030. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8031. {
  8032. front: {
  8033. height: math.unit(6, "feet"),
  8034. weight: math.unit(78, "kg"),
  8035. name: "Front",
  8036. image: {
  8037. source: "./media/characters/kane/front.svg",
  8038. extra: 978 / 899
  8039. }
  8040. },
  8041. },
  8042. [
  8043. {
  8044. name: "Normal",
  8045. height: math.unit(2.1, "m"),
  8046. },
  8047. {
  8048. name: "Macro",
  8049. height: math.unit(1, "km"),
  8050. default: true
  8051. },
  8052. ]
  8053. ))
  8054. characterMakers.push(() => makeCharacter(
  8055. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8056. {
  8057. front: {
  8058. height: math.unit(6, "feet"),
  8059. weight: math.unit(200, "kg"),
  8060. name: "Front",
  8061. image: {
  8062. source: "./media/characters/tegon/front.svg",
  8063. bottom: 0.01,
  8064. extra: 1
  8065. }
  8066. },
  8067. },
  8068. [
  8069. {
  8070. name: "Micro",
  8071. height: math.unit(1, "inch")
  8072. },
  8073. {
  8074. name: "Normal",
  8075. height: math.unit(6 + 3 / 12, "feet"),
  8076. default: true
  8077. },
  8078. {
  8079. name: "Macro",
  8080. height: math.unit(300, "feet")
  8081. },
  8082. {
  8083. name: "Megamacro",
  8084. height: math.unit(69, "miles")
  8085. },
  8086. ]
  8087. ))
  8088. characterMakers.push(() => makeCharacter(
  8089. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8090. {
  8091. side: {
  8092. height: math.unit(6, "feet"),
  8093. weight: math.unit(2304, "lbs"),
  8094. name: "Side",
  8095. image: {
  8096. source: "./media/characters/arcturax/side.svg",
  8097. extra: 790 / 376,
  8098. bottom: 0.01
  8099. }
  8100. },
  8101. },
  8102. [
  8103. {
  8104. name: "Micro",
  8105. height: math.unit(2, "inch")
  8106. },
  8107. {
  8108. name: "Normal",
  8109. height: math.unit(6, "feet")
  8110. },
  8111. {
  8112. name: "Macro",
  8113. height: math.unit(39, "feet"),
  8114. default: true
  8115. },
  8116. {
  8117. name: "Megamacro",
  8118. height: math.unit(7, "miles")
  8119. },
  8120. ]
  8121. ))
  8122. characterMakers.push(() => makeCharacter(
  8123. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8124. {
  8125. front: {
  8126. height: math.unit(6, "feet"),
  8127. weight: math.unit(50, "lbs"),
  8128. name: "Front",
  8129. image: {
  8130. source: "./media/characters/sentri/front.svg",
  8131. extra: 1750 / 1570,
  8132. bottom: 0.025
  8133. }
  8134. },
  8135. frontAlt: {
  8136. height: math.unit(6, "feet"),
  8137. weight: math.unit(50, "lbs"),
  8138. name: "Front (Alt)",
  8139. image: {
  8140. source: "./media/characters/sentri/front-alt.svg",
  8141. extra: 1750 / 1570,
  8142. bottom: 0.025
  8143. }
  8144. },
  8145. },
  8146. [
  8147. {
  8148. name: "Normal",
  8149. height: math.unit(15, "feet"),
  8150. default: true
  8151. },
  8152. {
  8153. name: "Macro",
  8154. height: math.unit(2500, "feet")
  8155. }
  8156. ]
  8157. ))
  8158. characterMakers.push(() => makeCharacter(
  8159. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8160. {
  8161. front: {
  8162. height: math.unit(5 + 8 / 12, "feet"),
  8163. weight: math.unit(130, "lbs"),
  8164. name: "Front",
  8165. image: {
  8166. source: "./media/characters/corvin/front.svg",
  8167. extra: 1803 / 1629
  8168. }
  8169. },
  8170. frontShirt: {
  8171. height: math.unit(5 + 8 / 12, "feet"),
  8172. weight: math.unit(130, "lbs"),
  8173. name: "Front (Shirt)",
  8174. image: {
  8175. source: "./media/characters/corvin/front-shirt.svg",
  8176. extra: 1803 / 1629
  8177. }
  8178. },
  8179. frontPoncho: {
  8180. height: math.unit(5 + 8 / 12, "feet"),
  8181. weight: math.unit(130, "lbs"),
  8182. name: "Front (Poncho)",
  8183. image: {
  8184. source: "./media/characters/corvin/front-poncho.svg",
  8185. extra: 1803 / 1629
  8186. }
  8187. },
  8188. side: {
  8189. height: math.unit(5 + 8 / 12, "feet"),
  8190. weight: math.unit(130, "lbs"),
  8191. name: "Side",
  8192. image: {
  8193. source: "./media/characters/corvin/side.svg",
  8194. extra: 1012 / 945
  8195. }
  8196. },
  8197. back: {
  8198. height: math.unit(5 + 8 / 12, "feet"),
  8199. weight: math.unit(130, "lbs"),
  8200. name: "Back",
  8201. image: {
  8202. source: "./media/characters/corvin/back.svg",
  8203. extra: 1803 / 1629
  8204. }
  8205. },
  8206. },
  8207. [
  8208. {
  8209. name: "Micro",
  8210. height: math.unit(3, "inches")
  8211. },
  8212. {
  8213. name: "Normal",
  8214. height: math.unit(5 + 8 / 12, "feet")
  8215. },
  8216. {
  8217. name: "Macro",
  8218. height: math.unit(300, "feet"),
  8219. default: true
  8220. },
  8221. {
  8222. name: "Megamacro",
  8223. height: math.unit(500, "miles")
  8224. }
  8225. ]
  8226. ))
  8227. characterMakers.push(() => makeCharacter(
  8228. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8229. {
  8230. front: {
  8231. height: math.unit(6, "feet"),
  8232. weight: math.unit(135, "lbs"),
  8233. name: "Front",
  8234. image: {
  8235. source: "./media/characters/q/front.svg",
  8236. extra: 854 / 752,
  8237. bottom: 0.005
  8238. }
  8239. },
  8240. back: {
  8241. height: math.unit(6, "feet"),
  8242. weight: math.unit(130, "lbs"),
  8243. name: "Back",
  8244. image: {
  8245. source: "./media/characters/q/back.svg",
  8246. extra: 854 / 752
  8247. }
  8248. },
  8249. },
  8250. [
  8251. {
  8252. name: "Macro",
  8253. height: math.unit(90, "feet"),
  8254. default: true
  8255. },
  8256. {
  8257. name: "Extra Macro",
  8258. height: math.unit(300, "feet"),
  8259. },
  8260. {
  8261. name: "BIG WALF",
  8262. height: math.unit(750, "feet"),
  8263. },
  8264. ]
  8265. ))
  8266. characterMakers.push(() => makeCharacter(
  8267. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8268. {
  8269. front: {
  8270. height: math.unit(6, "feet"),
  8271. weight: math.unit(150, "lbs"),
  8272. name: "Front",
  8273. image: {
  8274. source: "./media/characters/carley/front.svg",
  8275. extra: 3927 / 3540,
  8276. bottom: 29.2 / 735
  8277. }
  8278. }
  8279. },
  8280. [
  8281. {
  8282. name: "Normal",
  8283. height: math.unit(6 + 3 / 12, "feet")
  8284. },
  8285. {
  8286. name: "Macro",
  8287. height: math.unit(185, "feet"),
  8288. default: true
  8289. },
  8290. {
  8291. name: "Megamacro",
  8292. height: math.unit(8, "miles"),
  8293. },
  8294. ]
  8295. ))
  8296. characterMakers.push(() => makeCharacter(
  8297. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8298. {
  8299. front: {
  8300. height: math.unit(3, "feet"),
  8301. weight: math.unit(28, "lbs"),
  8302. name: "Front",
  8303. image: {
  8304. source: "./media/characters/citrine/front.svg"
  8305. }
  8306. }
  8307. },
  8308. [
  8309. {
  8310. name: "Normal",
  8311. height: math.unit(3, "feet"),
  8312. default: true
  8313. }
  8314. ]
  8315. ))
  8316. characterMakers.push(() => makeCharacter(
  8317. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8318. {
  8319. front: {
  8320. height: math.unit(14, "feet"),
  8321. weight: math.unit(1450, "kg"),
  8322. capacity: math.unit(15, "people"),
  8323. name: "Front",
  8324. image: {
  8325. source: "./media/characters/aura-starwind/front.svg",
  8326. extra: 1440/1327,
  8327. bottom: 11/1451
  8328. }
  8329. },
  8330. side: {
  8331. height: math.unit(14, "feet"),
  8332. weight: math.unit(1450, "kg"),
  8333. capacity: math.unit(15, "people"),
  8334. name: "Side",
  8335. image: {
  8336. source: "./media/characters/aura-starwind/side.svg",
  8337. extra: 1654 / 1497
  8338. }
  8339. },
  8340. taur: {
  8341. height: math.unit(18, "feet"),
  8342. weight: math.unit(5500, "kg"),
  8343. capacity: math.unit(50, "people"),
  8344. name: "Taur",
  8345. image: {
  8346. source: "./media/characters/aura-starwind/taur.svg",
  8347. extra: 1760 / 1650
  8348. }
  8349. },
  8350. feral: {
  8351. height: math.unit(46, "feet"),
  8352. weight: math.unit(25000, "kg"),
  8353. capacity: math.unit(120, "people"),
  8354. name: "Feral",
  8355. image: {
  8356. source: "./media/characters/aura-starwind/feral.svg"
  8357. }
  8358. },
  8359. },
  8360. [
  8361. {
  8362. name: "Normal",
  8363. height: math.unit(14, "feet"),
  8364. default: true
  8365. },
  8366. {
  8367. name: "Macro",
  8368. height: math.unit(50, "meters")
  8369. },
  8370. {
  8371. name: "Megamacro",
  8372. height: math.unit(5000, "meters")
  8373. },
  8374. {
  8375. name: "Gigamacro",
  8376. height: math.unit(100000, "kilometers")
  8377. },
  8378. ]
  8379. ))
  8380. characterMakers.push(() => makeCharacter(
  8381. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8382. {
  8383. front: {
  8384. height: math.unit(2 + 7 / 12, "feet"),
  8385. weight: math.unit(32, "lbs"),
  8386. name: "Front",
  8387. image: {
  8388. source: "./media/characters/rivet/front.svg",
  8389. extra: 1716 / 1658,
  8390. bottom: 0.03
  8391. }
  8392. },
  8393. foot: {
  8394. height: math.unit(0.551, "feet"),
  8395. name: "Rivet's Foot",
  8396. image: {
  8397. source: "./media/characters/rivet/foot.svg"
  8398. },
  8399. rename: true
  8400. }
  8401. },
  8402. [
  8403. {
  8404. name: "Micro",
  8405. height: math.unit(1.5, "inches"),
  8406. },
  8407. {
  8408. name: "Normal",
  8409. height: math.unit(2 + 7 / 12, "feet"),
  8410. default: true
  8411. },
  8412. {
  8413. name: "Macro",
  8414. height: math.unit(85, "feet")
  8415. },
  8416. {
  8417. name: "Megamacro",
  8418. height: math.unit(2.2, "km")
  8419. }
  8420. ]
  8421. ))
  8422. characterMakers.push(() => makeCharacter(
  8423. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8424. {
  8425. front: {
  8426. height: math.unit(5 + 9 / 12, "feet"),
  8427. weight: math.unit(150, "lbs"),
  8428. name: "Front",
  8429. image: {
  8430. source: "./media/characters/coffee/front.svg",
  8431. extra: 3666 / 3032,
  8432. bottom: 0.04
  8433. }
  8434. },
  8435. foot: {
  8436. height: math.unit(1.29, "feet"),
  8437. name: "Foot",
  8438. image: {
  8439. source: "./media/characters/coffee/foot.svg"
  8440. }
  8441. },
  8442. },
  8443. [
  8444. {
  8445. name: "Micro",
  8446. height: math.unit(2, "inches"),
  8447. },
  8448. {
  8449. name: "Normal",
  8450. height: math.unit(5 + 9 / 12, "feet"),
  8451. default: true
  8452. },
  8453. {
  8454. name: "Macro",
  8455. height: math.unit(800, "feet")
  8456. },
  8457. {
  8458. name: "Megamacro",
  8459. height: math.unit(25, "miles")
  8460. }
  8461. ]
  8462. ))
  8463. characterMakers.push(() => makeCharacter(
  8464. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8465. {
  8466. front: {
  8467. height: math.unit(6, "feet"),
  8468. weight: math.unit(200, "lbs"),
  8469. name: "Front",
  8470. image: {
  8471. source: "./media/characters/chari-gal/front.svg",
  8472. extra: 1568 / 1385,
  8473. bottom: 0.047
  8474. }
  8475. },
  8476. gigantamax: {
  8477. height: math.unit(6 * 16, "feet"),
  8478. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8479. name: "Gigantamax",
  8480. image: {
  8481. source: "./media/characters/chari-gal/gigantamax.svg",
  8482. extra: 1124 / 888,
  8483. bottom: 0.03
  8484. }
  8485. },
  8486. },
  8487. [
  8488. {
  8489. name: "Normal",
  8490. height: math.unit(5 + 7 / 12, "feet")
  8491. },
  8492. {
  8493. name: "Macro",
  8494. height: math.unit(200, "feet"),
  8495. default: true
  8496. }
  8497. ]
  8498. ))
  8499. characterMakers.push(() => makeCharacter(
  8500. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8501. {
  8502. front: {
  8503. height: math.unit(6, "feet"),
  8504. weight: math.unit(150, "lbs"),
  8505. name: "Front",
  8506. image: {
  8507. source: "./media/characters/nova/front.svg",
  8508. extra: 5000 / 4722,
  8509. bottom: 0.02
  8510. }
  8511. }
  8512. },
  8513. [
  8514. {
  8515. name: "Micro-",
  8516. height: math.unit(0.8, "inches")
  8517. },
  8518. {
  8519. name: "Micro",
  8520. height: math.unit(2, "inches"),
  8521. default: true
  8522. },
  8523. ]
  8524. ))
  8525. characterMakers.push(() => makeCharacter(
  8526. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8527. {
  8528. front: {
  8529. height: math.unit(3 + 1 / 12, "feet"),
  8530. weight: math.unit(21.7, "lbs"),
  8531. name: "Front",
  8532. image: {
  8533. source: "./media/characters/argent/front.svg",
  8534. extra: 1471 / 1331,
  8535. bottom: 100.8 / 1575.5
  8536. }
  8537. }
  8538. },
  8539. [
  8540. {
  8541. name: "Micro",
  8542. height: math.unit(2, "inches")
  8543. },
  8544. {
  8545. name: "Normal",
  8546. height: math.unit(3 + 1 / 12, "feet"),
  8547. default: true
  8548. },
  8549. {
  8550. name: "Macro",
  8551. height: math.unit(120, "feet")
  8552. },
  8553. ]
  8554. ))
  8555. characterMakers.push(() => makeCharacter(
  8556. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8557. {
  8558. lamp: {
  8559. height: math.unit(7 * 1559 / 989, "feet"),
  8560. name: "Magic Lamp",
  8561. image: {
  8562. source: "./media/characters/mira-al-cul/lamp.svg",
  8563. extra: 1617 / 1559
  8564. }
  8565. },
  8566. front: {
  8567. height: math.unit(7, "feet"),
  8568. name: "Front",
  8569. image: {
  8570. source: "./media/characters/mira-al-cul/front.svg",
  8571. extra: 1044 / 990
  8572. }
  8573. },
  8574. },
  8575. [
  8576. {
  8577. name: "Heavily Restricted",
  8578. height: math.unit(7 * 1559 / 989, "feet")
  8579. },
  8580. {
  8581. name: "Freshly Freed",
  8582. height: math.unit(50 * 1559 / 989, "feet")
  8583. },
  8584. {
  8585. name: "World Encompassing",
  8586. height: math.unit(10000 * 1559 / 989, "miles")
  8587. },
  8588. {
  8589. name: "Galactic",
  8590. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8591. },
  8592. {
  8593. name: "Palmed Universe",
  8594. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8595. default: true
  8596. },
  8597. {
  8598. name: "Multiversal Matriarch",
  8599. height: math.unit(8.87e10, "yottameters")
  8600. },
  8601. {
  8602. name: "Void Mother",
  8603. height: math.unit(3.14e110, "yottaparsecs")
  8604. },
  8605. {
  8606. name: "Toying with Transcendence",
  8607. height: math.unit(1e307, "meters")
  8608. },
  8609. ]
  8610. ))
  8611. characterMakers.push(() => makeCharacter(
  8612. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8613. {
  8614. front: {
  8615. height: math.unit(17 + 1 / 12, "feet"),
  8616. weight: math.unit(476.2 * 5, "lbs"),
  8617. name: "Front",
  8618. image: {
  8619. source: "./media/characters/kuro-shi-uchū/front.svg",
  8620. extra: 2329 / 1835,
  8621. bottom: 0.02
  8622. }
  8623. },
  8624. },
  8625. [
  8626. {
  8627. name: "Micro",
  8628. height: math.unit(2, "inches")
  8629. },
  8630. {
  8631. name: "Normal",
  8632. height: math.unit(12, "meters")
  8633. },
  8634. {
  8635. name: "Planetary",
  8636. height: math.unit(0.00929, "AU"),
  8637. default: true
  8638. },
  8639. {
  8640. name: "Universal",
  8641. height: math.unit(20, "gigaparsecs")
  8642. },
  8643. ]
  8644. ))
  8645. characterMakers.push(() => makeCharacter(
  8646. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8647. {
  8648. front: {
  8649. height: math.unit(5 + 2 / 12, "feet"),
  8650. weight: math.unit(120, "lbs"),
  8651. name: "Front",
  8652. image: {
  8653. source: "./media/characters/katherine/front.svg",
  8654. extra: 2075 / 1969
  8655. }
  8656. },
  8657. dress: {
  8658. height: math.unit(5 + 2 / 12, "feet"),
  8659. weight: math.unit(120, "lbs"),
  8660. name: "Dress",
  8661. image: {
  8662. source: "./media/characters/katherine/dress.svg",
  8663. extra: 2258 / 2064
  8664. }
  8665. },
  8666. },
  8667. [
  8668. {
  8669. name: "Micro",
  8670. height: math.unit(1, "inches"),
  8671. default: true
  8672. },
  8673. {
  8674. name: "Normal",
  8675. height: math.unit(5 + 2 / 12, "feet")
  8676. },
  8677. {
  8678. name: "Macro",
  8679. height: math.unit(100, "meters")
  8680. },
  8681. {
  8682. name: "Megamacro",
  8683. height: math.unit(80, "miles")
  8684. },
  8685. ]
  8686. ))
  8687. characterMakers.push(() => makeCharacter(
  8688. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8689. {
  8690. front: {
  8691. height: math.unit(7 + 8 / 12, "feet"),
  8692. weight: math.unit(250, "lbs"),
  8693. name: "Front",
  8694. image: {
  8695. source: "./media/characters/yevis/front.svg",
  8696. extra: 1938 / 1755
  8697. }
  8698. }
  8699. },
  8700. [
  8701. {
  8702. name: "Mortal",
  8703. height: math.unit(7 + 8 / 12, "feet")
  8704. },
  8705. {
  8706. name: "Battle",
  8707. height: math.unit(25 + 11 / 12, "feet")
  8708. },
  8709. {
  8710. name: "Wrath",
  8711. height: math.unit(1654 + 11 / 12, "feet")
  8712. },
  8713. {
  8714. name: "Planet Destroyer",
  8715. height: math.unit(12000, "miles")
  8716. },
  8717. {
  8718. name: "Galaxy Conqueror",
  8719. height: math.unit(1.45, "zettameters"),
  8720. default: true
  8721. },
  8722. {
  8723. name: "Universal War",
  8724. height: math.unit(184, "gigaparsecs")
  8725. },
  8726. {
  8727. name: "Eternity War",
  8728. height: math.unit(1.98e55, "yottaparsecs")
  8729. },
  8730. ]
  8731. ))
  8732. characterMakers.push(() => makeCharacter(
  8733. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8734. {
  8735. front: {
  8736. height: math.unit(5 + 8 / 12, "feet"),
  8737. weight: math.unit(63, "kg"),
  8738. name: "Front",
  8739. image: {
  8740. source: "./media/characters/xavier/front.svg",
  8741. extra: 944 / 883
  8742. }
  8743. },
  8744. frontStretch: {
  8745. height: math.unit(5 + 8 / 12, "feet"),
  8746. weight: math.unit(63, "kg"),
  8747. name: "Stretching",
  8748. image: {
  8749. source: "./media/characters/xavier/front-stretch.svg",
  8750. extra: 962 / 820
  8751. }
  8752. },
  8753. },
  8754. [
  8755. {
  8756. name: "Normal",
  8757. height: math.unit(5 + 8 / 12, "feet")
  8758. },
  8759. {
  8760. name: "Macro",
  8761. height: math.unit(100, "meters"),
  8762. default: true
  8763. },
  8764. {
  8765. name: "McLargeHuge",
  8766. height: math.unit(10, "miles")
  8767. },
  8768. ]
  8769. ))
  8770. characterMakers.push(() => makeCharacter(
  8771. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8772. {
  8773. front: {
  8774. height: math.unit(5 + 5 / 12, "feet"),
  8775. weight: math.unit(150, "lb"),
  8776. name: "Front",
  8777. image: {
  8778. source: "./media/characters/joshii/front.svg",
  8779. extra: 765 / 653,
  8780. bottom: 51 / 816
  8781. }
  8782. },
  8783. foot: {
  8784. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8785. name: "Foot",
  8786. image: {
  8787. source: "./media/characters/joshii/foot.svg"
  8788. }
  8789. },
  8790. },
  8791. [
  8792. {
  8793. name: "Micro",
  8794. height: math.unit(2, "inches"),
  8795. default: true
  8796. },
  8797. {
  8798. name: "Normal",
  8799. height: math.unit(5 + 5 / 12, "feet")
  8800. },
  8801. {
  8802. name: "Macro",
  8803. height: math.unit(785, "feet")
  8804. },
  8805. {
  8806. name: "Megamacro",
  8807. height: math.unit(24.5, "miles")
  8808. },
  8809. ]
  8810. ))
  8811. characterMakers.push(() => makeCharacter(
  8812. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8813. {
  8814. front: {
  8815. height: math.unit(6, "feet"),
  8816. weight: math.unit(150, "lb"),
  8817. name: "Front",
  8818. image: {
  8819. source: "./media/characters/goddess-elizabeth/front.svg",
  8820. extra: 1800 / 1525,
  8821. bottom: 0.005
  8822. }
  8823. },
  8824. foot: {
  8825. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8826. name: "Foot",
  8827. image: {
  8828. source: "./media/characters/goddess-elizabeth/foot.svg"
  8829. }
  8830. },
  8831. mouth: {
  8832. height: math.unit(6, "feet"),
  8833. name: "Mouth",
  8834. image: {
  8835. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8836. }
  8837. },
  8838. },
  8839. [
  8840. {
  8841. name: "Micro",
  8842. height: math.unit(12, "feet")
  8843. },
  8844. {
  8845. name: "Normal",
  8846. height: math.unit(80, "miles"),
  8847. default: true
  8848. },
  8849. {
  8850. name: "Macro",
  8851. height: math.unit(15000, "parsecs")
  8852. },
  8853. ]
  8854. ))
  8855. characterMakers.push(() => makeCharacter(
  8856. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8857. {
  8858. front: {
  8859. height: math.unit(5 + 9 / 12, "feet"),
  8860. weight: math.unit(144, "lb"),
  8861. name: "Front",
  8862. image: {
  8863. source: "./media/characters/kara/front.svg"
  8864. }
  8865. },
  8866. feet: {
  8867. height: math.unit(6 / 6.765, "feet"),
  8868. name: "Kara's Feet",
  8869. rename: true,
  8870. image: {
  8871. source: "./media/characters/kara/feet.svg"
  8872. }
  8873. },
  8874. },
  8875. [
  8876. {
  8877. name: "Normal",
  8878. height: math.unit(5 + 9 / 12, "feet")
  8879. },
  8880. {
  8881. name: "Macro",
  8882. height: math.unit(174, "feet"),
  8883. default: true
  8884. },
  8885. ]
  8886. ))
  8887. characterMakers.push(() => makeCharacter(
  8888. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8889. {
  8890. front: {
  8891. height: math.unit(18, "feet"),
  8892. weight: math.unit(4050, "lb"),
  8893. name: "Front",
  8894. image: {
  8895. source: "./media/characters/tyrone/front.svg",
  8896. extra: 2405 / 2270,
  8897. bottom: 182 / 2587
  8898. }
  8899. },
  8900. },
  8901. [
  8902. {
  8903. name: "Normal",
  8904. height: math.unit(18, "feet"),
  8905. default: true
  8906. },
  8907. {
  8908. name: "Macro",
  8909. height: math.unit(300, "feet")
  8910. },
  8911. {
  8912. name: "Megamacro",
  8913. height: math.unit(15, "km")
  8914. },
  8915. {
  8916. name: "Gigamacro",
  8917. height: math.unit(500, "km")
  8918. },
  8919. {
  8920. name: "Teramacro",
  8921. height: math.unit(0.5, "gigameters")
  8922. },
  8923. {
  8924. name: "Omnimacro",
  8925. height: math.unit(1e252, "yottauniverse")
  8926. },
  8927. ]
  8928. ))
  8929. characterMakers.push(() => makeCharacter(
  8930. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8931. {
  8932. front: {
  8933. height: math.unit(7 + 8 / 12, "feet"),
  8934. weight: math.unit(120, "lb"),
  8935. name: "Front",
  8936. image: {
  8937. source: "./media/characters/danny/front.svg",
  8938. extra: 1490 / 1350
  8939. }
  8940. },
  8941. back: {
  8942. height: math.unit(7 + 8 / 12, "feet"),
  8943. weight: math.unit(120, "lb"),
  8944. name: "Back",
  8945. image: {
  8946. source: "./media/characters/danny/back.svg",
  8947. extra: 1490 / 1350
  8948. }
  8949. },
  8950. },
  8951. [
  8952. {
  8953. name: "Normal",
  8954. height: math.unit(7 + 8 / 12, "feet"),
  8955. default: true
  8956. },
  8957. ]
  8958. ))
  8959. characterMakers.push(() => makeCharacter(
  8960. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8961. {
  8962. front: {
  8963. height: math.unit(3.5, "inches"),
  8964. weight: math.unit(19, "grams"),
  8965. name: "Front",
  8966. image: {
  8967. source: "./media/characters/mallow/front.svg",
  8968. extra: 471 / 431
  8969. }
  8970. },
  8971. back: {
  8972. height: math.unit(3.5, "inches"),
  8973. weight: math.unit(19, "grams"),
  8974. name: "Back",
  8975. image: {
  8976. source: "./media/characters/mallow/back.svg",
  8977. extra: 471 / 431
  8978. }
  8979. },
  8980. },
  8981. [
  8982. {
  8983. name: "Normal",
  8984. height: math.unit(3.5, "inches"),
  8985. default: true
  8986. },
  8987. ]
  8988. ))
  8989. characterMakers.push(() => makeCharacter(
  8990. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8991. {
  8992. front: {
  8993. height: math.unit(9, "feet"),
  8994. weight: math.unit(230, "kg"),
  8995. name: "Front",
  8996. image: {
  8997. source: "./media/characters/starry-aqua/front.svg"
  8998. }
  8999. },
  9000. back: {
  9001. height: math.unit(9, "feet"),
  9002. weight: math.unit(230, "kg"),
  9003. name: "Back",
  9004. image: {
  9005. source: "./media/characters/starry-aqua/back.svg"
  9006. }
  9007. },
  9008. hand: {
  9009. height: math.unit(9 * 0.1168, "feet"),
  9010. name: "Hand",
  9011. image: {
  9012. source: "./media/characters/starry-aqua/hand.svg"
  9013. }
  9014. },
  9015. foot: {
  9016. height: math.unit(9 * 0.18, "feet"),
  9017. name: "Foot",
  9018. image: {
  9019. source: "./media/characters/starry-aqua/foot.svg"
  9020. }
  9021. }
  9022. },
  9023. [
  9024. {
  9025. name: "Micro",
  9026. height: math.unit(3, "inches")
  9027. },
  9028. {
  9029. name: "Normal",
  9030. height: math.unit(9, "feet")
  9031. },
  9032. {
  9033. name: "Macro",
  9034. height: math.unit(300, "feet"),
  9035. default: true
  9036. },
  9037. {
  9038. name: "Megamacro",
  9039. height: math.unit(3200, "feet")
  9040. }
  9041. ]
  9042. ))
  9043. characterMakers.push(() => makeCharacter(
  9044. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9045. {
  9046. front: {
  9047. height: math.unit(15, "feet"),
  9048. weight: math.unit(5026, "lb"),
  9049. name: "Front",
  9050. image: {
  9051. source: "./media/characters/luka-towers/front.svg",
  9052. extra: 1269/1133,
  9053. bottom: 51/1320
  9054. }
  9055. },
  9056. },
  9057. [
  9058. {
  9059. name: "Normal",
  9060. height: math.unit(15, "feet"),
  9061. default: true
  9062. },
  9063. {
  9064. name: "Minimacro",
  9065. height: math.unit(25, "feet")
  9066. },
  9067. {
  9068. name: "Macro",
  9069. height: math.unit(320, "feet")
  9070. },
  9071. {
  9072. name: "Megamacro",
  9073. height: math.unit(35000, "feet")
  9074. },
  9075. {
  9076. name: "Gigamacro",
  9077. height: math.unit(4000, "miles")
  9078. },
  9079. {
  9080. name: "Teramacro",
  9081. height: math.unit(15000, "miles")
  9082. },
  9083. ]
  9084. ))
  9085. characterMakers.push(() => makeCharacter(
  9086. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9087. {
  9088. front: {
  9089. height: math.unit(6, "feet"),
  9090. weight: math.unit(150, "lb"),
  9091. name: "Front",
  9092. image: {
  9093. source: "./media/characters/natalie-nightring/front.svg",
  9094. extra: 1,
  9095. bottom: 0.06
  9096. }
  9097. },
  9098. },
  9099. [
  9100. {
  9101. name: "Uh Oh",
  9102. height: math.unit(0.1, "mm")
  9103. },
  9104. {
  9105. name: "Small",
  9106. height: math.unit(3, "inches")
  9107. },
  9108. {
  9109. name: "Human Scale",
  9110. height: math.unit(6, "feet")
  9111. },
  9112. {
  9113. name: "Librarian",
  9114. height: math.unit(50, "feet"),
  9115. default: true
  9116. },
  9117. {
  9118. name: "Immense",
  9119. height: math.unit(200, "miles")
  9120. },
  9121. ]
  9122. ))
  9123. characterMakers.push(() => makeCharacter(
  9124. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9125. {
  9126. front: {
  9127. height: math.unit(6, "feet"),
  9128. weight: math.unit(180, "lbs"),
  9129. name: "Front",
  9130. image: {
  9131. source: "./media/characters/danni-rosie/front.svg",
  9132. extra: 1260 / 1128,
  9133. bottom: 0.022
  9134. }
  9135. },
  9136. },
  9137. [
  9138. {
  9139. name: "Micro",
  9140. height: math.unit(2, "inches"),
  9141. default: true
  9142. },
  9143. ]
  9144. ))
  9145. characterMakers.push(() => makeCharacter(
  9146. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9147. {
  9148. front: {
  9149. height: math.unit(5 + 9 / 12, "feet"),
  9150. weight: math.unit(220, "lb"),
  9151. name: "Front",
  9152. image: {
  9153. source: "./media/characters/samantha-kruse/front.svg",
  9154. extra: (985 / 935),
  9155. bottom: 0.03
  9156. }
  9157. },
  9158. frontUndressed: {
  9159. height: math.unit(5 + 9 / 12, "feet"),
  9160. weight: math.unit(220, "lb"),
  9161. name: "Front (Undressed)",
  9162. image: {
  9163. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9164. extra: (973 / 923),
  9165. bottom: 0.025
  9166. }
  9167. },
  9168. fat: {
  9169. height: math.unit(5 + 9 / 12, "feet"),
  9170. weight: math.unit(900, "lb"),
  9171. name: "Front (Fat)",
  9172. image: {
  9173. source: "./media/characters/samantha-kruse/fat.svg",
  9174. extra: 2688 / 2561
  9175. }
  9176. },
  9177. },
  9178. [
  9179. {
  9180. name: "Normal",
  9181. height: math.unit(5 + 9 / 12, "feet"),
  9182. default: true
  9183. }
  9184. ]
  9185. ))
  9186. characterMakers.push(() => makeCharacter(
  9187. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9188. {
  9189. back: {
  9190. height: math.unit(5 + 4 / 12, "feet"),
  9191. weight: math.unit(4963, "lb"),
  9192. name: "Back",
  9193. image: {
  9194. source: "./media/characters/amelia-rosie/back.svg",
  9195. extra: 1113 / 963,
  9196. bottom: 0.01
  9197. }
  9198. },
  9199. },
  9200. [
  9201. {
  9202. name: "Level 0",
  9203. height: math.unit(5 + 4 / 12, "feet")
  9204. },
  9205. {
  9206. name: "Level 1",
  9207. height: math.unit(164597, "feet"),
  9208. default: true
  9209. },
  9210. {
  9211. name: "Level 2",
  9212. height: math.unit(956243, "miles")
  9213. },
  9214. {
  9215. name: "Level 3",
  9216. height: math.unit(29421709423, "miles")
  9217. },
  9218. {
  9219. name: "Level 4",
  9220. height: math.unit(154, "lightyears")
  9221. },
  9222. {
  9223. name: "Level 5",
  9224. height: math.unit(4738272, "lightyears")
  9225. },
  9226. {
  9227. name: "Level 6",
  9228. height: math.unit(145787152896, "lightyears")
  9229. },
  9230. ]
  9231. ))
  9232. characterMakers.push(() => makeCharacter(
  9233. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9234. {
  9235. front: {
  9236. height: math.unit(5 + 11 / 12, "feet"),
  9237. weight: math.unit(65, "kg"),
  9238. name: "Front",
  9239. image: {
  9240. source: "./media/characters/rook-kitara/front.svg",
  9241. extra: 1347 / 1274,
  9242. bottom: 0.005
  9243. }
  9244. },
  9245. },
  9246. [
  9247. {
  9248. name: "Totally Unfair",
  9249. height: math.unit(1.8, "mm")
  9250. },
  9251. {
  9252. name: "Lap Rookie",
  9253. height: math.unit(1.4, "feet")
  9254. },
  9255. {
  9256. name: "Normal",
  9257. height: math.unit(5 + 11 / 12, "feet"),
  9258. default: true
  9259. },
  9260. {
  9261. name: "How Did This Happen",
  9262. height: math.unit(80, "miles")
  9263. }
  9264. ]
  9265. ))
  9266. characterMakers.push(() => makeCharacter(
  9267. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9268. {
  9269. front: {
  9270. height: math.unit(7, "feet"),
  9271. weight: math.unit(300, "lb"),
  9272. name: "Front",
  9273. image: {
  9274. source: "./media/characters/pisces/front.svg",
  9275. extra: 2255 / 2115,
  9276. bottom: 0.03
  9277. }
  9278. },
  9279. back: {
  9280. height: math.unit(7, "feet"),
  9281. weight: math.unit(300, "lb"),
  9282. name: "Back",
  9283. image: {
  9284. source: "./media/characters/pisces/back.svg",
  9285. extra: 2146 / 2055,
  9286. bottom: 0.04
  9287. }
  9288. },
  9289. },
  9290. [
  9291. {
  9292. name: "Normal",
  9293. height: math.unit(7, "feet"),
  9294. default: true
  9295. },
  9296. {
  9297. name: "Swimming Pool",
  9298. height: math.unit(12.2, "meters")
  9299. },
  9300. {
  9301. name: "Olympic Swimming Pool",
  9302. height: math.unit(56.3, "meters")
  9303. },
  9304. {
  9305. name: "Lake Superior",
  9306. height: math.unit(93900, "meters")
  9307. },
  9308. {
  9309. name: "Mediterranean Sea",
  9310. height: math.unit(644457, "meters")
  9311. },
  9312. {
  9313. name: "World's Oceans",
  9314. height: math.unit(4567491, "meters")
  9315. },
  9316. ]
  9317. ))
  9318. characterMakers.push(() => makeCharacter(
  9319. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9320. {
  9321. front: {
  9322. height: math.unit(2.3, "meters"),
  9323. weight: math.unit(120, "kg"),
  9324. name: "Front",
  9325. image: {
  9326. source: "./media/characters/zelas/front.svg"
  9327. }
  9328. },
  9329. side: {
  9330. height: math.unit(2.3, "meters"),
  9331. weight: math.unit(120, "kg"),
  9332. name: "Side",
  9333. image: {
  9334. source: "./media/characters/zelas/side.svg"
  9335. }
  9336. },
  9337. back: {
  9338. height: math.unit(2.3, "meters"),
  9339. weight: math.unit(120, "kg"),
  9340. name: "Back",
  9341. image: {
  9342. source: "./media/characters/zelas/back.svg"
  9343. }
  9344. },
  9345. foot: {
  9346. height: math.unit(1.116, "feet"),
  9347. name: "Foot",
  9348. image: {
  9349. source: "./media/characters/zelas/foot.svg"
  9350. }
  9351. },
  9352. },
  9353. [
  9354. {
  9355. name: "Normal",
  9356. height: math.unit(2.3, "meters")
  9357. },
  9358. {
  9359. name: "Macro",
  9360. height: math.unit(30, "meters"),
  9361. default: true
  9362. },
  9363. ]
  9364. ))
  9365. characterMakers.push(() => makeCharacter(
  9366. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9367. {
  9368. front: {
  9369. height: math.unit(1, "inch"),
  9370. weight: math.unit(0.21, "grams"),
  9371. name: "Front",
  9372. image: {
  9373. source: "./media/characters/talbot/front.svg",
  9374. extra: 594 / 544
  9375. }
  9376. },
  9377. },
  9378. [
  9379. {
  9380. name: "Micro",
  9381. height: math.unit(1, "inch"),
  9382. default: true
  9383. },
  9384. ]
  9385. ))
  9386. characterMakers.push(() => makeCharacter(
  9387. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9388. {
  9389. front: {
  9390. height: math.unit(3 + 3 / 12, "feet"),
  9391. weight: math.unit(51.8, "lb"),
  9392. name: "Front",
  9393. image: {
  9394. source: "./media/characters/fliss/front.svg",
  9395. extra: 840 / 640
  9396. }
  9397. },
  9398. },
  9399. [
  9400. {
  9401. name: "Teeny Tiny",
  9402. height: math.unit(1, "mm")
  9403. },
  9404. {
  9405. name: "Small",
  9406. height: math.unit(1, "inch"),
  9407. default: true
  9408. },
  9409. {
  9410. name: "Standard Sylveon",
  9411. height: math.unit(3 + 3 / 12, "feet")
  9412. },
  9413. {
  9414. name: "Large Nuisance",
  9415. height: math.unit(33, "feet")
  9416. },
  9417. {
  9418. name: "City Filler",
  9419. height: math.unit(3000, "feet")
  9420. },
  9421. {
  9422. name: "New Horizon",
  9423. height: math.unit(6000, "miles")
  9424. },
  9425. ]
  9426. ))
  9427. characterMakers.push(() => makeCharacter(
  9428. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9429. {
  9430. front: {
  9431. height: math.unit(5, "cm"),
  9432. weight: math.unit(1.94, "g"),
  9433. name: "Front",
  9434. image: {
  9435. source: "./media/characters/fleta/front.svg",
  9436. extra: 835 / 803
  9437. }
  9438. },
  9439. back: {
  9440. height: math.unit(5, "cm"),
  9441. weight: math.unit(1.94, "g"),
  9442. name: "Back",
  9443. image: {
  9444. source: "./media/characters/fleta/back.svg",
  9445. extra: 835 / 803
  9446. }
  9447. },
  9448. },
  9449. [
  9450. {
  9451. name: "Micro",
  9452. height: math.unit(5, "cm"),
  9453. default: true
  9454. },
  9455. ]
  9456. ))
  9457. characterMakers.push(() => makeCharacter(
  9458. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9459. {
  9460. front: {
  9461. height: math.unit(6, "feet"),
  9462. weight: math.unit(225, "lb"),
  9463. name: "Front",
  9464. image: {
  9465. source: "./media/characters/dominic/front.svg",
  9466. extra: 1770 / 1620,
  9467. bottom: 0.025
  9468. }
  9469. },
  9470. back: {
  9471. height: math.unit(6, "feet"),
  9472. weight: math.unit(225, "lb"),
  9473. name: "Back",
  9474. image: {
  9475. source: "./media/characters/dominic/back.svg",
  9476. extra: 1745 / 1620,
  9477. bottom: 0.065
  9478. }
  9479. },
  9480. },
  9481. [
  9482. {
  9483. name: "Nano",
  9484. height: math.unit(0.1, "mm")
  9485. },
  9486. {
  9487. name: "Micro-",
  9488. height: math.unit(1, "mm")
  9489. },
  9490. {
  9491. name: "Micro",
  9492. height: math.unit(4, "inches")
  9493. },
  9494. {
  9495. name: "Normal",
  9496. height: math.unit(6 + 4 / 12, "feet"),
  9497. default: true
  9498. },
  9499. {
  9500. name: "Macro",
  9501. height: math.unit(115, "feet")
  9502. },
  9503. {
  9504. name: "Macro+",
  9505. height: math.unit(955, "feet")
  9506. },
  9507. {
  9508. name: "Megamacro",
  9509. height: math.unit(8990, "feet")
  9510. },
  9511. {
  9512. name: "Gigmacro",
  9513. height: math.unit(9310, "miles")
  9514. },
  9515. {
  9516. name: "Teramacro",
  9517. height: math.unit(1567005010, "miles")
  9518. },
  9519. {
  9520. name: "Examacro",
  9521. height: math.unit(1425, "parsecs")
  9522. },
  9523. ]
  9524. ))
  9525. characterMakers.push(() => makeCharacter(
  9526. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9527. {
  9528. front: {
  9529. height: math.unit(400, "feet"),
  9530. weight: math.unit(44444444, "lb"),
  9531. name: "Front",
  9532. image: {
  9533. source: "./media/characters/major-colonel/front.svg"
  9534. }
  9535. },
  9536. back: {
  9537. height: math.unit(400, "feet"),
  9538. weight: math.unit(44444444, "lb"),
  9539. name: "Back",
  9540. image: {
  9541. source: "./media/characters/major-colonel/back.svg"
  9542. }
  9543. },
  9544. },
  9545. [
  9546. {
  9547. name: "Macro",
  9548. height: math.unit(400, "feet"),
  9549. default: true
  9550. },
  9551. ]
  9552. ))
  9553. characterMakers.push(() => makeCharacter(
  9554. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9555. {
  9556. catFront: {
  9557. height: math.unit(6, "feet"),
  9558. weight: math.unit(120, "lb"),
  9559. name: "Front (Cat Side)",
  9560. image: {
  9561. source: "./media/characters/axel-lycan/cat-front.svg",
  9562. extra: 430 / 402,
  9563. bottom: 43 / 472.35
  9564. }
  9565. },
  9566. catBack: {
  9567. height: math.unit(6, "feet"),
  9568. weight: math.unit(120, "lb"),
  9569. name: "Back (Cat Side)",
  9570. image: {
  9571. source: "./media/characters/axel-lycan/cat-back.svg",
  9572. extra: 447 / 419,
  9573. bottom: 23.3 / 469
  9574. }
  9575. },
  9576. wolfFront: {
  9577. height: math.unit(6, "feet"),
  9578. weight: math.unit(120, "lb"),
  9579. name: "Front (Wolf Side)",
  9580. image: {
  9581. source: "./media/characters/axel-lycan/wolf-front.svg",
  9582. extra: 485 / 456,
  9583. bottom: 19 / 504
  9584. }
  9585. },
  9586. wolfBack: {
  9587. height: math.unit(6, "feet"),
  9588. weight: math.unit(120, "lb"),
  9589. name: "Back (Wolf Side)",
  9590. image: {
  9591. source: "./media/characters/axel-lycan/wolf-back.svg",
  9592. extra: 475 / 438,
  9593. bottom: 39.2 / 514
  9594. }
  9595. },
  9596. },
  9597. [
  9598. {
  9599. name: "Macro",
  9600. height: math.unit(1, "km"),
  9601. default: true
  9602. },
  9603. ]
  9604. ))
  9605. characterMakers.push(() => makeCharacter(
  9606. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9607. {
  9608. front: {
  9609. height: math.unit(5 + 9 / 12, "feet"),
  9610. weight: math.unit(175, "lb"),
  9611. name: "Front",
  9612. image: {
  9613. source: "./media/characters/vanrel-hyena/front.svg",
  9614. extra: 1086 / 1010,
  9615. bottom: 0.04
  9616. }
  9617. },
  9618. },
  9619. [
  9620. {
  9621. name: "Normal",
  9622. height: math.unit(5 + 9 / 12, "feet"),
  9623. default: true
  9624. },
  9625. ]
  9626. ))
  9627. characterMakers.push(() => makeCharacter(
  9628. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9629. {
  9630. front: {
  9631. height: math.unit(6, "feet"),
  9632. weight: math.unit(103, "lb"),
  9633. name: "Front",
  9634. image: {
  9635. source: "./media/characters/abbott-absol/front.svg",
  9636. extra: 2010 / 1842
  9637. }
  9638. },
  9639. },
  9640. [
  9641. {
  9642. name: "Megamicro",
  9643. height: math.unit(0.1, "mm")
  9644. },
  9645. {
  9646. name: "Micro",
  9647. height: math.unit(1, "inch")
  9648. },
  9649. {
  9650. name: "Normal",
  9651. height: math.unit(6, "feet"),
  9652. default: true
  9653. },
  9654. ]
  9655. ))
  9656. characterMakers.push(() => makeCharacter(
  9657. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9658. {
  9659. front: {
  9660. height: math.unit(6, "feet"),
  9661. weight: math.unit(264, "lb"),
  9662. name: "Front",
  9663. image: {
  9664. source: "./media/characters/hector/front.svg",
  9665. extra: 2280 / 2130,
  9666. bottom: 0.07
  9667. }
  9668. },
  9669. },
  9670. [
  9671. {
  9672. name: "Normal",
  9673. height: math.unit(12.25, "foot"),
  9674. default: true
  9675. },
  9676. {
  9677. name: "Macro",
  9678. height: math.unit(160, "feet")
  9679. },
  9680. ]
  9681. ))
  9682. characterMakers.push(() => makeCharacter(
  9683. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9684. {
  9685. front: {
  9686. height: math.unit(6, "feet"),
  9687. weight: math.unit(150, "lb"),
  9688. name: "Front",
  9689. image: {
  9690. source: "./media/characters/sal/front.svg",
  9691. extra: 1846 / 1699,
  9692. bottom: 0.04
  9693. }
  9694. },
  9695. },
  9696. [
  9697. {
  9698. name: "Megamacro",
  9699. height: math.unit(10, "miles"),
  9700. default: true
  9701. },
  9702. ]
  9703. ))
  9704. characterMakers.push(() => makeCharacter(
  9705. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9706. {
  9707. front: {
  9708. height: math.unit(3, "meters"),
  9709. weight: math.unit(450, "kg"),
  9710. name: "front",
  9711. image: {
  9712. source: "./media/characters/ranger/front.svg",
  9713. extra: 2401 / 2243,
  9714. bottom: 0.05
  9715. }
  9716. },
  9717. },
  9718. [
  9719. {
  9720. name: "Normal",
  9721. height: math.unit(3, "meters"),
  9722. default: true
  9723. },
  9724. ]
  9725. ))
  9726. characterMakers.push(() => makeCharacter(
  9727. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9728. {
  9729. front: {
  9730. height: math.unit(14, "feet"),
  9731. weight: math.unit(800, "kg"),
  9732. name: "Front",
  9733. image: {
  9734. source: "./media/characters/theresa/front.svg",
  9735. extra: 3575 / 3346,
  9736. bottom: 0.03
  9737. }
  9738. },
  9739. },
  9740. [
  9741. {
  9742. name: "Normal",
  9743. height: math.unit(14, "feet"),
  9744. default: true
  9745. },
  9746. ]
  9747. ))
  9748. characterMakers.push(() => makeCharacter(
  9749. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9750. {
  9751. front: {
  9752. height: math.unit(6, "feet"),
  9753. weight: math.unit(3, "kg"),
  9754. name: "Front",
  9755. image: {
  9756. source: "./media/characters/ine/front.svg",
  9757. extra: 678 / 539,
  9758. bottom: 0.023
  9759. }
  9760. },
  9761. },
  9762. [
  9763. {
  9764. name: "Normal",
  9765. height: math.unit(2.265, "feet"),
  9766. default: true
  9767. },
  9768. ]
  9769. ))
  9770. characterMakers.push(() => makeCharacter(
  9771. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9772. {
  9773. front: {
  9774. height: math.unit(5, "feet"),
  9775. weight: math.unit(30, "kg"),
  9776. name: "Front",
  9777. image: {
  9778. source: "./media/characters/vial/front.svg",
  9779. extra: 1365 / 1277,
  9780. bottom: 0.04
  9781. }
  9782. },
  9783. },
  9784. [
  9785. {
  9786. name: "Normal",
  9787. height: math.unit(5, "feet"),
  9788. default: true
  9789. },
  9790. ]
  9791. ))
  9792. characterMakers.push(() => makeCharacter(
  9793. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9794. {
  9795. side: {
  9796. height: math.unit(3.4, "meters"),
  9797. weight: math.unit(1000, "lb"),
  9798. name: "Side",
  9799. image: {
  9800. source: "./media/characters/rovoska/side.svg",
  9801. extra: 4403 / 1515
  9802. }
  9803. },
  9804. },
  9805. [
  9806. {
  9807. name: "Normal",
  9808. height: math.unit(3.4, "meters"),
  9809. default: true
  9810. },
  9811. ]
  9812. ))
  9813. characterMakers.push(() => makeCharacter(
  9814. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9815. {
  9816. front: {
  9817. height: math.unit(8, "feet"),
  9818. weight: math.unit(315, "lb"),
  9819. name: "Front",
  9820. image: {
  9821. source: "./media/characters/gunner-rotthbauer/front.svg"
  9822. }
  9823. },
  9824. back: {
  9825. height: math.unit(8, "feet"),
  9826. weight: math.unit(315, "lb"),
  9827. name: "Back",
  9828. image: {
  9829. source: "./media/characters/gunner-rotthbauer/back.svg"
  9830. }
  9831. },
  9832. },
  9833. [
  9834. {
  9835. name: "Micro",
  9836. height: math.unit(3.5, "inches")
  9837. },
  9838. {
  9839. name: "Normal",
  9840. height: math.unit(8, "feet"),
  9841. default: true
  9842. },
  9843. {
  9844. name: "Macro",
  9845. height: math.unit(250, "feet")
  9846. },
  9847. {
  9848. name: "Megamacro",
  9849. height: math.unit(1, "AU")
  9850. },
  9851. ]
  9852. ))
  9853. characterMakers.push(() => makeCharacter(
  9854. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9855. {
  9856. front: {
  9857. height: math.unit(5 + 5 / 12, "feet"),
  9858. weight: math.unit(140, "lb"),
  9859. name: "Front",
  9860. image: {
  9861. source: "./media/characters/allatia/front.svg",
  9862. extra: 1227 / 1180,
  9863. bottom: 0.027
  9864. }
  9865. },
  9866. },
  9867. [
  9868. {
  9869. name: "Normal",
  9870. height: math.unit(5 + 5 / 12, "feet")
  9871. },
  9872. {
  9873. name: "Macro",
  9874. height: math.unit(250, "feet"),
  9875. default: true
  9876. },
  9877. {
  9878. name: "Megamacro",
  9879. height: math.unit(8, "miles")
  9880. }
  9881. ]
  9882. ))
  9883. characterMakers.push(() => makeCharacter(
  9884. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9885. {
  9886. front: {
  9887. height: math.unit(6, "feet"),
  9888. weight: math.unit(120, "lb"),
  9889. name: "Front",
  9890. image: {
  9891. source: "./media/characters/tene/front.svg",
  9892. extra: 1728 / 1578,
  9893. bottom: 0.022
  9894. }
  9895. },
  9896. stomping: {
  9897. height: math.unit(2.025, "meters"),
  9898. weight: math.unit(120, "lb"),
  9899. name: "Stomping",
  9900. image: {
  9901. source: "./media/characters/tene/stomping.svg",
  9902. extra: 938 / 873,
  9903. bottom: 0.01
  9904. }
  9905. },
  9906. sitting: {
  9907. height: math.unit(1, "meter"),
  9908. weight: math.unit(120, "lb"),
  9909. name: "Sitting",
  9910. image: {
  9911. source: "./media/characters/tene/sitting.svg",
  9912. extra: 437 / 415,
  9913. bottom: 0.1
  9914. }
  9915. },
  9916. feral: {
  9917. height: math.unit(3.9, "feet"),
  9918. weight: math.unit(250, "lb"),
  9919. name: "Feral",
  9920. image: {
  9921. source: "./media/characters/tene/feral.svg",
  9922. extra: 717 / 458,
  9923. bottom: 0.179
  9924. }
  9925. },
  9926. },
  9927. [
  9928. {
  9929. name: "Normal",
  9930. height: math.unit(6, "feet")
  9931. },
  9932. {
  9933. name: "Macro",
  9934. height: math.unit(300, "feet"),
  9935. default: true
  9936. },
  9937. {
  9938. name: "Megamacro",
  9939. height: math.unit(5, "miles")
  9940. },
  9941. ]
  9942. ))
  9943. characterMakers.push(() => makeCharacter(
  9944. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9945. {
  9946. side: {
  9947. height: math.unit(6, "feet"),
  9948. name: "Side",
  9949. image: {
  9950. source: "./media/characters/evander/side.svg",
  9951. extra: 877 / 477
  9952. }
  9953. },
  9954. },
  9955. [
  9956. {
  9957. name: "Normal",
  9958. height: math.unit(0.83, "meters"),
  9959. default: true
  9960. },
  9961. ]
  9962. ))
  9963. characterMakers.push(() => makeCharacter(
  9964. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9965. {
  9966. front: {
  9967. height: math.unit(12, "feet"),
  9968. weight: math.unit(1000, "lb"),
  9969. name: "Front",
  9970. image: {
  9971. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9972. extra: 1762 / 1611
  9973. }
  9974. },
  9975. back: {
  9976. height: math.unit(12, "feet"),
  9977. weight: math.unit(1000, "lb"),
  9978. name: "Back",
  9979. image: {
  9980. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9981. extra: 1762 / 1611
  9982. }
  9983. },
  9984. },
  9985. [
  9986. {
  9987. name: "Normal",
  9988. height: math.unit(12, "feet"),
  9989. default: true
  9990. },
  9991. {
  9992. name: "Kaiju",
  9993. height: math.unit(150, "feet")
  9994. },
  9995. ]
  9996. ))
  9997. characterMakers.push(() => makeCharacter(
  9998. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9999. {
  10000. front: {
  10001. height: math.unit(6, "feet"),
  10002. weight: math.unit(150, "lb"),
  10003. name: "Front",
  10004. image: {
  10005. source: "./media/characters/zero-alurus/front.svg"
  10006. }
  10007. },
  10008. back: {
  10009. height: math.unit(6, "feet"),
  10010. weight: math.unit(150, "lb"),
  10011. name: "Back",
  10012. image: {
  10013. source: "./media/characters/zero-alurus/back.svg"
  10014. }
  10015. },
  10016. },
  10017. [
  10018. {
  10019. name: "Normal",
  10020. height: math.unit(5 + 10 / 12, "feet")
  10021. },
  10022. {
  10023. name: "Macro",
  10024. height: math.unit(60, "feet"),
  10025. default: true
  10026. },
  10027. {
  10028. name: "Macro+",
  10029. height: math.unit(450, "feet")
  10030. },
  10031. ]
  10032. ))
  10033. characterMakers.push(() => makeCharacter(
  10034. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10035. {
  10036. front: {
  10037. height: math.unit(6, "feet"),
  10038. weight: math.unit(200, "lb"),
  10039. name: "Front",
  10040. image: {
  10041. source: "./media/characters/mega-shi/front.svg",
  10042. extra: 1279 / 1250,
  10043. bottom: 0.02
  10044. }
  10045. },
  10046. back: {
  10047. height: math.unit(6, "feet"),
  10048. weight: math.unit(200, "lb"),
  10049. name: "Back",
  10050. image: {
  10051. source: "./media/characters/mega-shi/back.svg",
  10052. extra: 1279 / 1250,
  10053. bottom: 0.02
  10054. }
  10055. },
  10056. },
  10057. [
  10058. {
  10059. name: "Micro",
  10060. height: math.unit(16 + 6 / 12, "feet")
  10061. },
  10062. {
  10063. name: "Third Dimension",
  10064. height: math.unit(40, "meters")
  10065. },
  10066. {
  10067. name: "Normal",
  10068. height: math.unit(660, "feet"),
  10069. default: true
  10070. },
  10071. {
  10072. name: "Megamacro",
  10073. height: math.unit(10, "miles")
  10074. },
  10075. {
  10076. name: "Planetary Launch",
  10077. height: math.unit(500, "miles")
  10078. },
  10079. {
  10080. name: "Interstellar",
  10081. height: math.unit(1e9, "miles")
  10082. },
  10083. {
  10084. name: "Leaving the Universe",
  10085. height: math.unit(1, "gigaparsec")
  10086. },
  10087. {
  10088. name: "Travelling Universes",
  10089. height: math.unit(30e15, "parsecs")
  10090. },
  10091. ]
  10092. ))
  10093. characterMakers.push(() => makeCharacter(
  10094. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10095. {
  10096. front: {
  10097. height: math.unit(6, "feet"),
  10098. weight: math.unit(150, "lb"),
  10099. name: "Front",
  10100. image: {
  10101. source: "./media/characters/odyssey/front.svg",
  10102. extra: 1782 / 1582,
  10103. bottom: 0.01
  10104. }
  10105. },
  10106. side: {
  10107. height: math.unit(5.7, "feet"),
  10108. weight: math.unit(140, "lb"),
  10109. name: "Side",
  10110. image: {
  10111. source: "./media/characters/odyssey/side.svg",
  10112. extra: 6462 / 5700
  10113. }
  10114. },
  10115. },
  10116. [
  10117. {
  10118. name: "Normal",
  10119. height: math.unit(5 + 4 / 12, "feet")
  10120. },
  10121. {
  10122. name: "Macro",
  10123. height: math.unit(1, "km")
  10124. },
  10125. {
  10126. name: "Megamacro",
  10127. height: math.unit(3000, "km")
  10128. },
  10129. {
  10130. name: "Gigamacro",
  10131. height: math.unit(1, "AU"),
  10132. default: true
  10133. },
  10134. {
  10135. name: "Omniversal",
  10136. height: math.unit(100e14, "lightyears")
  10137. },
  10138. ]
  10139. ))
  10140. characterMakers.push(() => makeCharacter(
  10141. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10142. {
  10143. front: {
  10144. height: math.unit(6, "feet"),
  10145. weight: math.unit(300, "lb"),
  10146. name: "Front",
  10147. image: {
  10148. source: "./media/characters/mekuto/front.svg",
  10149. extra: 921 / 832,
  10150. bottom: 0.03
  10151. }
  10152. },
  10153. hand: {
  10154. height: math.unit(6 / 10.24, "feet"),
  10155. name: "Hand",
  10156. image: {
  10157. source: "./media/characters/mekuto/hand.svg"
  10158. }
  10159. },
  10160. foot: {
  10161. height: math.unit(6 / 5.05, "feet"),
  10162. name: "Foot",
  10163. image: {
  10164. source: "./media/characters/mekuto/foot.svg"
  10165. }
  10166. },
  10167. },
  10168. [
  10169. {
  10170. name: "Minimicro",
  10171. height: math.unit(0.2, "inches")
  10172. },
  10173. {
  10174. name: "Micro",
  10175. height: math.unit(1.5, "inches")
  10176. },
  10177. {
  10178. name: "Normal",
  10179. height: math.unit(5 + 11 / 12, "feet"),
  10180. default: true
  10181. },
  10182. {
  10183. name: "Minimacro",
  10184. height: math.unit(17 + 9 / 12, "feet")
  10185. },
  10186. {
  10187. name: "Macro",
  10188. height: math.unit(177.5, "feet")
  10189. },
  10190. {
  10191. name: "Megamacro",
  10192. height: math.unit(152, "miles")
  10193. },
  10194. ]
  10195. ))
  10196. characterMakers.push(() => makeCharacter(
  10197. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10198. {
  10199. front: {
  10200. height: math.unit(6.5, "inches"),
  10201. weight: math.unit(13, "oz"),
  10202. name: "Front",
  10203. image: {
  10204. source: "./media/characters/dafydd-tomos/front.svg",
  10205. extra: 2990 / 2603,
  10206. bottom: 0.03
  10207. }
  10208. },
  10209. },
  10210. [
  10211. {
  10212. name: "Micro",
  10213. height: math.unit(6.5, "inches"),
  10214. default: true
  10215. },
  10216. ]
  10217. ))
  10218. characterMakers.push(() => makeCharacter(
  10219. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10220. {
  10221. front: {
  10222. height: math.unit(6, "feet"),
  10223. weight: math.unit(150, "lb"),
  10224. name: "Front",
  10225. image: {
  10226. source: "./media/characters/splinter/front.svg",
  10227. extra: 2990 / 2882,
  10228. bottom: 0.04
  10229. }
  10230. },
  10231. back: {
  10232. height: math.unit(6, "feet"),
  10233. weight: math.unit(150, "lb"),
  10234. name: "Back",
  10235. image: {
  10236. source: "./media/characters/splinter/back.svg",
  10237. extra: 2990 / 2882,
  10238. bottom: 0.04
  10239. }
  10240. },
  10241. },
  10242. [
  10243. {
  10244. name: "Normal",
  10245. height: math.unit(6, "feet")
  10246. },
  10247. {
  10248. name: "Macro",
  10249. height: math.unit(230, "meters"),
  10250. default: true
  10251. },
  10252. ]
  10253. ))
  10254. characterMakers.push(() => makeCharacter(
  10255. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10256. {
  10257. front: {
  10258. height: math.unit(4 + 10 / 12, "feet"),
  10259. weight: math.unit(480, "lb"),
  10260. name: "Front",
  10261. image: {
  10262. source: "./media/characters/snow-gabumon/front.svg",
  10263. extra: 1140 / 963,
  10264. bottom: 0.058
  10265. }
  10266. },
  10267. back: {
  10268. height: math.unit(4 + 10 / 12, "feet"),
  10269. weight: math.unit(480, "lb"),
  10270. name: "Back",
  10271. image: {
  10272. source: "./media/characters/snow-gabumon/back.svg",
  10273. extra: 1115 / 962,
  10274. bottom: 0.041
  10275. }
  10276. },
  10277. frontUndresed: {
  10278. height: math.unit(4 + 10 / 12, "feet"),
  10279. weight: math.unit(480, "lb"),
  10280. name: "Front (Undressed)",
  10281. image: {
  10282. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10283. extra: 1061 / 960,
  10284. bottom: 0.045
  10285. }
  10286. },
  10287. },
  10288. [
  10289. {
  10290. name: "Micro",
  10291. height: math.unit(1, "inch")
  10292. },
  10293. {
  10294. name: "Normal",
  10295. height: math.unit(4 + 10 / 12, "feet"),
  10296. default: true
  10297. },
  10298. {
  10299. name: "Macro",
  10300. height: math.unit(200, "feet")
  10301. },
  10302. {
  10303. name: "Megamacro",
  10304. height: math.unit(120, "miles")
  10305. },
  10306. {
  10307. name: "Gigamacro",
  10308. height: math.unit(9800, "miles")
  10309. },
  10310. ]
  10311. ))
  10312. characterMakers.push(() => makeCharacter(
  10313. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10314. {
  10315. front: {
  10316. height: math.unit(1.7, "meters"),
  10317. weight: math.unit(140, "lb"),
  10318. name: "Front",
  10319. image: {
  10320. source: "./media/characters/moody/front.svg",
  10321. extra: 3226 / 3007,
  10322. bottom: 0.087
  10323. }
  10324. },
  10325. },
  10326. [
  10327. {
  10328. name: "Micro",
  10329. height: math.unit(1, "mm")
  10330. },
  10331. {
  10332. name: "Normal",
  10333. height: math.unit(1.7, "meters"),
  10334. default: true
  10335. },
  10336. {
  10337. name: "Macro",
  10338. height: math.unit(80, "meters")
  10339. },
  10340. {
  10341. name: "Macro+",
  10342. height: math.unit(500, "meters")
  10343. },
  10344. ]
  10345. ))
  10346. characterMakers.push(() => makeCharacter(
  10347. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10348. {
  10349. front: {
  10350. height: math.unit(6, "feet"),
  10351. weight: math.unit(150, "lb"),
  10352. name: "Front",
  10353. image: {
  10354. source: "./media/characters/zyas/front.svg",
  10355. extra: 1180 / 1120,
  10356. bottom: 0.045
  10357. }
  10358. },
  10359. },
  10360. [
  10361. {
  10362. name: "Normal",
  10363. height: math.unit(10, "feet"),
  10364. default: true
  10365. },
  10366. {
  10367. name: "Macro",
  10368. height: math.unit(500, "feet")
  10369. },
  10370. {
  10371. name: "Megamacro",
  10372. height: math.unit(5, "miles")
  10373. },
  10374. {
  10375. name: "Teramacro",
  10376. height: math.unit(150000, "miles")
  10377. },
  10378. ]
  10379. ))
  10380. characterMakers.push(() => makeCharacter(
  10381. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10382. {
  10383. front: {
  10384. height: math.unit(6, "feet"),
  10385. weight: math.unit(150, "lb"),
  10386. name: "Front",
  10387. image: {
  10388. source: "./media/characters/cuon/front.svg",
  10389. extra: 1390 / 1320,
  10390. bottom: 0.008
  10391. }
  10392. },
  10393. },
  10394. [
  10395. {
  10396. name: "Micro",
  10397. height: math.unit(3, "inches")
  10398. },
  10399. {
  10400. name: "Normal",
  10401. height: math.unit(18 + 9 / 12, "feet"),
  10402. default: true
  10403. },
  10404. {
  10405. name: "Macro",
  10406. height: math.unit(360, "feet")
  10407. },
  10408. {
  10409. name: "Megamacro",
  10410. height: math.unit(360, "miles")
  10411. },
  10412. ]
  10413. ))
  10414. characterMakers.push(() => makeCharacter(
  10415. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10416. {
  10417. front: {
  10418. height: math.unit(2.4, "meters"),
  10419. weight: math.unit(70, "kg"),
  10420. name: "Front",
  10421. image: {
  10422. source: "./media/characters/nyanuxk/front.svg",
  10423. extra: 1172 / 1084,
  10424. bottom: 0.065
  10425. }
  10426. },
  10427. side: {
  10428. height: math.unit(2.4, "meters"),
  10429. weight: math.unit(70, "kg"),
  10430. name: "Side",
  10431. image: {
  10432. source: "./media/characters/nyanuxk/side.svg",
  10433. extra: 1190 / 1132,
  10434. bottom: 0.007
  10435. }
  10436. },
  10437. back: {
  10438. height: math.unit(2.4, "meters"),
  10439. weight: math.unit(70, "kg"),
  10440. name: "Back",
  10441. image: {
  10442. source: "./media/characters/nyanuxk/back.svg",
  10443. extra: 1200 / 1141,
  10444. bottom: 0.015
  10445. }
  10446. },
  10447. foot: {
  10448. height: math.unit(0.52, "meters"),
  10449. name: "Foot",
  10450. image: {
  10451. source: "./media/characters/nyanuxk/foot.svg"
  10452. }
  10453. },
  10454. },
  10455. [
  10456. {
  10457. name: "Micro",
  10458. height: math.unit(2, "cm")
  10459. },
  10460. {
  10461. name: "Normal",
  10462. height: math.unit(2.4, "meters"),
  10463. default: true
  10464. },
  10465. {
  10466. name: "Smaller Macro",
  10467. height: math.unit(120, "meters")
  10468. },
  10469. {
  10470. name: "Bigger Macro",
  10471. height: math.unit(1.2, "km")
  10472. },
  10473. {
  10474. name: "Megamacro",
  10475. height: math.unit(15, "kilometers")
  10476. },
  10477. {
  10478. name: "Gigamacro",
  10479. height: math.unit(2000, "km")
  10480. },
  10481. {
  10482. name: "Teramacro",
  10483. height: math.unit(500000, "km")
  10484. },
  10485. ]
  10486. ))
  10487. characterMakers.push(() => makeCharacter(
  10488. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10489. {
  10490. side: {
  10491. height: math.unit(6, "feet"),
  10492. name: "Side",
  10493. image: {
  10494. source: "./media/characters/ailbhe/side.svg",
  10495. extra: 757 / 464,
  10496. bottom: 0.041
  10497. }
  10498. },
  10499. },
  10500. [
  10501. {
  10502. name: "Normal",
  10503. height: math.unit(1.07, "meters"),
  10504. default: true
  10505. },
  10506. ]
  10507. ))
  10508. characterMakers.push(() => makeCharacter(
  10509. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10510. {
  10511. front: {
  10512. height: math.unit(6, "feet"),
  10513. weight: math.unit(120, "kg"),
  10514. name: "Front",
  10515. image: {
  10516. source: "./media/characters/zevulfius/front.svg",
  10517. extra: 965 / 903
  10518. }
  10519. },
  10520. side: {
  10521. height: math.unit(6, "feet"),
  10522. weight: math.unit(120, "kg"),
  10523. name: "Side",
  10524. image: {
  10525. source: "./media/characters/zevulfius/side.svg",
  10526. extra: 939 / 900
  10527. }
  10528. },
  10529. back: {
  10530. height: math.unit(6, "feet"),
  10531. weight: math.unit(120, "kg"),
  10532. name: "Back",
  10533. image: {
  10534. source: "./media/characters/zevulfius/back.svg",
  10535. extra: 918 / 854,
  10536. bottom: 0.005
  10537. }
  10538. },
  10539. foot: {
  10540. height: math.unit(6 / 3.72, "feet"),
  10541. name: "Foot",
  10542. image: {
  10543. source: "./media/characters/zevulfius/foot.svg"
  10544. }
  10545. },
  10546. },
  10547. [
  10548. {
  10549. name: "Macro",
  10550. height: math.unit(750, "meters")
  10551. },
  10552. {
  10553. name: "Megamacro",
  10554. height: math.unit(20, "km"),
  10555. default: true
  10556. },
  10557. {
  10558. name: "Gigamacro",
  10559. height: math.unit(2000, "km")
  10560. },
  10561. {
  10562. name: "Teramacro",
  10563. height: math.unit(250000, "km")
  10564. },
  10565. ]
  10566. ))
  10567. characterMakers.push(() => makeCharacter(
  10568. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10569. {
  10570. front: {
  10571. height: math.unit(100, "feet"),
  10572. weight: math.unit(350, "kg"),
  10573. name: "Front",
  10574. image: {
  10575. source: "./media/characters/rikes/front.svg",
  10576. extra: 1565 / 1483,
  10577. bottom: 0.017
  10578. }
  10579. },
  10580. },
  10581. [
  10582. {
  10583. name: "Macro",
  10584. height: math.unit(100, "feet"),
  10585. default: true
  10586. },
  10587. ]
  10588. ))
  10589. characterMakers.push(() => makeCharacter(
  10590. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10591. {
  10592. front: {
  10593. height: math.unit(8, "feet"),
  10594. weight: math.unit(356, "lb"),
  10595. name: "Front",
  10596. image: {
  10597. source: "./media/characters/adam-silver-mane/front.svg",
  10598. extra: 1036/937,
  10599. bottom: 63/1099
  10600. }
  10601. },
  10602. side: {
  10603. height: math.unit(8, "feet"),
  10604. weight: math.unit(356, "lb"),
  10605. name: "Side",
  10606. image: {
  10607. source: "./media/characters/adam-silver-mane/side.svg",
  10608. extra: 997/901,
  10609. bottom: 59/1056
  10610. }
  10611. },
  10612. frontNsfw: {
  10613. height: math.unit(8, "feet"),
  10614. weight: math.unit(356, "lb"),
  10615. name: "Front (NSFW)",
  10616. image: {
  10617. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10618. extra: 1036/937,
  10619. bottom: 63/1099
  10620. }
  10621. },
  10622. sideNsfw: {
  10623. height: math.unit(8, "feet"),
  10624. weight: math.unit(356, "lb"),
  10625. name: "Side (NSFW)",
  10626. image: {
  10627. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10628. extra: 997/901,
  10629. bottom: 59/1056
  10630. }
  10631. },
  10632. dick: {
  10633. height: math.unit(2.1, "feet"),
  10634. name: "Dick",
  10635. image: {
  10636. source: "./media/characters/adam-silver-mane/dick.svg"
  10637. }
  10638. },
  10639. taur: {
  10640. height: math.unit(16, "feet"),
  10641. weight: math.unit(1500, "kg"),
  10642. name: "Taur",
  10643. image: {
  10644. source: "./media/characters/adam-silver-mane/taur.svg",
  10645. extra: 1713 / 1571,
  10646. bottom: 0.01
  10647. }
  10648. },
  10649. },
  10650. [
  10651. {
  10652. name: "Normal",
  10653. height: math.unit(8, "feet")
  10654. },
  10655. {
  10656. name: "Minimacro",
  10657. height: math.unit(80, "feet")
  10658. },
  10659. {
  10660. name: "MDA",
  10661. height: math.unit(80, "meters")
  10662. },
  10663. {
  10664. name: "Macro",
  10665. height: math.unit(800, "feet"),
  10666. default: true
  10667. },
  10668. {
  10669. name: "Megamacro",
  10670. height: math.unit(8000, "feet")
  10671. },
  10672. {
  10673. name: "Gigamacro",
  10674. height: math.unit(800, "miles")
  10675. },
  10676. {
  10677. name: "Teramacro",
  10678. height: math.unit(80000, "miles")
  10679. },
  10680. {
  10681. name: "Celestial",
  10682. height: math.unit(8e6, "miles")
  10683. },
  10684. {
  10685. name: "Star Dragon",
  10686. height: math.unit(800000, "parsecs")
  10687. },
  10688. {
  10689. name: "Godly",
  10690. height: math.unit(800, "teraparsecs")
  10691. },
  10692. ]
  10693. ))
  10694. characterMakers.push(() => makeCharacter(
  10695. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10696. {
  10697. front: {
  10698. height: math.unit(6, "feet"),
  10699. weight: math.unit(150, "lb"),
  10700. name: "Front",
  10701. image: {
  10702. source: "./media/characters/ky'owin/front.svg",
  10703. extra: 3888 / 3068,
  10704. bottom: 0.015
  10705. }
  10706. },
  10707. },
  10708. [
  10709. {
  10710. name: "Normal",
  10711. height: math.unit(6 + 8 / 12, "feet")
  10712. },
  10713. {
  10714. name: "Large",
  10715. height: math.unit(68, "feet")
  10716. },
  10717. {
  10718. name: "Macro",
  10719. height: math.unit(132, "feet")
  10720. },
  10721. {
  10722. name: "Macro+",
  10723. height: math.unit(340, "feet")
  10724. },
  10725. {
  10726. name: "Macro++",
  10727. height: math.unit(680, "feet"),
  10728. default: true
  10729. },
  10730. {
  10731. name: "Megamacro",
  10732. height: math.unit(1, "mile")
  10733. },
  10734. {
  10735. name: "Megamacro+",
  10736. height: math.unit(10, "miles")
  10737. },
  10738. ]
  10739. ))
  10740. characterMakers.push(() => makeCharacter(
  10741. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10742. {
  10743. front: {
  10744. height: math.unit(4, "feet"),
  10745. weight: math.unit(50, "lb"),
  10746. name: "Front",
  10747. image: {
  10748. source: "./media/characters/mal/front.svg",
  10749. extra: 785 / 724,
  10750. bottom: 0.07
  10751. }
  10752. },
  10753. },
  10754. [
  10755. {
  10756. name: "Micro",
  10757. height: math.unit(4, "inches")
  10758. },
  10759. {
  10760. name: "Normal",
  10761. height: math.unit(4, "feet"),
  10762. default: true
  10763. },
  10764. {
  10765. name: "Macro",
  10766. height: math.unit(200, "feet")
  10767. },
  10768. ]
  10769. ))
  10770. characterMakers.push(() => makeCharacter(
  10771. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10772. {
  10773. front: {
  10774. height: math.unit(6, "feet"),
  10775. weight: math.unit(150, "lb"),
  10776. name: "Front",
  10777. image: {
  10778. source: "./media/characters/jordan-deware/front.svg",
  10779. extra: 1191 / 1012
  10780. }
  10781. },
  10782. },
  10783. [
  10784. {
  10785. name: "Nano",
  10786. height: math.unit(0.01, "mm")
  10787. },
  10788. {
  10789. name: "Minimicro",
  10790. height: math.unit(1, "mm")
  10791. },
  10792. {
  10793. name: "Micro",
  10794. height: math.unit(0.5, "inches")
  10795. },
  10796. {
  10797. name: "Normal",
  10798. height: math.unit(4, "feet"),
  10799. default: true
  10800. },
  10801. {
  10802. name: "Minimacro",
  10803. height: math.unit(40, "meters")
  10804. },
  10805. {
  10806. name: "Small Macro",
  10807. height: math.unit(400, "meters")
  10808. },
  10809. {
  10810. name: "Macro",
  10811. height: math.unit(4, "miles")
  10812. },
  10813. {
  10814. name: "Megamacro",
  10815. height: math.unit(40, "miles")
  10816. },
  10817. {
  10818. name: "Megamacro+",
  10819. height: math.unit(400, "miles")
  10820. },
  10821. {
  10822. name: "Gigamacro",
  10823. height: math.unit(400000, "miles")
  10824. },
  10825. ]
  10826. ))
  10827. characterMakers.push(() => makeCharacter(
  10828. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10829. {
  10830. side: {
  10831. height: math.unit(6, "feet"),
  10832. weight: math.unit(150, "lb"),
  10833. name: "Side",
  10834. image: {
  10835. source: "./media/characters/kimiko/side.svg",
  10836. extra: 600 / 358
  10837. }
  10838. },
  10839. },
  10840. [
  10841. {
  10842. name: "Normal",
  10843. height: math.unit(15, "feet"),
  10844. default: true
  10845. },
  10846. {
  10847. name: "Macro",
  10848. height: math.unit(220, "feet")
  10849. },
  10850. {
  10851. name: "Macro+",
  10852. height: math.unit(1450, "feet")
  10853. },
  10854. {
  10855. name: "Megamacro",
  10856. height: math.unit(11500, "feet")
  10857. },
  10858. {
  10859. name: "Gigamacro",
  10860. height: math.unit(9500, "miles")
  10861. },
  10862. {
  10863. name: "Teramacro",
  10864. height: math.unit(2208005005, "miles")
  10865. },
  10866. {
  10867. name: "Examacro",
  10868. height: math.unit(2750, "parsecs")
  10869. },
  10870. {
  10871. name: "Zettamacro",
  10872. height: math.unit(101500, "parsecs")
  10873. },
  10874. ]
  10875. ))
  10876. characterMakers.push(() => makeCharacter(
  10877. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10878. {
  10879. front: {
  10880. height: math.unit(6, "feet"),
  10881. weight: math.unit(70, "kg"),
  10882. name: "Front",
  10883. image: {
  10884. source: "./media/characters/andrew-sleepy/front.svg"
  10885. }
  10886. },
  10887. side: {
  10888. height: math.unit(6, "feet"),
  10889. weight: math.unit(70, "kg"),
  10890. name: "Side",
  10891. image: {
  10892. source: "./media/characters/andrew-sleepy/side.svg"
  10893. }
  10894. },
  10895. },
  10896. [
  10897. {
  10898. name: "Micro",
  10899. height: math.unit(1, "mm"),
  10900. default: true
  10901. },
  10902. ]
  10903. ))
  10904. characterMakers.push(() => makeCharacter(
  10905. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10906. {
  10907. front: {
  10908. height: math.unit(6, "feet"),
  10909. weight: math.unit(150, "lb"),
  10910. name: "Front",
  10911. image: {
  10912. source: "./media/characters/judio/front.svg",
  10913. extra: 1258 / 1110
  10914. }
  10915. },
  10916. },
  10917. [
  10918. {
  10919. name: "Normal",
  10920. height: math.unit(5 + 6 / 12, "feet")
  10921. },
  10922. {
  10923. name: "Macro",
  10924. height: math.unit(1000, "feet"),
  10925. default: true
  10926. },
  10927. {
  10928. name: "Megamacro",
  10929. height: math.unit(10, "miles")
  10930. },
  10931. ]
  10932. ))
  10933. characterMakers.push(() => makeCharacter(
  10934. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10935. {
  10936. front: {
  10937. height: math.unit(6, "feet"),
  10938. weight: math.unit(68, "kg"),
  10939. name: "Front",
  10940. image: {
  10941. source: "./media/characters/nomaxice/front.svg",
  10942. extra: 1498 / 1073,
  10943. bottom: 0.075
  10944. }
  10945. },
  10946. foot: {
  10947. height: math.unit(1.1, "feet"),
  10948. name: "Foot",
  10949. image: {
  10950. source: "./media/characters/nomaxice/foot.svg"
  10951. }
  10952. },
  10953. },
  10954. [
  10955. {
  10956. name: "Micro",
  10957. height: math.unit(8, "cm")
  10958. },
  10959. {
  10960. name: "Norm",
  10961. height: math.unit(1.82, "m")
  10962. },
  10963. {
  10964. name: "Norm+",
  10965. height: math.unit(8.8, "feet")
  10966. },
  10967. {
  10968. name: "Big",
  10969. height: math.unit(8, "meters"),
  10970. default: true
  10971. },
  10972. {
  10973. name: "Macro",
  10974. height: math.unit(18, "meters")
  10975. },
  10976. {
  10977. name: "Macro+",
  10978. height: math.unit(88, "meters")
  10979. },
  10980. ]
  10981. ))
  10982. characterMakers.push(() => makeCharacter(
  10983. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10984. {
  10985. front: {
  10986. height: math.unit(12, "feet"),
  10987. weight: math.unit(1.5, "tons"),
  10988. name: "Front",
  10989. image: {
  10990. source: "./media/characters/dydros/front.svg",
  10991. extra: 863 / 800,
  10992. bottom: 0.015
  10993. }
  10994. },
  10995. back: {
  10996. height: math.unit(12, "feet"),
  10997. weight: math.unit(1.5, "tons"),
  10998. name: "Back",
  10999. image: {
  11000. source: "./media/characters/dydros/back.svg",
  11001. extra: 900 / 843,
  11002. bottom: 0.005
  11003. }
  11004. },
  11005. },
  11006. [
  11007. {
  11008. name: "Normal",
  11009. height: math.unit(12, "feet"),
  11010. default: true
  11011. },
  11012. ]
  11013. ))
  11014. characterMakers.push(() => makeCharacter(
  11015. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11016. {
  11017. front: {
  11018. height: math.unit(6, "feet"),
  11019. weight: math.unit(100, "kg"),
  11020. name: "Front",
  11021. image: {
  11022. source: "./media/characters/riggi/front.svg",
  11023. extra: 5787 / 5303
  11024. }
  11025. },
  11026. hyper: {
  11027. height: math.unit(6 * 5 / 3, "feet"),
  11028. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11029. name: "Hyper",
  11030. image: {
  11031. source: "./media/characters/riggi/hyper.svg",
  11032. extra: 3595 / 3485
  11033. }
  11034. },
  11035. },
  11036. [
  11037. {
  11038. name: "Small Macro",
  11039. height: math.unit(50, "feet")
  11040. },
  11041. {
  11042. name: "Default",
  11043. height: math.unit(200, "feet"),
  11044. default: true
  11045. },
  11046. {
  11047. name: "Loom",
  11048. height: math.unit(10000, "feet")
  11049. },
  11050. {
  11051. name: "Cruising Altitude",
  11052. height: math.unit(30000, "feet")
  11053. },
  11054. {
  11055. name: "Megamacro",
  11056. height: math.unit(100, "miles")
  11057. },
  11058. {
  11059. name: "Continent Sized",
  11060. height: math.unit(2800, "miles")
  11061. },
  11062. {
  11063. name: "Earth Sized",
  11064. height: math.unit(8000, "miles")
  11065. },
  11066. ]
  11067. ))
  11068. characterMakers.push(() => makeCharacter(
  11069. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11070. {
  11071. front: {
  11072. height: math.unit(6, "feet"),
  11073. weight: math.unit(250, "lb"),
  11074. name: "Front",
  11075. image: {
  11076. source: "./media/characters/alexi/front.svg",
  11077. extra: 3483 / 3291,
  11078. bottom: 0.04
  11079. }
  11080. },
  11081. back: {
  11082. height: math.unit(6, "feet"),
  11083. weight: math.unit(250, "lb"),
  11084. name: "Back",
  11085. image: {
  11086. source: "./media/characters/alexi/back.svg",
  11087. extra: 3533 / 3356,
  11088. bottom: 0.021
  11089. }
  11090. },
  11091. frontTransforming: {
  11092. height: math.unit(8.58, "feet"),
  11093. weight: math.unit(1300, "lb"),
  11094. name: "Transforming",
  11095. image: {
  11096. source: "./media/characters/alexi/front-transforming.svg",
  11097. extra: 437 / 409,
  11098. bottom: 19 / 458.66
  11099. }
  11100. },
  11101. frontTransformed: {
  11102. height: math.unit(12.5, "feet"),
  11103. weight: math.unit(4000, "lb"),
  11104. name: "Transformed",
  11105. image: {
  11106. source: "./media/characters/alexi/front-transformed.svg",
  11107. extra: 639 / 614,
  11108. bottom: 30.55 / 671
  11109. }
  11110. },
  11111. },
  11112. [
  11113. {
  11114. name: "Normal",
  11115. height: math.unit(14, "feet"),
  11116. default: true
  11117. },
  11118. {
  11119. name: "Minimacro",
  11120. height: math.unit(30, "meters")
  11121. },
  11122. {
  11123. name: "Macro",
  11124. height: math.unit(500, "meters")
  11125. },
  11126. {
  11127. name: "Megamacro",
  11128. height: math.unit(9000, "km")
  11129. },
  11130. {
  11131. name: "Teramacro",
  11132. height: math.unit(384000, "km")
  11133. },
  11134. ]
  11135. ))
  11136. characterMakers.push(() => makeCharacter(
  11137. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11138. {
  11139. front: {
  11140. height: math.unit(6, "feet"),
  11141. weight: math.unit(150, "lb"),
  11142. name: "Front",
  11143. image: {
  11144. source: "./media/characters/kayroo/front.svg",
  11145. extra: 1153 / 1038,
  11146. bottom: 0.06
  11147. }
  11148. },
  11149. foot: {
  11150. height: math.unit(6, "feet"),
  11151. weight: math.unit(150, "lb"),
  11152. name: "Foot",
  11153. image: {
  11154. source: "./media/characters/kayroo/foot.svg"
  11155. }
  11156. },
  11157. },
  11158. [
  11159. {
  11160. name: "Normal",
  11161. height: math.unit(8, "feet"),
  11162. default: true
  11163. },
  11164. {
  11165. name: "Minimacro",
  11166. height: math.unit(250, "feet")
  11167. },
  11168. {
  11169. name: "Macro",
  11170. height: math.unit(2800, "feet")
  11171. },
  11172. {
  11173. name: "Megamacro",
  11174. height: math.unit(5200, "feet")
  11175. },
  11176. {
  11177. name: "Gigamacro",
  11178. height: math.unit(27000, "feet")
  11179. },
  11180. {
  11181. name: "Omega",
  11182. height: math.unit(45000, "feet")
  11183. },
  11184. ]
  11185. ))
  11186. characterMakers.push(() => makeCharacter(
  11187. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11188. {
  11189. front: {
  11190. height: math.unit(18, "feet"),
  11191. weight: math.unit(5800, "lb"),
  11192. name: "Front",
  11193. image: {
  11194. source: "./media/characters/rhys/front.svg",
  11195. extra: 3386 / 3090,
  11196. bottom: 0.07
  11197. }
  11198. },
  11199. },
  11200. [
  11201. {
  11202. name: "Normal",
  11203. height: math.unit(18, "feet"),
  11204. default: true
  11205. },
  11206. {
  11207. name: "Working Size",
  11208. height: math.unit(200, "feet")
  11209. },
  11210. {
  11211. name: "Demolition Size",
  11212. height: math.unit(2000, "feet")
  11213. },
  11214. {
  11215. name: "Maximum Licensed Size",
  11216. height: math.unit(5, "miles")
  11217. },
  11218. {
  11219. name: "Maximum Observed Size",
  11220. height: math.unit(10, "yottameters")
  11221. },
  11222. ]
  11223. ))
  11224. characterMakers.push(() => makeCharacter(
  11225. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11226. {
  11227. front: {
  11228. height: math.unit(6, "feet"),
  11229. weight: math.unit(250, "lb"),
  11230. name: "Front",
  11231. image: {
  11232. source: "./media/characters/toto/front.svg",
  11233. extra: 527 / 479,
  11234. bottom: 0.05
  11235. }
  11236. },
  11237. },
  11238. [
  11239. {
  11240. name: "Micro",
  11241. height: math.unit(3, "feet")
  11242. },
  11243. {
  11244. name: "Normal",
  11245. height: math.unit(10, "feet")
  11246. },
  11247. {
  11248. name: "Macro",
  11249. height: math.unit(150, "feet"),
  11250. default: true
  11251. },
  11252. {
  11253. name: "Megamacro",
  11254. height: math.unit(1200, "feet")
  11255. },
  11256. ]
  11257. ))
  11258. characterMakers.push(() => makeCharacter(
  11259. { name: "King", species: ["lion"], tags: ["anthro"] },
  11260. {
  11261. back: {
  11262. height: math.unit(6, "feet"),
  11263. weight: math.unit(150, "lb"),
  11264. name: "Back",
  11265. image: {
  11266. source: "./media/characters/king/back.svg"
  11267. }
  11268. },
  11269. },
  11270. [
  11271. {
  11272. name: "Micro",
  11273. height: math.unit(2, "inches")
  11274. },
  11275. {
  11276. name: "Normal",
  11277. height: math.unit(8, "feet")
  11278. },
  11279. {
  11280. name: "Macro",
  11281. height: math.unit(200, "feet"),
  11282. default: true
  11283. },
  11284. {
  11285. name: "Megamacro",
  11286. height: math.unit(50, "miles")
  11287. },
  11288. ]
  11289. ))
  11290. characterMakers.push(() => makeCharacter(
  11291. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11292. {
  11293. front: {
  11294. height: math.unit(11, "feet"),
  11295. weight: math.unit(1400, "lb"),
  11296. name: "Front",
  11297. image: {
  11298. source: "./media/characters/cordite/front.svg",
  11299. extra: 1919/1827,
  11300. bottom: 40/1959
  11301. }
  11302. },
  11303. side: {
  11304. height: math.unit(11, "feet"),
  11305. weight: math.unit(1400, "lb"),
  11306. name: "Side",
  11307. image: {
  11308. source: "./media/characters/cordite/side.svg",
  11309. extra: 1908/1793,
  11310. bottom: 38/1946
  11311. }
  11312. },
  11313. back: {
  11314. height: math.unit(11, "feet"),
  11315. weight: math.unit(1400, "lb"),
  11316. name: "Back",
  11317. image: {
  11318. source: "./media/characters/cordite/back.svg",
  11319. extra: 1938/1837,
  11320. bottom: 10/1948
  11321. }
  11322. },
  11323. feral: {
  11324. height: math.unit(2, "feet"),
  11325. weight: math.unit(90, "lb"),
  11326. name: "Feral",
  11327. image: {
  11328. source: "./media/characters/cordite/feral.svg",
  11329. extra: 1260 / 755,
  11330. bottom: 0.05
  11331. }
  11332. },
  11333. },
  11334. [
  11335. {
  11336. name: "Normal",
  11337. height: math.unit(11, "feet"),
  11338. default: true
  11339. },
  11340. ]
  11341. ))
  11342. characterMakers.push(() => makeCharacter(
  11343. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11344. {
  11345. front: {
  11346. height: math.unit(6, "feet"),
  11347. weight: math.unit(150, "lb"),
  11348. name: "Front",
  11349. image: {
  11350. source: "./media/characters/pianostrong/front.svg",
  11351. extra: 6577 / 6254,
  11352. bottom: 0.02
  11353. }
  11354. },
  11355. side: {
  11356. height: math.unit(6, "feet"),
  11357. weight: math.unit(150, "lb"),
  11358. name: "Side",
  11359. image: {
  11360. source: "./media/characters/pianostrong/side.svg",
  11361. extra: 6106 / 5730
  11362. }
  11363. },
  11364. back: {
  11365. height: math.unit(6, "feet"),
  11366. weight: math.unit(150, "lb"),
  11367. name: "Back",
  11368. image: {
  11369. source: "./media/characters/pianostrong/back.svg",
  11370. extra: 6085 / 5733,
  11371. bottom: 0.01
  11372. }
  11373. },
  11374. },
  11375. [
  11376. {
  11377. name: "Macro",
  11378. height: math.unit(100, "feet")
  11379. },
  11380. {
  11381. name: "Macro+",
  11382. height: math.unit(300, "feet"),
  11383. default: true
  11384. },
  11385. {
  11386. name: "Macro++",
  11387. height: math.unit(1000, "feet")
  11388. },
  11389. ]
  11390. ))
  11391. characterMakers.push(() => makeCharacter(
  11392. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11393. {
  11394. front: {
  11395. height: math.unit(6, "feet"),
  11396. weight: math.unit(150, "lb"),
  11397. name: "Front",
  11398. image: {
  11399. source: "./media/characters/kona/front.svg",
  11400. extra: 2960 / 2629,
  11401. bottom: 0.005
  11402. }
  11403. },
  11404. },
  11405. [
  11406. {
  11407. name: "Normal",
  11408. height: math.unit(11 + 8 / 12, "feet")
  11409. },
  11410. {
  11411. name: "Macro",
  11412. height: math.unit(850, "feet"),
  11413. default: true
  11414. },
  11415. {
  11416. name: "Macro+",
  11417. height: math.unit(1.5, "km"),
  11418. default: true
  11419. },
  11420. {
  11421. name: "Megamacro",
  11422. height: math.unit(80, "miles")
  11423. },
  11424. {
  11425. name: "Gigamacro",
  11426. height: math.unit(3500, "miles")
  11427. },
  11428. ]
  11429. ))
  11430. characterMakers.push(() => makeCharacter(
  11431. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11432. {
  11433. side: {
  11434. height: math.unit(1.9, "meters"),
  11435. weight: math.unit(326, "kg"),
  11436. name: "Side",
  11437. image: {
  11438. source: "./media/characters/levi/side.svg",
  11439. extra: 1704 / 1334,
  11440. bottom: 0.02
  11441. }
  11442. },
  11443. },
  11444. [
  11445. {
  11446. name: "Normal",
  11447. height: math.unit(1.9, "meters"),
  11448. default: true
  11449. },
  11450. {
  11451. name: "Macro",
  11452. height: math.unit(20, "meters")
  11453. },
  11454. {
  11455. name: "Macro+",
  11456. height: math.unit(200, "meters")
  11457. },
  11458. {
  11459. name: "Megamacro",
  11460. height: math.unit(2, "km")
  11461. },
  11462. {
  11463. name: "Megamacro+",
  11464. height: math.unit(20, "km")
  11465. },
  11466. {
  11467. name: "Gigamacro",
  11468. height: math.unit(2500, "km")
  11469. },
  11470. {
  11471. name: "Gigamacro+",
  11472. height: math.unit(120000, "km")
  11473. },
  11474. {
  11475. name: "Teramacro",
  11476. height: math.unit(7.77e6, "km")
  11477. },
  11478. ]
  11479. ))
  11480. characterMakers.push(() => makeCharacter(
  11481. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11482. {
  11483. front: {
  11484. height: math.unit(6 + 4/12, "feet"),
  11485. weight: math.unit(190, "lb"),
  11486. name: "Front",
  11487. image: {
  11488. source: "./media/characters/bmc/front.svg",
  11489. extra: 1626/1472,
  11490. bottom: 79/1705
  11491. }
  11492. },
  11493. back: {
  11494. height: math.unit(6 + 4/12, "feet"),
  11495. weight: math.unit(190, "lb"),
  11496. name: "Back",
  11497. image: {
  11498. source: "./media/characters/bmc/back.svg",
  11499. extra: 1640/1479,
  11500. bottom: 45/1685
  11501. }
  11502. },
  11503. frontArmor: {
  11504. height: math.unit(6 + 4/12, "feet"),
  11505. weight: math.unit(190, "lb"),
  11506. name: "Front-armor",
  11507. image: {
  11508. source: "./media/characters/bmc/front-armor.svg",
  11509. extra: 1538/1468,
  11510. bottom: 79/1617
  11511. }
  11512. },
  11513. },
  11514. [
  11515. {
  11516. name: "Human-sized",
  11517. height: math.unit(6 + 4 / 12, "feet")
  11518. },
  11519. {
  11520. name: "Interactive Size",
  11521. height: math.unit(25, "feet")
  11522. },
  11523. {
  11524. name: "Small",
  11525. height: math.unit(250, "feet")
  11526. },
  11527. {
  11528. name: "Normal",
  11529. height: math.unit(1250, "feet"),
  11530. default: true
  11531. },
  11532. {
  11533. name: "Good Day",
  11534. height: math.unit(88, "miles")
  11535. },
  11536. {
  11537. name: "Largest Measured Size",
  11538. height: math.unit(105.960, "galaxies")
  11539. },
  11540. ]
  11541. ))
  11542. characterMakers.push(() => makeCharacter(
  11543. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11544. {
  11545. front: {
  11546. height: math.unit(20, "feet"),
  11547. weight: math.unit(2016, "kg"),
  11548. name: "Front",
  11549. image: {
  11550. source: "./media/characters/sven-the-kaiju/front.svg",
  11551. extra: 1277/1250,
  11552. bottom: 35/1312
  11553. }
  11554. },
  11555. mouth: {
  11556. height: math.unit(1.85, "feet"),
  11557. name: "Mouth",
  11558. image: {
  11559. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11560. }
  11561. },
  11562. },
  11563. [
  11564. {
  11565. name: "Fairy",
  11566. height: math.unit(6, "inches")
  11567. },
  11568. {
  11569. name: "Normal",
  11570. height: math.unit(20, "feet"),
  11571. default: true
  11572. },
  11573. {
  11574. name: "Rampage",
  11575. height: math.unit(200, "feet")
  11576. },
  11577. {
  11578. name: "Archfey Forest Guardian",
  11579. height: math.unit(1, "mile")
  11580. },
  11581. ]
  11582. ))
  11583. characterMakers.push(() => makeCharacter(
  11584. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11585. {
  11586. front: {
  11587. height: math.unit(4, "meters"),
  11588. weight: math.unit(2, "tons"),
  11589. name: "Front",
  11590. image: {
  11591. source: "./media/characters/marik/front.svg",
  11592. extra: 1057 / 1003,
  11593. bottom: 0.08
  11594. }
  11595. },
  11596. },
  11597. [
  11598. {
  11599. name: "Normal",
  11600. height: math.unit(4, "meters"),
  11601. default: true
  11602. },
  11603. {
  11604. name: "Macro",
  11605. height: math.unit(20, "meters")
  11606. },
  11607. {
  11608. name: "Megamacro",
  11609. height: math.unit(50, "km")
  11610. },
  11611. {
  11612. name: "Gigamacro",
  11613. height: math.unit(100, "km")
  11614. },
  11615. {
  11616. name: "Alpha Macro",
  11617. height: math.unit(7.88e7, "yottameters")
  11618. },
  11619. ]
  11620. ))
  11621. characterMakers.push(() => makeCharacter(
  11622. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11623. {
  11624. front: {
  11625. height: math.unit(6, "feet"),
  11626. weight: math.unit(110, "lb"),
  11627. name: "Front",
  11628. image: {
  11629. source: "./media/characters/mel/front.svg",
  11630. extra: 736 / 617,
  11631. bottom: 0.017
  11632. }
  11633. },
  11634. },
  11635. [
  11636. {
  11637. name: "Pico",
  11638. height: math.unit(3, "pm")
  11639. },
  11640. {
  11641. name: "Nano",
  11642. height: math.unit(3, "nm")
  11643. },
  11644. {
  11645. name: "Micro",
  11646. height: math.unit(0.3, "mm"),
  11647. default: true
  11648. },
  11649. {
  11650. name: "Micro+",
  11651. height: math.unit(3, "mm")
  11652. },
  11653. {
  11654. name: "Normal",
  11655. height: math.unit(5 + 10.5 / 12, "feet")
  11656. },
  11657. ]
  11658. ))
  11659. characterMakers.push(() => makeCharacter(
  11660. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11661. {
  11662. kaiju: {
  11663. height: math.unit(1.75, "meters"),
  11664. weight: math.unit(55, "kg"),
  11665. name: "Kaiju",
  11666. image: {
  11667. source: "./media/characters/lykonous/kaiju.svg",
  11668. extra: 1055 / 946,
  11669. bottom: 0.135
  11670. }
  11671. },
  11672. },
  11673. [
  11674. {
  11675. name: "Normal",
  11676. height: math.unit(2.5, "meters"),
  11677. default: true
  11678. },
  11679. {
  11680. name: "Kaiju Dragon",
  11681. height: math.unit(60, "meters")
  11682. },
  11683. {
  11684. name: "Mega Kaiju",
  11685. height: math.unit(120, "km")
  11686. },
  11687. {
  11688. name: "Giga Kaiju",
  11689. height: math.unit(200, "megameters")
  11690. },
  11691. {
  11692. name: "Terra Kaiju",
  11693. height: math.unit(400, "gigameters")
  11694. },
  11695. {
  11696. name: "Kaiju Dragon God",
  11697. height: math.unit(13000, "exaparsecs")
  11698. },
  11699. ]
  11700. ))
  11701. characterMakers.push(() => makeCharacter(
  11702. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11703. {
  11704. front: {
  11705. height: math.unit(6, "feet"),
  11706. weight: math.unit(150, "lb"),
  11707. name: "Front",
  11708. image: {
  11709. source: "./media/characters/blü/front.svg",
  11710. extra: 1883 / 1564,
  11711. bottom: 0.031
  11712. }
  11713. },
  11714. },
  11715. [
  11716. {
  11717. name: "Normal",
  11718. height: math.unit(13, "feet"),
  11719. default: true
  11720. },
  11721. {
  11722. name: "Big Boi",
  11723. height: math.unit(150, "meters")
  11724. },
  11725. {
  11726. name: "Mini Stomper",
  11727. height: math.unit(300, "meters")
  11728. },
  11729. {
  11730. name: "Macro",
  11731. height: math.unit(1000, "meters")
  11732. },
  11733. {
  11734. name: "Megamacro",
  11735. height: math.unit(11000, "meters")
  11736. },
  11737. {
  11738. name: "Gigamacro",
  11739. height: math.unit(11000, "km")
  11740. },
  11741. {
  11742. name: "Teramacro",
  11743. height: math.unit(420000, "km")
  11744. },
  11745. {
  11746. name: "Examacro",
  11747. height: math.unit(120, "parsecs")
  11748. },
  11749. {
  11750. name: "God Tho",
  11751. height: math.unit(98000000000, "parsecs")
  11752. },
  11753. ]
  11754. ))
  11755. characterMakers.push(() => makeCharacter(
  11756. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11757. {
  11758. taurFront: {
  11759. height: math.unit(6, "feet"),
  11760. weight: math.unit(200, "lb"),
  11761. name: "Taur (Front)",
  11762. image: {
  11763. source: "./media/characters/scales/taur-front.svg",
  11764. extra: 1,
  11765. bottom: 0.05
  11766. }
  11767. },
  11768. taurBack: {
  11769. height: math.unit(6, "feet"),
  11770. weight: math.unit(200, "lb"),
  11771. name: "Taur (Back)",
  11772. image: {
  11773. source: "./media/characters/scales/taur-back.svg",
  11774. extra: 1,
  11775. bottom: 0.08
  11776. }
  11777. },
  11778. anthro: {
  11779. height: math.unit(6 * 7 / 12, "feet"),
  11780. weight: math.unit(100, "lb"),
  11781. name: "Anthro",
  11782. image: {
  11783. source: "./media/characters/scales/anthro.svg",
  11784. extra: 1,
  11785. bottom: 0.06
  11786. }
  11787. },
  11788. },
  11789. [
  11790. {
  11791. name: "Normal",
  11792. height: math.unit(12, "feet"),
  11793. default: true
  11794. },
  11795. ]
  11796. ))
  11797. characterMakers.push(() => makeCharacter(
  11798. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11799. {
  11800. front: {
  11801. height: math.unit(6, "feet"),
  11802. weight: math.unit(150, "lb"),
  11803. name: "Front",
  11804. image: {
  11805. source: "./media/characters/koragos/front.svg",
  11806. extra: 841 / 794,
  11807. bottom: 0.035
  11808. }
  11809. },
  11810. back: {
  11811. height: math.unit(6, "feet"),
  11812. weight: math.unit(150, "lb"),
  11813. name: "Back",
  11814. image: {
  11815. source: "./media/characters/koragos/back.svg",
  11816. extra: 841 / 810,
  11817. bottom: 0.022
  11818. }
  11819. },
  11820. },
  11821. [
  11822. {
  11823. name: "Normal",
  11824. height: math.unit(6 + 11 / 12, "feet"),
  11825. default: true
  11826. },
  11827. {
  11828. name: "Macro",
  11829. height: math.unit(490, "feet")
  11830. },
  11831. {
  11832. name: "Megamacro",
  11833. height: math.unit(10, "miles")
  11834. },
  11835. {
  11836. name: "Gigamacro",
  11837. height: math.unit(50, "miles")
  11838. },
  11839. ]
  11840. ))
  11841. characterMakers.push(() => makeCharacter(
  11842. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11843. {
  11844. front: {
  11845. height: math.unit(6, "feet"),
  11846. weight: math.unit(250, "lb"),
  11847. name: "Front",
  11848. image: {
  11849. source: "./media/characters/xylrem/front.svg",
  11850. extra: 3323 / 3050,
  11851. bottom: 0.065
  11852. }
  11853. },
  11854. },
  11855. [
  11856. {
  11857. name: "Micro",
  11858. height: math.unit(4, "feet")
  11859. },
  11860. {
  11861. name: "Normal",
  11862. height: math.unit(16, "feet"),
  11863. default: true
  11864. },
  11865. {
  11866. name: "Macro",
  11867. height: math.unit(2720, "feet")
  11868. },
  11869. {
  11870. name: "Megamacro",
  11871. height: math.unit(25000, "miles")
  11872. },
  11873. ]
  11874. ))
  11875. characterMakers.push(() => makeCharacter(
  11876. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11877. {
  11878. front: {
  11879. height: math.unit(8, "feet"),
  11880. weight: math.unit(250, "kg"),
  11881. name: "Front",
  11882. image: {
  11883. source: "./media/characters/ikideru/front.svg",
  11884. extra: 930 / 870,
  11885. bottom: 0.087
  11886. }
  11887. },
  11888. back: {
  11889. height: math.unit(8, "feet"),
  11890. weight: math.unit(250, "kg"),
  11891. name: "Back",
  11892. image: {
  11893. source: "./media/characters/ikideru/back.svg",
  11894. extra: 919 / 852,
  11895. bottom: 0.055
  11896. }
  11897. },
  11898. },
  11899. [
  11900. {
  11901. name: "Rare",
  11902. height: math.unit(8, "feet"),
  11903. default: true
  11904. },
  11905. {
  11906. name: "Playful Loom",
  11907. height: math.unit(80, "feet")
  11908. },
  11909. {
  11910. name: "City Leaner",
  11911. height: math.unit(230, "feet")
  11912. },
  11913. {
  11914. name: "Megamacro",
  11915. height: math.unit(2500, "feet")
  11916. },
  11917. {
  11918. name: "Gigamacro",
  11919. height: math.unit(26400, "feet")
  11920. },
  11921. {
  11922. name: "Tectonic Shifter",
  11923. height: math.unit(1.7, "megameters")
  11924. },
  11925. {
  11926. name: "Planet Carer",
  11927. height: math.unit(21, "megameters")
  11928. },
  11929. {
  11930. name: "God",
  11931. height: math.unit(11157.22, "parsecs")
  11932. },
  11933. ]
  11934. ))
  11935. characterMakers.push(() => makeCharacter(
  11936. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11937. {
  11938. front: {
  11939. height: math.unit(6, "feet"),
  11940. weight: math.unit(120, "lb"),
  11941. name: "Front",
  11942. image: {
  11943. source: "./media/characters/neo/front.svg"
  11944. }
  11945. },
  11946. },
  11947. [
  11948. {
  11949. name: "Micro",
  11950. height: math.unit(2, "inches"),
  11951. default: true
  11952. },
  11953. {
  11954. name: "Human Size",
  11955. height: math.unit(5 + 8 / 12, "feet")
  11956. },
  11957. ]
  11958. ))
  11959. characterMakers.push(() => makeCharacter(
  11960. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11961. {
  11962. front: {
  11963. height: math.unit(13 + 10 / 12, "feet"),
  11964. weight: math.unit(5320, "lb"),
  11965. name: "Front",
  11966. image: {
  11967. source: "./media/characters/chauncey-chantz/front.svg",
  11968. extra: 1587 / 1435,
  11969. bottom: 0.02
  11970. }
  11971. },
  11972. },
  11973. [
  11974. {
  11975. name: "Normal",
  11976. height: math.unit(13 + 10 / 12, "feet"),
  11977. default: true
  11978. },
  11979. {
  11980. name: "Macro",
  11981. height: math.unit(45, "feet")
  11982. },
  11983. {
  11984. name: "Megamacro",
  11985. height: math.unit(250, "miles")
  11986. },
  11987. {
  11988. name: "Planetary",
  11989. height: math.unit(10000, "miles")
  11990. },
  11991. {
  11992. name: "Galactic",
  11993. height: math.unit(40000, "parsecs")
  11994. },
  11995. {
  11996. name: "Universal",
  11997. height: math.unit(1, "yottameter")
  11998. },
  11999. ]
  12000. ))
  12001. characterMakers.push(() => makeCharacter(
  12002. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12003. {
  12004. front: {
  12005. height: math.unit(6, "feet"),
  12006. weight: math.unit(150, "lb"),
  12007. name: "Front",
  12008. image: {
  12009. source: "./media/characters/epifox/front.svg",
  12010. extra: 1,
  12011. bottom: 0.075
  12012. }
  12013. },
  12014. },
  12015. [
  12016. {
  12017. name: "Micro",
  12018. height: math.unit(6, "inches")
  12019. },
  12020. {
  12021. name: "Normal",
  12022. height: math.unit(12, "feet"),
  12023. default: true
  12024. },
  12025. {
  12026. name: "Macro",
  12027. height: math.unit(3810, "feet")
  12028. },
  12029. {
  12030. name: "Megamacro",
  12031. height: math.unit(500, "miles")
  12032. },
  12033. ]
  12034. ))
  12035. characterMakers.push(() => makeCharacter(
  12036. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12037. {
  12038. front: {
  12039. height: math.unit(1.8796, "m"),
  12040. weight: math.unit(230, "lb"),
  12041. name: "Front",
  12042. image: {
  12043. source: "./media/characters/colin-t/front.svg",
  12044. extra: 1272 / 1193,
  12045. bottom: 0.07
  12046. }
  12047. },
  12048. },
  12049. [
  12050. {
  12051. name: "Micro",
  12052. height: math.unit(0.571, "meters")
  12053. },
  12054. {
  12055. name: "Normal",
  12056. height: math.unit(1.8796, "meters"),
  12057. default: true
  12058. },
  12059. {
  12060. name: "Tall",
  12061. height: math.unit(4, "meters")
  12062. },
  12063. {
  12064. name: "Macro",
  12065. height: math.unit(67.241, "meters")
  12066. },
  12067. {
  12068. name: "Megamacro",
  12069. height: math.unit(371.856, "meters")
  12070. },
  12071. {
  12072. name: "Planetary",
  12073. height: math.unit(12631.5689, "km")
  12074. },
  12075. ]
  12076. ))
  12077. characterMakers.push(() => makeCharacter(
  12078. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12079. {
  12080. front: {
  12081. height: math.unit(1.85, "meters"),
  12082. weight: math.unit(80, "kg"),
  12083. name: "Front",
  12084. image: {
  12085. source: "./media/characters/matvei/front.svg",
  12086. extra: 614 / 594,
  12087. bottom: 0.01
  12088. }
  12089. },
  12090. },
  12091. [
  12092. {
  12093. name: "Normal",
  12094. height: math.unit(1.85, "meters"),
  12095. default: true
  12096. },
  12097. ]
  12098. ))
  12099. characterMakers.push(() => makeCharacter(
  12100. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12101. {
  12102. front: {
  12103. height: math.unit(5 + 9 / 12, "feet"),
  12104. weight: math.unit(70, "lb"),
  12105. name: "Front",
  12106. image: {
  12107. source: "./media/characters/quincy/front.svg",
  12108. extra: 3041 / 2751
  12109. }
  12110. },
  12111. back: {
  12112. height: math.unit(5 + 9 / 12, "feet"),
  12113. weight: math.unit(70, "lb"),
  12114. name: "Back",
  12115. image: {
  12116. source: "./media/characters/quincy/back.svg",
  12117. extra: 3041 / 2751
  12118. }
  12119. },
  12120. flying: {
  12121. height: math.unit(5 + 4 / 12, "feet"),
  12122. weight: math.unit(70, "lb"),
  12123. name: "Flying",
  12124. image: {
  12125. source: "./media/characters/quincy/flying.svg",
  12126. extra: 1044 / 930
  12127. }
  12128. },
  12129. },
  12130. [
  12131. {
  12132. name: "Micro",
  12133. height: math.unit(3, "cm")
  12134. },
  12135. {
  12136. name: "Normal",
  12137. height: math.unit(5 + 9 / 12, "feet")
  12138. },
  12139. {
  12140. name: "Macro",
  12141. height: math.unit(200, "meters"),
  12142. default: true
  12143. },
  12144. {
  12145. name: "Megamacro",
  12146. height: math.unit(1000, "meters")
  12147. },
  12148. ]
  12149. ))
  12150. characterMakers.push(() => makeCharacter(
  12151. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12152. {
  12153. front: {
  12154. height: math.unit(3 + 11/12, "feet"),
  12155. weight: math.unit(50, "lb"),
  12156. name: "Front",
  12157. image: {
  12158. source: "./media/characters/vanrel/front.svg",
  12159. extra: 1104/949,
  12160. bottom: 52/1156
  12161. }
  12162. },
  12163. back: {
  12164. height: math.unit(3 + 11/12, "feet"),
  12165. weight: math.unit(50, "lb"),
  12166. name: "Back",
  12167. image: {
  12168. source: "./media/characters/vanrel/back.svg",
  12169. extra: 1119/976,
  12170. bottom: 37/1156
  12171. }
  12172. },
  12173. tome: {
  12174. height: math.unit(1.35, "feet"),
  12175. weight: math.unit(10, "lb"),
  12176. name: "Vanrel's Tome",
  12177. rename: true,
  12178. image: {
  12179. source: "./media/characters/vanrel/tome.svg"
  12180. }
  12181. },
  12182. beans: {
  12183. height: math.unit(0.89, "feet"),
  12184. name: "Beans",
  12185. image: {
  12186. source: "./media/characters/vanrel/beans.svg"
  12187. }
  12188. },
  12189. },
  12190. [
  12191. {
  12192. name: "Normal",
  12193. height: math.unit(3 + 11/12, "feet"),
  12194. default: true
  12195. },
  12196. ]
  12197. ))
  12198. characterMakers.push(() => makeCharacter(
  12199. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12200. {
  12201. front: {
  12202. height: math.unit(7 + 5 / 12, "feet"),
  12203. name: "Front",
  12204. image: {
  12205. source: "./media/characters/kuiper-vanrel/front.svg",
  12206. extra: 1219/1169,
  12207. bottom: 69/1288
  12208. }
  12209. },
  12210. back: {
  12211. height: math.unit(7 + 5 / 12, "feet"),
  12212. name: "Back",
  12213. image: {
  12214. source: "./media/characters/kuiper-vanrel/back.svg",
  12215. extra: 1236/1193,
  12216. bottom: 27/1263
  12217. }
  12218. },
  12219. foot: {
  12220. height: math.unit(0.55, "meters"),
  12221. name: "Foot",
  12222. image: {
  12223. source: "./media/characters/kuiper-vanrel/foot.svg",
  12224. }
  12225. },
  12226. battle: {
  12227. height: math.unit(6.824, "feet"),
  12228. name: "Battle",
  12229. image: {
  12230. source: "./media/characters/kuiper-vanrel/battle.svg",
  12231. extra: 1466 / 1327,
  12232. bottom: 29 / 1492.5
  12233. }
  12234. },
  12235. meerkui: {
  12236. height: math.unit(18, "inches"),
  12237. name: "Meerkui",
  12238. image: {
  12239. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12240. extra: 1354/1289,
  12241. bottom: 69/1423
  12242. }
  12243. },
  12244. },
  12245. [
  12246. {
  12247. name: "Normal",
  12248. height: math.unit(7 + 5 / 12, "feet"),
  12249. default: true
  12250. },
  12251. ]
  12252. ))
  12253. characterMakers.push(() => makeCharacter(
  12254. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12255. {
  12256. front: {
  12257. height: math.unit(8 + 5 / 12, "feet"),
  12258. name: "Front",
  12259. image: {
  12260. source: "./media/characters/keset-vanrel/front.svg",
  12261. extra: 1231/1148,
  12262. bottom: 82/1313
  12263. }
  12264. },
  12265. back: {
  12266. height: math.unit(8 + 5 / 12, "feet"),
  12267. name: "Back",
  12268. image: {
  12269. source: "./media/characters/keset-vanrel/back.svg",
  12270. extra: 1240/1174,
  12271. bottom: 33/1273
  12272. }
  12273. },
  12274. hand: {
  12275. height: math.unit(0.6, "meters"),
  12276. name: "Hand",
  12277. image: {
  12278. source: "./media/characters/keset-vanrel/hand.svg"
  12279. }
  12280. },
  12281. foot: {
  12282. height: math.unit(0.94978, "meters"),
  12283. name: "Foot",
  12284. image: {
  12285. source: "./media/characters/keset-vanrel/foot.svg"
  12286. }
  12287. },
  12288. battle: {
  12289. height: math.unit(7.408, "feet"),
  12290. name: "Battle",
  12291. image: {
  12292. source: "./media/characters/keset-vanrel/battle.svg",
  12293. extra: 1890 / 1386,
  12294. bottom: 73.28 / 1970
  12295. }
  12296. },
  12297. },
  12298. [
  12299. {
  12300. name: "Normal",
  12301. height: math.unit(8 + 5 / 12, "feet"),
  12302. default: true
  12303. },
  12304. ]
  12305. ))
  12306. characterMakers.push(() => makeCharacter(
  12307. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12308. {
  12309. front: {
  12310. height: math.unit(6, "feet"),
  12311. weight: math.unit(150, "lb"),
  12312. name: "Front",
  12313. image: {
  12314. source: "./media/characters/neos/front.svg",
  12315. extra: 1696 / 992,
  12316. bottom: 0.14
  12317. }
  12318. },
  12319. },
  12320. [
  12321. {
  12322. name: "Normal",
  12323. height: math.unit(54, "cm"),
  12324. default: true
  12325. },
  12326. {
  12327. name: "Macro",
  12328. height: math.unit(100, "m")
  12329. },
  12330. {
  12331. name: "Megamacro",
  12332. height: math.unit(10, "km")
  12333. },
  12334. {
  12335. name: "Megamacro+",
  12336. height: math.unit(100, "km")
  12337. },
  12338. {
  12339. name: "Gigamacro",
  12340. height: math.unit(100, "Mm")
  12341. },
  12342. {
  12343. name: "Teramacro",
  12344. height: math.unit(100, "Gm")
  12345. },
  12346. {
  12347. name: "Examacro",
  12348. height: math.unit(100, "Em")
  12349. },
  12350. {
  12351. name: "Godly",
  12352. height: math.unit(10000, "Ym")
  12353. },
  12354. {
  12355. name: "Beyond Godly",
  12356. height: math.unit(25, "multiverses")
  12357. },
  12358. ]
  12359. ))
  12360. characterMakers.push(() => makeCharacter(
  12361. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12362. {
  12363. feminine: {
  12364. height: math.unit(5, "feet"),
  12365. weight: math.unit(100, "lb"),
  12366. name: "Feminine",
  12367. image: {
  12368. source: "./media/characters/sammy-mouse/feminine.svg",
  12369. extra: 2526 / 2425,
  12370. bottom: 0.123
  12371. }
  12372. },
  12373. masculine: {
  12374. height: math.unit(5, "feet"),
  12375. weight: math.unit(100, "lb"),
  12376. name: "Masculine",
  12377. image: {
  12378. source: "./media/characters/sammy-mouse/masculine.svg",
  12379. extra: 2526 / 2425,
  12380. bottom: 0.123
  12381. }
  12382. },
  12383. },
  12384. [
  12385. {
  12386. name: "Micro",
  12387. height: math.unit(5, "inches")
  12388. },
  12389. {
  12390. name: "Normal",
  12391. height: math.unit(5, "feet"),
  12392. default: true
  12393. },
  12394. {
  12395. name: "Macro",
  12396. height: math.unit(60, "feet")
  12397. },
  12398. ]
  12399. ))
  12400. characterMakers.push(() => makeCharacter(
  12401. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12402. {
  12403. front: {
  12404. height: math.unit(4, "feet"),
  12405. weight: math.unit(50, "lb"),
  12406. name: "Front",
  12407. image: {
  12408. source: "./media/characters/kole/front.svg",
  12409. extra: 1423 / 1303,
  12410. bottom: 0.025
  12411. }
  12412. },
  12413. back: {
  12414. height: math.unit(4, "feet"),
  12415. weight: math.unit(50, "lb"),
  12416. name: "Back",
  12417. image: {
  12418. source: "./media/characters/kole/back.svg",
  12419. extra: 1426 / 1280,
  12420. bottom: 0.02
  12421. }
  12422. },
  12423. },
  12424. [
  12425. {
  12426. name: "Normal",
  12427. height: math.unit(4, "feet"),
  12428. default: true
  12429. },
  12430. ]
  12431. ))
  12432. characterMakers.push(() => makeCharacter(
  12433. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12434. {
  12435. front: {
  12436. height: math.unit(2.5, "feet"),
  12437. weight: math.unit(32, "lb"),
  12438. name: "Front",
  12439. image: {
  12440. source: "./media/characters/rufran/front.svg",
  12441. extra: 1313/885,
  12442. bottom: 94/1407
  12443. }
  12444. },
  12445. side: {
  12446. height: math.unit(2.5, "feet"),
  12447. weight: math.unit(32, "lb"),
  12448. name: "Side",
  12449. image: {
  12450. source: "./media/characters/rufran/side.svg",
  12451. extra: 1109/852,
  12452. bottom: 118/1227
  12453. }
  12454. },
  12455. back: {
  12456. height: math.unit(2.5, "feet"),
  12457. weight: math.unit(32, "lb"),
  12458. name: "Back",
  12459. image: {
  12460. source: "./media/characters/rufran/back.svg",
  12461. extra: 1280/878,
  12462. bottom: 131/1411
  12463. }
  12464. },
  12465. mouth: {
  12466. height: math.unit(1.13, "feet"),
  12467. name: "Mouth",
  12468. image: {
  12469. source: "./media/characters/rufran/mouth.svg"
  12470. }
  12471. },
  12472. foot: {
  12473. height: math.unit(1.33, "feet"),
  12474. name: "Foot",
  12475. image: {
  12476. source: "./media/characters/rufran/foot.svg"
  12477. }
  12478. },
  12479. koboldFront: {
  12480. height: math.unit(2 + 6 / 12, "feet"),
  12481. weight: math.unit(20, "lb"),
  12482. name: "Front (Kobold)",
  12483. image: {
  12484. source: "./media/characters/rufran/kobold-front.svg",
  12485. extra: 2041 / 1839,
  12486. bottom: 0.055
  12487. }
  12488. },
  12489. koboldBack: {
  12490. height: math.unit(2 + 6 / 12, "feet"),
  12491. weight: math.unit(20, "lb"),
  12492. name: "Back (Kobold)",
  12493. image: {
  12494. source: "./media/characters/rufran/kobold-back.svg",
  12495. extra: 2054 / 1839,
  12496. bottom: 0.01
  12497. }
  12498. },
  12499. koboldHand: {
  12500. height: math.unit(0.2166, "meters"),
  12501. name: "Hand (Kobold)",
  12502. image: {
  12503. source: "./media/characters/rufran/kobold-hand.svg"
  12504. }
  12505. },
  12506. koboldFoot: {
  12507. height: math.unit(0.185, "meters"),
  12508. name: "Foot (Kobold)",
  12509. image: {
  12510. source: "./media/characters/rufran/kobold-foot.svg"
  12511. }
  12512. },
  12513. },
  12514. [
  12515. {
  12516. name: "Micro",
  12517. height: math.unit(1, "inch")
  12518. },
  12519. {
  12520. name: "Normal",
  12521. height: math.unit(2 + 6 / 12, "feet"),
  12522. default: true
  12523. },
  12524. {
  12525. name: "Big",
  12526. height: math.unit(60, "feet")
  12527. },
  12528. {
  12529. name: "Macro",
  12530. height: math.unit(325, "feet")
  12531. },
  12532. ]
  12533. ))
  12534. characterMakers.push(() => makeCharacter(
  12535. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12536. {
  12537. front: {
  12538. height: math.unit(0.3, "meters"),
  12539. weight: math.unit(3.5, "kg"),
  12540. name: "Front",
  12541. image: {
  12542. source: "./media/characters/chip/front.svg",
  12543. extra: 748 / 674
  12544. }
  12545. },
  12546. },
  12547. [
  12548. {
  12549. name: "Micro",
  12550. height: math.unit(1, "inch"),
  12551. default: true
  12552. },
  12553. ]
  12554. ))
  12555. characterMakers.push(() => makeCharacter(
  12556. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12557. {
  12558. side: {
  12559. height: math.unit(2.3, "meters"),
  12560. weight: math.unit(3500, "lb"),
  12561. name: "Side",
  12562. image: {
  12563. source: "./media/characters/torvid/side.svg",
  12564. extra: 1972 / 722,
  12565. bottom: 0.035
  12566. }
  12567. },
  12568. },
  12569. [
  12570. {
  12571. name: "Normal",
  12572. height: math.unit(2.3, "meters"),
  12573. default: true
  12574. },
  12575. ]
  12576. ))
  12577. characterMakers.push(() => makeCharacter(
  12578. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12579. {
  12580. front: {
  12581. height: math.unit(2, "meters"),
  12582. weight: math.unit(150.5, "kg"),
  12583. name: "Front",
  12584. image: {
  12585. source: "./media/characters/susan/front.svg",
  12586. extra: 693 / 635,
  12587. bottom: 0.05
  12588. }
  12589. },
  12590. },
  12591. [
  12592. {
  12593. name: "Megamacro",
  12594. height: math.unit(505, "miles"),
  12595. default: true
  12596. },
  12597. ]
  12598. ))
  12599. characterMakers.push(() => makeCharacter(
  12600. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12601. {
  12602. front: {
  12603. height: math.unit(6, "feet"),
  12604. weight: math.unit(150, "lb"),
  12605. name: "Front",
  12606. image: {
  12607. source: "./media/characters/raindrops/front.svg",
  12608. extra: 2655 / 2461,
  12609. bottom: 49 / 2705
  12610. }
  12611. },
  12612. back: {
  12613. height: math.unit(6, "feet"),
  12614. weight: math.unit(150, "lb"),
  12615. name: "Back",
  12616. image: {
  12617. source: "./media/characters/raindrops/back.svg",
  12618. extra: 2574 / 2400,
  12619. bottom: 65 / 2634
  12620. }
  12621. },
  12622. },
  12623. [
  12624. {
  12625. name: "Micro",
  12626. height: math.unit(6, "inches")
  12627. },
  12628. {
  12629. name: "Normal",
  12630. height: math.unit(6 + 2 / 12, "feet")
  12631. },
  12632. {
  12633. name: "Macro",
  12634. height: math.unit(131, "feet"),
  12635. default: true
  12636. },
  12637. {
  12638. name: "Megamacro",
  12639. height: math.unit(15, "miles")
  12640. },
  12641. {
  12642. name: "Gigamacro",
  12643. height: math.unit(4000, "miles")
  12644. },
  12645. {
  12646. name: "Teramacro",
  12647. height: math.unit(315000, "miles")
  12648. },
  12649. ]
  12650. ))
  12651. characterMakers.push(() => makeCharacter(
  12652. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12653. {
  12654. front: {
  12655. height: math.unit(2.794, "meters"),
  12656. weight: math.unit(325, "kg"),
  12657. name: "Front",
  12658. image: {
  12659. source: "./media/characters/tezwa/front.svg",
  12660. extra: 2083 / 1906,
  12661. bottom: 0.031
  12662. }
  12663. },
  12664. foot: {
  12665. height: math.unit(0.687, "meters"),
  12666. name: "Foot",
  12667. image: {
  12668. source: "./media/characters/tezwa/foot.svg"
  12669. }
  12670. },
  12671. },
  12672. [
  12673. {
  12674. name: "Normal",
  12675. height: math.unit(9 + 2 / 12, "feet"),
  12676. default: true
  12677. },
  12678. ]
  12679. ))
  12680. characterMakers.push(() => makeCharacter(
  12681. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12682. {
  12683. front: {
  12684. height: math.unit(58, "feet"),
  12685. weight: math.unit(89000, "lb"),
  12686. name: "Front",
  12687. image: {
  12688. source: "./media/characters/typhus/front.svg",
  12689. extra: 816 / 800,
  12690. bottom: 0.065
  12691. }
  12692. },
  12693. },
  12694. [
  12695. {
  12696. name: "Macro",
  12697. height: math.unit(58, "feet"),
  12698. default: true
  12699. },
  12700. ]
  12701. ))
  12702. characterMakers.push(() => makeCharacter(
  12703. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12704. {
  12705. front: {
  12706. height: math.unit(12, "feet"),
  12707. weight: math.unit(6, "tonnes"),
  12708. name: "Front",
  12709. image: {
  12710. source: "./media/characters/lyra-von-wulf/front.svg",
  12711. extra: 1,
  12712. bottom: 0.10
  12713. }
  12714. },
  12715. frontMecha: {
  12716. height: math.unit(12, "feet"),
  12717. weight: math.unit(12, "tonnes"),
  12718. name: "Front (Mecha)",
  12719. image: {
  12720. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12721. extra: 1,
  12722. bottom: 0.042
  12723. }
  12724. },
  12725. maw: {
  12726. height: math.unit(2.2, "feet"),
  12727. name: "Maw",
  12728. image: {
  12729. source: "./media/characters/lyra-von-wulf/maw.svg"
  12730. }
  12731. },
  12732. },
  12733. [
  12734. {
  12735. name: "Normal",
  12736. height: math.unit(12, "feet"),
  12737. default: true
  12738. },
  12739. {
  12740. name: "Classic",
  12741. height: math.unit(50, "feet")
  12742. },
  12743. {
  12744. name: "Macro",
  12745. height: math.unit(500, "feet")
  12746. },
  12747. {
  12748. name: "Megamacro",
  12749. height: math.unit(1, "mile")
  12750. },
  12751. {
  12752. name: "Gigamacro",
  12753. height: math.unit(400, "miles")
  12754. },
  12755. {
  12756. name: "Teramacro",
  12757. height: math.unit(22000, "miles")
  12758. },
  12759. {
  12760. name: "Solarmacro",
  12761. height: math.unit(8600000, "miles")
  12762. },
  12763. {
  12764. name: "Galactic",
  12765. height: math.unit(1057000, "lightyears")
  12766. },
  12767. ]
  12768. ))
  12769. characterMakers.push(() => makeCharacter(
  12770. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12771. {
  12772. front: {
  12773. height: math.unit(6 + 10 / 12, "feet"),
  12774. weight: math.unit(150, "lb"),
  12775. name: "Front",
  12776. image: {
  12777. source: "./media/characters/dixon/front.svg",
  12778. extra: 3361 / 3209,
  12779. bottom: 0.01
  12780. }
  12781. },
  12782. },
  12783. [
  12784. {
  12785. name: "Normal",
  12786. height: math.unit(6 + 10 / 12, "feet"),
  12787. default: true
  12788. },
  12789. {
  12790. name: "Big",
  12791. height: math.unit(12, "meters")
  12792. },
  12793. {
  12794. name: "Macro",
  12795. height: math.unit(500, "meters")
  12796. },
  12797. {
  12798. name: "Megamacro",
  12799. height: math.unit(2, "km")
  12800. },
  12801. ]
  12802. ))
  12803. characterMakers.push(() => makeCharacter(
  12804. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12805. {
  12806. front: {
  12807. height: math.unit(185, "cm"),
  12808. weight: math.unit(68, "kg"),
  12809. name: "Front",
  12810. image: {
  12811. source: "./media/characters/kauko/front.svg",
  12812. extra: 1455 / 1421,
  12813. bottom: 0.03
  12814. }
  12815. },
  12816. back: {
  12817. height: math.unit(185, "cm"),
  12818. weight: math.unit(68, "kg"),
  12819. name: "Back",
  12820. image: {
  12821. source: "./media/characters/kauko/back.svg",
  12822. extra: 1455 / 1421,
  12823. bottom: 0.004
  12824. }
  12825. },
  12826. },
  12827. [
  12828. {
  12829. name: "Normal",
  12830. height: math.unit(185, "cm"),
  12831. default: true
  12832. },
  12833. ]
  12834. ))
  12835. characterMakers.push(() => makeCharacter(
  12836. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12837. {
  12838. front: {
  12839. height: math.unit(6, "feet"),
  12840. weight: math.unit(150, "kg"),
  12841. name: "Front",
  12842. image: {
  12843. source: "./media/characters/varg/front.svg",
  12844. extra: 1108 / 1018,
  12845. bottom: 0.0375
  12846. }
  12847. },
  12848. },
  12849. [
  12850. {
  12851. name: "Normal",
  12852. height: math.unit(5, "meters")
  12853. },
  12854. {
  12855. name: "Macro",
  12856. height: math.unit(200, "meters")
  12857. },
  12858. {
  12859. name: "Megamacro",
  12860. height: math.unit(20, "kilometers")
  12861. },
  12862. {
  12863. name: "True Size",
  12864. height: math.unit(211, "km"),
  12865. default: true
  12866. },
  12867. {
  12868. name: "Gigamacro",
  12869. height: math.unit(1000, "km")
  12870. },
  12871. {
  12872. name: "Gigamacro+",
  12873. height: math.unit(8000, "km")
  12874. },
  12875. {
  12876. name: "Teramacro",
  12877. height: math.unit(1000000, "km")
  12878. },
  12879. ]
  12880. ))
  12881. characterMakers.push(() => makeCharacter(
  12882. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12883. {
  12884. front: {
  12885. height: math.unit(7 + 7 / 12, "feet"),
  12886. weight: math.unit(267, "lb"),
  12887. name: "Front",
  12888. image: {
  12889. source: "./media/characters/dayza/front.svg",
  12890. extra: 1262 / 1200,
  12891. bottom: 0.035
  12892. }
  12893. },
  12894. side: {
  12895. height: math.unit(7 + 7 / 12, "feet"),
  12896. weight: math.unit(267, "lb"),
  12897. name: "Side",
  12898. image: {
  12899. source: "./media/characters/dayza/side.svg",
  12900. extra: 1295 / 1245,
  12901. bottom: 0.05
  12902. }
  12903. },
  12904. back: {
  12905. height: math.unit(7 + 7 / 12, "feet"),
  12906. weight: math.unit(267, "lb"),
  12907. name: "Back",
  12908. image: {
  12909. source: "./media/characters/dayza/back.svg",
  12910. extra: 1241 / 1170
  12911. }
  12912. },
  12913. },
  12914. [
  12915. {
  12916. name: "Normal",
  12917. height: math.unit(7 + 7 / 12, "feet"),
  12918. default: true
  12919. },
  12920. {
  12921. name: "Macro",
  12922. height: math.unit(155, "feet")
  12923. },
  12924. ]
  12925. ))
  12926. characterMakers.push(() => makeCharacter(
  12927. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12928. {
  12929. front: {
  12930. height: math.unit(6 + 5 / 12, "feet"),
  12931. weight: math.unit(160, "lb"),
  12932. name: "Front",
  12933. image: {
  12934. source: "./media/characters/xanthos/front.svg",
  12935. extra: 1,
  12936. bottom: 0.04
  12937. }
  12938. },
  12939. back: {
  12940. height: math.unit(6 + 5 / 12, "feet"),
  12941. weight: math.unit(160, "lb"),
  12942. name: "Back",
  12943. image: {
  12944. source: "./media/characters/xanthos/back.svg",
  12945. extra: 1,
  12946. bottom: 0.03
  12947. }
  12948. },
  12949. hand: {
  12950. height: math.unit(0.928, "feet"),
  12951. name: "Hand",
  12952. image: {
  12953. source: "./media/characters/xanthos/hand.svg"
  12954. }
  12955. },
  12956. foot: {
  12957. height: math.unit(1.286, "feet"),
  12958. name: "Foot",
  12959. image: {
  12960. source: "./media/characters/xanthos/foot.svg"
  12961. }
  12962. },
  12963. },
  12964. [
  12965. {
  12966. name: "Normal",
  12967. height: math.unit(6 + 5 / 12, "feet"),
  12968. default: true
  12969. },
  12970. {
  12971. name: "Normal+",
  12972. height: math.unit(6, "meters")
  12973. },
  12974. {
  12975. name: "Macro",
  12976. height: math.unit(40, "feet")
  12977. },
  12978. {
  12979. name: "Macro+",
  12980. height: math.unit(200, "meters")
  12981. },
  12982. {
  12983. name: "Megamacro",
  12984. height: math.unit(20, "km")
  12985. },
  12986. {
  12987. name: "Megamacro+",
  12988. height: math.unit(100, "km")
  12989. },
  12990. {
  12991. name: "Gigamacro",
  12992. height: math.unit(200, "megameters")
  12993. },
  12994. {
  12995. name: "Gigamacro+",
  12996. height: math.unit(1.5, "gigameters")
  12997. },
  12998. ]
  12999. ))
  13000. characterMakers.push(() => makeCharacter(
  13001. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13002. {
  13003. front: {
  13004. height: math.unit(6 + 3 / 12, "feet"),
  13005. weight: math.unit(215, "lb"),
  13006. name: "Front",
  13007. image: {
  13008. source: "./media/characters/grynn/front.svg",
  13009. extra: 4627 / 4209,
  13010. bottom: 0.047
  13011. }
  13012. },
  13013. },
  13014. [
  13015. {
  13016. name: "Micro",
  13017. height: math.unit(6, "inches")
  13018. },
  13019. {
  13020. name: "Normal",
  13021. height: math.unit(6 + 3 / 12, "feet"),
  13022. default: true
  13023. },
  13024. {
  13025. name: "Big",
  13026. height: math.unit(104, "feet")
  13027. },
  13028. {
  13029. name: "Macro",
  13030. height: math.unit(944, "feet")
  13031. },
  13032. {
  13033. name: "Macro+",
  13034. height: math.unit(9480, "feet")
  13035. },
  13036. {
  13037. name: "Megamacro",
  13038. height: math.unit(78752, "feet")
  13039. },
  13040. {
  13041. name: "Megamacro+",
  13042. height: math.unit(630128, "feet")
  13043. },
  13044. {
  13045. name: "Megamacro++",
  13046. height: math.unit(3150695, "feet")
  13047. },
  13048. ]
  13049. ))
  13050. characterMakers.push(() => makeCharacter(
  13051. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13052. {
  13053. front: {
  13054. height: math.unit(7 + 5 / 12, "feet"),
  13055. weight: math.unit(450, "lb"),
  13056. name: "Front",
  13057. image: {
  13058. source: "./media/characters/mocha-aura/front.svg",
  13059. extra: 1907 / 1817,
  13060. bottom: 0.04
  13061. }
  13062. },
  13063. back: {
  13064. height: math.unit(7 + 5 / 12, "feet"),
  13065. weight: math.unit(450, "lb"),
  13066. name: "Back",
  13067. image: {
  13068. source: "./media/characters/mocha-aura/back.svg",
  13069. extra: 1900 / 1825,
  13070. bottom: 0.045
  13071. }
  13072. },
  13073. },
  13074. [
  13075. {
  13076. name: "Nano",
  13077. height: math.unit(1, "nm")
  13078. },
  13079. {
  13080. name: "Megamicro",
  13081. height: math.unit(1, "mm")
  13082. },
  13083. {
  13084. name: "Micro",
  13085. height: math.unit(3, "inches")
  13086. },
  13087. {
  13088. name: "Normal",
  13089. height: math.unit(7 + 5 / 12, "feet"),
  13090. default: true
  13091. },
  13092. {
  13093. name: "Macro",
  13094. height: math.unit(30, "feet")
  13095. },
  13096. {
  13097. name: "Megamacro",
  13098. height: math.unit(3500, "feet")
  13099. },
  13100. {
  13101. name: "Teramacro",
  13102. height: math.unit(500000, "miles")
  13103. },
  13104. {
  13105. name: "Petamacro",
  13106. height: math.unit(50000000000000000, "parsecs")
  13107. },
  13108. ]
  13109. ))
  13110. characterMakers.push(() => makeCharacter(
  13111. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13112. {
  13113. front: {
  13114. height: math.unit(6, "feet"),
  13115. weight: math.unit(150, "lb"),
  13116. name: "Front",
  13117. image: {
  13118. source: "./media/characters/ilisha-devya/front.svg",
  13119. extra: 1053/1049,
  13120. bottom: 270/1323
  13121. }
  13122. },
  13123. back: {
  13124. height: math.unit(6, "feet"),
  13125. weight: math.unit(150, "lb"),
  13126. name: "Back",
  13127. image: {
  13128. source: "./media/characters/ilisha-devya/back.svg",
  13129. extra: 1131/1128,
  13130. bottom: 39/1170
  13131. }
  13132. },
  13133. },
  13134. [
  13135. {
  13136. name: "Macro",
  13137. height: math.unit(500, "feet"),
  13138. default: true
  13139. },
  13140. {
  13141. name: "Megamacro",
  13142. height: math.unit(10, "miles")
  13143. },
  13144. {
  13145. name: "Gigamacro",
  13146. height: math.unit(100000, "miles")
  13147. },
  13148. {
  13149. name: "Examacro",
  13150. height: math.unit(1e9, "lightyears")
  13151. },
  13152. {
  13153. name: "Omniversal",
  13154. height: math.unit(1e33, "lightyears")
  13155. },
  13156. {
  13157. name: "Beyond Infinite",
  13158. height: math.unit(1e100, "lightyears")
  13159. },
  13160. ]
  13161. ))
  13162. characterMakers.push(() => makeCharacter(
  13163. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13164. {
  13165. Side: {
  13166. height: math.unit(6, "feet"),
  13167. weight: math.unit(150, "lb"),
  13168. name: "Side",
  13169. image: {
  13170. source: "./media/characters/mira/side.svg",
  13171. extra: 900 / 799,
  13172. bottom: 0.02
  13173. }
  13174. },
  13175. },
  13176. [
  13177. {
  13178. name: "Human Size",
  13179. height: math.unit(6, "feet")
  13180. },
  13181. {
  13182. name: "Macro",
  13183. height: math.unit(100, "feet"),
  13184. default: true
  13185. },
  13186. {
  13187. name: "Megamacro",
  13188. height: math.unit(10, "miles")
  13189. },
  13190. {
  13191. name: "Gigamacro",
  13192. height: math.unit(25000, "miles")
  13193. },
  13194. {
  13195. name: "Teramacro",
  13196. height: math.unit(300, "AU")
  13197. },
  13198. {
  13199. name: "Full Size",
  13200. height: math.unit(4.5e10, "lightyears")
  13201. },
  13202. ]
  13203. ))
  13204. characterMakers.push(() => makeCharacter(
  13205. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13206. {
  13207. front: {
  13208. height: math.unit(6, "feet"),
  13209. weight: math.unit(150, "lb"),
  13210. name: "Front",
  13211. image: {
  13212. source: "./media/characters/holly/front.svg",
  13213. extra: 639 / 606
  13214. }
  13215. },
  13216. back: {
  13217. height: math.unit(6, "feet"),
  13218. weight: math.unit(150, "lb"),
  13219. name: "Back",
  13220. image: {
  13221. source: "./media/characters/holly/back.svg",
  13222. extra: 623 / 598
  13223. }
  13224. },
  13225. frontWorking: {
  13226. height: math.unit(6, "feet"),
  13227. weight: math.unit(150, "lb"),
  13228. name: "Front (Working)",
  13229. image: {
  13230. source: "./media/characters/holly/front-working.svg",
  13231. extra: 607 / 577,
  13232. bottom: 0.048
  13233. }
  13234. },
  13235. },
  13236. [
  13237. {
  13238. name: "Normal",
  13239. height: math.unit(12 + 3 / 12, "feet"),
  13240. default: true
  13241. },
  13242. ]
  13243. ))
  13244. characterMakers.push(() => makeCharacter(
  13245. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13246. {
  13247. front: {
  13248. height: math.unit(6, "feet"),
  13249. weight: math.unit(150, "lb"),
  13250. name: "Front",
  13251. image: {
  13252. source: "./media/characters/porter/front.svg",
  13253. extra: 1,
  13254. bottom: 0.01
  13255. }
  13256. },
  13257. frontRobes: {
  13258. height: math.unit(6, "feet"),
  13259. weight: math.unit(150, "lb"),
  13260. name: "Front (Robes)",
  13261. image: {
  13262. source: "./media/characters/porter/front-robes.svg",
  13263. extra: 1.01,
  13264. bottom: 0.01
  13265. }
  13266. },
  13267. },
  13268. [
  13269. {
  13270. name: "Normal",
  13271. height: math.unit(11 + 9 / 12, "feet"),
  13272. default: true
  13273. },
  13274. ]
  13275. ))
  13276. characterMakers.push(() => makeCharacter(
  13277. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13278. {
  13279. legendary: {
  13280. height: math.unit(6, "feet"),
  13281. weight: math.unit(150, "lb"),
  13282. name: "Legendary",
  13283. image: {
  13284. source: "./media/characters/lucy/legendary.svg",
  13285. extra: 1355 / 1100,
  13286. bottom: 0.045
  13287. }
  13288. },
  13289. },
  13290. [
  13291. {
  13292. name: "Legendary",
  13293. height: math.unit(86882 * 2, "miles"),
  13294. default: true
  13295. },
  13296. ]
  13297. ))
  13298. characterMakers.push(() => makeCharacter(
  13299. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13300. {
  13301. front: {
  13302. height: math.unit(6, "feet"),
  13303. weight: math.unit(150, "lb"),
  13304. name: "Front",
  13305. image: {
  13306. source: "./media/characters/drusilla/front.svg",
  13307. extra: 678 / 635,
  13308. bottom: 0.03
  13309. }
  13310. },
  13311. back: {
  13312. height: math.unit(6, "feet"),
  13313. weight: math.unit(150, "lb"),
  13314. name: "Back",
  13315. image: {
  13316. source: "./media/characters/drusilla/back.svg",
  13317. extra: 678 / 635,
  13318. bottom: 0.005
  13319. }
  13320. },
  13321. },
  13322. [
  13323. {
  13324. name: "Macro",
  13325. height: math.unit(100, "feet")
  13326. },
  13327. {
  13328. name: "Canon Height",
  13329. height: math.unit(2000, "feet"),
  13330. default: true
  13331. },
  13332. ]
  13333. ))
  13334. characterMakers.push(() => makeCharacter(
  13335. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13336. {
  13337. front: {
  13338. height: math.unit(6, "feet"),
  13339. weight: math.unit(180, "lb"),
  13340. name: "Front",
  13341. image: {
  13342. source: "./media/characters/renard-thatch/front.svg",
  13343. extra: 2411 / 2275,
  13344. bottom: 0.01
  13345. }
  13346. },
  13347. frontPosing: {
  13348. height: math.unit(6, "feet"),
  13349. weight: math.unit(180, "lb"),
  13350. name: "Front (Posing)",
  13351. image: {
  13352. source: "./media/characters/renard-thatch/front-posing.svg",
  13353. extra: 2381 / 2261,
  13354. bottom: 0.01
  13355. }
  13356. },
  13357. back: {
  13358. height: math.unit(6, "feet"),
  13359. weight: math.unit(180, "lb"),
  13360. name: "Back",
  13361. image: {
  13362. source: "./media/characters/renard-thatch/back.svg",
  13363. extra: 2428 / 2288
  13364. }
  13365. },
  13366. },
  13367. [
  13368. {
  13369. name: "Micro",
  13370. height: math.unit(3, "inches")
  13371. },
  13372. {
  13373. name: "Default",
  13374. height: math.unit(6, "feet"),
  13375. default: true
  13376. },
  13377. {
  13378. name: "Macro",
  13379. height: math.unit(75, "feet")
  13380. },
  13381. ]
  13382. ))
  13383. characterMakers.push(() => makeCharacter(
  13384. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13385. {
  13386. front: {
  13387. height: math.unit(1450, "feet"),
  13388. weight: math.unit(1.21e6, "tons"),
  13389. name: "Front",
  13390. image: {
  13391. source: "./media/characters/sekvra/front.svg",
  13392. extra: 1193/1190,
  13393. bottom: 78/1271
  13394. }
  13395. },
  13396. side: {
  13397. height: math.unit(1450, "feet"),
  13398. weight: math.unit(1.21e6, "tons"),
  13399. name: "Side",
  13400. image: {
  13401. source: "./media/characters/sekvra/side.svg",
  13402. extra: 1193/1190,
  13403. bottom: 52/1245
  13404. }
  13405. },
  13406. back: {
  13407. height: math.unit(1450, "feet"),
  13408. weight: math.unit(1.21e6, "tons"),
  13409. name: "Back",
  13410. image: {
  13411. source: "./media/characters/sekvra/back.svg",
  13412. extra: 1219/1216,
  13413. bottom: 21/1240
  13414. }
  13415. },
  13416. frontClothed: {
  13417. height: math.unit(1450, "feet"),
  13418. weight: math.unit(1.21e6, "tons"),
  13419. name: "Front (Clothed)",
  13420. image: {
  13421. source: "./media/characters/sekvra/front-clothed.svg",
  13422. extra: 1192/1189,
  13423. bottom: 79/1271
  13424. }
  13425. },
  13426. },
  13427. [
  13428. {
  13429. name: "Macro",
  13430. height: math.unit(1450, "feet"),
  13431. default: true
  13432. },
  13433. {
  13434. name: "Megamacro",
  13435. height: math.unit(15000, "feet")
  13436. },
  13437. ]
  13438. ))
  13439. characterMakers.push(() => makeCharacter(
  13440. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13441. {
  13442. front: {
  13443. height: math.unit(6, "feet"),
  13444. weight: math.unit(150, "lb"),
  13445. name: "Front",
  13446. image: {
  13447. source: "./media/characters/carmine/front.svg",
  13448. extra: 1,
  13449. bottom: 0.035
  13450. }
  13451. },
  13452. frontArmor: {
  13453. height: math.unit(6, "feet"),
  13454. weight: math.unit(150, "lb"),
  13455. name: "Front (Armor)",
  13456. image: {
  13457. source: "./media/characters/carmine/front-armor.svg",
  13458. extra: 1,
  13459. bottom: 0.035
  13460. }
  13461. },
  13462. },
  13463. [
  13464. {
  13465. name: "Large",
  13466. height: math.unit(1, "mile")
  13467. },
  13468. {
  13469. name: "Huge",
  13470. height: math.unit(40, "miles"),
  13471. default: true
  13472. },
  13473. {
  13474. name: "Colossal",
  13475. height: math.unit(2500, "miles")
  13476. },
  13477. ]
  13478. ))
  13479. characterMakers.push(() => makeCharacter(
  13480. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13481. {
  13482. front: {
  13483. height: math.unit(6, "feet"),
  13484. weight: math.unit(150, "lb"),
  13485. name: "Front",
  13486. image: {
  13487. source: "./media/characters/elyssia/front.svg",
  13488. extra: 2201 / 2035,
  13489. bottom: 0.05
  13490. }
  13491. },
  13492. frontClothed: {
  13493. height: math.unit(6, "feet"),
  13494. weight: math.unit(150, "lb"),
  13495. name: "Front (Clothed)",
  13496. image: {
  13497. source: "./media/characters/elyssia/front-clothed.svg",
  13498. extra: 2201 / 2035,
  13499. bottom: 0.05
  13500. }
  13501. },
  13502. back: {
  13503. height: math.unit(6, "feet"),
  13504. weight: math.unit(150, "lb"),
  13505. name: "Back",
  13506. image: {
  13507. source: "./media/characters/elyssia/back.svg",
  13508. extra: 2201 / 2035,
  13509. bottom: 0.013
  13510. }
  13511. },
  13512. },
  13513. [
  13514. {
  13515. name: "Smaller",
  13516. height: math.unit(150, "feet")
  13517. },
  13518. {
  13519. name: "Standard",
  13520. height: math.unit(1400, "feet"),
  13521. default: true
  13522. },
  13523. {
  13524. name: "Distracted",
  13525. height: math.unit(15000, "feet")
  13526. },
  13527. ]
  13528. ))
  13529. characterMakers.push(() => makeCharacter(
  13530. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13531. {
  13532. front: {
  13533. height: math.unit(7 + 4/12, "feet"),
  13534. weight: math.unit(690, "lb"),
  13535. name: "Front",
  13536. image: {
  13537. source: "./media/characters/geno-maxwell/front.svg",
  13538. extra: 984/856,
  13539. bottom: 87/1071
  13540. }
  13541. },
  13542. back: {
  13543. height: math.unit(7 + 4/12, "feet"),
  13544. weight: math.unit(690, "lb"),
  13545. name: "Back",
  13546. image: {
  13547. source: "./media/characters/geno-maxwell/back.svg",
  13548. extra: 981/854,
  13549. bottom: 57/1038
  13550. }
  13551. },
  13552. frontCostume: {
  13553. height: math.unit(7 + 4/12, "feet"),
  13554. weight: math.unit(690, "lb"),
  13555. name: "Front (Costume)",
  13556. image: {
  13557. source: "./media/characters/geno-maxwell/front-costume.svg",
  13558. extra: 984/856,
  13559. bottom: 87/1071
  13560. }
  13561. },
  13562. backcostume: {
  13563. height: math.unit(7 + 4/12, "feet"),
  13564. weight: math.unit(690, "lb"),
  13565. name: "Back (Costume)",
  13566. image: {
  13567. source: "./media/characters/geno-maxwell/back-costume.svg",
  13568. extra: 981/854,
  13569. bottom: 57/1038
  13570. }
  13571. },
  13572. },
  13573. [
  13574. {
  13575. name: "Micro",
  13576. height: math.unit(3, "inches")
  13577. },
  13578. {
  13579. name: "Normal",
  13580. height: math.unit(7 + 4 / 12, "feet"),
  13581. default: true
  13582. },
  13583. {
  13584. name: "Macro",
  13585. height: math.unit(220, "feet")
  13586. },
  13587. {
  13588. name: "Megamacro",
  13589. height: math.unit(11, "miles")
  13590. },
  13591. ]
  13592. ))
  13593. characterMakers.push(() => makeCharacter(
  13594. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13595. {
  13596. front: {
  13597. height: math.unit(7 + 4/12, "feet"),
  13598. weight: math.unit(750, "lb"),
  13599. name: "Front",
  13600. image: {
  13601. source: "./media/characters/regena-maxwell/front.svg",
  13602. extra: 984/856,
  13603. bottom: 87/1071
  13604. }
  13605. },
  13606. back: {
  13607. height: math.unit(7 + 4/12, "feet"),
  13608. weight: math.unit(750, "lb"),
  13609. name: "Back",
  13610. image: {
  13611. source: "./media/characters/regena-maxwell/back.svg",
  13612. extra: 981/854,
  13613. bottom: 57/1038
  13614. }
  13615. },
  13616. frontCostume: {
  13617. height: math.unit(7 + 4/12, "feet"),
  13618. weight: math.unit(750, "lb"),
  13619. name: "Front (Costume)",
  13620. image: {
  13621. source: "./media/characters/regena-maxwell/front-costume.svg",
  13622. extra: 984/856,
  13623. bottom: 87/1071
  13624. }
  13625. },
  13626. backcostume: {
  13627. height: math.unit(7 + 4/12, "feet"),
  13628. weight: math.unit(750, "lb"),
  13629. name: "Back (Costume)",
  13630. image: {
  13631. source: "./media/characters/regena-maxwell/back-costume.svg",
  13632. extra: 981/854,
  13633. bottom: 57/1038
  13634. }
  13635. },
  13636. },
  13637. [
  13638. {
  13639. name: "Normal",
  13640. height: math.unit(7 + 4 / 12, "feet"),
  13641. default: true
  13642. },
  13643. {
  13644. name: "Macro",
  13645. height: math.unit(220, "feet")
  13646. },
  13647. {
  13648. name: "Megamacro",
  13649. height: math.unit(11, "miles")
  13650. },
  13651. ]
  13652. ))
  13653. characterMakers.push(() => makeCharacter(
  13654. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13655. {
  13656. front: {
  13657. height: math.unit(6, "feet"),
  13658. weight: math.unit(150, "lb"),
  13659. name: "Front",
  13660. image: {
  13661. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13662. extra: 860 / 690,
  13663. bottom: 0.03
  13664. }
  13665. },
  13666. },
  13667. [
  13668. {
  13669. name: "Normal",
  13670. height: math.unit(1.7, "meters"),
  13671. default: true
  13672. },
  13673. ]
  13674. ))
  13675. characterMakers.push(() => makeCharacter(
  13676. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13677. {
  13678. front: {
  13679. height: math.unit(6, "feet"),
  13680. weight: math.unit(150, "lb"),
  13681. name: "Front",
  13682. image: {
  13683. source: "./media/characters/quilly/front.svg",
  13684. extra: 890 / 776
  13685. }
  13686. },
  13687. },
  13688. [
  13689. {
  13690. name: "Gigamacro",
  13691. height: math.unit(404090, "miles"),
  13692. default: true
  13693. },
  13694. ]
  13695. ))
  13696. characterMakers.push(() => makeCharacter(
  13697. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13698. {
  13699. front: {
  13700. height: math.unit(7 + 8 / 12, "feet"),
  13701. weight: math.unit(350, "lb"),
  13702. name: "Front",
  13703. image: {
  13704. source: "./media/characters/tempest/front.svg",
  13705. extra: 1175 / 1086,
  13706. bottom: 0.02
  13707. }
  13708. },
  13709. },
  13710. [
  13711. {
  13712. name: "Normal",
  13713. height: math.unit(7 + 8 / 12, "feet"),
  13714. default: true
  13715. },
  13716. ]
  13717. ))
  13718. characterMakers.push(() => makeCharacter(
  13719. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13720. {
  13721. side: {
  13722. height: math.unit(4 + 5 / 12, "feet"),
  13723. weight: math.unit(80, "lb"),
  13724. name: "Side",
  13725. image: {
  13726. source: "./media/characters/rodger/side.svg",
  13727. extra: 1235 / 1118
  13728. }
  13729. },
  13730. },
  13731. [
  13732. {
  13733. name: "Micro",
  13734. height: math.unit(1, "inch")
  13735. },
  13736. {
  13737. name: "Normal",
  13738. height: math.unit(4 + 5 / 12, "feet"),
  13739. default: true
  13740. },
  13741. {
  13742. name: "Macro",
  13743. height: math.unit(120, "feet")
  13744. },
  13745. ]
  13746. ))
  13747. characterMakers.push(() => makeCharacter(
  13748. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13749. {
  13750. front: {
  13751. height: math.unit(6, "feet"),
  13752. weight: math.unit(150, "lb"),
  13753. name: "Front",
  13754. image: {
  13755. source: "./media/characters/danyel/front.svg",
  13756. extra: 1185 / 1123,
  13757. bottom: 0.05
  13758. }
  13759. },
  13760. },
  13761. [
  13762. {
  13763. name: "Shrunken",
  13764. height: math.unit(0.5, "mm")
  13765. },
  13766. {
  13767. name: "Micro",
  13768. height: math.unit(1, "mm"),
  13769. default: true
  13770. },
  13771. {
  13772. name: "Upsized",
  13773. height: math.unit(5 + 5 / 12, "feet")
  13774. },
  13775. ]
  13776. ))
  13777. characterMakers.push(() => makeCharacter(
  13778. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13779. {
  13780. front: {
  13781. height: math.unit(5 + 6 / 12, "feet"),
  13782. weight: math.unit(200, "lb"),
  13783. name: "Front",
  13784. image: {
  13785. source: "./media/characters/vivian-bijoux/front.svg",
  13786. extra: 1217/1209,
  13787. bottom: 76/1293
  13788. }
  13789. },
  13790. back: {
  13791. height: math.unit(5 + 6 / 12, "feet"),
  13792. weight: math.unit(200, "lb"),
  13793. name: "Back",
  13794. image: {
  13795. source: "./media/characters/vivian-bijoux/back.svg",
  13796. extra: 1214/1208,
  13797. bottom: 51/1265
  13798. }
  13799. },
  13800. dressed: {
  13801. height: math.unit(5 + 6 / 12, "feet"),
  13802. weight: math.unit(200, "lb"),
  13803. name: "Dressed",
  13804. image: {
  13805. source: "./media/characters/vivian-bijoux/dressed.svg",
  13806. extra: 1217/1209,
  13807. bottom: 76/1293
  13808. }
  13809. },
  13810. },
  13811. [
  13812. {
  13813. name: "Normal",
  13814. height: math.unit(5 + 6 / 12, "feet"),
  13815. default: true
  13816. },
  13817. {
  13818. name: "Bad Dream",
  13819. height: math.unit(500, "feet")
  13820. },
  13821. {
  13822. name: "Nightmare",
  13823. height: math.unit(500, "miles")
  13824. },
  13825. ]
  13826. ))
  13827. characterMakers.push(() => makeCharacter(
  13828. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13829. {
  13830. front: {
  13831. height: math.unit(6 + 1 / 12, "feet"),
  13832. weight: math.unit(260, "lb"),
  13833. name: "Front",
  13834. image: {
  13835. source: "./media/characters/zeta/front.svg",
  13836. extra: 1968 / 1889,
  13837. bottom: 0.06
  13838. }
  13839. },
  13840. back: {
  13841. height: math.unit(6 + 1 / 12, "feet"),
  13842. weight: math.unit(260, "lb"),
  13843. name: "Back",
  13844. image: {
  13845. source: "./media/characters/zeta/back.svg",
  13846. extra: 1944 / 1858,
  13847. bottom: 0.03
  13848. }
  13849. },
  13850. hand: {
  13851. height: math.unit(1.112, "feet"),
  13852. name: "Hand",
  13853. image: {
  13854. source: "./media/characters/zeta/hand.svg"
  13855. }
  13856. },
  13857. foot: {
  13858. height: math.unit(1.48, "feet"),
  13859. name: "Foot",
  13860. image: {
  13861. source: "./media/characters/zeta/foot.svg"
  13862. }
  13863. },
  13864. },
  13865. [
  13866. {
  13867. name: "Micro",
  13868. height: math.unit(6, "inches")
  13869. },
  13870. {
  13871. name: "Normal",
  13872. height: math.unit(6 + 1 / 12, "feet"),
  13873. default: true
  13874. },
  13875. {
  13876. name: "Macro",
  13877. height: math.unit(20, "feet")
  13878. },
  13879. ]
  13880. ))
  13881. characterMakers.push(() => makeCharacter(
  13882. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13883. {
  13884. front: {
  13885. height: math.unit(6, "feet"),
  13886. weight: math.unit(150, "lb"),
  13887. name: "Front",
  13888. image: {
  13889. source: "./media/characters/jamie-larsen/front.svg",
  13890. extra: 962 / 933,
  13891. bottom: 0.02
  13892. }
  13893. },
  13894. back: {
  13895. height: math.unit(6, "feet"),
  13896. weight: math.unit(150, "lb"),
  13897. name: "Back",
  13898. image: {
  13899. source: "./media/characters/jamie-larsen/back.svg",
  13900. extra: 997 / 946
  13901. }
  13902. },
  13903. },
  13904. [
  13905. {
  13906. name: "Macro",
  13907. height: math.unit(28 + 7 / 12, "feet"),
  13908. default: true
  13909. },
  13910. {
  13911. name: "Macro+",
  13912. height: math.unit(180, "feet")
  13913. },
  13914. {
  13915. name: "Megamacro",
  13916. height: math.unit(10, "miles")
  13917. },
  13918. {
  13919. name: "Gigamacro",
  13920. height: math.unit(200000, "miles")
  13921. },
  13922. ]
  13923. ))
  13924. characterMakers.push(() => makeCharacter(
  13925. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13926. {
  13927. front: {
  13928. height: math.unit(6, "feet"),
  13929. weight: math.unit(120, "lb"),
  13930. name: "Front",
  13931. image: {
  13932. source: "./media/characters/vance/front.svg",
  13933. extra: 1980 / 1890,
  13934. bottom: 0.09
  13935. }
  13936. },
  13937. back: {
  13938. height: math.unit(6, "feet"),
  13939. weight: math.unit(120, "lb"),
  13940. name: "Back",
  13941. image: {
  13942. source: "./media/characters/vance/back.svg",
  13943. extra: 2081 / 1994,
  13944. bottom: 0.014
  13945. }
  13946. },
  13947. hand: {
  13948. height: math.unit(0.88, "feet"),
  13949. name: "Hand",
  13950. image: {
  13951. source: "./media/characters/vance/hand.svg"
  13952. }
  13953. },
  13954. foot: {
  13955. height: math.unit(0.64, "feet"),
  13956. name: "Foot",
  13957. image: {
  13958. source: "./media/characters/vance/foot.svg"
  13959. }
  13960. },
  13961. },
  13962. [
  13963. {
  13964. name: "Small",
  13965. height: math.unit(90, "feet"),
  13966. default: true
  13967. },
  13968. {
  13969. name: "Macro",
  13970. height: math.unit(100, "meters")
  13971. },
  13972. {
  13973. name: "Megamacro",
  13974. height: math.unit(15, "miles")
  13975. },
  13976. ]
  13977. ))
  13978. characterMakers.push(() => makeCharacter(
  13979. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13980. {
  13981. front: {
  13982. height: math.unit(6, "feet"),
  13983. weight: math.unit(180, "lb"),
  13984. name: "Front",
  13985. image: {
  13986. source: "./media/characters/xochitl/front.svg",
  13987. extra: 2297 / 2261,
  13988. bottom: 0.065
  13989. }
  13990. },
  13991. back: {
  13992. height: math.unit(6, "feet"),
  13993. weight: math.unit(180, "lb"),
  13994. name: "Back",
  13995. image: {
  13996. source: "./media/characters/xochitl/back.svg",
  13997. extra: 2386 / 2354,
  13998. bottom: 0.01
  13999. }
  14000. },
  14001. foot: {
  14002. height: math.unit(6 / 5 * 1.15, "feet"),
  14003. weight: math.unit(150, "lb"),
  14004. name: "Foot",
  14005. image: {
  14006. source: "./media/characters/xochitl/foot.svg"
  14007. }
  14008. },
  14009. },
  14010. [
  14011. {
  14012. name: "Macro",
  14013. height: math.unit(80, "feet")
  14014. },
  14015. {
  14016. name: "Macro+",
  14017. height: math.unit(400, "feet"),
  14018. default: true
  14019. },
  14020. {
  14021. name: "Gigamacro",
  14022. height: math.unit(80000, "miles")
  14023. },
  14024. {
  14025. name: "Gigamacro+",
  14026. height: math.unit(400000, "miles")
  14027. },
  14028. {
  14029. name: "Teramacro",
  14030. height: math.unit(300, "AU")
  14031. },
  14032. ]
  14033. ))
  14034. characterMakers.push(() => makeCharacter(
  14035. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14036. {
  14037. front: {
  14038. height: math.unit(6, "feet"),
  14039. weight: math.unit(150, "lb"),
  14040. name: "Front",
  14041. image: {
  14042. source: "./media/characters/vincent/front.svg",
  14043. extra: 1130 / 1080,
  14044. bottom: 0.055
  14045. }
  14046. },
  14047. beak: {
  14048. height: math.unit(6 * 0.1, "feet"),
  14049. name: "Beak",
  14050. image: {
  14051. source: "./media/characters/vincent/beak.svg"
  14052. }
  14053. },
  14054. hand: {
  14055. height: math.unit(6 * 0.85, "feet"),
  14056. weight: math.unit(150, "lb"),
  14057. name: "Hand",
  14058. image: {
  14059. source: "./media/characters/vincent/hand.svg"
  14060. }
  14061. },
  14062. foot: {
  14063. height: math.unit(6 * 0.19, "feet"),
  14064. weight: math.unit(150, "lb"),
  14065. name: "Foot",
  14066. image: {
  14067. source: "./media/characters/vincent/foot.svg"
  14068. }
  14069. },
  14070. },
  14071. [
  14072. {
  14073. name: "Base",
  14074. height: math.unit(6 + 5 / 12, "feet"),
  14075. default: true
  14076. },
  14077. {
  14078. name: "Macro",
  14079. height: math.unit(300, "feet")
  14080. },
  14081. {
  14082. name: "Megamacro",
  14083. height: math.unit(2, "miles")
  14084. },
  14085. {
  14086. name: "Gigamacro",
  14087. height: math.unit(1000, "miles")
  14088. },
  14089. ]
  14090. ))
  14091. characterMakers.push(() => makeCharacter(
  14092. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14093. {
  14094. front: {
  14095. height: math.unit(2, "meters"),
  14096. weight: math.unit(500, "kg"),
  14097. name: "Front",
  14098. image: {
  14099. source: "./media/characters/coatl/front.svg",
  14100. extra: 3948 / 3500,
  14101. bottom: 0.082
  14102. }
  14103. },
  14104. },
  14105. [
  14106. {
  14107. name: "Normal",
  14108. height: math.unit(4, "meters")
  14109. },
  14110. {
  14111. name: "Macro",
  14112. height: math.unit(100, "meters"),
  14113. default: true
  14114. },
  14115. {
  14116. name: "Macro+",
  14117. height: math.unit(300, "meters")
  14118. },
  14119. {
  14120. name: "Megamacro",
  14121. height: math.unit(3, "gigameters")
  14122. },
  14123. {
  14124. name: "Megamacro+",
  14125. height: math.unit(300, "terameters")
  14126. },
  14127. {
  14128. name: "Megamacro++",
  14129. height: math.unit(3, "lightyears")
  14130. },
  14131. ]
  14132. ))
  14133. characterMakers.push(() => makeCharacter(
  14134. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14135. {
  14136. front: {
  14137. height: math.unit(6, "feet"),
  14138. weight: math.unit(50, "kg"),
  14139. name: "front",
  14140. image: {
  14141. source: "./media/characters/shiroryu/front.svg",
  14142. extra: 1990 / 1935
  14143. }
  14144. },
  14145. },
  14146. [
  14147. {
  14148. name: "Mortal Mingling",
  14149. height: math.unit(3, "meters")
  14150. },
  14151. {
  14152. name: "Kaiju-ish",
  14153. height: math.unit(250, "meters")
  14154. },
  14155. {
  14156. name: "Somewhat Godly",
  14157. height: math.unit(400, "km"),
  14158. default: true
  14159. },
  14160. {
  14161. name: "Planetary",
  14162. height: math.unit(300, "megameters")
  14163. },
  14164. {
  14165. name: "Galaxy-dwarfing",
  14166. height: math.unit(450, "kiloparsecs")
  14167. },
  14168. {
  14169. name: "Universe Eater",
  14170. height: math.unit(150, "gigaparsecs")
  14171. },
  14172. {
  14173. name: "Almost Immeasurable",
  14174. height: math.unit(1.3e266, "yottaparsecs")
  14175. },
  14176. ]
  14177. ))
  14178. characterMakers.push(() => makeCharacter(
  14179. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14180. {
  14181. front: {
  14182. height: math.unit(6, "feet"),
  14183. weight: math.unit(150, "lb"),
  14184. name: "Front",
  14185. image: {
  14186. source: "./media/characters/umeko/front.svg",
  14187. extra: 1,
  14188. bottom: 0.019
  14189. }
  14190. },
  14191. frontArmored: {
  14192. height: math.unit(6, "feet"),
  14193. weight: math.unit(150, "lb"),
  14194. name: "Front (Armored)",
  14195. image: {
  14196. source: "./media/characters/umeko/front-armored.svg",
  14197. extra: 1,
  14198. bottom: 0.021
  14199. }
  14200. },
  14201. },
  14202. [
  14203. {
  14204. name: "Macro",
  14205. height: math.unit(220, "feet"),
  14206. default: true
  14207. },
  14208. {
  14209. name: "Guardian Dragon",
  14210. height: math.unit(50, "miles")
  14211. },
  14212. {
  14213. name: "Cosmic",
  14214. height: math.unit(800000, "miles")
  14215. },
  14216. ]
  14217. ))
  14218. characterMakers.push(() => makeCharacter(
  14219. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14220. {
  14221. front: {
  14222. height: math.unit(6, "feet"),
  14223. weight: math.unit(150, "lb"),
  14224. name: "Front",
  14225. image: {
  14226. source: "./media/characters/cassidy/front.svg",
  14227. extra: 810/808,
  14228. bottom: 41/851
  14229. }
  14230. },
  14231. },
  14232. [
  14233. {
  14234. name: "Canon Height",
  14235. height: math.unit(120, "feet"),
  14236. default: true
  14237. },
  14238. {
  14239. name: "Macro+",
  14240. height: math.unit(400, "feet")
  14241. },
  14242. {
  14243. name: "Macro++",
  14244. height: math.unit(4000, "feet")
  14245. },
  14246. {
  14247. name: "Megamacro",
  14248. height: math.unit(3, "miles")
  14249. },
  14250. ]
  14251. ))
  14252. characterMakers.push(() => makeCharacter(
  14253. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14254. {
  14255. front: {
  14256. height: math.unit(6, "feet"),
  14257. weight: math.unit(150, "lb"),
  14258. name: "Front",
  14259. image: {
  14260. source: "./media/characters/isaac/front.svg",
  14261. extra: 896 / 815,
  14262. bottom: 0.11
  14263. }
  14264. },
  14265. },
  14266. [
  14267. {
  14268. name: "Human Size",
  14269. height: math.unit(8, "feet"),
  14270. default: true
  14271. },
  14272. {
  14273. name: "Macro",
  14274. height: math.unit(400, "feet")
  14275. },
  14276. {
  14277. name: "Megamacro",
  14278. height: math.unit(50, "miles")
  14279. },
  14280. {
  14281. name: "Canon Height",
  14282. height: math.unit(200, "AU")
  14283. },
  14284. ]
  14285. ))
  14286. characterMakers.push(() => makeCharacter(
  14287. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14288. {
  14289. front: {
  14290. height: math.unit(6, "feet"),
  14291. weight: math.unit(72, "kg"),
  14292. name: "Front",
  14293. image: {
  14294. source: "./media/characters/sleekit/front.svg",
  14295. extra: 4693 / 4487,
  14296. bottom: 0.012
  14297. }
  14298. },
  14299. },
  14300. [
  14301. {
  14302. name: "Minimum Height",
  14303. height: math.unit(10, "meters")
  14304. },
  14305. {
  14306. name: "Smaller",
  14307. height: math.unit(25, "meters")
  14308. },
  14309. {
  14310. name: "Larger",
  14311. height: math.unit(38, "meters"),
  14312. default: true
  14313. },
  14314. {
  14315. name: "Maximum height",
  14316. height: math.unit(100, "meters")
  14317. },
  14318. ]
  14319. ))
  14320. characterMakers.push(() => makeCharacter(
  14321. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14322. {
  14323. front: {
  14324. height: math.unit(6, "feet"),
  14325. weight: math.unit(150, "lb"),
  14326. name: "Front",
  14327. image: {
  14328. source: "./media/characters/nillia/front.svg",
  14329. extra: 2195 / 2037,
  14330. bottom: 0.005
  14331. }
  14332. },
  14333. back: {
  14334. height: math.unit(6, "feet"),
  14335. weight: math.unit(150, "lb"),
  14336. name: "Back",
  14337. image: {
  14338. source: "./media/characters/nillia/back.svg",
  14339. extra: 2195 / 2037,
  14340. bottom: 0.005
  14341. }
  14342. },
  14343. },
  14344. [
  14345. {
  14346. name: "Canon Height",
  14347. height: math.unit(489, "feet"),
  14348. default: true
  14349. }
  14350. ]
  14351. ))
  14352. characterMakers.push(() => makeCharacter(
  14353. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14354. {
  14355. front: {
  14356. height: math.unit(6, "feet"),
  14357. weight: math.unit(150, "lb"),
  14358. name: "Front",
  14359. image: {
  14360. source: "./media/characters/mesmyriza/front.svg",
  14361. extra: 2067 / 1784,
  14362. bottom: 0.035
  14363. }
  14364. },
  14365. foot: {
  14366. height: math.unit(6 / (250 / 35), "feet"),
  14367. name: "Foot",
  14368. image: {
  14369. source: "./media/characters/mesmyriza/foot.svg"
  14370. }
  14371. },
  14372. },
  14373. [
  14374. {
  14375. name: "Macro",
  14376. height: math.unit(457, "meters"),
  14377. default: true
  14378. },
  14379. {
  14380. name: "Megamacro",
  14381. height: math.unit(8, "megameters")
  14382. },
  14383. ]
  14384. ))
  14385. characterMakers.push(() => makeCharacter(
  14386. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14387. {
  14388. front: {
  14389. height: math.unit(6, "feet"),
  14390. weight: math.unit(250, "lb"),
  14391. name: "Front",
  14392. image: {
  14393. source: "./media/characters/saudade/front.svg",
  14394. extra: 1172 / 1139,
  14395. bottom: 0.035
  14396. }
  14397. },
  14398. },
  14399. [
  14400. {
  14401. name: "Micro",
  14402. height: math.unit(3, "inches")
  14403. },
  14404. {
  14405. name: "Normal",
  14406. height: math.unit(6, "feet"),
  14407. default: true
  14408. },
  14409. {
  14410. name: "Macro",
  14411. height: math.unit(50, "feet")
  14412. },
  14413. {
  14414. name: "Megamacro",
  14415. height: math.unit(2800, "feet")
  14416. },
  14417. ]
  14418. ))
  14419. characterMakers.push(() => makeCharacter(
  14420. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14421. {
  14422. front: {
  14423. height: math.unit(5 + 4 / 12, "feet"),
  14424. weight: math.unit(100, "lb"),
  14425. name: "Front",
  14426. image: {
  14427. source: "./media/characters/keireer/front.svg",
  14428. extra: 716 / 666,
  14429. bottom: 0.05
  14430. }
  14431. },
  14432. },
  14433. [
  14434. {
  14435. name: "Normal",
  14436. height: math.unit(5 + 4 / 12, "feet"),
  14437. default: true
  14438. },
  14439. ]
  14440. ))
  14441. characterMakers.push(() => makeCharacter(
  14442. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14443. {
  14444. front: {
  14445. height: math.unit(6, "feet"),
  14446. weight: math.unit(90, "kg"),
  14447. name: "Front",
  14448. image: {
  14449. source: "./media/characters/mirja/front.svg",
  14450. extra: 1789 / 1683,
  14451. bottom: 0.05
  14452. }
  14453. },
  14454. frontDressed: {
  14455. height: math.unit(6, "feet"),
  14456. weight: math.unit(90, "lb"),
  14457. name: "Front (Dressed)",
  14458. image: {
  14459. source: "./media/characters/mirja/front-dressed.svg",
  14460. extra: 1789 / 1683,
  14461. bottom: 0.05
  14462. }
  14463. },
  14464. back: {
  14465. height: math.unit(6, "feet"),
  14466. weight: math.unit(90, "lb"),
  14467. name: "Back",
  14468. image: {
  14469. source: "./media/characters/mirja/back.svg",
  14470. extra: 953 / 917,
  14471. bottom: 0.017
  14472. }
  14473. },
  14474. },
  14475. [
  14476. {
  14477. name: "\"Incognito\"",
  14478. height: math.unit(3, "meters")
  14479. },
  14480. {
  14481. name: "Strolling Size",
  14482. height: math.unit(15, "km")
  14483. },
  14484. {
  14485. name: "Larger Strolling Size",
  14486. height: math.unit(400, "km")
  14487. },
  14488. {
  14489. name: "Preferred Size",
  14490. height: math.unit(5000, "km")
  14491. },
  14492. {
  14493. name: "True Size",
  14494. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14495. default: true
  14496. },
  14497. ]
  14498. ))
  14499. characterMakers.push(() => makeCharacter(
  14500. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14501. {
  14502. front: {
  14503. height: math.unit(15, "feet"),
  14504. weight: math.unit(880, "kg"),
  14505. name: "Front",
  14506. image: {
  14507. source: "./media/characters/nightraver/front.svg",
  14508. extra: 2444 / 2160,
  14509. bottom: 0.027
  14510. }
  14511. },
  14512. back: {
  14513. height: math.unit(15, "feet"),
  14514. weight: math.unit(880, "kg"),
  14515. name: "Back",
  14516. image: {
  14517. source: "./media/characters/nightraver/back.svg",
  14518. extra: 2309 / 2180,
  14519. bottom: 0.005
  14520. }
  14521. },
  14522. sole: {
  14523. height: math.unit(2.878, "feet"),
  14524. name: "Sole",
  14525. image: {
  14526. source: "./media/characters/nightraver/sole.svg"
  14527. }
  14528. },
  14529. foot: {
  14530. height: math.unit(2.285, "feet"),
  14531. name: "Foot",
  14532. image: {
  14533. source: "./media/characters/nightraver/foot.svg"
  14534. }
  14535. },
  14536. maw: {
  14537. height: math.unit(2.67, "feet"),
  14538. name: "Maw",
  14539. image: {
  14540. source: "./media/characters/nightraver/maw.svg"
  14541. }
  14542. },
  14543. },
  14544. [
  14545. {
  14546. name: "Micro",
  14547. height: math.unit(1, "cm")
  14548. },
  14549. {
  14550. name: "Normal",
  14551. height: math.unit(15, "feet"),
  14552. default: true
  14553. },
  14554. {
  14555. name: "Macro",
  14556. height: math.unit(300, "feet")
  14557. },
  14558. {
  14559. name: "Megamacro",
  14560. height: math.unit(300, "miles")
  14561. },
  14562. {
  14563. name: "Gigamacro",
  14564. height: math.unit(10000, "miles")
  14565. },
  14566. ]
  14567. ))
  14568. characterMakers.push(() => makeCharacter(
  14569. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14570. {
  14571. side: {
  14572. height: math.unit(2, "inches"),
  14573. weight: math.unit(5, "grams"),
  14574. name: "Side",
  14575. image: {
  14576. source: "./media/characters/arc/side.svg"
  14577. }
  14578. },
  14579. },
  14580. [
  14581. {
  14582. name: "Micro",
  14583. height: math.unit(2, "inches"),
  14584. default: true
  14585. },
  14586. ]
  14587. ))
  14588. characterMakers.push(() => makeCharacter(
  14589. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14590. {
  14591. front: {
  14592. height: math.unit(1.1938, "meters"),
  14593. weight: math.unit(54, "kg"),
  14594. name: "Front",
  14595. image: {
  14596. source: "./media/characters/nebula-shahar/front.svg",
  14597. extra: 1642 / 1436,
  14598. bottom: 0.06
  14599. }
  14600. },
  14601. },
  14602. [
  14603. {
  14604. name: "Megamicro",
  14605. height: math.unit(0.3, "mm")
  14606. },
  14607. {
  14608. name: "Micro",
  14609. height: math.unit(3, "cm")
  14610. },
  14611. {
  14612. name: "Normal",
  14613. height: math.unit(138, "cm"),
  14614. default: true
  14615. },
  14616. {
  14617. name: "Macro",
  14618. height: math.unit(30, "m")
  14619. },
  14620. ]
  14621. ))
  14622. characterMakers.push(() => makeCharacter(
  14623. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14624. {
  14625. front: {
  14626. height: math.unit(5.24, "feet"),
  14627. weight: math.unit(150, "lb"),
  14628. name: "Front",
  14629. image: {
  14630. source: "./media/characters/shayla/front.svg",
  14631. extra: 1512 / 1414,
  14632. bottom: 0.01
  14633. }
  14634. },
  14635. back: {
  14636. height: math.unit(5.24, "feet"),
  14637. weight: math.unit(150, "lb"),
  14638. name: "Back",
  14639. image: {
  14640. source: "./media/characters/shayla/back.svg",
  14641. extra: 1512 / 1414
  14642. }
  14643. },
  14644. hand: {
  14645. height: math.unit(0.7781496062992126, "feet"),
  14646. name: "Hand",
  14647. image: {
  14648. source: "./media/characters/shayla/hand.svg"
  14649. }
  14650. },
  14651. foot: {
  14652. height: math.unit(1.4206036745406823, "feet"),
  14653. name: "Foot",
  14654. image: {
  14655. source: "./media/characters/shayla/foot.svg"
  14656. }
  14657. },
  14658. },
  14659. [
  14660. {
  14661. name: "Micro",
  14662. height: math.unit(0.32, "feet")
  14663. },
  14664. {
  14665. name: "Normal",
  14666. height: math.unit(5.24, "feet"),
  14667. default: true
  14668. },
  14669. {
  14670. name: "Macro",
  14671. height: math.unit(492.12, "feet")
  14672. },
  14673. {
  14674. name: "Megamacro",
  14675. height: math.unit(186.41, "miles")
  14676. },
  14677. ]
  14678. ))
  14679. characterMakers.push(() => makeCharacter(
  14680. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14681. {
  14682. front: {
  14683. height: math.unit(2.2, "m"),
  14684. weight: math.unit(120, "kg"),
  14685. name: "Front",
  14686. image: {
  14687. source: "./media/characters/pia-jr/front.svg",
  14688. extra: 1000 / 970,
  14689. bottom: 0.035
  14690. }
  14691. },
  14692. hand: {
  14693. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14694. name: "Hand",
  14695. image: {
  14696. source: "./media/characters/pia-jr/hand.svg"
  14697. }
  14698. },
  14699. paw: {
  14700. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14701. name: "Paw",
  14702. image: {
  14703. source: "./media/characters/pia-jr/paw.svg"
  14704. }
  14705. },
  14706. },
  14707. [
  14708. {
  14709. name: "Micro",
  14710. height: math.unit(1.2, "cm")
  14711. },
  14712. {
  14713. name: "Normal",
  14714. height: math.unit(2.2, "m"),
  14715. default: true
  14716. },
  14717. {
  14718. name: "Macro",
  14719. height: math.unit(180, "m")
  14720. },
  14721. {
  14722. name: "Megamacro",
  14723. height: math.unit(420, "km")
  14724. },
  14725. ]
  14726. ))
  14727. characterMakers.push(() => makeCharacter(
  14728. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14729. {
  14730. front: {
  14731. height: math.unit(2, "m"),
  14732. weight: math.unit(115, "kg"),
  14733. name: "Front",
  14734. image: {
  14735. source: "./media/characters/pia-sr/front.svg",
  14736. extra: 760 / 730,
  14737. bottom: 0.015
  14738. }
  14739. },
  14740. back: {
  14741. height: math.unit(2, "m"),
  14742. weight: math.unit(115, "kg"),
  14743. name: "Back",
  14744. image: {
  14745. source: "./media/characters/pia-sr/back.svg",
  14746. extra: 760 / 730,
  14747. bottom: 0.01
  14748. }
  14749. },
  14750. hand: {
  14751. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14752. name: "Hand",
  14753. image: {
  14754. source: "./media/characters/pia-sr/hand.svg"
  14755. }
  14756. },
  14757. foot: {
  14758. height: math.unit(1.83, "feet"),
  14759. name: "Foot",
  14760. image: {
  14761. source: "./media/characters/pia-sr/foot.svg"
  14762. }
  14763. },
  14764. },
  14765. [
  14766. {
  14767. name: "Micro",
  14768. height: math.unit(88, "mm")
  14769. },
  14770. {
  14771. name: "Normal",
  14772. height: math.unit(2, "m"),
  14773. default: true
  14774. },
  14775. {
  14776. name: "Macro",
  14777. height: math.unit(200, "m")
  14778. },
  14779. {
  14780. name: "Megamacro",
  14781. height: math.unit(420, "km")
  14782. },
  14783. ]
  14784. ))
  14785. characterMakers.push(() => makeCharacter(
  14786. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14787. {
  14788. front: {
  14789. height: math.unit(8 + 2 / 12, "feet"),
  14790. weight: math.unit(300, "lb"),
  14791. name: "Front",
  14792. image: {
  14793. source: "./media/characters/kibibyte/front.svg",
  14794. extra: 2221 / 2098,
  14795. bottom: 0.04
  14796. }
  14797. },
  14798. },
  14799. [
  14800. {
  14801. name: "Normal",
  14802. height: math.unit(8 + 2 / 12, "feet"),
  14803. default: true
  14804. },
  14805. {
  14806. name: "Socialable Macro",
  14807. height: math.unit(50, "feet")
  14808. },
  14809. {
  14810. name: "Macro",
  14811. height: math.unit(300, "feet")
  14812. },
  14813. {
  14814. name: "Megamacro",
  14815. height: math.unit(500, "miles")
  14816. },
  14817. ]
  14818. ))
  14819. characterMakers.push(() => makeCharacter(
  14820. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14821. {
  14822. front: {
  14823. height: math.unit(6, "feet"),
  14824. weight: math.unit(150, "lb"),
  14825. name: "Front",
  14826. image: {
  14827. source: "./media/characters/felix/front.svg",
  14828. extra: 762 / 722,
  14829. bottom: 0.02
  14830. }
  14831. },
  14832. frontClothed: {
  14833. height: math.unit(6, "feet"),
  14834. weight: math.unit(150, "lb"),
  14835. name: "Front (Clothed)",
  14836. image: {
  14837. source: "./media/characters/felix/front-clothed.svg",
  14838. extra: 762 / 722,
  14839. bottom: 0.02
  14840. }
  14841. },
  14842. },
  14843. [
  14844. {
  14845. name: "Normal",
  14846. height: math.unit(6 + 8 / 12, "feet"),
  14847. default: true
  14848. },
  14849. {
  14850. name: "Macro",
  14851. height: math.unit(2600, "feet")
  14852. },
  14853. {
  14854. name: "Megamacro",
  14855. height: math.unit(450, "miles")
  14856. },
  14857. ]
  14858. ))
  14859. characterMakers.push(() => makeCharacter(
  14860. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14861. {
  14862. front: {
  14863. height: math.unit(6 + 1 / 12, "feet"),
  14864. weight: math.unit(250, "lb"),
  14865. name: "Front",
  14866. image: {
  14867. source: "./media/characters/tobo/front.svg",
  14868. extra: 608 / 586,
  14869. bottom: 0.023
  14870. }
  14871. },
  14872. back: {
  14873. height: math.unit(6 + 1 / 12, "feet"),
  14874. weight: math.unit(250, "lb"),
  14875. name: "Back",
  14876. image: {
  14877. source: "./media/characters/tobo/back.svg",
  14878. extra: 608 / 586
  14879. }
  14880. },
  14881. },
  14882. [
  14883. {
  14884. name: "Nano",
  14885. height: math.unit(2, "nm")
  14886. },
  14887. {
  14888. name: "Megamicro",
  14889. height: math.unit(0.1, "mm")
  14890. },
  14891. {
  14892. name: "Micro",
  14893. height: math.unit(1, "inch"),
  14894. default: true
  14895. },
  14896. {
  14897. name: "Human-sized",
  14898. height: math.unit(6 + 1 / 12, "feet")
  14899. },
  14900. {
  14901. name: "Macro",
  14902. height: math.unit(250, "feet")
  14903. },
  14904. {
  14905. name: "Megamacro",
  14906. height: math.unit(75, "miles")
  14907. },
  14908. {
  14909. name: "Texas-sized",
  14910. height: math.unit(750, "miles")
  14911. },
  14912. {
  14913. name: "Teramacro",
  14914. height: math.unit(50000, "miles")
  14915. },
  14916. ]
  14917. ))
  14918. characterMakers.push(() => makeCharacter(
  14919. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14920. {
  14921. front: {
  14922. height: math.unit(6, "feet"),
  14923. weight: math.unit(269, "lb"),
  14924. name: "Front",
  14925. image: {
  14926. source: "./media/characters/danny-kapowsky/front.svg",
  14927. extra: 766 / 736,
  14928. bottom: 0.044
  14929. }
  14930. },
  14931. back: {
  14932. height: math.unit(6, "feet"),
  14933. weight: math.unit(269, "lb"),
  14934. name: "Back",
  14935. image: {
  14936. source: "./media/characters/danny-kapowsky/back.svg",
  14937. extra: 797 / 760,
  14938. bottom: 0.025
  14939. }
  14940. },
  14941. },
  14942. [
  14943. {
  14944. name: "Macro",
  14945. height: math.unit(150, "feet"),
  14946. default: true
  14947. },
  14948. {
  14949. name: "Macro+",
  14950. height: math.unit(200, "feet")
  14951. },
  14952. {
  14953. name: "Macro++",
  14954. height: math.unit(300, "feet")
  14955. },
  14956. {
  14957. name: "Macro+++",
  14958. height: math.unit(400, "feet")
  14959. },
  14960. ]
  14961. ))
  14962. characterMakers.push(() => makeCharacter(
  14963. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14964. {
  14965. side: {
  14966. height: math.unit(6, "feet"),
  14967. weight: math.unit(170, "lb"),
  14968. name: "Side",
  14969. image: {
  14970. source: "./media/characters/finn/side.svg",
  14971. extra: 1953 / 1807,
  14972. bottom: 0.057
  14973. }
  14974. },
  14975. },
  14976. [
  14977. {
  14978. name: "Megamacro",
  14979. height: math.unit(14445, "feet"),
  14980. default: true
  14981. },
  14982. ]
  14983. ))
  14984. characterMakers.push(() => makeCharacter(
  14985. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14986. {
  14987. front: {
  14988. height: math.unit(5 + 6 / 12, "feet"),
  14989. weight: math.unit(125, "lb"),
  14990. name: "Front",
  14991. image: {
  14992. source: "./media/characters/roy/front.svg",
  14993. extra: 1,
  14994. bottom: 0.11
  14995. }
  14996. },
  14997. },
  14998. [
  14999. {
  15000. name: "Micro",
  15001. height: math.unit(3, "inches"),
  15002. default: true
  15003. },
  15004. {
  15005. name: "Normal",
  15006. height: math.unit(5 + 6 / 12, "feet")
  15007. },
  15008. {
  15009. name: "Lesser Macro",
  15010. height: math.unit(60, "feet")
  15011. },
  15012. {
  15013. name: "Greater Macro",
  15014. height: math.unit(120, "feet")
  15015. },
  15016. ]
  15017. ))
  15018. characterMakers.push(() => makeCharacter(
  15019. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15020. {
  15021. front: {
  15022. height: math.unit(6, "feet"),
  15023. weight: math.unit(100, "lb"),
  15024. name: "Front",
  15025. image: {
  15026. source: "./media/characters/aevsivs/front.svg",
  15027. extra: 1,
  15028. bottom: 0.03
  15029. }
  15030. },
  15031. back: {
  15032. height: math.unit(6, "feet"),
  15033. weight: math.unit(100, "lb"),
  15034. name: "Back",
  15035. image: {
  15036. source: "./media/characters/aevsivs/back.svg"
  15037. }
  15038. },
  15039. },
  15040. [
  15041. {
  15042. name: "Micro",
  15043. height: math.unit(2, "inches"),
  15044. default: true
  15045. },
  15046. {
  15047. name: "Normal",
  15048. height: math.unit(5, "feet")
  15049. },
  15050. ]
  15051. ))
  15052. characterMakers.push(() => makeCharacter(
  15053. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15054. {
  15055. front: {
  15056. height: math.unit(5 + 7 / 12, "feet"),
  15057. weight: math.unit(159, "lb"),
  15058. name: "Front",
  15059. image: {
  15060. source: "./media/characters/hildegard/front.svg",
  15061. extra: 289 / 269,
  15062. bottom: 7.63 / 297.8
  15063. }
  15064. },
  15065. back: {
  15066. height: math.unit(5 + 7 / 12, "feet"),
  15067. weight: math.unit(159, "lb"),
  15068. name: "Back",
  15069. image: {
  15070. source: "./media/characters/hildegard/back.svg",
  15071. extra: 280 / 260,
  15072. bottom: 2.3 / 282
  15073. }
  15074. },
  15075. },
  15076. [
  15077. {
  15078. name: "Normal",
  15079. height: math.unit(5 + 7 / 12, "feet"),
  15080. default: true
  15081. },
  15082. ]
  15083. ))
  15084. characterMakers.push(() => makeCharacter(
  15085. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15086. {
  15087. bernard: {
  15088. height: math.unit(2 + 7 / 12, "feet"),
  15089. weight: math.unit(66, "lb"),
  15090. name: "Bernard",
  15091. rename: true,
  15092. image: {
  15093. source: "./media/characters/bernard-wilder/bernard.svg",
  15094. extra: 192 / 128,
  15095. bottom: 0.05
  15096. }
  15097. },
  15098. wilder: {
  15099. height: math.unit(5 + 8 / 12, "feet"),
  15100. weight: math.unit(143, "lb"),
  15101. name: "Wilder",
  15102. rename: true,
  15103. image: {
  15104. source: "./media/characters/bernard-wilder/wilder.svg",
  15105. extra: 361 / 312,
  15106. bottom: 0.02
  15107. }
  15108. },
  15109. },
  15110. [
  15111. {
  15112. name: "Normal",
  15113. height: math.unit(2 + 7 / 12, "feet"),
  15114. default: true
  15115. },
  15116. ]
  15117. ))
  15118. characterMakers.push(() => makeCharacter(
  15119. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15120. {
  15121. anthro: {
  15122. height: math.unit(6 + 1 / 12, "feet"),
  15123. weight: math.unit(155, "lb"),
  15124. name: "Anthro",
  15125. image: {
  15126. source: "./media/characters/hearth/anthro.svg",
  15127. extra: 1178/1136,
  15128. bottom: 28/1206
  15129. }
  15130. },
  15131. feral: {
  15132. height: math.unit(3.78, "feet"),
  15133. weight: math.unit(35, "kg"),
  15134. name: "Feral",
  15135. image: {
  15136. source: "./media/characters/hearth/feral.svg",
  15137. extra: 153 / 135,
  15138. bottom: 0.03
  15139. }
  15140. },
  15141. },
  15142. [
  15143. {
  15144. name: "Normal",
  15145. height: math.unit(6 + 1 / 12, "feet"),
  15146. default: true
  15147. },
  15148. ]
  15149. ))
  15150. characterMakers.push(() => makeCharacter(
  15151. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15152. {
  15153. front: {
  15154. height: math.unit(6, "feet"),
  15155. weight: math.unit(182, "lb"),
  15156. name: "Front",
  15157. image: {
  15158. source: "./media/characters/ingrid/front.svg",
  15159. extra: 294 / 268,
  15160. bottom: 0.027
  15161. }
  15162. },
  15163. },
  15164. [
  15165. {
  15166. name: "Normal",
  15167. height: math.unit(6, "feet"),
  15168. default: true
  15169. },
  15170. ]
  15171. ))
  15172. characterMakers.push(() => makeCharacter(
  15173. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15174. {
  15175. eevee: {
  15176. height: math.unit(2 + 10 / 12, "feet"),
  15177. weight: math.unit(86, "lb"),
  15178. name: "Malgam",
  15179. image: {
  15180. source: "./media/characters/malgam/eevee.svg",
  15181. extra: 952/784,
  15182. bottom: 38/990
  15183. }
  15184. },
  15185. sylveon: {
  15186. height: math.unit(4, "feet"),
  15187. weight: math.unit(101, "lb"),
  15188. name: "Future Malgam",
  15189. rename: true,
  15190. image: {
  15191. source: "./media/characters/malgam/sylveon.svg",
  15192. extra: 371 / 325,
  15193. bottom: 0.015
  15194. }
  15195. },
  15196. gigantamax: {
  15197. height: math.unit(50, "feet"),
  15198. name: "Gigantamax Malgam",
  15199. rename: true,
  15200. image: {
  15201. source: "./media/characters/malgam/gigantamax.svg"
  15202. }
  15203. },
  15204. },
  15205. [
  15206. {
  15207. name: "Normal",
  15208. height: math.unit(2 + 10 / 12, "feet"),
  15209. default: true
  15210. },
  15211. ]
  15212. ))
  15213. characterMakers.push(() => makeCharacter(
  15214. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15215. {
  15216. front: {
  15217. height: math.unit(5 + 11 / 12, "feet"),
  15218. weight: math.unit(188, "lb"),
  15219. name: "Front",
  15220. image: {
  15221. source: "./media/characters/fleur/front.svg",
  15222. extra: 309 / 283,
  15223. bottom: 0.007
  15224. }
  15225. },
  15226. },
  15227. [
  15228. {
  15229. name: "Normal",
  15230. height: math.unit(5 + 11 / 12, "feet"),
  15231. default: true
  15232. },
  15233. ]
  15234. ))
  15235. characterMakers.push(() => makeCharacter(
  15236. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15237. {
  15238. front: {
  15239. height: math.unit(5 + 4 / 12, "feet"),
  15240. weight: math.unit(122, "lb"),
  15241. name: "Front",
  15242. image: {
  15243. source: "./media/characters/jude/front.svg",
  15244. extra: 288 / 273,
  15245. bottom: 0.03
  15246. }
  15247. },
  15248. },
  15249. [
  15250. {
  15251. name: "Normal",
  15252. height: math.unit(5 + 4 / 12, "feet"),
  15253. default: true
  15254. },
  15255. ]
  15256. ))
  15257. characterMakers.push(() => makeCharacter(
  15258. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15259. {
  15260. front: {
  15261. height: math.unit(5 + 11 / 12, "feet"),
  15262. weight: math.unit(190, "lb"),
  15263. name: "Front",
  15264. image: {
  15265. source: "./media/characters/seara/front.svg",
  15266. extra: 1,
  15267. bottom: 0.05
  15268. }
  15269. },
  15270. },
  15271. [
  15272. {
  15273. name: "Normal",
  15274. height: math.unit(5 + 11 / 12, "feet"),
  15275. default: true
  15276. },
  15277. ]
  15278. ))
  15279. characterMakers.push(() => makeCharacter(
  15280. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15281. {
  15282. front: {
  15283. height: math.unit(16 + 5 / 12, "feet"),
  15284. weight: math.unit(524, "lb"),
  15285. name: "Front",
  15286. image: {
  15287. source: "./media/characters/caspian/front.svg",
  15288. extra: 1,
  15289. bottom: 0.04
  15290. }
  15291. },
  15292. },
  15293. [
  15294. {
  15295. name: "Normal",
  15296. height: math.unit(16 + 5 / 12, "feet"),
  15297. default: true
  15298. },
  15299. ]
  15300. ))
  15301. characterMakers.push(() => makeCharacter(
  15302. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15303. {
  15304. front: {
  15305. height: math.unit(5 + 7 / 12, "feet"),
  15306. weight: math.unit(170, "lb"),
  15307. name: "Front",
  15308. image: {
  15309. source: "./media/characters/mika/front.svg",
  15310. extra: 1,
  15311. bottom: 0.016
  15312. }
  15313. },
  15314. },
  15315. [
  15316. {
  15317. name: "Normal",
  15318. height: math.unit(5 + 7 / 12, "feet"),
  15319. default: true
  15320. },
  15321. ]
  15322. ))
  15323. characterMakers.push(() => makeCharacter(
  15324. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15325. {
  15326. front: {
  15327. height: math.unit(6 + 2 / 12, "feet"),
  15328. weight: math.unit(268, "lb"),
  15329. name: "Front",
  15330. image: {
  15331. source: "./media/characters/sol/front.svg",
  15332. extra: 247 / 231,
  15333. bottom: 0.05
  15334. }
  15335. },
  15336. },
  15337. [
  15338. {
  15339. name: "Normal",
  15340. height: math.unit(6 + 2 / 12, "feet"),
  15341. default: true
  15342. },
  15343. ]
  15344. ))
  15345. characterMakers.push(() => makeCharacter(
  15346. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15347. {
  15348. buizel: {
  15349. height: math.unit(2 + 5 / 12, "feet"),
  15350. weight: math.unit(87, "lb"),
  15351. name: "Buizel",
  15352. image: {
  15353. source: "./media/characters/umiko/buizel.svg",
  15354. extra: 172 / 157,
  15355. bottom: 0.01
  15356. }
  15357. },
  15358. floatzel: {
  15359. height: math.unit(5 + 9 / 12, "feet"),
  15360. weight: math.unit(250, "lb"),
  15361. name: "Floatzel",
  15362. image: {
  15363. source: "./media/characters/umiko/floatzel.svg",
  15364. extra: 262 / 248
  15365. }
  15366. },
  15367. },
  15368. [
  15369. {
  15370. name: "Normal",
  15371. height: math.unit(2 + 5 / 12, "feet"),
  15372. default: true
  15373. },
  15374. ]
  15375. ))
  15376. characterMakers.push(() => makeCharacter(
  15377. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15378. {
  15379. front: {
  15380. height: math.unit(6 + 2 / 12, "feet"),
  15381. weight: math.unit(146, "lb"),
  15382. name: "Front",
  15383. image: {
  15384. source: "./media/characters/iliac/front.svg",
  15385. extra: 389 / 365,
  15386. bottom: 0.035
  15387. }
  15388. },
  15389. },
  15390. [
  15391. {
  15392. name: "Normal",
  15393. height: math.unit(6 + 2 / 12, "feet"),
  15394. default: true
  15395. },
  15396. ]
  15397. ))
  15398. characterMakers.push(() => makeCharacter(
  15399. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15400. {
  15401. front: {
  15402. height: math.unit(6, "feet"),
  15403. weight: math.unit(170, "lb"),
  15404. name: "Front",
  15405. image: {
  15406. source: "./media/characters/topaz/front.svg",
  15407. extra: 317 / 303,
  15408. bottom: 0.055
  15409. }
  15410. },
  15411. },
  15412. [
  15413. {
  15414. name: "Normal",
  15415. height: math.unit(6, "feet"),
  15416. default: true
  15417. },
  15418. ]
  15419. ))
  15420. characterMakers.push(() => makeCharacter(
  15421. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15422. {
  15423. front: {
  15424. height: math.unit(5 + 11 / 12, "feet"),
  15425. weight: math.unit(144, "lb"),
  15426. name: "Front",
  15427. image: {
  15428. source: "./media/characters/gabriel/front.svg",
  15429. extra: 285 / 262,
  15430. bottom: 0.004
  15431. }
  15432. },
  15433. },
  15434. [
  15435. {
  15436. name: "Normal",
  15437. height: math.unit(5 + 11 / 12, "feet"),
  15438. default: true
  15439. },
  15440. ]
  15441. ))
  15442. characterMakers.push(() => makeCharacter(
  15443. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15444. {
  15445. side: {
  15446. height: math.unit(6 + 5 / 12, "feet"),
  15447. weight: math.unit(300, "lb"),
  15448. name: "Side",
  15449. image: {
  15450. source: "./media/characters/tempest-suicune/side.svg",
  15451. extra: 195 / 154,
  15452. bottom: 0.04
  15453. }
  15454. },
  15455. },
  15456. [
  15457. {
  15458. name: "Normal",
  15459. height: math.unit(6 + 5 / 12, "feet"),
  15460. default: true
  15461. },
  15462. ]
  15463. ))
  15464. characterMakers.push(() => makeCharacter(
  15465. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15466. {
  15467. front: {
  15468. height: math.unit(7 + 2 / 12, "feet"),
  15469. weight: math.unit(322, "lb"),
  15470. name: "Front",
  15471. image: {
  15472. source: "./media/characters/vulcan/front.svg",
  15473. extra: 154 / 147,
  15474. bottom: 0.04
  15475. }
  15476. },
  15477. },
  15478. [
  15479. {
  15480. name: "Normal",
  15481. height: math.unit(7 + 2 / 12, "feet"),
  15482. default: true
  15483. },
  15484. ]
  15485. ))
  15486. characterMakers.push(() => makeCharacter(
  15487. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15488. {
  15489. front: {
  15490. height: math.unit(5 + 10 / 12, "feet"),
  15491. weight: math.unit(264, "lb"),
  15492. name: "Front",
  15493. image: {
  15494. source: "./media/characters/gault/front.svg",
  15495. extra: 161 / 140,
  15496. bottom: 0.028
  15497. }
  15498. },
  15499. },
  15500. [
  15501. {
  15502. name: "Normal",
  15503. height: math.unit(5 + 10 / 12, "feet"),
  15504. default: true
  15505. },
  15506. ]
  15507. ))
  15508. characterMakers.push(() => makeCharacter(
  15509. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15510. {
  15511. front: {
  15512. height: math.unit(6, "feet"),
  15513. weight: math.unit(150, "lb"),
  15514. name: "Front",
  15515. image: {
  15516. source: "./media/characters/shard/front.svg",
  15517. extra: 273 / 238,
  15518. bottom: 0.02
  15519. }
  15520. },
  15521. },
  15522. [
  15523. {
  15524. name: "Normal",
  15525. height: math.unit(3 + 6 / 12, "feet"),
  15526. default: true
  15527. },
  15528. ]
  15529. ))
  15530. characterMakers.push(() => makeCharacter(
  15531. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15532. {
  15533. front: {
  15534. height: math.unit(5 + 11 / 12, "feet"),
  15535. weight: math.unit(146, "lb"),
  15536. name: "Front",
  15537. image: {
  15538. source: "./media/characters/ashe/front.svg",
  15539. extra: 400 / 373,
  15540. bottom: 0.01
  15541. }
  15542. },
  15543. },
  15544. [
  15545. {
  15546. name: "Normal",
  15547. height: math.unit(5 + 11 / 12, "feet"),
  15548. default: true
  15549. },
  15550. ]
  15551. ))
  15552. characterMakers.push(() => makeCharacter(
  15553. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15554. {
  15555. front: {
  15556. height: math.unit(5 + 5 / 12, "feet"),
  15557. weight: math.unit(135, "lb"),
  15558. name: "Front",
  15559. image: {
  15560. source: "./media/characters/beatrix/front.svg",
  15561. extra: 392 / 379,
  15562. bottom: 0.01
  15563. }
  15564. },
  15565. },
  15566. [
  15567. {
  15568. name: "Normal",
  15569. height: math.unit(6, "feet"),
  15570. default: true
  15571. },
  15572. ]
  15573. ))
  15574. characterMakers.push(() => makeCharacter(
  15575. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15576. {
  15577. front: {
  15578. height: math.unit(6 + 2/12, "feet"),
  15579. weight: math.unit(135, "lb"),
  15580. name: "Front",
  15581. image: {
  15582. source: "./media/characters/ignatius/front.svg",
  15583. extra: 1380/1259,
  15584. bottom: 27/1407
  15585. }
  15586. },
  15587. },
  15588. [
  15589. {
  15590. name: "Normal",
  15591. height: math.unit(6 + 2/12, "feet"),
  15592. default: true
  15593. },
  15594. ]
  15595. ))
  15596. characterMakers.push(() => makeCharacter(
  15597. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15598. {
  15599. front: {
  15600. height: math.unit(6 + 2 / 12, "feet"),
  15601. weight: math.unit(138, "lb"),
  15602. name: "Front",
  15603. image: {
  15604. source: "./media/characters/mei-li/front.svg",
  15605. extra: 237 / 229,
  15606. bottom: 0.03
  15607. }
  15608. },
  15609. },
  15610. [
  15611. {
  15612. name: "Normal",
  15613. height: math.unit(6 + 2 / 12, "feet"),
  15614. default: true
  15615. },
  15616. ]
  15617. ))
  15618. characterMakers.push(() => makeCharacter(
  15619. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15620. {
  15621. front: {
  15622. height: math.unit(2 + 4 / 12, "feet"),
  15623. weight: math.unit(62, "lb"),
  15624. name: "Front",
  15625. image: {
  15626. source: "./media/characters/puru/front.svg",
  15627. extra: 206 / 149,
  15628. bottom: 0.06
  15629. }
  15630. },
  15631. },
  15632. [
  15633. {
  15634. name: "Normal",
  15635. height: math.unit(2 + 4 / 12, "feet"),
  15636. default: true
  15637. },
  15638. ]
  15639. ))
  15640. characterMakers.push(() => makeCharacter(
  15641. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15642. {
  15643. anthro: {
  15644. height: math.unit(5 + 8/12, "feet"),
  15645. weight: math.unit(200, "lb"),
  15646. energyNeed: math.unit(2000, "kcal"),
  15647. name: "Anthro",
  15648. image: {
  15649. source: "./media/characters/kee/anthro.svg",
  15650. extra: 3251/3184,
  15651. bottom: 250/3501
  15652. }
  15653. },
  15654. taur: {
  15655. height: math.unit(11, "feet"),
  15656. weight: math.unit(500, "lb"),
  15657. energyNeed: math.unit(5000, "kcal"),
  15658. name: "Taur",
  15659. image: {
  15660. source: "./media/characters/kee/taur.svg",
  15661. extra: 1362/1320,
  15662. bottom: 83/1445
  15663. }
  15664. },
  15665. },
  15666. [
  15667. {
  15668. name: "Normal",
  15669. height: math.unit(5 + 8/12, "feet"),
  15670. default: true
  15671. },
  15672. {
  15673. name: "Macro",
  15674. height: math.unit(35, "feet")
  15675. },
  15676. ]
  15677. ))
  15678. characterMakers.push(() => makeCharacter(
  15679. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15680. {
  15681. anthro: {
  15682. height: math.unit(7, "feet"),
  15683. weight: math.unit(190, "lb"),
  15684. name: "Anthro",
  15685. image: {
  15686. source: "./media/characters/cobalt-dracha/anthro.svg",
  15687. extra: 231 / 225,
  15688. bottom: 0.04
  15689. }
  15690. },
  15691. feral: {
  15692. height: math.unit(9 + 7 / 12, "feet"),
  15693. weight: math.unit(294, "lb"),
  15694. name: "Feral",
  15695. image: {
  15696. source: "./media/characters/cobalt-dracha/feral.svg",
  15697. extra: 692 / 633,
  15698. bottom: 0.05
  15699. }
  15700. },
  15701. },
  15702. [
  15703. {
  15704. name: "Normal",
  15705. height: math.unit(7, "feet"),
  15706. default: true
  15707. },
  15708. ]
  15709. ))
  15710. characterMakers.push(() => makeCharacter(
  15711. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15712. {
  15713. fallen: {
  15714. height: math.unit(11 + 8 / 12, "feet"),
  15715. weight: math.unit(485, "lb"),
  15716. name: "Java (Fallen)",
  15717. rename: true,
  15718. image: {
  15719. source: "./media/characters/java/fallen.svg",
  15720. extra: 226 / 208,
  15721. bottom: 0.005
  15722. }
  15723. },
  15724. godkin: {
  15725. height: math.unit(10 + 6 / 12, "feet"),
  15726. weight: math.unit(328, "lb"),
  15727. name: "Java (Godkin)",
  15728. rename: true,
  15729. image: {
  15730. source: "./media/characters/java/godkin.svg",
  15731. extra: 1104/1068,
  15732. bottom: 36/1140
  15733. }
  15734. },
  15735. },
  15736. [
  15737. {
  15738. name: "Normal",
  15739. height: math.unit(11 + 8 / 12, "feet"),
  15740. default: true
  15741. },
  15742. ]
  15743. ))
  15744. characterMakers.push(() => makeCharacter(
  15745. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15746. {
  15747. front: {
  15748. height: math.unit(5 + 9 / 12, "feet"),
  15749. weight: math.unit(170, "lb"),
  15750. name: "Front",
  15751. image: {
  15752. source: "./media/characters/purna/front.svg",
  15753. extra: 239 / 229,
  15754. bottom: 0.01
  15755. }
  15756. },
  15757. },
  15758. [
  15759. {
  15760. name: "Normal",
  15761. height: math.unit(5 + 9 / 12, "feet"),
  15762. default: true
  15763. },
  15764. ]
  15765. ))
  15766. characterMakers.push(() => makeCharacter(
  15767. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15768. {
  15769. front: {
  15770. height: math.unit(5 + 9 / 12, "feet"),
  15771. weight: math.unit(142, "lb"),
  15772. name: "Front",
  15773. image: {
  15774. source: "./media/characters/kuva/front.svg",
  15775. extra: 281 / 271,
  15776. bottom: 0.006
  15777. }
  15778. },
  15779. },
  15780. [
  15781. {
  15782. name: "Normal",
  15783. height: math.unit(5 + 9 / 12, "feet"),
  15784. default: true
  15785. },
  15786. ]
  15787. ))
  15788. characterMakers.push(() => makeCharacter(
  15789. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15790. {
  15791. anthro: {
  15792. height: math.unit(9 + 2 / 12, "feet"),
  15793. weight: math.unit(270, "lb"),
  15794. name: "Anthro",
  15795. image: {
  15796. source: "./media/characters/embra/anthro.svg",
  15797. extra: 200 / 187,
  15798. bottom: 0.02
  15799. }
  15800. },
  15801. feral: {
  15802. height: math.unit(18 + 8 / 12, "feet"),
  15803. weight: math.unit(576, "lb"),
  15804. name: "Feral",
  15805. image: {
  15806. source: "./media/characters/embra/feral.svg",
  15807. extra: 152 / 137,
  15808. bottom: 0.037
  15809. }
  15810. },
  15811. },
  15812. [
  15813. {
  15814. name: "Normal",
  15815. height: math.unit(9 + 2 / 12, "feet"),
  15816. default: true
  15817. },
  15818. ]
  15819. ))
  15820. characterMakers.push(() => makeCharacter(
  15821. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15822. {
  15823. anthro: {
  15824. height: math.unit(10 + 9 / 12, "feet"),
  15825. weight: math.unit(224, "lb"),
  15826. name: "Anthro",
  15827. image: {
  15828. source: "./media/characters/grottos/anthro.svg",
  15829. extra: 350 / 332,
  15830. bottom: 0.045
  15831. }
  15832. },
  15833. feral: {
  15834. height: math.unit(20 + 7 / 12, "feet"),
  15835. weight: math.unit(629, "lb"),
  15836. name: "Feral",
  15837. image: {
  15838. source: "./media/characters/grottos/feral.svg",
  15839. extra: 207 / 190,
  15840. bottom: 0.05
  15841. }
  15842. },
  15843. },
  15844. [
  15845. {
  15846. name: "Normal",
  15847. height: math.unit(10 + 9 / 12, "feet"),
  15848. default: true
  15849. },
  15850. ]
  15851. ))
  15852. characterMakers.push(() => makeCharacter(
  15853. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15854. {
  15855. anthro: {
  15856. height: math.unit(9 + 6 / 12, "feet"),
  15857. weight: math.unit(298, "lb"),
  15858. name: "Anthro",
  15859. image: {
  15860. source: "./media/characters/frifna/anthro.svg",
  15861. extra: 282 / 269,
  15862. bottom: 0.015
  15863. }
  15864. },
  15865. feral: {
  15866. height: math.unit(16 + 2 / 12, "feet"),
  15867. weight: math.unit(624, "lb"),
  15868. name: "Feral",
  15869. image: {
  15870. source: "./media/characters/frifna/feral.svg"
  15871. }
  15872. },
  15873. },
  15874. [
  15875. {
  15876. name: "Normal",
  15877. height: math.unit(9 + 6 / 12, "feet"),
  15878. default: true
  15879. },
  15880. ]
  15881. ))
  15882. characterMakers.push(() => makeCharacter(
  15883. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15884. {
  15885. front: {
  15886. height: math.unit(6 + 2 / 12, "feet"),
  15887. weight: math.unit(168, "lb"),
  15888. name: "Front",
  15889. image: {
  15890. source: "./media/characters/elise/front.svg",
  15891. extra: 276 / 271
  15892. }
  15893. },
  15894. },
  15895. [
  15896. {
  15897. name: "Normal",
  15898. height: math.unit(6 + 2 / 12, "feet"),
  15899. default: true
  15900. },
  15901. ]
  15902. ))
  15903. characterMakers.push(() => makeCharacter(
  15904. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15905. {
  15906. front: {
  15907. height: math.unit(5 + 10 / 12, "feet"),
  15908. weight: math.unit(210, "lb"),
  15909. name: "Front",
  15910. image: {
  15911. source: "./media/characters/glade/front.svg",
  15912. extra: 258 / 247,
  15913. bottom: 0.008
  15914. }
  15915. },
  15916. },
  15917. [
  15918. {
  15919. name: "Normal",
  15920. height: math.unit(5 + 10 / 12, "feet"),
  15921. default: true
  15922. },
  15923. ]
  15924. ))
  15925. characterMakers.push(() => makeCharacter(
  15926. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15927. {
  15928. front: {
  15929. height: math.unit(5 + 10 / 12, "feet"),
  15930. weight: math.unit(129, "lb"),
  15931. name: "Front",
  15932. image: {
  15933. source: "./media/characters/rina/front.svg",
  15934. extra: 266 / 255,
  15935. bottom: 0.005
  15936. }
  15937. },
  15938. },
  15939. [
  15940. {
  15941. name: "Normal",
  15942. height: math.unit(5 + 10 / 12, "feet"),
  15943. default: true
  15944. },
  15945. ]
  15946. ))
  15947. characterMakers.push(() => makeCharacter(
  15948. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15949. {
  15950. front: {
  15951. height: math.unit(6 + 1 / 12, "feet"),
  15952. weight: math.unit(192, "lb"),
  15953. name: "Front",
  15954. image: {
  15955. source: "./media/characters/veronica/front.svg",
  15956. extra: 319 / 309,
  15957. bottom: 0.005
  15958. }
  15959. },
  15960. },
  15961. [
  15962. {
  15963. name: "Normal",
  15964. height: math.unit(6 + 1 / 12, "feet"),
  15965. default: true
  15966. },
  15967. ]
  15968. ))
  15969. characterMakers.push(() => makeCharacter(
  15970. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15971. {
  15972. front: {
  15973. height: math.unit(9 + 3 / 12, "feet"),
  15974. weight: math.unit(1100, "lb"),
  15975. name: "Front",
  15976. image: {
  15977. source: "./media/characters/braxton/front.svg",
  15978. extra: 1057 / 984,
  15979. bottom: 0.05
  15980. }
  15981. },
  15982. },
  15983. [
  15984. {
  15985. name: "Normal",
  15986. height: math.unit(9 + 3 / 12, "feet")
  15987. },
  15988. {
  15989. name: "Giant",
  15990. height: math.unit(300, "feet"),
  15991. default: true
  15992. },
  15993. {
  15994. name: "Macro",
  15995. height: math.unit(700, "feet")
  15996. },
  15997. {
  15998. name: "Megamacro",
  15999. height: math.unit(6000, "feet")
  16000. },
  16001. ]
  16002. ))
  16003. characterMakers.push(() => makeCharacter(
  16004. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16005. {
  16006. front: {
  16007. height: math.unit(6 + 7 / 12, "feet"),
  16008. weight: math.unit(150, "lb"),
  16009. name: "Front",
  16010. image: {
  16011. source: "./media/characters/blue-feyonics/front.svg",
  16012. extra: 1403 / 1306,
  16013. bottom: 0.047
  16014. }
  16015. },
  16016. },
  16017. [
  16018. {
  16019. name: "Normal",
  16020. height: math.unit(6 + 7 / 12, "feet"),
  16021. default: true
  16022. },
  16023. ]
  16024. ))
  16025. characterMakers.push(() => makeCharacter(
  16026. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16027. {
  16028. front: {
  16029. height: math.unit(1.8, "meters"),
  16030. weight: math.unit(60, "kg"),
  16031. name: "Front",
  16032. image: {
  16033. source: "./media/characters/maxwell/front.svg",
  16034. extra: 2060 / 1873
  16035. }
  16036. },
  16037. },
  16038. [
  16039. {
  16040. name: "Micro",
  16041. height: math.unit(1, "mm")
  16042. },
  16043. {
  16044. name: "Normal",
  16045. height: math.unit(1.8, "meter"),
  16046. default: true
  16047. },
  16048. {
  16049. name: "Macro",
  16050. height: math.unit(30, "meters")
  16051. },
  16052. {
  16053. name: "Megamacro",
  16054. height: math.unit(10, "km")
  16055. },
  16056. ]
  16057. ))
  16058. characterMakers.push(() => makeCharacter(
  16059. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16060. {
  16061. front: {
  16062. height: math.unit(6, "feet"),
  16063. weight: math.unit(150, "lb"),
  16064. name: "Front",
  16065. image: {
  16066. source: "./media/characters/jack/front.svg",
  16067. extra: 1754 / 1640,
  16068. bottom: 0.01
  16069. }
  16070. },
  16071. },
  16072. [
  16073. {
  16074. name: "Normal",
  16075. height: math.unit(80000, "feet"),
  16076. default: true
  16077. },
  16078. {
  16079. name: "Max size",
  16080. height: math.unit(10, "lightyears")
  16081. },
  16082. ]
  16083. ))
  16084. characterMakers.push(() => makeCharacter(
  16085. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16086. {
  16087. urban: {
  16088. height: math.unit(5, "feet"),
  16089. weight: math.unit(240, "lb"),
  16090. name: "Urban",
  16091. image: {
  16092. source: "./media/characters/cafat/urban.svg",
  16093. extra: 1223/1126,
  16094. bottom: 205/1428
  16095. }
  16096. },
  16097. summer: {
  16098. height: math.unit(5, "feet"),
  16099. weight: math.unit(240, "lb"),
  16100. name: "Summer",
  16101. image: {
  16102. source: "./media/characters/cafat/summer.svg",
  16103. extra: 1223/1126,
  16104. bottom: 205/1428
  16105. }
  16106. },
  16107. winter: {
  16108. height: math.unit(5, "feet"),
  16109. weight: math.unit(240, "lb"),
  16110. name: "Winter",
  16111. image: {
  16112. source: "./media/characters/cafat/winter.svg",
  16113. extra: 1223/1126,
  16114. bottom: 205/1428
  16115. }
  16116. },
  16117. lingerie: {
  16118. height: math.unit(5, "feet"),
  16119. weight: math.unit(240, "lb"),
  16120. name: "Lingerie",
  16121. image: {
  16122. source: "./media/characters/cafat/lingerie.svg",
  16123. extra: 1223/1126,
  16124. bottom: 205/1428
  16125. }
  16126. },
  16127. upright: {
  16128. height: math.unit(6.3, "feet"),
  16129. weight: math.unit(240, "lb"),
  16130. name: "Upright",
  16131. image: {
  16132. source: "./media/characters/cafat/upright.svg",
  16133. bottom: 0.01
  16134. }
  16135. },
  16136. uprightFull: {
  16137. height: math.unit(6.3, "feet"),
  16138. weight: math.unit(240, "lb"),
  16139. name: "Upright (Full)",
  16140. image: {
  16141. source: "./media/characters/cafat/upright-full.svg",
  16142. bottom: 0.01
  16143. }
  16144. },
  16145. },
  16146. [
  16147. {
  16148. name: "Small",
  16149. height: math.unit(5, "feet"),
  16150. default: true
  16151. },
  16152. {
  16153. name: "Large",
  16154. height: math.unit(13, "feet")
  16155. },
  16156. ]
  16157. ))
  16158. characterMakers.push(() => makeCharacter(
  16159. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16160. {
  16161. front: {
  16162. height: math.unit(6, "feet"),
  16163. weight: math.unit(150, "lb"),
  16164. name: "Front",
  16165. image: {
  16166. source: "./media/characters/verin-raharra/front.svg",
  16167. extra: 5019 / 4835,
  16168. bottom: 0.023
  16169. }
  16170. },
  16171. },
  16172. [
  16173. {
  16174. name: "Normal",
  16175. height: math.unit(7 + 5 / 12, "feet"),
  16176. default: true
  16177. },
  16178. {
  16179. name: "Upsized",
  16180. height: math.unit(20, "feet")
  16181. },
  16182. ]
  16183. ))
  16184. characterMakers.push(() => makeCharacter(
  16185. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16186. {
  16187. front: {
  16188. height: math.unit(7, "feet"),
  16189. weight: math.unit(230, "lb"),
  16190. name: "Front",
  16191. image: {
  16192. source: "./media/characters/nakata/front.svg",
  16193. extra: 1.005,
  16194. bottom: 0.01
  16195. }
  16196. },
  16197. },
  16198. [
  16199. {
  16200. name: "Normal",
  16201. height: math.unit(7, "feet"),
  16202. default: true
  16203. },
  16204. {
  16205. name: "Big",
  16206. height: math.unit(14, "feet")
  16207. },
  16208. {
  16209. name: "Macro",
  16210. height: math.unit(400, "feet")
  16211. },
  16212. ]
  16213. ))
  16214. characterMakers.push(() => makeCharacter(
  16215. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16216. {
  16217. front: {
  16218. height: math.unit(4.91, "feet"),
  16219. weight: math.unit(100, "lb"),
  16220. name: "Front",
  16221. image: {
  16222. source: "./media/characters/lily/front.svg",
  16223. extra: 1585 / 1415,
  16224. bottom: 0.02
  16225. }
  16226. },
  16227. },
  16228. [
  16229. {
  16230. name: "Normal",
  16231. height: math.unit(4.91, "feet"),
  16232. default: true
  16233. },
  16234. ]
  16235. ))
  16236. characterMakers.push(() => makeCharacter(
  16237. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16238. {
  16239. laying: {
  16240. height: math.unit(4 + 4 / 12, "feet"),
  16241. weight: math.unit(600, "lb"),
  16242. name: "Laying",
  16243. image: {
  16244. source: "./media/characters/sheila/laying.svg",
  16245. extra: 1333 / 1265,
  16246. bottom: 0.16
  16247. }
  16248. },
  16249. },
  16250. [
  16251. {
  16252. name: "Normal",
  16253. height: math.unit(4 + 4 / 12, "feet"),
  16254. default: true
  16255. },
  16256. ]
  16257. ))
  16258. characterMakers.push(() => makeCharacter(
  16259. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16260. {
  16261. front: {
  16262. height: math.unit(6, "feet"),
  16263. weight: math.unit(190, "lb"),
  16264. name: "Front",
  16265. image: {
  16266. source: "./media/characters/sax/front.svg",
  16267. extra: 1187 / 973,
  16268. bottom: 0.042
  16269. }
  16270. },
  16271. },
  16272. [
  16273. {
  16274. name: "Micro",
  16275. height: math.unit(4, "inches"),
  16276. default: true
  16277. },
  16278. ]
  16279. ))
  16280. characterMakers.push(() => makeCharacter(
  16281. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16282. {
  16283. front: {
  16284. height: math.unit(6, "feet"),
  16285. weight: math.unit(150, "lb"),
  16286. name: "Front",
  16287. image: {
  16288. source: "./media/characters/pandora/front.svg",
  16289. extra: 2720 / 2556,
  16290. bottom: 0.015
  16291. }
  16292. },
  16293. back: {
  16294. height: math.unit(6, "feet"),
  16295. weight: math.unit(150, "lb"),
  16296. name: "Back",
  16297. image: {
  16298. source: "./media/characters/pandora/back.svg",
  16299. extra: 2720 / 2556,
  16300. bottom: 0.01
  16301. }
  16302. },
  16303. beans: {
  16304. height: math.unit(6 / 8, "feet"),
  16305. name: "Beans",
  16306. image: {
  16307. source: "./media/characters/pandora/beans.svg"
  16308. }
  16309. },
  16310. collar: {
  16311. height: math.unit(0.31, "feet"),
  16312. name: "Collar",
  16313. image: {
  16314. source: "./media/characters/pandora/collar.svg"
  16315. }
  16316. },
  16317. skirt: {
  16318. height: math.unit(6, "feet"),
  16319. weight: math.unit(150, "lb"),
  16320. name: "Skirt",
  16321. image: {
  16322. source: "./media/characters/pandora/skirt.svg",
  16323. extra: 1622 / 1525,
  16324. bottom: 0.015
  16325. }
  16326. },
  16327. hoodie: {
  16328. height: math.unit(6, "feet"),
  16329. weight: math.unit(150, "lb"),
  16330. name: "Hoodie",
  16331. image: {
  16332. source: "./media/characters/pandora/hoodie.svg",
  16333. extra: 1622 / 1525,
  16334. bottom: 0.015
  16335. }
  16336. },
  16337. casual: {
  16338. height: math.unit(6, "feet"),
  16339. weight: math.unit(150, "lb"),
  16340. name: "Casual",
  16341. image: {
  16342. source: "./media/characters/pandora/casual.svg",
  16343. extra: 1622 / 1525,
  16344. bottom: 0.015
  16345. }
  16346. },
  16347. },
  16348. [
  16349. {
  16350. name: "Normal",
  16351. height: math.unit(6, "feet")
  16352. },
  16353. {
  16354. name: "Big Steppy",
  16355. height: math.unit(1, "km"),
  16356. default: true
  16357. },
  16358. {
  16359. name: "Galactic Steppy",
  16360. height: math.unit(2, "gigameters")
  16361. },
  16362. ]
  16363. ))
  16364. characterMakers.push(() => makeCharacter(
  16365. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16366. {
  16367. side: {
  16368. height: math.unit(10, "feet"),
  16369. weight: math.unit(800, "kg"),
  16370. name: "Side",
  16371. image: {
  16372. source: "./media/characters/venio-darcony/side.svg",
  16373. extra: 1373 / 1003,
  16374. bottom: 0.037
  16375. }
  16376. },
  16377. front: {
  16378. height: math.unit(19, "feet"),
  16379. weight: math.unit(800, "kg"),
  16380. name: "Front",
  16381. image: {
  16382. source: "./media/characters/venio-darcony/front.svg"
  16383. }
  16384. },
  16385. back: {
  16386. height: math.unit(19, "feet"),
  16387. weight: math.unit(800, "kg"),
  16388. name: "Back",
  16389. image: {
  16390. source: "./media/characters/venio-darcony/back.svg"
  16391. }
  16392. },
  16393. sideNsfw: {
  16394. height: math.unit(10, "feet"),
  16395. weight: math.unit(800, "kg"),
  16396. name: "Side (NSFW)",
  16397. image: {
  16398. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16399. extra: 1373 / 1003,
  16400. bottom: 0.037
  16401. }
  16402. },
  16403. frontNsfw: {
  16404. height: math.unit(19, "feet"),
  16405. weight: math.unit(800, "kg"),
  16406. name: "Front (NSFW)",
  16407. image: {
  16408. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16409. }
  16410. },
  16411. backNsfw: {
  16412. height: math.unit(19, "feet"),
  16413. weight: math.unit(800, "kg"),
  16414. name: "Back (NSFW)",
  16415. image: {
  16416. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16417. }
  16418. },
  16419. sideArmored: {
  16420. height: math.unit(10, "feet"),
  16421. weight: math.unit(800, "kg"),
  16422. name: "Side (Armored)",
  16423. image: {
  16424. source: "./media/characters/venio-darcony/side-armored.svg",
  16425. extra: 1373 / 1003,
  16426. bottom: 0.037
  16427. }
  16428. },
  16429. frontArmored: {
  16430. height: math.unit(19, "feet"),
  16431. weight: math.unit(900, "kg"),
  16432. name: "Front (Armored)",
  16433. image: {
  16434. source: "./media/characters/venio-darcony/front-armored.svg"
  16435. }
  16436. },
  16437. backArmored: {
  16438. height: math.unit(19, "feet"),
  16439. weight: math.unit(900, "kg"),
  16440. name: "Back (Armored)",
  16441. image: {
  16442. source: "./media/characters/venio-darcony/back-armored.svg"
  16443. }
  16444. },
  16445. sword: {
  16446. height: math.unit(10, "feet"),
  16447. weight: math.unit(50, "lb"),
  16448. name: "Sword",
  16449. image: {
  16450. source: "./media/characters/venio-darcony/sword.svg"
  16451. }
  16452. },
  16453. },
  16454. [
  16455. {
  16456. name: "Normal",
  16457. height: math.unit(10, "feet")
  16458. },
  16459. {
  16460. name: "Macro",
  16461. height: math.unit(130, "feet"),
  16462. default: true
  16463. },
  16464. {
  16465. name: "Macro+",
  16466. height: math.unit(240, "feet")
  16467. },
  16468. ]
  16469. ))
  16470. characterMakers.push(() => makeCharacter(
  16471. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16472. {
  16473. front: {
  16474. height: math.unit(6, "feet"),
  16475. weight: math.unit(150, "lb"),
  16476. name: "Front",
  16477. image: {
  16478. source: "./media/characters/veski/front.svg",
  16479. extra: 1299 / 1225,
  16480. bottom: 0.04
  16481. }
  16482. },
  16483. back: {
  16484. height: math.unit(6, "feet"),
  16485. weight: math.unit(150, "lb"),
  16486. name: "Back",
  16487. image: {
  16488. source: "./media/characters/veski/back.svg",
  16489. extra: 1299 / 1225,
  16490. bottom: 0.008
  16491. }
  16492. },
  16493. maw: {
  16494. height: math.unit(1.5 * 1.21, "feet"),
  16495. name: "Maw",
  16496. image: {
  16497. source: "./media/characters/veski/maw.svg"
  16498. }
  16499. },
  16500. },
  16501. [
  16502. {
  16503. name: "Macro",
  16504. height: math.unit(2, "km"),
  16505. default: true
  16506. },
  16507. ]
  16508. ))
  16509. characterMakers.push(() => makeCharacter(
  16510. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16511. {
  16512. front: {
  16513. height: math.unit(5 + 7 / 12, "feet"),
  16514. name: "Front",
  16515. image: {
  16516. source: "./media/characters/isabelle/front.svg",
  16517. extra: 2130 / 1976,
  16518. bottom: 0.05
  16519. }
  16520. },
  16521. },
  16522. [
  16523. {
  16524. name: "Supermicro",
  16525. height: math.unit(10, "micrometers")
  16526. },
  16527. {
  16528. name: "Micro",
  16529. height: math.unit(1, "inch")
  16530. },
  16531. {
  16532. name: "Tiny",
  16533. height: math.unit(5, "inches")
  16534. },
  16535. {
  16536. name: "Standard",
  16537. height: math.unit(5 + 7 / 12, "inches")
  16538. },
  16539. {
  16540. name: "Macro",
  16541. height: math.unit(80, "meters"),
  16542. default: true
  16543. },
  16544. {
  16545. name: "Megamacro",
  16546. height: math.unit(250, "meters")
  16547. },
  16548. {
  16549. name: "Gigamacro",
  16550. height: math.unit(5, "km")
  16551. },
  16552. {
  16553. name: "Cosmic",
  16554. height: math.unit(2.5e6, "miles")
  16555. },
  16556. ]
  16557. ))
  16558. characterMakers.push(() => makeCharacter(
  16559. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16560. {
  16561. front: {
  16562. height: math.unit(6, "feet"),
  16563. weight: math.unit(150, "lb"),
  16564. name: "Front",
  16565. image: {
  16566. source: "./media/characters/hanzo/front.svg",
  16567. extra: 374 / 344,
  16568. bottom: 0.02
  16569. }
  16570. },
  16571. },
  16572. [
  16573. {
  16574. name: "Normal",
  16575. height: math.unit(8, "feet"),
  16576. default: true
  16577. },
  16578. ]
  16579. ))
  16580. characterMakers.push(() => makeCharacter(
  16581. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16582. {
  16583. front: {
  16584. height: math.unit(7, "feet"),
  16585. weight: math.unit(130, "lb"),
  16586. name: "Front",
  16587. image: {
  16588. source: "./media/characters/anna/front.svg",
  16589. extra: 169 / 145,
  16590. bottom: 0.06
  16591. }
  16592. },
  16593. full: {
  16594. height: math.unit(4.96, "feet"),
  16595. weight: math.unit(220, "lb"),
  16596. name: "Full",
  16597. image: {
  16598. source: "./media/characters/anna/full.svg",
  16599. extra: 138 / 114,
  16600. bottom: 0.15
  16601. }
  16602. },
  16603. tongue: {
  16604. height: math.unit(2.53, "feet"),
  16605. name: "Tongue",
  16606. image: {
  16607. source: "./media/characters/anna/tongue.svg"
  16608. }
  16609. },
  16610. },
  16611. [
  16612. {
  16613. name: "Normal",
  16614. height: math.unit(7, "feet"),
  16615. default: true
  16616. },
  16617. ]
  16618. ))
  16619. characterMakers.push(() => makeCharacter(
  16620. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16621. {
  16622. front: {
  16623. height: math.unit(7, "feet"),
  16624. weight: math.unit(150, "lb"),
  16625. name: "Front",
  16626. image: {
  16627. source: "./media/characters/ian-corvid/front.svg",
  16628. extra: 150 / 142,
  16629. bottom: 0.02
  16630. }
  16631. },
  16632. back: {
  16633. height: math.unit(7, "feet"),
  16634. weight: math.unit(150, "lb"),
  16635. name: "Back",
  16636. image: {
  16637. source: "./media/characters/ian-corvid/back.svg",
  16638. extra: 150 / 143,
  16639. bottom: 0.01
  16640. }
  16641. },
  16642. stomping: {
  16643. height: math.unit(7, "feet"),
  16644. weight: math.unit(150, "lb"),
  16645. name: "Stomping",
  16646. image: {
  16647. source: "./media/characters/ian-corvid/stomping.svg",
  16648. extra: 76 / 72
  16649. }
  16650. },
  16651. sitting: {
  16652. height: math.unit(7 / 1.8, "feet"),
  16653. weight: math.unit(150, "lb"),
  16654. name: "Sitting",
  16655. image: {
  16656. source: "./media/characters/ian-corvid/sitting.svg",
  16657. extra: 1400 / 1269,
  16658. bottom: 0.15
  16659. }
  16660. },
  16661. },
  16662. [
  16663. {
  16664. name: "Tiny Microw",
  16665. height: math.unit(1, "inch")
  16666. },
  16667. {
  16668. name: "Microw",
  16669. height: math.unit(6, "inches")
  16670. },
  16671. {
  16672. name: "Crow",
  16673. height: math.unit(7 + 1 / 12, "feet"),
  16674. default: true
  16675. },
  16676. {
  16677. name: "Macrow",
  16678. height: math.unit(176, "feet")
  16679. },
  16680. ]
  16681. ))
  16682. characterMakers.push(() => makeCharacter(
  16683. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16684. {
  16685. front: {
  16686. height: math.unit(5 + 7 / 12, "feet"),
  16687. weight: math.unit(147, "lb"),
  16688. name: "Front",
  16689. image: {
  16690. source: "./media/characters/natalie-kellon/front.svg",
  16691. extra: 1214 / 1141,
  16692. bottom: 0.02
  16693. }
  16694. },
  16695. },
  16696. [
  16697. {
  16698. name: "Micro",
  16699. height: math.unit(1 / 16, "inch")
  16700. },
  16701. {
  16702. name: "Tiny",
  16703. height: math.unit(4, "inches")
  16704. },
  16705. {
  16706. name: "Normal",
  16707. height: math.unit(5 + 7 / 12, "feet"),
  16708. default: true
  16709. },
  16710. {
  16711. name: "Amazon",
  16712. height: math.unit(12, "feet")
  16713. },
  16714. {
  16715. name: "Giantess",
  16716. height: math.unit(160, "meters")
  16717. },
  16718. {
  16719. name: "Titaness",
  16720. height: math.unit(800, "meters")
  16721. },
  16722. ]
  16723. ))
  16724. characterMakers.push(() => makeCharacter(
  16725. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16726. {
  16727. front: {
  16728. height: math.unit(6, "feet"),
  16729. weight: math.unit(150, "lb"),
  16730. name: "Front",
  16731. image: {
  16732. source: "./media/characters/alluria/front.svg",
  16733. extra: 806 / 738,
  16734. bottom: 0.01
  16735. }
  16736. },
  16737. side: {
  16738. height: math.unit(6, "feet"),
  16739. weight: math.unit(150, "lb"),
  16740. name: "Side",
  16741. image: {
  16742. source: "./media/characters/alluria/side.svg",
  16743. extra: 800 / 750,
  16744. }
  16745. },
  16746. back: {
  16747. height: math.unit(6, "feet"),
  16748. weight: math.unit(150, "lb"),
  16749. name: "Back",
  16750. image: {
  16751. source: "./media/characters/alluria/back.svg",
  16752. extra: 806 / 738,
  16753. }
  16754. },
  16755. frontMaid: {
  16756. height: math.unit(6, "feet"),
  16757. weight: math.unit(150, "lb"),
  16758. name: "Front (Maid)",
  16759. image: {
  16760. source: "./media/characters/alluria/front-maid.svg",
  16761. extra: 806 / 738,
  16762. bottom: 0.01
  16763. }
  16764. },
  16765. sideMaid: {
  16766. height: math.unit(6, "feet"),
  16767. weight: math.unit(150, "lb"),
  16768. name: "Side (Maid)",
  16769. image: {
  16770. source: "./media/characters/alluria/side-maid.svg",
  16771. extra: 800 / 750,
  16772. bottom: 0.005
  16773. }
  16774. },
  16775. backMaid: {
  16776. height: math.unit(6, "feet"),
  16777. weight: math.unit(150, "lb"),
  16778. name: "Back (Maid)",
  16779. image: {
  16780. source: "./media/characters/alluria/back-maid.svg",
  16781. extra: 806 / 738,
  16782. }
  16783. },
  16784. },
  16785. [
  16786. {
  16787. name: "Micro",
  16788. height: math.unit(6, "inches"),
  16789. default: true
  16790. },
  16791. ]
  16792. ))
  16793. characterMakers.push(() => makeCharacter(
  16794. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16795. {
  16796. front: {
  16797. height: math.unit(6, "feet"),
  16798. weight: math.unit(150, "lb"),
  16799. name: "Front",
  16800. image: {
  16801. source: "./media/characters/kyle/front.svg",
  16802. extra: 1069 / 962,
  16803. bottom: 77.228 / 1727.45
  16804. }
  16805. },
  16806. },
  16807. [
  16808. {
  16809. name: "Macro",
  16810. height: math.unit(150, "feet"),
  16811. default: true
  16812. },
  16813. ]
  16814. ))
  16815. characterMakers.push(() => makeCharacter(
  16816. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16817. {
  16818. front: {
  16819. height: math.unit(6, "feet"),
  16820. weight: math.unit(300, "lb"),
  16821. name: "Front",
  16822. image: {
  16823. source: "./media/characters/duncan/front.svg",
  16824. extra: 1650 / 1482,
  16825. bottom: 0.05
  16826. }
  16827. },
  16828. },
  16829. [
  16830. {
  16831. name: "Macro",
  16832. height: math.unit(100, "feet"),
  16833. default: true
  16834. },
  16835. ]
  16836. ))
  16837. characterMakers.push(() => makeCharacter(
  16838. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16839. {
  16840. front: {
  16841. height: math.unit(5 + 4 / 12, "feet"),
  16842. weight: math.unit(220, "lb"),
  16843. name: "Front",
  16844. image: {
  16845. source: "./media/characters/memory/front.svg",
  16846. extra: 3641 / 3545,
  16847. bottom: 0.03
  16848. }
  16849. },
  16850. back: {
  16851. height: math.unit(5 + 4 / 12, "feet"),
  16852. weight: math.unit(220, "lb"),
  16853. name: "Back",
  16854. image: {
  16855. source: "./media/characters/memory/back.svg",
  16856. extra: 3641 / 3545,
  16857. bottom: 0.025
  16858. }
  16859. },
  16860. frontSkirt: {
  16861. height: math.unit(5 + 4 / 12, "feet"),
  16862. weight: math.unit(220, "lb"),
  16863. name: "Front (Skirt)",
  16864. image: {
  16865. source: "./media/characters/memory/front-skirt.svg",
  16866. extra: 3641 / 3545,
  16867. bottom: 0.03
  16868. }
  16869. },
  16870. frontDress: {
  16871. height: math.unit(5 + 4 / 12, "feet"),
  16872. weight: math.unit(220, "lb"),
  16873. name: "Front (Dress)",
  16874. image: {
  16875. source: "./media/characters/memory/front-dress.svg",
  16876. extra: 3641 / 3545,
  16877. bottom: 0.03
  16878. }
  16879. },
  16880. },
  16881. [
  16882. {
  16883. name: "Micro",
  16884. height: math.unit(6, "inches"),
  16885. default: true
  16886. },
  16887. {
  16888. name: "Normal",
  16889. height: math.unit(5 + 4 / 12, "feet")
  16890. },
  16891. ]
  16892. ))
  16893. characterMakers.push(() => makeCharacter(
  16894. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16895. {
  16896. front: {
  16897. height: math.unit(4 + 11 / 12, "feet"),
  16898. weight: math.unit(100, "lb"),
  16899. name: "Front",
  16900. image: {
  16901. source: "./media/characters/luno/front.svg",
  16902. extra: 1535 / 1487,
  16903. bottom: 0.03
  16904. }
  16905. },
  16906. },
  16907. [
  16908. {
  16909. name: "Micro",
  16910. height: math.unit(3, "inches")
  16911. },
  16912. {
  16913. name: "Normal",
  16914. height: math.unit(4 + 11 / 12, "feet"),
  16915. default: true
  16916. },
  16917. {
  16918. name: "Macro",
  16919. height: math.unit(300, "feet")
  16920. },
  16921. {
  16922. name: "Megamacro",
  16923. height: math.unit(700, "miles")
  16924. },
  16925. ]
  16926. ))
  16927. characterMakers.push(() => makeCharacter(
  16928. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16929. {
  16930. front: {
  16931. height: math.unit(6 + 2 / 12, "feet"),
  16932. weight: math.unit(170, "lb"),
  16933. name: "Front",
  16934. image: {
  16935. source: "./media/characters/jamesy/front.svg",
  16936. extra: 440 / 382,
  16937. bottom: 0.005
  16938. }
  16939. },
  16940. },
  16941. [
  16942. {
  16943. name: "Micro",
  16944. height: math.unit(3, "inches")
  16945. },
  16946. {
  16947. name: "Normal",
  16948. height: math.unit(6 + 2 / 12, "feet"),
  16949. default: true
  16950. },
  16951. {
  16952. name: "Macro",
  16953. height: math.unit(300, "feet")
  16954. },
  16955. {
  16956. name: "Megamacro",
  16957. height: math.unit(700, "miles")
  16958. },
  16959. ]
  16960. ))
  16961. characterMakers.push(() => makeCharacter(
  16962. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16963. {
  16964. front: {
  16965. height: math.unit(6, "feet"),
  16966. weight: math.unit(160, "lb"),
  16967. name: "Front",
  16968. image: {
  16969. source: "./media/characters/mark/front.svg",
  16970. extra: 3300 / 3100,
  16971. bottom: 136.42 / 3440.47
  16972. }
  16973. },
  16974. },
  16975. [
  16976. {
  16977. name: "Macro",
  16978. height: math.unit(120, "meters")
  16979. },
  16980. {
  16981. name: "Bigger Macro",
  16982. height: math.unit(350, "meters")
  16983. },
  16984. {
  16985. name: "Megamacro",
  16986. height: math.unit(8, "km"),
  16987. default: true
  16988. },
  16989. {
  16990. name: "Continental",
  16991. height: math.unit(4550, "km")
  16992. },
  16993. {
  16994. name: "Planetary",
  16995. height: math.unit(65000, "km")
  16996. },
  16997. ]
  16998. ))
  16999. characterMakers.push(() => makeCharacter(
  17000. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17001. {
  17002. front: {
  17003. height: math.unit(6, "feet"),
  17004. weight: math.unit(400, "lb"),
  17005. name: "Front",
  17006. image: {
  17007. source: "./media/characters/mac/front.svg",
  17008. extra: 1048 / 987.7,
  17009. bottom: 60 / 1107.6,
  17010. }
  17011. },
  17012. },
  17013. [
  17014. {
  17015. name: "Macro",
  17016. height: math.unit(500, "feet"),
  17017. default: true
  17018. },
  17019. ]
  17020. ))
  17021. characterMakers.push(() => makeCharacter(
  17022. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17023. {
  17024. front: {
  17025. height: math.unit(5 + 2 / 12, "feet"),
  17026. weight: math.unit(190, "lb"),
  17027. name: "Front",
  17028. image: {
  17029. source: "./media/characters/bari/front.svg",
  17030. extra: 3156 / 2880,
  17031. bottom: 0.03
  17032. }
  17033. },
  17034. back: {
  17035. height: math.unit(5 + 2 / 12, "feet"),
  17036. weight: math.unit(190, "lb"),
  17037. name: "Back",
  17038. image: {
  17039. source: "./media/characters/bari/back.svg",
  17040. extra: 3260 / 2834,
  17041. bottom: 0.025
  17042. }
  17043. },
  17044. frontPlush: {
  17045. height: math.unit(5 + 2 / 12, "feet"),
  17046. weight: math.unit(190, "lb"),
  17047. name: "Front (Plush)",
  17048. image: {
  17049. source: "./media/characters/bari/front-plush.svg",
  17050. extra: 1112 / 1061,
  17051. bottom: 0.002
  17052. }
  17053. },
  17054. },
  17055. [
  17056. {
  17057. name: "Micro",
  17058. height: math.unit(3, "inches")
  17059. },
  17060. {
  17061. name: "Normal",
  17062. height: math.unit(5 + 2 / 12, "feet"),
  17063. default: true
  17064. },
  17065. {
  17066. name: "Macro",
  17067. height: math.unit(20, "feet")
  17068. },
  17069. ]
  17070. ))
  17071. characterMakers.push(() => makeCharacter(
  17072. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17073. {
  17074. front: {
  17075. height: math.unit(6 + 1 / 12, "feet"),
  17076. weight: math.unit(275, "lb"),
  17077. name: "Front",
  17078. image: {
  17079. source: "./media/characters/hunter-misha-raven/front.svg"
  17080. }
  17081. },
  17082. },
  17083. [
  17084. {
  17085. name: "Mortal",
  17086. height: math.unit(6 + 1 / 12, "feet")
  17087. },
  17088. {
  17089. name: "Divine",
  17090. height: math.unit(1.12134e34, "parsecs"),
  17091. default: true
  17092. },
  17093. ]
  17094. ))
  17095. characterMakers.push(() => makeCharacter(
  17096. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17097. {
  17098. front: {
  17099. height: math.unit(6 + 3 / 12, "feet"),
  17100. weight: math.unit(220, "lb"),
  17101. name: "Front",
  17102. image: {
  17103. source: "./media/characters/max-calore/front.svg",
  17104. extra: 1700 / 1648,
  17105. bottom: 0.01
  17106. }
  17107. },
  17108. back: {
  17109. height: math.unit(6 + 3 / 12, "feet"),
  17110. weight: math.unit(220, "lb"),
  17111. name: "Back",
  17112. image: {
  17113. source: "./media/characters/max-calore/back.svg",
  17114. extra: 1700 / 1648,
  17115. bottom: 0.01
  17116. }
  17117. },
  17118. },
  17119. [
  17120. {
  17121. name: "Normal",
  17122. height: math.unit(6 + 3 / 12, "feet"),
  17123. default: true
  17124. },
  17125. ]
  17126. ))
  17127. characterMakers.push(() => makeCharacter(
  17128. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17129. {
  17130. side: {
  17131. height: math.unit(2 + 8 / 12, "feet"),
  17132. weight: math.unit(99, "lb"),
  17133. name: "Side",
  17134. image: {
  17135. source: "./media/characters/aspen/side.svg",
  17136. extra: 152 / 138,
  17137. bottom: 0.032
  17138. }
  17139. },
  17140. },
  17141. [
  17142. {
  17143. name: "Normal",
  17144. height: math.unit(2 + 8 / 12, "feet"),
  17145. default: true
  17146. },
  17147. ]
  17148. ))
  17149. characterMakers.push(() => makeCharacter(
  17150. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17151. {
  17152. side: {
  17153. height: math.unit(3 + 2 / 12, "feet"),
  17154. weight: math.unit(224, "lb"),
  17155. name: "Side",
  17156. image: {
  17157. source: "./media/characters/sheila-feral-wolf/side.svg",
  17158. extra: 179 / 166,
  17159. bottom: 0.03
  17160. }
  17161. },
  17162. },
  17163. [
  17164. {
  17165. name: "Normal",
  17166. height: math.unit(3 + 2 / 12, "feet"),
  17167. default: true
  17168. },
  17169. ]
  17170. ))
  17171. characterMakers.push(() => makeCharacter(
  17172. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17173. {
  17174. side: {
  17175. height: math.unit(1 + 9 / 12, "feet"),
  17176. weight: math.unit(38, "lb"),
  17177. name: "Side",
  17178. image: {
  17179. source: "./media/characters/michelle/side.svg",
  17180. extra: 147 / 136.7,
  17181. bottom: 0.03
  17182. }
  17183. },
  17184. },
  17185. [
  17186. {
  17187. name: "Normal",
  17188. height: math.unit(1 + 9 / 12, "feet"),
  17189. default: true
  17190. },
  17191. ]
  17192. ))
  17193. characterMakers.push(() => makeCharacter(
  17194. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17195. {
  17196. front: {
  17197. height: math.unit(1.54, "feet"),
  17198. weight: math.unit(50, "lb"),
  17199. name: "Front",
  17200. image: {
  17201. source: "./media/characters/nino/front.svg"
  17202. }
  17203. },
  17204. },
  17205. [
  17206. {
  17207. name: "Normal",
  17208. height: math.unit(1.54, "feet"),
  17209. default: true
  17210. },
  17211. ]
  17212. ))
  17213. characterMakers.push(() => makeCharacter(
  17214. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17215. {
  17216. front: {
  17217. height: math.unit(1, "feet"),
  17218. weight: math.unit(16, "lb"),
  17219. name: "Front",
  17220. image: {
  17221. source: "./media/characters/viola/front.svg"
  17222. }
  17223. },
  17224. },
  17225. [
  17226. {
  17227. name: "Normal",
  17228. height: math.unit(1, "feet"),
  17229. default: true
  17230. },
  17231. ]
  17232. ))
  17233. characterMakers.push(() => makeCharacter(
  17234. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17235. {
  17236. front: {
  17237. height: math.unit(6 + 5 / 12, "feet"),
  17238. weight: math.unit(580, "lb"),
  17239. name: "Front",
  17240. image: {
  17241. source: "./media/characters/atlas/front.svg",
  17242. extra: 298.5 / 290,
  17243. bottom: 0.015
  17244. }
  17245. },
  17246. },
  17247. [
  17248. {
  17249. name: "Normal",
  17250. height: math.unit(6 + 5 / 12, "feet"),
  17251. default: true
  17252. },
  17253. ]
  17254. ))
  17255. characterMakers.push(() => makeCharacter(
  17256. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17257. {
  17258. side: {
  17259. height: math.unit(1 + 10 / 12, "feet"),
  17260. weight: math.unit(25, "lb"),
  17261. name: "Side",
  17262. image: {
  17263. source: "./media/characters/davy/side.svg",
  17264. extra: 200 / 170,
  17265. bottom: 0.01
  17266. }
  17267. },
  17268. },
  17269. [
  17270. {
  17271. name: "Normal",
  17272. height: math.unit(1 + 10 / 12, "feet"),
  17273. default: true
  17274. },
  17275. ]
  17276. ))
  17277. characterMakers.push(() => makeCharacter(
  17278. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17279. {
  17280. side: {
  17281. height: math.unit(4 + 8 / 12, "feet"),
  17282. weight: math.unit(166, "lb"),
  17283. name: "Side",
  17284. image: {
  17285. source: "./media/characters/fiona/side.svg",
  17286. extra: 232 / 220,
  17287. bottom: 0.03
  17288. }
  17289. },
  17290. },
  17291. [
  17292. {
  17293. name: "Normal",
  17294. height: math.unit(4 + 8 / 12, "feet"),
  17295. default: true
  17296. },
  17297. ]
  17298. ))
  17299. characterMakers.push(() => makeCharacter(
  17300. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17301. {
  17302. front: {
  17303. height: math.unit(3, "feet"),
  17304. weight: math.unit(100, "lb"),
  17305. name: "Front",
  17306. image: {
  17307. source: "./media/characters/lyla/front.svg",
  17308. bottom: 0.1
  17309. }
  17310. },
  17311. },
  17312. [
  17313. {
  17314. name: "Normal",
  17315. height: math.unit(3, "feet"),
  17316. default: true
  17317. },
  17318. ]
  17319. ))
  17320. characterMakers.push(() => makeCharacter(
  17321. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17322. {
  17323. side: {
  17324. height: math.unit(1.8, "feet"),
  17325. weight: math.unit(44, "lb"),
  17326. name: "Side",
  17327. image: {
  17328. source: "./media/characters/perseus/side.svg",
  17329. bottom: 0.21
  17330. }
  17331. },
  17332. },
  17333. [
  17334. {
  17335. name: "Normal",
  17336. height: math.unit(1.8, "feet"),
  17337. default: true
  17338. },
  17339. ]
  17340. ))
  17341. characterMakers.push(() => makeCharacter(
  17342. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17343. {
  17344. side: {
  17345. height: math.unit(4 + 2 / 12, "feet"),
  17346. weight: math.unit(20, "lb"),
  17347. name: "Side",
  17348. image: {
  17349. source: "./media/characters/remus/side.svg"
  17350. }
  17351. },
  17352. },
  17353. [
  17354. {
  17355. name: "Normal",
  17356. height: math.unit(4 + 2 / 12, "feet"),
  17357. default: true
  17358. },
  17359. ]
  17360. ))
  17361. characterMakers.push(() => makeCharacter(
  17362. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17363. {
  17364. front: {
  17365. height: math.unit(4 + 11 / 12, "feet"),
  17366. weight: math.unit(114, "lb"),
  17367. name: "Front",
  17368. image: {
  17369. source: "./media/characters/raf/front.svg",
  17370. extra: 1504/1339,
  17371. bottom: 26/1530
  17372. }
  17373. },
  17374. side: {
  17375. height: math.unit(4 + 11 / 12, "feet"),
  17376. weight: math.unit(114, "lb"),
  17377. name: "Side",
  17378. image: {
  17379. source: "./media/characters/raf/side.svg",
  17380. extra: 1466/1316,
  17381. bottom: 29/1495
  17382. }
  17383. },
  17384. },
  17385. [
  17386. {
  17387. name: "Micro",
  17388. height: math.unit(2, "inches")
  17389. },
  17390. {
  17391. name: "Normal",
  17392. height: math.unit(4 + 11 / 12, "feet"),
  17393. default: true
  17394. },
  17395. {
  17396. name: "Macro",
  17397. height: math.unit(70, "feet")
  17398. },
  17399. ]
  17400. ))
  17401. characterMakers.push(() => makeCharacter(
  17402. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17403. {
  17404. front: {
  17405. height: math.unit(1.5, "meters"),
  17406. weight: math.unit(68, "kg"),
  17407. name: "Front",
  17408. image: {
  17409. source: "./media/characters/liam-einarr/front.svg",
  17410. extra: 2822 / 2666
  17411. }
  17412. },
  17413. back: {
  17414. height: math.unit(1.5, "meters"),
  17415. weight: math.unit(68, "kg"),
  17416. name: "Back",
  17417. image: {
  17418. source: "./media/characters/liam-einarr/back.svg",
  17419. extra: 2822 / 2666,
  17420. bottom: 0.015
  17421. }
  17422. },
  17423. },
  17424. [
  17425. {
  17426. name: "Normal",
  17427. height: math.unit(1.5, "meters"),
  17428. default: true
  17429. },
  17430. {
  17431. name: "Macro",
  17432. height: math.unit(150, "meters")
  17433. },
  17434. {
  17435. name: "Megamacro",
  17436. height: math.unit(35, "km")
  17437. },
  17438. ]
  17439. ))
  17440. characterMakers.push(() => makeCharacter(
  17441. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17442. {
  17443. front: {
  17444. height: math.unit(6, "feet"),
  17445. weight: math.unit(75, "kg"),
  17446. name: "Front",
  17447. image: {
  17448. source: "./media/characters/linda/front.svg",
  17449. extra: 930 / 874,
  17450. bottom: 0.004
  17451. }
  17452. },
  17453. },
  17454. [
  17455. {
  17456. name: "Normal",
  17457. height: math.unit(6, "feet"),
  17458. default: true
  17459. },
  17460. ]
  17461. ))
  17462. characterMakers.push(() => makeCharacter(
  17463. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17464. {
  17465. front: {
  17466. height: math.unit(6 + 8 / 12, "feet"),
  17467. weight: math.unit(220, "lb"),
  17468. name: "Front",
  17469. image: {
  17470. source: "./media/characters/caylex/front.svg",
  17471. extra: 821 / 772,
  17472. bottom: 0.07
  17473. }
  17474. },
  17475. back: {
  17476. height: math.unit(6 + 8 / 12, "feet"),
  17477. weight: math.unit(220, "lb"),
  17478. name: "Back",
  17479. image: {
  17480. source: "./media/characters/caylex/back.svg",
  17481. extra: 821 / 772,
  17482. bottom: 0.022
  17483. }
  17484. },
  17485. hand: {
  17486. height: math.unit(1.25, "feet"),
  17487. name: "Hand",
  17488. image: {
  17489. source: "./media/characters/caylex/hand.svg"
  17490. }
  17491. },
  17492. foot: {
  17493. height: math.unit(1.6, "feet"),
  17494. name: "Foot",
  17495. image: {
  17496. source: "./media/characters/caylex/foot.svg"
  17497. }
  17498. },
  17499. armored: {
  17500. height: math.unit(6 + 8 / 12, "feet"),
  17501. weight: math.unit(250, "lb"),
  17502. name: "Armored",
  17503. image: {
  17504. source: "./media/characters/caylex/armored.svg",
  17505. extra: 1420 / 1310,
  17506. bottom: 0.045
  17507. }
  17508. },
  17509. },
  17510. [
  17511. {
  17512. name: "Normal",
  17513. height: math.unit(6 + 8 / 12, "feet"),
  17514. default: true
  17515. },
  17516. {
  17517. name: "Normal+",
  17518. height: math.unit(12, "feet")
  17519. },
  17520. ]
  17521. ))
  17522. characterMakers.push(() => makeCharacter(
  17523. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17524. {
  17525. front: {
  17526. height: math.unit(7 + 6 / 12, "feet"),
  17527. weight: math.unit(288, "lb"),
  17528. name: "Front",
  17529. image: {
  17530. source: "./media/characters/alana/front.svg",
  17531. extra: 679 / 653,
  17532. bottom: 22.5 / 701
  17533. }
  17534. },
  17535. },
  17536. [
  17537. {
  17538. name: "Normal",
  17539. height: math.unit(7 + 6 / 12, "feet")
  17540. },
  17541. {
  17542. name: "Large",
  17543. height: math.unit(50, "feet")
  17544. },
  17545. {
  17546. name: "Macro",
  17547. height: math.unit(100, "feet"),
  17548. default: true
  17549. },
  17550. {
  17551. name: "Macro+",
  17552. height: math.unit(200, "feet")
  17553. },
  17554. ]
  17555. ))
  17556. characterMakers.push(() => makeCharacter(
  17557. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17558. {
  17559. front: {
  17560. height: math.unit(6 + 1 / 12, "feet"),
  17561. weight: math.unit(210, "lb"),
  17562. name: "Front",
  17563. image: {
  17564. source: "./media/characters/hasani/front.svg",
  17565. extra: 244 / 232,
  17566. bottom: 0.01
  17567. }
  17568. },
  17569. back: {
  17570. height: math.unit(6 + 1 / 12, "feet"),
  17571. weight: math.unit(210, "lb"),
  17572. name: "Back",
  17573. image: {
  17574. source: "./media/characters/hasani/back.svg",
  17575. extra: 244 / 232,
  17576. bottom: 0.01
  17577. }
  17578. },
  17579. },
  17580. [
  17581. {
  17582. name: "Normal",
  17583. height: math.unit(6 + 1 / 12, "feet")
  17584. },
  17585. {
  17586. name: "Macro",
  17587. height: math.unit(175, "feet"),
  17588. default: true
  17589. },
  17590. ]
  17591. ))
  17592. characterMakers.push(() => makeCharacter(
  17593. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17594. {
  17595. front: {
  17596. height: math.unit(1.82, "meters"),
  17597. weight: math.unit(140, "lb"),
  17598. name: "Front",
  17599. image: {
  17600. source: "./media/characters/nita/front.svg",
  17601. extra: 2473 / 2363,
  17602. bottom: 0.01
  17603. }
  17604. },
  17605. },
  17606. [
  17607. {
  17608. name: "Normal",
  17609. height: math.unit(1.82, "m")
  17610. },
  17611. {
  17612. name: "Macro",
  17613. height: math.unit(300, "m")
  17614. },
  17615. {
  17616. name: "Mistake Canon",
  17617. height: math.unit(0.5, "miles"),
  17618. default: true
  17619. },
  17620. {
  17621. name: "Big Mistake",
  17622. height: math.unit(13, "miles")
  17623. },
  17624. {
  17625. name: "Playing God",
  17626. height: math.unit(2450, "miles")
  17627. },
  17628. ]
  17629. ))
  17630. characterMakers.push(() => makeCharacter(
  17631. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17632. {
  17633. front: {
  17634. height: math.unit(4, "feet"),
  17635. weight: math.unit(120, "lb"),
  17636. name: "Front",
  17637. image: {
  17638. source: "./media/characters/shiriko/front.svg",
  17639. extra: 970/934,
  17640. bottom: 5/975
  17641. }
  17642. },
  17643. },
  17644. [
  17645. {
  17646. name: "Normal",
  17647. height: math.unit(4, "feet"),
  17648. default: true
  17649. },
  17650. ]
  17651. ))
  17652. characterMakers.push(() => makeCharacter(
  17653. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17654. {
  17655. front: {
  17656. height: math.unit(6, "feet"),
  17657. name: "front",
  17658. image: {
  17659. source: "./media/characters/deja/front.svg",
  17660. extra: 926 / 840,
  17661. bottom: 0.07
  17662. }
  17663. },
  17664. },
  17665. [
  17666. {
  17667. name: "Planck Length",
  17668. height: math.unit(1.6e-35, "meters")
  17669. },
  17670. {
  17671. name: "Normal",
  17672. height: math.unit(30.48, "meters"),
  17673. default: true
  17674. },
  17675. {
  17676. name: "Universal",
  17677. height: math.unit(8.8e26, "meters")
  17678. },
  17679. ]
  17680. ))
  17681. characterMakers.push(() => makeCharacter(
  17682. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17683. {
  17684. side: {
  17685. height: math.unit(8, "feet"),
  17686. weight: math.unit(6300, "lb"),
  17687. name: "Side",
  17688. image: {
  17689. source: "./media/characters/anima/side.svg",
  17690. bottom: 0.035
  17691. }
  17692. },
  17693. },
  17694. [
  17695. {
  17696. name: "Normal",
  17697. height: math.unit(8, "feet"),
  17698. default: true
  17699. },
  17700. ]
  17701. ))
  17702. characterMakers.push(() => makeCharacter(
  17703. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17704. {
  17705. front: {
  17706. height: math.unit(8, "feet"),
  17707. weight: math.unit(350, "lb"),
  17708. name: "Front",
  17709. image: {
  17710. source: "./media/characters/bianca/front.svg",
  17711. extra: 234 / 225,
  17712. bottom: 0.03
  17713. }
  17714. },
  17715. },
  17716. [
  17717. {
  17718. name: "Normal",
  17719. height: math.unit(8, "feet"),
  17720. default: true
  17721. },
  17722. ]
  17723. ))
  17724. characterMakers.push(() => makeCharacter(
  17725. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17726. {
  17727. front: {
  17728. height: math.unit(6, "feet"),
  17729. weight: math.unit(150, "lb"),
  17730. name: "Front",
  17731. image: {
  17732. source: "./media/characters/adinia/front.svg",
  17733. extra: 1845 / 1672,
  17734. bottom: 0.02
  17735. }
  17736. },
  17737. back: {
  17738. height: math.unit(6, "feet"),
  17739. weight: math.unit(150, "lb"),
  17740. name: "Back",
  17741. image: {
  17742. source: "./media/characters/adinia/back.svg",
  17743. extra: 1845 / 1672,
  17744. bottom: 0.002
  17745. }
  17746. },
  17747. },
  17748. [
  17749. {
  17750. name: "Normal",
  17751. height: math.unit(11 + 5 / 12, "feet"),
  17752. default: true
  17753. },
  17754. ]
  17755. ))
  17756. characterMakers.push(() => makeCharacter(
  17757. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17758. {
  17759. front: {
  17760. height: math.unit(3, "meters"),
  17761. weight: math.unit(200, "kg"),
  17762. name: "Front",
  17763. image: {
  17764. source: "./media/characters/lykasa/front.svg",
  17765. extra: 1076 / 976,
  17766. bottom: 0.06
  17767. }
  17768. },
  17769. },
  17770. [
  17771. {
  17772. name: "Normal",
  17773. height: math.unit(3, "meters")
  17774. },
  17775. {
  17776. name: "Kaiju",
  17777. height: math.unit(120, "meters"),
  17778. default: true
  17779. },
  17780. {
  17781. name: "Mega Kaiju",
  17782. height: math.unit(240, "km")
  17783. },
  17784. {
  17785. name: "Giga Kaiju",
  17786. height: math.unit(400, "megameters")
  17787. },
  17788. {
  17789. name: "Tera Kaiju",
  17790. height: math.unit(800, "gigameters")
  17791. },
  17792. {
  17793. name: "Kaiju Dragon Goddess",
  17794. height: math.unit(26, "zettaparsecs")
  17795. },
  17796. ]
  17797. ))
  17798. characterMakers.push(() => makeCharacter(
  17799. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17800. {
  17801. side: {
  17802. height: math.unit(283 / 124 * 6, "feet"),
  17803. weight: math.unit(35000, "lb"),
  17804. name: "Side",
  17805. image: {
  17806. source: "./media/characters/malfaren/side.svg",
  17807. extra: 2500 / 1010,
  17808. bottom: 0.01
  17809. }
  17810. },
  17811. front: {
  17812. height: math.unit(22.36, "feet"),
  17813. weight: math.unit(35000, "lb"),
  17814. name: "Front",
  17815. image: {
  17816. source: "./media/characters/malfaren/front.svg",
  17817. extra: 1631 / 1476,
  17818. bottom: 0.01
  17819. }
  17820. },
  17821. maw: {
  17822. height: math.unit(6.9, "feet"),
  17823. name: "Maw",
  17824. image: {
  17825. source: "./media/characters/malfaren/maw.svg"
  17826. }
  17827. },
  17828. },
  17829. [
  17830. {
  17831. name: "Big",
  17832. height: math.unit(283 / 162 * 6, "feet"),
  17833. },
  17834. {
  17835. name: "Bigger",
  17836. height: math.unit(283 / 124 * 6, "feet")
  17837. },
  17838. {
  17839. name: "Massive",
  17840. height: math.unit(283 / 92 * 6, "feet"),
  17841. default: true
  17842. },
  17843. {
  17844. name: "👀💦",
  17845. height: math.unit(283 / 73 * 6, "feet"),
  17846. },
  17847. ]
  17848. ))
  17849. characterMakers.push(() => makeCharacter(
  17850. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17851. {
  17852. front: {
  17853. height: math.unit(1.7, "m"),
  17854. weight: math.unit(70, "kg"),
  17855. name: "Front",
  17856. image: {
  17857. source: "./media/characters/kernel/front.svg",
  17858. extra: 222 / 210,
  17859. bottom: 0.007
  17860. }
  17861. },
  17862. },
  17863. [
  17864. {
  17865. name: "Nano",
  17866. height: math.unit(17, "micrometers")
  17867. },
  17868. {
  17869. name: "Micro",
  17870. height: math.unit(1.7, "mm")
  17871. },
  17872. {
  17873. name: "Small",
  17874. height: math.unit(1.7, "cm")
  17875. },
  17876. {
  17877. name: "Normal",
  17878. height: math.unit(1.7, "m"),
  17879. default: true
  17880. },
  17881. ]
  17882. ))
  17883. characterMakers.push(() => makeCharacter(
  17884. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17885. {
  17886. front: {
  17887. height: math.unit(1.75, "meters"),
  17888. weight: math.unit(65, "kg"),
  17889. name: "Front",
  17890. image: {
  17891. source: "./media/characters/jayne-folest/front.svg",
  17892. extra: 2115 / 2007,
  17893. bottom: 0.02
  17894. }
  17895. },
  17896. back: {
  17897. height: math.unit(1.75, "meters"),
  17898. weight: math.unit(65, "kg"),
  17899. name: "Back",
  17900. image: {
  17901. source: "./media/characters/jayne-folest/back.svg",
  17902. extra: 2115 / 2007,
  17903. bottom: 0.005
  17904. }
  17905. },
  17906. frontClothed: {
  17907. height: math.unit(1.75, "meters"),
  17908. weight: math.unit(65, "kg"),
  17909. name: "Front (Clothed)",
  17910. image: {
  17911. source: "./media/characters/jayne-folest/front-clothed.svg",
  17912. extra: 2115 / 2007,
  17913. bottom: 0.035
  17914. }
  17915. },
  17916. hand: {
  17917. height: math.unit(1 / 1.260, "feet"),
  17918. name: "Hand",
  17919. image: {
  17920. source: "./media/characters/jayne-folest/hand.svg"
  17921. }
  17922. },
  17923. foot: {
  17924. height: math.unit(1 / 0.918, "feet"),
  17925. name: "Foot",
  17926. image: {
  17927. source: "./media/characters/jayne-folest/foot.svg"
  17928. }
  17929. },
  17930. },
  17931. [
  17932. {
  17933. name: "Micro",
  17934. height: math.unit(4, "cm")
  17935. },
  17936. {
  17937. name: "Normal",
  17938. height: math.unit(1.75, "meters")
  17939. },
  17940. {
  17941. name: "Macro",
  17942. height: math.unit(47.5, "meters"),
  17943. default: true
  17944. },
  17945. ]
  17946. ))
  17947. characterMakers.push(() => makeCharacter(
  17948. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17949. {
  17950. front: {
  17951. height: math.unit(180, "cm"),
  17952. weight: math.unit(70, "kg"),
  17953. name: "Front",
  17954. image: {
  17955. source: "./media/characters/algier/front.svg",
  17956. extra: 596 / 572,
  17957. bottom: 0.04
  17958. }
  17959. },
  17960. back: {
  17961. height: math.unit(180, "cm"),
  17962. weight: math.unit(70, "kg"),
  17963. name: "Back",
  17964. image: {
  17965. source: "./media/characters/algier/back.svg",
  17966. extra: 596 / 572,
  17967. bottom: 0.025
  17968. }
  17969. },
  17970. frontdressed: {
  17971. height: math.unit(180, "cm"),
  17972. weight: math.unit(150, "kg"),
  17973. name: "Front-dressed",
  17974. image: {
  17975. source: "./media/characters/algier/front-dressed.svg",
  17976. extra: 596 / 572,
  17977. bottom: 0.038
  17978. }
  17979. },
  17980. },
  17981. [
  17982. {
  17983. name: "Micro",
  17984. height: math.unit(5, "cm")
  17985. },
  17986. {
  17987. name: "Normal",
  17988. height: math.unit(180, "cm"),
  17989. default: true
  17990. },
  17991. {
  17992. name: "Macro",
  17993. height: math.unit(64, "m")
  17994. },
  17995. ]
  17996. ))
  17997. characterMakers.push(() => makeCharacter(
  17998. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17999. {
  18000. upright: {
  18001. height: math.unit(7, "feet"),
  18002. weight: math.unit(300, "lb"),
  18003. name: "Upright",
  18004. image: {
  18005. source: "./media/characters/pretzel/upright.svg",
  18006. extra: 534 / 522,
  18007. bottom: 0.065
  18008. }
  18009. },
  18010. sprawling: {
  18011. height: math.unit(3.75, "feet"),
  18012. weight: math.unit(300, "lb"),
  18013. name: "Sprawling",
  18014. image: {
  18015. source: "./media/characters/pretzel/sprawling.svg",
  18016. extra: 314 / 281,
  18017. bottom: 0.1
  18018. }
  18019. },
  18020. tongue: {
  18021. height: math.unit(2, "feet"),
  18022. name: "Tongue",
  18023. image: {
  18024. source: "./media/characters/pretzel/tongue.svg"
  18025. }
  18026. },
  18027. },
  18028. [
  18029. {
  18030. name: "Normal",
  18031. height: math.unit(7, "feet"),
  18032. default: true
  18033. },
  18034. {
  18035. name: "Oversized",
  18036. height: math.unit(15, "feet")
  18037. },
  18038. {
  18039. name: "Huge",
  18040. height: math.unit(30, "feet")
  18041. },
  18042. {
  18043. name: "Macro",
  18044. height: math.unit(250, "feet")
  18045. },
  18046. ]
  18047. ))
  18048. characterMakers.push(() => makeCharacter(
  18049. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18050. {
  18051. sideFront: {
  18052. height: math.unit(5 + 2 / 12, "feet"),
  18053. weight: math.unit(120, "lb"),
  18054. name: "Front Side",
  18055. image: {
  18056. source: "./media/characters/roxi/side-front.svg",
  18057. extra: 2924 / 2717,
  18058. bottom: 0.08
  18059. }
  18060. },
  18061. sideBack: {
  18062. height: math.unit(5 + 2 / 12, "feet"),
  18063. weight: math.unit(120, "lb"),
  18064. name: "Back Side",
  18065. image: {
  18066. source: "./media/characters/roxi/side-back.svg",
  18067. extra: 2904 / 2693,
  18068. bottom: 0.06
  18069. }
  18070. },
  18071. front: {
  18072. height: math.unit(5 + 2 / 12, "feet"),
  18073. weight: math.unit(120, "lb"),
  18074. name: "Front",
  18075. image: {
  18076. source: "./media/characters/roxi/front.svg",
  18077. extra: 2028 / 1907,
  18078. bottom: 0.01
  18079. }
  18080. },
  18081. frontAlt: {
  18082. height: math.unit(5 + 2 / 12, "feet"),
  18083. weight: math.unit(120, "lb"),
  18084. name: "Front (Alt)",
  18085. image: {
  18086. source: "./media/characters/roxi/front-alt.svg",
  18087. extra: 1828 / 1798,
  18088. bottom: 0.01
  18089. }
  18090. },
  18091. sitting: {
  18092. height: math.unit(2.8, "feet"),
  18093. weight: math.unit(120, "lb"),
  18094. name: "Sitting",
  18095. image: {
  18096. source: "./media/characters/roxi/sitting.svg",
  18097. extra: 2660 / 2462,
  18098. bottom: 0.1
  18099. }
  18100. },
  18101. },
  18102. [
  18103. {
  18104. name: "Normal",
  18105. height: math.unit(5 + 2 / 12, "feet"),
  18106. default: true
  18107. },
  18108. ]
  18109. ))
  18110. characterMakers.push(() => makeCharacter(
  18111. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18112. {
  18113. side: {
  18114. height: math.unit(55, "feet"),
  18115. weight: math.unit(153, "tons"),
  18116. name: "Side",
  18117. image: {
  18118. source: "./media/characters/shadow/side.svg",
  18119. extra: 701 / 628,
  18120. bottom: 0.02
  18121. }
  18122. },
  18123. flying: {
  18124. height: math.unit(145, "feet"),
  18125. weight: math.unit(153, "tons"),
  18126. name: "Flying",
  18127. image: {
  18128. source: "./media/characters/shadow/flying.svg"
  18129. }
  18130. },
  18131. },
  18132. [
  18133. {
  18134. name: "Normal",
  18135. height: math.unit(55, "feet"),
  18136. default: true
  18137. },
  18138. ]
  18139. ))
  18140. characterMakers.push(() => makeCharacter(
  18141. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18142. {
  18143. front: {
  18144. height: math.unit(6, "feet"),
  18145. weight: math.unit(200, "lb"),
  18146. name: "Front",
  18147. image: {
  18148. source: "./media/characters/marcie/front.svg",
  18149. extra: 960 / 876,
  18150. bottom: 58 / 1017.87
  18151. }
  18152. },
  18153. },
  18154. [
  18155. {
  18156. name: "Macro",
  18157. height: math.unit(1, "mile"),
  18158. default: true
  18159. },
  18160. ]
  18161. ))
  18162. characterMakers.push(() => makeCharacter(
  18163. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18164. {
  18165. front: {
  18166. height: math.unit(7, "feet"),
  18167. weight: math.unit(200, "lb"),
  18168. name: "Front",
  18169. image: {
  18170. source: "./media/characters/kachina/front.svg",
  18171. extra: 1290.68 / 1119,
  18172. bottom: 36.5 / 1327.18
  18173. }
  18174. },
  18175. },
  18176. [
  18177. {
  18178. name: "Normal",
  18179. height: math.unit(7, "feet"),
  18180. default: true
  18181. },
  18182. ]
  18183. ))
  18184. characterMakers.push(() => makeCharacter(
  18185. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18186. {
  18187. looking: {
  18188. height: math.unit(2, "meters"),
  18189. weight: math.unit(300, "kg"),
  18190. name: "Looking",
  18191. image: {
  18192. source: "./media/characters/kash/looking.svg",
  18193. extra: 474 / 344,
  18194. bottom: 0.03
  18195. }
  18196. },
  18197. side: {
  18198. height: math.unit(2, "meters"),
  18199. weight: math.unit(300, "kg"),
  18200. name: "Side",
  18201. image: {
  18202. source: "./media/characters/kash/side.svg",
  18203. extra: 302 / 251,
  18204. bottom: 0.03
  18205. }
  18206. },
  18207. front: {
  18208. height: math.unit(2, "meters"),
  18209. weight: math.unit(300, "kg"),
  18210. name: "Front",
  18211. image: {
  18212. source: "./media/characters/kash/front.svg",
  18213. extra: 495 / 360,
  18214. bottom: 0.015
  18215. }
  18216. },
  18217. },
  18218. [
  18219. {
  18220. name: "Normal",
  18221. height: math.unit(2, "meters"),
  18222. default: true
  18223. },
  18224. {
  18225. name: "Big",
  18226. height: math.unit(3, "meters")
  18227. },
  18228. {
  18229. name: "Large",
  18230. height: math.unit(5, "meters")
  18231. },
  18232. ]
  18233. ))
  18234. characterMakers.push(() => makeCharacter(
  18235. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18236. {
  18237. feeding: {
  18238. height: math.unit(6.7, "feet"),
  18239. weight: math.unit(350, "lb"),
  18240. name: "Feeding",
  18241. image: {
  18242. source: "./media/characters/lalim/feeding.svg",
  18243. }
  18244. },
  18245. },
  18246. [
  18247. {
  18248. name: "Normal",
  18249. height: math.unit(6.7, "feet"),
  18250. default: true
  18251. },
  18252. ]
  18253. ))
  18254. characterMakers.push(() => makeCharacter(
  18255. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18256. {
  18257. front: {
  18258. height: math.unit(9.5, "feet"),
  18259. weight: math.unit(600, "lb"),
  18260. name: "Front",
  18261. image: {
  18262. source: "./media/characters/de'vout/front.svg",
  18263. extra: 1443 / 1328,
  18264. bottom: 0.025
  18265. }
  18266. },
  18267. back: {
  18268. height: math.unit(9.5, "feet"),
  18269. weight: math.unit(600, "lb"),
  18270. name: "Back",
  18271. image: {
  18272. source: "./media/characters/de'vout/back.svg",
  18273. extra: 1443 / 1328
  18274. }
  18275. },
  18276. frontDressed: {
  18277. height: math.unit(9.5, "feet"),
  18278. weight: math.unit(600, "lb"),
  18279. name: "Front (Dressed",
  18280. image: {
  18281. source: "./media/characters/de'vout/front-dressed.svg",
  18282. extra: 1443 / 1328,
  18283. bottom: 0.025
  18284. }
  18285. },
  18286. backDressed: {
  18287. height: math.unit(9.5, "feet"),
  18288. weight: math.unit(600, "lb"),
  18289. name: "Back (Dressed",
  18290. image: {
  18291. source: "./media/characters/de'vout/back-dressed.svg",
  18292. extra: 1443 / 1328
  18293. }
  18294. },
  18295. },
  18296. [
  18297. {
  18298. name: "Normal",
  18299. height: math.unit(9.5, "feet"),
  18300. default: true
  18301. },
  18302. ]
  18303. ))
  18304. characterMakers.push(() => makeCharacter(
  18305. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18306. {
  18307. front: {
  18308. height: math.unit(8, "feet"),
  18309. weight: math.unit(225, "lb"),
  18310. name: "Front",
  18311. image: {
  18312. source: "./media/characters/talana/front.svg",
  18313. extra: 1410 / 1300,
  18314. bottom: 0.015
  18315. }
  18316. },
  18317. frontDressed: {
  18318. height: math.unit(8, "feet"),
  18319. weight: math.unit(225, "lb"),
  18320. name: "Front (Dressed",
  18321. image: {
  18322. source: "./media/characters/talana/front-dressed.svg",
  18323. extra: 1410 / 1300,
  18324. bottom: 0.015
  18325. }
  18326. },
  18327. },
  18328. [
  18329. {
  18330. name: "Normal",
  18331. height: math.unit(8, "feet"),
  18332. default: true
  18333. },
  18334. ]
  18335. ))
  18336. characterMakers.push(() => makeCharacter(
  18337. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18338. {
  18339. side: {
  18340. height: math.unit(7.2, "feet"),
  18341. weight: math.unit(150, "lb"),
  18342. name: "Side",
  18343. image: {
  18344. source: "./media/characters/xeauvok/side.svg",
  18345. extra: 1975 / 1523,
  18346. bottom: 0.07
  18347. }
  18348. },
  18349. },
  18350. [
  18351. {
  18352. name: "Normal",
  18353. height: math.unit(7.2, "feet"),
  18354. default: true
  18355. },
  18356. ]
  18357. ))
  18358. characterMakers.push(() => makeCharacter(
  18359. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18360. {
  18361. side: {
  18362. height: math.unit(10, "feet"),
  18363. weight: math.unit(900, "kg"),
  18364. name: "Side",
  18365. image: {
  18366. source: "./media/characters/zara/side.svg",
  18367. extra: 504 / 498
  18368. }
  18369. },
  18370. },
  18371. [
  18372. {
  18373. name: "Normal",
  18374. height: math.unit(10, "feet"),
  18375. default: true
  18376. },
  18377. ]
  18378. ))
  18379. characterMakers.push(() => makeCharacter(
  18380. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18381. {
  18382. side: {
  18383. height: math.unit(6, "feet"),
  18384. weight: math.unit(150, "lb"),
  18385. name: "Side",
  18386. image: {
  18387. source: "./media/characters/richard-dragon/side.svg",
  18388. extra: 845 / 340,
  18389. bottom: 0.017
  18390. }
  18391. },
  18392. maw: {
  18393. height: math.unit(2.97, "feet"),
  18394. name: "Maw",
  18395. image: {
  18396. source: "./media/characters/richard-dragon/maw.svg"
  18397. }
  18398. },
  18399. },
  18400. [
  18401. ]
  18402. ))
  18403. characterMakers.push(() => makeCharacter(
  18404. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18405. {
  18406. front: {
  18407. height: math.unit(4, "feet"),
  18408. weight: math.unit(100, "lb"),
  18409. name: "Front",
  18410. image: {
  18411. source: "./media/characters/richard-smeargle/front.svg",
  18412. extra: 2952 / 2820,
  18413. bottom: 0.028
  18414. }
  18415. },
  18416. },
  18417. [
  18418. {
  18419. name: "Normal",
  18420. height: math.unit(4, "feet"),
  18421. default: true
  18422. },
  18423. {
  18424. name: "Dynamax",
  18425. height: math.unit(20, "meters")
  18426. },
  18427. ]
  18428. ))
  18429. characterMakers.push(() => makeCharacter(
  18430. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18431. {
  18432. front: {
  18433. height: math.unit(6, "feet"),
  18434. weight: math.unit(110, "lb"),
  18435. name: "Front",
  18436. image: {
  18437. source: "./media/characters/klay/front.svg",
  18438. extra: 962 / 883,
  18439. bottom: 0.04
  18440. }
  18441. },
  18442. back: {
  18443. height: math.unit(6, "feet"),
  18444. weight: math.unit(110, "lb"),
  18445. name: "Back",
  18446. image: {
  18447. source: "./media/characters/klay/back.svg",
  18448. extra: 962 / 883
  18449. }
  18450. },
  18451. beans: {
  18452. height: math.unit(1.15, "feet"),
  18453. name: "Beans",
  18454. image: {
  18455. source: "./media/characters/klay/beans.svg"
  18456. }
  18457. },
  18458. },
  18459. [
  18460. {
  18461. name: "Micro",
  18462. height: math.unit(6, "inches")
  18463. },
  18464. {
  18465. name: "Mini",
  18466. height: math.unit(3, "feet")
  18467. },
  18468. {
  18469. name: "Normal",
  18470. height: math.unit(6, "feet"),
  18471. default: true
  18472. },
  18473. {
  18474. name: "Big",
  18475. height: math.unit(25, "feet")
  18476. },
  18477. {
  18478. name: "Macro",
  18479. height: math.unit(100, "feet")
  18480. },
  18481. {
  18482. name: "Megamacro",
  18483. height: math.unit(400, "feet")
  18484. },
  18485. ]
  18486. ))
  18487. characterMakers.push(() => makeCharacter(
  18488. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18489. {
  18490. front: {
  18491. height: math.unit(6, "feet"),
  18492. weight: math.unit(160, "lb"),
  18493. name: "Front",
  18494. image: {
  18495. source: "./media/characters/marcus/front.svg",
  18496. extra: 734 / 676,
  18497. bottom: 0.03
  18498. }
  18499. },
  18500. },
  18501. [
  18502. {
  18503. name: "Little",
  18504. height: math.unit(6, "feet")
  18505. },
  18506. {
  18507. name: "Normal",
  18508. height: math.unit(110, "feet"),
  18509. default: true
  18510. },
  18511. {
  18512. name: "Macro",
  18513. height: math.unit(250, "feet")
  18514. },
  18515. {
  18516. name: "Megamacro",
  18517. height: math.unit(1000, "feet")
  18518. },
  18519. ]
  18520. ))
  18521. characterMakers.push(() => makeCharacter(
  18522. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18523. {
  18524. front: {
  18525. height: math.unit(7, "feet"),
  18526. weight: math.unit(275, "lb"),
  18527. name: "Front",
  18528. image: {
  18529. source: "./media/characters/claude-delroute/front.svg",
  18530. extra: 902/827,
  18531. bottom: 26/928
  18532. }
  18533. },
  18534. side: {
  18535. height: math.unit(7, "feet"),
  18536. weight: math.unit(275, "lb"),
  18537. name: "Side",
  18538. image: {
  18539. source: "./media/characters/claude-delroute/side.svg",
  18540. extra: 908/853,
  18541. bottom: 16/924
  18542. }
  18543. },
  18544. back: {
  18545. height: math.unit(7, "feet"),
  18546. weight: math.unit(275, "lb"),
  18547. name: "Back",
  18548. image: {
  18549. source: "./media/characters/claude-delroute/back.svg",
  18550. extra: 911/829,
  18551. bottom: 18/929
  18552. }
  18553. },
  18554. maw: {
  18555. height: math.unit(0.6407, "meters"),
  18556. name: "Maw",
  18557. image: {
  18558. source: "./media/characters/claude-delroute/maw.svg"
  18559. }
  18560. },
  18561. },
  18562. [
  18563. {
  18564. name: "Normal",
  18565. height: math.unit(7, "feet"),
  18566. default: true
  18567. },
  18568. {
  18569. name: "Lorge",
  18570. height: math.unit(20, "feet")
  18571. },
  18572. ]
  18573. ))
  18574. characterMakers.push(() => makeCharacter(
  18575. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18576. {
  18577. front: {
  18578. height: math.unit(8 + 4 / 12, "feet"),
  18579. weight: math.unit(600, "lb"),
  18580. name: "Front",
  18581. image: {
  18582. source: "./media/characters/dragonien/front.svg",
  18583. extra: 100 / 94,
  18584. bottom: 3.3 / 103.3445
  18585. }
  18586. },
  18587. back: {
  18588. height: math.unit(8 + 4 / 12, "feet"),
  18589. weight: math.unit(600, "lb"),
  18590. name: "Back",
  18591. image: {
  18592. source: "./media/characters/dragonien/back.svg",
  18593. extra: 776 / 746,
  18594. bottom: 6.4 / 782.0616
  18595. }
  18596. },
  18597. foot: {
  18598. height: math.unit(1.54, "feet"),
  18599. name: "Foot",
  18600. image: {
  18601. source: "./media/characters/dragonien/foot.svg",
  18602. }
  18603. },
  18604. },
  18605. [
  18606. {
  18607. name: "Normal",
  18608. height: math.unit(8 + 4 / 12, "feet"),
  18609. default: true
  18610. },
  18611. {
  18612. name: "Macro",
  18613. height: math.unit(200, "feet")
  18614. },
  18615. {
  18616. name: "Megamacro",
  18617. height: math.unit(1, "mile")
  18618. },
  18619. {
  18620. name: "Gigamacro",
  18621. height: math.unit(1000, "miles")
  18622. },
  18623. ]
  18624. ))
  18625. characterMakers.push(() => makeCharacter(
  18626. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18627. {
  18628. front: {
  18629. height: math.unit(5 + 2 / 12, "feet"),
  18630. weight: math.unit(110, "lb"),
  18631. name: "Front",
  18632. image: {
  18633. source: "./media/characters/desta/front.svg",
  18634. extra: 767 / 726,
  18635. bottom: 11.7 / 779
  18636. }
  18637. },
  18638. back: {
  18639. height: math.unit(5 + 2 / 12, "feet"),
  18640. weight: math.unit(110, "lb"),
  18641. name: "Back",
  18642. image: {
  18643. source: "./media/characters/desta/back.svg",
  18644. extra: 777 / 728,
  18645. bottom: 6 / 784
  18646. }
  18647. },
  18648. frontAlt: {
  18649. height: math.unit(5 + 2 / 12, "feet"),
  18650. weight: math.unit(110, "lb"),
  18651. name: "Front",
  18652. image: {
  18653. source: "./media/characters/desta/front-alt.svg",
  18654. extra: 1482 / 1417
  18655. }
  18656. },
  18657. side: {
  18658. height: math.unit(5 + 2 / 12, "feet"),
  18659. weight: math.unit(110, "lb"),
  18660. name: "Side",
  18661. image: {
  18662. source: "./media/characters/desta/side.svg",
  18663. extra: 2579 / 2491,
  18664. bottom: 0.053
  18665. }
  18666. },
  18667. },
  18668. [
  18669. {
  18670. name: "Micro",
  18671. height: math.unit(6, "inches")
  18672. },
  18673. {
  18674. name: "Normal",
  18675. height: math.unit(5 + 2 / 12, "feet"),
  18676. default: true
  18677. },
  18678. {
  18679. name: "Macro",
  18680. height: math.unit(62, "feet")
  18681. },
  18682. {
  18683. name: "Megamacro",
  18684. height: math.unit(1800, "feet")
  18685. },
  18686. ]
  18687. ))
  18688. characterMakers.push(() => makeCharacter(
  18689. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18690. {
  18691. front: {
  18692. height: math.unit(10, "feet"),
  18693. weight: math.unit(700, "lb"),
  18694. name: "Front",
  18695. image: {
  18696. source: "./media/characters/storm-alystar/front.svg",
  18697. extra: 2112 / 1898,
  18698. bottom: 0.034
  18699. }
  18700. },
  18701. },
  18702. [
  18703. {
  18704. name: "Micro",
  18705. height: math.unit(3.5, "inches")
  18706. },
  18707. {
  18708. name: "Normal",
  18709. height: math.unit(10, "feet"),
  18710. default: true
  18711. },
  18712. {
  18713. name: "Macro",
  18714. height: math.unit(400, "feet")
  18715. },
  18716. {
  18717. name: "Deific",
  18718. height: math.unit(60, "miles")
  18719. },
  18720. ]
  18721. ))
  18722. characterMakers.push(() => makeCharacter(
  18723. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18724. {
  18725. front: {
  18726. height: math.unit(2.35, "meters"),
  18727. weight: math.unit(119, "kg"),
  18728. name: "Front",
  18729. image: {
  18730. source: "./media/characters/ilia/front.svg",
  18731. extra: 1285 / 1255,
  18732. bottom: 0.06
  18733. }
  18734. },
  18735. },
  18736. [
  18737. {
  18738. name: "Normal",
  18739. height: math.unit(2.35, "meters")
  18740. },
  18741. {
  18742. name: "Macro",
  18743. height: math.unit(140, "meters"),
  18744. default: true
  18745. },
  18746. {
  18747. name: "Megamacro",
  18748. height: math.unit(100, "miles")
  18749. },
  18750. ]
  18751. ))
  18752. characterMakers.push(() => makeCharacter(
  18753. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18754. {
  18755. front: {
  18756. height: math.unit(6 + 5 / 12, "feet"),
  18757. weight: math.unit(190, "lb"),
  18758. name: "Front",
  18759. image: {
  18760. source: "./media/characters/kingdead/front.svg",
  18761. extra: 1228 / 1177
  18762. }
  18763. },
  18764. },
  18765. [
  18766. {
  18767. name: "Micro",
  18768. height: math.unit(7, "inches")
  18769. },
  18770. {
  18771. name: "Normal",
  18772. height: math.unit(6 + 5 / 12, "feet")
  18773. },
  18774. {
  18775. name: "Macro",
  18776. height: math.unit(150, "feet"),
  18777. default: true
  18778. },
  18779. {
  18780. name: "Megamacro",
  18781. height: math.unit(200, "miles")
  18782. },
  18783. ]
  18784. ))
  18785. characterMakers.push(() => makeCharacter(
  18786. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18787. {
  18788. front: {
  18789. height: math.unit(8, "feet"),
  18790. weight: math.unit(600, "lb"),
  18791. name: "Front",
  18792. image: {
  18793. source: "./media/characters/kyrehx/front.svg",
  18794. extra: 1195 / 1095,
  18795. bottom: 0.034
  18796. }
  18797. },
  18798. },
  18799. [
  18800. {
  18801. name: "Micro",
  18802. height: math.unit(2, "inches")
  18803. },
  18804. {
  18805. name: "Normal",
  18806. height: math.unit(8, "feet"),
  18807. default: true
  18808. },
  18809. {
  18810. name: "Macro",
  18811. height: math.unit(255, "feet")
  18812. },
  18813. ]
  18814. ))
  18815. characterMakers.push(() => makeCharacter(
  18816. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18817. {
  18818. front: {
  18819. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18820. weight: math.unit(184, "lb"),
  18821. name: "Front",
  18822. image: {
  18823. source: "./media/characters/xang/front.svg",
  18824. extra: 845 / 755
  18825. }
  18826. },
  18827. },
  18828. [
  18829. {
  18830. name: "Normal",
  18831. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18832. default: true
  18833. },
  18834. {
  18835. name: "Macro",
  18836. height: math.unit(0.935 * 146, "feet")
  18837. },
  18838. {
  18839. name: "Megamacro",
  18840. height: math.unit(0.935 * 3, "miles")
  18841. },
  18842. ]
  18843. ))
  18844. characterMakers.push(() => makeCharacter(
  18845. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18846. {
  18847. frontDressed: {
  18848. height: math.unit(5 + 7 / 12, "feet"),
  18849. weight: math.unit(140, "lb"),
  18850. name: "Front (Dressed)",
  18851. image: {
  18852. source: "./media/characters/doc-weardno/front-dressed.svg",
  18853. extra: 263 / 234
  18854. }
  18855. },
  18856. backDressed: {
  18857. height: math.unit(5 + 7 / 12, "feet"),
  18858. weight: math.unit(140, "lb"),
  18859. name: "Back (Dressed)",
  18860. image: {
  18861. source: "./media/characters/doc-weardno/back-dressed.svg",
  18862. extra: 266 / 238
  18863. }
  18864. },
  18865. front: {
  18866. height: math.unit(5 + 7 / 12, "feet"),
  18867. weight: math.unit(140, "lb"),
  18868. name: "Front",
  18869. image: {
  18870. source: "./media/characters/doc-weardno/front.svg",
  18871. extra: 254 / 233
  18872. }
  18873. },
  18874. },
  18875. [
  18876. {
  18877. name: "Micro",
  18878. height: math.unit(3, "inches")
  18879. },
  18880. {
  18881. name: "Normal",
  18882. height: math.unit(5 + 7 / 12, "feet"),
  18883. default: true
  18884. },
  18885. {
  18886. name: "Macro",
  18887. height: math.unit(25, "feet")
  18888. },
  18889. {
  18890. name: "Megamacro",
  18891. height: math.unit(2, "miles")
  18892. },
  18893. ]
  18894. ))
  18895. characterMakers.push(() => makeCharacter(
  18896. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18897. {
  18898. front: {
  18899. height: math.unit(6 + 2 / 12, "feet"),
  18900. weight: math.unit(153, "lb"),
  18901. name: "Front",
  18902. image: {
  18903. source: "./media/characters/seth-whilst/front.svg",
  18904. bottom: 0.07
  18905. }
  18906. },
  18907. },
  18908. [
  18909. {
  18910. name: "Micro",
  18911. height: math.unit(5, "inches")
  18912. },
  18913. {
  18914. name: "Normal",
  18915. height: math.unit(6 + 2 / 12, "feet"),
  18916. default: true
  18917. },
  18918. ]
  18919. ))
  18920. characterMakers.push(() => makeCharacter(
  18921. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18922. {
  18923. front: {
  18924. height: math.unit(3, "inches"),
  18925. weight: math.unit(8, "grams"),
  18926. name: "Front",
  18927. image: {
  18928. source: "./media/characters/pocket-jabari/front.svg",
  18929. extra: 1024 / 974,
  18930. bottom: 0.039
  18931. }
  18932. },
  18933. },
  18934. [
  18935. {
  18936. name: "Minimicro",
  18937. height: math.unit(8, "mm")
  18938. },
  18939. {
  18940. name: "Micro",
  18941. height: math.unit(3, "inches"),
  18942. default: true
  18943. },
  18944. {
  18945. name: "Normal",
  18946. height: math.unit(3, "feet")
  18947. },
  18948. ]
  18949. ))
  18950. characterMakers.push(() => makeCharacter(
  18951. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18952. {
  18953. front: {
  18954. height: math.unit(15, "feet"),
  18955. weight: math.unit(3280, "lb"),
  18956. name: "Front",
  18957. image: {
  18958. source: "./media/characters/sapphy/front.svg",
  18959. extra: 671 / 577,
  18960. bottom: 0.085
  18961. }
  18962. },
  18963. back: {
  18964. height: math.unit(15, "feet"),
  18965. weight: math.unit(3280, "lb"),
  18966. name: "Back",
  18967. image: {
  18968. source: "./media/characters/sapphy/back.svg",
  18969. extra: 631 / 607,
  18970. bottom: 0.045
  18971. }
  18972. },
  18973. },
  18974. [
  18975. {
  18976. name: "Normal",
  18977. height: math.unit(15, "feet")
  18978. },
  18979. {
  18980. name: "Casual Macro",
  18981. height: math.unit(120, "feet")
  18982. },
  18983. {
  18984. name: "Macro",
  18985. height: math.unit(2150, "feet"),
  18986. default: true
  18987. },
  18988. {
  18989. name: "Megamacro",
  18990. height: math.unit(8, "miles")
  18991. },
  18992. {
  18993. name: "Galaxy Mom",
  18994. height: math.unit(6, "megalightyears")
  18995. },
  18996. ]
  18997. ))
  18998. characterMakers.push(() => makeCharacter(
  18999. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19000. {
  19001. front: {
  19002. height: math.unit(6, "feet"),
  19003. weight: math.unit(170, "lb"),
  19004. name: "Front",
  19005. image: {
  19006. source: "./media/characters/kiro/front.svg",
  19007. extra: 1064 / 1012,
  19008. bottom: 0.052
  19009. }
  19010. },
  19011. },
  19012. [
  19013. {
  19014. name: "Micro",
  19015. height: math.unit(6, "inches")
  19016. },
  19017. {
  19018. name: "Normal",
  19019. height: math.unit(6, "feet"),
  19020. default: true
  19021. },
  19022. {
  19023. name: "Macro",
  19024. height: math.unit(72, "feet")
  19025. },
  19026. ]
  19027. ))
  19028. characterMakers.push(() => makeCharacter(
  19029. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19030. {
  19031. front: {
  19032. height: math.unit(5 + 9 / 12, "feet"),
  19033. weight: math.unit(175, "lb"),
  19034. name: "Front",
  19035. image: {
  19036. source: "./media/characters/irishfox/front.svg",
  19037. extra: 1912 / 1680,
  19038. bottom: 0.02
  19039. }
  19040. },
  19041. },
  19042. [
  19043. {
  19044. name: "Nano",
  19045. height: math.unit(1, "mm")
  19046. },
  19047. {
  19048. name: "Micro",
  19049. height: math.unit(2, "inches")
  19050. },
  19051. {
  19052. name: "Normal",
  19053. height: math.unit(5 + 9 / 12, "feet"),
  19054. default: true
  19055. },
  19056. {
  19057. name: "Macro",
  19058. height: math.unit(45, "feet")
  19059. },
  19060. ]
  19061. ))
  19062. characterMakers.push(() => makeCharacter(
  19063. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19064. {
  19065. front: {
  19066. height: math.unit(6 + 1 / 12, "feet"),
  19067. weight: math.unit(75, "lb"),
  19068. name: "Front",
  19069. image: {
  19070. source: "./media/characters/aronai-sieyes/front.svg",
  19071. extra: 1532/1450,
  19072. bottom: 42/1574
  19073. }
  19074. },
  19075. side: {
  19076. height: math.unit(6 + 1 / 12, "feet"),
  19077. weight: math.unit(75, "lb"),
  19078. name: "Side",
  19079. image: {
  19080. source: "./media/characters/aronai-sieyes/side.svg",
  19081. extra: 1422/1365,
  19082. bottom: 148/1570
  19083. }
  19084. },
  19085. back: {
  19086. height: math.unit(6 + 1 / 12, "feet"),
  19087. weight: math.unit(75, "lb"),
  19088. name: "Back",
  19089. image: {
  19090. source: "./media/characters/aronai-sieyes/back.svg",
  19091. extra: 1526/1464,
  19092. bottom: 51/1577
  19093. }
  19094. },
  19095. dressed: {
  19096. height: math.unit(6 + 1 / 12, "feet"),
  19097. weight: math.unit(75, "lb"),
  19098. name: "Dressed",
  19099. image: {
  19100. source: "./media/characters/aronai-sieyes/dressed.svg",
  19101. extra: 1559/1483,
  19102. bottom: 39/1598
  19103. }
  19104. },
  19105. slit: {
  19106. height: math.unit(1.3, "feet"),
  19107. name: "Slit",
  19108. image: {
  19109. source: "./media/characters/aronai-sieyes/slit.svg"
  19110. }
  19111. },
  19112. slitSpread: {
  19113. height: math.unit(0.9, "feet"),
  19114. name: "Slit (Spread)",
  19115. image: {
  19116. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19117. }
  19118. },
  19119. rump: {
  19120. height: math.unit(1.3, "feet"),
  19121. name: "Rump",
  19122. image: {
  19123. source: "./media/characters/aronai-sieyes/rump.svg"
  19124. }
  19125. },
  19126. maw: {
  19127. height: math.unit(1.25, "feet"),
  19128. name: "Maw",
  19129. image: {
  19130. source: "./media/characters/aronai-sieyes/maw.svg"
  19131. }
  19132. },
  19133. feral: {
  19134. height: math.unit(18, "feet"),
  19135. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19136. name: "Feral",
  19137. image: {
  19138. source: "./media/characters/aronai-sieyes/feral.svg",
  19139. extra: 1530 / 1240,
  19140. bottom: 0.035
  19141. }
  19142. },
  19143. },
  19144. [
  19145. {
  19146. name: "Micro",
  19147. height: math.unit(2, "inches")
  19148. },
  19149. {
  19150. name: "Normal",
  19151. height: math.unit(6 + 1 / 12, "feet"),
  19152. default: true
  19153. }
  19154. ]
  19155. ))
  19156. characterMakers.push(() => makeCharacter(
  19157. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19158. {
  19159. front: {
  19160. height: math.unit(12, "feet"),
  19161. weight: math.unit(410, "kg"),
  19162. name: "Front",
  19163. image: {
  19164. source: "./media/characters/xuna/front.svg",
  19165. extra: 2184 / 1980
  19166. }
  19167. },
  19168. side: {
  19169. height: math.unit(12, "feet"),
  19170. weight: math.unit(410, "kg"),
  19171. name: "Side",
  19172. image: {
  19173. source: "./media/characters/xuna/side.svg",
  19174. extra: 2184 / 1980
  19175. }
  19176. },
  19177. back: {
  19178. height: math.unit(12, "feet"),
  19179. weight: math.unit(410, "kg"),
  19180. name: "Back",
  19181. image: {
  19182. source: "./media/characters/xuna/back.svg",
  19183. extra: 2184 / 1980
  19184. }
  19185. },
  19186. },
  19187. [
  19188. {
  19189. name: "Nano glow",
  19190. height: math.unit(10, "nm")
  19191. },
  19192. {
  19193. name: "Micro floof",
  19194. height: math.unit(0.3, "m")
  19195. },
  19196. {
  19197. name: "Huggable softy boi",
  19198. height: math.unit(3.6576, "m"),
  19199. default: true
  19200. },
  19201. {
  19202. name: "Admirable floof",
  19203. height: math.unit(80, "meters")
  19204. },
  19205. {
  19206. name: "Gentle macro",
  19207. height: math.unit(300, "meters")
  19208. },
  19209. {
  19210. name: "Very careful floof",
  19211. height: math.unit(3200, "meters")
  19212. },
  19213. {
  19214. name: "The mega floof",
  19215. height: math.unit(36000, "meters")
  19216. },
  19217. {
  19218. name: "Giga-fur-Wicker",
  19219. height: math.unit(4800000, "meters")
  19220. },
  19221. {
  19222. name: "Licky world",
  19223. height: math.unit(20000000, "meters")
  19224. },
  19225. {
  19226. name: "Floofy cyan sun",
  19227. height: math.unit(1500000000, "meters")
  19228. },
  19229. {
  19230. name: "Milky Wicker",
  19231. height: math.unit(1000000000000000000000, "meters")
  19232. },
  19233. {
  19234. name: "The observing Wicker",
  19235. height: math.unit(999999999999999999999999999, "meters")
  19236. },
  19237. ]
  19238. ))
  19239. characterMakers.push(() => makeCharacter(
  19240. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19241. {
  19242. front: {
  19243. height: math.unit(5 + 9 / 12, "feet"),
  19244. weight: math.unit(150, "lb"),
  19245. name: "Front",
  19246. image: {
  19247. source: "./media/characters/arokha-sieyes/front.svg",
  19248. extra: 1425 / 1284,
  19249. bottom: 0.05
  19250. }
  19251. },
  19252. },
  19253. [
  19254. {
  19255. name: "Normal",
  19256. height: math.unit(5 + 9 / 12, "feet")
  19257. },
  19258. {
  19259. name: "Macro",
  19260. height: math.unit(30, "meters"),
  19261. default: true
  19262. },
  19263. ]
  19264. ))
  19265. characterMakers.push(() => makeCharacter(
  19266. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19267. {
  19268. front: {
  19269. height: math.unit(6, "feet"),
  19270. weight: math.unit(180, "lb"),
  19271. name: "Front",
  19272. image: {
  19273. source: "./media/characters/arokh-sieyes/front.svg",
  19274. extra: 1830 / 1769,
  19275. bottom: 0.01
  19276. }
  19277. },
  19278. },
  19279. [
  19280. {
  19281. name: "Normal",
  19282. height: math.unit(6, "feet")
  19283. },
  19284. {
  19285. name: "Macro",
  19286. height: math.unit(30, "meters"),
  19287. default: true
  19288. },
  19289. ]
  19290. ))
  19291. characterMakers.push(() => makeCharacter(
  19292. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19293. {
  19294. side: {
  19295. height: math.unit(13 + 1 / 12, "feet"),
  19296. weight: math.unit(8.5, "tonnes"),
  19297. name: "Side",
  19298. image: {
  19299. source: "./media/characters/goldeneye/side.svg",
  19300. extra: 1182 / 778,
  19301. bottom: 0.067
  19302. }
  19303. },
  19304. paw: {
  19305. height: math.unit(3.4, "feet"),
  19306. name: "Paw",
  19307. image: {
  19308. source: "./media/characters/goldeneye/paw.svg"
  19309. }
  19310. },
  19311. },
  19312. [
  19313. {
  19314. name: "Normal",
  19315. height: math.unit(13 + 1 / 12, "feet"),
  19316. default: true
  19317. },
  19318. ]
  19319. ))
  19320. characterMakers.push(() => makeCharacter(
  19321. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19322. {
  19323. front: {
  19324. height: math.unit(6 + 1 / 12, "feet"),
  19325. weight: math.unit(210, "lb"),
  19326. name: "Front",
  19327. image: {
  19328. source: "./media/characters/leonardo-lycheborne/front.svg",
  19329. extra: 776/723,
  19330. bottom: 34/810
  19331. }
  19332. },
  19333. side: {
  19334. height: math.unit(6 + 1 / 12, "feet"),
  19335. weight: math.unit(210, "lb"),
  19336. name: "Side",
  19337. image: {
  19338. source: "./media/characters/leonardo-lycheborne/side.svg",
  19339. extra: 780/728,
  19340. bottom: 12/792
  19341. }
  19342. },
  19343. back: {
  19344. height: math.unit(6 + 1 / 12, "feet"),
  19345. weight: math.unit(210, "lb"),
  19346. name: "Back",
  19347. image: {
  19348. source: "./media/characters/leonardo-lycheborne/back.svg",
  19349. extra: 775/721,
  19350. bottom: 17/792
  19351. }
  19352. },
  19353. hand: {
  19354. height: math.unit(1.08, "feet"),
  19355. name: "Hand",
  19356. image: {
  19357. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19358. }
  19359. },
  19360. foot: {
  19361. height: math.unit(1.32, "feet"),
  19362. name: "Foot",
  19363. image: {
  19364. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19365. }
  19366. },
  19367. maw: {
  19368. height: math.unit(1, "feet"),
  19369. name: "Maw",
  19370. image: {
  19371. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19372. }
  19373. },
  19374. were: {
  19375. height: math.unit(20, "feet"),
  19376. weight: math.unit(7800, "lb"),
  19377. name: "Were",
  19378. image: {
  19379. source: "./media/characters/leonardo-lycheborne/were.svg",
  19380. extra: 1224/1165,
  19381. bottom: 72/1296
  19382. }
  19383. },
  19384. feral: {
  19385. height: math.unit(7.5, "feet"),
  19386. weight: math.unit(600, "lb"),
  19387. name: "Feral",
  19388. image: {
  19389. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19390. extra: 797/702,
  19391. bottom: 139/936
  19392. }
  19393. },
  19394. taur: {
  19395. height: math.unit(11, "feet"),
  19396. weight: math.unit(3300, "lb"),
  19397. name: "Taur",
  19398. image: {
  19399. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19400. extra: 1271/1197,
  19401. bottom: 47/1318
  19402. }
  19403. },
  19404. barghest: {
  19405. height: math.unit(11, "feet"),
  19406. weight: math.unit(1300, "lb"),
  19407. name: "Barghest",
  19408. image: {
  19409. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19410. extra: 1291/1204,
  19411. bottom: 37/1328
  19412. }
  19413. },
  19414. dick: {
  19415. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19416. name: "Dick",
  19417. image: {
  19418. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19419. }
  19420. },
  19421. dickWere: {
  19422. height: math.unit((20) / 3.8, "feet"),
  19423. name: "Dick (Were)",
  19424. image: {
  19425. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19426. }
  19427. },
  19428. },
  19429. [
  19430. {
  19431. name: "Normal",
  19432. height: math.unit(6 + 1 / 12, "feet"),
  19433. default: true
  19434. },
  19435. ]
  19436. ))
  19437. characterMakers.push(() => makeCharacter(
  19438. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19439. {
  19440. front: {
  19441. height: math.unit(10, "feet"),
  19442. weight: math.unit(350, "lb"),
  19443. name: "Front",
  19444. image: {
  19445. source: "./media/characters/jet/front.svg",
  19446. extra: 2050 / 1980,
  19447. bottom: 0.013
  19448. }
  19449. },
  19450. back: {
  19451. height: math.unit(10, "feet"),
  19452. weight: math.unit(350, "lb"),
  19453. name: "Back",
  19454. image: {
  19455. source: "./media/characters/jet/back.svg",
  19456. extra: 2050 / 1980,
  19457. bottom: 0.013
  19458. }
  19459. },
  19460. },
  19461. [
  19462. {
  19463. name: "Micro",
  19464. height: math.unit(6, "inches")
  19465. },
  19466. {
  19467. name: "Normal",
  19468. height: math.unit(10, "feet"),
  19469. default: true
  19470. },
  19471. {
  19472. name: "Macro",
  19473. height: math.unit(100, "feet")
  19474. },
  19475. ]
  19476. ))
  19477. characterMakers.push(() => makeCharacter(
  19478. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19479. {
  19480. front: {
  19481. height: math.unit(15, "feet"),
  19482. weight: math.unit(2800, "lb"),
  19483. name: "Front",
  19484. image: {
  19485. source: "./media/characters/tanarath/front.svg",
  19486. extra: 2392 / 2220,
  19487. bottom: 0.03
  19488. }
  19489. },
  19490. back: {
  19491. height: math.unit(15, "feet"),
  19492. weight: math.unit(2800, "lb"),
  19493. name: "Back",
  19494. image: {
  19495. source: "./media/characters/tanarath/back.svg",
  19496. extra: 2392 / 2220,
  19497. bottom: 0.03
  19498. }
  19499. },
  19500. },
  19501. [
  19502. {
  19503. name: "Normal",
  19504. height: math.unit(15, "feet"),
  19505. default: true
  19506. },
  19507. ]
  19508. ))
  19509. characterMakers.push(() => makeCharacter(
  19510. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19511. {
  19512. front: {
  19513. height: math.unit(7 + 1 / 12, "feet"),
  19514. weight: math.unit(175, "lb"),
  19515. name: "Front",
  19516. image: {
  19517. source: "./media/characters/patty-cattybatty/front.svg",
  19518. extra: 908 / 874,
  19519. bottom: 0.025
  19520. }
  19521. },
  19522. },
  19523. [
  19524. {
  19525. name: "Micro",
  19526. height: math.unit(1, "inch")
  19527. },
  19528. {
  19529. name: "Normal",
  19530. height: math.unit(7 + 1 / 12, "feet")
  19531. },
  19532. {
  19533. name: "Mini Macro",
  19534. height: math.unit(155, "feet")
  19535. },
  19536. {
  19537. name: "Macro",
  19538. height: math.unit(1077, "feet")
  19539. },
  19540. {
  19541. name: "Mega Macro",
  19542. height: math.unit(47650, "feet"),
  19543. default: true
  19544. },
  19545. {
  19546. name: "Giga Macro",
  19547. height: math.unit(440, "miles")
  19548. },
  19549. {
  19550. name: "Tera Macro",
  19551. height: math.unit(8700, "miles")
  19552. },
  19553. {
  19554. name: "Planetary Macro",
  19555. height: math.unit(32700, "miles")
  19556. },
  19557. {
  19558. name: "Solar Macro",
  19559. height: math.unit(550000, "miles")
  19560. },
  19561. {
  19562. name: "Celestial Macro",
  19563. height: math.unit(2.5, "AU")
  19564. },
  19565. ]
  19566. ))
  19567. characterMakers.push(() => makeCharacter(
  19568. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19569. {
  19570. front: {
  19571. height: math.unit(4 + 5 / 12, "feet"),
  19572. weight: math.unit(90, "lb"),
  19573. name: "Front",
  19574. image: {
  19575. source: "./media/characters/cappu/front.svg",
  19576. extra: 1247 / 1152,
  19577. bottom: 0.012
  19578. }
  19579. },
  19580. },
  19581. [
  19582. {
  19583. name: "Normal",
  19584. height: math.unit(4 + 5 / 12, "feet"),
  19585. default: true
  19586. },
  19587. ]
  19588. ))
  19589. characterMakers.push(() => makeCharacter(
  19590. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19591. {
  19592. frontDressed: {
  19593. height: math.unit(70, "cm"),
  19594. weight: math.unit(6, "kg"),
  19595. name: "Front (Dressed)",
  19596. image: {
  19597. source: "./media/characters/sebi/front-dressed.svg",
  19598. extra: 713.5 / 686.5,
  19599. bottom: 0.003
  19600. }
  19601. },
  19602. front: {
  19603. height: math.unit(70, "cm"),
  19604. weight: math.unit(5, "kg"),
  19605. name: "Front",
  19606. image: {
  19607. source: "./media/characters/sebi/front.svg",
  19608. extra: 713.5 / 686.5,
  19609. bottom: 0.003
  19610. }
  19611. }
  19612. },
  19613. [
  19614. {
  19615. name: "Normal",
  19616. height: math.unit(70, "cm"),
  19617. default: true
  19618. },
  19619. {
  19620. name: "Macro",
  19621. height: math.unit(8, "meters")
  19622. },
  19623. ]
  19624. ))
  19625. characterMakers.push(() => makeCharacter(
  19626. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19627. {
  19628. front: {
  19629. height: math.unit(6, "feet"),
  19630. weight: math.unit(150, "lb"),
  19631. name: "Front",
  19632. image: {
  19633. source: "./media/characters/typhek/front.svg",
  19634. extra: 1948 / 1929,
  19635. bottom: 0.025
  19636. }
  19637. },
  19638. side: {
  19639. height: math.unit(6, "feet"),
  19640. weight: math.unit(150, "lb"),
  19641. name: "Side",
  19642. image: {
  19643. source: "./media/characters/typhek/side.svg",
  19644. extra: 2034 / 2010,
  19645. bottom: 0.003
  19646. }
  19647. },
  19648. back: {
  19649. height: math.unit(6, "feet"),
  19650. weight: math.unit(150, "lb"),
  19651. name: "Back",
  19652. image: {
  19653. source: "./media/characters/typhek/back.svg",
  19654. extra: 2005 / 1978,
  19655. bottom: 0.004
  19656. }
  19657. },
  19658. palm: {
  19659. height: math.unit(1.2, "feet"),
  19660. name: "Palm",
  19661. image: {
  19662. source: "./media/characters/typhek/palm.svg"
  19663. }
  19664. },
  19665. fist: {
  19666. height: math.unit(1.1, "feet"),
  19667. name: "Fist",
  19668. image: {
  19669. source: "./media/characters/typhek/fist.svg"
  19670. }
  19671. },
  19672. foot: {
  19673. height: math.unit(1.57, "feet"),
  19674. name: "Foot",
  19675. image: {
  19676. source: "./media/characters/typhek/foot.svg"
  19677. }
  19678. },
  19679. sole: {
  19680. height: math.unit(2.05, "feet"),
  19681. name: "Sole",
  19682. image: {
  19683. source: "./media/characters/typhek/sole.svg"
  19684. }
  19685. },
  19686. },
  19687. [
  19688. {
  19689. name: "Macro",
  19690. height: math.unit(40, "stories"),
  19691. default: true
  19692. },
  19693. {
  19694. name: "Megamacro",
  19695. height: math.unit(1, "mile")
  19696. },
  19697. {
  19698. name: "Gigamacro",
  19699. height: math.unit(4000, "solarradii")
  19700. },
  19701. {
  19702. name: "Universal",
  19703. height: math.unit(1.1, "universes")
  19704. }
  19705. ]
  19706. ))
  19707. characterMakers.push(() => makeCharacter(
  19708. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19709. {
  19710. side: {
  19711. height: math.unit(5 + 7 / 12, "feet"),
  19712. weight: math.unit(150, "lb"),
  19713. name: "Side",
  19714. image: {
  19715. source: "./media/characters/kassy/side.svg",
  19716. extra: 1280 / 1225,
  19717. bottom: 0.002
  19718. }
  19719. },
  19720. front: {
  19721. height: math.unit(5 + 7 / 12, "feet"),
  19722. weight: math.unit(150, "lb"),
  19723. name: "Front",
  19724. image: {
  19725. source: "./media/characters/kassy/front.svg",
  19726. extra: 1280 / 1225,
  19727. bottom: 0.025
  19728. }
  19729. },
  19730. back: {
  19731. height: math.unit(5 + 7 / 12, "feet"),
  19732. weight: math.unit(150, "lb"),
  19733. name: "Back",
  19734. image: {
  19735. source: "./media/characters/kassy/back.svg",
  19736. extra: 1280 / 1225,
  19737. bottom: 0.002
  19738. }
  19739. },
  19740. foot: {
  19741. height: math.unit(1.266, "feet"),
  19742. name: "Foot",
  19743. image: {
  19744. source: "./media/characters/kassy/foot.svg"
  19745. }
  19746. },
  19747. },
  19748. [
  19749. {
  19750. name: "Normal",
  19751. height: math.unit(5 + 7 / 12, "feet")
  19752. },
  19753. {
  19754. name: "Macro",
  19755. height: math.unit(137, "feet"),
  19756. default: true
  19757. },
  19758. {
  19759. name: "Megamacro",
  19760. height: math.unit(1, "mile")
  19761. },
  19762. ]
  19763. ))
  19764. characterMakers.push(() => makeCharacter(
  19765. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19766. {
  19767. front: {
  19768. height: math.unit(6 + 1 / 12, "feet"),
  19769. weight: math.unit(200, "lb"),
  19770. name: "Front",
  19771. image: {
  19772. source: "./media/characters/neil/front.svg",
  19773. extra: 1326 / 1250,
  19774. bottom: 0.023
  19775. }
  19776. },
  19777. },
  19778. [
  19779. {
  19780. name: "Normal",
  19781. height: math.unit(6 + 1 / 12, "feet"),
  19782. default: true
  19783. },
  19784. {
  19785. name: "Macro",
  19786. height: math.unit(200, "feet")
  19787. },
  19788. ]
  19789. ))
  19790. characterMakers.push(() => makeCharacter(
  19791. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19792. {
  19793. front: {
  19794. height: math.unit(5 + 9 / 12, "feet"),
  19795. weight: math.unit(190, "lb"),
  19796. name: "Front",
  19797. image: {
  19798. source: "./media/characters/atticus/front.svg",
  19799. extra: 2934 / 2785,
  19800. bottom: 0.025
  19801. }
  19802. },
  19803. },
  19804. [
  19805. {
  19806. name: "Normal",
  19807. height: math.unit(5 + 9 / 12, "feet"),
  19808. default: true
  19809. },
  19810. {
  19811. name: "Macro",
  19812. height: math.unit(180, "feet")
  19813. },
  19814. ]
  19815. ))
  19816. characterMakers.push(() => makeCharacter(
  19817. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19818. {
  19819. side: {
  19820. height: math.unit(9, "feet"),
  19821. weight: math.unit(650, "lb"),
  19822. name: "Side",
  19823. image: {
  19824. source: "./media/characters/milo/side.svg",
  19825. extra: 2644 / 2310,
  19826. bottom: 0.032
  19827. }
  19828. },
  19829. },
  19830. [
  19831. {
  19832. name: "Normal",
  19833. height: math.unit(9, "feet"),
  19834. default: true
  19835. },
  19836. {
  19837. name: "Macro",
  19838. height: math.unit(300, "feet")
  19839. },
  19840. ]
  19841. ))
  19842. characterMakers.push(() => makeCharacter(
  19843. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19844. {
  19845. side: {
  19846. height: math.unit(8, "meters"),
  19847. weight: math.unit(90000, "kg"),
  19848. name: "Side",
  19849. image: {
  19850. source: "./media/characters/ijzer/side.svg",
  19851. extra: 2756 / 1600,
  19852. bottom: 0.01
  19853. }
  19854. },
  19855. },
  19856. [
  19857. {
  19858. name: "Small",
  19859. height: math.unit(3, "meters")
  19860. },
  19861. {
  19862. name: "Normal",
  19863. height: math.unit(8, "meters"),
  19864. default: true
  19865. },
  19866. {
  19867. name: "Normal+",
  19868. height: math.unit(10, "meters")
  19869. },
  19870. {
  19871. name: "Bigger",
  19872. height: math.unit(24, "meters")
  19873. },
  19874. {
  19875. name: "Huge",
  19876. height: math.unit(80, "meters")
  19877. },
  19878. ]
  19879. ))
  19880. characterMakers.push(() => makeCharacter(
  19881. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19882. {
  19883. front: {
  19884. height: math.unit(6 + 2 / 12, "feet"),
  19885. weight: math.unit(153, "lb"),
  19886. name: "Front",
  19887. image: {
  19888. source: "./media/characters/luca-cervicum/front.svg",
  19889. extra: 370 / 327,
  19890. bottom: 0.015
  19891. }
  19892. },
  19893. back: {
  19894. height: math.unit(6 + 2 / 12, "feet"),
  19895. weight: math.unit(153, "lb"),
  19896. name: "Back",
  19897. image: {
  19898. source: "./media/characters/luca-cervicum/back.svg",
  19899. extra: 367 / 333,
  19900. bottom: 0.005
  19901. }
  19902. },
  19903. frontGear: {
  19904. height: math.unit(6 + 2 / 12, "feet"),
  19905. weight: math.unit(173, "lb"),
  19906. name: "Front (Gear)",
  19907. image: {
  19908. source: "./media/characters/luca-cervicum/front-gear.svg",
  19909. extra: 377 / 333,
  19910. bottom: 0.006
  19911. }
  19912. },
  19913. },
  19914. [
  19915. {
  19916. name: "Normal",
  19917. height: math.unit(6 + 2 / 12, "feet"),
  19918. default: true
  19919. },
  19920. ]
  19921. ))
  19922. characterMakers.push(() => makeCharacter(
  19923. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19924. {
  19925. front: {
  19926. height: math.unit(6 + 1 / 12, "feet"),
  19927. weight: math.unit(304, "lb"),
  19928. name: "Front",
  19929. image: {
  19930. source: "./media/characters/oliver/front.svg",
  19931. extra: 157 / 143,
  19932. bottom: 0.08
  19933. }
  19934. },
  19935. },
  19936. [
  19937. {
  19938. name: "Normal",
  19939. height: math.unit(6 + 1 / 12, "feet"),
  19940. default: true
  19941. },
  19942. ]
  19943. ))
  19944. characterMakers.push(() => makeCharacter(
  19945. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19946. {
  19947. front: {
  19948. height: math.unit(5 + 7 / 12, "feet"),
  19949. weight: math.unit(140, "lb"),
  19950. name: "Front",
  19951. image: {
  19952. source: "./media/characters/shane/front.svg",
  19953. extra: 304 / 289,
  19954. bottom: 0.005
  19955. }
  19956. },
  19957. },
  19958. [
  19959. {
  19960. name: "Normal",
  19961. height: math.unit(5 + 7 / 12, "feet"),
  19962. default: true
  19963. },
  19964. ]
  19965. ))
  19966. characterMakers.push(() => makeCharacter(
  19967. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19968. {
  19969. front: {
  19970. height: math.unit(5 + 9 / 12, "feet"),
  19971. weight: math.unit(178, "lb"),
  19972. name: "Front",
  19973. image: {
  19974. source: "./media/characters/shin/front.svg",
  19975. extra: 159 / 151,
  19976. bottom: 0.015
  19977. }
  19978. },
  19979. },
  19980. [
  19981. {
  19982. name: "Normal",
  19983. height: math.unit(5 + 9 / 12, "feet"),
  19984. default: true
  19985. },
  19986. ]
  19987. ))
  19988. characterMakers.push(() => makeCharacter(
  19989. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19990. {
  19991. front: {
  19992. height: math.unit(5 + 10 / 12, "feet"),
  19993. weight: math.unit(168, "lb"),
  19994. name: "Front",
  19995. image: {
  19996. source: "./media/characters/xerxes/front.svg",
  19997. extra: 282 / 260,
  19998. bottom: 0.045
  19999. }
  20000. },
  20001. },
  20002. [
  20003. {
  20004. name: "Normal",
  20005. height: math.unit(5 + 10 / 12, "feet"),
  20006. default: true
  20007. },
  20008. ]
  20009. ))
  20010. characterMakers.push(() => makeCharacter(
  20011. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20012. {
  20013. front: {
  20014. height: math.unit(6 + 7 / 12, "feet"),
  20015. weight: math.unit(208, "lb"),
  20016. name: "Front",
  20017. image: {
  20018. source: "./media/characters/chaska/front.svg",
  20019. extra: 332 / 319,
  20020. bottom: 0.015
  20021. }
  20022. },
  20023. },
  20024. [
  20025. {
  20026. name: "Normal",
  20027. height: math.unit(6 + 7 / 12, "feet"),
  20028. default: true
  20029. },
  20030. ]
  20031. ))
  20032. characterMakers.push(() => makeCharacter(
  20033. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20034. {
  20035. front: {
  20036. height: math.unit(5 + 8 / 12, "feet"),
  20037. weight: math.unit(208, "lb"),
  20038. name: "Front",
  20039. image: {
  20040. source: "./media/characters/enuk/front.svg",
  20041. extra: 437 / 406,
  20042. bottom: 0.02
  20043. }
  20044. },
  20045. },
  20046. [
  20047. {
  20048. name: "Normal",
  20049. height: math.unit(5 + 8 / 12, "feet"),
  20050. default: true
  20051. },
  20052. ]
  20053. ))
  20054. characterMakers.push(() => makeCharacter(
  20055. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20056. {
  20057. front: {
  20058. height: math.unit(5 + 10 / 12, "feet"),
  20059. weight: math.unit(252, "lb"),
  20060. name: "Front",
  20061. image: {
  20062. source: "./media/characters/bruun/front.svg",
  20063. extra: 197 / 187,
  20064. bottom: 0.012
  20065. }
  20066. },
  20067. },
  20068. [
  20069. {
  20070. name: "Normal",
  20071. height: math.unit(5 + 10 / 12, "feet"),
  20072. default: true
  20073. },
  20074. ]
  20075. ))
  20076. characterMakers.push(() => makeCharacter(
  20077. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20078. {
  20079. front: {
  20080. height: math.unit(6 + 10 / 12, "feet"),
  20081. weight: math.unit(255, "lb"),
  20082. name: "Front",
  20083. image: {
  20084. source: "./media/characters/alexeev/front.svg",
  20085. extra: 213 / 200,
  20086. bottom: 0.05
  20087. }
  20088. },
  20089. },
  20090. [
  20091. {
  20092. name: "Normal",
  20093. height: math.unit(6 + 10 / 12, "feet"),
  20094. default: true
  20095. },
  20096. ]
  20097. ))
  20098. characterMakers.push(() => makeCharacter(
  20099. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20100. {
  20101. front: {
  20102. height: math.unit(2 + 8 / 12, "feet"),
  20103. weight: math.unit(22, "lb"),
  20104. name: "Front",
  20105. image: {
  20106. source: "./media/characters/evelyn/front.svg",
  20107. extra: 208 / 180
  20108. }
  20109. },
  20110. },
  20111. [
  20112. {
  20113. name: "Normal",
  20114. height: math.unit(2 + 8 / 12, "feet"),
  20115. default: true
  20116. },
  20117. ]
  20118. ))
  20119. characterMakers.push(() => makeCharacter(
  20120. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20121. {
  20122. front: {
  20123. height: math.unit(5 + 9 / 12, "feet"),
  20124. weight: math.unit(139, "lb"),
  20125. name: "Front",
  20126. image: {
  20127. source: "./media/characters/inca/front.svg",
  20128. extra: 294 / 291,
  20129. bottom: 0.03
  20130. }
  20131. },
  20132. },
  20133. [
  20134. {
  20135. name: "Normal",
  20136. height: math.unit(5 + 9 / 12, "feet"),
  20137. default: true
  20138. },
  20139. ]
  20140. ))
  20141. characterMakers.push(() => makeCharacter(
  20142. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20143. {
  20144. front: {
  20145. height: math.unit(6 + 3 / 12, "feet"),
  20146. weight: math.unit(185, "lb"),
  20147. name: "Front",
  20148. image: {
  20149. source: "./media/characters/mera/front.svg",
  20150. extra: 291 / 277,
  20151. bottom: 0.03
  20152. }
  20153. },
  20154. },
  20155. [
  20156. {
  20157. name: "Normal",
  20158. height: math.unit(6 + 3 / 12, "feet"),
  20159. default: true
  20160. },
  20161. ]
  20162. ))
  20163. characterMakers.push(() => makeCharacter(
  20164. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20165. {
  20166. front: {
  20167. height: math.unit(6 + 7 / 12, "feet"),
  20168. weight: math.unit(160, "lb"),
  20169. name: "Front",
  20170. image: {
  20171. source: "./media/characters/ceres/front.svg",
  20172. extra: 1023 / 950,
  20173. bottom: 0.027
  20174. }
  20175. },
  20176. back: {
  20177. height: math.unit(6 + 7 / 12, "feet"),
  20178. weight: math.unit(160, "lb"),
  20179. name: "Back",
  20180. image: {
  20181. source: "./media/characters/ceres/back.svg",
  20182. extra: 1023 / 950
  20183. }
  20184. },
  20185. },
  20186. [
  20187. {
  20188. name: "Normal",
  20189. height: math.unit(6 + 7 / 12, "feet"),
  20190. default: true
  20191. },
  20192. ]
  20193. ))
  20194. characterMakers.push(() => makeCharacter(
  20195. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20196. {
  20197. front: {
  20198. height: math.unit(5 + 10 / 12, "feet"),
  20199. weight: math.unit(150, "lb"),
  20200. name: "Front",
  20201. image: {
  20202. source: "./media/characters/kris/front.svg",
  20203. extra: 885 / 803,
  20204. bottom: 0.03
  20205. }
  20206. },
  20207. },
  20208. [
  20209. {
  20210. name: "Normal",
  20211. height: math.unit(5 + 10 / 12, "feet"),
  20212. default: true
  20213. },
  20214. ]
  20215. ))
  20216. characterMakers.push(() => makeCharacter(
  20217. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20218. {
  20219. front: {
  20220. height: math.unit(7, "feet"),
  20221. weight: math.unit(120, "kg"),
  20222. name: "Front",
  20223. image: {
  20224. source: "./media/characters/taluthus/front.svg",
  20225. extra: 903 / 833,
  20226. bottom: 0.015
  20227. }
  20228. },
  20229. },
  20230. [
  20231. {
  20232. name: "Normal",
  20233. height: math.unit(7, "feet"),
  20234. default: true
  20235. },
  20236. {
  20237. name: "Macro",
  20238. height: math.unit(300, "feet")
  20239. },
  20240. ]
  20241. ))
  20242. characterMakers.push(() => makeCharacter(
  20243. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20244. {
  20245. front: {
  20246. height: math.unit(5 + 9 / 12, "feet"),
  20247. weight: math.unit(145, "lb"),
  20248. name: "Front",
  20249. image: {
  20250. source: "./media/characters/dawn/front.svg",
  20251. extra: 2094 / 2016,
  20252. bottom: 0.025
  20253. }
  20254. },
  20255. back: {
  20256. height: math.unit(5 + 9 / 12, "feet"),
  20257. weight: math.unit(160, "lb"),
  20258. name: "Back",
  20259. image: {
  20260. source: "./media/characters/dawn/back.svg",
  20261. extra: 2112 / 2080,
  20262. bottom: 0.005
  20263. }
  20264. },
  20265. },
  20266. [
  20267. {
  20268. name: "Normal",
  20269. height: math.unit(6 + 7 / 12, "feet"),
  20270. default: true
  20271. },
  20272. ]
  20273. ))
  20274. characterMakers.push(() => makeCharacter(
  20275. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20276. {
  20277. anthro: {
  20278. height: math.unit(8 + 3 / 12, "feet"),
  20279. weight: math.unit(450, "lb"),
  20280. name: "Anthro",
  20281. image: {
  20282. source: "./media/characters/arador/anthro.svg",
  20283. extra: 1835 / 1718,
  20284. bottom: 0.025
  20285. }
  20286. },
  20287. feral: {
  20288. height: math.unit(4, "feet"),
  20289. weight: math.unit(200, "lb"),
  20290. name: "Feral",
  20291. image: {
  20292. source: "./media/characters/arador/feral.svg",
  20293. extra: 1683 / 1514,
  20294. bottom: 0.07
  20295. }
  20296. },
  20297. },
  20298. [
  20299. {
  20300. name: "Normal",
  20301. height: math.unit(8 + 3 / 12, "feet")
  20302. },
  20303. {
  20304. name: "Macro",
  20305. height: math.unit(82.5, "feet"),
  20306. default: true
  20307. },
  20308. ]
  20309. ))
  20310. characterMakers.push(() => makeCharacter(
  20311. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20312. {
  20313. front: {
  20314. height: math.unit(5 + 10 / 12, "feet"),
  20315. weight: math.unit(125, "lb"),
  20316. name: "Front",
  20317. image: {
  20318. source: "./media/characters/dharsi/front.svg",
  20319. extra: 716 / 630,
  20320. bottom: 0.035
  20321. }
  20322. },
  20323. },
  20324. [
  20325. {
  20326. name: "Nano",
  20327. height: math.unit(100, "nm")
  20328. },
  20329. {
  20330. name: "Micro",
  20331. height: math.unit(2, "inches")
  20332. },
  20333. {
  20334. name: "Normal",
  20335. height: math.unit(5 + 10 / 12, "feet"),
  20336. default: true
  20337. },
  20338. {
  20339. name: "Macro",
  20340. height: math.unit(1000, "feet")
  20341. },
  20342. {
  20343. name: "Megamacro",
  20344. height: math.unit(10, "miles")
  20345. },
  20346. {
  20347. name: "Gigamacro",
  20348. height: math.unit(3000, "miles")
  20349. },
  20350. {
  20351. name: "Teramacro",
  20352. height: math.unit(500000, "miles")
  20353. },
  20354. {
  20355. name: "Teramacro+",
  20356. height: math.unit(30, "galaxies")
  20357. },
  20358. ]
  20359. ))
  20360. characterMakers.push(() => makeCharacter(
  20361. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20362. {
  20363. front: {
  20364. height: math.unit(6, "feet"),
  20365. weight: math.unit(150, "lb"),
  20366. name: "Front",
  20367. image: {
  20368. source: "./media/characters/deathy/front.svg",
  20369. extra: 1552 / 1463,
  20370. bottom: 0.025
  20371. }
  20372. },
  20373. side: {
  20374. height: math.unit(6, "feet"),
  20375. weight: math.unit(150, "lb"),
  20376. name: "Side",
  20377. image: {
  20378. source: "./media/characters/deathy/side.svg",
  20379. extra: 1604 / 1455,
  20380. bottom: 0.025
  20381. }
  20382. },
  20383. back: {
  20384. height: math.unit(6, "feet"),
  20385. weight: math.unit(150, "lb"),
  20386. name: "Back",
  20387. image: {
  20388. source: "./media/characters/deathy/back.svg",
  20389. extra: 1580 / 1463,
  20390. bottom: 0.005
  20391. }
  20392. },
  20393. },
  20394. [
  20395. {
  20396. name: "Micro",
  20397. height: math.unit(5, "millimeters")
  20398. },
  20399. {
  20400. name: "Normal",
  20401. height: math.unit(6 + 5 / 12, "feet"),
  20402. default: true
  20403. },
  20404. ]
  20405. ))
  20406. characterMakers.push(() => makeCharacter(
  20407. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20408. {
  20409. front: {
  20410. height: math.unit(16, "feet"),
  20411. weight: math.unit(4000, "lb"),
  20412. name: "Front",
  20413. image: {
  20414. source: "./media/characters/juniper/front.svg",
  20415. bottom: 0.04
  20416. }
  20417. },
  20418. },
  20419. [
  20420. {
  20421. name: "Normal",
  20422. height: math.unit(16, "feet"),
  20423. default: true
  20424. },
  20425. ]
  20426. ))
  20427. characterMakers.push(() => makeCharacter(
  20428. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20429. {
  20430. front: {
  20431. height: math.unit(6, "feet"),
  20432. weight: math.unit(150, "lb"),
  20433. name: "Front",
  20434. image: {
  20435. source: "./media/characters/hipster/front.svg",
  20436. extra: 1312 / 1209,
  20437. bottom: 0.025
  20438. }
  20439. },
  20440. back: {
  20441. height: math.unit(6, "feet"),
  20442. weight: math.unit(150, "lb"),
  20443. name: "Back",
  20444. image: {
  20445. source: "./media/characters/hipster/back.svg",
  20446. extra: 1281 / 1196,
  20447. bottom: 0.01
  20448. }
  20449. },
  20450. },
  20451. [
  20452. {
  20453. name: "Micro",
  20454. height: math.unit(1, "mm")
  20455. },
  20456. {
  20457. name: "Normal",
  20458. height: math.unit(4, "inches"),
  20459. default: true
  20460. },
  20461. {
  20462. name: "Macro",
  20463. height: math.unit(500, "feet")
  20464. },
  20465. {
  20466. name: "Megamacro",
  20467. height: math.unit(1000, "miles")
  20468. },
  20469. ]
  20470. ))
  20471. characterMakers.push(() => makeCharacter(
  20472. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20473. {
  20474. front: {
  20475. height: math.unit(6, "feet"),
  20476. weight: math.unit(150, "lb"),
  20477. name: "Front",
  20478. image: {
  20479. source: "./media/characters/tendirmuldr/front.svg",
  20480. extra: 1878 / 1772,
  20481. bottom: 0.015
  20482. }
  20483. },
  20484. },
  20485. [
  20486. {
  20487. name: "Megamacro",
  20488. height: math.unit(1500, "miles"),
  20489. default: true
  20490. },
  20491. ]
  20492. ))
  20493. characterMakers.push(() => makeCharacter(
  20494. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20495. {
  20496. front: {
  20497. height: math.unit(14, "feet"),
  20498. weight: math.unit(12000, "lb"),
  20499. name: "Front",
  20500. image: {
  20501. source: "./media/characters/mort/front.svg",
  20502. extra: 365 / 318,
  20503. bottom: 0.01
  20504. }
  20505. },
  20506. side: {
  20507. height: math.unit(14, "feet"),
  20508. weight: math.unit(12000, "lb"),
  20509. name: "Side",
  20510. image: {
  20511. source: "./media/characters/mort/side.svg",
  20512. extra: 365 / 318,
  20513. bottom: 0.052
  20514. },
  20515. default: true
  20516. },
  20517. back: {
  20518. height: math.unit(14, "feet"),
  20519. weight: math.unit(12000, "lb"),
  20520. name: "Back",
  20521. image: {
  20522. source: "./media/characters/mort/back.svg",
  20523. extra: 371 / 332,
  20524. bottom: 0.18
  20525. }
  20526. },
  20527. },
  20528. [
  20529. {
  20530. name: "Normal",
  20531. height: math.unit(14, "feet"),
  20532. default: true
  20533. },
  20534. ]
  20535. ))
  20536. characterMakers.push(() => makeCharacter(
  20537. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20538. {
  20539. front: {
  20540. height: math.unit(8, "feet"),
  20541. weight: math.unit(1, "ton"),
  20542. name: "Front",
  20543. image: {
  20544. source: "./media/characters/lycoa/front.svg",
  20545. extra: 1875 / 1789,
  20546. bottom: 0.022
  20547. }
  20548. },
  20549. back: {
  20550. height: math.unit(8, "feet"),
  20551. weight: math.unit(1, "ton"),
  20552. name: "Back",
  20553. image: {
  20554. source: "./media/characters/lycoa/back.svg",
  20555. extra: 1835 / 1781,
  20556. bottom: 0.03
  20557. }
  20558. },
  20559. head: {
  20560. height: math.unit(2.1, "feet"),
  20561. name: "Head",
  20562. image: {
  20563. source: "./media/characters/lycoa/head.svg"
  20564. }
  20565. },
  20566. tailmaw: {
  20567. height: math.unit(1.9, "feet"),
  20568. name: "Tailmaw",
  20569. image: {
  20570. source: "./media/characters/lycoa/tailmaw.svg"
  20571. }
  20572. },
  20573. tentacles: {
  20574. height: math.unit(2.1, "feet"),
  20575. name: "Tentacles",
  20576. image: {
  20577. source: "./media/characters/lycoa/tentacles.svg"
  20578. }
  20579. },
  20580. dick: {
  20581. height: math.unit(1.73, "feet"),
  20582. name: "Dick",
  20583. image: {
  20584. source: "./media/characters/lycoa/dick.svg"
  20585. }
  20586. },
  20587. },
  20588. [
  20589. {
  20590. name: "Normal",
  20591. height: math.unit(8, "feet"),
  20592. default: true
  20593. },
  20594. {
  20595. name: "Macro",
  20596. height: math.unit(30, "feet")
  20597. },
  20598. ]
  20599. ))
  20600. characterMakers.push(() => makeCharacter(
  20601. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20602. {
  20603. front: {
  20604. height: math.unit(4 + 2 / 12, "feet"),
  20605. weight: math.unit(70, "lb"),
  20606. name: "Front",
  20607. image: {
  20608. source: "./media/characters/naldara/front.svg",
  20609. extra: 841 / 720,
  20610. bottom: 0.04
  20611. }
  20612. },
  20613. naga: {
  20614. height: math.unit(23, "feet"),
  20615. weight: math.unit(15000, "kg"),
  20616. name: "Naga",
  20617. image: {
  20618. source: "./media/characters/naldara/naga.svg",
  20619. extra: 3290 / 2959,
  20620. bottom: 124 / 3432
  20621. }
  20622. },
  20623. },
  20624. [
  20625. {
  20626. name: "Normal",
  20627. height: math.unit(4 + 2 / 12, "feet"),
  20628. default: true
  20629. },
  20630. ]
  20631. ))
  20632. characterMakers.push(() => makeCharacter(
  20633. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20634. {
  20635. front: {
  20636. height: math.unit(13 + 7 / 12, "feet"),
  20637. weight: math.unit(1500, "lb"),
  20638. name: "Front",
  20639. image: {
  20640. source: "./media/characters/briar/front.svg",
  20641. extra: 626 / 596,
  20642. bottom: 0.08
  20643. }
  20644. },
  20645. },
  20646. [
  20647. {
  20648. name: "Normal",
  20649. height: math.unit(13 + 7 / 12, "feet"),
  20650. default: true
  20651. },
  20652. ]
  20653. ))
  20654. characterMakers.push(() => makeCharacter(
  20655. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20656. {
  20657. side: {
  20658. height: math.unit(10, "feet"),
  20659. weight: math.unit(500, "lb"),
  20660. name: "Side",
  20661. image: {
  20662. source: "./media/characters/vanguard/side.svg",
  20663. extra: 502 / 425,
  20664. bottom: 0.087
  20665. }
  20666. },
  20667. },
  20668. [
  20669. {
  20670. name: "Normal",
  20671. height: math.unit(10, "feet"),
  20672. default: true
  20673. },
  20674. ]
  20675. ))
  20676. characterMakers.push(() => makeCharacter(
  20677. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20678. {
  20679. front: {
  20680. height: math.unit(7.5, "feet"),
  20681. weight: math.unit(2, "lb"),
  20682. name: "Front",
  20683. image: {
  20684. source: "./media/characters/artemis/front.svg",
  20685. extra: 1192 / 1075,
  20686. bottom: 0.07
  20687. }
  20688. },
  20689. frontNsfw: {
  20690. height: math.unit(7.5, "feet"),
  20691. weight: math.unit(2, "lb"),
  20692. name: "Front (NSFW)",
  20693. image: {
  20694. source: "./media/characters/artemis/front-nsfw.svg",
  20695. extra: 1192 / 1075,
  20696. bottom: 0.07
  20697. }
  20698. },
  20699. frontNsfwer: {
  20700. height: math.unit(7.5, "feet"),
  20701. weight: math.unit(2, "lb"),
  20702. name: "Front (NSFW-er)",
  20703. image: {
  20704. source: "./media/characters/artemis/front-nsfwer.svg",
  20705. extra: 1192 / 1075,
  20706. bottom: 0.07
  20707. }
  20708. },
  20709. side: {
  20710. height: math.unit(7.5, "feet"),
  20711. weight: math.unit(2, "lb"),
  20712. name: "Side",
  20713. image: {
  20714. source: "./media/characters/artemis/side.svg",
  20715. extra: 1192 / 1075,
  20716. bottom: 0.07
  20717. }
  20718. },
  20719. sideNsfw: {
  20720. height: math.unit(7.5, "feet"),
  20721. weight: math.unit(2, "lb"),
  20722. name: "Side (NSFW)",
  20723. image: {
  20724. source: "./media/characters/artemis/side-nsfw.svg",
  20725. extra: 1192 / 1075,
  20726. bottom: 0.07
  20727. }
  20728. },
  20729. sideNsfwer: {
  20730. height: math.unit(7.5, "feet"),
  20731. weight: math.unit(2, "lb"),
  20732. name: "Side (NSFW-er)",
  20733. image: {
  20734. source: "./media/characters/artemis/side-nsfwer.svg",
  20735. extra: 1192 / 1075,
  20736. bottom: 0.07
  20737. }
  20738. },
  20739. maw: {
  20740. height: math.unit(1.1, "feet"),
  20741. name: "Maw",
  20742. image: {
  20743. source: "./media/characters/artemis/maw.svg"
  20744. }
  20745. },
  20746. stomach: {
  20747. height: math.unit(0.95, "feet"),
  20748. name: "Stomach",
  20749. image: {
  20750. source: "./media/characters/artemis/stomach.svg"
  20751. }
  20752. },
  20753. dickCanine: {
  20754. height: math.unit(1, "feet"),
  20755. name: "Dick (Canine)",
  20756. image: {
  20757. source: "./media/characters/artemis/dick-canine.svg"
  20758. }
  20759. },
  20760. dickEquine: {
  20761. height: math.unit(0.85, "feet"),
  20762. name: "Dick (Equine)",
  20763. image: {
  20764. source: "./media/characters/artemis/dick-equine.svg"
  20765. }
  20766. },
  20767. dickExotic: {
  20768. height: math.unit(0.85, "feet"),
  20769. name: "Dick (Exotic)",
  20770. image: {
  20771. source: "./media/characters/artemis/dick-exotic.svg"
  20772. }
  20773. },
  20774. },
  20775. [
  20776. {
  20777. name: "Normal",
  20778. height: math.unit(7.5, "feet"),
  20779. default: true
  20780. },
  20781. {
  20782. name: "Enlarged",
  20783. height: math.unit(12, "feet")
  20784. },
  20785. ]
  20786. ))
  20787. characterMakers.push(() => makeCharacter(
  20788. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20789. {
  20790. front: {
  20791. height: math.unit(5 + 3 / 12, "feet"),
  20792. weight: math.unit(160, "lb"),
  20793. name: "Front",
  20794. image: {
  20795. source: "./media/characters/kira/front.svg",
  20796. extra: 906 / 786,
  20797. bottom: 0.01
  20798. }
  20799. },
  20800. back: {
  20801. height: math.unit(5 + 3 / 12, "feet"),
  20802. weight: math.unit(160, "lb"),
  20803. name: "Back",
  20804. image: {
  20805. source: "./media/characters/kira/back.svg",
  20806. extra: 882 / 757,
  20807. bottom: 0.005
  20808. }
  20809. },
  20810. frontDressed: {
  20811. height: math.unit(5 + 3 / 12, "feet"),
  20812. weight: math.unit(160, "lb"),
  20813. name: "Front (Dressed)",
  20814. image: {
  20815. source: "./media/characters/kira/front-dressed.svg",
  20816. extra: 906 / 786,
  20817. bottom: 0.01
  20818. }
  20819. },
  20820. beans: {
  20821. height: math.unit(0.92, "feet"),
  20822. name: "Beans",
  20823. image: {
  20824. source: "./media/characters/kira/beans.svg"
  20825. }
  20826. },
  20827. },
  20828. [
  20829. {
  20830. name: "Normal",
  20831. height: math.unit(5 + 3 / 12, "feet"),
  20832. default: true
  20833. },
  20834. ]
  20835. ))
  20836. characterMakers.push(() => makeCharacter(
  20837. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20838. {
  20839. front: {
  20840. height: math.unit(5 + 4 / 12, "feet"),
  20841. weight: math.unit(145, "lb"),
  20842. name: "Front",
  20843. image: {
  20844. source: "./media/characters/scramble/front.svg",
  20845. extra: 763 / 727,
  20846. bottom: 0.05
  20847. }
  20848. },
  20849. back: {
  20850. height: math.unit(5 + 4 / 12, "feet"),
  20851. weight: math.unit(145, "lb"),
  20852. name: "Back",
  20853. image: {
  20854. source: "./media/characters/scramble/back.svg",
  20855. extra: 826 / 737,
  20856. bottom: 0.002
  20857. }
  20858. },
  20859. },
  20860. [
  20861. {
  20862. name: "Normal",
  20863. height: math.unit(5 + 4 / 12, "feet"),
  20864. default: true
  20865. },
  20866. ]
  20867. ))
  20868. characterMakers.push(() => makeCharacter(
  20869. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20870. {
  20871. side: {
  20872. height: math.unit(6 + 2 / 12, "feet"),
  20873. weight: math.unit(190, "lb"),
  20874. name: "Side",
  20875. image: {
  20876. source: "./media/characters/biscuit/side.svg",
  20877. extra: 858 / 791,
  20878. bottom: 0.044
  20879. }
  20880. },
  20881. },
  20882. [
  20883. {
  20884. name: "Normal",
  20885. height: math.unit(6 + 2 / 12, "feet"),
  20886. default: true
  20887. },
  20888. ]
  20889. ))
  20890. characterMakers.push(() => makeCharacter(
  20891. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20892. {
  20893. front: {
  20894. height: math.unit(5 + 2 / 12, "feet"),
  20895. weight: math.unit(120, "lb"),
  20896. name: "Front",
  20897. image: {
  20898. source: "./media/characters/poffin/front.svg",
  20899. extra: 786 / 680,
  20900. bottom: 0.005
  20901. }
  20902. },
  20903. },
  20904. [
  20905. {
  20906. name: "Normal",
  20907. height: math.unit(5 + 2 / 12, "feet"),
  20908. default: true
  20909. },
  20910. ]
  20911. ))
  20912. characterMakers.push(() => makeCharacter(
  20913. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20914. {
  20915. front: {
  20916. height: math.unit(6 + 3 / 12, "feet"),
  20917. weight: math.unit(519, "lb"),
  20918. name: "Front",
  20919. image: {
  20920. source: "./media/characters/dhari/front.svg",
  20921. extra: 1048 / 946,
  20922. bottom: 0.015
  20923. }
  20924. },
  20925. back: {
  20926. height: math.unit(6 + 3 / 12, "feet"),
  20927. weight: math.unit(519, "lb"),
  20928. name: "Back",
  20929. image: {
  20930. source: "./media/characters/dhari/back.svg",
  20931. extra: 1048 / 931,
  20932. bottom: 0.005
  20933. }
  20934. },
  20935. frontDressed: {
  20936. height: math.unit(6 + 3 / 12, "feet"),
  20937. weight: math.unit(519, "lb"),
  20938. name: "Front (Dressed)",
  20939. image: {
  20940. source: "./media/characters/dhari/front-dressed.svg",
  20941. extra: 1713 / 1546,
  20942. bottom: 0.02
  20943. }
  20944. },
  20945. backDressed: {
  20946. height: math.unit(6 + 3 / 12, "feet"),
  20947. weight: math.unit(519, "lb"),
  20948. name: "Back (Dressed)",
  20949. image: {
  20950. source: "./media/characters/dhari/back-dressed.svg",
  20951. extra: 1699 / 1537,
  20952. bottom: 0.01
  20953. }
  20954. },
  20955. maw: {
  20956. height: math.unit(0.95, "feet"),
  20957. name: "Maw",
  20958. image: {
  20959. source: "./media/characters/dhari/maw.svg"
  20960. }
  20961. },
  20962. wereFront: {
  20963. height: math.unit(12 + 8 / 12, "feet"),
  20964. weight: math.unit(4000, "lb"),
  20965. name: "Front (Were)",
  20966. image: {
  20967. source: "./media/characters/dhari/were-front.svg",
  20968. extra: 1065 / 969,
  20969. bottom: 0.015
  20970. }
  20971. },
  20972. wereBack: {
  20973. height: math.unit(12 + 8 / 12, "feet"),
  20974. weight: math.unit(4000, "lb"),
  20975. name: "Back (Were)",
  20976. image: {
  20977. source: "./media/characters/dhari/were-back.svg",
  20978. extra: 1065 / 969,
  20979. bottom: 0.012
  20980. }
  20981. },
  20982. wereMaw: {
  20983. height: math.unit(0.625, "meters"),
  20984. name: "Maw (Were)",
  20985. image: {
  20986. source: "./media/characters/dhari/were-maw.svg"
  20987. }
  20988. },
  20989. },
  20990. [
  20991. {
  20992. name: "Normal",
  20993. height: math.unit(6 + 3 / 12, "feet"),
  20994. default: true
  20995. },
  20996. ]
  20997. ))
  20998. characterMakers.push(() => makeCharacter(
  20999. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21000. {
  21001. anthro: {
  21002. height: math.unit(5 + 7 / 12, "feet"),
  21003. weight: math.unit(175, "lb"),
  21004. name: "Anthro",
  21005. image: {
  21006. source: "./media/characters/rena-dyne/anthro.svg",
  21007. extra: 1849 / 1785,
  21008. bottom: 0.005
  21009. }
  21010. },
  21011. taur: {
  21012. height: math.unit(15 + 6 / 12, "feet"),
  21013. weight: math.unit(8000, "lb"),
  21014. name: "Taur",
  21015. image: {
  21016. source: "./media/characters/rena-dyne/taur.svg",
  21017. extra: 2315 / 2234,
  21018. bottom: 0.033
  21019. }
  21020. },
  21021. },
  21022. [
  21023. {
  21024. name: "Normal",
  21025. height: math.unit(5 + 7 / 12, "feet"),
  21026. default: true
  21027. },
  21028. ]
  21029. ))
  21030. characterMakers.push(() => makeCharacter(
  21031. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21032. {
  21033. front: {
  21034. height: math.unit(8, "feet"),
  21035. weight: math.unit(600, "lb"),
  21036. name: "Front",
  21037. image: {
  21038. source: "./media/characters/weremeep/front.svg",
  21039. extra: 967 / 862,
  21040. bottom: 0.01
  21041. }
  21042. },
  21043. },
  21044. [
  21045. {
  21046. name: "Normal",
  21047. height: math.unit(8, "feet"),
  21048. default: true
  21049. },
  21050. {
  21051. name: "Lorg",
  21052. height: math.unit(12, "feet")
  21053. },
  21054. {
  21055. name: "Oh Lawd She Comin'",
  21056. height: math.unit(20, "feet")
  21057. },
  21058. ]
  21059. ))
  21060. characterMakers.push(() => makeCharacter(
  21061. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21062. {
  21063. front: {
  21064. height: math.unit(4, "feet"),
  21065. weight: math.unit(90, "lb"),
  21066. name: "Front",
  21067. image: {
  21068. source: "./media/characters/reza/front.svg",
  21069. extra: 1183 / 1111,
  21070. bottom: 0.017
  21071. }
  21072. },
  21073. back: {
  21074. height: math.unit(4, "feet"),
  21075. weight: math.unit(90, "lb"),
  21076. name: "Back",
  21077. image: {
  21078. source: "./media/characters/reza/back.svg",
  21079. extra: 1183 / 1111,
  21080. bottom: 0.01
  21081. }
  21082. },
  21083. drake: {
  21084. height: math.unit(30, "feet"),
  21085. weight: math.unit(246960, "lb"),
  21086. name: "Drake",
  21087. image: {
  21088. source: "./media/characters/reza/drake.svg",
  21089. extra: 2350 / 2024,
  21090. bottom: 60.7 / 2403
  21091. }
  21092. },
  21093. },
  21094. [
  21095. {
  21096. name: "Normal",
  21097. height: math.unit(4, "feet"),
  21098. default: true
  21099. },
  21100. ]
  21101. ))
  21102. characterMakers.push(() => makeCharacter(
  21103. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21104. {
  21105. side: {
  21106. height: math.unit(15, "feet"),
  21107. weight: math.unit(14, "tons"),
  21108. name: "Side",
  21109. image: {
  21110. source: "./media/characters/athea/side.svg",
  21111. extra: 960 / 540,
  21112. bottom: 0.003
  21113. }
  21114. },
  21115. sitting: {
  21116. height: math.unit(6 * 2.85, "feet"),
  21117. weight: math.unit(14, "tons"),
  21118. name: "Sitting",
  21119. image: {
  21120. source: "./media/characters/athea/sitting.svg",
  21121. extra: 621 / 581,
  21122. bottom: 0.075
  21123. }
  21124. },
  21125. maw: {
  21126. height: math.unit(7.59498031496063, "feet"),
  21127. name: "Maw",
  21128. image: {
  21129. source: "./media/characters/athea/maw.svg"
  21130. }
  21131. },
  21132. },
  21133. [
  21134. {
  21135. name: "Lap Cat",
  21136. height: math.unit(2.5, "feet")
  21137. },
  21138. {
  21139. name: "Minimacro",
  21140. height: math.unit(15, "feet"),
  21141. default: true
  21142. },
  21143. {
  21144. name: "Macro",
  21145. height: math.unit(120, "feet")
  21146. },
  21147. {
  21148. name: "Macro+",
  21149. height: math.unit(640, "feet")
  21150. },
  21151. {
  21152. name: "Colossus",
  21153. height: math.unit(2.2, "miles")
  21154. },
  21155. ]
  21156. ))
  21157. characterMakers.push(() => makeCharacter(
  21158. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21159. {
  21160. front: {
  21161. height: math.unit(8 + 8 / 12, "feet"),
  21162. weight: math.unit(130, "kg"),
  21163. name: "Front",
  21164. image: {
  21165. source: "./media/characters/seroko/front.svg",
  21166. extra: 1385 / 1280,
  21167. bottom: 0.025
  21168. }
  21169. },
  21170. back: {
  21171. height: math.unit(8 + 8 / 12, "feet"),
  21172. weight: math.unit(130, "kg"),
  21173. name: "Back",
  21174. image: {
  21175. source: "./media/characters/seroko/back.svg",
  21176. extra: 1369 / 1238,
  21177. bottom: 0.018
  21178. }
  21179. },
  21180. frontDressed: {
  21181. height: math.unit(8 + 8 / 12, "feet"),
  21182. weight: math.unit(130, "kg"),
  21183. name: "Front (Dressed)",
  21184. image: {
  21185. source: "./media/characters/seroko/front-dressed.svg",
  21186. extra: 1366 / 1275,
  21187. bottom: 0.03
  21188. }
  21189. },
  21190. },
  21191. [
  21192. {
  21193. name: "Normal",
  21194. height: math.unit(8 + 8 / 12, "feet"),
  21195. default: true
  21196. },
  21197. ]
  21198. ))
  21199. characterMakers.push(() => makeCharacter(
  21200. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21201. {
  21202. front: {
  21203. height: math.unit(5.5, "feet"),
  21204. weight: math.unit(160, "lb"),
  21205. name: "Front",
  21206. image: {
  21207. source: "./media/characters/quatzi/front.svg",
  21208. extra: 2346 / 2242,
  21209. bottom: 0.015
  21210. }
  21211. },
  21212. },
  21213. [
  21214. {
  21215. name: "Normal",
  21216. height: math.unit(5.5, "feet"),
  21217. default: true
  21218. },
  21219. {
  21220. name: "Big",
  21221. height: math.unit(7.7, "feet")
  21222. },
  21223. ]
  21224. ))
  21225. characterMakers.push(() => makeCharacter(
  21226. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21227. {
  21228. front: {
  21229. height: math.unit(5 + 11 / 12, "feet"),
  21230. weight: math.unit(180, "lb"),
  21231. name: "Front",
  21232. image: {
  21233. source: "./media/characters/sen/front.svg",
  21234. extra: 1321 / 1254,
  21235. bottom: 0.015
  21236. }
  21237. },
  21238. side: {
  21239. height: math.unit(5 + 11 / 12, "feet"),
  21240. weight: math.unit(180, "lb"),
  21241. name: "Side",
  21242. image: {
  21243. source: "./media/characters/sen/side.svg",
  21244. extra: 1321 / 1254,
  21245. bottom: 0.007
  21246. }
  21247. },
  21248. back: {
  21249. height: math.unit(5 + 11 / 12, "feet"),
  21250. weight: math.unit(180, "lb"),
  21251. name: "Back",
  21252. image: {
  21253. source: "./media/characters/sen/back.svg",
  21254. extra: 1321 / 1254
  21255. }
  21256. },
  21257. },
  21258. [
  21259. {
  21260. name: "Normal",
  21261. height: math.unit(5 + 11 / 12, "feet"),
  21262. default: true
  21263. },
  21264. ]
  21265. ))
  21266. characterMakers.push(() => makeCharacter(
  21267. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21268. {
  21269. front: {
  21270. height: math.unit(166.6, "cm"),
  21271. weight: math.unit(66.6, "kg"),
  21272. name: "Front",
  21273. image: {
  21274. source: "./media/characters/fruity/front.svg",
  21275. extra: 1510 / 1386,
  21276. bottom: 0.04
  21277. }
  21278. },
  21279. back: {
  21280. height: math.unit(166.6, "cm"),
  21281. weight: math.unit(66.6, "lb"),
  21282. name: "Back",
  21283. image: {
  21284. source: "./media/characters/fruity/back.svg",
  21285. extra: 1563 / 1435,
  21286. bottom: 0.005
  21287. }
  21288. },
  21289. },
  21290. [
  21291. {
  21292. name: "Normal",
  21293. height: math.unit(166.6, "cm"),
  21294. default: true
  21295. },
  21296. {
  21297. name: "Demonic",
  21298. height: math.unit(166.6, "feet")
  21299. },
  21300. ]
  21301. ))
  21302. characterMakers.push(() => makeCharacter(
  21303. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21304. {
  21305. side: {
  21306. height: math.unit(10, "feet"),
  21307. weight: math.unit(500, "lb"),
  21308. name: "Side",
  21309. image: {
  21310. source: "./media/characters/zost/side.svg",
  21311. extra: 966 / 880,
  21312. bottom: 0.075
  21313. }
  21314. },
  21315. mawFront: {
  21316. height: math.unit(1.08, "meters"),
  21317. name: "Maw (Front)",
  21318. image: {
  21319. source: "./media/characters/zost/maw-front.svg"
  21320. }
  21321. },
  21322. mawSide: {
  21323. height: math.unit(2.66, "feet"),
  21324. name: "Maw (Side)",
  21325. image: {
  21326. source: "./media/characters/zost/maw-side.svg"
  21327. }
  21328. },
  21329. },
  21330. [
  21331. {
  21332. name: "Normal",
  21333. height: math.unit(10, "feet"),
  21334. default: true
  21335. },
  21336. ]
  21337. ))
  21338. characterMakers.push(() => makeCharacter(
  21339. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21340. {
  21341. front: {
  21342. height: math.unit(5 + 4 / 12, "feet"),
  21343. weight: math.unit(120, "lb"),
  21344. name: "Front",
  21345. image: {
  21346. source: "./media/characters/luci/front.svg",
  21347. extra: 1985 / 1884,
  21348. bottom: 0.04
  21349. }
  21350. },
  21351. back: {
  21352. height: math.unit(5 + 4 / 12, "feet"),
  21353. weight: math.unit(120, "lb"),
  21354. name: "Back",
  21355. image: {
  21356. source: "./media/characters/luci/back.svg",
  21357. extra: 1892 / 1791,
  21358. bottom: 0.002
  21359. }
  21360. },
  21361. },
  21362. [
  21363. {
  21364. name: "Normal",
  21365. height: math.unit(5 + 4 / 12, "feet"),
  21366. default: true
  21367. },
  21368. ]
  21369. ))
  21370. characterMakers.push(() => makeCharacter(
  21371. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21372. {
  21373. front: {
  21374. height: math.unit(1500, "feet"),
  21375. weight: math.unit(3.8e6, "tons"),
  21376. name: "Front",
  21377. image: {
  21378. source: "./media/characters/2th/front.svg",
  21379. extra: 3489 / 3350,
  21380. bottom: 0.1
  21381. }
  21382. },
  21383. foot: {
  21384. height: math.unit(461, "feet"),
  21385. name: "Foot",
  21386. image: {
  21387. source: "./media/characters/2th/foot.svg"
  21388. }
  21389. },
  21390. },
  21391. [
  21392. {
  21393. name: "\"Micro\"",
  21394. height: math.unit(15 + 7 / 12, "feet")
  21395. },
  21396. {
  21397. name: "Normal",
  21398. height: math.unit(1500, "feet"),
  21399. default: true
  21400. },
  21401. {
  21402. name: "Macro",
  21403. height: math.unit(5000, "feet")
  21404. },
  21405. {
  21406. name: "Megamacro",
  21407. height: math.unit(15, "miles")
  21408. },
  21409. {
  21410. name: "Gigamacro",
  21411. height: math.unit(4000, "miles")
  21412. },
  21413. {
  21414. name: "Galactic",
  21415. height: math.unit(50, "AU")
  21416. },
  21417. ]
  21418. ))
  21419. characterMakers.push(() => makeCharacter(
  21420. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21421. {
  21422. front: {
  21423. height: math.unit(5 + 6 / 12, "feet"),
  21424. weight: math.unit(220, "lb"),
  21425. name: "Front",
  21426. image: {
  21427. source: "./media/characters/amethyst/front.svg",
  21428. extra: 2078 / 2040,
  21429. bottom: 0.045
  21430. }
  21431. },
  21432. back: {
  21433. height: math.unit(5 + 6 / 12, "feet"),
  21434. weight: math.unit(220, "lb"),
  21435. name: "Back",
  21436. image: {
  21437. source: "./media/characters/amethyst/back.svg",
  21438. extra: 2021 / 1989,
  21439. bottom: 0.02
  21440. }
  21441. },
  21442. },
  21443. [
  21444. {
  21445. name: "Normal",
  21446. height: math.unit(5 + 6 / 12, "feet"),
  21447. default: true
  21448. },
  21449. ]
  21450. ))
  21451. characterMakers.push(() => makeCharacter(
  21452. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21453. {
  21454. front: {
  21455. height: math.unit(4 + 11 / 12, "feet"),
  21456. weight: math.unit(120, "lb"),
  21457. name: "Front",
  21458. image: {
  21459. source: "./media/characters/yumi-akiyama/front.svg",
  21460. extra: 1327 / 1235,
  21461. bottom: 0.02
  21462. }
  21463. },
  21464. back: {
  21465. height: math.unit(4 + 11 / 12, "feet"),
  21466. weight: math.unit(120, "lb"),
  21467. name: "Back",
  21468. image: {
  21469. source: "./media/characters/yumi-akiyama/back.svg",
  21470. extra: 1287 / 1245,
  21471. bottom: 0.002
  21472. }
  21473. },
  21474. },
  21475. [
  21476. {
  21477. name: "Galactic",
  21478. height: math.unit(50, "galaxies"),
  21479. default: true
  21480. },
  21481. {
  21482. name: "Universal",
  21483. height: math.unit(100, "universes")
  21484. },
  21485. ]
  21486. ))
  21487. characterMakers.push(() => makeCharacter(
  21488. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21489. {
  21490. front: {
  21491. height: math.unit(8, "feet"),
  21492. weight: math.unit(500, "lb"),
  21493. name: "Front",
  21494. image: {
  21495. source: "./media/characters/rifter-yrmori/front.svg",
  21496. extra: 1180 / 1125,
  21497. bottom: 0.02
  21498. }
  21499. },
  21500. back: {
  21501. height: math.unit(8, "feet"),
  21502. weight: math.unit(500, "lb"),
  21503. name: "Back",
  21504. image: {
  21505. source: "./media/characters/rifter-yrmori/back.svg",
  21506. extra: 1190 / 1145,
  21507. bottom: 0.001
  21508. }
  21509. },
  21510. wings: {
  21511. height: math.unit(7.75, "feet"),
  21512. weight: math.unit(500, "lb"),
  21513. name: "Wings",
  21514. image: {
  21515. source: "./media/characters/rifter-yrmori/wings.svg",
  21516. extra: 1357 / 1285
  21517. }
  21518. },
  21519. maw: {
  21520. height: math.unit(0.8, "feet"),
  21521. name: "Maw",
  21522. image: {
  21523. source: "./media/characters/rifter-yrmori/maw.svg"
  21524. }
  21525. },
  21526. mawfront: {
  21527. height: math.unit(1.45, "feet"),
  21528. name: "Maw (Front)",
  21529. image: {
  21530. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21531. }
  21532. },
  21533. },
  21534. [
  21535. {
  21536. name: "Normal",
  21537. height: math.unit(8, "feet"),
  21538. default: true
  21539. },
  21540. {
  21541. name: "Macro",
  21542. height: math.unit(42, "meters")
  21543. },
  21544. ]
  21545. ))
  21546. characterMakers.push(() => makeCharacter(
  21547. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21548. {
  21549. were: {
  21550. height: math.unit(25 + 6 / 12, "feet"),
  21551. weight: math.unit(10000, "lb"),
  21552. name: "Were",
  21553. image: {
  21554. source: "./media/characters/tahajin/were.svg",
  21555. extra: 801 / 770,
  21556. bottom: 0.042
  21557. }
  21558. },
  21559. aquatic: {
  21560. height: math.unit(6 + 4 / 12, "feet"),
  21561. weight: math.unit(160, "lb"),
  21562. name: "Aquatic",
  21563. image: {
  21564. source: "./media/characters/tahajin/aquatic.svg",
  21565. extra: 572 / 542,
  21566. bottom: 0.04
  21567. }
  21568. },
  21569. chow: {
  21570. height: math.unit(8 + 11 / 12, "feet"),
  21571. weight: math.unit(450, "lb"),
  21572. name: "Chow",
  21573. image: {
  21574. source: "./media/characters/tahajin/chow.svg",
  21575. extra: 660 / 640,
  21576. bottom: 0.015
  21577. }
  21578. },
  21579. demiNaga: {
  21580. height: math.unit(6 + 8 / 12, "feet"),
  21581. weight: math.unit(300, "lb"),
  21582. name: "Demi Naga",
  21583. image: {
  21584. source: "./media/characters/tahajin/demi-naga.svg",
  21585. extra: 643 / 615,
  21586. bottom: 0.1
  21587. }
  21588. },
  21589. data: {
  21590. height: math.unit(5, "inches"),
  21591. weight: math.unit(0.1, "lb"),
  21592. name: "Data",
  21593. image: {
  21594. source: "./media/characters/tahajin/data.svg"
  21595. }
  21596. },
  21597. fluu: {
  21598. height: math.unit(5 + 7 / 12, "feet"),
  21599. weight: math.unit(140, "lb"),
  21600. name: "Fluu",
  21601. image: {
  21602. source: "./media/characters/tahajin/fluu.svg",
  21603. extra: 628 / 592,
  21604. bottom: 0.02
  21605. }
  21606. },
  21607. starWarrior: {
  21608. height: math.unit(4 + 5 / 12, "feet"),
  21609. weight: math.unit(50, "lb"),
  21610. name: "Star Warrior",
  21611. image: {
  21612. source: "./media/characters/tahajin/star-warrior.svg"
  21613. }
  21614. },
  21615. },
  21616. [
  21617. {
  21618. name: "Normal",
  21619. height: math.unit(25 + 6 / 12, "feet"),
  21620. default: true
  21621. },
  21622. ]
  21623. ))
  21624. characterMakers.push(() => makeCharacter(
  21625. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21626. {
  21627. front: {
  21628. height: math.unit(8, "feet"),
  21629. weight: math.unit(350, "lb"),
  21630. name: "Front",
  21631. image: {
  21632. source: "./media/characters/gabira/front.svg",
  21633. extra: 608 / 580,
  21634. bottom: 0.03
  21635. }
  21636. },
  21637. back: {
  21638. height: math.unit(8, "feet"),
  21639. weight: math.unit(350, "lb"),
  21640. name: "Back",
  21641. image: {
  21642. source: "./media/characters/gabira/back.svg",
  21643. extra: 608 / 580,
  21644. bottom: 0.03
  21645. }
  21646. },
  21647. },
  21648. [
  21649. {
  21650. name: "Normal",
  21651. height: math.unit(8, "feet"),
  21652. default: true
  21653. },
  21654. ]
  21655. ))
  21656. characterMakers.push(() => makeCharacter(
  21657. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21658. {
  21659. front: {
  21660. height: math.unit(5 + 3 / 12, "feet"),
  21661. weight: math.unit(137, "lb"),
  21662. name: "Front",
  21663. image: {
  21664. source: "./media/characters/sasha-katraine/front.svg",
  21665. bottom: 0.045
  21666. }
  21667. },
  21668. },
  21669. [
  21670. {
  21671. name: "Micro",
  21672. height: math.unit(5, "inches")
  21673. },
  21674. {
  21675. name: "Normal",
  21676. height: math.unit(5 + 3 / 12, "feet"),
  21677. default: true
  21678. },
  21679. ]
  21680. ))
  21681. characterMakers.push(() => makeCharacter(
  21682. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21683. {
  21684. side: {
  21685. height: math.unit(4, "inches"),
  21686. weight: math.unit(200, "grams"),
  21687. name: "Side",
  21688. image: {
  21689. source: "./media/characters/der/side.svg",
  21690. extra: 719 / 400,
  21691. bottom: 30.6 / 749.9187
  21692. }
  21693. },
  21694. },
  21695. [
  21696. {
  21697. name: "Micro",
  21698. height: math.unit(4, "inches"),
  21699. default: true
  21700. },
  21701. ]
  21702. ))
  21703. characterMakers.push(() => makeCharacter(
  21704. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21705. {
  21706. side: {
  21707. height: math.unit(30, "meters"),
  21708. weight: math.unit(700, "tonnes"),
  21709. name: "Side",
  21710. image: {
  21711. source: "./media/characters/fixerdragon/side.svg",
  21712. extra: (1293.0514 - 116.03) / 1106.86,
  21713. bottom: 116.03 / 1293.0514
  21714. }
  21715. },
  21716. },
  21717. [
  21718. {
  21719. name: "Planck",
  21720. height: math.unit(1.6e-35, "meters")
  21721. },
  21722. {
  21723. name: "Micro",
  21724. height: math.unit(0.4, "meters")
  21725. },
  21726. {
  21727. name: "Normal",
  21728. height: math.unit(30, "meters"),
  21729. default: true
  21730. },
  21731. {
  21732. name: "Megamacro",
  21733. height: math.unit(1.2, "megameters")
  21734. },
  21735. {
  21736. name: "Teramacro",
  21737. height: math.unit(130, "terameters")
  21738. },
  21739. {
  21740. name: "Yottamacro",
  21741. height: math.unit(6200, "yottameters")
  21742. },
  21743. ]
  21744. ));
  21745. characterMakers.push(() => makeCharacter(
  21746. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21747. {
  21748. front: {
  21749. height: math.unit(8, "feet"),
  21750. weight: math.unit(250, "lb"),
  21751. name: "Front",
  21752. image: {
  21753. source: "./media/characters/kite/front.svg",
  21754. extra: 2796 / 2659,
  21755. bottom: 0.002
  21756. }
  21757. },
  21758. },
  21759. [
  21760. {
  21761. name: "Normal",
  21762. height: math.unit(8, "feet"),
  21763. default: true
  21764. },
  21765. {
  21766. name: "Macro",
  21767. height: math.unit(360, "feet")
  21768. },
  21769. {
  21770. name: "Megamacro",
  21771. height: math.unit(1500, "feet")
  21772. },
  21773. ]
  21774. ))
  21775. characterMakers.push(() => makeCharacter(
  21776. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21777. {
  21778. front: {
  21779. height: math.unit(5 + 11/12, "feet"),
  21780. weight: math.unit(170, "lb"),
  21781. name: "Front",
  21782. image: {
  21783. source: "./media/characters/poojawa-vynar/front.svg",
  21784. extra: 1735/1585,
  21785. bottom: 96/1831
  21786. }
  21787. },
  21788. back: {
  21789. height: math.unit(5 + 11/12, "feet"),
  21790. weight: math.unit(170, "lb"),
  21791. name: "Back",
  21792. image: {
  21793. source: "./media/characters/poojawa-vynar/back.svg",
  21794. extra: 1749/1607,
  21795. bottom: 28/1777
  21796. }
  21797. },
  21798. male: {
  21799. height: math.unit(5 + 11/12, "feet"),
  21800. weight: math.unit(170, "lb"),
  21801. name: "Male",
  21802. image: {
  21803. source: "./media/characters/poojawa-vynar/male.svg",
  21804. extra: 1855/1713,
  21805. bottom: 63/1918
  21806. }
  21807. },
  21808. taur: {
  21809. height: math.unit(5 + 11/12, "feet"),
  21810. weight: math.unit(170, "lb"),
  21811. name: "Taur",
  21812. image: {
  21813. source: "./media/characters/poojawa-vynar/taur.svg",
  21814. extra: 1151/1059,
  21815. bottom: 356/1507
  21816. }
  21817. },
  21818. frontDressed: {
  21819. height: math.unit(5 + 11/12, "feet"),
  21820. weight: math.unit(170, "lb"),
  21821. name: "Front (Dressed)",
  21822. image: {
  21823. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  21824. extra: 1735/1585,
  21825. bottom: 96/1831
  21826. }
  21827. },
  21828. backDressed: {
  21829. height: math.unit(5 + 11/12, "feet"),
  21830. weight: math.unit(170, "lb"),
  21831. name: "Back (Dressed)",
  21832. image: {
  21833. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  21834. extra: 1749/1607,
  21835. bottom: 28/1777
  21836. }
  21837. },
  21838. maleDressed: {
  21839. height: math.unit(5 + 11/12, "feet"),
  21840. weight: math.unit(170, "lb"),
  21841. name: "Male (Dressed)",
  21842. image: {
  21843. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  21844. extra: 1855/1713,
  21845. bottom: 63/1918
  21846. }
  21847. },
  21848. taurDressed: {
  21849. height: math.unit(5 + 11/12, "feet"),
  21850. weight: math.unit(170, "lb"),
  21851. name: "Taur (Dressed)",
  21852. image: {
  21853. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  21854. extra: 1151/1059,
  21855. bottom: 356/1507
  21856. }
  21857. },
  21858. maw: {
  21859. height: math.unit(1.46, "feet"),
  21860. name: "Maw",
  21861. image: {
  21862. source: "./media/characters/poojawa-vynar/maw.svg"
  21863. }
  21864. },
  21865. head: {
  21866. height: math.unit(2.34, "feet"),
  21867. name: "Head",
  21868. image: {
  21869. source: "./media/characters/poojawa-vynar/head.svg"
  21870. }
  21871. },
  21872. paw: {
  21873. height: math.unit(1.61, "feet"),
  21874. name: "Paw",
  21875. image: {
  21876. source: "./media/characters/poojawa-vynar/paw.svg"
  21877. }
  21878. },
  21879. pawToering: {
  21880. height: math.unit(1.72, "feet"),
  21881. name: "Paw (Toering)",
  21882. image: {
  21883. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  21884. }
  21885. },
  21886. toering: {
  21887. height: math.unit(2.9, "inches"),
  21888. name: "Toering",
  21889. image: {
  21890. source: "./media/characters/poojawa-vynar/toering.svg"
  21891. }
  21892. },
  21893. shaft: {
  21894. height: math.unit(0.625, "feet"),
  21895. name: "Shaft",
  21896. image: {
  21897. source: "./media/characters/poojawa-vynar/shaft.svg"
  21898. }
  21899. },
  21900. spade: {
  21901. height: math.unit(0.42, "feet"),
  21902. name: "Spade",
  21903. image: {
  21904. source: "./media/characters/poojawa-vynar/spade.svg"
  21905. }
  21906. },
  21907. },
  21908. [
  21909. {
  21910. name: "Shortstack",
  21911. height: math.unit(4, "feet")
  21912. },
  21913. {
  21914. name: "Normal",
  21915. height: math.unit(5 + 11 / 12, "feet"),
  21916. default: true
  21917. },
  21918. {
  21919. name: "Tauric",
  21920. height: math.unit(4, "meters")
  21921. },
  21922. ]
  21923. ))
  21924. characterMakers.push(() => makeCharacter(
  21925. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21926. {
  21927. front: {
  21928. height: math.unit(293, "meters"),
  21929. weight: math.unit(70400, "tons"),
  21930. name: "Front",
  21931. image: {
  21932. source: "./media/characters/violette/front.svg",
  21933. extra: 1227 / 1180,
  21934. bottom: 0.005
  21935. }
  21936. },
  21937. back: {
  21938. height: math.unit(293, "meters"),
  21939. weight: math.unit(70400, "tons"),
  21940. name: "Back",
  21941. image: {
  21942. source: "./media/characters/violette/back.svg",
  21943. extra: 1227 / 1180,
  21944. bottom: 0.005
  21945. }
  21946. },
  21947. },
  21948. [
  21949. {
  21950. name: "Macro",
  21951. height: math.unit(293, "meters"),
  21952. default: true
  21953. },
  21954. ]
  21955. ))
  21956. characterMakers.push(() => makeCharacter(
  21957. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21958. {
  21959. front: {
  21960. height: math.unit(1050, "feet"),
  21961. weight: math.unit(200000, "tons"),
  21962. name: "Front",
  21963. image: {
  21964. source: "./media/characters/alessandra/front.svg",
  21965. extra: 960 / 912,
  21966. bottom: 0.06
  21967. }
  21968. },
  21969. },
  21970. [
  21971. {
  21972. name: "Macro",
  21973. height: math.unit(1050, "feet")
  21974. },
  21975. {
  21976. name: "Macro+",
  21977. height: math.unit(900, "meters"),
  21978. default: true
  21979. },
  21980. ]
  21981. ))
  21982. characterMakers.push(() => makeCharacter(
  21983. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21984. {
  21985. front: {
  21986. height: math.unit(5, "feet"),
  21987. weight: math.unit(187, "lb"),
  21988. name: "Front",
  21989. image: {
  21990. source: "./media/characters/person/front.svg",
  21991. extra: 3087 / 2945,
  21992. bottom: 91 / 3181
  21993. }
  21994. },
  21995. },
  21996. [
  21997. {
  21998. name: "Micro",
  21999. height: math.unit(3, "inches")
  22000. },
  22001. {
  22002. name: "Normal",
  22003. height: math.unit(5, "feet"),
  22004. default: true
  22005. },
  22006. {
  22007. name: "Macro",
  22008. height: math.unit(90, "feet")
  22009. },
  22010. {
  22011. name: "Max Size",
  22012. height: math.unit(280, "feet")
  22013. },
  22014. ]
  22015. ))
  22016. characterMakers.push(() => makeCharacter(
  22017. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22018. {
  22019. front: {
  22020. height: math.unit(4.5, "meters"),
  22021. weight: math.unit(3200, "lb"),
  22022. name: "Front",
  22023. image: {
  22024. source: "./media/characters/ty/front.svg",
  22025. extra: 1038 / 960,
  22026. bottom: 31.156 / 1068
  22027. }
  22028. },
  22029. back: {
  22030. height: math.unit(4.5, "meters"),
  22031. weight: math.unit(3200, "lb"),
  22032. name: "Back",
  22033. image: {
  22034. source: "./media/characters/ty/back.svg",
  22035. extra: 1044 / 966,
  22036. bottom: 7.48 / 1049
  22037. }
  22038. },
  22039. },
  22040. [
  22041. {
  22042. name: "Normal",
  22043. height: math.unit(4.5, "meters"),
  22044. default: true
  22045. },
  22046. ]
  22047. ))
  22048. characterMakers.push(() => makeCharacter(
  22049. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22050. {
  22051. front: {
  22052. height: math.unit(5 + 4 / 12, "feet"),
  22053. weight: math.unit(115, "lb"),
  22054. name: "Front",
  22055. image: {
  22056. source: "./media/characters/rocky/front.svg",
  22057. extra: 1012 / 975,
  22058. bottom: 54 / 1066
  22059. }
  22060. },
  22061. },
  22062. [
  22063. {
  22064. name: "Normal",
  22065. height: math.unit(5 + 4 / 12, "feet"),
  22066. default: true
  22067. },
  22068. ]
  22069. ))
  22070. characterMakers.push(() => makeCharacter(
  22071. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22072. {
  22073. upright: {
  22074. height: math.unit(6, "meters"),
  22075. weight: math.unit(4000, "kg"),
  22076. name: "Upright",
  22077. image: {
  22078. source: "./media/characters/ruin/upright.svg",
  22079. extra: 668 / 661,
  22080. bottom: 42 / 799.8396
  22081. }
  22082. },
  22083. },
  22084. [
  22085. {
  22086. name: "Normal",
  22087. height: math.unit(6, "meters"),
  22088. default: true
  22089. },
  22090. ]
  22091. ))
  22092. characterMakers.push(() => makeCharacter(
  22093. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22094. {
  22095. front: {
  22096. height: math.unit(5, "feet"),
  22097. weight: math.unit(106, "lb"),
  22098. name: "Front",
  22099. image: {
  22100. source: "./media/characters/robin/front.svg",
  22101. extra: 862 / 799,
  22102. bottom: 42.4 / 914.8856
  22103. }
  22104. },
  22105. },
  22106. [
  22107. {
  22108. name: "Normal",
  22109. height: math.unit(5, "feet"),
  22110. default: true
  22111. },
  22112. ]
  22113. ))
  22114. characterMakers.push(() => makeCharacter(
  22115. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22116. {
  22117. side: {
  22118. height: math.unit(3, "feet"),
  22119. weight: math.unit(225, "lb"),
  22120. name: "Side",
  22121. image: {
  22122. source: "./media/characters/saian/side.svg",
  22123. extra: 566 / 356,
  22124. bottom: 79.7 / 643
  22125. }
  22126. },
  22127. maw: {
  22128. height: math.unit(2.85, "feet"),
  22129. name: "Maw",
  22130. image: {
  22131. source: "./media/characters/saian/maw.svg"
  22132. }
  22133. },
  22134. },
  22135. [
  22136. {
  22137. name: "Normal",
  22138. height: math.unit(3, "feet"),
  22139. default: true
  22140. },
  22141. ]
  22142. ))
  22143. characterMakers.push(() => makeCharacter(
  22144. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22145. {
  22146. side: {
  22147. height: math.unit(8, "feet"),
  22148. weight: math.unit(300, "lb"),
  22149. name: "Side",
  22150. image: {
  22151. source: "./media/characters/equus-silvermane/side.svg",
  22152. extra: 2176 / 2050,
  22153. bottom: 65.7 / 2245
  22154. }
  22155. },
  22156. front: {
  22157. height: math.unit(8, "feet"),
  22158. weight: math.unit(300, "lb"),
  22159. name: "Front",
  22160. image: {
  22161. source: "./media/characters/equus-silvermane/front.svg",
  22162. extra: 4633 / 4400,
  22163. bottom: 71.3 / 4706.915
  22164. }
  22165. },
  22166. sideStepping: {
  22167. height: math.unit(8, "feet"),
  22168. weight: math.unit(300, "lb"),
  22169. name: "Side (Stepping)",
  22170. image: {
  22171. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22172. extra: 1968 / 1860,
  22173. bottom: 16.4 / 1989
  22174. }
  22175. },
  22176. },
  22177. [
  22178. {
  22179. name: "Normal",
  22180. height: math.unit(8, "feet")
  22181. },
  22182. {
  22183. name: "Minimacro",
  22184. height: math.unit(75, "feet"),
  22185. default: true
  22186. },
  22187. {
  22188. name: "Macro",
  22189. height: math.unit(150, "feet")
  22190. },
  22191. {
  22192. name: "Macro+",
  22193. height: math.unit(1000, "feet")
  22194. },
  22195. {
  22196. name: "Megamacro",
  22197. height: math.unit(1, "mile")
  22198. },
  22199. ]
  22200. ))
  22201. characterMakers.push(() => makeCharacter(
  22202. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22203. {
  22204. side: {
  22205. height: math.unit(20, "feet"),
  22206. weight: math.unit(30000, "kg"),
  22207. name: "Side",
  22208. image: {
  22209. source: "./media/characters/windar/side.svg",
  22210. extra: 1491 / 1248,
  22211. bottom: 82.56 / 1568
  22212. }
  22213. },
  22214. },
  22215. [
  22216. {
  22217. name: "Normal",
  22218. height: math.unit(20, "feet"),
  22219. default: true
  22220. },
  22221. ]
  22222. ))
  22223. characterMakers.push(() => makeCharacter(
  22224. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22225. {
  22226. side: {
  22227. height: math.unit(15.66, "feet"),
  22228. weight: math.unit(150, "lb"),
  22229. name: "Side",
  22230. image: {
  22231. source: "./media/characters/melody/side.svg",
  22232. extra: 1097 / 944,
  22233. bottom: 11.8 / 1109
  22234. }
  22235. },
  22236. sideOutfit: {
  22237. height: math.unit(15.66, "feet"),
  22238. weight: math.unit(150, "lb"),
  22239. name: "Side (Outfit)",
  22240. image: {
  22241. source: "./media/characters/melody/side-outfit.svg",
  22242. extra: 1097 / 944,
  22243. bottom: 11.8 / 1109
  22244. }
  22245. },
  22246. },
  22247. [
  22248. {
  22249. name: "Normal",
  22250. height: math.unit(15.66, "feet"),
  22251. default: true
  22252. },
  22253. ]
  22254. ))
  22255. characterMakers.push(() => makeCharacter(
  22256. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22257. {
  22258. front: {
  22259. height: math.unit(8, "feet"),
  22260. weight: math.unit(325, "lb"),
  22261. name: "Front",
  22262. image: {
  22263. source: "./media/characters/windera/front.svg",
  22264. extra: 3180 / 2845,
  22265. bottom: 178 / 3365
  22266. }
  22267. },
  22268. },
  22269. [
  22270. {
  22271. name: "Normal",
  22272. height: math.unit(8, "feet"),
  22273. default: true
  22274. },
  22275. ]
  22276. ))
  22277. characterMakers.push(() => makeCharacter(
  22278. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22279. {
  22280. front: {
  22281. height: math.unit(28.75, "feet"),
  22282. weight: math.unit(2000, "kg"),
  22283. name: "Front",
  22284. image: {
  22285. source: "./media/characters/sonear/front.svg",
  22286. extra: 1041.1 / 964.9,
  22287. bottom: 53.7 / 1096.6
  22288. }
  22289. },
  22290. },
  22291. [
  22292. {
  22293. name: "Normal",
  22294. height: math.unit(28.75, "feet"),
  22295. default: true
  22296. },
  22297. ]
  22298. ))
  22299. characterMakers.push(() => makeCharacter(
  22300. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22301. {
  22302. side: {
  22303. height: math.unit(25.5, "feet"),
  22304. weight: math.unit(23000, "kg"),
  22305. name: "Side",
  22306. image: {
  22307. source: "./media/characters/kanara/side.svg"
  22308. }
  22309. },
  22310. },
  22311. [
  22312. {
  22313. name: "Normal",
  22314. height: math.unit(25.5, "feet"),
  22315. default: true
  22316. },
  22317. ]
  22318. ))
  22319. characterMakers.push(() => makeCharacter(
  22320. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22321. {
  22322. side: {
  22323. height: math.unit(10, "feet"),
  22324. weight: math.unit(1000, "kg"),
  22325. name: "Side",
  22326. image: {
  22327. source: "./media/characters/ereus/side.svg",
  22328. extra: 1157 / 959,
  22329. bottom: 153 / 1312.5
  22330. }
  22331. },
  22332. },
  22333. [
  22334. {
  22335. name: "Normal",
  22336. height: math.unit(10, "feet"),
  22337. default: true
  22338. },
  22339. ]
  22340. ))
  22341. characterMakers.push(() => makeCharacter(
  22342. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22343. {
  22344. side: {
  22345. height: math.unit(4.5, "feet"),
  22346. weight: math.unit(500, "lb"),
  22347. name: "Side",
  22348. image: {
  22349. source: "./media/characters/e-ter/side.svg",
  22350. extra: 1550 / 1248,
  22351. bottom: 146 / 1694
  22352. }
  22353. },
  22354. },
  22355. [
  22356. {
  22357. name: "Normal",
  22358. height: math.unit(4.5, "feet"),
  22359. default: true
  22360. },
  22361. ]
  22362. ))
  22363. characterMakers.push(() => makeCharacter(
  22364. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22365. {
  22366. side: {
  22367. height: math.unit(9.7, "feet"),
  22368. weight: math.unit(4000, "kg"),
  22369. name: "Side",
  22370. image: {
  22371. source: "./media/characters/yamie/side.svg"
  22372. }
  22373. },
  22374. },
  22375. [
  22376. {
  22377. name: "Normal",
  22378. height: math.unit(9.7, "feet"),
  22379. default: true
  22380. },
  22381. ]
  22382. ))
  22383. characterMakers.push(() => makeCharacter(
  22384. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22385. {
  22386. front: {
  22387. height: math.unit(50, "feet"),
  22388. weight: math.unit(50000, "kg"),
  22389. name: "Front",
  22390. image: {
  22391. source: "./media/characters/anders/front.svg",
  22392. extra: 570 / 539,
  22393. bottom: 14.7 / 586.7
  22394. }
  22395. },
  22396. },
  22397. [
  22398. {
  22399. name: "Large",
  22400. height: math.unit(50, "feet")
  22401. },
  22402. {
  22403. name: "Macro",
  22404. height: math.unit(2000, "feet"),
  22405. default: true
  22406. },
  22407. {
  22408. name: "Megamacro",
  22409. height: math.unit(12, "miles")
  22410. },
  22411. ]
  22412. ))
  22413. characterMakers.push(() => makeCharacter(
  22414. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22415. {
  22416. front: {
  22417. height: math.unit(7 + 2 / 12, "feet"),
  22418. weight: math.unit(300, "lb"),
  22419. name: "Front",
  22420. image: {
  22421. source: "./media/characters/reban/front.svg",
  22422. extra: 1287/1212,
  22423. bottom: 148/1435
  22424. }
  22425. },
  22426. head: {
  22427. height: math.unit(1.95, "feet"),
  22428. name: "Head",
  22429. image: {
  22430. source: "./media/characters/reban/head.svg"
  22431. }
  22432. },
  22433. maw: {
  22434. height: math.unit(0.95, "feet"),
  22435. name: "Maw",
  22436. image: {
  22437. source: "./media/characters/reban/maw.svg"
  22438. }
  22439. },
  22440. foot: {
  22441. height: math.unit(1.65, "feet"),
  22442. name: "Foot",
  22443. image: {
  22444. source: "./media/characters/reban/foot.svg"
  22445. }
  22446. },
  22447. dick: {
  22448. height: math.unit(7 / 5, "feet"),
  22449. name: "Dick",
  22450. image: {
  22451. source: "./media/characters/reban/dick.svg"
  22452. }
  22453. },
  22454. },
  22455. [
  22456. {
  22457. name: "Natural Height",
  22458. height: math.unit(7 + 2 / 12, "feet")
  22459. },
  22460. {
  22461. name: "Macro",
  22462. height: math.unit(500, "feet"),
  22463. default: true
  22464. },
  22465. {
  22466. name: "Canon Height",
  22467. height: math.unit(50, "AU")
  22468. },
  22469. ]
  22470. ))
  22471. characterMakers.push(() => makeCharacter(
  22472. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22473. {
  22474. front: {
  22475. height: math.unit(6, "feet"),
  22476. weight: math.unit(150, "lb"),
  22477. name: "Front",
  22478. image: {
  22479. source: "./media/characters/terrance-keayes/front.svg",
  22480. extra: 1.005,
  22481. bottom: 151 / 1615
  22482. }
  22483. },
  22484. side: {
  22485. height: math.unit(6, "feet"),
  22486. weight: math.unit(150, "lb"),
  22487. name: "Side",
  22488. image: {
  22489. source: "./media/characters/terrance-keayes/side.svg",
  22490. extra: 1.005,
  22491. bottom: 129.4 / 1544
  22492. }
  22493. },
  22494. back: {
  22495. height: math.unit(6, "feet"),
  22496. weight: math.unit(150, "lb"),
  22497. name: "Back",
  22498. image: {
  22499. source: "./media/characters/terrance-keayes/back.svg",
  22500. extra: 1.005,
  22501. bottom: 58.4 / 1557.3
  22502. }
  22503. },
  22504. dick: {
  22505. height: math.unit(6 * 0.208, "feet"),
  22506. name: "Dick",
  22507. image: {
  22508. source: "./media/characters/terrance-keayes/dick.svg"
  22509. }
  22510. },
  22511. },
  22512. [
  22513. {
  22514. name: "Canon Height",
  22515. height: math.unit(35, "miles"),
  22516. default: true
  22517. },
  22518. ]
  22519. ))
  22520. characterMakers.push(() => makeCharacter(
  22521. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22522. {
  22523. front: {
  22524. height: math.unit(6, "feet"),
  22525. weight: math.unit(150, "lb"),
  22526. name: "Front",
  22527. image: {
  22528. source: "./media/characters/ofelia/front.svg",
  22529. extra: 1130/1117,
  22530. bottom: 91/1221
  22531. }
  22532. },
  22533. back: {
  22534. height: math.unit(6, "feet"),
  22535. weight: math.unit(150, "lb"),
  22536. name: "Back",
  22537. image: {
  22538. source: "./media/characters/ofelia/back.svg",
  22539. extra: 1172/1159,
  22540. bottom: 28/1200
  22541. }
  22542. },
  22543. maw: {
  22544. height: math.unit(1, "feet"),
  22545. name: "Maw",
  22546. image: {
  22547. source: "./media/characters/ofelia/maw.svg"
  22548. }
  22549. },
  22550. foot: {
  22551. height: math.unit(1.949, "feet"),
  22552. name: "Foot",
  22553. image: {
  22554. source: "./media/characters/ofelia/foot.svg"
  22555. }
  22556. },
  22557. },
  22558. [
  22559. {
  22560. name: "Canon Height",
  22561. height: math.unit(2000, "miles"),
  22562. default: true
  22563. },
  22564. ]
  22565. ))
  22566. characterMakers.push(() => makeCharacter(
  22567. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22568. {
  22569. front: {
  22570. height: math.unit(6, "feet"),
  22571. weight: math.unit(150, "lb"),
  22572. name: "Front",
  22573. image: {
  22574. source: "./media/characters/samuel/front.svg",
  22575. extra: 265 / 258,
  22576. bottom: 2 / 266.1566
  22577. }
  22578. },
  22579. },
  22580. [
  22581. {
  22582. name: "Macro",
  22583. height: math.unit(100, "feet"),
  22584. default: true
  22585. },
  22586. {
  22587. name: "Full Size",
  22588. height: math.unit(1000, "miles")
  22589. },
  22590. ]
  22591. ))
  22592. characterMakers.push(() => makeCharacter(
  22593. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22594. {
  22595. front: {
  22596. height: math.unit(6, "feet"),
  22597. weight: math.unit(300, "lb"),
  22598. name: "Front",
  22599. image: {
  22600. source: "./media/characters/beishir-kiel/front.svg",
  22601. extra: 569 / 547,
  22602. bottom: 41.9 / 609
  22603. }
  22604. },
  22605. maw: {
  22606. height: math.unit(6 * 0.202, "feet"),
  22607. name: "Maw",
  22608. image: {
  22609. source: "./media/characters/beishir-kiel/maw.svg"
  22610. }
  22611. },
  22612. },
  22613. [
  22614. {
  22615. name: "Macro",
  22616. height: math.unit(300, "feet"),
  22617. default: true
  22618. },
  22619. ]
  22620. ))
  22621. characterMakers.push(() => makeCharacter(
  22622. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22623. {
  22624. front: {
  22625. height: math.unit(5 + 7/12, "feet"),
  22626. weight: math.unit(120, "lb"),
  22627. name: "Front",
  22628. image: {
  22629. source: "./media/characters/logan-grey/front.svg",
  22630. extra: 1836/1738,
  22631. bottom: 108/1944
  22632. }
  22633. },
  22634. back: {
  22635. height: math.unit(5 + 7/12, "feet"),
  22636. weight: math.unit(120, "lb"),
  22637. name: "Back",
  22638. image: {
  22639. source: "./media/characters/logan-grey/back.svg",
  22640. extra: 1880/1794,
  22641. bottom: 24/1904
  22642. }
  22643. },
  22644. frontSfw: {
  22645. height: math.unit(5 + 7/12, "feet"),
  22646. weight: math.unit(120, "lb"),
  22647. name: "Front (SFW)",
  22648. image: {
  22649. source: "./media/characters/logan-grey/front-sfw.svg",
  22650. extra: 1836/1738,
  22651. bottom: 108/1944
  22652. }
  22653. },
  22654. backSfw: {
  22655. height: math.unit(5 + 7/12, "feet"),
  22656. weight: math.unit(120, "lb"),
  22657. name: "Back (SFW)",
  22658. image: {
  22659. source: "./media/characters/logan-grey/back-sfw.svg",
  22660. extra: 1880/1794,
  22661. bottom: 24/1904
  22662. }
  22663. },
  22664. hands: {
  22665. height: math.unit(0.84, "feet"),
  22666. name: "Hands",
  22667. image: {
  22668. source: "./media/characters/logan-grey/hands.svg"
  22669. }
  22670. },
  22671. paws: {
  22672. height: math.unit(0.72, "feet"),
  22673. name: "Paws",
  22674. image: {
  22675. source: "./media/characters/logan-grey/paws.svg"
  22676. }
  22677. },
  22678. cock: {
  22679. height: math.unit(1.45, "feet"),
  22680. name: "Cock",
  22681. image: {
  22682. source: "./media/characters/logan-grey/cock.svg"
  22683. }
  22684. },
  22685. cockAlt: {
  22686. height: math.unit(1.437, "feet"),
  22687. name: "Cock (alt)",
  22688. image: {
  22689. source: "./media/characters/logan-grey/cock-alt.svg"
  22690. }
  22691. },
  22692. },
  22693. [
  22694. {
  22695. name: "Normal",
  22696. height: math.unit(5 + 8 / 12, "feet")
  22697. },
  22698. {
  22699. name: "The 500 Foot Femboy",
  22700. height: math.unit(500, "feet"),
  22701. default: true
  22702. },
  22703. {
  22704. name: "Megmacro",
  22705. height: math.unit(20, "miles")
  22706. },
  22707. ]
  22708. ))
  22709. characterMakers.push(() => makeCharacter(
  22710. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22711. {
  22712. front: {
  22713. height: math.unit(8 + 2 / 12, "feet"),
  22714. weight: math.unit(275, "lb"),
  22715. name: "Front",
  22716. image: {
  22717. source: "./media/characters/draganta/front.svg",
  22718. extra: 1177 / 1135,
  22719. bottom: 33.46 / 1212.1
  22720. }
  22721. },
  22722. },
  22723. [
  22724. {
  22725. name: "Normal",
  22726. height: math.unit(8 + 6 / 12, "feet"),
  22727. default: true
  22728. },
  22729. {
  22730. name: "Macro",
  22731. height: math.unit(150, "feet")
  22732. },
  22733. {
  22734. name: "Megamacro",
  22735. height: math.unit(1000, "miles")
  22736. },
  22737. ]
  22738. ))
  22739. characterMakers.push(() => makeCharacter(
  22740. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22741. {
  22742. front: {
  22743. height: math.unit(1.72, "m"),
  22744. weight: math.unit(80, "lb"),
  22745. name: "Front",
  22746. image: {
  22747. source: "./media/characters/voski/front.svg",
  22748. extra: 2076.22 / 2022.4,
  22749. bottom: 102.7 / 2177.3866
  22750. }
  22751. },
  22752. frontNsfw: {
  22753. height: math.unit(1.72, "m"),
  22754. weight: math.unit(80, "lb"),
  22755. name: "Front (NSFW)",
  22756. image: {
  22757. source: "./media/characters/voski/front-nsfw.svg",
  22758. extra: 2076.22 / 2022.4,
  22759. bottom: 102.7 / 2177.3866
  22760. }
  22761. },
  22762. back: {
  22763. height: math.unit(1.72, "m"),
  22764. weight: math.unit(80, "lb"),
  22765. name: "Back",
  22766. image: {
  22767. source: "./media/characters/voski/back.svg",
  22768. extra: 2104 / 2051,
  22769. bottom: 10.45 / 2113.63
  22770. }
  22771. },
  22772. },
  22773. [
  22774. {
  22775. name: "Normal",
  22776. height: math.unit(1.72, "m")
  22777. },
  22778. {
  22779. name: "Macro",
  22780. height: math.unit(55, "m"),
  22781. default: true
  22782. },
  22783. {
  22784. name: "Macro+",
  22785. height: math.unit(300, "m")
  22786. },
  22787. {
  22788. name: "Macro++",
  22789. height: math.unit(700, "m")
  22790. },
  22791. {
  22792. name: "Macro+++",
  22793. height: math.unit(4500, "m")
  22794. },
  22795. {
  22796. name: "Macro++++",
  22797. height: math.unit(45, "km")
  22798. },
  22799. {
  22800. name: "Macro+++++",
  22801. height: math.unit(1220, "km")
  22802. },
  22803. ]
  22804. ))
  22805. characterMakers.push(() => makeCharacter(
  22806. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22807. {
  22808. front: {
  22809. height: math.unit(2.3, "m"),
  22810. weight: math.unit(304, "kg"),
  22811. name: "Front",
  22812. image: {
  22813. source: "./media/characters/icowom-lee/front.svg",
  22814. extra: 985 / 955,
  22815. bottom: 25.4 / 1012
  22816. }
  22817. },
  22818. fronttentacles: {
  22819. height: math.unit(2.3, "m"),
  22820. weight: math.unit(304, "kg"),
  22821. name: "Front-tentacles",
  22822. image: {
  22823. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22824. extra: 985 / 955,
  22825. bottom: 25.4 / 1012
  22826. }
  22827. },
  22828. back: {
  22829. height: math.unit(2.3, "m"),
  22830. weight: math.unit(304, "kg"),
  22831. name: "Back",
  22832. image: {
  22833. source: "./media/characters/icowom-lee/back.svg",
  22834. extra: 975 / 954,
  22835. bottom: 9.5 / 985
  22836. }
  22837. },
  22838. backtentacles: {
  22839. height: math.unit(2.3, "m"),
  22840. weight: math.unit(304, "kg"),
  22841. name: "Back-tentacles",
  22842. image: {
  22843. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22844. extra: 975 / 954,
  22845. bottom: 9.5 / 985
  22846. }
  22847. },
  22848. frontDressed: {
  22849. height: math.unit(2.3, "m"),
  22850. weight: math.unit(304, "kg"),
  22851. name: "Front (Dressed)",
  22852. image: {
  22853. source: "./media/characters/icowom-lee/front-dressed.svg",
  22854. extra: 3076 / 2933,
  22855. bottom: 51.4 / 3125.1889
  22856. }
  22857. },
  22858. rump: {
  22859. height: math.unit(0.776, "meters"),
  22860. name: "Rump",
  22861. image: {
  22862. source: "./media/characters/icowom-lee/rump.svg"
  22863. }
  22864. },
  22865. genitals: {
  22866. height: math.unit(0.78, "meters"),
  22867. name: "Genitals",
  22868. image: {
  22869. source: "./media/characters/icowom-lee/genitals.svg"
  22870. }
  22871. },
  22872. },
  22873. [
  22874. {
  22875. name: "Normal",
  22876. height: math.unit(2.3, "meters"),
  22877. default: true
  22878. },
  22879. {
  22880. name: "Macro",
  22881. height: math.unit(94, "meters"),
  22882. default: true
  22883. },
  22884. ]
  22885. ))
  22886. characterMakers.push(() => makeCharacter(
  22887. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22888. {
  22889. front: {
  22890. height: math.unit(22, "meters"),
  22891. weight: math.unit(21000, "kg"),
  22892. name: "Front",
  22893. image: {
  22894. source: "./media/characters/shock-diamond/front.svg",
  22895. extra: 2204 / 2053,
  22896. bottom: 65 / 2239.47
  22897. }
  22898. },
  22899. frontNude: {
  22900. height: math.unit(22, "meters"),
  22901. weight: math.unit(21000, "kg"),
  22902. name: "Front (Nude)",
  22903. image: {
  22904. source: "./media/characters/shock-diamond/front-nude.svg",
  22905. extra: 2514 / 2285,
  22906. bottom: 13 / 2527.56
  22907. }
  22908. },
  22909. },
  22910. [
  22911. {
  22912. name: "Normal",
  22913. height: math.unit(3, "meters")
  22914. },
  22915. {
  22916. name: "Macro",
  22917. height: math.unit(22, "meters"),
  22918. default: true
  22919. },
  22920. ]
  22921. ))
  22922. characterMakers.push(() => makeCharacter(
  22923. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22924. {
  22925. front: {
  22926. height: math.unit(5 + 4 / 12, "feet"),
  22927. weight: math.unit(120, "lb"),
  22928. name: "Front",
  22929. image: {
  22930. source: "./media/characters/rory/front.svg",
  22931. extra: 1318/1241,
  22932. bottom: 42/1360
  22933. }
  22934. },
  22935. back: {
  22936. height: math.unit(5 + 4 / 12, "feet"),
  22937. weight: math.unit(120, "lb"),
  22938. name: "Back",
  22939. image: {
  22940. source: "./media/characters/rory/back.svg",
  22941. extra: 1318/1241,
  22942. bottom: 42/1360
  22943. }
  22944. },
  22945. butt: {
  22946. height: math.unit(1.74, "feet"),
  22947. name: "Butt",
  22948. image: {
  22949. source: "./media/characters/rory/butt.svg"
  22950. }
  22951. },
  22952. dick: {
  22953. height: math.unit(1.02, "feet"),
  22954. name: "Dick",
  22955. image: {
  22956. source: "./media/characters/rory/dick.svg"
  22957. }
  22958. },
  22959. paws: {
  22960. height: math.unit(1, "feet"),
  22961. name: "Paws",
  22962. image: {
  22963. source: "./media/characters/rory/paws.svg"
  22964. }
  22965. },
  22966. frontAlt: {
  22967. height: math.unit(5 + 4 / 12, "feet"),
  22968. weight: math.unit(120, "lb"),
  22969. name: "Front (Alt)",
  22970. image: {
  22971. source: "./media/characters/rory/front-alt.svg",
  22972. extra: 589 / 556,
  22973. bottom: 45.7 / 635.76
  22974. }
  22975. },
  22976. frontAltNude: {
  22977. height: math.unit(5 + 4 / 12, "feet"),
  22978. weight: math.unit(120, "lb"),
  22979. name: "Front (Alt, Nude)",
  22980. image: {
  22981. source: "./media/characters/rory/front-alt-nude.svg",
  22982. extra: 589 / 556,
  22983. bottom: 45.7 / 635.76
  22984. }
  22985. },
  22986. side: {
  22987. height: math.unit(5 + 4 / 12, "feet"),
  22988. weight: math.unit(120, "lb"),
  22989. name: "Side",
  22990. image: {
  22991. source: "./media/characters/rory/side.svg",
  22992. extra: 597 / 564,
  22993. bottom: 55 / 653
  22994. }
  22995. },
  22996. backAlt: {
  22997. height: math.unit(5 + 4 / 12, "feet"),
  22998. weight: math.unit(120, "lb"),
  22999. name: "Back (Alt)",
  23000. image: {
  23001. source: "./media/characters/rory/back-alt.svg",
  23002. extra: 620 / 585,
  23003. bottom: 8.86 / 630.43
  23004. }
  23005. },
  23006. dickAlt: {
  23007. height: math.unit(0.86, "feet"),
  23008. name: "Dick (Alt)",
  23009. image: {
  23010. source: "./media/characters/rory/dick-alt.svg"
  23011. }
  23012. },
  23013. },
  23014. [
  23015. {
  23016. name: "Normal",
  23017. height: math.unit(5 + 4 / 12, "feet"),
  23018. default: true
  23019. },
  23020. {
  23021. name: "Macro",
  23022. height: math.unit(100, "feet")
  23023. },
  23024. {
  23025. name: "Macro+",
  23026. height: math.unit(140, "feet")
  23027. },
  23028. {
  23029. name: "Macro++",
  23030. height: math.unit(300, "feet")
  23031. },
  23032. ]
  23033. ))
  23034. characterMakers.push(() => makeCharacter(
  23035. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23036. {
  23037. front: {
  23038. height: math.unit(5 + 9 / 12, "feet"),
  23039. weight: math.unit(190, "lb"),
  23040. name: "Front",
  23041. image: {
  23042. source: "./media/characters/sprisk/front.svg",
  23043. extra: 1225 / 1180,
  23044. bottom: 42.7 / 1266.4
  23045. }
  23046. },
  23047. frontNsfw: {
  23048. height: math.unit(5 + 9 / 12, "feet"),
  23049. weight: math.unit(190, "lb"),
  23050. name: "Front (NSFW)",
  23051. image: {
  23052. source: "./media/characters/sprisk/front-nsfw.svg",
  23053. extra: 1225 / 1180,
  23054. bottom: 42.7 / 1266.4
  23055. }
  23056. },
  23057. back: {
  23058. height: math.unit(5 + 9 / 12, "feet"),
  23059. weight: math.unit(190, "lb"),
  23060. name: "Back",
  23061. image: {
  23062. source: "./media/characters/sprisk/back.svg",
  23063. extra: 1247 / 1200,
  23064. bottom: 5.6 / 1253.04
  23065. }
  23066. },
  23067. },
  23068. [
  23069. {
  23070. name: "Tiny",
  23071. height: math.unit(2, "inches")
  23072. },
  23073. {
  23074. name: "Normal",
  23075. height: math.unit(5 + 9 / 12, "feet"),
  23076. default: true
  23077. },
  23078. {
  23079. name: "Mini Macro",
  23080. height: math.unit(18, "feet")
  23081. },
  23082. {
  23083. name: "Macro",
  23084. height: math.unit(100, "feet")
  23085. },
  23086. {
  23087. name: "MACRO",
  23088. height: math.unit(50, "miles")
  23089. },
  23090. {
  23091. name: "M A C R O",
  23092. height: math.unit(300, "miles")
  23093. },
  23094. ]
  23095. ))
  23096. characterMakers.push(() => makeCharacter(
  23097. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23098. {
  23099. side: {
  23100. height: math.unit(15.6, "meters"),
  23101. weight: math.unit(700000, "kg"),
  23102. name: "Side",
  23103. image: {
  23104. source: "./media/characters/bunsen/side.svg",
  23105. extra: 1644 / 358
  23106. }
  23107. },
  23108. foot: {
  23109. height: math.unit(1.611 * 1644 / 358, "meter"),
  23110. name: "Foot",
  23111. image: {
  23112. source: "./media/characters/bunsen/foot.svg"
  23113. }
  23114. },
  23115. },
  23116. [
  23117. {
  23118. name: "Small",
  23119. height: math.unit(10, "feet")
  23120. },
  23121. {
  23122. name: "Normal",
  23123. height: math.unit(15.6, "meters"),
  23124. default: true
  23125. },
  23126. ]
  23127. ))
  23128. characterMakers.push(() => makeCharacter(
  23129. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23130. {
  23131. front: {
  23132. height: math.unit(4 + 11 / 12, "feet"),
  23133. weight: math.unit(140, "lb"),
  23134. name: "Front",
  23135. image: {
  23136. source: "./media/characters/sesh/front.svg",
  23137. extra: 3420 / 3231,
  23138. bottom: 72 / 3949.5
  23139. }
  23140. },
  23141. },
  23142. [
  23143. {
  23144. name: "Normal",
  23145. height: math.unit(4 + 11 / 12, "feet")
  23146. },
  23147. {
  23148. name: "Grown",
  23149. height: math.unit(15, "feet"),
  23150. default: true
  23151. },
  23152. {
  23153. name: "Macro",
  23154. height: math.unit(1500, "feet")
  23155. },
  23156. {
  23157. name: "Megamacro",
  23158. height: math.unit(30, "miles")
  23159. },
  23160. {
  23161. name: "Continental",
  23162. height: math.unit(3000, "miles")
  23163. },
  23164. {
  23165. name: "Gravity Mass",
  23166. height: math.unit(300000, "miles")
  23167. },
  23168. {
  23169. name: "Planet Buster",
  23170. height: math.unit(30000000, "miles")
  23171. },
  23172. {
  23173. name: "Big",
  23174. height: math.unit(3000000000, "miles")
  23175. },
  23176. ]
  23177. ))
  23178. characterMakers.push(() => makeCharacter(
  23179. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23180. {
  23181. front: {
  23182. height: math.unit(9, "feet"),
  23183. weight: math.unit(350, "lb"),
  23184. name: "Front",
  23185. image: {
  23186. source: "./media/characters/pepper/front.svg",
  23187. extra: 1448 / 1312,
  23188. bottom: 9.4 / 1457.88
  23189. }
  23190. },
  23191. back: {
  23192. height: math.unit(9, "feet"),
  23193. weight: math.unit(350, "lb"),
  23194. name: "Back",
  23195. image: {
  23196. source: "./media/characters/pepper/back.svg",
  23197. extra: 1423 / 1300,
  23198. bottom: 4.6 / 1429
  23199. }
  23200. },
  23201. maw: {
  23202. height: math.unit(0.932, "feet"),
  23203. name: "Maw",
  23204. image: {
  23205. source: "./media/characters/pepper/maw.svg"
  23206. }
  23207. },
  23208. },
  23209. [
  23210. {
  23211. name: "Normal",
  23212. height: math.unit(9, "feet"),
  23213. default: true
  23214. },
  23215. ]
  23216. ))
  23217. characterMakers.push(() => makeCharacter(
  23218. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23219. {
  23220. front: {
  23221. height: math.unit(6, "feet"),
  23222. weight: math.unit(150, "lb"),
  23223. name: "Front",
  23224. image: {
  23225. source: "./media/characters/maelstrom/front.svg",
  23226. extra: 2100 / 1883,
  23227. bottom: 94 / 2196.7
  23228. }
  23229. },
  23230. },
  23231. [
  23232. {
  23233. name: "Less Kaiju",
  23234. height: math.unit(200, "feet")
  23235. },
  23236. {
  23237. name: "Kaiju",
  23238. height: math.unit(400, "feet"),
  23239. default: true
  23240. },
  23241. {
  23242. name: "Kaiju-er",
  23243. height: math.unit(600, "feet")
  23244. },
  23245. ]
  23246. ))
  23247. characterMakers.push(() => makeCharacter(
  23248. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23249. {
  23250. front: {
  23251. height: math.unit(6 + 5 / 12, "feet"),
  23252. weight: math.unit(180, "lb"),
  23253. name: "Front",
  23254. image: {
  23255. source: "./media/characters/lexir/front.svg",
  23256. extra: 180 / 172,
  23257. bottom: 12 / 192
  23258. }
  23259. },
  23260. back: {
  23261. height: math.unit(6 + 5 / 12, "feet"),
  23262. weight: math.unit(180, "lb"),
  23263. name: "Back",
  23264. image: {
  23265. source: "./media/characters/lexir/back.svg",
  23266. extra: 183.84 / 175.5,
  23267. bottom: 3.1 / 187
  23268. }
  23269. },
  23270. },
  23271. [
  23272. {
  23273. name: "Very Smal",
  23274. height: math.unit(1, "nm")
  23275. },
  23276. {
  23277. name: "Normal",
  23278. height: math.unit(6 + 5 / 12, "feet"),
  23279. default: true
  23280. },
  23281. {
  23282. name: "Macro",
  23283. height: math.unit(1, "mile")
  23284. },
  23285. {
  23286. name: "Megamacro",
  23287. height: math.unit(50, "miles")
  23288. },
  23289. ]
  23290. ))
  23291. characterMakers.push(() => makeCharacter(
  23292. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23293. {
  23294. front: {
  23295. height: math.unit(1.5, "meters"),
  23296. weight: math.unit(100, "lb"),
  23297. name: "Front",
  23298. image: {
  23299. source: "./media/characters/maksio/front.svg",
  23300. extra: 1549 / 1531,
  23301. bottom: 123.7 / 1674.5429
  23302. }
  23303. },
  23304. back: {
  23305. height: math.unit(1.5, "meters"),
  23306. weight: math.unit(100, "lb"),
  23307. name: "Back",
  23308. image: {
  23309. source: "./media/characters/maksio/back.svg",
  23310. extra: 1541 / 1509,
  23311. bottom: 97 / 1639
  23312. }
  23313. },
  23314. hand: {
  23315. height: math.unit(0.621, "feet"),
  23316. name: "Hand",
  23317. image: {
  23318. source: "./media/characters/maksio/hand.svg"
  23319. }
  23320. },
  23321. foot: {
  23322. height: math.unit(1.611, "feet"),
  23323. name: "Foot",
  23324. image: {
  23325. source: "./media/characters/maksio/foot.svg"
  23326. }
  23327. },
  23328. },
  23329. [
  23330. {
  23331. name: "Shrunken",
  23332. height: math.unit(10, "cm")
  23333. },
  23334. {
  23335. name: "Normal",
  23336. height: math.unit(150, "cm"),
  23337. default: true
  23338. },
  23339. ]
  23340. ))
  23341. characterMakers.push(() => makeCharacter(
  23342. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23343. {
  23344. front: {
  23345. height: math.unit(100, "feet"),
  23346. name: "Front",
  23347. image: {
  23348. source: "./media/characters/erza-bear/front.svg",
  23349. extra: 2449 / 2390,
  23350. bottom: 46 / 2494
  23351. }
  23352. },
  23353. back: {
  23354. height: math.unit(100, "feet"),
  23355. name: "Back",
  23356. image: {
  23357. source: "./media/characters/erza-bear/back.svg",
  23358. extra: 2489 / 2430,
  23359. bottom: 85.4 / 2480
  23360. }
  23361. },
  23362. tail: {
  23363. height: math.unit(42, "feet"),
  23364. name: "Tail",
  23365. image: {
  23366. source: "./media/characters/erza-bear/tail.svg"
  23367. }
  23368. },
  23369. tongue: {
  23370. height: math.unit(8, "feet"),
  23371. name: "Tongue",
  23372. image: {
  23373. source: "./media/characters/erza-bear/tongue.svg"
  23374. }
  23375. },
  23376. dick: {
  23377. height: math.unit(10.5, "feet"),
  23378. name: "Dick",
  23379. image: {
  23380. source: "./media/characters/erza-bear/dick.svg"
  23381. }
  23382. },
  23383. dickVertical: {
  23384. height: math.unit(16.9, "feet"),
  23385. name: "Dick (Vertical)",
  23386. image: {
  23387. source: "./media/characters/erza-bear/dick-vertical.svg"
  23388. }
  23389. },
  23390. },
  23391. [
  23392. {
  23393. name: "Macro",
  23394. height: math.unit(100, "feet"),
  23395. default: true
  23396. },
  23397. ]
  23398. ))
  23399. characterMakers.push(() => makeCharacter(
  23400. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23401. {
  23402. front: {
  23403. height: math.unit(172, "cm"),
  23404. weight: math.unit(73, "kg"),
  23405. name: "Front",
  23406. image: {
  23407. source: "./media/characters/violet-flor/front.svg",
  23408. extra: 1530 / 1442,
  23409. bottom: 61.9 / 1588.8
  23410. }
  23411. },
  23412. back: {
  23413. height: math.unit(180, "cm"),
  23414. weight: math.unit(73, "kg"),
  23415. name: "Back",
  23416. image: {
  23417. source: "./media/characters/violet-flor/back.svg",
  23418. extra: 1692 / 1630,
  23419. bottom: 20 / 1712
  23420. }
  23421. },
  23422. },
  23423. [
  23424. {
  23425. name: "Normal",
  23426. height: math.unit(172, "cm"),
  23427. default: true
  23428. },
  23429. ]
  23430. ))
  23431. characterMakers.push(() => makeCharacter(
  23432. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23433. {
  23434. front: {
  23435. height: math.unit(6, "feet"),
  23436. weight: math.unit(220, "lb"),
  23437. name: "Front",
  23438. image: {
  23439. source: "./media/characters/lynn-rhea/front.svg",
  23440. extra: 310 / 273
  23441. }
  23442. },
  23443. back: {
  23444. height: math.unit(6, "feet"),
  23445. weight: math.unit(220, "lb"),
  23446. name: "Back",
  23447. image: {
  23448. source: "./media/characters/lynn-rhea/back.svg",
  23449. extra: 310 / 273
  23450. }
  23451. },
  23452. dicks: {
  23453. height: math.unit(0.9, "feet"),
  23454. name: "Dicks",
  23455. image: {
  23456. source: "./media/characters/lynn-rhea/dicks.svg"
  23457. }
  23458. },
  23459. slit: {
  23460. height: math.unit(0.4, "feet"),
  23461. name: "Slit",
  23462. image: {
  23463. source: "./media/characters/lynn-rhea/slit.svg"
  23464. }
  23465. },
  23466. },
  23467. [
  23468. {
  23469. name: "Micro",
  23470. height: math.unit(1, "inch")
  23471. },
  23472. {
  23473. name: "Macro",
  23474. height: math.unit(60, "feet"),
  23475. default: true
  23476. },
  23477. {
  23478. name: "Megamacro",
  23479. height: math.unit(2, "miles")
  23480. },
  23481. {
  23482. name: "Gigamacro",
  23483. height: math.unit(3, "earths")
  23484. },
  23485. {
  23486. name: "Galactic",
  23487. height: math.unit(0.8, "galaxies")
  23488. },
  23489. ]
  23490. ))
  23491. characterMakers.push(() => makeCharacter(
  23492. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23493. {
  23494. front: {
  23495. height: math.unit(1600, "feet"),
  23496. weight: math.unit(85758785169, "kg"),
  23497. name: "Front",
  23498. image: {
  23499. source: "./media/characters/valathos/front.svg",
  23500. extra: 1451 / 1339
  23501. }
  23502. },
  23503. },
  23504. [
  23505. {
  23506. name: "Macro",
  23507. height: math.unit(1600, "feet"),
  23508. default: true
  23509. },
  23510. ]
  23511. ))
  23512. characterMakers.push(() => makeCharacter(
  23513. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23514. {
  23515. front: {
  23516. height: math.unit(7 + 5 / 12, "feet"),
  23517. weight: math.unit(300, "lb"),
  23518. name: "Front",
  23519. image: {
  23520. source: "./media/characters/azula/front.svg",
  23521. extra: 3208 / 2880,
  23522. bottom: 80.2 / 3277
  23523. }
  23524. },
  23525. back: {
  23526. height: math.unit(7 + 5 / 12, "feet"),
  23527. weight: math.unit(300, "lb"),
  23528. name: "Back",
  23529. image: {
  23530. source: "./media/characters/azula/back.svg",
  23531. extra: 3169 / 2822,
  23532. bottom: 150.6 / 3321
  23533. }
  23534. },
  23535. },
  23536. [
  23537. {
  23538. name: "Normal",
  23539. height: math.unit(7 + 5 / 12, "feet"),
  23540. default: true
  23541. },
  23542. {
  23543. name: "Big",
  23544. height: math.unit(20, "feet")
  23545. },
  23546. ]
  23547. ))
  23548. characterMakers.push(() => makeCharacter(
  23549. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23550. {
  23551. front: {
  23552. height: math.unit(5 + 1 / 12, "feet"),
  23553. weight: math.unit(110, "lb"),
  23554. name: "Front",
  23555. image: {
  23556. source: "./media/characters/rupert/front.svg",
  23557. extra: 1549 / 1495,
  23558. bottom: 54.2 / 1604.4
  23559. }
  23560. },
  23561. },
  23562. [
  23563. {
  23564. name: "Normal",
  23565. height: math.unit(5 + 1 / 12, "feet"),
  23566. default: true
  23567. },
  23568. ]
  23569. ))
  23570. characterMakers.push(() => makeCharacter(
  23571. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23572. {
  23573. front: {
  23574. height: math.unit(8 + 4 / 12, "feet"),
  23575. weight: math.unit(350, "lb"),
  23576. name: "Front",
  23577. image: {
  23578. source: "./media/characters/sheera-castellar/front.svg",
  23579. extra: 1957 / 1894,
  23580. bottom: 26.97 / 1975.017
  23581. }
  23582. },
  23583. side: {
  23584. height: math.unit(8 + 4 / 12, "feet"),
  23585. weight: math.unit(350, "lb"),
  23586. name: "Side",
  23587. image: {
  23588. source: "./media/characters/sheera-castellar/side.svg",
  23589. extra: 1957 / 1894
  23590. }
  23591. },
  23592. back: {
  23593. height: math.unit(8 + 4 / 12, "feet"),
  23594. weight: math.unit(350, "lb"),
  23595. name: "Back",
  23596. image: {
  23597. source: "./media/characters/sheera-castellar/back.svg",
  23598. extra: 1957 / 1894
  23599. }
  23600. },
  23601. angled: {
  23602. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23603. weight: math.unit(350, "lb"),
  23604. name: "Angled",
  23605. image: {
  23606. source: "./media/characters/sheera-castellar/angled.svg",
  23607. extra: 1807 / 1707,
  23608. bottom: 68 / 1875
  23609. }
  23610. },
  23611. genitals: {
  23612. height: math.unit(2.2, "feet"),
  23613. name: "Genitals",
  23614. image: {
  23615. source: "./media/characters/sheera-castellar/genitals.svg"
  23616. }
  23617. },
  23618. taur: {
  23619. height: math.unit(10 + 6/12, "feet"),
  23620. name: "Taur",
  23621. image: {
  23622. source: "./media/characters/sheera-castellar/taur.svg",
  23623. extra: 2017/1909,
  23624. bottom: 185/2202
  23625. }
  23626. },
  23627. },
  23628. [
  23629. {
  23630. name: "Normal",
  23631. height: math.unit(8 + 4 / 12, "feet")
  23632. },
  23633. {
  23634. name: "Macro",
  23635. height: math.unit(150, "feet"),
  23636. default: true
  23637. },
  23638. {
  23639. name: "Macro+",
  23640. height: math.unit(800, "feet")
  23641. },
  23642. ]
  23643. ))
  23644. characterMakers.push(() => makeCharacter(
  23645. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23646. {
  23647. front: {
  23648. height: math.unit(6, "feet"),
  23649. weight: math.unit(150, "lb"),
  23650. name: "Front",
  23651. image: {
  23652. source: "./media/characters/jaipur/front.svg",
  23653. extra: 3860 / 3731,
  23654. bottom: 287 / 4140
  23655. }
  23656. },
  23657. back: {
  23658. height: math.unit(6, "feet"),
  23659. weight: math.unit(150, "lb"),
  23660. name: "Back",
  23661. image: {
  23662. source: "./media/characters/jaipur/back.svg",
  23663. extra: 4060 / 3930,
  23664. bottom: 151 / 4200
  23665. }
  23666. },
  23667. },
  23668. [
  23669. {
  23670. name: "Normal",
  23671. height: math.unit(1.85, "meters"),
  23672. default: true
  23673. },
  23674. {
  23675. name: "Macro",
  23676. height: math.unit(150, "meters")
  23677. },
  23678. {
  23679. name: "Macro+",
  23680. height: math.unit(0.5, "miles")
  23681. },
  23682. {
  23683. name: "Macro++",
  23684. height: math.unit(2.5, "miles")
  23685. },
  23686. {
  23687. name: "Macro+++",
  23688. height: math.unit(12, "miles")
  23689. },
  23690. {
  23691. name: "Macro++++",
  23692. height: math.unit(120, "miles")
  23693. },
  23694. {
  23695. name: "Macro+++++",
  23696. height: math.unit(1200, "miles")
  23697. },
  23698. ]
  23699. ))
  23700. characterMakers.push(() => makeCharacter(
  23701. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23702. {
  23703. front: {
  23704. height: math.unit(6, "feet"),
  23705. weight: math.unit(150, "lb"),
  23706. name: "Front",
  23707. image: {
  23708. source: "./media/characters/sheila-wolf/front.svg",
  23709. extra: 1931 / 1808,
  23710. bottom: 29.5 / 1960
  23711. }
  23712. },
  23713. dick: {
  23714. height: math.unit(1.464, "feet"),
  23715. name: "Dick",
  23716. image: {
  23717. source: "./media/characters/sheila-wolf/dick.svg"
  23718. }
  23719. },
  23720. muzzle: {
  23721. height: math.unit(0.513, "feet"),
  23722. name: "Muzzle",
  23723. image: {
  23724. source: "./media/characters/sheila-wolf/muzzle.svg"
  23725. }
  23726. },
  23727. },
  23728. [
  23729. {
  23730. name: "Macro",
  23731. height: math.unit(70, "feet"),
  23732. default: true
  23733. },
  23734. ]
  23735. ))
  23736. characterMakers.push(() => makeCharacter(
  23737. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23738. {
  23739. front: {
  23740. height: math.unit(32, "meters"),
  23741. weight: math.unit(300000, "kg"),
  23742. name: "Front",
  23743. image: {
  23744. source: "./media/characters/almor/front.svg",
  23745. extra: 1408 / 1322,
  23746. bottom: 94.6 / 1506.5
  23747. }
  23748. },
  23749. },
  23750. [
  23751. {
  23752. name: "Macro",
  23753. height: math.unit(32, "meters"),
  23754. default: true
  23755. },
  23756. ]
  23757. ))
  23758. characterMakers.push(() => makeCharacter(
  23759. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23760. {
  23761. front: {
  23762. height: math.unit(7, "feet"),
  23763. weight: math.unit(200, "lb"),
  23764. name: "Front",
  23765. image: {
  23766. source: "./media/characters/silver/front.svg",
  23767. extra: 472.1 / 450.5,
  23768. bottom: 26.5 / 499.424
  23769. }
  23770. },
  23771. },
  23772. [
  23773. {
  23774. name: "Normal",
  23775. height: math.unit(7, "feet"),
  23776. default: true
  23777. },
  23778. {
  23779. name: "Macro",
  23780. height: math.unit(800, "feet")
  23781. },
  23782. {
  23783. name: "Megamacro",
  23784. height: math.unit(250, "miles")
  23785. },
  23786. ]
  23787. ))
  23788. characterMakers.push(() => makeCharacter(
  23789. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23790. {
  23791. front: {
  23792. height: math.unit(6, "feet"),
  23793. weight: math.unit(150, "lb"),
  23794. name: "Front",
  23795. image: {
  23796. source: "./media/characters/pliskin/front.svg",
  23797. extra: 1469 / 1359,
  23798. bottom: 70 / 1540
  23799. }
  23800. },
  23801. },
  23802. [
  23803. {
  23804. name: "Micro",
  23805. height: math.unit(3, "inches")
  23806. },
  23807. {
  23808. name: "Normal",
  23809. height: math.unit(5 + 11 / 12, "feet"),
  23810. default: true
  23811. },
  23812. {
  23813. name: "Macro",
  23814. height: math.unit(120, "feet")
  23815. },
  23816. ]
  23817. ))
  23818. characterMakers.push(() => makeCharacter(
  23819. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23820. {
  23821. front: {
  23822. height: math.unit(6, "feet"),
  23823. weight: math.unit(150, "lb"),
  23824. name: "Front",
  23825. image: {
  23826. source: "./media/characters/sammy/front.svg",
  23827. extra: 1193 / 1089,
  23828. bottom: 30.5 / 1226
  23829. }
  23830. },
  23831. },
  23832. [
  23833. {
  23834. name: "Macro",
  23835. height: math.unit(1700, "feet"),
  23836. default: true
  23837. },
  23838. {
  23839. name: "Examacro",
  23840. height: math.unit(2.5e9, "lightyears")
  23841. },
  23842. ]
  23843. ))
  23844. characterMakers.push(() => makeCharacter(
  23845. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23846. {
  23847. front: {
  23848. height: math.unit(21, "meters"),
  23849. weight: math.unit(12, "tonnes"),
  23850. name: "Front",
  23851. image: {
  23852. source: "./media/characters/kuru/front.svg",
  23853. extra: 4301 / 3785,
  23854. bottom: 371.3 / 4691
  23855. }
  23856. },
  23857. },
  23858. [
  23859. {
  23860. name: "Macro",
  23861. height: math.unit(21, "meters"),
  23862. default: true
  23863. },
  23864. ]
  23865. ))
  23866. characterMakers.push(() => makeCharacter(
  23867. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23868. {
  23869. front: {
  23870. height: math.unit(23, "meters"),
  23871. weight: math.unit(12.2, "tonnes"),
  23872. name: "Front",
  23873. image: {
  23874. source: "./media/characters/rakka/front.svg",
  23875. extra: 4670 / 4169,
  23876. bottom: 301 / 4968.7
  23877. }
  23878. },
  23879. },
  23880. [
  23881. {
  23882. name: "Macro",
  23883. height: math.unit(23, "meters"),
  23884. default: true
  23885. },
  23886. ]
  23887. ))
  23888. characterMakers.push(() => makeCharacter(
  23889. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23890. {
  23891. front: {
  23892. height: math.unit(6, "feet"),
  23893. weight: math.unit(150, "lb"),
  23894. name: "Front",
  23895. image: {
  23896. source: "./media/characters/rhys-feline/front.svg",
  23897. extra: 2488 / 2308,
  23898. bottom: 35.67 / 2519.19
  23899. }
  23900. },
  23901. },
  23902. [
  23903. {
  23904. name: "Really Small",
  23905. height: math.unit(1, "nm")
  23906. },
  23907. {
  23908. name: "Micro",
  23909. height: math.unit(4, "inches")
  23910. },
  23911. {
  23912. name: "Normal",
  23913. height: math.unit(4 + 10 / 12, "feet"),
  23914. default: true
  23915. },
  23916. {
  23917. name: "Macro",
  23918. height: math.unit(100, "feet")
  23919. },
  23920. {
  23921. name: "Megamacto",
  23922. height: math.unit(50, "miles")
  23923. },
  23924. ]
  23925. ))
  23926. characterMakers.push(() => makeCharacter(
  23927. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23928. {
  23929. side: {
  23930. height: math.unit(30, "feet"),
  23931. weight: math.unit(35000, "kg"),
  23932. name: "Side",
  23933. image: {
  23934. source: "./media/characters/alydar/side.svg",
  23935. extra: 234 / 222,
  23936. bottom: 6.5 / 241
  23937. }
  23938. },
  23939. front: {
  23940. height: math.unit(30, "feet"),
  23941. weight: math.unit(35000, "kg"),
  23942. name: "Front",
  23943. image: {
  23944. source: "./media/characters/alydar/front.svg",
  23945. extra: 223.37 / 210.2,
  23946. bottom: 22.3 / 246.76
  23947. }
  23948. },
  23949. top: {
  23950. height: math.unit(64.54, "feet"),
  23951. weight: math.unit(35000, "kg"),
  23952. name: "Top",
  23953. image: {
  23954. source: "./media/characters/alydar/top.svg"
  23955. }
  23956. },
  23957. anthro: {
  23958. height: math.unit(30, "feet"),
  23959. weight: math.unit(9000, "kg"),
  23960. name: "Anthro",
  23961. image: {
  23962. source: "./media/characters/alydar/anthro.svg",
  23963. extra: 432 / 421,
  23964. bottom: 7.18 / 440
  23965. }
  23966. },
  23967. maw: {
  23968. height: math.unit(11.693, "feet"),
  23969. name: "Maw",
  23970. image: {
  23971. source: "./media/characters/alydar/maw.svg"
  23972. }
  23973. },
  23974. head: {
  23975. height: math.unit(11.693, "feet"),
  23976. name: "Head",
  23977. image: {
  23978. source: "./media/characters/alydar/head.svg"
  23979. }
  23980. },
  23981. headAlt: {
  23982. height: math.unit(12.861, "feet"),
  23983. name: "Head (Alt)",
  23984. image: {
  23985. source: "./media/characters/alydar/head-alt.svg"
  23986. }
  23987. },
  23988. wing: {
  23989. height: math.unit(20.712, "feet"),
  23990. name: "Wing",
  23991. image: {
  23992. source: "./media/characters/alydar/wing.svg"
  23993. }
  23994. },
  23995. wingFeather: {
  23996. height: math.unit(9.662, "feet"),
  23997. name: "Wing Feather",
  23998. image: {
  23999. source: "./media/characters/alydar/wing-feather.svg"
  24000. }
  24001. },
  24002. countourFeather: {
  24003. height: math.unit(4.154, "feet"),
  24004. name: "Contour Feather",
  24005. image: {
  24006. source: "./media/characters/alydar/contour-feather.svg"
  24007. }
  24008. },
  24009. },
  24010. [
  24011. {
  24012. name: "Diplomatic",
  24013. height: math.unit(13, "feet"),
  24014. default: true
  24015. },
  24016. {
  24017. name: "Small",
  24018. height: math.unit(30, "feet")
  24019. },
  24020. {
  24021. name: "Normal",
  24022. height: math.unit(95, "feet"),
  24023. default: true
  24024. },
  24025. {
  24026. name: "Large",
  24027. height: math.unit(285, "feet")
  24028. },
  24029. {
  24030. name: "Incomprehensible",
  24031. height: math.unit(450, "megameters")
  24032. },
  24033. ]
  24034. ))
  24035. characterMakers.push(() => makeCharacter(
  24036. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24037. {
  24038. side: {
  24039. height: math.unit(11, "feet"),
  24040. weight: math.unit(1750, "kg"),
  24041. name: "Side",
  24042. image: {
  24043. source: "./media/characters/selicia/side.svg",
  24044. extra: 440 / 396,
  24045. bottom: 24.8 / 465.979
  24046. }
  24047. },
  24048. maw: {
  24049. height: math.unit(4.665, "feet"),
  24050. name: "Maw",
  24051. image: {
  24052. source: "./media/characters/selicia/maw.svg"
  24053. }
  24054. },
  24055. },
  24056. [
  24057. {
  24058. name: "Normal",
  24059. height: math.unit(11, "feet"),
  24060. default: true
  24061. },
  24062. ]
  24063. ))
  24064. characterMakers.push(() => makeCharacter(
  24065. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24066. {
  24067. side: {
  24068. height: math.unit(2 + 6 / 12, "feet"),
  24069. weight: math.unit(30, "lb"),
  24070. name: "Side",
  24071. image: {
  24072. source: "./media/characters/layla/side.svg",
  24073. extra: 244 / 188,
  24074. bottom: 18.2 / 262.1
  24075. }
  24076. },
  24077. back: {
  24078. height: math.unit(2 + 6 / 12, "feet"),
  24079. weight: math.unit(30, "lb"),
  24080. name: "Back",
  24081. image: {
  24082. source: "./media/characters/layla/back.svg",
  24083. extra: 308 / 241.5,
  24084. bottom: 8.9 / 316.8
  24085. }
  24086. },
  24087. cumming: {
  24088. height: math.unit(2 + 6 / 12, "feet"),
  24089. weight: math.unit(30, "lb"),
  24090. name: "Cumming",
  24091. image: {
  24092. source: "./media/characters/layla/cumming.svg",
  24093. extra: 342 / 279,
  24094. bottom: 595 / 938
  24095. }
  24096. },
  24097. dickFlaccid: {
  24098. height: math.unit(2.595, "feet"),
  24099. name: "Flaccid Genitals",
  24100. image: {
  24101. source: "./media/characters/layla/dick-flaccid.svg"
  24102. }
  24103. },
  24104. dickErect: {
  24105. height: math.unit(2.359, "feet"),
  24106. name: "Erect Genitals",
  24107. image: {
  24108. source: "./media/characters/layla/dick-erect.svg"
  24109. }
  24110. },
  24111. dragon: {
  24112. height: math.unit(40, "feet"),
  24113. name: "Dragon",
  24114. image: {
  24115. source: "./media/characters/layla/dragon.svg",
  24116. extra: 610/535,
  24117. bottom: 367/977
  24118. }
  24119. },
  24120. taur: {
  24121. height: math.unit(30, "feet"),
  24122. name: "Taur",
  24123. image: {
  24124. source: "./media/characters/layla/taur.svg",
  24125. extra: 1268/1199,
  24126. bottom: 112/1380
  24127. }
  24128. },
  24129. },
  24130. [
  24131. {
  24132. name: "Micro",
  24133. height: math.unit(1, "inch")
  24134. },
  24135. {
  24136. name: "Small",
  24137. height: math.unit(1, "foot")
  24138. },
  24139. {
  24140. name: "Normal",
  24141. height: math.unit(2 + 6 / 12, "feet"),
  24142. default: true
  24143. },
  24144. {
  24145. name: "Macro",
  24146. height: math.unit(200, "feet")
  24147. },
  24148. {
  24149. name: "Megamacro",
  24150. height: math.unit(1000, "miles")
  24151. },
  24152. {
  24153. name: "Planetary",
  24154. height: math.unit(8000, "miles")
  24155. },
  24156. {
  24157. name: "True Layla",
  24158. height: math.unit(200000 * 7, "multiverses")
  24159. },
  24160. ]
  24161. ))
  24162. characterMakers.push(() => makeCharacter(
  24163. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24164. {
  24165. back: {
  24166. height: math.unit(10.5, "feet"),
  24167. weight: math.unit(800, "lb"),
  24168. name: "Back",
  24169. image: {
  24170. source: "./media/characters/knox/back.svg",
  24171. extra: 1486 / 1089,
  24172. bottom: 107 / 1601.4
  24173. }
  24174. },
  24175. side: {
  24176. height: math.unit(10.5, "feet"),
  24177. weight: math.unit(800, "lb"),
  24178. name: "Side",
  24179. image: {
  24180. source: "./media/characters/knox/side.svg",
  24181. extra: 244 / 218,
  24182. bottom: 14 / 260
  24183. }
  24184. },
  24185. },
  24186. [
  24187. {
  24188. name: "Compact",
  24189. height: math.unit(10.5, "feet"),
  24190. default: true
  24191. },
  24192. {
  24193. name: "Dynamax",
  24194. height: math.unit(210, "feet")
  24195. },
  24196. {
  24197. name: "Full Macro",
  24198. height: math.unit(850, "feet")
  24199. },
  24200. ]
  24201. ))
  24202. characterMakers.push(() => makeCharacter(
  24203. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24204. {
  24205. front: {
  24206. height: math.unit(28, "feet"),
  24207. weight: math.unit(10500, "lb"),
  24208. name: "Front",
  24209. image: {
  24210. source: "./media/characters/kayda/front.svg",
  24211. extra: 1536 / 1428,
  24212. bottom: 68.7 / 1603
  24213. }
  24214. },
  24215. back: {
  24216. height: math.unit(28, "feet"),
  24217. weight: math.unit(10500, "lb"),
  24218. name: "Back",
  24219. image: {
  24220. source: "./media/characters/kayda/back.svg",
  24221. extra: 1557 / 1464,
  24222. bottom: 39.5 / 1597.49
  24223. }
  24224. },
  24225. dick: {
  24226. height: math.unit(3.858, "feet"),
  24227. name: "Dick",
  24228. image: {
  24229. source: "./media/characters/kayda/dick.svg"
  24230. }
  24231. },
  24232. },
  24233. [
  24234. {
  24235. name: "Macro",
  24236. height: math.unit(28, "feet"),
  24237. default: true
  24238. },
  24239. ]
  24240. ))
  24241. characterMakers.push(() => makeCharacter(
  24242. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24243. {
  24244. front: {
  24245. height: math.unit(10 + 11 / 12, "feet"),
  24246. weight: math.unit(1400, "lb"),
  24247. name: "Front",
  24248. image: {
  24249. source: "./media/characters/brian/front.svg",
  24250. extra: 737 / 692,
  24251. bottom: 55.4 / 785
  24252. }
  24253. },
  24254. },
  24255. [
  24256. {
  24257. name: "Normal",
  24258. height: math.unit(10 + 11 / 12, "feet"),
  24259. default: true
  24260. },
  24261. ]
  24262. ))
  24263. characterMakers.push(() => makeCharacter(
  24264. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24265. {
  24266. front: {
  24267. height: math.unit(5 + 8 / 12, "feet"),
  24268. weight: math.unit(140, "lb"),
  24269. name: "Front",
  24270. image: {
  24271. source: "./media/characters/khemri/front.svg",
  24272. extra: 4780 / 4059,
  24273. bottom: 80.1 / 4859.25
  24274. }
  24275. },
  24276. },
  24277. [
  24278. {
  24279. name: "Micro",
  24280. height: math.unit(6, "inches")
  24281. },
  24282. {
  24283. name: "Normal",
  24284. height: math.unit(5 + 8 / 12, "feet"),
  24285. default: true
  24286. },
  24287. ]
  24288. ))
  24289. characterMakers.push(() => makeCharacter(
  24290. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24291. {
  24292. front: {
  24293. height: math.unit(13, "feet"),
  24294. weight: math.unit(1700, "lb"),
  24295. name: "Front",
  24296. image: {
  24297. source: "./media/characters/felix-braveheart/front.svg",
  24298. extra: 1222 / 1157,
  24299. bottom: 53.2 / 1280
  24300. }
  24301. },
  24302. back: {
  24303. height: math.unit(13, "feet"),
  24304. weight: math.unit(1700, "lb"),
  24305. name: "Back",
  24306. image: {
  24307. source: "./media/characters/felix-braveheart/back.svg",
  24308. extra: 1277 / 1203,
  24309. bottom: 50.2 / 1327
  24310. }
  24311. },
  24312. feral: {
  24313. height: math.unit(6, "feet"),
  24314. weight: math.unit(400, "lb"),
  24315. name: "Feral",
  24316. image: {
  24317. source: "./media/characters/felix-braveheart/feral.svg",
  24318. extra: 682 / 625,
  24319. bottom: 6.9 / 688
  24320. }
  24321. },
  24322. },
  24323. [
  24324. {
  24325. name: "Normal",
  24326. height: math.unit(13, "feet"),
  24327. default: true
  24328. },
  24329. ]
  24330. ))
  24331. characterMakers.push(() => makeCharacter(
  24332. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24333. {
  24334. side: {
  24335. height: math.unit(5 + 11 / 12, "feet"),
  24336. weight: math.unit(1400, "lb"),
  24337. name: "Side",
  24338. image: {
  24339. source: "./media/characters/shadow-blade/side.svg",
  24340. extra: 1726 / 1267,
  24341. bottom: 58.4 / 1785
  24342. }
  24343. },
  24344. },
  24345. [
  24346. {
  24347. name: "Normal",
  24348. height: math.unit(5 + 11 / 12, "feet"),
  24349. default: true
  24350. },
  24351. ]
  24352. ))
  24353. characterMakers.push(() => makeCharacter(
  24354. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24355. {
  24356. front: {
  24357. height: math.unit(1 + 6 / 12, "feet"),
  24358. weight: math.unit(25, "lb"),
  24359. name: "Front",
  24360. image: {
  24361. source: "./media/characters/karla-halldor/front.svg",
  24362. extra: 1459 / 1383,
  24363. bottom: 12 / 1472
  24364. }
  24365. },
  24366. },
  24367. [
  24368. {
  24369. name: "Normal",
  24370. height: math.unit(1 + 6 / 12, "feet"),
  24371. default: true
  24372. },
  24373. ]
  24374. ))
  24375. characterMakers.push(() => makeCharacter(
  24376. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24377. {
  24378. front: {
  24379. height: math.unit(6 + 2 / 12, "feet"),
  24380. weight: math.unit(160, "lb"),
  24381. name: "Front",
  24382. image: {
  24383. source: "./media/characters/ariam/front.svg",
  24384. extra: 1073/976,
  24385. bottom: 52/1125
  24386. }
  24387. },
  24388. back: {
  24389. height: math.unit(6 + 2/12, "feet"),
  24390. weight: math.unit(160, "lb"),
  24391. name: "Back",
  24392. image: {
  24393. source: "./media/characters/ariam/back.svg",
  24394. extra: 1103/1023,
  24395. bottom: 9/1112
  24396. }
  24397. },
  24398. dressed: {
  24399. height: math.unit(6 + 2/12, "feet"),
  24400. weight: math.unit(160, "lb"),
  24401. name: "Dressed",
  24402. image: {
  24403. source: "./media/characters/ariam/dressed.svg",
  24404. extra: 1099/1009,
  24405. bottom: 25/1124
  24406. }
  24407. },
  24408. squatting: {
  24409. height: math.unit(4.1, "feet"),
  24410. weight: math.unit(160, "lb"),
  24411. name: "Squatting",
  24412. image: {
  24413. source: "./media/characters/ariam/squatting.svg",
  24414. extra: 2617 / 2112,
  24415. bottom: 61.2 / 2681,
  24416. }
  24417. },
  24418. },
  24419. [
  24420. {
  24421. name: "Normal",
  24422. height: math.unit(6 + 2 / 12, "feet"),
  24423. default: true
  24424. },
  24425. {
  24426. name: "Normal+",
  24427. height: math.unit(4, "meters")
  24428. },
  24429. {
  24430. name: "Macro",
  24431. height: math.unit(50, "meters")
  24432. },
  24433. {
  24434. name: "Macro+",
  24435. height: math.unit(100, "meters")
  24436. },
  24437. {
  24438. name: "Megamacro",
  24439. height: math.unit(20, "km")
  24440. },
  24441. {
  24442. name: "Caretaker",
  24443. height: math.unit(444, "megameters")
  24444. },
  24445. ]
  24446. ))
  24447. characterMakers.push(() => makeCharacter(
  24448. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24449. {
  24450. front: {
  24451. height: math.unit(1.67, "meters"),
  24452. weight: math.unit(140, "lb"),
  24453. name: "Front",
  24454. image: {
  24455. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24456. extra: 438 / 410,
  24457. bottom: 0.75 / 439
  24458. }
  24459. },
  24460. },
  24461. [
  24462. {
  24463. name: "Shrunken",
  24464. height: math.unit(7.6, "cm")
  24465. },
  24466. {
  24467. name: "Human Scale",
  24468. height: math.unit(1.67, "meters")
  24469. },
  24470. {
  24471. name: "Wolxi Scale",
  24472. height: math.unit(36.7, "meters"),
  24473. default: true
  24474. },
  24475. ]
  24476. ))
  24477. characterMakers.push(() => makeCharacter(
  24478. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24479. {
  24480. front: {
  24481. height: math.unit(1.73, "meters"),
  24482. weight: math.unit(240, "lb"),
  24483. name: "Front",
  24484. image: {
  24485. source: "./media/characters/izue-two-mothers/front.svg",
  24486. extra: 469 / 437,
  24487. bottom: 1.24 / 470.6
  24488. }
  24489. },
  24490. },
  24491. [
  24492. {
  24493. name: "Shrunken",
  24494. height: math.unit(7.86, "cm")
  24495. },
  24496. {
  24497. name: "Human Scale",
  24498. height: math.unit(1.73, "meters")
  24499. },
  24500. {
  24501. name: "Wolxi Scale",
  24502. height: math.unit(38, "meters"),
  24503. default: true
  24504. },
  24505. ]
  24506. ))
  24507. characterMakers.push(() => makeCharacter(
  24508. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24509. {
  24510. front: {
  24511. height: math.unit(1.55, "meters"),
  24512. weight: math.unit(120, "lb"),
  24513. name: "Front",
  24514. image: {
  24515. source: "./media/characters/teeku-love-shack/front.svg",
  24516. extra: 387 / 362,
  24517. bottom: 1.51 / 388
  24518. }
  24519. },
  24520. },
  24521. [
  24522. {
  24523. name: "Shrunken",
  24524. height: math.unit(7, "cm")
  24525. },
  24526. {
  24527. name: "Human Scale",
  24528. height: math.unit(1.55, "meters")
  24529. },
  24530. {
  24531. name: "Wolxi Scale",
  24532. height: math.unit(34.1, "meters"),
  24533. default: true
  24534. },
  24535. ]
  24536. ))
  24537. characterMakers.push(() => makeCharacter(
  24538. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24539. {
  24540. front: {
  24541. height: math.unit(1.83, "meters"),
  24542. weight: math.unit(135, "lb"),
  24543. name: "Front",
  24544. image: {
  24545. source: "./media/characters/dejma-the-red/front.svg",
  24546. extra: 480 / 458,
  24547. bottom: 1.8 / 482
  24548. }
  24549. },
  24550. },
  24551. [
  24552. {
  24553. name: "Shrunken",
  24554. height: math.unit(8.3, "cm")
  24555. },
  24556. {
  24557. name: "Human Scale",
  24558. height: math.unit(1.83, "meters")
  24559. },
  24560. {
  24561. name: "Wolxi Scale",
  24562. height: math.unit(40, "meters"),
  24563. default: true
  24564. },
  24565. ]
  24566. ))
  24567. characterMakers.push(() => makeCharacter(
  24568. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24569. {
  24570. front: {
  24571. height: math.unit(1.78, "meters"),
  24572. weight: math.unit(65, "kg"),
  24573. name: "Front",
  24574. image: {
  24575. source: "./media/characters/aki/front.svg",
  24576. extra: 452 / 415
  24577. }
  24578. },
  24579. frontNsfw: {
  24580. height: math.unit(1.78, "meters"),
  24581. weight: math.unit(65, "kg"),
  24582. name: "Front (NSFW)",
  24583. image: {
  24584. source: "./media/characters/aki/front-nsfw.svg",
  24585. extra: 452 / 415
  24586. }
  24587. },
  24588. back: {
  24589. height: math.unit(1.78, "meters"),
  24590. weight: math.unit(65, "kg"),
  24591. name: "Back",
  24592. image: {
  24593. source: "./media/characters/aki/back.svg",
  24594. extra: 452 / 415
  24595. }
  24596. },
  24597. rump: {
  24598. height: math.unit(2.05, "feet"),
  24599. name: "Rump",
  24600. image: {
  24601. source: "./media/characters/aki/rump.svg"
  24602. }
  24603. },
  24604. dick: {
  24605. height: math.unit(0.95, "feet"),
  24606. name: "Dick",
  24607. image: {
  24608. source: "./media/characters/aki/dick.svg"
  24609. }
  24610. },
  24611. },
  24612. [
  24613. {
  24614. name: "Micro",
  24615. height: math.unit(15, "cm")
  24616. },
  24617. {
  24618. name: "Normal",
  24619. height: math.unit(178, "cm"),
  24620. default: true
  24621. },
  24622. {
  24623. name: "Macro",
  24624. height: math.unit(214, "m")
  24625. },
  24626. {
  24627. name: "Macro+",
  24628. height: math.unit(534, "m")
  24629. },
  24630. ]
  24631. ))
  24632. characterMakers.push(() => makeCharacter(
  24633. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24634. {
  24635. front: {
  24636. height: math.unit(5 + 5 / 12, "feet"),
  24637. weight: math.unit(120, "lb"),
  24638. name: "Front",
  24639. image: {
  24640. source: "./media/characters/ari/front.svg",
  24641. extra: 714.5 / 682,
  24642. bottom: 8 / 722.5
  24643. }
  24644. },
  24645. },
  24646. [
  24647. {
  24648. name: "Normal",
  24649. height: math.unit(5 + 5 / 12, "feet")
  24650. },
  24651. {
  24652. name: "Macro",
  24653. height: math.unit(100, "feet"),
  24654. default: true
  24655. },
  24656. {
  24657. name: "Megamacro",
  24658. height: math.unit(100, "miles")
  24659. },
  24660. {
  24661. name: "Gigamacro",
  24662. height: math.unit(80000, "miles")
  24663. },
  24664. ]
  24665. ))
  24666. characterMakers.push(() => makeCharacter(
  24667. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24668. {
  24669. side: {
  24670. height: math.unit(9, "feet"),
  24671. weight: math.unit(400, "kg"),
  24672. name: "Side",
  24673. image: {
  24674. source: "./media/characters/bolt/side.svg",
  24675. extra: 1126 / 896,
  24676. bottom: 60 / 1187.3,
  24677. }
  24678. },
  24679. },
  24680. [
  24681. {
  24682. name: "Micro",
  24683. height: math.unit(5, "inches")
  24684. },
  24685. {
  24686. name: "Normal",
  24687. height: math.unit(9, "feet"),
  24688. default: true
  24689. },
  24690. {
  24691. name: "Macro",
  24692. height: math.unit(700, "feet")
  24693. },
  24694. {
  24695. name: "Max Size",
  24696. height: math.unit(1.52e22, "yottameters")
  24697. },
  24698. ]
  24699. ))
  24700. characterMakers.push(() => makeCharacter(
  24701. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24702. {
  24703. front: {
  24704. height: math.unit(4.53, "meters"),
  24705. weight: math.unit(3, "tons"),
  24706. name: "Front",
  24707. image: {
  24708. source: "./media/characters/draekon-sylviar/front.svg",
  24709. extra: 1228 / 1068,
  24710. bottom: 41 / 1270
  24711. }
  24712. },
  24713. tail: {
  24714. height: math.unit(1.772, "meter"),
  24715. name: "Tail",
  24716. image: {
  24717. source: "./media/characters/draekon-sylviar/tail.svg"
  24718. }
  24719. },
  24720. head: {
  24721. height: math.unit(1.331, "meter"),
  24722. name: "Head",
  24723. image: {
  24724. source: "./media/characters/draekon-sylviar/head.svg"
  24725. }
  24726. },
  24727. hand: {
  24728. height: math.unit(0.564, "meter"),
  24729. name: "Hand",
  24730. image: {
  24731. source: "./media/characters/draekon-sylviar/hand.svg"
  24732. }
  24733. },
  24734. foot: {
  24735. height: math.unit(0.621, "meter"),
  24736. name: "Foot",
  24737. image: {
  24738. source: "./media/characters/draekon-sylviar/foot.svg",
  24739. bottom: 32 / 324
  24740. }
  24741. },
  24742. dick: {
  24743. height: math.unit(61, "cm"),
  24744. name: "Dick",
  24745. image: {
  24746. source: "./media/characters/draekon-sylviar/dick.svg"
  24747. }
  24748. },
  24749. dickseparated: {
  24750. height: math.unit(61, "cm"),
  24751. name: "Dick-separated",
  24752. image: {
  24753. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24754. }
  24755. },
  24756. },
  24757. [
  24758. {
  24759. name: "Small",
  24760. height: math.unit(4.53 / 2, "meters"),
  24761. default: true
  24762. },
  24763. {
  24764. name: "Normal",
  24765. height: math.unit(4.53, "meters"),
  24766. default: true
  24767. },
  24768. {
  24769. name: "Large",
  24770. height: math.unit(4.53 * 2, "meters"),
  24771. },
  24772. ]
  24773. ))
  24774. characterMakers.push(() => makeCharacter(
  24775. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24776. {
  24777. front: {
  24778. height: math.unit(6 + 2 / 12, "feet"),
  24779. weight: math.unit(180, "lb"),
  24780. name: "Front",
  24781. image: {
  24782. source: "./media/characters/brawler/front.svg",
  24783. extra: 3301 / 3027,
  24784. bottom: 138 / 3439
  24785. }
  24786. },
  24787. },
  24788. [
  24789. {
  24790. name: "Normal",
  24791. height: math.unit(6 + 2 / 12, "feet"),
  24792. default: true
  24793. },
  24794. ]
  24795. ))
  24796. characterMakers.push(() => makeCharacter(
  24797. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24798. {
  24799. front: {
  24800. height: math.unit(11, "feet"),
  24801. weight: math.unit(1000, "lb"),
  24802. name: "Front",
  24803. image: {
  24804. source: "./media/characters/alex/front.svg",
  24805. bottom: 44.5 / 620
  24806. }
  24807. },
  24808. },
  24809. [
  24810. {
  24811. name: "Micro",
  24812. height: math.unit(5, "inches")
  24813. },
  24814. {
  24815. name: "Normal",
  24816. height: math.unit(11, "feet"),
  24817. default: true
  24818. },
  24819. {
  24820. name: "Macro",
  24821. height: math.unit(9.5e9, "feet")
  24822. },
  24823. {
  24824. name: "Max Size",
  24825. height: math.unit(1.4e283, "yottameters")
  24826. },
  24827. ]
  24828. ))
  24829. characterMakers.push(() => makeCharacter(
  24830. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24831. {
  24832. female: {
  24833. height: math.unit(29.9, "m"),
  24834. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24835. name: "Female",
  24836. image: {
  24837. source: "./media/characters/zenari/female.svg",
  24838. extra: 3281.6 / 3217,
  24839. bottom: 72.2 / 3353
  24840. }
  24841. },
  24842. male: {
  24843. height: math.unit(27.7, "m"),
  24844. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24845. name: "Male",
  24846. image: {
  24847. source: "./media/characters/zenari/male.svg",
  24848. extra: 3008 / 2991,
  24849. bottom: 54.6 / 3069
  24850. }
  24851. },
  24852. },
  24853. [
  24854. {
  24855. name: "Macro",
  24856. height: math.unit(29.7, "meters"),
  24857. default: true
  24858. },
  24859. ]
  24860. ))
  24861. characterMakers.push(() => makeCharacter(
  24862. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24863. {
  24864. female: {
  24865. height: math.unit(23.8, "m"),
  24866. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24867. name: "Female",
  24868. image: {
  24869. source: "./media/characters/mactarian/female.svg",
  24870. extra: 2662 / 2569,
  24871. bottom: 73 / 2736
  24872. }
  24873. },
  24874. male: {
  24875. height: math.unit(23.8, "m"),
  24876. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24877. name: "Male",
  24878. image: {
  24879. source: "./media/characters/mactarian/male.svg",
  24880. extra: 2673 / 2600,
  24881. bottom: 76 / 2750
  24882. }
  24883. },
  24884. },
  24885. [
  24886. {
  24887. name: "Macro",
  24888. height: math.unit(23.8, "meters"),
  24889. default: true
  24890. },
  24891. ]
  24892. ))
  24893. characterMakers.push(() => makeCharacter(
  24894. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24895. {
  24896. female: {
  24897. height: math.unit(19.3, "m"),
  24898. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24899. name: "Female",
  24900. image: {
  24901. source: "./media/characters/umok/female.svg",
  24902. extra: 2186 / 2078,
  24903. bottom: 87 / 2277
  24904. }
  24905. },
  24906. male: {
  24907. height: math.unit(19.5, "m"),
  24908. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24909. name: "Male",
  24910. image: {
  24911. source: "./media/characters/umok/male.svg",
  24912. extra: 2233 / 2140,
  24913. bottom: 24.4 / 2258
  24914. }
  24915. },
  24916. },
  24917. [
  24918. {
  24919. name: "Macro",
  24920. height: math.unit(19.3, "meters"),
  24921. default: true
  24922. },
  24923. ]
  24924. ))
  24925. characterMakers.push(() => makeCharacter(
  24926. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24927. {
  24928. female: {
  24929. height: math.unit(26.15, "m"),
  24930. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24931. name: "Female",
  24932. image: {
  24933. source: "./media/characters/joraxian/female.svg",
  24934. extra: 2912 / 2824,
  24935. bottom: 36 / 2956
  24936. }
  24937. },
  24938. male: {
  24939. height: math.unit(25.4, "m"),
  24940. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24941. name: "Male",
  24942. image: {
  24943. source: "./media/characters/joraxian/male.svg",
  24944. extra: 2877 / 2721,
  24945. bottom: 82 / 2967
  24946. }
  24947. },
  24948. },
  24949. [
  24950. {
  24951. name: "Macro",
  24952. height: math.unit(26.15, "meters"),
  24953. default: true
  24954. },
  24955. ]
  24956. ))
  24957. characterMakers.push(() => makeCharacter(
  24958. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24959. {
  24960. female: {
  24961. height: math.unit(21.6, "m"),
  24962. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24963. name: "Female",
  24964. image: {
  24965. source: "./media/characters/sthara/female.svg",
  24966. extra: 2516 / 2347,
  24967. bottom: 21.5 / 2537
  24968. }
  24969. },
  24970. male: {
  24971. height: math.unit(24, "m"),
  24972. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24973. name: "Male",
  24974. image: {
  24975. source: "./media/characters/sthara/male.svg",
  24976. extra: 2732 / 2607,
  24977. bottom: 23 / 2732
  24978. }
  24979. },
  24980. },
  24981. [
  24982. {
  24983. name: "Macro",
  24984. height: math.unit(21.6, "meters"),
  24985. default: true
  24986. },
  24987. ]
  24988. ))
  24989. characterMakers.push(() => makeCharacter(
  24990. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24991. {
  24992. front: {
  24993. height: math.unit(6 + 4 / 12, "feet"),
  24994. weight: math.unit(175, "lb"),
  24995. name: "Front",
  24996. image: {
  24997. source: "./media/characters/luka-bryzant/front.svg",
  24998. extra: 311 / 289,
  24999. bottom: 4 / 315
  25000. }
  25001. },
  25002. back: {
  25003. height: math.unit(6 + 4 / 12, "feet"),
  25004. weight: math.unit(175, "lb"),
  25005. name: "Back",
  25006. image: {
  25007. source: "./media/characters/luka-bryzant/back.svg",
  25008. extra: 311 / 289,
  25009. bottom: 3.8 / 313.7
  25010. }
  25011. },
  25012. },
  25013. [
  25014. {
  25015. name: "Micro",
  25016. height: math.unit(10, "inches")
  25017. },
  25018. {
  25019. name: "Normal",
  25020. height: math.unit(6 + 4 / 12, "feet"),
  25021. default: true
  25022. },
  25023. {
  25024. name: "Large",
  25025. height: math.unit(12, "feet")
  25026. },
  25027. ]
  25028. ))
  25029. characterMakers.push(() => makeCharacter(
  25030. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25031. {
  25032. front: {
  25033. height: math.unit(5 + 7 / 12, "feet"),
  25034. weight: math.unit(185, "lb"),
  25035. name: "Front",
  25036. image: {
  25037. source: "./media/characters/aman-aquila/front.svg",
  25038. extra: 1013 / 976,
  25039. bottom: 45.6 / 1057
  25040. }
  25041. },
  25042. side: {
  25043. height: math.unit(5 + 7 / 12, "feet"),
  25044. weight: math.unit(185, "lb"),
  25045. name: "Side",
  25046. image: {
  25047. source: "./media/characters/aman-aquila/side.svg",
  25048. extra: 1054 / 1011,
  25049. bottom: 15 / 1070
  25050. }
  25051. },
  25052. back: {
  25053. height: math.unit(5 + 7 / 12, "feet"),
  25054. weight: math.unit(185, "lb"),
  25055. name: "Back",
  25056. image: {
  25057. source: "./media/characters/aman-aquila/back.svg",
  25058. extra: 1026 / 970,
  25059. bottom: 12 / 1039
  25060. }
  25061. },
  25062. head: {
  25063. height: math.unit(1.211, "feet"),
  25064. name: "Head",
  25065. image: {
  25066. source: "./media/characters/aman-aquila/head.svg",
  25067. }
  25068. },
  25069. },
  25070. [
  25071. {
  25072. name: "Minimicro",
  25073. height: math.unit(0.057, "inches")
  25074. },
  25075. {
  25076. name: "Micro",
  25077. height: math.unit(7, "inches")
  25078. },
  25079. {
  25080. name: "Mini",
  25081. height: math.unit(3 + 7 / 12, "feet")
  25082. },
  25083. {
  25084. name: "Normal",
  25085. height: math.unit(5 + 7 / 12, "feet"),
  25086. default: true
  25087. },
  25088. {
  25089. name: "Macro",
  25090. height: math.unit(157 + 7 / 12, "feet")
  25091. },
  25092. {
  25093. name: "Megamacro",
  25094. height: math.unit(1557 + 7 / 12, "feet")
  25095. },
  25096. {
  25097. name: "Gigamacro",
  25098. height: math.unit(15557 + 7 / 12, "feet")
  25099. },
  25100. ]
  25101. ))
  25102. characterMakers.push(() => makeCharacter(
  25103. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25104. {
  25105. front: {
  25106. height: math.unit(3 + 2 / 12, "inches"),
  25107. weight: math.unit(0.3, "ounces"),
  25108. name: "Front",
  25109. image: {
  25110. source: "./media/characters/hiphae/front.svg",
  25111. extra: 1931 / 1683,
  25112. bottom: 24 / 1955
  25113. }
  25114. },
  25115. },
  25116. [
  25117. {
  25118. name: "Normal",
  25119. height: math.unit(3 + 1 / 2, "inches"),
  25120. default: true
  25121. },
  25122. ]
  25123. ))
  25124. characterMakers.push(() => makeCharacter(
  25125. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25126. {
  25127. front: {
  25128. height: math.unit(5 + 10 / 12, "feet"),
  25129. weight: math.unit(165, "lb"),
  25130. name: "Front",
  25131. image: {
  25132. source: "./media/characters/nicky/front.svg",
  25133. extra: 3144 / 2886,
  25134. bottom: 45.6 / 3192
  25135. }
  25136. },
  25137. back: {
  25138. height: math.unit(5 + 10 / 12, "feet"),
  25139. weight: math.unit(165, "lb"),
  25140. name: "Back",
  25141. image: {
  25142. source: "./media/characters/nicky/back.svg",
  25143. extra: 3055 / 2804,
  25144. bottom: 28.4 / 3087
  25145. }
  25146. },
  25147. frontclothed: {
  25148. height: math.unit(5 + 10 / 12, "feet"),
  25149. weight: math.unit(165, "lb"),
  25150. name: "Front-clothed",
  25151. image: {
  25152. source: "./media/characters/nicky/front-clothed.svg",
  25153. extra: 3184.9 / 2926.9,
  25154. bottom: 86.5 / 3239.9
  25155. }
  25156. },
  25157. foot: {
  25158. height: math.unit(1.16, "feet"),
  25159. name: "Foot",
  25160. image: {
  25161. source: "./media/characters/nicky/foot.svg"
  25162. }
  25163. },
  25164. feet: {
  25165. height: math.unit(1.34, "feet"),
  25166. name: "Feet",
  25167. image: {
  25168. source: "./media/characters/nicky/feet.svg"
  25169. }
  25170. },
  25171. maw: {
  25172. height: math.unit(0.9, "feet"),
  25173. name: "Maw",
  25174. image: {
  25175. source: "./media/characters/nicky/maw.svg"
  25176. }
  25177. },
  25178. },
  25179. [
  25180. {
  25181. name: "Normal",
  25182. height: math.unit(5 + 10 / 12, "feet"),
  25183. default: true
  25184. },
  25185. {
  25186. name: "Macro",
  25187. height: math.unit(60, "feet")
  25188. },
  25189. {
  25190. name: "Megamacro",
  25191. height: math.unit(1, "mile")
  25192. },
  25193. ]
  25194. ))
  25195. characterMakers.push(() => makeCharacter(
  25196. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25197. {
  25198. side: {
  25199. height: math.unit(10, "feet"),
  25200. weight: math.unit(600, "lb"),
  25201. name: "Side",
  25202. image: {
  25203. source: "./media/characters/blair/side.svg",
  25204. bottom: 16.6 / 475,
  25205. extra: 458 / 431
  25206. }
  25207. },
  25208. },
  25209. [
  25210. {
  25211. name: "Micro",
  25212. height: math.unit(8, "inches")
  25213. },
  25214. {
  25215. name: "Normal",
  25216. height: math.unit(10, "feet"),
  25217. default: true
  25218. },
  25219. {
  25220. name: "Macro",
  25221. height: math.unit(180, "feet")
  25222. },
  25223. ]
  25224. ))
  25225. characterMakers.push(() => makeCharacter(
  25226. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25227. {
  25228. front: {
  25229. height: math.unit(5 + 4 / 12, "feet"),
  25230. weight: math.unit(125, "lb"),
  25231. name: "Front",
  25232. image: {
  25233. source: "./media/characters/fisher/front.svg",
  25234. extra: 444 / 390,
  25235. bottom: 2 / 444.8
  25236. }
  25237. },
  25238. },
  25239. [
  25240. {
  25241. name: "Micro",
  25242. height: math.unit(4, "inches")
  25243. },
  25244. {
  25245. name: "Normal",
  25246. height: math.unit(5 + 4 / 12, "feet"),
  25247. default: true
  25248. },
  25249. {
  25250. name: "Macro",
  25251. height: math.unit(100, "feet")
  25252. },
  25253. ]
  25254. ))
  25255. characterMakers.push(() => makeCharacter(
  25256. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25257. {
  25258. front: {
  25259. height: math.unit(6.71, "feet"),
  25260. weight: math.unit(200, "lb"),
  25261. capacity: math.unit(1000000, "people"),
  25262. name: "Front",
  25263. image: {
  25264. source: "./media/characters/gliss/front.svg",
  25265. extra: 2347 / 2231,
  25266. bottom: 113 / 2462
  25267. }
  25268. },
  25269. hammerspaceSize: {
  25270. height: math.unit(6.71 * 717, "feet"),
  25271. weight: math.unit(200, "lb"),
  25272. capacity: math.unit(1000000, "people"),
  25273. name: "Hammerspace Size",
  25274. image: {
  25275. source: "./media/characters/gliss/front.svg",
  25276. extra: 2347 / 2231,
  25277. bottom: 113 / 2462
  25278. }
  25279. },
  25280. },
  25281. [
  25282. {
  25283. name: "Normal",
  25284. height: math.unit(6.71, "feet"),
  25285. default: true
  25286. },
  25287. ]
  25288. ))
  25289. characterMakers.push(() => makeCharacter(
  25290. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25291. {
  25292. side: {
  25293. height: math.unit(1.44, "m"),
  25294. weight: math.unit(80, "kg"),
  25295. name: "Side",
  25296. image: {
  25297. source: "./media/characters/dune-anderson/side.svg",
  25298. bottom: 49 / 1426
  25299. }
  25300. },
  25301. },
  25302. [
  25303. {
  25304. name: "Wolf-sized",
  25305. height: math.unit(1.44, "meters")
  25306. },
  25307. {
  25308. name: "Normal",
  25309. height: math.unit(5.05, "meters"),
  25310. default: true
  25311. },
  25312. {
  25313. name: "Big",
  25314. height: math.unit(14.4, "meters")
  25315. },
  25316. {
  25317. name: "Huge",
  25318. height: math.unit(144, "meters")
  25319. },
  25320. ]
  25321. ))
  25322. characterMakers.push(() => makeCharacter(
  25323. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25324. {
  25325. front: {
  25326. height: math.unit(7, "feet"),
  25327. weight: math.unit(425, "lb"),
  25328. name: "Front",
  25329. image: {
  25330. source: "./media/characters/hind/front.svg",
  25331. extra: 2091 / 1860,
  25332. bottom: 129 / 2220
  25333. }
  25334. },
  25335. back: {
  25336. height: math.unit(7, "feet"),
  25337. weight: math.unit(425, "lb"),
  25338. name: "Back",
  25339. image: {
  25340. source: "./media/characters/hind/back.svg",
  25341. extra: 2091 / 1860,
  25342. bottom: 24.6 / 2309
  25343. }
  25344. },
  25345. tail: {
  25346. height: math.unit(2.8, "feet"),
  25347. name: "Tail",
  25348. image: {
  25349. source: "./media/characters/hind/tail.svg"
  25350. }
  25351. },
  25352. head: {
  25353. height: math.unit(2.55, "feet"),
  25354. name: "Head",
  25355. image: {
  25356. source: "./media/characters/hind/head.svg"
  25357. }
  25358. },
  25359. },
  25360. [
  25361. {
  25362. name: "XS",
  25363. height: math.unit(0.7, "feet")
  25364. },
  25365. {
  25366. name: "Normal",
  25367. height: math.unit(7, "feet"),
  25368. default: true
  25369. },
  25370. {
  25371. name: "XL",
  25372. height: math.unit(70, "feet")
  25373. },
  25374. ]
  25375. ))
  25376. characterMakers.push(() => makeCharacter(
  25377. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25378. {
  25379. front: {
  25380. height: math.unit(2.1, "meters"),
  25381. weight: math.unit(150, "lb"),
  25382. name: "Front",
  25383. image: {
  25384. source: "./media/characters/tharquench-sizestealer/front.svg",
  25385. extra: 1605/1470,
  25386. bottom: 36/1641
  25387. }
  25388. },
  25389. frontAlt: {
  25390. height: math.unit(2.1, "meters"),
  25391. weight: math.unit(150, "lb"),
  25392. name: "Front (Alt)",
  25393. image: {
  25394. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25395. extra: 2318 / 2063,
  25396. bottom: 93.4 / 2410
  25397. }
  25398. },
  25399. },
  25400. [
  25401. {
  25402. name: "Nano",
  25403. height: math.unit(1, "mm")
  25404. },
  25405. {
  25406. name: "Micro",
  25407. height: math.unit(1, "cm")
  25408. },
  25409. {
  25410. name: "Normal",
  25411. height: math.unit(2.1, "meters"),
  25412. default: true
  25413. },
  25414. ]
  25415. ))
  25416. characterMakers.push(() => makeCharacter(
  25417. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25418. {
  25419. front: {
  25420. height: math.unit(7 + 5 / 12, "feet"),
  25421. weight: math.unit(357, "lb"),
  25422. name: "Front",
  25423. image: {
  25424. source: "./media/characters/solex-draconov/front.svg",
  25425. extra: 1993 / 1865,
  25426. bottom: 117 / 2111
  25427. }
  25428. },
  25429. },
  25430. [
  25431. {
  25432. name: "Natural Height",
  25433. height: math.unit(7 + 5 / 12, "feet"),
  25434. default: true
  25435. },
  25436. {
  25437. name: "Macro",
  25438. height: math.unit(350, "feet")
  25439. },
  25440. {
  25441. name: "Macro+",
  25442. height: math.unit(1000, "feet")
  25443. },
  25444. {
  25445. name: "Megamacro",
  25446. height: math.unit(20, "km")
  25447. },
  25448. {
  25449. name: "Megamacro+",
  25450. height: math.unit(1000, "km")
  25451. },
  25452. {
  25453. name: "Gigamacro",
  25454. height: math.unit(2.5, "Gm")
  25455. },
  25456. {
  25457. name: "Teramacro",
  25458. height: math.unit(15, "Tm")
  25459. },
  25460. {
  25461. name: "Galactic",
  25462. height: math.unit(30, "Zm")
  25463. },
  25464. {
  25465. name: "Universal",
  25466. height: math.unit(21000, "Ym")
  25467. },
  25468. {
  25469. name: "Omniversal",
  25470. height: math.unit(9.861e50, "Ym")
  25471. },
  25472. {
  25473. name: "Existential",
  25474. height: math.unit(1e300, "meters")
  25475. },
  25476. ]
  25477. ))
  25478. characterMakers.push(() => makeCharacter(
  25479. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25480. {
  25481. side: {
  25482. height: math.unit(25, "feet"),
  25483. weight: math.unit(90000, "lb"),
  25484. name: "Side",
  25485. image: {
  25486. source: "./media/characters/mandarax/side.svg",
  25487. extra: 614 / 332,
  25488. bottom: 55 / 630
  25489. }
  25490. },
  25491. head: {
  25492. height: math.unit(11.4, "feet"),
  25493. name: "Head",
  25494. image: {
  25495. source: "./media/characters/mandarax/head.svg"
  25496. }
  25497. },
  25498. belly: {
  25499. height: math.unit(33, "feet"),
  25500. name: "Belly",
  25501. capacity: math.unit(500, "people"),
  25502. image: {
  25503. source: "./media/characters/mandarax/belly.svg"
  25504. }
  25505. },
  25506. dick: {
  25507. height: math.unit(8.46, "feet"),
  25508. name: "Dick",
  25509. image: {
  25510. source: "./media/characters/mandarax/dick.svg"
  25511. }
  25512. },
  25513. top: {
  25514. height: math.unit(28, "meters"),
  25515. name: "Top",
  25516. image: {
  25517. source: "./media/characters/mandarax/top.svg"
  25518. }
  25519. },
  25520. },
  25521. [
  25522. {
  25523. name: "Normal",
  25524. height: math.unit(25, "feet"),
  25525. default: true
  25526. },
  25527. ]
  25528. ))
  25529. characterMakers.push(() => makeCharacter(
  25530. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25531. {
  25532. front: {
  25533. height: math.unit(5, "feet"),
  25534. weight: math.unit(90, "lb"),
  25535. name: "Front",
  25536. image: {
  25537. source: "./media/characters/pixil/front.svg",
  25538. extra: 2000 / 1618,
  25539. bottom: 12.3 / 2011
  25540. }
  25541. },
  25542. },
  25543. [
  25544. {
  25545. name: "Normal",
  25546. height: math.unit(5, "feet"),
  25547. default: true
  25548. },
  25549. {
  25550. name: "Megamacro",
  25551. height: math.unit(10, "miles"),
  25552. },
  25553. ]
  25554. ))
  25555. characterMakers.push(() => makeCharacter(
  25556. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25557. {
  25558. front: {
  25559. height: math.unit(7 + 2 / 12, "feet"),
  25560. weight: math.unit(200, "lb"),
  25561. name: "Front",
  25562. image: {
  25563. source: "./media/characters/angel/front.svg",
  25564. extra: 1830 / 1737,
  25565. bottom: 22.6 / 1854,
  25566. }
  25567. },
  25568. },
  25569. [
  25570. {
  25571. name: "Normal",
  25572. height: math.unit(7 + 2 / 12, "feet"),
  25573. default: true
  25574. },
  25575. {
  25576. name: "Macro",
  25577. height: math.unit(1000, "feet")
  25578. },
  25579. {
  25580. name: "Megamacro",
  25581. height: math.unit(2, "miles")
  25582. },
  25583. {
  25584. name: "Gigamacro",
  25585. height: math.unit(20, "earths")
  25586. },
  25587. ]
  25588. ))
  25589. characterMakers.push(() => makeCharacter(
  25590. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25591. {
  25592. front: {
  25593. height: math.unit(5, "feet"),
  25594. weight: math.unit(180, "lb"),
  25595. name: "Front",
  25596. image: {
  25597. source: "./media/characters/mekana/front.svg",
  25598. extra: 1671 / 1605,
  25599. bottom: 3.5 / 1691
  25600. }
  25601. },
  25602. side: {
  25603. height: math.unit(5, "feet"),
  25604. weight: math.unit(180, "lb"),
  25605. name: "Side",
  25606. image: {
  25607. source: "./media/characters/mekana/side.svg",
  25608. extra: 1671 / 1605,
  25609. bottom: 3.5 / 1691
  25610. }
  25611. },
  25612. back: {
  25613. height: math.unit(5, "feet"),
  25614. weight: math.unit(180, "lb"),
  25615. name: "Back",
  25616. image: {
  25617. source: "./media/characters/mekana/back.svg",
  25618. extra: 1671 / 1605,
  25619. bottom: 3.5 / 1691
  25620. }
  25621. },
  25622. },
  25623. [
  25624. {
  25625. name: "Normal",
  25626. height: math.unit(5, "feet"),
  25627. default: true
  25628. },
  25629. ]
  25630. ))
  25631. characterMakers.push(() => makeCharacter(
  25632. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25633. {
  25634. front: {
  25635. height: math.unit(4 + 6 / 12, "feet"),
  25636. weight: math.unit(80, "lb"),
  25637. name: "Front",
  25638. image: {
  25639. source: "./media/characters/pixie/front.svg",
  25640. extra: 1924 / 1825,
  25641. bottom: 22.4 / 1946
  25642. }
  25643. },
  25644. },
  25645. [
  25646. {
  25647. name: "Normal",
  25648. height: math.unit(4 + 6 / 12, "feet"),
  25649. default: true
  25650. },
  25651. {
  25652. name: "Macro",
  25653. height: math.unit(40, "feet")
  25654. },
  25655. ]
  25656. ))
  25657. characterMakers.push(() => makeCharacter(
  25658. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25659. {
  25660. front: {
  25661. height: math.unit(2.1, "meters"),
  25662. weight: math.unit(200, "lb"),
  25663. name: "Front",
  25664. image: {
  25665. source: "./media/characters/the-lascivious/front.svg",
  25666. extra: 1 / 0.893,
  25667. bottom: 3.5 / 573.7
  25668. }
  25669. },
  25670. },
  25671. [
  25672. {
  25673. name: "Human Scale",
  25674. height: math.unit(2.1, "meters")
  25675. },
  25676. {
  25677. name: "Wolxi Scale",
  25678. height: math.unit(46.2, "m"),
  25679. default: true
  25680. },
  25681. {
  25682. name: "Boinker of Buildings",
  25683. height: math.unit(10, "km")
  25684. },
  25685. {
  25686. name: "Shagger of Skyscrapers",
  25687. height: math.unit(40, "km")
  25688. },
  25689. {
  25690. name: "Banger of Boroughs",
  25691. height: math.unit(4000, "km")
  25692. },
  25693. {
  25694. name: "Screwer of States",
  25695. height: math.unit(100000, "km")
  25696. },
  25697. {
  25698. name: "Pounder of Planets",
  25699. height: math.unit(2000000, "km")
  25700. },
  25701. ]
  25702. ))
  25703. characterMakers.push(() => makeCharacter(
  25704. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25705. {
  25706. front: {
  25707. height: math.unit(6, "feet"),
  25708. weight: math.unit(150, "lb"),
  25709. name: "Front",
  25710. image: {
  25711. source: "./media/characters/aj/front.svg",
  25712. extra: 2039 / 1562,
  25713. bottom: 40 / 2079
  25714. }
  25715. },
  25716. },
  25717. [
  25718. {
  25719. name: "Normal",
  25720. height: math.unit(11 + 6 / 12, "feet"),
  25721. default: true
  25722. },
  25723. {
  25724. name: "Megamacro",
  25725. height: math.unit(60, "megameters")
  25726. },
  25727. ]
  25728. ))
  25729. characterMakers.push(() => makeCharacter(
  25730. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25731. {
  25732. side: {
  25733. height: math.unit(31 + 8 / 12, "feet"),
  25734. weight: math.unit(75000, "kg"),
  25735. name: "Side",
  25736. image: {
  25737. source: "./media/characters/koros/side.svg",
  25738. extra: 1442 / 1297,
  25739. bottom: 122.7 / 1562
  25740. }
  25741. },
  25742. dicksKingsCrown: {
  25743. height: math.unit(6, "feet"),
  25744. name: "Dicks (King's Crown)",
  25745. image: {
  25746. source: "./media/characters/koros/dicks-kings-crown.svg"
  25747. }
  25748. },
  25749. dicksTailSet: {
  25750. height: math.unit(3, "feet"),
  25751. name: "Dicks (Tail Set)",
  25752. image: {
  25753. source: "./media/characters/koros/dicks-tail-set.svg"
  25754. }
  25755. },
  25756. dickCumming: {
  25757. height: math.unit(7.98, "feet"),
  25758. name: "Dick (Cumming)",
  25759. image: {
  25760. source: "./media/characters/koros/dick-cumming.svg"
  25761. }
  25762. },
  25763. dicksBack: {
  25764. height: math.unit(5.9, "feet"),
  25765. name: "Dicks (Back)",
  25766. image: {
  25767. source: "./media/characters/koros/dicks-back.svg"
  25768. }
  25769. },
  25770. dicksFront: {
  25771. height: math.unit(3.72, "feet"),
  25772. name: "Dicks (Front)",
  25773. image: {
  25774. source: "./media/characters/koros/dicks-front.svg"
  25775. }
  25776. },
  25777. dicksPeeking: {
  25778. height: math.unit(3.0, "feet"),
  25779. name: "Dicks (Peeking)",
  25780. image: {
  25781. source: "./media/characters/koros/dicks-peeking.svg"
  25782. }
  25783. },
  25784. eye: {
  25785. height: math.unit(1.7, "feet"),
  25786. name: "Eye",
  25787. image: {
  25788. source: "./media/characters/koros/eye.svg"
  25789. }
  25790. },
  25791. headFront: {
  25792. height: math.unit(11.69, "feet"),
  25793. name: "Head (Front)",
  25794. image: {
  25795. source: "./media/characters/koros/head-front.svg"
  25796. }
  25797. },
  25798. headSide: {
  25799. height: math.unit(14, "feet"),
  25800. name: "Head (Side)",
  25801. image: {
  25802. source: "./media/characters/koros/head-side.svg"
  25803. }
  25804. },
  25805. leg: {
  25806. height: math.unit(17, "feet"),
  25807. name: "Leg",
  25808. image: {
  25809. source: "./media/characters/koros/leg.svg"
  25810. }
  25811. },
  25812. mawSide: {
  25813. height: math.unit(12.8, "feet"),
  25814. name: "Maw (Side)",
  25815. image: {
  25816. source: "./media/characters/koros/maw-side.svg"
  25817. }
  25818. },
  25819. mawSpitting: {
  25820. height: math.unit(17, "feet"),
  25821. name: "Maw (Spitting)",
  25822. image: {
  25823. source: "./media/characters/koros/maw-spitting.svg"
  25824. }
  25825. },
  25826. slit: {
  25827. height: math.unit(2.8, "feet"),
  25828. name: "Slit",
  25829. image: {
  25830. source: "./media/characters/koros/slit.svg"
  25831. }
  25832. },
  25833. stomach: {
  25834. height: math.unit(6.8, "feet"),
  25835. capacity: math.unit(20, "people"),
  25836. name: "Stomach",
  25837. image: {
  25838. source: "./media/characters/koros/stomach.svg"
  25839. }
  25840. },
  25841. wingspanBottom: {
  25842. height: math.unit(114, "feet"),
  25843. name: "Wingspan (Bottom)",
  25844. image: {
  25845. source: "./media/characters/koros/wingspan-bottom.svg"
  25846. }
  25847. },
  25848. wingspanTop: {
  25849. height: math.unit(104, "feet"),
  25850. name: "Wingspan (Top)",
  25851. image: {
  25852. source: "./media/characters/koros/wingspan-top.svg"
  25853. }
  25854. },
  25855. },
  25856. [
  25857. {
  25858. name: "Normal",
  25859. height: math.unit(31 + 8 / 12, "feet"),
  25860. default: true
  25861. },
  25862. ]
  25863. ))
  25864. characterMakers.push(() => makeCharacter(
  25865. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25866. {
  25867. front: {
  25868. height: math.unit(18 + 5 / 12, "feet"),
  25869. weight: math.unit(3750, "kg"),
  25870. name: "Front",
  25871. image: {
  25872. source: "./media/characters/vexx/front.svg",
  25873. extra: 426 / 396,
  25874. bottom: 31.5 / 458
  25875. }
  25876. },
  25877. maw: {
  25878. height: math.unit(6, "feet"),
  25879. name: "Maw",
  25880. image: {
  25881. source: "./media/characters/vexx/maw.svg"
  25882. }
  25883. },
  25884. },
  25885. [
  25886. {
  25887. name: "Normal",
  25888. height: math.unit(18 + 5 / 12, "feet"),
  25889. default: true
  25890. },
  25891. ]
  25892. ))
  25893. characterMakers.push(() => makeCharacter(
  25894. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25895. {
  25896. front: {
  25897. height: math.unit(17 + 6 / 12, "feet"),
  25898. weight: math.unit(150, "lb"),
  25899. name: "Front",
  25900. image: {
  25901. source: "./media/characters/baadra/front.svg",
  25902. extra: 3137 / 2890,
  25903. bottom: 168.4 / 3305
  25904. }
  25905. },
  25906. back: {
  25907. height: math.unit(17 + 6 / 12, "feet"),
  25908. weight: math.unit(150, "lb"),
  25909. name: "Back",
  25910. image: {
  25911. source: "./media/characters/baadra/back.svg",
  25912. extra: 3142 / 2890,
  25913. bottom: 220 / 3371
  25914. }
  25915. },
  25916. head: {
  25917. height: math.unit(5.45, "feet"),
  25918. name: "Head",
  25919. image: {
  25920. source: "./media/characters/baadra/head.svg"
  25921. }
  25922. },
  25923. headAngry: {
  25924. height: math.unit(4.95, "feet"),
  25925. name: "Head (Angry)",
  25926. image: {
  25927. source: "./media/characters/baadra/head-angry.svg"
  25928. }
  25929. },
  25930. headOpen: {
  25931. height: math.unit(6, "feet"),
  25932. name: "Head (Open)",
  25933. image: {
  25934. source: "./media/characters/baadra/head-open.svg"
  25935. }
  25936. },
  25937. },
  25938. [
  25939. {
  25940. name: "Normal",
  25941. height: math.unit(17 + 6 / 12, "feet"),
  25942. default: true
  25943. },
  25944. ]
  25945. ))
  25946. characterMakers.push(() => makeCharacter(
  25947. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25948. {
  25949. front: {
  25950. height: math.unit(7 + 3 / 12, "feet"),
  25951. weight: math.unit(180, "lb"),
  25952. name: "Front",
  25953. image: {
  25954. source: "./media/characters/juri/front.svg",
  25955. extra: 1401 / 1237,
  25956. bottom: 18.5 / 1418
  25957. }
  25958. },
  25959. side: {
  25960. height: math.unit(7 + 3 / 12, "feet"),
  25961. weight: math.unit(180, "lb"),
  25962. name: "Side",
  25963. image: {
  25964. source: "./media/characters/juri/side.svg",
  25965. extra: 1424 / 1242,
  25966. bottom: 18.5 / 1447
  25967. }
  25968. },
  25969. sitting: {
  25970. height: math.unit(6, "feet"),
  25971. weight: math.unit(180, "lb"),
  25972. name: "Sitting",
  25973. image: {
  25974. source: "./media/characters/juri/sitting.svg",
  25975. extra: 1270 / 1143,
  25976. bottom: 100 / 1343
  25977. }
  25978. },
  25979. back: {
  25980. height: math.unit(7 + 3 / 12, "feet"),
  25981. weight: math.unit(180, "lb"),
  25982. name: "Back",
  25983. image: {
  25984. source: "./media/characters/juri/back.svg",
  25985. extra: 1377 / 1240,
  25986. bottom: 23.7 / 1405
  25987. }
  25988. },
  25989. maw: {
  25990. height: math.unit(2.8, "feet"),
  25991. name: "Maw",
  25992. image: {
  25993. source: "./media/characters/juri/maw.svg"
  25994. }
  25995. },
  25996. stomach: {
  25997. height: math.unit(0.89, "feet"),
  25998. capacity: math.unit(4, "liters"),
  25999. name: "Stomach",
  26000. image: {
  26001. source: "./media/characters/juri/stomach.svg"
  26002. }
  26003. },
  26004. },
  26005. [
  26006. {
  26007. name: "Normal",
  26008. height: math.unit(7 + 3 / 12, "feet"),
  26009. default: true
  26010. },
  26011. ]
  26012. ))
  26013. characterMakers.push(() => makeCharacter(
  26014. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26015. {
  26016. fox: {
  26017. height: math.unit(5 + 6 / 12, "feet"),
  26018. weight: math.unit(140, "lb"),
  26019. name: "Fox",
  26020. image: {
  26021. source: "./media/characters/maxene-sita/fox.svg",
  26022. extra: 146 / 138,
  26023. bottom: 2.1 / 148.19
  26024. }
  26025. },
  26026. foxLaying: {
  26027. height: math.unit(1.70, "feet"),
  26028. weight: math.unit(140, "lb"),
  26029. name: "Fox (Laying)",
  26030. image: {
  26031. source: "./media/characters/maxene-sita/fox-laying.svg",
  26032. extra: 910 / 572,
  26033. bottom: 71 / 981
  26034. }
  26035. },
  26036. kitsune: {
  26037. height: math.unit(10, "feet"),
  26038. weight: math.unit(800, "lb"),
  26039. name: "Kitsune",
  26040. image: {
  26041. source: "./media/characters/maxene-sita/kitsune.svg",
  26042. extra: 185 / 176,
  26043. bottom: 4.7 / 189.9
  26044. }
  26045. },
  26046. hellhound: {
  26047. height: math.unit(10, "feet"),
  26048. weight: math.unit(700, "lb"),
  26049. name: "Hellhound",
  26050. image: {
  26051. source: "./media/characters/maxene-sita/hellhound.svg",
  26052. extra: 1600 / 1545,
  26053. bottom: 81 / 1681
  26054. }
  26055. },
  26056. },
  26057. [
  26058. {
  26059. name: "Normal",
  26060. height: math.unit(5 + 6 / 12, "feet"),
  26061. default: true
  26062. },
  26063. ]
  26064. ))
  26065. characterMakers.push(() => makeCharacter(
  26066. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26067. {
  26068. front: {
  26069. height: math.unit(3 + 4 / 12, "feet"),
  26070. weight: math.unit(70, "lb"),
  26071. name: "Front",
  26072. image: {
  26073. source: "./media/characters/maia/front.svg",
  26074. extra: 227 / 219.5,
  26075. bottom: 40 / 267
  26076. }
  26077. },
  26078. back: {
  26079. height: math.unit(3 + 4 / 12, "feet"),
  26080. weight: math.unit(70, "lb"),
  26081. name: "Back",
  26082. image: {
  26083. source: "./media/characters/maia/back.svg",
  26084. extra: 237 / 225
  26085. }
  26086. },
  26087. },
  26088. [
  26089. {
  26090. name: "Normal",
  26091. height: math.unit(3 + 4 / 12, "feet"),
  26092. default: true
  26093. },
  26094. ]
  26095. ))
  26096. characterMakers.push(() => makeCharacter(
  26097. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26098. {
  26099. front: {
  26100. height: math.unit(5 + 10 / 12, "feet"),
  26101. weight: math.unit(197, "lb"),
  26102. name: "Front",
  26103. image: {
  26104. source: "./media/characters/jabaro/front.svg",
  26105. extra: 225 / 216,
  26106. bottom: 5.06 / 230
  26107. }
  26108. },
  26109. back: {
  26110. height: math.unit(5 + 10 / 12, "feet"),
  26111. weight: math.unit(197, "lb"),
  26112. name: "Back",
  26113. image: {
  26114. source: "./media/characters/jabaro/back.svg",
  26115. extra: 225 / 219,
  26116. bottom: 1.9 / 227
  26117. }
  26118. },
  26119. },
  26120. [
  26121. {
  26122. name: "Normal",
  26123. height: math.unit(5 + 10 / 12, "feet"),
  26124. default: true
  26125. },
  26126. ]
  26127. ))
  26128. characterMakers.push(() => makeCharacter(
  26129. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26130. {
  26131. front: {
  26132. height: math.unit(5 + 8 / 12, "feet"),
  26133. weight: math.unit(139, "lb"),
  26134. name: "Front",
  26135. image: {
  26136. source: "./media/characters/risa/front.svg",
  26137. extra: 270 / 260,
  26138. bottom: 11.2 / 282
  26139. }
  26140. },
  26141. back: {
  26142. height: math.unit(5 + 8 / 12, "feet"),
  26143. weight: math.unit(139, "lb"),
  26144. name: "Back",
  26145. image: {
  26146. source: "./media/characters/risa/back.svg",
  26147. extra: 264 / 255,
  26148. bottom: 4 / 268
  26149. }
  26150. },
  26151. },
  26152. [
  26153. {
  26154. name: "Normal",
  26155. height: math.unit(5 + 8 / 12, "feet"),
  26156. default: true
  26157. },
  26158. ]
  26159. ))
  26160. characterMakers.push(() => makeCharacter(
  26161. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26162. {
  26163. front: {
  26164. height: math.unit(2 + 11 / 12, "feet"),
  26165. weight: math.unit(30, "lb"),
  26166. name: "Front",
  26167. image: {
  26168. source: "./media/characters/weatley/front.svg",
  26169. bottom: 10.7 / 414,
  26170. extra: 403.5 / 362
  26171. }
  26172. },
  26173. back: {
  26174. height: math.unit(2 + 11 / 12, "feet"),
  26175. weight: math.unit(30, "lb"),
  26176. name: "Back",
  26177. image: {
  26178. source: "./media/characters/weatley/back.svg",
  26179. bottom: 10.7 / 414,
  26180. extra: 403.5 / 362
  26181. }
  26182. },
  26183. },
  26184. [
  26185. {
  26186. name: "Normal",
  26187. height: math.unit(2 + 11 / 12, "feet"),
  26188. default: true
  26189. },
  26190. ]
  26191. ))
  26192. characterMakers.push(() => makeCharacter(
  26193. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26194. {
  26195. front: {
  26196. height: math.unit(5 + 2 / 12, "feet"),
  26197. weight: math.unit(50, "kg"),
  26198. name: "Front",
  26199. image: {
  26200. source: "./media/characters/mercury-crescent/front.svg",
  26201. extra: 1088 / 1033,
  26202. bottom: 18.9 / 1109
  26203. }
  26204. },
  26205. },
  26206. [
  26207. {
  26208. name: "Normal",
  26209. height: math.unit(5 + 2 / 12, "feet"),
  26210. default: true
  26211. },
  26212. ]
  26213. ))
  26214. characterMakers.push(() => makeCharacter(
  26215. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26216. {
  26217. front: {
  26218. height: math.unit(2, "feet"),
  26219. weight: math.unit(15, "kg"),
  26220. name: "Front",
  26221. image: {
  26222. source: "./media/characters/diamond-jones/front.svg",
  26223. extra: 727/723,
  26224. bottom: 46/773
  26225. }
  26226. },
  26227. },
  26228. [
  26229. {
  26230. name: "Normal",
  26231. height: math.unit(2, "feet"),
  26232. default: true
  26233. },
  26234. ]
  26235. ))
  26236. characterMakers.push(() => makeCharacter(
  26237. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26238. {
  26239. front: {
  26240. height: math.unit(3, "feet"),
  26241. weight: math.unit(30, "kg"),
  26242. name: "Front",
  26243. image: {
  26244. source: "./media/characters/sweet-bit/front.svg",
  26245. extra: 675 / 567,
  26246. bottom: 27.7 / 703
  26247. }
  26248. },
  26249. },
  26250. [
  26251. {
  26252. name: "Normal",
  26253. height: math.unit(3, "feet"),
  26254. default: true
  26255. },
  26256. ]
  26257. ))
  26258. characterMakers.push(() => makeCharacter(
  26259. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26260. {
  26261. side: {
  26262. height: math.unit(9.178, "feet"),
  26263. weight: math.unit(500, "lb"),
  26264. name: "Side",
  26265. image: {
  26266. source: "./media/characters/umbrazen/side.svg",
  26267. extra: 1730 / 1473,
  26268. bottom: 34.6 / 1765
  26269. }
  26270. },
  26271. },
  26272. [
  26273. {
  26274. name: "Normal",
  26275. height: math.unit(9.178, "feet"),
  26276. default: true
  26277. },
  26278. ]
  26279. ))
  26280. characterMakers.push(() => makeCharacter(
  26281. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26282. {
  26283. front: {
  26284. height: math.unit(10, "feet"),
  26285. weight: math.unit(750, "lb"),
  26286. name: "Front",
  26287. image: {
  26288. source: "./media/characters/arlist/front.svg",
  26289. extra: 961 / 778,
  26290. bottom: 6.2 / 986
  26291. }
  26292. },
  26293. },
  26294. [
  26295. {
  26296. name: "Normal",
  26297. height: math.unit(10, "feet"),
  26298. default: true
  26299. },
  26300. ]
  26301. ))
  26302. characterMakers.push(() => makeCharacter(
  26303. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26304. {
  26305. front: {
  26306. height: math.unit(5 + 1 / 12, "feet"),
  26307. weight: math.unit(110, "lb"),
  26308. name: "Front",
  26309. image: {
  26310. source: "./media/characters/aradel/front.svg",
  26311. extra: 324 / 303,
  26312. bottom: 3.6 / 329.4
  26313. }
  26314. },
  26315. },
  26316. [
  26317. {
  26318. name: "Normal",
  26319. height: math.unit(5 + 1 / 12, "feet"),
  26320. default: true
  26321. },
  26322. ]
  26323. ))
  26324. characterMakers.push(() => makeCharacter(
  26325. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26326. {
  26327. front: {
  26328. height: math.unit(3 + 8 / 12, "feet"),
  26329. weight: math.unit(50, "lb"),
  26330. name: "Front",
  26331. image: {
  26332. source: "./media/characters/serryn/front.svg",
  26333. extra: 1792 / 1656,
  26334. bottom: 43.5 / 1840
  26335. }
  26336. },
  26337. },
  26338. [
  26339. {
  26340. name: "Normal",
  26341. height: math.unit(3 + 8 / 12, "feet"),
  26342. default: true
  26343. },
  26344. ]
  26345. ))
  26346. characterMakers.push(() => makeCharacter(
  26347. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26348. {
  26349. front: {
  26350. height: math.unit(7 + 10 / 12, "feet"),
  26351. weight: math.unit(255, "lb"),
  26352. name: "Front",
  26353. image: {
  26354. source: "./media/characters/xavier-thyme/front.svg",
  26355. extra: 3733 / 3642,
  26356. bottom: 131 / 3869
  26357. }
  26358. },
  26359. frontRaven: {
  26360. height: math.unit(7 + 10 / 12, "feet"),
  26361. weight: math.unit(255, "lb"),
  26362. name: "Front (Raven)",
  26363. image: {
  26364. source: "./media/characters/xavier-thyme/front-raven.svg",
  26365. extra: 4385 / 3642,
  26366. bottom: 131 / 4517
  26367. }
  26368. },
  26369. },
  26370. [
  26371. {
  26372. name: "Normal",
  26373. height: math.unit(7 + 10 / 12, "feet"),
  26374. default: true
  26375. },
  26376. ]
  26377. ))
  26378. characterMakers.push(() => makeCharacter(
  26379. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26380. {
  26381. front: {
  26382. height: math.unit(1.6, "m"),
  26383. weight: math.unit(50, "kg"),
  26384. name: "Front",
  26385. image: {
  26386. source: "./media/characters/kiki/front.svg",
  26387. extra: 4682 / 3610,
  26388. bottom: 115 / 4777
  26389. }
  26390. },
  26391. },
  26392. [
  26393. {
  26394. name: "Normal",
  26395. height: math.unit(1.6, "meters"),
  26396. default: true
  26397. },
  26398. ]
  26399. ))
  26400. characterMakers.push(() => makeCharacter(
  26401. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26402. {
  26403. front: {
  26404. height: math.unit(50, "m"),
  26405. weight: math.unit(500, "tonnes"),
  26406. name: "Front",
  26407. image: {
  26408. source: "./media/characters/ryoko/front.svg",
  26409. extra: 4632 / 3926,
  26410. bottom: 193 / 4823
  26411. }
  26412. },
  26413. },
  26414. [
  26415. {
  26416. name: "Normal",
  26417. height: math.unit(50, "meters"),
  26418. default: true
  26419. },
  26420. ]
  26421. ))
  26422. characterMakers.push(() => makeCharacter(
  26423. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26424. {
  26425. front: {
  26426. height: math.unit(30, "m"),
  26427. weight: math.unit(22, "tonnes"),
  26428. name: "Front",
  26429. image: {
  26430. source: "./media/characters/elio/front.svg",
  26431. extra: 4582 / 3720,
  26432. bottom: 236 / 4828
  26433. }
  26434. },
  26435. },
  26436. [
  26437. {
  26438. name: "Normal",
  26439. height: math.unit(30, "meters"),
  26440. default: true
  26441. },
  26442. ]
  26443. ))
  26444. characterMakers.push(() => makeCharacter(
  26445. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26446. {
  26447. front: {
  26448. height: math.unit(6 + 3 / 12, "feet"),
  26449. weight: math.unit(120, "lb"),
  26450. name: "Front",
  26451. image: {
  26452. source: "./media/characters/azura/front.svg",
  26453. extra: 1149 / 1135,
  26454. bottom: 45 / 1194
  26455. }
  26456. },
  26457. frontClothed: {
  26458. height: math.unit(6 + 3 / 12, "feet"),
  26459. weight: math.unit(120, "lb"),
  26460. name: "Front (Clothed)",
  26461. image: {
  26462. source: "./media/characters/azura/front-clothed.svg",
  26463. extra: 1149 / 1135,
  26464. bottom: 45 / 1194
  26465. }
  26466. },
  26467. },
  26468. [
  26469. {
  26470. name: "Normal",
  26471. height: math.unit(6 + 3 / 12, "feet"),
  26472. default: true
  26473. },
  26474. {
  26475. name: "Macro",
  26476. height: math.unit(20 + 6 / 12, "feet")
  26477. },
  26478. {
  26479. name: "Megamacro",
  26480. height: math.unit(12, "miles")
  26481. },
  26482. {
  26483. name: "Gigamacro",
  26484. height: math.unit(10000, "miles")
  26485. },
  26486. {
  26487. name: "Teramacro",
  26488. height: math.unit(900000, "miles")
  26489. },
  26490. ]
  26491. ))
  26492. characterMakers.push(() => makeCharacter(
  26493. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26494. {
  26495. front: {
  26496. height: math.unit(12, "feet"),
  26497. weight: math.unit(1, "ton"),
  26498. capacity: math.unit(660000, "gallons"),
  26499. name: "Front",
  26500. image: {
  26501. source: "./media/characters/zeus/front.svg",
  26502. extra: 5005 / 4717,
  26503. bottom: 363 / 5388
  26504. }
  26505. },
  26506. },
  26507. [
  26508. {
  26509. name: "Normal",
  26510. height: math.unit(12, "feet")
  26511. },
  26512. {
  26513. name: "Preferred Size",
  26514. height: math.unit(0.5, "miles"),
  26515. default: true
  26516. },
  26517. {
  26518. name: "Giga Horse",
  26519. height: math.unit(300, "miles")
  26520. },
  26521. {
  26522. name: "Riding Planets",
  26523. height: math.unit(30, "megameters")
  26524. },
  26525. {
  26526. name: "Cosmic Giant",
  26527. height: math.unit(3, "zettameters")
  26528. },
  26529. {
  26530. name: "Breeding God",
  26531. height: math.unit(9.92e22, "yottameters")
  26532. },
  26533. ]
  26534. ))
  26535. characterMakers.push(() => makeCharacter(
  26536. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26537. {
  26538. side: {
  26539. height: math.unit(9, "feet"),
  26540. weight: math.unit(1500, "kg"),
  26541. name: "Side",
  26542. image: {
  26543. source: "./media/characters/fang/side.svg",
  26544. extra: 924 / 866,
  26545. bottom: 47.5 / 972.3
  26546. }
  26547. },
  26548. },
  26549. [
  26550. {
  26551. name: "Normal",
  26552. height: math.unit(9, "feet"),
  26553. default: true
  26554. },
  26555. {
  26556. name: "Macro",
  26557. height: math.unit(75 + 6 / 12, "feet")
  26558. },
  26559. {
  26560. name: "Teramacro",
  26561. height: math.unit(50000, "miles")
  26562. },
  26563. ]
  26564. ))
  26565. characterMakers.push(() => makeCharacter(
  26566. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26567. {
  26568. front: {
  26569. height: math.unit(10, "feet"),
  26570. weight: math.unit(2, "tons"),
  26571. name: "Front",
  26572. image: {
  26573. source: "./media/characters/rekhit/front.svg",
  26574. extra: 2796 / 2590,
  26575. bottom: 225 / 3022
  26576. }
  26577. },
  26578. },
  26579. [
  26580. {
  26581. name: "Normal",
  26582. height: math.unit(10, "feet"),
  26583. default: true
  26584. },
  26585. {
  26586. name: "Macro",
  26587. height: math.unit(500, "feet")
  26588. },
  26589. ]
  26590. ))
  26591. characterMakers.push(() => makeCharacter(
  26592. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26593. {
  26594. front: {
  26595. height: math.unit(7 + 6.451 / 12, "feet"),
  26596. weight: math.unit(310, "lb"),
  26597. name: "Front",
  26598. image: {
  26599. source: "./media/characters/dahlia-verrick/front.svg",
  26600. extra: 1488 / 1365,
  26601. bottom: 6.2 / 1495
  26602. }
  26603. },
  26604. back: {
  26605. height: math.unit(7 + 6.451 / 12, "feet"),
  26606. weight: math.unit(310, "lb"),
  26607. name: "Back",
  26608. image: {
  26609. source: "./media/characters/dahlia-verrick/back.svg",
  26610. extra: 1472 / 1351,
  26611. bottom: 5.28 / 1477
  26612. }
  26613. },
  26614. frontBusiness: {
  26615. height: math.unit(7 + 6.451 / 12, "feet"),
  26616. weight: math.unit(200, "lb"),
  26617. name: "Front (Business)",
  26618. image: {
  26619. source: "./media/characters/dahlia-verrick/front-business.svg",
  26620. extra: 1478 / 1381,
  26621. bottom: 5.5 / 1484
  26622. }
  26623. },
  26624. frontCasual: {
  26625. height: math.unit(7 + 6.451 / 12, "feet"),
  26626. weight: math.unit(200, "lb"),
  26627. name: "Front (Casual)",
  26628. image: {
  26629. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26630. extra: 1478 / 1381,
  26631. bottom: 5.5 / 1484
  26632. }
  26633. },
  26634. },
  26635. [
  26636. {
  26637. name: "Travel-Sized",
  26638. height: math.unit(7.45, "inches")
  26639. },
  26640. {
  26641. name: "Normal",
  26642. height: math.unit(7 + 6.451 / 12, "feet"),
  26643. default: true
  26644. },
  26645. {
  26646. name: "Hitting the Town",
  26647. height: math.unit(37 + 8 / 12, "feet")
  26648. },
  26649. {
  26650. name: "Stomp in the Suburbs",
  26651. height: math.unit(964 + 9.728 / 12, "feet")
  26652. },
  26653. {
  26654. name: "Sit on the City",
  26655. height: math.unit(61747 + 10.592 / 12, "feet")
  26656. },
  26657. {
  26658. name: "Glomp the Globe",
  26659. height: math.unit(252919327 + 4.832 / 12, "feet")
  26660. },
  26661. ]
  26662. ))
  26663. characterMakers.push(() => makeCharacter(
  26664. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26665. {
  26666. front: {
  26667. height: math.unit(6 + 4 / 12, "feet"),
  26668. weight: math.unit(320, "lb"),
  26669. name: "Front",
  26670. image: {
  26671. source: "./media/characters/balina-mahigan/front.svg",
  26672. extra: 447 / 428,
  26673. bottom: 18 / 466
  26674. }
  26675. },
  26676. back: {
  26677. height: math.unit(6 + 4 / 12, "feet"),
  26678. weight: math.unit(320, "lb"),
  26679. name: "Back",
  26680. image: {
  26681. source: "./media/characters/balina-mahigan/back.svg",
  26682. extra: 445 / 428,
  26683. bottom: 4.07 / 448
  26684. }
  26685. },
  26686. arm: {
  26687. height: math.unit(1.88, "feet"),
  26688. name: "Arm",
  26689. image: {
  26690. source: "./media/characters/balina-mahigan/arm.svg"
  26691. }
  26692. },
  26693. backPort: {
  26694. height: math.unit(0.685, "feet"),
  26695. name: "Back Port",
  26696. image: {
  26697. source: "./media/characters/balina-mahigan/back-port.svg"
  26698. }
  26699. },
  26700. hoofpaw: {
  26701. height: math.unit(1.41, "feet"),
  26702. name: "Hoofpaw",
  26703. image: {
  26704. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26705. }
  26706. },
  26707. leftHandBack: {
  26708. height: math.unit(0.938, "feet"),
  26709. name: "Left Hand (Back)",
  26710. image: {
  26711. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26712. }
  26713. },
  26714. leftHandFront: {
  26715. height: math.unit(0.938, "feet"),
  26716. name: "Left Hand (Front)",
  26717. image: {
  26718. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26719. }
  26720. },
  26721. rightHandBack: {
  26722. height: math.unit(0.95, "feet"),
  26723. name: "Right Hand (Back)",
  26724. image: {
  26725. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26726. }
  26727. },
  26728. rightHandFront: {
  26729. height: math.unit(0.95, "feet"),
  26730. name: "Right Hand (Front)",
  26731. image: {
  26732. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26733. }
  26734. },
  26735. },
  26736. [
  26737. {
  26738. name: "Normal",
  26739. height: math.unit(6 + 4 / 12, "feet"),
  26740. default: true
  26741. },
  26742. ]
  26743. ))
  26744. characterMakers.push(() => makeCharacter(
  26745. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26746. {
  26747. front: {
  26748. height: math.unit(6, "feet"),
  26749. weight: math.unit(320, "lb"),
  26750. name: "Front",
  26751. image: {
  26752. source: "./media/characters/balina-mejeri/front.svg",
  26753. extra: 517 / 488,
  26754. bottom: 44.2 / 561
  26755. }
  26756. },
  26757. },
  26758. [
  26759. {
  26760. name: "Normal",
  26761. height: math.unit(6 + 4 / 12, "feet")
  26762. },
  26763. {
  26764. name: "Business",
  26765. height: math.unit(155, "feet"),
  26766. default: true
  26767. },
  26768. ]
  26769. ))
  26770. characterMakers.push(() => makeCharacter(
  26771. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26772. {
  26773. kneeling: {
  26774. height: math.unit(6 + 4 / 12, "feet"),
  26775. weight: math.unit(300 * 20, "lb"),
  26776. name: "Kneeling",
  26777. image: {
  26778. source: "./media/characters/balbarian/kneeling.svg",
  26779. extra: 922 / 862,
  26780. bottom: 42.4 / 965
  26781. }
  26782. },
  26783. },
  26784. [
  26785. {
  26786. name: "Normal",
  26787. height: math.unit(6 + 4 / 12, "feet")
  26788. },
  26789. {
  26790. name: "Treasured",
  26791. height: math.unit(18 + 9 / 12, "feet"),
  26792. default: true
  26793. },
  26794. {
  26795. name: "Macro",
  26796. height: math.unit(900, "feet")
  26797. },
  26798. ]
  26799. ))
  26800. characterMakers.push(() => makeCharacter(
  26801. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26802. {
  26803. front: {
  26804. height: math.unit(6 + 4 / 12, "feet"),
  26805. weight: math.unit(325, "lb"),
  26806. name: "Front",
  26807. image: {
  26808. source: "./media/characters/balina-amarini/front.svg",
  26809. extra: 415 / 403,
  26810. bottom: 19 / 433.4
  26811. }
  26812. },
  26813. back: {
  26814. height: math.unit(6 + 4 / 12, "feet"),
  26815. weight: math.unit(325, "lb"),
  26816. name: "Back",
  26817. image: {
  26818. source: "./media/characters/balina-amarini/back.svg",
  26819. extra: 415 / 403,
  26820. bottom: 13.5 / 432
  26821. }
  26822. },
  26823. overdrive: {
  26824. height: math.unit(6 + 4 / 12, "feet"),
  26825. weight: math.unit(400, "lb"),
  26826. name: "Overdrive",
  26827. image: {
  26828. source: "./media/characters/balina-amarini/overdrive.svg",
  26829. extra: 269 / 259,
  26830. bottom: 12 / 282
  26831. }
  26832. },
  26833. },
  26834. [
  26835. {
  26836. name: "Boom",
  26837. height: math.unit(9 + 10 / 12, "feet"),
  26838. default: true
  26839. },
  26840. {
  26841. name: "Macro",
  26842. height: math.unit(280, "feet")
  26843. },
  26844. ]
  26845. ))
  26846. characterMakers.push(() => makeCharacter(
  26847. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26848. {
  26849. goddess: {
  26850. height: math.unit(600, "feet"),
  26851. weight: math.unit(2000000, "tons"),
  26852. name: "Goddess",
  26853. image: {
  26854. source: "./media/characters/lady-kubwa/goddess.svg",
  26855. extra: 1240.5 / 1223,
  26856. bottom: 22 / 1263
  26857. }
  26858. },
  26859. goddesser: {
  26860. height: math.unit(900, "feet"),
  26861. weight: math.unit(20000000, "lb"),
  26862. name: "Goddess-er",
  26863. image: {
  26864. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26865. extra: 899 / 888,
  26866. bottom: 12.6 / 912
  26867. }
  26868. },
  26869. },
  26870. [
  26871. {
  26872. name: "Macro",
  26873. height: math.unit(600, "feet"),
  26874. default: true
  26875. },
  26876. {
  26877. name: "Megamacro",
  26878. height: math.unit(250, "miles")
  26879. },
  26880. ]
  26881. ))
  26882. characterMakers.push(() => makeCharacter(
  26883. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26884. {
  26885. front: {
  26886. height: math.unit(7 + 7 / 12, "feet"),
  26887. weight: math.unit(250, "lb"),
  26888. name: "Front",
  26889. image: {
  26890. source: "./media/characters/tala-grovehorn/front.svg",
  26891. extra: 2636 / 2525,
  26892. bottom: 147 / 2781
  26893. }
  26894. },
  26895. back: {
  26896. height: math.unit(7 + 7 / 12, "feet"),
  26897. weight: math.unit(250, "lb"),
  26898. name: "Back",
  26899. image: {
  26900. source: "./media/characters/tala-grovehorn/back.svg",
  26901. extra: 2635 / 2539,
  26902. bottom: 100 / 2732.8
  26903. }
  26904. },
  26905. mouth: {
  26906. height: math.unit(1.15, "feet"),
  26907. name: "Mouth",
  26908. image: {
  26909. source: "./media/characters/tala-grovehorn/mouth.svg"
  26910. }
  26911. },
  26912. dick: {
  26913. height: math.unit(2.36, "feet"),
  26914. name: "Dick",
  26915. image: {
  26916. source: "./media/characters/tala-grovehorn/dick.svg"
  26917. }
  26918. },
  26919. slit: {
  26920. height: math.unit(0.61, "feet"),
  26921. name: "Slit",
  26922. image: {
  26923. source: "./media/characters/tala-grovehorn/slit.svg"
  26924. }
  26925. },
  26926. },
  26927. [
  26928. ]
  26929. ))
  26930. characterMakers.push(() => makeCharacter(
  26931. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26932. {
  26933. front: {
  26934. height: math.unit(7 + 7 / 12, "feet"),
  26935. weight: math.unit(225, "lb"),
  26936. name: "Front",
  26937. image: {
  26938. source: "./media/characters/epona/front.svg",
  26939. extra: 2445 / 2290,
  26940. bottom: 251 / 2696
  26941. }
  26942. },
  26943. back: {
  26944. height: math.unit(7 + 7 / 12, "feet"),
  26945. weight: math.unit(225, "lb"),
  26946. name: "Back",
  26947. image: {
  26948. source: "./media/characters/epona/back.svg",
  26949. extra: 2546 / 2408,
  26950. bottom: 44 / 2589
  26951. }
  26952. },
  26953. genitals: {
  26954. height: math.unit(1.5, "feet"),
  26955. name: "Genitals",
  26956. image: {
  26957. source: "./media/characters/epona/genitals.svg"
  26958. }
  26959. },
  26960. },
  26961. [
  26962. {
  26963. name: "Normal",
  26964. height: math.unit(7 + 7 / 12, "feet"),
  26965. default: true
  26966. },
  26967. ]
  26968. ))
  26969. characterMakers.push(() => makeCharacter(
  26970. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26971. {
  26972. front: {
  26973. height: math.unit(7, "feet"),
  26974. weight: math.unit(518, "lb"),
  26975. name: "Front",
  26976. image: {
  26977. source: "./media/characters/avia-bloodbourn/front.svg",
  26978. extra: 1466 / 1350,
  26979. bottom: 65 / 1527
  26980. }
  26981. },
  26982. },
  26983. [
  26984. ]
  26985. ))
  26986. characterMakers.push(() => makeCharacter(
  26987. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26988. {
  26989. front: {
  26990. height: math.unit(9.35, "feet"),
  26991. weight: math.unit(600, "lb"),
  26992. name: "Front",
  26993. image: {
  26994. source: "./media/characters/amera/front.svg",
  26995. extra: 891 / 818,
  26996. bottom: 30 / 922.7
  26997. }
  26998. },
  26999. back: {
  27000. height: math.unit(9.35, "feet"),
  27001. weight: math.unit(600, "lb"),
  27002. name: "Back",
  27003. image: {
  27004. source: "./media/characters/amera/back.svg",
  27005. extra: 876 / 824,
  27006. bottom: 6.8 / 884
  27007. }
  27008. },
  27009. dick: {
  27010. height: math.unit(2.14, "feet"),
  27011. name: "Dick",
  27012. image: {
  27013. source: "./media/characters/amera/dick.svg"
  27014. }
  27015. },
  27016. },
  27017. [
  27018. {
  27019. name: "Normal",
  27020. height: math.unit(9.35, "feet"),
  27021. default: true
  27022. },
  27023. ]
  27024. ))
  27025. characterMakers.push(() => makeCharacter(
  27026. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27027. {
  27028. kneeling: {
  27029. height: math.unit(3 + 4 / 12, "feet"),
  27030. weight: math.unit(90, "lb"),
  27031. name: "Kneeling",
  27032. image: {
  27033. source: "./media/characters/rosewen/kneeling.svg",
  27034. extra: 1835 / 1571,
  27035. bottom: 27.7 / 1862
  27036. }
  27037. },
  27038. },
  27039. [
  27040. {
  27041. name: "Normal",
  27042. height: math.unit(3 + 4 / 12, "feet"),
  27043. default: true
  27044. },
  27045. ]
  27046. ))
  27047. characterMakers.push(() => makeCharacter(
  27048. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27049. {
  27050. front: {
  27051. height: math.unit(5 + 10 / 12, "feet"),
  27052. weight: math.unit(200, "lb"),
  27053. name: "Front",
  27054. image: {
  27055. source: "./media/characters/sabah/front.svg",
  27056. extra: 849 / 763,
  27057. bottom: 33.9 / 881
  27058. }
  27059. },
  27060. },
  27061. [
  27062. {
  27063. name: "Normal",
  27064. height: math.unit(5 + 10 / 12, "feet"),
  27065. default: true
  27066. },
  27067. ]
  27068. ))
  27069. characterMakers.push(() => makeCharacter(
  27070. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27071. {
  27072. front: {
  27073. height: math.unit(3 + 5 / 12, "feet"),
  27074. weight: math.unit(40, "kg"),
  27075. name: "Front",
  27076. image: {
  27077. source: "./media/characters/purple-flame/front.svg",
  27078. extra: 1577 / 1412,
  27079. bottom: 97 / 1694
  27080. }
  27081. },
  27082. frontDressed: {
  27083. height: math.unit(3 + 5 / 12, "feet"),
  27084. weight: math.unit(40, "kg"),
  27085. name: "Front (Dressed)",
  27086. image: {
  27087. source: "./media/characters/purple-flame/front-dressed.svg",
  27088. extra: 1577 / 1412,
  27089. bottom: 97 / 1694
  27090. }
  27091. },
  27092. headphones: {
  27093. height: math.unit(0.85, "feet"),
  27094. name: "Headphones",
  27095. image: {
  27096. source: "./media/characters/purple-flame/headphones.svg"
  27097. }
  27098. },
  27099. },
  27100. [
  27101. {
  27102. name: "Really Small",
  27103. height: math.unit(5, "cm")
  27104. },
  27105. {
  27106. name: "Micro",
  27107. height: math.unit(1 + 5 / 12, "feet")
  27108. },
  27109. {
  27110. name: "Normal",
  27111. height: math.unit(3 + 5 / 12, "feet"),
  27112. default: true
  27113. },
  27114. {
  27115. name: "Minimacro",
  27116. height: math.unit(125, "feet")
  27117. },
  27118. {
  27119. name: "Macro",
  27120. height: math.unit(0.5, "miles")
  27121. },
  27122. {
  27123. name: "Megamacro",
  27124. height: math.unit(50, "miles")
  27125. },
  27126. {
  27127. name: "Gigantic",
  27128. height: math.unit(750, "miles")
  27129. },
  27130. {
  27131. name: "Planetary",
  27132. height: math.unit(15000, "miles")
  27133. },
  27134. ]
  27135. ))
  27136. characterMakers.push(() => makeCharacter(
  27137. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27138. {
  27139. front: {
  27140. height: math.unit(14, "feet"),
  27141. weight: math.unit(959, "lb"),
  27142. name: "Front",
  27143. image: {
  27144. source: "./media/characters/arsenal/front.svg",
  27145. extra: 2357 / 2157,
  27146. bottom: 93 / 2458
  27147. }
  27148. },
  27149. },
  27150. [
  27151. {
  27152. name: "Normal",
  27153. height: math.unit(14, "feet"),
  27154. default: true
  27155. },
  27156. ]
  27157. ))
  27158. characterMakers.push(() => makeCharacter(
  27159. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27160. {
  27161. front: {
  27162. height: math.unit(6, "feet"),
  27163. weight: math.unit(150, "lb"),
  27164. name: "Front",
  27165. image: {
  27166. source: "./media/characters/adira/front.svg",
  27167. extra: 1078 / 1029,
  27168. bottom: 87 / 1166
  27169. }
  27170. },
  27171. },
  27172. [
  27173. {
  27174. name: "Micro",
  27175. height: math.unit(4, "inches"),
  27176. default: true
  27177. },
  27178. {
  27179. name: "Macro",
  27180. height: math.unit(50, "feet")
  27181. },
  27182. ]
  27183. ))
  27184. characterMakers.push(() => makeCharacter(
  27185. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27186. {
  27187. front: {
  27188. height: math.unit(16, "feet"),
  27189. weight: math.unit(1000, "lb"),
  27190. name: "Front",
  27191. image: {
  27192. source: "./media/characters/grim/front.svg",
  27193. extra: 622 / 614,
  27194. bottom: 18.1 / 642
  27195. }
  27196. },
  27197. back: {
  27198. height: math.unit(16, "feet"),
  27199. weight: math.unit(1000, "lb"),
  27200. name: "Back",
  27201. image: {
  27202. source: "./media/characters/grim/back.svg",
  27203. extra: 610.6 / 602,
  27204. bottom: 40.8 / 652
  27205. }
  27206. },
  27207. hunched: {
  27208. height: math.unit(9.75, "feet"),
  27209. weight: math.unit(1000, "lb"),
  27210. name: "Hunched",
  27211. image: {
  27212. source: "./media/characters/grim/hunched.svg",
  27213. extra: 304 / 297,
  27214. bottom: 35.4 / 394
  27215. }
  27216. },
  27217. },
  27218. [
  27219. {
  27220. name: "Normal",
  27221. height: math.unit(16, "feet"),
  27222. default: true
  27223. },
  27224. ]
  27225. ))
  27226. characterMakers.push(() => makeCharacter(
  27227. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27228. {
  27229. front: {
  27230. height: math.unit(2.3, "meters"),
  27231. weight: math.unit(300, "lb"),
  27232. name: "Front",
  27233. image: {
  27234. source: "./media/characters/sinja/front-sfw.svg",
  27235. extra: 1393 / 1294,
  27236. bottom: 70 / 1463
  27237. }
  27238. },
  27239. frontNsfw: {
  27240. height: math.unit(2.3, "meters"),
  27241. weight: math.unit(300, "lb"),
  27242. name: "Front (NSFW)",
  27243. image: {
  27244. source: "./media/characters/sinja/front-nsfw.svg",
  27245. extra: 1393 / 1294,
  27246. bottom: 70 / 1463
  27247. }
  27248. },
  27249. back: {
  27250. height: math.unit(2.3, "meters"),
  27251. weight: math.unit(300, "lb"),
  27252. name: "Back",
  27253. image: {
  27254. source: "./media/characters/sinja/back.svg",
  27255. extra: 1393 / 1294,
  27256. bottom: 70 / 1463
  27257. }
  27258. },
  27259. head: {
  27260. height: math.unit(1.771, "feet"),
  27261. name: "Head",
  27262. image: {
  27263. source: "./media/characters/sinja/head.svg"
  27264. }
  27265. },
  27266. slit: {
  27267. height: math.unit(0.8, "feet"),
  27268. name: "Slit",
  27269. image: {
  27270. source: "./media/characters/sinja/slit.svg"
  27271. }
  27272. },
  27273. },
  27274. [
  27275. {
  27276. name: "Normal",
  27277. height: math.unit(2.3, "meters")
  27278. },
  27279. {
  27280. name: "Macro",
  27281. height: math.unit(91, "meters"),
  27282. default: true
  27283. },
  27284. {
  27285. name: "Megamacro",
  27286. height: math.unit(91440, "meters")
  27287. },
  27288. {
  27289. name: "Gigamacro",
  27290. height: math.unit(60960000, "meters")
  27291. },
  27292. {
  27293. name: "Teramacro",
  27294. height: math.unit(9144000000, "meters")
  27295. },
  27296. ]
  27297. ))
  27298. characterMakers.push(() => makeCharacter(
  27299. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27300. {
  27301. front: {
  27302. height: math.unit(1.7, "meters"),
  27303. weight: math.unit(130, "lb"),
  27304. name: "Front",
  27305. image: {
  27306. source: "./media/characters/kyu/front.svg",
  27307. extra: 415 / 395,
  27308. bottom: 5 / 420
  27309. }
  27310. },
  27311. head: {
  27312. height: math.unit(1.75, "feet"),
  27313. name: "Head",
  27314. image: {
  27315. source: "./media/characters/kyu/head.svg"
  27316. }
  27317. },
  27318. foot: {
  27319. height: math.unit(0.81, "feet"),
  27320. name: "Foot",
  27321. image: {
  27322. source: "./media/characters/kyu/foot.svg"
  27323. }
  27324. },
  27325. },
  27326. [
  27327. {
  27328. name: "Normal",
  27329. height: math.unit(1.7, "meters")
  27330. },
  27331. {
  27332. name: "Macro",
  27333. height: math.unit(131, "feet"),
  27334. default: true
  27335. },
  27336. {
  27337. name: "Megamacro",
  27338. height: math.unit(91440, "meters")
  27339. },
  27340. {
  27341. name: "Gigamacro",
  27342. height: math.unit(60960000, "meters")
  27343. },
  27344. {
  27345. name: "Teramacro",
  27346. height: math.unit(9144000000, "meters")
  27347. },
  27348. ]
  27349. ))
  27350. characterMakers.push(() => makeCharacter(
  27351. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27352. {
  27353. front: {
  27354. height: math.unit(7 + 1 / 12, "feet"),
  27355. weight: math.unit(250, "lb"),
  27356. name: "Front",
  27357. image: {
  27358. source: "./media/characters/joey/front.svg",
  27359. extra: 1791 / 1537,
  27360. bottom: 28 / 1816
  27361. }
  27362. },
  27363. },
  27364. [
  27365. {
  27366. name: "Micro",
  27367. height: math.unit(3, "inches")
  27368. },
  27369. {
  27370. name: "Normal",
  27371. height: math.unit(7 + 1 / 12, "feet"),
  27372. default: true
  27373. },
  27374. ]
  27375. ))
  27376. characterMakers.push(() => makeCharacter(
  27377. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27378. {
  27379. front: {
  27380. height: math.unit(165, "cm"),
  27381. weight: math.unit(140, "lb"),
  27382. name: "Front",
  27383. image: {
  27384. source: "./media/characters/sam-evans/front.svg",
  27385. extra: 3417 / 3230,
  27386. bottom: 41.3 / 3417
  27387. }
  27388. },
  27389. frontSixTails: {
  27390. height: math.unit(165, "cm"),
  27391. weight: math.unit(140, "lb"),
  27392. name: "Front-six-tails",
  27393. image: {
  27394. source: "./media/characters/sam-evans/front-six-tails.svg",
  27395. extra: 3417 / 3230,
  27396. bottom: 41.3 / 3417
  27397. }
  27398. },
  27399. back: {
  27400. height: math.unit(165, "cm"),
  27401. weight: math.unit(140, "lb"),
  27402. name: "Back",
  27403. image: {
  27404. source: "./media/characters/sam-evans/back.svg",
  27405. extra: 3227 / 3032,
  27406. bottom: 6.8 / 3234
  27407. }
  27408. },
  27409. face: {
  27410. height: math.unit(0.68, "feet"),
  27411. name: "Face",
  27412. image: {
  27413. source: "./media/characters/sam-evans/face.svg"
  27414. }
  27415. },
  27416. },
  27417. [
  27418. {
  27419. name: "Normal",
  27420. height: math.unit(165, "cm"),
  27421. default: true
  27422. },
  27423. {
  27424. name: "Macro",
  27425. height: math.unit(100, "meters")
  27426. },
  27427. {
  27428. name: "Macro+",
  27429. height: math.unit(800, "meters")
  27430. },
  27431. {
  27432. name: "Macro++",
  27433. height: math.unit(3, "km")
  27434. },
  27435. {
  27436. name: "Macro+++",
  27437. height: math.unit(30, "km")
  27438. },
  27439. ]
  27440. ))
  27441. characterMakers.push(() => makeCharacter(
  27442. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27443. {
  27444. front: {
  27445. height: math.unit(10, "feet"),
  27446. weight: math.unit(750, "lb"),
  27447. name: "Front",
  27448. image: {
  27449. source: "./media/characters/juliet-a/front.svg",
  27450. extra: 1766 / 1720,
  27451. bottom: 43 / 1809
  27452. }
  27453. },
  27454. back: {
  27455. height: math.unit(10, "feet"),
  27456. weight: math.unit(750, "lb"),
  27457. name: "Back",
  27458. image: {
  27459. source: "./media/characters/juliet-a/back.svg",
  27460. extra: 1781 / 1734,
  27461. bottom: 35 / 1810,
  27462. }
  27463. },
  27464. },
  27465. [
  27466. {
  27467. name: "Normal",
  27468. height: math.unit(10, "feet"),
  27469. default: true
  27470. },
  27471. {
  27472. name: "Dragon Form",
  27473. height: math.unit(250, "feet")
  27474. },
  27475. {
  27476. name: "Macro",
  27477. height: math.unit(1000, "feet")
  27478. },
  27479. {
  27480. name: "Megamacro",
  27481. height: math.unit(10000, "feet")
  27482. }
  27483. ]
  27484. ))
  27485. characterMakers.push(() => makeCharacter(
  27486. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27487. {
  27488. regular: {
  27489. height: math.unit(7 + 3 / 12, "feet"),
  27490. weight: math.unit(260, "lb"),
  27491. name: "Regular",
  27492. image: {
  27493. source: "./media/characters/wild/regular.svg",
  27494. extra: 97.45 / 92,
  27495. bottom: 6.8 / 104.3
  27496. }
  27497. },
  27498. biggums: {
  27499. height: math.unit(8 + 6 / 12, "feet"),
  27500. weight: math.unit(425, "lb"),
  27501. name: "Biggums",
  27502. image: {
  27503. source: "./media/characters/wild/biggums.svg",
  27504. extra: 97.45 / 92,
  27505. bottom: 7.5 / 132.34
  27506. }
  27507. },
  27508. mawRegular: {
  27509. height: math.unit(1.24, "feet"),
  27510. name: "Maw (Regular)",
  27511. image: {
  27512. source: "./media/characters/wild/maw.svg"
  27513. }
  27514. },
  27515. mawBiggums: {
  27516. height: math.unit(1.47, "feet"),
  27517. name: "Maw (Biggums)",
  27518. image: {
  27519. source: "./media/characters/wild/maw.svg"
  27520. }
  27521. },
  27522. },
  27523. [
  27524. {
  27525. name: "Normal",
  27526. height: math.unit(7 + 3 / 12, "feet"),
  27527. default: true
  27528. },
  27529. ]
  27530. ))
  27531. characterMakers.push(() => makeCharacter(
  27532. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27533. {
  27534. front: {
  27535. height: math.unit(2.5, "meters"),
  27536. weight: math.unit(200, "kg"),
  27537. name: "Front",
  27538. image: {
  27539. source: "./media/characters/vidar/front.svg",
  27540. extra: 2994 / 2795,
  27541. bottom: 56 / 3061
  27542. }
  27543. },
  27544. back: {
  27545. height: math.unit(2.5, "meters"),
  27546. weight: math.unit(200, "kg"),
  27547. name: "Back",
  27548. image: {
  27549. source: "./media/characters/vidar/back.svg",
  27550. extra: 3131 / 2928,
  27551. bottom: 13.5 / 3141.5
  27552. }
  27553. },
  27554. feral: {
  27555. height: math.unit(2.5, "meters"),
  27556. weight: math.unit(2000, "kg"),
  27557. name: "Feral",
  27558. image: {
  27559. source: "./media/characters/vidar/feral.svg",
  27560. extra: 2790 / 1765,
  27561. bottom: 6 / 2796
  27562. }
  27563. },
  27564. },
  27565. [
  27566. {
  27567. name: "Normal",
  27568. height: math.unit(2.5, "meters"),
  27569. default: true
  27570. },
  27571. {
  27572. name: "Macro",
  27573. height: math.unit(100, "meters")
  27574. },
  27575. ]
  27576. ))
  27577. characterMakers.push(() => makeCharacter(
  27578. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27579. {
  27580. front: {
  27581. height: math.unit(5 + 9 / 12, "feet"),
  27582. weight: math.unit(120, "lb"),
  27583. name: "Front",
  27584. image: {
  27585. source: "./media/characters/ash/front.svg",
  27586. extra: 2189 / 1961,
  27587. bottom: 5.2 / 2194
  27588. }
  27589. },
  27590. },
  27591. [
  27592. {
  27593. name: "Normal",
  27594. height: math.unit(5 + 9 / 12, "feet"),
  27595. default: true
  27596. },
  27597. ]
  27598. ))
  27599. characterMakers.push(() => makeCharacter(
  27600. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27601. {
  27602. front: {
  27603. height: math.unit(9, "feet"),
  27604. weight: math.unit(10000, "lb"),
  27605. name: "Front",
  27606. image: {
  27607. source: "./media/characters/gygabite/front.svg",
  27608. bottom: 31.7 / 537.8,
  27609. extra: 505 / 370
  27610. }
  27611. },
  27612. },
  27613. [
  27614. {
  27615. name: "Normal",
  27616. height: math.unit(9, "feet"),
  27617. default: true
  27618. },
  27619. ]
  27620. ))
  27621. characterMakers.push(() => makeCharacter(
  27622. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27623. {
  27624. front: {
  27625. height: math.unit(12, "feet"),
  27626. weight: math.unit(35000, "lb"),
  27627. name: "Front",
  27628. image: {
  27629. source: "./media/characters/p0tat0/front.svg",
  27630. extra: 1065 / 921,
  27631. bottom: 55.7 / 1121.25
  27632. }
  27633. },
  27634. },
  27635. [
  27636. {
  27637. name: "Normal",
  27638. height: math.unit(12, "feet"),
  27639. default: true
  27640. },
  27641. ]
  27642. ))
  27643. characterMakers.push(() => makeCharacter(
  27644. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27645. {
  27646. side: {
  27647. height: math.unit(6.5, "feet"),
  27648. weight: math.unit(800, "lb"),
  27649. name: "Side",
  27650. image: {
  27651. source: "./media/characters/dusk/side.svg",
  27652. extra: 615 / 373,
  27653. bottom: 53 / 664
  27654. }
  27655. },
  27656. sitting: {
  27657. height: math.unit(7, "feet"),
  27658. weight: math.unit(800, "lb"),
  27659. name: "Sitting",
  27660. image: {
  27661. source: "./media/characters/dusk/sitting.svg",
  27662. extra: 753 / 425,
  27663. bottom: 33 / 774
  27664. }
  27665. },
  27666. head: {
  27667. height: math.unit(6.1, "feet"),
  27668. name: "Head",
  27669. image: {
  27670. source: "./media/characters/dusk/head.svg"
  27671. }
  27672. },
  27673. },
  27674. [
  27675. {
  27676. name: "Normal",
  27677. height: math.unit(7, "feet"),
  27678. default: true
  27679. },
  27680. ]
  27681. ))
  27682. characterMakers.push(() => makeCharacter(
  27683. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27684. {
  27685. front: {
  27686. height: math.unit(15, "feet"),
  27687. weight: math.unit(7000, "lb"),
  27688. name: "Front",
  27689. image: {
  27690. source: "./media/characters/jay-direwolf/front.svg",
  27691. extra: 1810 / 1732,
  27692. bottom: 66 / 1892
  27693. }
  27694. },
  27695. },
  27696. [
  27697. {
  27698. name: "Normal",
  27699. height: math.unit(15, "feet"),
  27700. default: true
  27701. },
  27702. ]
  27703. ))
  27704. characterMakers.push(() => makeCharacter(
  27705. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27706. {
  27707. front: {
  27708. height: math.unit(4 + 9 / 12, "feet"),
  27709. weight: math.unit(130, "lb"),
  27710. name: "Front",
  27711. image: {
  27712. source: "./media/characters/anchovie/front.svg",
  27713. extra: 382 / 350,
  27714. bottom: 25 / 409
  27715. }
  27716. },
  27717. back: {
  27718. height: math.unit(4 + 9 / 12, "feet"),
  27719. weight: math.unit(130, "lb"),
  27720. name: "Back",
  27721. image: {
  27722. source: "./media/characters/anchovie/back.svg",
  27723. extra: 385 / 352,
  27724. bottom: 16.6 / 402
  27725. }
  27726. },
  27727. frontDressed: {
  27728. height: math.unit(4 + 9 / 12, "feet"),
  27729. weight: math.unit(130, "lb"),
  27730. name: "Front (Dressed)",
  27731. image: {
  27732. source: "./media/characters/anchovie/front-dressed.svg",
  27733. extra: 382 / 350,
  27734. bottom: 25 / 409
  27735. }
  27736. },
  27737. backDressed: {
  27738. height: math.unit(4 + 9 / 12, "feet"),
  27739. weight: math.unit(130, "lb"),
  27740. name: "Back (Dressed)",
  27741. image: {
  27742. source: "./media/characters/anchovie/back-dressed.svg",
  27743. extra: 385 / 352,
  27744. bottom: 16.6 / 402
  27745. }
  27746. },
  27747. },
  27748. [
  27749. {
  27750. name: "Micro",
  27751. height: math.unit(6.4, "inches")
  27752. },
  27753. {
  27754. name: "Normal",
  27755. height: math.unit(4 + 9 / 12, "feet"),
  27756. default: true
  27757. },
  27758. ]
  27759. ))
  27760. characterMakers.push(() => makeCharacter(
  27761. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27762. {
  27763. front: {
  27764. height: math.unit(2, "meters"),
  27765. weight: math.unit(180, "lb"),
  27766. name: "Front",
  27767. image: {
  27768. source: "./media/characters/acidrenamon/front.svg",
  27769. extra: 987 / 890,
  27770. bottom: 22.8 / 1009
  27771. }
  27772. },
  27773. back: {
  27774. height: math.unit(2, "meters"),
  27775. weight: math.unit(180, "lb"),
  27776. name: "Back",
  27777. image: {
  27778. source: "./media/characters/acidrenamon/back.svg",
  27779. extra: 983 / 891,
  27780. bottom: 8.4 / 992
  27781. }
  27782. },
  27783. head: {
  27784. height: math.unit(1.92, "feet"),
  27785. name: "Head",
  27786. image: {
  27787. source: "./media/characters/acidrenamon/head.svg"
  27788. }
  27789. },
  27790. rump: {
  27791. height: math.unit(1.72, "feet"),
  27792. name: "Rump",
  27793. image: {
  27794. source: "./media/characters/acidrenamon/rump.svg"
  27795. }
  27796. },
  27797. tail: {
  27798. height: math.unit(4.2, "feet"),
  27799. name: "Tail",
  27800. image: {
  27801. source: "./media/characters/acidrenamon/tail.svg"
  27802. }
  27803. },
  27804. },
  27805. [
  27806. {
  27807. name: "Normal",
  27808. height: math.unit(2, "meters"),
  27809. default: true
  27810. },
  27811. {
  27812. name: "Minimacro",
  27813. height: math.unit(7, "meters")
  27814. },
  27815. {
  27816. name: "Macro",
  27817. height: math.unit(200, "meters")
  27818. },
  27819. {
  27820. name: "Gigamacro",
  27821. height: math.unit(0.2, "earths")
  27822. },
  27823. ]
  27824. ))
  27825. characterMakers.push(() => makeCharacter(
  27826. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27827. {
  27828. front: {
  27829. height: math.unit(152, "feet"),
  27830. name: "Front",
  27831. image: {
  27832. source: "./media/characters/kenzie-lee/front.svg",
  27833. extra: 1869/1774,
  27834. bottom: 128/1997
  27835. }
  27836. },
  27837. side: {
  27838. height: math.unit(86, "feet"),
  27839. name: "Side",
  27840. image: {
  27841. source: "./media/characters/kenzie-lee/side.svg",
  27842. extra: 930/815,
  27843. bottom: 177/1107
  27844. }
  27845. },
  27846. paw: {
  27847. height: math.unit(15, "feet"),
  27848. name: "Paw",
  27849. image: {
  27850. source: "./media/characters/kenzie-lee/paw.svg"
  27851. }
  27852. },
  27853. },
  27854. [
  27855. {
  27856. name: "Micro",
  27857. height: math.unit(1.5, "inches")
  27858. },
  27859. {
  27860. name: "Normal",
  27861. height: math.unit(152, "feet"),
  27862. default: true
  27863. },
  27864. {
  27865. name: "Megamacro",
  27866. height: math.unit(7, "miles")
  27867. },
  27868. {
  27869. name: "Gigamacro",
  27870. height: math.unit(8000, "miles")
  27871. },
  27872. ]
  27873. ))
  27874. characterMakers.push(() => makeCharacter(
  27875. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27876. {
  27877. side: {
  27878. height: math.unit(6, "feet"),
  27879. weight: math.unit(150, "lb"),
  27880. name: "Side",
  27881. image: {
  27882. source: "./media/characters/withers/side.svg",
  27883. extra: 1830 / 1728,
  27884. bottom: 96 / 1927
  27885. }
  27886. },
  27887. front: {
  27888. height: math.unit(6, "feet"),
  27889. weight: math.unit(150, "lb"),
  27890. name: "Front",
  27891. image: {
  27892. source: "./media/characters/withers/front.svg",
  27893. extra: 1514 / 1438,
  27894. bottom: 118 / 1632
  27895. }
  27896. },
  27897. },
  27898. [
  27899. {
  27900. name: "Macro",
  27901. height: math.unit(168, "feet"),
  27902. default: true
  27903. },
  27904. {
  27905. name: "Megamacro",
  27906. height: math.unit(15, "miles")
  27907. }
  27908. ]
  27909. ))
  27910. characterMakers.push(() => makeCharacter(
  27911. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27912. {
  27913. front: {
  27914. height: math.unit(6 + 7 / 12, "feet"),
  27915. weight: math.unit(250, "lb"),
  27916. name: "Front",
  27917. image: {
  27918. source: "./media/characters/nemoskii/front.svg",
  27919. extra: 2270 / 1734,
  27920. bottom: 86 / 2354
  27921. }
  27922. },
  27923. back: {
  27924. height: math.unit(6 + 7 / 12, "feet"),
  27925. weight: math.unit(250, "lb"),
  27926. name: "Back",
  27927. image: {
  27928. source: "./media/characters/nemoskii/back.svg",
  27929. extra: 1845 / 1788,
  27930. bottom: 10.5 / 1852
  27931. }
  27932. },
  27933. head: {
  27934. height: math.unit(1.31, "feet"),
  27935. name: "Head",
  27936. image: {
  27937. source: "./media/characters/nemoskii/head.svg"
  27938. }
  27939. },
  27940. },
  27941. [
  27942. {
  27943. name: "Micro",
  27944. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27945. },
  27946. {
  27947. name: "Normal",
  27948. height: math.unit(6 + 7 / 12, "feet"),
  27949. default: true
  27950. },
  27951. {
  27952. name: "Macro",
  27953. height: math.unit((6 + 7 / 12) * 150, "feet")
  27954. },
  27955. {
  27956. name: "Macro+",
  27957. height: math.unit((6 + 7 / 12) * 500, "feet")
  27958. },
  27959. {
  27960. name: "Megamacro",
  27961. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27962. },
  27963. ]
  27964. ))
  27965. characterMakers.push(() => makeCharacter(
  27966. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27967. {
  27968. front: {
  27969. height: math.unit(1, "mile"),
  27970. weight: math.unit(265261.9, "lb"),
  27971. name: "Front",
  27972. image: {
  27973. source: "./media/characters/shui/front.svg",
  27974. extra: 1633 / 1564,
  27975. bottom: 91.5 / 1726
  27976. }
  27977. },
  27978. },
  27979. [
  27980. {
  27981. name: "Macro",
  27982. height: math.unit(1, "mile"),
  27983. default: true
  27984. },
  27985. ]
  27986. ))
  27987. characterMakers.push(() => makeCharacter(
  27988. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27989. {
  27990. front: {
  27991. height: math.unit(12 + 6 / 12, "feet"),
  27992. weight: math.unit(1342, "lb"),
  27993. name: "Front",
  27994. image: {
  27995. source: "./media/characters/arokh-takakura/front.svg",
  27996. extra: 1089 / 1043,
  27997. bottom: 77.4 / 1176.7
  27998. }
  27999. },
  28000. back: {
  28001. height: math.unit(12 + 6 / 12, "feet"),
  28002. weight: math.unit(1342, "lb"),
  28003. name: "Back",
  28004. image: {
  28005. source: "./media/characters/arokh-takakura/back.svg",
  28006. extra: 1046 / 1019,
  28007. bottom: 102 / 1150
  28008. }
  28009. },
  28010. },
  28011. [
  28012. {
  28013. name: "Big",
  28014. height: math.unit(12 + 6 / 12, "feet"),
  28015. default: true
  28016. },
  28017. ]
  28018. ))
  28019. characterMakers.push(() => makeCharacter(
  28020. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28021. {
  28022. front: {
  28023. height: math.unit(5 + 6 / 12, "feet"),
  28024. weight: math.unit(150, "lb"),
  28025. name: "Front",
  28026. image: {
  28027. source: "./media/characters/theo/front.svg",
  28028. extra: 1184 / 1131,
  28029. bottom: 7.4 / 1191
  28030. }
  28031. },
  28032. },
  28033. [
  28034. {
  28035. name: "Micro",
  28036. height: math.unit(5, "inches")
  28037. },
  28038. {
  28039. name: "Normal",
  28040. height: math.unit(5 + 6 / 12, "feet"),
  28041. default: true
  28042. },
  28043. ]
  28044. ))
  28045. characterMakers.push(() => makeCharacter(
  28046. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28047. {
  28048. front: {
  28049. height: math.unit(5 + 9 / 12, "feet"),
  28050. weight: math.unit(130, "lb"),
  28051. name: "Front",
  28052. image: {
  28053. source: "./media/characters/cecelia-swift/front.svg",
  28054. extra: 502 / 484,
  28055. bottom: 23 / 523
  28056. }
  28057. },
  28058. back: {
  28059. height: math.unit(5 + 9 / 12, "feet"),
  28060. weight: math.unit(130, "lb"),
  28061. name: "Back",
  28062. image: {
  28063. source: "./media/characters/cecelia-swift/back.svg",
  28064. extra: 499 / 485,
  28065. bottom: 12 / 511
  28066. }
  28067. },
  28068. head: {
  28069. height: math.unit(0.90, "feet"),
  28070. name: "Head",
  28071. image: {
  28072. source: "./media/characters/cecelia-swift/head.svg"
  28073. }
  28074. },
  28075. rump: {
  28076. height: math.unit(1.75, "feet"),
  28077. name: "Rump",
  28078. image: {
  28079. source: "./media/characters/cecelia-swift/rump.svg"
  28080. }
  28081. },
  28082. },
  28083. [
  28084. {
  28085. name: "Normal",
  28086. height: math.unit(5 + 9 / 12, "feet"),
  28087. default: true
  28088. },
  28089. {
  28090. name: "Big",
  28091. height: math.unit(50, "feet")
  28092. },
  28093. {
  28094. name: "Macro",
  28095. height: math.unit(100, "feet")
  28096. },
  28097. {
  28098. name: "Macro+",
  28099. height: math.unit(500, "feet")
  28100. },
  28101. {
  28102. name: "Macro++",
  28103. height: math.unit(1000, "feet")
  28104. },
  28105. ]
  28106. ))
  28107. characterMakers.push(() => makeCharacter(
  28108. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28109. {
  28110. front: {
  28111. height: math.unit(6, "feet"),
  28112. weight: math.unit(150, "lb"),
  28113. name: "Front",
  28114. image: {
  28115. source: "./media/characters/kaunan/front.svg",
  28116. extra: 2890 / 2523,
  28117. bottom: 49 / 2939
  28118. }
  28119. },
  28120. },
  28121. [
  28122. {
  28123. name: "Macro",
  28124. height: math.unit(150, "feet"),
  28125. default: true
  28126. },
  28127. ]
  28128. ))
  28129. characterMakers.push(() => makeCharacter(
  28130. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28131. {
  28132. front: {
  28133. height: math.unit(175, "cm"),
  28134. weight: math.unit(60, "kg"),
  28135. name: "Front",
  28136. image: {
  28137. source: "./media/characters/fei/front.svg",
  28138. extra: 1873/1723,
  28139. bottom: 53/1926
  28140. }
  28141. },
  28142. },
  28143. [
  28144. {
  28145. name: "Mortal",
  28146. height: math.unit(175, "cm")
  28147. },
  28148. {
  28149. name: "Normal",
  28150. height: math.unit(3500, "m"),
  28151. default: true
  28152. },
  28153. {
  28154. name: "Stroll",
  28155. height: math.unit(17.5, "km")
  28156. },
  28157. {
  28158. name: "Showoff",
  28159. height: math.unit(175, "km")
  28160. },
  28161. ]
  28162. ))
  28163. characterMakers.push(() => makeCharacter(
  28164. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28165. {
  28166. front: {
  28167. height: math.unit(7, "feet"),
  28168. weight: math.unit(1000, "kg"),
  28169. name: "Front",
  28170. image: {
  28171. source: "./media/characters/edrax/front.svg",
  28172. extra: 2838 / 2550,
  28173. bottom: 130 / 2968
  28174. }
  28175. },
  28176. },
  28177. [
  28178. {
  28179. name: "Small",
  28180. height: math.unit(7, "feet")
  28181. },
  28182. {
  28183. name: "Normal",
  28184. height: math.unit(1500, "meters")
  28185. },
  28186. {
  28187. name: "Mega",
  28188. height: math.unit(12000000, "km"),
  28189. default: true
  28190. },
  28191. {
  28192. name: "Megamacro",
  28193. height: math.unit(10600000, "lightyears")
  28194. },
  28195. {
  28196. name: "Hypermacro",
  28197. height: math.unit(256, "yottameters")
  28198. },
  28199. ]
  28200. ))
  28201. characterMakers.push(() => makeCharacter(
  28202. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28203. {
  28204. front: {
  28205. height: math.unit(10, "feet"),
  28206. weight: math.unit(750, "lb"),
  28207. name: "Front",
  28208. image: {
  28209. source: "./media/characters/clove/front.svg",
  28210. extra: 1918/1751,
  28211. bottom: 52/1970
  28212. }
  28213. },
  28214. back: {
  28215. height: math.unit(10, "feet"),
  28216. weight: math.unit(750, "lb"),
  28217. name: "Back",
  28218. image: {
  28219. source: "./media/characters/clove/back.svg",
  28220. extra: 1912/1747,
  28221. bottom: 50/1962
  28222. }
  28223. },
  28224. },
  28225. [
  28226. {
  28227. name: "Normal",
  28228. height: math.unit(10, "feet"),
  28229. default: true
  28230. },
  28231. ]
  28232. ))
  28233. characterMakers.push(() => makeCharacter(
  28234. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28235. {
  28236. front: {
  28237. height: math.unit(4, "feet"),
  28238. weight: math.unit(50, "lb"),
  28239. name: "Front",
  28240. image: {
  28241. source: "./media/characters/alex-rabbit/front.svg",
  28242. extra: 507 / 458,
  28243. bottom: 18.5 / 527
  28244. }
  28245. },
  28246. back: {
  28247. height: math.unit(4, "feet"),
  28248. weight: math.unit(50, "lb"),
  28249. name: "Back",
  28250. image: {
  28251. source: "./media/characters/alex-rabbit/back.svg",
  28252. extra: 502 / 460,
  28253. bottom: 18.9 / 521
  28254. }
  28255. },
  28256. },
  28257. [
  28258. {
  28259. name: "Normal",
  28260. height: math.unit(4, "feet"),
  28261. default: true
  28262. },
  28263. ]
  28264. ))
  28265. characterMakers.push(() => makeCharacter(
  28266. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28267. {
  28268. front: {
  28269. height: math.unit(1 + 3 / 12, "feet"),
  28270. weight: math.unit(80, "lb"),
  28271. name: "Front",
  28272. image: {
  28273. source: "./media/characters/zander-rose/front.svg",
  28274. extra: 916 / 797,
  28275. bottom: 17 / 933
  28276. }
  28277. },
  28278. back: {
  28279. height: math.unit(1 + 3 / 12, "feet"),
  28280. weight: math.unit(80, "lb"),
  28281. name: "Back",
  28282. image: {
  28283. source: "./media/characters/zander-rose/back.svg",
  28284. extra: 903 / 779,
  28285. bottom: 31 / 934
  28286. }
  28287. },
  28288. },
  28289. [
  28290. {
  28291. name: "Normal",
  28292. height: math.unit(1 + 3 / 12, "feet"),
  28293. default: true
  28294. },
  28295. ]
  28296. ))
  28297. characterMakers.push(() => makeCharacter(
  28298. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28299. {
  28300. anthro: {
  28301. height: math.unit(6, "feet"),
  28302. weight: math.unit(150, "lb"),
  28303. name: "Anthro",
  28304. image: {
  28305. source: "./media/characters/razz/anthro.svg",
  28306. extra: 1437 / 1343,
  28307. bottom: 48 / 1485
  28308. }
  28309. },
  28310. feral: {
  28311. height: math.unit(6, "feet"),
  28312. weight: math.unit(150, "lb"),
  28313. name: "Feral",
  28314. image: {
  28315. source: "./media/characters/razz/feral.svg",
  28316. extra: 2569 / 1385,
  28317. bottom: 95 / 2664
  28318. }
  28319. },
  28320. },
  28321. [
  28322. {
  28323. name: "Normal",
  28324. height: math.unit(6, "feet"),
  28325. default: true
  28326. },
  28327. ]
  28328. ))
  28329. characterMakers.push(() => makeCharacter(
  28330. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28331. {
  28332. front: {
  28333. height: math.unit(9 + 4 / 12, "feet"),
  28334. weight: math.unit(500, "lb"),
  28335. name: "Front",
  28336. image: {
  28337. source: "./media/characters/morrigan/front.svg",
  28338. extra: 2707 / 2579,
  28339. bottom: 156 / 2863
  28340. }
  28341. },
  28342. },
  28343. [
  28344. {
  28345. name: "Normal",
  28346. height: math.unit(9 + 4 / 12, "feet"),
  28347. default: true
  28348. },
  28349. ]
  28350. ))
  28351. characterMakers.push(() => makeCharacter(
  28352. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28353. {
  28354. front: {
  28355. height: math.unit(5, "stories"),
  28356. weight: math.unit(4000, "lb"),
  28357. name: "Front",
  28358. image: {
  28359. source: "./media/characters/jenene/front.svg",
  28360. extra: 1780 / 1710,
  28361. bottom: 57 / 1837
  28362. }
  28363. },
  28364. },
  28365. [
  28366. {
  28367. name: "Normal",
  28368. height: math.unit(5, "stories"),
  28369. default: true
  28370. },
  28371. ]
  28372. ))
  28373. characterMakers.push(() => makeCharacter(
  28374. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28375. {
  28376. taurSfw: {
  28377. height: math.unit(10, "meters"),
  28378. weight: math.unit(17500, "kg"),
  28379. name: "Taur",
  28380. image: {
  28381. source: "./media/characters/faey/taur-sfw.svg",
  28382. extra: 1200 / 968,
  28383. bottom: 41 / 1241
  28384. }
  28385. },
  28386. chestmaw: {
  28387. height: math.unit(2.01, "meters"),
  28388. name: "Chestmaw",
  28389. image: {
  28390. source: "./media/characters/faey/chestmaw.svg"
  28391. }
  28392. },
  28393. foot: {
  28394. height: math.unit(2.43, "meters"),
  28395. name: "Foot",
  28396. image: {
  28397. source: "./media/characters/faey/foot.svg"
  28398. }
  28399. },
  28400. jaws: {
  28401. height: math.unit(1.66, "meters"),
  28402. name: "Jaws",
  28403. image: {
  28404. source: "./media/characters/faey/jaws.svg"
  28405. }
  28406. },
  28407. tongues: {
  28408. height: math.unit(2.01, "meters"),
  28409. name: "Tongues",
  28410. image: {
  28411. source: "./media/characters/faey/tongues.svg"
  28412. }
  28413. },
  28414. },
  28415. [
  28416. {
  28417. name: "Small",
  28418. height: math.unit(10, "meters"),
  28419. default: true
  28420. },
  28421. {
  28422. name: "Big",
  28423. height: math.unit(500000, "km")
  28424. },
  28425. ]
  28426. ))
  28427. characterMakers.push(() => makeCharacter(
  28428. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28429. {
  28430. front: {
  28431. height: math.unit(7, "feet"),
  28432. weight: math.unit(275, "lb"),
  28433. name: "Front",
  28434. image: {
  28435. source: "./media/characters/roku/front.svg",
  28436. extra: 903 / 878,
  28437. bottom: 37 / 940
  28438. }
  28439. },
  28440. },
  28441. [
  28442. {
  28443. name: "Normal",
  28444. height: math.unit(7, "feet"),
  28445. default: true
  28446. },
  28447. {
  28448. name: "Macro",
  28449. height: math.unit(500, "feet")
  28450. },
  28451. {
  28452. name: "Megamacro",
  28453. height: math.unit(200, "miles")
  28454. },
  28455. ]
  28456. ))
  28457. characterMakers.push(() => makeCharacter(
  28458. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28459. {
  28460. front: {
  28461. height: math.unit(6 + 2 / 12, "feet"),
  28462. weight: math.unit(150, "lb"),
  28463. name: "Front",
  28464. image: {
  28465. source: "./media/characters/lira/front.svg",
  28466. extra: 1727 / 1605,
  28467. bottom: 26 / 1753
  28468. }
  28469. },
  28470. back: {
  28471. height: math.unit(6 + 2 / 12, "feet"),
  28472. weight: math.unit(150, "lb"),
  28473. name: "Back",
  28474. image: {
  28475. source: "./media/characters/lira/back.svg",
  28476. extra: 1713/1621,
  28477. bottom: 20/1733
  28478. }
  28479. },
  28480. hand: {
  28481. height: math.unit(0.75, "feet"),
  28482. name: "Hand",
  28483. image: {
  28484. source: "./media/characters/lira/hand.svg"
  28485. }
  28486. },
  28487. maw: {
  28488. height: math.unit(0.65, "feet"),
  28489. name: "Maw",
  28490. image: {
  28491. source: "./media/characters/lira/maw.svg"
  28492. }
  28493. },
  28494. pawDigi: {
  28495. height: math.unit(1.6, "feet"),
  28496. name: "Paw Digi",
  28497. image: {
  28498. source: "./media/characters/lira/paw-digi.svg"
  28499. }
  28500. },
  28501. pawPlanti: {
  28502. height: math.unit(1.4, "feet"),
  28503. name: "Paw Planti",
  28504. image: {
  28505. source: "./media/characters/lira/paw-planti.svg"
  28506. }
  28507. },
  28508. },
  28509. [
  28510. {
  28511. name: "Normal",
  28512. height: math.unit(6 + 2 / 12, "feet"),
  28513. default: true
  28514. },
  28515. {
  28516. name: "Macro",
  28517. height: math.unit(100, "feet")
  28518. },
  28519. {
  28520. name: "Macro²",
  28521. height: math.unit(1600, "feet")
  28522. },
  28523. {
  28524. name: "Planetary",
  28525. height: math.unit(20, "earths")
  28526. },
  28527. ]
  28528. ))
  28529. characterMakers.push(() => makeCharacter(
  28530. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28531. {
  28532. front: {
  28533. height: math.unit(6, "feet"),
  28534. weight: math.unit(150, "lb"),
  28535. name: "Front",
  28536. image: {
  28537. source: "./media/characters/hadjet/front.svg",
  28538. extra: 1480 / 1346,
  28539. bottom: 26 / 1506
  28540. }
  28541. },
  28542. frontNsfw: {
  28543. height: math.unit(6, "feet"),
  28544. weight: math.unit(150, "lb"),
  28545. name: "Front (NSFW)",
  28546. image: {
  28547. source: "./media/characters/hadjet/front-nsfw.svg",
  28548. extra: 1440 / 1358,
  28549. bottom: 52 / 1492
  28550. }
  28551. },
  28552. },
  28553. [
  28554. {
  28555. name: "Macro",
  28556. height: math.unit(10, "stories"),
  28557. default: true
  28558. },
  28559. {
  28560. name: "Megamacro",
  28561. height: math.unit(1.5, "miles")
  28562. },
  28563. {
  28564. name: "Megamacro+",
  28565. height: math.unit(5, "miles")
  28566. },
  28567. ]
  28568. ))
  28569. characterMakers.push(() => makeCharacter(
  28570. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28571. {
  28572. side: {
  28573. height: math.unit(106, "feet"),
  28574. weight: math.unit(500, "tonnes"),
  28575. name: "Side",
  28576. image: {
  28577. source: "./media/characters/kodran/side.svg",
  28578. extra: 553 / 480,
  28579. bottom: 33 / 586
  28580. }
  28581. },
  28582. front: {
  28583. height: math.unit(132, "feet"),
  28584. weight: math.unit(500, "tonnes"),
  28585. name: "Front",
  28586. image: {
  28587. source: "./media/characters/kodran/front.svg",
  28588. extra: 667 / 643,
  28589. bottom: 42 / 709
  28590. }
  28591. },
  28592. flying: {
  28593. height: math.unit(350, "feet"),
  28594. weight: math.unit(500, "tonnes"),
  28595. name: "Flying",
  28596. image: {
  28597. source: "./media/characters/kodran/flying.svg"
  28598. }
  28599. },
  28600. foot: {
  28601. height: math.unit(33, "feet"),
  28602. name: "Foot",
  28603. image: {
  28604. source: "./media/characters/kodran/foot.svg"
  28605. }
  28606. },
  28607. footFront: {
  28608. height: math.unit(19, "feet"),
  28609. name: "Foot (Front)",
  28610. image: {
  28611. source: "./media/characters/kodran/foot-front.svg",
  28612. extra: 261 / 261,
  28613. bottom: 91 / 352
  28614. }
  28615. },
  28616. headFront: {
  28617. height: math.unit(53, "feet"),
  28618. name: "Head (Front)",
  28619. image: {
  28620. source: "./media/characters/kodran/head-front.svg"
  28621. }
  28622. },
  28623. headSide: {
  28624. height: math.unit(65, "feet"),
  28625. name: "Head (Side)",
  28626. image: {
  28627. source: "./media/characters/kodran/head-side.svg"
  28628. }
  28629. },
  28630. throat: {
  28631. height: math.unit(79, "feet"),
  28632. name: "Throat",
  28633. image: {
  28634. source: "./media/characters/kodran/throat.svg"
  28635. }
  28636. },
  28637. },
  28638. [
  28639. {
  28640. name: "Large",
  28641. height: math.unit(106, "feet"),
  28642. default: true
  28643. },
  28644. ]
  28645. ))
  28646. characterMakers.push(() => makeCharacter(
  28647. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28648. {
  28649. side: {
  28650. height: math.unit(11, "feet"),
  28651. weight: math.unit(150, "lb"),
  28652. name: "Side",
  28653. image: {
  28654. source: "./media/characters/pyxaron/side.svg",
  28655. extra: 305 / 195,
  28656. bottom: 17 / 322
  28657. }
  28658. },
  28659. },
  28660. [
  28661. {
  28662. name: "Normal",
  28663. height: math.unit(11, "feet"),
  28664. default: true
  28665. },
  28666. ]
  28667. ))
  28668. characterMakers.push(() => makeCharacter(
  28669. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28670. {
  28671. front: {
  28672. height: math.unit(6, "feet"),
  28673. weight: math.unit(150, "lb"),
  28674. name: "Front",
  28675. image: {
  28676. source: "./media/characters/meep/front.svg",
  28677. extra: 88 / 80,
  28678. bottom: 6 / 94
  28679. }
  28680. },
  28681. },
  28682. [
  28683. {
  28684. name: "Fun Sized",
  28685. height: math.unit(2, "inches"),
  28686. default: true
  28687. },
  28688. {
  28689. name: "Friend Sized",
  28690. height: math.unit(8, "inches")
  28691. },
  28692. ]
  28693. ))
  28694. characterMakers.push(() => makeCharacter(
  28695. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28696. {
  28697. front: {
  28698. height: math.unit(15, "feet"),
  28699. weight: math.unit(2500, "lb"),
  28700. name: "Front",
  28701. image: {
  28702. source: "./media/characters/holly-rabbit/front.svg",
  28703. extra: 1433 / 1233,
  28704. bottom: 125 / 1558
  28705. }
  28706. },
  28707. dick: {
  28708. height: math.unit(4.6, "feet"),
  28709. name: "Dick",
  28710. image: {
  28711. source: "./media/characters/holly-rabbit/dick.svg"
  28712. }
  28713. },
  28714. },
  28715. [
  28716. {
  28717. name: "Normal",
  28718. height: math.unit(15, "feet"),
  28719. default: true
  28720. },
  28721. {
  28722. name: "Macro",
  28723. height: math.unit(250, "feet")
  28724. },
  28725. {
  28726. name: "Macro+",
  28727. height: math.unit(2500, "feet")
  28728. },
  28729. ]
  28730. ))
  28731. characterMakers.push(() => makeCharacter(
  28732. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28733. {
  28734. front: {
  28735. height: math.unit(3.02, "meters"),
  28736. weight: math.unit(500, "kg"),
  28737. name: "Front",
  28738. image: {
  28739. source: "./media/characters/drena/front.svg",
  28740. extra: 282 / 243,
  28741. bottom: 8 / 290
  28742. }
  28743. },
  28744. side: {
  28745. height: math.unit(3.02, "meters"),
  28746. weight: math.unit(500, "kg"),
  28747. name: "Side",
  28748. image: {
  28749. source: "./media/characters/drena/side.svg",
  28750. extra: 280 / 245,
  28751. bottom: 10 / 290
  28752. }
  28753. },
  28754. back: {
  28755. height: math.unit(3.02, "meters"),
  28756. weight: math.unit(500, "kg"),
  28757. name: "Back",
  28758. image: {
  28759. source: "./media/characters/drena/back.svg",
  28760. extra: 278 / 243,
  28761. bottom: 2 / 280
  28762. }
  28763. },
  28764. foot: {
  28765. height: math.unit(0.75, "meters"),
  28766. name: "Foot",
  28767. image: {
  28768. source: "./media/characters/drena/foot.svg"
  28769. }
  28770. },
  28771. maw: {
  28772. height: math.unit(0.82, "meters"),
  28773. name: "Maw",
  28774. image: {
  28775. source: "./media/characters/drena/maw.svg"
  28776. }
  28777. },
  28778. rump: {
  28779. height: math.unit(0.93, "meters"),
  28780. name: "Rump",
  28781. image: {
  28782. source: "./media/characters/drena/rump.svg"
  28783. }
  28784. },
  28785. },
  28786. [
  28787. {
  28788. name: "Normal",
  28789. height: math.unit(3.02, "meters"),
  28790. default: true
  28791. },
  28792. ]
  28793. ))
  28794. characterMakers.push(() => makeCharacter(
  28795. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28796. {
  28797. front: {
  28798. height: math.unit(6 + 4 / 12, "feet"),
  28799. weight: math.unit(250, "lb"),
  28800. name: "Front",
  28801. image: {
  28802. source: "./media/characters/remmyzilla/front.svg",
  28803. extra: 4033 / 3588,
  28804. bottom: 123 / 4156
  28805. }
  28806. },
  28807. back: {
  28808. height: math.unit(6 + 4 / 12, "feet"),
  28809. weight: math.unit(250, "lb"),
  28810. name: "Back",
  28811. image: {
  28812. source: "./media/characters/remmyzilla/back.svg",
  28813. extra: 2687 / 2555,
  28814. bottom: 48 / 2735
  28815. }
  28816. },
  28817. paw: {
  28818. height: math.unit(1.73, "feet"),
  28819. name: "Paw",
  28820. image: {
  28821. source: "./media/characters/remmyzilla/paw.svg"
  28822. }
  28823. },
  28824. maw: {
  28825. height: math.unit(1.73, "feet"),
  28826. name: "Maw",
  28827. image: {
  28828. source: "./media/characters/remmyzilla/maw.svg"
  28829. }
  28830. },
  28831. },
  28832. [
  28833. {
  28834. name: "Normal",
  28835. height: math.unit(6 + 4 / 12, "feet")
  28836. },
  28837. {
  28838. name: "Minimacro",
  28839. height: math.unit(12 + 8 / 12, "feet")
  28840. },
  28841. {
  28842. name: "Normal",
  28843. height: math.unit(640, "feet"),
  28844. default: true
  28845. },
  28846. {
  28847. name: "Megamacro",
  28848. height: math.unit(6400, "feet")
  28849. },
  28850. {
  28851. name: "Gigamacro",
  28852. height: math.unit(64000, "miles")
  28853. },
  28854. ]
  28855. ))
  28856. characterMakers.push(() => makeCharacter(
  28857. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28858. {
  28859. front: {
  28860. height: math.unit(2.5, "meters"),
  28861. weight: math.unit(300, "lb"),
  28862. name: "Front",
  28863. image: {
  28864. source: "./media/characters/lawrence/front.svg",
  28865. extra: 357 / 335,
  28866. bottom: 30 / 387
  28867. }
  28868. },
  28869. back: {
  28870. height: math.unit(2.5, "meters"),
  28871. weight: math.unit(300, "lb"),
  28872. name: "Back",
  28873. image: {
  28874. source: "./media/characters/lawrence/back.svg",
  28875. extra: 357 / 338,
  28876. bottom: 16 / 373
  28877. }
  28878. },
  28879. head: {
  28880. height: math.unit(0.9, "meter"),
  28881. name: "Head",
  28882. image: {
  28883. source: "./media/characters/lawrence/head.svg"
  28884. }
  28885. },
  28886. maw: {
  28887. height: math.unit(0.7, "meter"),
  28888. name: "Maw",
  28889. image: {
  28890. source: "./media/characters/lawrence/maw.svg"
  28891. }
  28892. },
  28893. footBottom: {
  28894. height: math.unit(0.5, "meter"),
  28895. name: "Foot (Bottom)",
  28896. image: {
  28897. source: "./media/characters/lawrence/foot-bottom.svg"
  28898. }
  28899. },
  28900. footTop: {
  28901. height: math.unit(0.5, "meter"),
  28902. name: "Foot (Top)",
  28903. image: {
  28904. source: "./media/characters/lawrence/foot-top.svg"
  28905. }
  28906. },
  28907. },
  28908. [
  28909. {
  28910. name: "Normal",
  28911. height: math.unit(2.5, "meters"),
  28912. default: true
  28913. },
  28914. {
  28915. name: "Macro",
  28916. height: math.unit(95, "meters")
  28917. },
  28918. {
  28919. name: "Megamacro",
  28920. height: math.unit(150, "km")
  28921. },
  28922. ]
  28923. ))
  28924. characterMakers.push(() => makeCharacter(
  28925. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28926. {
  28927. front: {
  28928. height: math.unit(4.2, "meters"),
  28929. name: "Front",
  28930. image: {
  28931. source: "./media/characters/sydney/front.svg",
  28932. extra: 1323 / 1277,
  28933. bottom: 111 / 1434
  28934. }
  28935. },
  28936. },
  28937. [
  28938. {
  28939. name: "Normal",
  28940. height: math.unit(4.2, "meters"),
  28941. default: true
  28942. },
  28943. ]
  28944. ))
  28945. characterMakers.push(() => makeCharacter(
  28946. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28947. {
  28948. back: {
  28949. height: math.unit(201, "feet"),
  28950. name: "Back",
  28951. image: {
  28952. source: "./media/characters/jessica/back.svg",
  28953. extra: 273 / 259,
  28954. bottom: 7 / 280
  28955. }
  28956. },
  28957. },
  28958. [
  28959. {
  28960. name: "Normal",
  28961. height: math.unit(201, "feet"),
  28962. default: true
  28963. },
  28964. {
  28965. name: "Megamacro",
  28966. height: math.unit(8, "miles")
  28967. },
  28968. ]
  28969. ))
  28970. characterMakers.push(() => makeCharacter(
  28971. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28972. {
  28973. side: {
  28974. height: math.unit(5.6, "m"),
  28975. weight: math.unit(8000, "kg"),
  28976. name: "Side",
  28977. image: {
  28978. source: "./media/characters/victoria/side.svg",
  28979. extra: 1542/1229,
  28980. bottom: 124/1666
  28981. }
  28982. },
  28983. maw: {
  28984. height: math.unit(7.14, "feet"),
  28985. name: "Maw",
  28986. image: {
  28987. source: "./media/characters/victoria/maw.svg"
  28988. }
  28989. },
  28990. },
  28991. [
  28992. {
  28993. name: "Normal",
  28994. height: math.unit(5.6, "m"),
  28995. default: true
  28996. },
  28997. ]
  28998. ))
  28999. characterMakers.push(() => makeCharacter(
  29000. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29001. {
  29002. front: {
  29003. height: math.unit(5 + 6 / 12, "feet"),
  29004. name: "Front",
  29005. image: {
  29006. source: "./media/characters/cat/front.svg",
  29007. extra: 1449/1295,
  29008. bottom: 34/1483
  29009. }
  29010. },
  29011. back: {
  29012. height: math.unit(5 + 6 / 12, "feet"),
  29013. name: "Back",
  29014. image: {
  29015. source: "./media/characters/cat/back.svg",
  29016. extra: 1466/1301,
  29017. bottom: 19/1485
  29018. }
  29019. },
  29020. taur: {
  29021. height: math.unit(7, "feet"),
  29022. name: "Taur",
  29023. image: {
  29024. source: "./media/characters/cat/taur.svg",
  29025. extra: 1389/1233,
  29026. bottom: 83/1472
  29027. }
  29028. },
  29029. lucarioFront: {
  29030. height: math.unit(4, "feet"),
  29031. name: "Lucario (Front)",
  29032. image: {
  29033. source: "./media/characters/cat/lucario-front.svg",
  29034. extra: 1149/1019,
  29035. bottom: 84/1233
  29036. }
  29037. },
  29038. lucarioBack: {
  29039. height: math.unit(4, "feet"),
  29040. name: "Lucario (Back)",
  29041. image: {
  29042. source: "./media/characters/cat/lucario-back.svg",
  29043. extra: 1190/1059,
  29044. bottom: 33/1223
  29045. }
  29046. },
  29047. megaLucario: {
  29048. height: math.unit(4, "feet"),
  29049. name: "Mega Lucario",
  29050. image: {
  29051. source: "./media/characters/cat/mega-lucario.svg",
  29052. extra: 1515 / 1319,
  29053. bottom: 63 / 1578
  29054. }
  29055. },
  29056. nickit: {
  29057. height: math.unit(2, "feet"),
  29058. name: "Nickit",
  29059. image: {
  29060. source: "./media/characters/cat/nickit.svg",
  29061. extra: 1980 / 1585,
  29062. bottom: 102 / 2082
  29063. }
  29064. },
  29065. lopunnyFront: {
  29066. height: math.unit(5, "feet"),
  29067. name: "Lopunny (Front)",
  29068. image: {
  29069. source: "./media/characters/cat/lopunny-front.svg",
  29070. extra: 1782 / 1469,
  29071. bottom: 38 / 1820
  29072. }
  29073. },
  29074. lopunnyBack: {
  29075. height: math.unit(5, "feet"),
  29076. name: "Lopunny (Back)",
  29077. image: {
  29078. source: "./media/characters/cat/lopunny-back.svg",
  29079. extra: 1660 / 1490,
  29080. bottom: 25 / 1685
  29081. }
  29082. },
  29083. },
  29084. [
  29085. {
  29086. name: "Really small",
  29087. height: math.unit(1, "nm")
  29088. },
  29089. {
  29090. name: "Micro",
  29091. height: math.unit(5, "inches")
  29092. },
  29093. {
  29094. name: "Normal",
  29095. height: math.unit(5 + 6 / 12, "feet"),
  29096. default: true
  29097. },
  29098. {
  29099. name: "Macro",
  29100. height: math.unit(50, "feet")
  29101. },
  29102. {
  29103. name: "Macro+",
  29104. height: math.unit(150, "feet")
  29105. },
  29106. {
  29107. name: "Megamacro",
  29108. height: math.unit(100, "miles")
  29109. },
  29110. ]
  29111. ))
  29112. characterMakers.push(() => makeCharacter(
  29113. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29114. {
  29115. front: {
  29116. height: math.unit(63.4, "meters"),
  29117. weight: math.unit(3.28349e+6, "kilograms"),
  29118. name: "Front",
  29119. image: {
  29120. source: "./media/characters/kirina-violet/front.svg",
  29121. extra: 2812 / 2725,
  29122. bottom: 0 / 2812
  29123. }
  29124. },
  29125. back: {
  29126. height: math.unit(63.4, "meters"),
  29127. weight: math.unit(3.28349e+6, "kilograms"),
  29128. name: "Back",
  29129. image: {
  29130. source: "./media/characters/kirina-violet/back.svg",
  29131. extra: 2812 / 2725,
  29132. bottom: 0 / 2812
  29133. }
  29134. },
  29135. mouth: {
  29136. height: math.unit(4.35, "meters"),
  29137. name: "Mouth",
  29138. image: {
  29139. source: "./media/characters/kirina-violet/mouth.svg"
  29140. }
  29141. },
  29142. paw: {
  29143. height: math.unit(5.6, "meters"),
  29144. name: "Paw",
  29145. image: {
  29146. source: "./media/characters/kirina-violet/paw.svg"
  29147. }
  29148. },
  29149. tail: {
  29150. height: math.unit(18, "meters"),
  29151. name: "Tail",
  29152. image: {
  29153. source: "./media/characters/kirina-violet/tail.svg"
  29154. }
  29155. },
  29156. },
  29157. [
  29158. {
  29159. name: "Macro",
  29160. height: math.unit(63.4, "meters"),
  29161. default: true
  29162. },
  29163. ]
  29164. ))
  29165. characterMakers.push(() => makeCharacter(
  29166. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29167. {
  29168. front: {
  29169. height: math.unit(75, "feet"),
  29170. name: "Front",
  29171. image: {
  29172. source: "./media/characters/cat-gigachu/front.svg",
  29173. extra: 1239/1027,
  29174. bottom: 32/1271
  29175. }
  29176. },
  29177. back: {
  29178. height: math.unit(75, "feet"),
  29179. name: "Back",
  29180. image: {
  29181. source: "./media/characters/cat-gigachu/back.svg",
  29182. extra: 1229/1030,
  29183. bottom: 9/1238
  29184. }
  29185. },
  29186. },
  29187. [
  29188. {
  29189. name: "Dynamax",
  29190. height: math.unit(75, "feet"),
  29191. default: true
  29192. },
  29193. ]
  29194. ))
  29195. characterMakers.push(() => makeCharacter(
  29196. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29197. {
  29198. front: {
  29199. height: math.unit(6, "feet"),
  29200. weight: math.unit(150, "lb"),
  29201. name: "Front",
  29202. image: {
  29203. source: "./media/characters/sfaiyan/front.svg",
  29204. extra: 999 / 978,
  29205. bottom: 5 / 1004
  29206. }
  29207. },
  29208. },
  29209. [
  29210. {
  29211. name: "Normal",
  29212. height: math.unit(1.82, "meters")
  29213. },
  29214. {
  29215. name: "Giant",
  29216. height: math.unit(2.27, "km"),
  29217. default: true
  29218. },
  29219. ]
  29220. ))
  29221. characterMakers.push(() => makeCharacter(
  29222. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29223. {
  29224. front: {
  29225. height: math.unit(179, "cm"),
  29226. weight: math.unit(100, "kg"),
  29227. name: "Front",
  29228. image: {
  29229. source: "./media/characters/raunehkeli/front.svg",
  29230. extra: 1934 / 1926,
  29231. bottom: 0 / 1934
  29232. }
  29233. },
  29234. },
  29235. [
  29236. {
  29237. name: "Normal",
  29238. height: math.unit(179, "cm")
  29239. },
  29240. {
  29241. name: "Maximum",
  29242. height: math.unit(575, "meters"),
  29243. default: true
  29244. },
  29245. ]
  29246. ))
  29247. characterMakers.push(() => makeCharacter(
  29248. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29249. {
  29250. front: {
  29251. height: math.unit(6, "feet"),
  29252. weight: math.unit(150, "lb"),
  29253. name: "Front",
  29254. image: {
  29255. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29256. extra: 2625 / 2518,
  29257. bottom: 60 / 2685
  29258. }
  29259. },
  29260. },
  29261. [
  29262. {
  29263. name: "Normal",
  29264. height: math.unit(6 + 2 / 12, "feet")
  29265. },
  29266. {
  29267. name: "Macro",
  29268. height: math.unit(1180, "feet"),
  29269. default: true
  29270. },
  29271. ]
  29272. ))
  29273. characterMakers.push(() => makeCharacter(
  29274. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29275. {
  29276. front: {
  29277. height: math.unit(5 + 6 / 12, "feet"),
  29278. weight: math.unit(108, "lb"),
  29279. name: "Front",
  29280. image: {
  29281. source: "./media/characters/lilith-zott/front.svg",
  29282. extra: 2510 / 2238,
  29283. bottom: 100 / 2610
  29284. }
  29285. },
  29286. frontDressed: {
  29287. height: math.unit(5 + 6 / 12, "feet"),
  29288. weight: math.unit(108, "lb"),
  29289. name: "Front (Dressed)",
  29290. image: {
  29291. source: "./media/characters/lilith-zott/front-dressed.svg",
  29292. extra: 2510 / 2238,
  29293. bottom: 100 / 2610
  29294. }
  29295. },
  29296. },
  29297. [
  29298. {
  29299. name: "Normal",
  29300. height: math.unit(5 + 6 / 12, "feet")
  29301. },
  29302. {
  29303. name: "Macro",
  29304. height: math.unit(1030, "feet"),
  29305. default: true
  29306. },
  29307. ]
  29308. ))
  29309. characterMakers.push(() => makeCharacter(
  29310. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29311. {
  29312. front: {
  29313. height: math.unit(6, "feet"),
  29314. weight: math.unit(150, "lb"),
  29315. name: "Front",
  29316. image: {
  29317. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29318. extra: 2567 / 2435,
  29319. bottom: 39 / 2606
  29320. }
  29321. },
  29322. frontSuper: {
  29323. height: math.unit(6, "feet"),
  29324. name: "Front (Super)",
  29325. image: {
  29326. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29327. extra: 2567 / 2435,
  29328. bottom: 39 / 2606
  29329. }
  29330. },
  29331. },
  29332. [
  29333. {
  29334. name: "Normal",
  29335. height: math.unit(5 + 10 / 12, "feet")
  29336. },
  29337. {
  29338. name: "Macro",
  29339. height: math.unit(1100, "feet"),
  29340. default: true
  29341. },
  29342. ]
  29343. ))
  29344. characterMakers.push(() => makeCharacter(
  29345. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29346. {
  29347. front: {
  29348. height: math.unit(100, "miles"),
  29349. name: "Front",
  29350. image: {
  29351. source: "./media/characters/sona/front.svg",
  29352. extra: 2433 / 2201,
  29353. bottom: 53 / 2486
  29354. }
  29355. },
  29356. foot: {
  29357. height: math.unit(16.1, "miles"),
  29358. name: "Foot",
  29359. image: {
  29360. source: "./media/characters/sona/foot.svg"
  29361. }
  29362. },
  29363. },
  29364. [
  29365. {
  29366. name: "Macro",
  29367. height: math.unit(100, "miles"),
  29368. default: true
  29369. },
  29370. ]
  29371. ))
  29372. characterMakers.push(() => makeCharacter(
  29373. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29374. {
  29375. front: {
  29376. height: math.unit(6, "feet"),
  29377. weight: math.unit(150, "lb"),
  29378. name: "Front",
  29379. image: {
  29380. source: "./media/characters/bailey/front.svg",
  29381. extra: 1778 / 1724,
  29382. bottom: 30 / 1808
  29383. }
  29384. },
  29385. },
  29386. [
  29387. {
  29388. name: "Micro",
  29389. height: math.unit(4, "inches")
  29390. },
  29391. {
  29392. name: "Normal",
  29393. height: math.unit(5 + 5 / 12, "feet"),
  29394. default: true
  29395. },
  29396. {
  29397. name: "Macro",
  29398. height: math.unit(250, "feet")
  29399. },
  29400. {
  29401. name: "Megamacro",
  29402. height: math.unit(100, "miles")
  29403. },
  29404. ]
  29405. ))
  29406. characterMakers.push(() => makeCharacter(
  29407. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29408. {
  29409. front: {
  29410. height: math.unit(5 + 2 / 12, "feet"),
  29411. weight: math.unit(120, "lb"),
  29412. name: "Front",
  29413. image: {
  29414. source: "./media/characters/snaps/front.svg",
  29415. extra: 2370 / 2177,
  29416. bottom: 48 / 2418
  29417. }
  29418. },
  29419. back: {
  29420. height: math.unit(5 + 2 / 12, "feet"),
  29421. weight: math.unit(120, "lb"),
  29422. name: "Back",
  29423. image: {
  29424. source: "./media/characters/snaps/back.svg",
  29425. extra: 2408 / 2258,
  29426. bottom: 15 / 2423
  29427. }
  29428. },
  29429. },
  29430. [
  29431. {
  29432. name: "Micro",
  29433. height: math.unit(9, "inches")
  29434. },
  29435. {
  29436. name: "Normal",
  29437. height: math.unit(5 + 2 / 12, "feet"),
  29438. default: true
  29439. },
  29440. {
  29441. name: "Mini Macro",
  29442. height: math.unit(10, "feet")
  29443. },
  29444. ]
  29445. ))
  29446. characterMakers.push(() => makeCharacter(
  29447. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29448. {
  29449. front: {
  29450. height: math.unit(1.8, "meters"),
  29451. weight: math.unit(85, "kg"),
  29452. name: "Front",
  29453. image: {
  29454. source: "./media/characters/azteck/front.svg",
  29455. extra: 2815 / 2625,
  29456. bottom: 89 / 2904
  29457. }
  29458. },
  29459. back: {
  29460. height: math.unit(1.8, "meters"),
  29461. weight: math.unit(85, "kg"),
  29462. name: "Back",
  29463. image: {
  29464. source: "./media/characters/azteck/back.svg",
  29465. extra: 2856 / 2648,
  29466. bottom: 85 / 2941
  29467. }
  29468. },
  29469. frontDressed: {
  29470. height: math.unit(1.8, "meters"),
  29471. weight: math.unit(85, "kg"),
  29472. name: "Front (Dressed)",
  29473. image: {
  29474. source: "./media/characters/azteck/front-dressed.svg",
  29475. extra: 2147 / 2003,
  29476. bottom: 68 / 2215
  29477. }
  29478. },
  29479. head: {
  29480. height: math.unit(0.47, "meters"),
  29481. weight: math.unit(85, "kg"),
  29482. name: "Head",
  29483. image: {
  29484. source: "./media/characters/azteck/head.svg"
  29485. }
  29486. },
  29487. },
  29488. [
  29489. {
  29490. name: "Bite sized",
  29491. height: math.unit(16, "cm")
  29492. },
  29493. {
  29494. name: "Normal",
  29495. height: math.unit(1.8, "meters"),
  29496. default: true
  29497. },
  29498. ]
  29499. ))
  29500. characterMakers.push(() => makeCharacter(
  29501. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29502. {
  29503. front: {
  29504. height: math.unit(6, "feet"),
  29505. weight: math.unit(150, "lb"),
  29506. name: "Front",
  29507. image: {
  29508. source: "./media/characters/pidge/front.svg",
  29509. extra: 620 / 588,
  29510. bottom: 9 / 629
  29511. }
  29512. },
  29513. back: {
  29514. height: math.unit(6, "feet"),
  29515. weight: math.unit(150, "lb"),
  29516. name: "Back",
  29517. image: {
  29518. source: "./media/characters/pidge/back.svg",
  29519. extra: 620 / 588,
  29520. bottom: 9 / 629
  29521. }
  29522. },
  29523. },
  29524. [
  29525. {
  29526. name: "Macro",
  29527. height: math.unit(1, "mile"),
  29528. default: true
  29529. },
  29530. ]
  29531. ))
  29532. characterMakers.push(() => makeCharacter(
  29533. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29534. {
  29535. front: {
  29536. height: math.unit(6, "feet"),
  29537. weight: math.unit(150, "lb"),
  29538. name: "Front",
  29539. image: {
  29540. source: "./media/characters/en/front.svg",
  29541. extra: 1697 / 1563,
  29542. bottom: 103 / 1800
  29543. }
  29544. },
  29545. back: {
  29546. height: math.unit(6, "feet"),
  29547. weight: math.unit(150, "lb"),
  29548. name: "Back",
  29549. image: {
  29550. source: "./media/characters/en/back.svg",
  29551. extra: 1700 / 1570,
  29552. bottom: 51 / 1751
  29553. }
  29554. },
  29555. frontDressed: {
  29556. height: math.unit(6, "feet"),
  29557. weight: math.unit(150, "lb"),
  29558. name: "Front (Dressed)",
  29559. image: {
  29560. source: "./media/characters/en/front-dressed.svg",
  29561. extra: 1697 / 1563,
  29562. bottom: 103 / 1800
  29563. }
  29564. },
  29565. backDressed: {
  29566. height: math.unit(6, "feet"),
  29567. weight: math.unit(150, "lb"),
  29568. name: "Back (Dressed)",
  29569. image: {
  29570. source: "./media/characters/en/back-dressed.svg",
  29571. extra: 1700 / 1570,
  29572. bottom: 51 / 1751
  29573. }
  29574. },
  29575. },
  29576. [
  29577. {
  29578. name: "Macro",
  29579. height: math.unit(210, "feet"),
  29580. default: true
  29581. },
  29582. ]
  29583. ))
  29584. characterMakers.push(() => makeCharacter(
  29585. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29586. {
  29587. front: {
  29588. height: math.unit(6, "feet"),
  29589. weight: math.unit(150, "lb"),
  29590. name: "Front",
  29591. image: {
  29592. source: "./media/characters/haze-orris/front.svg",
  29593. extra: 3975 / 3525,
  29594. bottom: 137 / 4112
  29595. }
  29596. },
  29597. },
  29598. [
  29599. {
  29600. name: "Micro",
  29601. height: math.unit(150, "mm"),
  29602. default: true
  29603. },
  29604. ]
  29605. ))
  29606. characterMakers.push(() => makeCharacter(
  29607. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29608. {
  29609. front: {
  29610. height: math.unit(6, "feet"),
  29611. weight: math.unit(150, "lb"),
  29612. name: "Front",
  29613. image: {
  29614. source: "./media/characters/casselene-yaro/front.svg",
  29615. extra: 4721 / 4541,
  29616. bottom: 82 / 4803
  29617. }
  29618. },
  29619. back: {
  29620. height: math.unit(6, "feet"),
  29621. weight: math.unit(150, "lb"),
  29622. name: "Back",
  29623. image: {
  29624. source: "./media/characters/casselene-yaro/back.svg",
  29625. extra: 4569 / 4377,
  29626. bottom: 69 / 4638
  29627. }
  29628. },
  29629. frontDressed: {
  29630. height: math.unit(6, "feet"),
  29631. weight: math.unit(150, "lb"),
  29632. name: "Front-dressed",
  29633. image: {
  29634. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29635. extra: 4721 / 4541,
  29636. bottom: 82 / 4803
  29637. }
  29638. },
  29639. },
  29640. [
  29641. {
  29642. name: "Macro",
  29643. height: math.unit(190, "feet"),
  29644. default: true
  29645. },
  29646. ]
  29647. ))
  29648. characterMakers.push(() => makeCharacter(
  29649. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29650. {
  29651. front: {
  29652. height: math.unit(6, "feet"),
  29653. weight: math.unit(150, "lb"),
  29654. name: "Front",
  29655. image: {
  29656. source: "./media/characters/myra-rue-delore/front.svg",
  29657. extra: 1340 / 1308,
  29658. bottom: 67 / 1407
  29659. }
  29660. },
  29661. back: {
  29662. height: math.unit(6, "feet"),
  29663. weight: math.unit(150, "lb"),
  29664. name: "Back",
  29665. image: {
  29666. source: "./media/characters/myra-rue-delore/back.svg",
  29667. extra: 1341 / 1310,
  29668. bottom: 40 / 1381
  29669. }
  29670. },
  29671. frontDressed: {
  29672. height: math.unit(6, "feet"),
  29673. weight: math.unit(150, "lb"),
  29674. name: "Front (Dressed)",
  29675. image: {
  29676. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29677. extra: 1340 / 1308,
  29678. bottom: 67 / 1407
  29679. }
  29680. },
  29681. },
  29682. [
  29683. {
  29684. name: "Macro",
  29685. height: math.unit(150, "feet"),
  29686. default: true
  29687. },
  29688. ]
  29689. ))
  29690. characterMakers.push(() => makeCharacter(
  29691. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29692. {
  29693. front: {
  29694. height: math.unit(10, "feet"),
  29695. weight: math.unit(15015, "lb"),
  29696. name: "Front",
  29697. image: {
  29698. source: "./media/characters/fem!plat/front.svg",
  29699. extra: 2799 / 2604,
  29700. bottom: 149 / 2948
  29701. }
  29702. },
  29703. },
  29704. [
  29705. {
  29706. name: "Normal",
  29707. height: math.unit(10, "feet"),
  29708. default: true
  29709. },
  29710. {
  29711. name: "Macro",
  29712. height: math.unit(100, "feet")
  29713. },
  29714. {
  29715. name: "Megamacro",
  29716. height: math.unit(1000, "feet")
  29717. },
  29718. ]
  29719. ))
  29720. characterMakers.push(() => makeCharacter(
  29721. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29722. {
  29723. front: {
  29724. height: math.unit(15 + 5 / 12, "feet"),
  29725. weight: math.unit(4600, "lb"),
  29726. name: "Front",
  29727. image: {
  29728. source: "./media/characters/neapolitan-ananassa/front.svg",
  29729. extra: 2903 / 2736,
  29730. bottom: 0 / 2903
  29731. }
  29732. },
  29733. side: {
  29734. height: math.unit(15 + 5 / 12, "feet"),
  29735. weight: math.unit(4600, "lb"),
  29736. name: "Side",
  29737. image: {
  29738. source: "./media/characters/neapolitan-ananassa/side.svg",
  29739. extra: 2925 / 2719,
  29740. bottom: 0 / 2925
  29741. }
  29742. },
  29743. back: {
  29744. height: math.unit(15 + 5 / 12, "feet"),
  29745. weight: math.unit(4600, "lb"),
  29746. name: "Back",
  29747. image: {
  29748. source: "./media/characters/neapolitan-ananassa/back.svg",
  29749. extra: 2903 / 2736,
  29750. bottom: 0 / 2903
  29751. }
  29752. },
  29753. },
  29754. [
  29755. {
  29756. name: "Normal",
  29757. height: math.unit(15 + 5 / 12, "feet"),
  29758. default: true
  29759. },
  29760. {
  29761. name: "Post-Millenium",
  29762. height: math.unit(35 + 5 / 12, "feet")
  29763. },
  29764. {
  29765. name: "Post-Era",
  29766. height: math.unit(450 + 5 / 12, "feet")
  29767. },
  29768. ]
  29769. ))
  29770. characterMakers.push(() => makeCharacter(
  29771. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29772. {
  29773. front: {
  29774. height: math.unit(300, "meters"),
  29775. weight: math.unit(125000, "tonnes"),
  29776. name: "Front",
  29777. image: {
  29778. source: "./media/characters/pazuzu/front.svg",
  29779. extra: 877 / 794,
  29780. bottom: 47 / 924
  29781. }
  29782. },
  29783. },
  29784. [
  29785. {
  29786. name: "Macro",
  29787. height: math.unit(300, "meters"),
  29788. default: true
  29789. },
  29790. ]
  29791. ))
  29792. characterMakers.push(() => makeCharacter(
  29793. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29794. {
  29795. side: {
  29796. height: math.unit(10 + 7 / 12, "feet"),
  29797. weight: math.unit(2.5, "tons"),
  29798. name: "Side",
  29799. image: {
  29800. source: "./media/characters/aasha/side.svg",
  29801. extra: 1345 / 1245,
  29802. bottom: 111 / 1456
  29803. }
  29804. },
  29805. back: {
  29806. height: math.unit(10 + 7 / 12, "feet"),
  29807. weight: math.unit(2.5, "tons"),
  29808. name: "Back",
  29809. image: {
  29810. source: "./media/characters/aasha/back.svg",
  29811. extra: 1133 / 1057,
  29812. bottom: 257 / 1390
  29813. }
  29814. },
  29815. },
  29816. [
  29817. {
  29818. name: "Normal",
  29819. height: math.unit(10 + 7 / 12, "feet"),
  29820. default: true
  29821. },
  29822. ]
  29823. ))
  29824. characterMakers.push(() => makeCharacter(
  29825. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29826. {
  29827. front: {
  29828. height: math.unit(6 + 3 / 12, "feet"),
  29829. name: "Front",
  29830. image: {
  29831. source: "./media/characters/nevan/front.svg",
  29832. extra: 704 / 704,
  29833. bottom: 28 / 732
  29834. }
  29835. },
  29836. back: {
  29837. height: math.unit(6 + 3 / 12, "feet"),
  29838. name: "Back",
  29839. image: {
  29840. source: "./media/characters/nevan/back.svg",
  29841. extra: 714 / 714,
  29842. bottom: 21 / 735
  29843. }
  29844. },
  29845. frontFlaccid: {
  29846. height: math.unit(6 + 3 / 12, "feet"),
  29847. name: "Front (Flaccid)",
  29848. image: {
  29849. source: "./media/characters/nevan/front-flaccid.svg",
  29850. extra: 704 / 704,
  29851. bottom: 28 / 732
  29852. }
  29853. },
  29854. frontErect: {
  29855. height: math.unit(6 + 3 / 12, "feet"),
  29856. name: "Front (Erect)",
  29857. image: {
  29858. source: "./media/characters/nevan/front-erect.svg",
  29859. extra: 704 / 704,
  29860. bottom: 28 / 732
  29861. }
  29862. },
  29863. backFlaccid: {
  29864. height: math.unit(6 + 3 / 12, "feet"),
  29865. name: "Back (Flaccid)",
  29866. image: {
  29867. source: "./media/characters/nevan/back-flaccid.svg",
  29868. extra: 714 / 714,
  29869. bottom: 21 / 735
  29870. }
  29871. },
  29872. },
  29873. [
  29874. {
  29875. name: "Normal",
  29876. height: math.unit(6 + 3 / 12, "feet"),
  29877. default: true
  29878. },
  29879. ]
  29880. ))
  29881. characterMakers.push(() => makeCharacter(
  29882. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29883. {
  29884. front: {
  29885. height: math.unit(4, "feet"),
  29886. name: "Front",
  29887. image: {
  29888. source: "./media/characters/arhan/front.svg",
  29889. extra: 3368 / 3133,
  29890. bottom: 0 / 3368
  29891. }
  29892. },
  29893. side: {
  29894. height: math.unit(4, "feet"),
  29895. name: "Side",
  29896. image: {
  29897. source: "./media/characters/arhan/side.svg",
  29898. extra: 3347 / 3105,
  29899. bottom: 0 / 3347
  29900. }
  29901. },
  29902. tongue: {
  29903. height: math.unit(1.42, "feet"),
  29904. name: "Tongue",
  29905. image: {
  29906. source: "./media/characters/arhan/tongue.svg"
  29907. }
  29908. },
  29909. head: {
  29910. height: math.unit(0.85, "feet"),
  29911. name: "Head",
  29912. image: {
  29913. source: "./media/characters/arhan/head.svg"
  29914. }
  29915. },
  29916. },
  29917. [
  29918. {
  29919. name: "Normal",
  29920. height: math.unit(4, "feet"),
  29921. default: true
  29922. },
  29923. ]
  29924. ))
  29925. characterMakers.push(() => makeCharacter(
  29926. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29927. {
  29928. front: {
  29929. height: math.unit(5 + 7.5 / 12, "feet"),
  29930. weight: math.unit(120, "lb"),
  29931. name: "Front",
  29932. image: {
  29933. source: "./media/characters/digi-duncan/front.svg",
  29934. extra: 330 / 326,
  29935. bottom: 16 / 346
  29936. }
  29937. },
  29938. side: {
  29939. height: math.unit(5 + 7.5 / 12, "feet"),
  29940. weight: math.unit(120, "lb"),
  29941. name: "Side",
  29942. image: {
  29943. source: "./media/characters/digi-duncan/side.svg",
  29944. extra: 341 / 337,
  29945. bottom: 1 / 342
  29946. }
  29947. },
  29948. back: {
  29949. height: math.unit(5 + 7.5 / 12, "feet"),
  29950. weight: math.unit(120, "lb"),
  29951. name: "Back",
  29952. image: {
  29953. source: "./media/characters/digi-duncan/back.svg",
  29954. extra: 330 / 326,
  29955. bottom: 12 / 342
  29956. }
  29957. },
  29958. },
  29959. [
  29960. {
  29961. name: "Speck",
  29962. height: math.unit(0.25, "mm")
  29963. },
  29964. {
  29965. name: "Micro",
  29966. height: math.unit(5, "mm")
  29967. },
  29968. {
  29969. name: "Tiny",
  29970. height: math.unit(0.5, "inches"),
  29971. default: true
  29972. },
  29973. {
  29974. name: "Human",
  29975. height: math.unit(5 + 7.5 / 12, "feet")
  29976. },
  29977. {
  29978. name: "Minigiant",
  29979. height: math.unit(8 + 5.25, "feet")
  29980. },
  29981. {
  29982. name: "Giant",
  29983. height: math.unit(2000, "feet")
  29984. },
  29985. {
  29986. name: "Mega",
  29987. height: math.unit(371.1, "miles")
  29988. },
  29989. ]
  29990. ))
  29991. characterMakers.push(() => makeCharacter(
  29992. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29993. {
  29994. front: {
  29995. height: math.unit(2, "meters"),
  29996. weight: math.unit(350, "kg"),
  29997. name: "Front",
  29998. image: {
  29999. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30000. extra: 898 / 838,
  30001. bottom: 9 / 907
  30002. }
  30003. },
  30004. },
  30005. [
  30006. {
  30007. name: "Micro",
  30008. height: math.unit(8, "meters")
  30009. },
  30010. {
  30011. name: "Normal",
  30012. height: math.unit(50, "meters"),
  30013. default: true
  30014. },
  30015. {
  30016. name: "Macro",
  30017. height: math.unit(500, "meters")
  30018. },
  30019. ]
  30020. ))
  30021. characterMakers.push(() => makeCharacter(
  30022. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30023. {
  30024. front: {
  30025. height: math.unit(6 + 6 / 12, "feet"),
  30026. name: "Front",
  30027. image: {
  30028. source: "./media/characters/khardesh/front.svg",
  30029. extra: 1788/1596,
  30030. bottom: 66/1854
  30031. }
  30032. },
  30033. back: {
  30034. height: math.unit(6 + 6 / 12, "feet"),
  30035. name: "Back",
  30036. image: {
  30037. source: "./media/characters/khardesh/back.svg",
  30038. extra: 1781/1584,
  30039. bottom: 68/1849
  30040. }
  30041. },
  30042. },
  30043. [
  30044. {
  30045. name: "Normal",
  30046. height: math.unit(6 + 6 / 12, "feet"),
  30047. default: true
  30048. },
  30049. {
  30050. name: "Normal+",
  30051. height: math.unit(4, "meters")
  30052. },
  30053. {
  30054. name: "Macro",
  30055. height: math.unit(50, "meters")
  30056. },
  30057. {
  30058. name: "Macro+",
  30059. height: math.unit(100, "meters")
  30060. },
  30061. {
  30062. name: "Megamacro",
  30063. height: math.unit(20, "km")
  30064. },
  30065. ]
  30066. ))
  30067. characterMakers.push(() => makeCharacter(
  30068. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30069. {
  30070. front: {
  30071. height: math.unit(6, "feet"),
  30072. weight: math.unit(150, "lb"),
  30073. name: "Front",
  30074. image: {
  30075. source: "./media/characters/kosho/front.svg",
  30076. extra: 1847 / 1847,
  30077. bottom: 86 / 1933
  30078. }
  30079. },
  30080. },
  30081. [
  30082. {
  30083. name: "Second-stage micro",
  30084. height: math.unit(0.5, "inches")
  30085. },
  30086. {
  30087. name: "First-stage micro",
  30088. height: math.unit(6, "inches")
  30089. },
  30090. {
  30091. name: "Normal",
  30092. height: math.unit(6, "feet"),
  30093. default: true
  30094. },
  30095. {
  30096. name: "First-stage macro",
  30097. height: math.unit(72, "feet")
  30098. },
  30099. {
  30100. name: "Second-stage macro",
  30101. height: math.unit(864, "feet")
  30102. },
  30103. ]
  30104. ))
  30105. characterMakers.push(() => makeCharacter(
  30106. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30107. {
  30108. normal: {
  30109. height: math.unit(4 + 6 / 12, "feet"),
  30110. name: "Normal",
  30111. image: {
  30112. source: "./media/characters/hydra/normal.svg",
  30113. extra: 2833 / 2634,
  30114. bottom: 68 / 2901
  30115. }
  30116. },
  30117. smol: {
  30118. height: math.unit(0.705, "inches"),
  30119. name: "Smol",
  30120. image: {
  30121. source: "./media/characters/hydra/smol.svg",
  30122. extra: 2715 / 2540,
  30123. bottom: 0 / 2715
  30124. }
  30125. },
  30126. },
  30127. [
  30128. {
  30129. name: "Normal",
  30130. height: math.unit(4 + 6 / 12, "feet"),
  30131. default: true
  30132. }
  30133. ]
  30134. ))
  30135. characterMakers.push(() => makeCharacter(
  30136. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30137. {
  30138. front: {
  30139. height: math.unit(0.6, "cm"),
  30140. name: "Front",
  30141. image: {
  30142. source: "./media/characters/daz/front.svg",
  30143. extra: 1682 / 1164,
  30144. bottom: 42 / 1724
  30145. }
  30146. },
  30147. },
  30148. [
  30149. {
  30150. name: "Normal",
  30151. height: math.unit(0.6, "cm"),
  30152. default: true
  30153. },
  30154. ]
  30155. ))
  30156. characterMakers.push(() => makeCharacter(
  30157. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30158. {
  30159. front: {
  30160. height: math.unit(6, "feet"),
  30161. weight: math.unit(235, "lb"),
  30162. name: "Front",
  30163. image: {
  30164. source: "./media/characters/theo-pangolin/front.svg",
  30165. extra: 1996 / 1969,
  30166. bottom: 115 / 2111
  30167. }
  30168. },
  30169. back: {
  30170. height: math.unit(6, "feet"),
  30171. weight: math.unit(235, "lb"),
  30172. name: "Back",
  30173. image: {
  30174. source: "./media/characters/theo-pangolin/back.svg",
  30175. extra: 1979 / 1979,
  30176. bottom: 40 / 2019
  30177. }
  30178. },
  30179. feral: {
  30180. height: math.unit(2, "feet"),
  30181. weight: math.unit(30, "lb"),
  30182. name: "Feral",
  30183. image: {
  30184. source: "./media/characters/theo-pangolin/feral.svg",
  30185. extra: 803 / 791,
  30186. bottom: 181 / 984
  30187. }
  30188. },
  30189. footFive: {
  30190. height: math.unit(1.43, "feet"),
  30191. name: "Foot (Five Toes)",
  30192. image: {
  30193. source: "./media/characters/theo-pangolin/foot-five.svg"
  30194. }
  30195. },
  30196. footFour: {
  30197. height: math.unit(1.43, "feet"),
  30198. name: "Foot (Four Toes)",
  30199. image: {
  30200. source: "./media/characters/theo-pangolin/foot-four.svg"
  30201. }
  30202. },
  30203. handFour: {
  30204. height: math.unit(0.81, "feet"),
  30205. name: "Hand (Four Fingers)",
  30206. image: {
  30207. source: "./media/characters/theo-pangolin/hand-four.svg"
  30208. }
  30209. },
  30210. handThree: {
  30211. height: math.unit(0.81, "feet"),
  30212. name: "Hand (Three Fingers)",
  30213. image: {
  30214. source: "./media/characters/theo-pangolin/hand-three.svg"
  30215. }
  30216. },
  30217. headFront: {
  30218. height: math.unit(1.37, "feet"),
  30219. name: "Head (Front)",
  30220. image: {
  30221. source: "./media/characters/theo-pangolin/head-front.svg"
  30222. }
  30223. },
  30224. headSide: {
  30225. height: math.unit(1.43, "feet"),
  30226. name: "Head (Side)",
  30227. image: {
  30228. source: "./media/characters/theo-pangolin/head-side.svg"
  30229. }
  30230. },
  30231. tongue: {
  30232. height: math.unit(2.29, "feet"),
  30233. name: "Tongue",
  30234. image: {
  30235. source: "./media/characters/theo-pangolin/tongue.svg"
  30236. }
  30237. },
  30238. },
  30239. [
  30240. {
  30241. name: "Normal",
  30242. height: math.unit(6, "feet")
  30243. },
  30244. {
  30245. name: "Macro",
  30246. height: math.unit(400, "feet"),
  30247. default: true
  30248. },
  30249. ]
  30250. ))
  30251. characterMakers.push(() => makeCharacter(
  30252. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30253. {
  30254. front: {
  30255. height: math.unit(6, "inches"),
  30256. weight: math.unit(0.036, "kg"),
  30257. name: "Front",
  30258. image: {
  30259. source: "./media/characters/renée/front.svg",
  30260. extra: 900 / 886,
  30261. bottom: 8 / 908
  30262. }
  30263. },
  30264. },
  30265. [
  30266. {
  30267. name: "Nano",
  30268. height: math.unit(1, "nm")
  30269. },
  30270. {
  30271. name: "Micro",
  30272. height: math.unit(1, "mm")
  30273. },
  30274. {
  30275. name: "Normal",
  30276. height: math.unit(6, "inches")
  30277. },
  30278. {
  30279. name: "Macro",
  30280. height: math.unit(2000, "feet"),
  30281. default: true
  30282. },
  30283. {
  30284. name: "Megamacro",
  30285. height: math.unit(2, "km")
  30286. },
  30287. {
  30288. name: "Gigamacro",
  30289. height: math.unit(2000, "km")
  30290. },
  30291. {
  30292. name: "Teramacro",
  30293. height: math.unit(250000, "km")
  30294. },
  30295. ]
  30296. ))
  30297. characterMakers.push(() => makeCharacter(
  30298. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30299. {
  30300. front: {
  30301. height: math.unit(4, "meters"),
  30302. weight: math.unit(150, "kg"),
  30303. name: "Front",
  30304. image: {
  30305. source: "./media/characters/caledvwlch/front.svg",
  30306. extra: 1760 / 1551,
  30307. bottom: 28 / 1788
  30308. }
  30309. },
  30310. side: {
  30311. height: math.unit(4, "meters"),
  30312. weight: math.unit(150, "kg"),
  30313. name: "Side",
  30314. image: {
  30315. source: "./media/characters/caledvwlch/side.svg",
  30316. extra: 1605 / 1536,
  30317. bottom: 31 / 1636
  30318. }
  30319. },
  30320. back: {
  30321. height: math.unit(4, "meters"),
  30322. weight: math.unit(150, "kg"),
  30323. name: "Back",
  30324. image: {
  30325. source: "./media/characters/caledvwlch/back.svg",
  30326. extra: 1635 / 1565,
  30327. bottom: 27 / 1662
  30328. }
  30329. },
  30330. },
  30331. [
  30332. {
  30333. name: "\"Incognito\"",
  30334. height: math.unit(4, "meters")
  30335. },
  30336. {
  30337. name: "Small rampage",
  30338. height: math.unit(600, "meters")
  30339. },
  30340. {
  30341. name: "Mega",
  30342. height: math.unit(30, "km")
  30343. },
  30344. {
  30345. name: "Home-size",
  30346. height: math.unit(50, "km"),
  30347. default: true
  30348. },
  30349. {
  30350. name: "Giga",
  30351. height: math.unit(300, "km")
  30352. },
  30353. {
  30354. name: "Lounging",
  30355. height: math.unit(11000, "km")
  30356. },
  30357. {
  30358. name: "Planet snacking",
  30359. height: math.unit(2000000, "km")
  30360. },
  30361. ]
  30362. ))
  30363. characterMakers.push(() => makeCharacter(
  30364. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30365. {
  30366. front: {
  30367. height: math.unit(6, "feet"),
  30368. weight: math.unit(215, "lb"),
  30369. name: "Front",
  30370. image: {
  30371. source: "./media/characters/sapphire-svell/front.svg",
  30372. extra: 495 / 455,
  30373. bottom: 20 / 515
  30374. }
  30375. },
  30376. back: {
  30377. height: math.unit(6, "feet"),
  30378. weight: math.unit(216, "lb"),
  30379. name: "Back",
  30380. image: {
  30381. source: "./media/characters/sapphire-svell/back.svg",
  30382. extra: 497 / 477,
  30383. bottom: 7 / 504
  30384. }
  30385. },
  30386. maw: {
  30387. height: math.unit(1.57, "feet"),
  30388. name: "Maw",
  30389. image: {
  30390. source: "./media/characters/sapphire-svell/maw.svg"
  30391. }
  30392. },
  30393. foot: {
  30394. height: math.unit(1.07, "feet"),
  30395. name: "Foot",
  30396. image: {
  30397. source: "./media/characters/sapphire-svell/foot.svg"
  30398. }
  30399. },
  30400. toering: {
  30401. height: math.unit(1.7, "inch"),
  30402. name: "Toering",
  30403. image: {
  30404. source: "./media/characters/sapphire-svell/toering.svg"
  30405. }
  30406. },
  30407. },
  30408. [
  30409. {
  30410. name: "Normal",
  30411. height: math.unit(300, "feet"),
  30412. default: true
  30413. },
  30414. {
  30415. name: "Augmented",
  30416. height: math.unit(1250, "feet")
  30417. },
  30418. {
  30419. name: "Unleashed",
  30420. height: math.unit(3000, "feet")
  30421. },
  30422. ]
  30423. ))
  30424. characterMakers.push(() => makeCharacter(
  30425. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30426. {
  30427. side: {
  30428. height: math.unit(2 + 3 / 12, "feet"),
  30429. weight: math.unit(110, "lb"),
  30430. name: "Side",
  30431. image: {
  30432. source: "./media/characters/glitch-flux/side.svg",
  30433. extra: 997 / 805,
  30434. bottom: 20 / 1017
  30435. }
  30436. },
  30437. },
  30438. [
  30439. {
  30440. name: "Normal",
  30441. height: math.unit(2 + 3 / 12, "feet"),
  30442. default: true
  30443. },
  30444. ]
  30445. ))
  30446. characterMakers.push(() => makeCharacter(
  30447. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30448. {
  30449. front: {
  30450. height: math.unit(4, "meters"),
  30451. name: "Front",
  30452. image: {
  30453. source: "./media/characters/mid/front.svg",
  30454. extra: 507 / 476,
  30455. bottom: 17 / 524
  30456. }
  30457. },
  30458. back: {
  30459. height: math.unit(4, "meters"),
  30460. name: "Back",
  30461. image: {
  30462. source: "./media/characters/mid/back.svg",
  30463. extra: 519 / 487,
  30464. bottom: 7 / 526
  30465. }
  30466. },
  30467. stuck: {
  30468. height: math.unit(2.2, "meters"),
  30469. name: "Stuck",
  30470. image: {
  30471. source: "./media/characters/mid/stuck.svg",
  30472. extra: 1951 / 1869,
  30473. bottom: 88 / 2039
  30474. }
  30475. }
  30476. },
  30477. [
  30478. {
  30479. name: "Normal",
  30480. height: math.unit(4, "meters"),
  30481. default: true
  30482. },
  30483. {
  30484. name: "Big",
  30485. height: math.unit(10, "meters")
  30486. },
  30487. {
  30488. name: "Macro",
  30489. height: math.unit(800, "meters")
  30490. },
  30491. {
  30492. name: "Megamacro",
  30493. height: math.unit(100, "km")
  30494. },
  30495. {
  30496. name: "Overgrown",
  30497. height: math.unit(1, "parsec")
  30498. },
  30499. ]
  30500. ))
  30501. characterMakers.push(() => makeCharacter(
  30502. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30503. {
  30504. front: {
  30505. height: math.unit(2.5, "meters"),
  30506. weight: math.unit(225, "kg"),
  30507. name: "Front",
  30508. image: {
  30509. source: "./media/characters/iris/front.svg",
  30510. extra: 3348 / 3251,
  30511. bottom: 205 / 3553
  30512. }
  30513. },
  30514. maw: {
  30515. height: math.unit(0.56, "meter"),
  30516. name: "Maw",
  30517. image: {
  30518. source: "./media/characters/iris/maw.svg"
  30519. }
  30520. },
  30521. },
  30522. [
  30523. {
  30524. name: "Mewter cat",
  30525. height: math.unit(1.2, "meters")
  30526. },
  30527. {
  30528. name: "Minimacro",
  30529. height: math.unit(2.5, "meters"),
  30530. default: true
  30531. },
  30532. {
  30533. name: "Macro",
  30534. height: math.unit(180, "meters")
  30535. },
  30536. {
  30537. name: "Megamacro",
  30538. height: math.unit(2746, "meters")
  30539. },
  30540. ]
  30541. ))
  30542. characterMakers.push(() => makeCharacter(
  30543. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30544. {
  30545. front: {
  30546. height: math.unit(6, "feet"),
  30547. weight: math.unit(135, "lb"),
  30548. name: "Front",
  30549. image: {
  30550. source: "./media/characters/axel/front.svg",
  30551. extra: 908 / 908,
  30552. bottom: 58 / 966
  30553. }
  30554. },
  30555. side: {
  30556. height: math.unit(6, "feet"),
  30557. weight: math.unit(135, "lb"),
  30558. name: "Side",
  30559. image: {
  30560. source: "./media/characters/axel/side.svg",
  30561. extra: 958 / 958,
  30562. bottom: 11 / 969
  30563. }
  30564. },
  30565. back: {
  30566. height: math.unit(6, "feet"),
  30567. weight: math.unit(135, "lb"),
  30568. name: "Back",
  30569. image: {
  30570. source: "./media/characters/axel/back.svg",
  30571. extra: 887 / 887,
  30572. bottom: 34 / 921
  30573. }
  30574. },
  30575. head: {
  30576. height: math.unit(1.07, "feet"),
  30577. name: "Head",
  30578. image: {
  30579. source: "./media/characters/axel/head.svg"
  30580. }
  30581. },
  30582. beak: {
  30583. height: math.unit(1.4, "feet"),
  30584. name: "Beak",
  30585. image: {
  30586. source: "./media/characters/axel/beak.svg"
  30587. }
  30588. },
  30589. beakSide: {
  30590. height: math.unit(1.4, "feet"),
  30591. name: "Beak Side",
  30592. image: {
  30593. source: "./media/characters/axel/beak-side.svg"
  30594. }
  30595. },
  30596. sheath: {
  30597. height: math.unit(0.5, "feet"),
  30598. name: "Sheath",
  30599. image: {
  30600. source: "./media/characters/axel/sheath.svg"
  30601. }
  30602. },
  30603. dick: {
  30604. height: math.unit(0.98, "feet"),
  30605. name: "Dick",
  30606. image: {
  30607. source: "./media/characters/axel/dick.svg"
  30608. }
  30609. },
  30610. },
  30611. [
  30612. {
  30613. name: "Macro",
  30614. height: math.unit(68, "meters"),
  30615. default: true
  30616. },
  30617. ]
  30618. ))
  30619. characterMakers.push(() => makeCharacter(
  30620. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30621. {
  30622. front: {
  30623. height: math.unit(3.5, "meters"),
  30624. weight: math.unit(1200, "kg"),
  30625. name: "Front",
  30626. image: {
  30627. source: "./media/characters/joanna/front.svg",
  30628. extra: 1596 / 1488,
  30629. bottom: 29 / 1625
  30630. }
  30631. },
  30632. back: {
  30633. height: math.unit(3.5, "meters"),
  30634. weight: math.unit(1200, "kg"),
  30635. name: "Back",
  30636. image: {
  30637. source: "./media/characters/joanna/back.svg",
  30638. extra: 1594 / 1495,
  30639. bottom: 26 / 1620
  30640. }
  30641. },
  30642. frontShorts: {
  30643. height: math.unit(3.5, "meters"),
  30644. weight: math.unit(1200, "kg"),
  30645. name: "Front (Shorts)",
  30646. image: {
  30647. source: "./media/characters/joanna/front-shorts.svg",
  30648. extra: 1596 / 1488,
  30649. bottom: 29 / 1625
  30650. }
  30651. },
  30652. frontBiker: {
  30653. height: math.unit(3.5, "meters"),
  30654. weight: math.unit(1200, "kg"),
  30655. name: "Front (Biker)",
  30656. image: {
  30657. source: "./media/characters/joanna/front-biker.svg",
  30658. extra: 1596 / 1488,
  30659. bottom: 29 / 1625
  30660. }
  30661. },
  30662. backBiker: {
  30663. height: math.unit(3.5, "meters"),
  30664. weight: math.unit(1200, "kg"),
  30665. name: "Back (Biker)",
  30666. image: {
  30667. source: "./media/characters/joanna/back-biker.svg",
  30668. extra: 1594 / 1495,
  30669. bottom: 88 / 1682
  30670. }
  30671. },
  30672. bikeLeft: {
  30673. height: math.unit(2.4, "meters"),
  30674. weight: math.unit(1600, "kg"),
  30675. name: "Bike (Left)",
  30676. image: {
  30677. source: "./media/characters/joanna/bike-left.svg",
  30678. extra: 720 / 720,
  30679. bottom: 8 / 728
  30680. }
  30681. },
  30682. bikeRight: {
  30683. height: math.unit(2.4, "meters"),
  30684. weight: math.unit(1600, "kg"),
  30685. name: "Bike (Right)",
  30686. image: {
  30687. source: "./media/characters/joanna/bike-right.svg",
  30688. extra: 720 / 720,
  30689. bottom: 8 / 728
  30690. }
  30691. },
  30692. },
  30693. [
  30694. {
  30695. name: "Incognito",
  30696. height: math.unit(3.5, "meters")
  30697. },
  30698. {
  30699. name: "Casual Big",
  30700. height: math.unit(200, "meters")
  30701. },
  30702. {
  30703. name: "Macro",
  30704. height: math.unit(600, "meters")
  30705. },
  30706. {
  30707. name: "Original",
  30708. height: math.unit(20, "km"),
  30709. default: true
  30710. },
  30711. {
  30712. name: "Giga",
  30713. height: math.unit(400, "km")
  30714. },
  30715. {
  30716. name: "Lounging",
  30717. height: math.unit(1500, "km")
  30718. },
  30719. {
  30720. name: "Planetary",
  30721. height: math.unit(200000, "km")
  30722. },
  30723. ]
  30724. ))
  30725. characterMakers.push(() => makeCharacter(
  30726. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30727. {
  30728. front: {
  30729. height: math.unit(6, "feet"),
  30730. weight: math.unit(150, "lb"),
  30731. name: "Front",
  30732. image: {
  30733. source: "./media/characters/hugo-sigil/front.svg",
  30734. extra: 522 / 500,
  30735. bottom: 2 / 524
  30736. }
  30737. },
  30738. back: {
  30739. height: math.unit(6, "feet"),
  30740. weight: math.unit(150, "lb"),
  30741. name: "Back",
  30742. image: {
  30743. source: "./media/characters/hugo-sigil/back.svg",
  30744. extra: 519 / 495,
  30745. bottom: 5 / 524
  30746. }
  30747. },
  30748. maw: {
  30749. height: math.unit(1.4, "feet"),
  30750. weight: math.unit(150, "lb"),
  30751. name: "Maw",
  30752. image: {
  30753. source: "./media/characters/hugo-sigil/maw.svg"
  30754. }
  30755. },
  30756. feet: {
  30757. height: math.unit(1.56, "feet"),
  30758. weight: math.unit(150, "lb"),
  30759. name: "Feet",
  30760. image: {
  30761. source: "./media/characters/hugo-sigil/feet.svg",
  30762. extra: 177 / 177,
  30763. bottom: 12 / 189
  30764. }
  30765. },
  30766. },
  30767. [
  30768. {
  30769. name: "Normal",
  30770. height: math.unit(6, "feet")
  30771. },
  30772. {
  30773. name: "Macro",
  30774. height: math.unit(200, "feet"),
  30775. default: true
  30776. },
  30777. ]
  30778. ))
  30779. characterMakers.push(() => makeCharacter(
  30780. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30781. {
  30782. front: {
  30783. height: math.unit(6, "feet"),
  30784. weight: math.unit(150, "lb"),
  30785. name: "Front",
  30786. image: {
  30787. source: "./media/characters/peri/front.svg",
  30788. extra: 2354 / 2233,
  30789. bottom: 49 / 2403
  30790. }
  30791. },
  30792. },
  30793. [
  30794. {
  30795. name: "Really Small",
  30796. height: math.unit(1, "nm")
  30797. },
  30798. {
  30799. name: "Micro",
  30800. height: math.unit(4, "inches")
  30801. },
  30802. {
  30803. name: "Normal",
  30804. height: math.unit(7, "inches"),
  30805. default: true
  30806. },
  30807. {
  30808. name: "Macro",
  30809. height: math.unit(400, "feet")
  30810. },
  30811. {
  30812. name: "Megamacro",
  30813. height: math.unit(100, "miles")
  30814. },
  30815. ]
  30816. ))
  30817. characterMakers.push(() => makeCharacter(
  30818. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30819. {
  30820. frontSlim: {
  30821. height: math.unit(7, "feet"),
  30822. name: "Front (Slim)",
  30823. image: {
  30824. source: "./media/characters/issilora/front-slim.svg",
  30825. extra: 529 / 449,
  30826. bottom: 53 / 582
  30827. }
  30828. },
  30829. sideSlim: {
  30830. height: math.unit(7, "feet"),
  30831. name: "Side (Slim)",
  30832. image: {
  30833. source: "./media/characters/issilora/side-slim.svg",
  30834. extra: 570 / 480,
  30835. bottom: 30 / 600
  30836. }
  30837. },
  30838. backSlim: {
  30839. height: math.unit(7, "feet"),
  30840. name: "Back (Slim)",
  30841. image: {
  30842. source: "./media/characters/issilora/back-slim.svg",
  30843. extra: 537 / 455,
  30844. bottom: 46 / 583
  30845. }
  30846. },
  30847. frontBuff: {
  30848. height: math.unit(7, "feet"),
  30849. name: "Front (Buff)",
  30850. image: {
  30851. source: "./media/characters/issilora/front-buff.svg",
  30852. extra: 2310 / 2035,
  30853. bottom: 335 / 2645
  30854. }
  30855. },
  30856. head: {
  30857. height: math.unit(1.94, "feet"),
  30858. name: "Head",
  30859. image: {
  30860. source: "./media/characters/issilora/head.svg"
  30861. }
  30862. },
  30863. },
  30864. [
  30865. {
  30866. name: "Minimum",
  30867. height: math.unit(7, "feet")
  30868. },
  30869. {
  30870. name: "Comfortable",
  30871. height: math.unit(17, "feet")
  30872. },
  30873. {
  30874. name: "Fun Size",
  30875. height: math.unit(47, "feet")
  30876. },
  30877. {
  30878. name: "Natural Macro",
  30879. height: math.unit(137, "feet"),
  30880. default: true
  30881. },
  30882. {
  30883. name: "Maximum Kaiju",
  30884. height: math.unit(397, "feet")
  30885. },
  30886. ]
  30887. ))
  30888. characterMakers.push(() => makeCharacter(
  30889. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30890. {
  30891. front: {
  30892. height: math.unit(50 + 9/12, "feet"),
  30893. weight: math.unit(32.8, "tons"),
  30894. name: "Front",
  30895. image: {
  30896. source: "./media/characters/irb'iiritaahn/front.svg",
  30897. extra: 1878/1826,
  30898. bottom: 326/2204
  30899. }
  30900. },
  30901. back: {
  30902. height: math.unit(50 + 9/12, "feet"),
  30903. weight: math.unit(32.8, "tons"),
  30904. name: "Back",
  30905. image: {
  30906. source: "./media/characters/irb'iiritaahn/back.svg",
  30907. extra: 2052/2018,
  30908. bottom: 152/2204
  30909. }
  30910. },
  30911. head: {
  30912. height: math.unit(12.86, "feet"),
  30913. name: "Head",
  30914. image: {
  30915. source: "./media/characters/irb'iiritaahn/head.svg"
  30916. }
  30917. },
  30918. maw: {
  30919. height: math.unit(9.66, "feet"),
  30920. name: "Maw",
  30921. image: {
  30922. source: "./media/characters/irb'iiritaahn/maw.svg"
  30923. }
  30924. },
  30925. frontDick: {
  30926. height: math.unit(8.78461, "feet"),
  30927. name: "Front Dick",
  30928. image: {
  30929. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30930. }
  30931. },
  30932. rearDick: {
  30933. height: math.unit(8.78461, "feet"),
  30934. name: "Rear Dick",
  30935. image: {
  30936. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30937. }
  30938. },
  30939. rearDickUnfolded: {
  30940. height: math.unit(8.78, "feet"),
  30941. name: "Rear Dick (Unfolded)",
  30942. image: {
  30943. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30944. }
  30945. },
  30946. wings: {
  30947. height: math.unit(43, "feet"),
  30948. name: "Wings",
  30949. image: {
  30950. source: "./media/characters/irb'iiritaahn/wings.svg"
  30951. }
  30952. },
  30953. },
  30954. [
  30955. {
  30956. name: "Macro",
  30957. height: math.unit(50 + 9/12, "feet"),
  30958. default: true
  30959. },
  30960. ]
  30961. ))
  30962. characterMakers.push(() => makeCharacter(
  30963. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30964. {
  30965. front: {
  30966. height: math.unit(205, "cm"),
  30967. weight: math.unit(102, "kg"),
  30968. name: "Front",
  30969. image: {
  30970. source: "./media/characters/irbisgreif/front.svg",
  30971. extra: 785/706,
  30972. bottom: 13/798
  30973. }
  30974. },
  30975. back: {
  30976. height: math.unit(205, "cm"),
  30977. weight: math.unit(102, "kg"),
  30978. name: "Back",
  30979. image: {
  30980. source: "./media/characters/irbisgreif/back.svg",
  30981. extra: 713/701,
  30982. bottom: 26/739
  30983. }
  30984. },
  30985. frontDressed: {
  30986. height: math.unit(216, "cm"),
  30987. weight: math.unit(102, "kg"),
  30988. name: "Front-dressed",
  30989. image: {
  30990. source: "./media/characters/irbisgreif/front-dressed.svg",
  30991. extra: 902/776,
  30992. bottom: 14/916
  30993. }
  30994. },
  30995. sideDressed: {
  30996. height: math.unit(195, "cm"),
  30997. weight: math.unit(102, "kg"),
  30998. name: "Side-dressed",
  30999. image: {
  31000. source: "./media/characters/irbisgreif/side-dressed.svg",
  31001. extra: 788/688,
  31002. bottom: 21/809
  31003. }
  31004. },
  31005. backDressed: {
  31006. height: math.unit(216, "cm"),
  31007. weight: math.unit(102, "kg"),
  31008. name: "Back-dressed",
  31009. image: {
  31010. source: "./media/characters/irbisgreif/back-dressed.svg",
  31011. extra: 901/783,
  31012. bottom: 10/911
  31013. }
  31014. },
  31015. dick: {
  31016. height: math.unit(0.49, "feet"),
  31017. name: "Dick",
  31018. image: {
  31019. source: "./media/characters/irbisgreif/dick.svg"
  31020. }
  31021. },
  31022. wingTop: {
  31023. height: math.unit(1.93 , "feet"),
  31024. name: "Wing-top",
  31025. image: {
  31026. source: "./media/characters/irbisgreif/wing-top.svg"
  31027. }
  31028. },
  31029. wingBottom: {
  31030. height: math.unit(1.93 , "feet"),
  31031. name: "Wing-bottom",
  31032. image: {
  31033. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31034. }
  31035. },
  31036. },
  31037. [
  31038. {
  31039. name: "Normal",
  31040. height: math.unit(216, "cm"),
  31041. default: true
  31042. },
  31043. ]
  31044. ))
  31045. characterMakers.push(() => makeCharacter(
  31046. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31047. {
  31048. front: {
  31049. height: math.unit(6, "feet"),
  31050. weight: math.unit(150, "lb"),
  31051. name: "Front",
  31052. image: {
  31053. source: "./media/characters/pride/front.svg",
  31054. extra: 1299/1230,
  31055. bottom: 18/1317
  31056. }
  31057. },
  31058. },
  31059. [
  31060. {
  31061. name: "Normal",
  31062. height: math.unit(7, "feet")
  31063. },
  31064. {
  31065. name: "Mini-macro",
  31066. height: math.unit(11, "feet")
  31067. },
  31068. {
  31069. name: "Macro",
  31070. height: math.unit(15, "meters"),
  31071. default: true
  31072. },
  31073. {
  31074. name: "Macro+",
  31075. height: math.unit(40, "meters")
  31076. },
  31077. ]
  31078. ))
  31079. characterMakers.push(() => makeCharacter(
  31080. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31081. {
  31082. front: {
  31083. height: math.unit(4 + 2 / 12, "feet"),
  31084. weight: math.unit(95, "lb"),
  31085. name: "Front",
  31086. image: {
  31087. source: "./media/characters/vaelophis-nyx/front.svg",
  31088. extra: 2532/2330,
  31089. bottom: 0/2532
  31090. }
  31091. },
  31092. back: {
  31093. height: math.unit(4 + 2 / 12, "feet"),
  31094. weight: math.unit(95, "lb"),
  31095. name: "Back",
  31096. image: {
  31097. source: "./media/characters/vaelophis-nyx/back.svg",
  31098. extra: 2484/2361,
  31099. bottom: 0/2484
  31100. }
  31101. },
  31102. feralSide: {
  31103. height: math.unit(2 + 1/12, "feet"),
  31104. weight: math.unit(20, "lb"),
  31105. name: "Feral (Side)",
  31106. image: {
  31107. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31108. extra: 1721/1581,
  31109. bottom: 70/1791
  31110. }
  31111. },
  31112. feralLazing: {
  31113. height: math.unit(1.08, "feet"),
  31114. weight: math.unit(20, "lb"),
  31115. name: "Feral (Lazing)",
  31116. image: {
  31117. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31118. extra: 822/822,
  31119. bottom: 248/1070
  31120. }
  31121. },
  31122. ear: {
  31123. height: math.unit(0.416, "feet"),
  31124. name: "Ear",
  31125. image: {
  31126. source: "./media/characters/vaelophis-nyx/ear.svg"
  31127. }
  31128. },
  31129. eye: {
  31130. height: math.unit(0.0748, "feet"),
  31131. name: "Eye",
  31132. image: {
  31133. source: "./media/characters/vaelophis-nyx/eye.svg"
  31134. }
  31135. },
  31136. mouth: {
  31137. height: math.unit(0.378, "feet"),
  31138. name: "Mouth",
  31139. image: {
  31140. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31141. }
  31142. },
  31143. spade: {
  31144. height: math.unit(0.55, "feet"),
  31145. name: "Spade",
  31146. image: {
  31147. source: "./media/characters/vaelophis-nyx/spade.svg"
  31148. }
  31149. },
  31150. },
  31151. [
  31152. {
  31153. name: "Normal",
  31154. height: math.unit(4 + 2/12, "feet"),
  31155. default: true
  31156. },
  31157. ]
  31158. ))
  31159. characterMakers.push(() => makeCharacter(
  31160. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31161. {
  31162. front: {
  31163. height: math.unit(7, "feet"),
  31164. weight: math.unit(231, "lb"),
  31165. name: "Front",
  31166. image: {
  31167. source: "./media/characters/flux/front.svg",
  31168. extra: 919/871,
  31169. bottom: 0/919
  31170. }
  31171. },
  31172. back: {
  31173. height: math.unit(7, "feet"),
  31174. weight: math.unit(231, "lb"),
  31175. name: "Back",
  31176. image: {
  31177. source: "./media/characters/flux/back.svg",
  31178. extra: 1040/992,
  31179. bottom: 0/1040
  31180. }
  31181. },
  31182. frontDressed: {
  31183. height: math.unit(7, "feet"),
  31184. weight: math.unit(231, "lb"),
  31185. name: "Front (Dressed)",
  31186. image: {
  31187. source: "./media/characters/flux/front-dressed.svg",
  31188. extra: 919/871,
  31189. bottom: 0/919
  31190. }
  31191. },
  31192. feralSide: {
  31193. height: math.unit(5, "feet"),
  31194. weight: math.unit(150, "lb"),
  31195. name: "Feral (Side)",
  31196. image: {
  31197. source: "./media/characters/flux/feral-side.svg",
  31198. extra: 598/528,
  31199. bottom: 28/626
  31200. }
  31201. },
  31202. head: {
  31203. height: math.unit(1.585, "feet"),
  31204. name: "Head",
  31205. image: {
  31206. source: "./media/characters/flux/head.svg"
  31207. }
  31208. },
  31209. headSide: {
  31210. height: math.unit(1.74, "feet"),
  31211. name: "Head (Side)",
  31212. image: {
  31213. source: "./media/characters/flux/head-side.svg"
  31214. }
  31215. },
  31216. headSideFire: {
  31217. height: math.unit(1.76, "feet"),
  31218. name: "Head (Side, Fire)",
  31219. image: {
  31220. source: "./media/characters/flux/head-side-fire.svg"
  31221. }
  31222. },
  31223. },
  31224. [
  31225. {
  31226. name: "Normal",
  31227. height: math.unit(7, "feet"),
  31228. default: true
  31229. },
  31230. ]
  31231. ))
  31232. characterMakers.push(() => makeCharacter(
  31233. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31234. {
  31235. front: {
  31236. height: math.unit(9, "feet"),
  31237. weight: math.unit(1012, "lb"),
  31238. name: "Front",
  31239. image: {
  31240. source: "./media/characters/ulfra-lupae/front.svg",
  31241. extra: 1083/1011,
  31242. bottom: 67/1150
  31243. }
  31244. },
  31245. },
  31246. [
  31247. {
  31248. name: "Micro",
  31249. height: math.unit(6, "inches")
  31250. },
  31251. {
  31252. name: "Socializing",
  31253. height: math.unit(6 + 5/12, "feet")
  31254. },
  31255. {
  31256. name: "Normal",
  31257. height: math.unit(9, "feet"),
  31258. default: true
  31259. },
  31260. {
  31261. name: "Macro",
  31262. height: math.unit(150, "feet")
  31263. },
  31264. ]
  31265. ))
  31266. characterMakers.push(() => makeCharacter(
  31267. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31268. {
  31269. front: {
  31270. height: math.unit(5 + 2/12, "feet"),
  31271. weight: math.unit(120, "lb"),
  31272. name: "Front",
  31273. image: {
  31274. source: "./media/characters/timber/front.svg",
  31275. extra: 2814/2705,
  31276. bottom: 181/2995
  31277. }
  31278. },
  31279. },
  31280. [
  31281. {
  31282. name: "Normal",
  31283. height: math.unit(5 + 2/12, "feet"),
  31284. default: true
  31285. },
  31286. ]
  31287. ))
  31288. characterMakers.push(() => makeCharacter(
  31289. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31290. {
  31291. front: {
  31292. height: math.unit(5 + 7/12, "feet"),
  31293. weight: math.unit(220, "lb"),
  31294. name: "Front",
  31295. image: {
  31296. source: "./media/characters/nicki/front.svg",
  31297. extra: 453/419,
  31298. bottom: 7/460
  31299. }
  31300. },
  31301. frontAlt: {
  31302. height: math.unit(5 + 7/12, "feet"),
  31303. weight: math.unit(220, "lb"),
  31304. name: "Front-alt",
  31305. image: {
  31306. source: "./media/characters/nicki/front-alt.svg",
  31307. extra: 435/411,
  31308. bottom: 12/447
  31309. }
  31310. },
  31311. back: {
  31312. height: math.unit(5 + 7/12, "feet"),
  31313. weight: math.unit(220, "lb"),
  31314. name: "Back",
  31315. image: {
  31316. source: "./media/characters/nicki/back.svg",
  31317. extra: 440/413,
  31318. bottom: 19/459
  31319. }
  31320. },
  31321. taur: {
  31322. height: math.unit(7 + 6/12, "feet"),
  31323. weight: math.unit(700, "lb"),
  31324. name: "Taur",
  31325. image: {
  31326. source: "./media/characters/nicki/taur.svg",
  31327. extra: 975/773,
  31328. bottom: 0/975
  31329. }
  31330. },
  31331. frontNsfw: {
  31332. height: math.unit(5 + 7/12, "feet"),
  31333. weight: math.unit(220, "lb"),
  31334. name: "Front (NSFW)",
  31335. image: {
  31336. source: "./media/characters/nicki/front-nsfw.svg",
  31337. extra: 453/419,
  31338. bottom: 7/460
  31339. }
  31340. },
  31341. frontNsfwAlt: {
  31342. height: math.unit(5 + 7/12, "feet"),
  31343. weight: math.unit(220, "lb"),
  31344. name: "Front (Alt, NSFW)",
  31345. image: {
  31346. source: "./media/characters/nicki/front-alt-nsfw.svg",
  31347. extra: 435/411,
  31348. bottom: 12/447
  31349. }
  31350. },
  31351. backNsfw: {
  31352. height: math.unit(5 + 7/12, "feet"),
  31353. weight: math.unit(220, "lb"),
  31354. name: "Back (NSFW)",
  31355. image: {
  31356. source: "./media/characters/nicki/back-nsfw.svg",
  31357. extra: 440/413,
  31358. bottom: 19/459
  31359. }
  31360. },
  31361. head: {
  31362. height: math.unit(2.1, "feet"),
  31363. name: "Head",
  31364. image: {
  31365. source: "./media/characters/nicki/head.svg"
  31366. }
  31367. },
  31368. paw: {
  31369. height: math.unit(1.88, "feet"),
  31370. name: "Paw",
  31371. image: {
  31372. source: "./media/characters/nicki/paw.svg"
  31373. }
  31374. },
  31375. },
  31376. [
  31377. {
  31378. name: "Normal",
  31379. height: math.unit(5 + 7/12, "feet"),
  31380. default: true
  31381. },
  31382. ]
  31383. ))
  31384. characterMakers.push(() => makeCharacter(
  31385. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31386. {
  31387. front: {
  31388. height: math.unit(7 + 10/12, "feet"),
  31389. weight: math.unit(3.5, "tons"),
  31390. name: "Front",
  31391. image: {
  31392. source: "./media/characters/lee/front.svg",
  31393. extra: 1773/1615,
  31394. bottom: 86/1859
  31395. }
  31396. },
  31397. hand: {
  31398. height: math.unit(1.78, "feet"),
  31399. name: "Hand",
  31400. image: {
  31401. source: "./media/characters/lee/hand.svg"
  31402. }
  31403. },
  31404. maw: {
  31405. height: math.unit(1.18, "feet"),
  31406. name: "Maw",
  31407. image: {
  31408. source: "./media/characters/lee/maw.svg"
  31409. }
  31410. },
  31411. },
  31412. [
  31413. {
  31414. name: "Normal",
  31415. height: math.unit(7 + 10/12, "feet"),
  31416. default: true
  31417. },
  31418. ]
  31419. ))
  31420. characterMakers.push(() => makeCharacter(
  31421. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31422. {
  31423. front: {
  31424. height: math.unit(9, "feet"),
  31425. name: "Front",
  31426. image: {
  31427. source: "./media/characters/guti/front.svg",
  31428. extra: 4551/4355,
  31429. bottom: 123/4674
  31430. }
  31431. },
  31432. tongue: {
  31433. height: math.unit(1, "feet"),
  31434. name: "Tongue",
  31435. image: {
  31436. source: "./media/characters/guti/tongue.svg"
  31437. }
  31438. },
  31439. paw: {
  31440. height: math.unit(1.18, "feet"),
  31441. name: "Paw",
  31442. image: {
  31443. source: "./media/characters/guti/paw.svg"
  31444. }
  31445. },
  31446. },
  31447. [
  31448. {
  31449. name: "Normal",
  31450. height: math.unit(9, "feet"),
  31451. default: true
  31452. },
  31453. ]
  31454. ))
  31455. characterMakers.push(() => makeCharacter(
  31456. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31457. {
  31458. side: {
  31459. height: math.unit(5, "meters"),
  31460. name: "Side",
  31461. image: {
  31462. source: "./media/characters/vesper/side.svg",
  31463. extra: 1605/1518,
  31464. bottom: 0/1605
  31465. }
  31466. },
  31467. },
  31468. [
  31469. {
  31470. name: "Small",
  31471. height: math.unit(5, "meters")
  31472. },
  31473. {
  31474. name: "Sage",
  31475. height: math.unit(100, "meters"),
  31476. default: true
  31477. },
  31478. {
  31479. name: "Fun Size",
  31480. height: math.unit(600, "meters")
  31481. },
  31482. {
  31483. name: "Goddess",
  31484. height: math.unit(20000, "km")
  31485. },
  31486. {
  31487. name: "Maximum",
  31488. height: math.unit(5, "galaxies")
  31489. },
  31490. ]
  31491. ))
  31492. characterMakers.push(() => makeCharacter(
  31493. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31494. {
  31495. front: {
  31496. height: math.unit(6 + 3/12, "feet"),
  31497. weight: math.unit(190, "lb"),
  31498. name: "Front",
  31499. image: {
  31500. source: "./media/characters/gawain/front.svg",
  31501. extra: 2222/2139,
  31502. bottom: 90/2312
  31503. }
  31504. },
  31505. back: {
  31506. height: math.unit(6 + 3/12, "feet"),
  31507. weight: math.unit(190, "lb"),
  31508. name: "Back",
  31509. image: {
  31510. source: "./media/characters/gawain/back.svg",
  31511. extra: 2199/2111,
  31512. bottom: 73/2272
  31513. }
  31514. },
  31515. },
  31516. [
  31517. {
  31518. name: "Normal",
  31519. height: math.unit(6 + 3/12, "feet"),
  31520. default: true
  31521. },
  31522. ]
  31523. ))
  31524. characterMakers.push(() => makeCharacter(
  31525. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31526. {
  31527. side: {
  31528. height: math.unit(3.5, "meters"),
  31529. weight: math.unit(16000, "lb"),
  31530. name: "Side",
  31531. image: {
  31532. source: "./media/characters/dascalti/side.svg",
  31533. extra: 392/273,
  31534. bottom: 47/439
  31535. }
  31536. },
  31537. breath: {
  31538. height: math.unit(7.4, "feet"),
  31539. name: "Breath",
  31540. image: {
  31541. source: "./media/characters/dascalti/breath.svg"
  31542. }
  31543. },
  31544. fed: {
  31545. height: math.unit(3.6, "meters"),
  31546. weight: math.unit(16000, "lb"),
  31547. name: "Fed",
  31548. image: {
  31549. source: "./media/characters/dascalti/fed.svg",
  31550. extra: 1419/820,
  31551. bottom: 95/1514
  31552. }
  31553. },
  31554. },
  31555. [
  31556. {
  31557. name: "Normal",
  31558. height: math.unit(3.5, "meters"),
  31559. default: true
  31560. },
  31561. ]
  31562. ))
  31563. characterMakers.push(() => makeCharacter(
  31564. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31565. {
  31566. front: {
  31567. height: math.unit(3 + 5/12, "feet"),
  31568. name: "Front",
  31569. image: {
  31570. source: "./media/characters/mauve/front.svg",
  31571. extra: 1126/1033,
  31572. bottom: 65/1191
  31573. }
  31574. },
  31575. side: {
  31576. height: math.unit(3 + 5/12, "feet"),
  31577. name: "Side",
  31578. image: {
  31579. source: "./media/characters/mauve/side.svg",
  31580. extra: 1089/1001,
  31581. bottom: 29/1118
  31582. }
  31583. },
  31584. back: {
  31585. height: math.unit(3 + 5/12, "feet"),
  31586. name: "Back",
  31587. image: {
  31588. source: "./media/characters/mauve/back.svg",
  31589. extra: 1173/1053,
  31590. bottom: 109/1282
  31591. }
  31592. },
  31593. },
  31594. [
  31595. {
  31596. name: "Normal",
  31597. height: math.unit(3 + 5/12, "feet"),
  31598. default: true
  31599. },
  31600. ]
  31601. ))
  31602. characterMakers.push(() => makeCharacter(
  31603. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31604. {
  31605. front: {
  31606. height: math.unit(6 + 3/12, "feet"),
  31607. weight: math.unit(430, "lb"),
  31608. name: "Front",
  31609. image: {
  31610. source: "./media/characters/carlos/front.svg",
  31611. extra: 1964/1913,
  31612. bottom: 70/2034
  31613. }
  31614. },
  31615. },
  31616. [
  31617. {
  31618. name: "Normal",
  31619. height: math.unit(6 + 3/12, "feet"),
  31620. default: true
  31621. },
  31622. ]
  31623. ))
  31624. characterMakers.push(() => makeCharacter(
  31625. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31626. {
  31627. back: {
  31628. height: math.unit(5 + 10/12, "feet"),
  31629. weight: math.unit(200, "lb"),
  31630. name: "Back",
  31631. image: {
  31632. source: "./media/characters/jax/back.svg",
  31633. extra: 764/739,
  31634. bottom: 25/789
  31635. }
  31636. },
  31637. },
  31638. [
  31639. {
  31640. name: "Normal",
  31641. height: math.unit(5 + 10/12, "feet"),
  31642. default: true
  31643. },
  31644. ]
  31645. ))
  31646. characterMakers.push(() => makeCharacter(
  31647. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31648. {
  31649. front: {
  31650. height: math.unit(8, "feet"),
  31651. weight: math.unit(250, "lb"),
  31652. name: "Front",
  31653. image: {
  31654. source: "./media/characters/eikthynir/front.svg",
  31655. extra: 1332/1166,
  31656. bottom: 82/1414
  31657. }
  31658. },
  31659. back: {
  31660. height: math.unit(8, "feet"),
  31661. weight: math.unit(250, "lb"),
  31662. name: "Back",
  31663. image: {
  31664. source: "./media/characters/eikthynir/back.svg",
  31665. extra: 1342/1190,
  31666. bottom: 19/1361
  31667. }
  31668. },
  31669. dick: {
  31670. height: math.unit(2.35, "feet"),
  31671. name: "Dick",
  31672. image: {
  31673. source: "./media/characters/eikthynir/dick.svg"
  31674. }
  31675. },
  31676. },
  31677. [
  31678. {
  31679. name: "Normal",
  31680. height: math.unit(8, "feet"),
  31681. default: true
  31682. },
  31683. ]
  31684. ))
  31685. characterMakers.push(() => makeCharacter(
  31686. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31687. {
  31688. front: {
  31689. height: math.unit(99, "meters"),
  31690. weight: math.unit(13000, "tons"),
  31691. name: "Front",
  31692. image: {
  31693. source: "./media/characters/zlmos/front.svg",
  31694. extra: 2202/1992,
  31695. bottom: 315/2517
  31696. }
  31697. },
  31698. },
  31699. [
  31700. {
  31701. name: "Macro",
  31702. height: math.unit(99, "meters"),
  31703. default: true
  31704. },
  31705. ]
  31706. ))
  31707. characterMakers.push(() => makeCharacter(
  31708. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31709. {
  31710. front: {
  31711. height: math.unit(6 + 5/12, "feet"),
  31712. name: "Front",
  31713. image: {
  31714. source: "./media/characters/purri/front.svg",
  31715. extra: 1698/1610,
  31716. bottom: 32/1730
  31717. }
  31718. },
  31719. frontAlt: {
  31720. height: math.unit(6 + 5/12, "feet"),
  31721. name: "Front (Alt)",
  31722. image: {
  31723. source: "./media/characters/purri/front-alt.svg",
  31724. extra: 450/420,
  31725. bottom: 26/476
  31726. }
  31727. },
  31728. boots: {
  31729. height: math.unit(5.5, "feet"),
  31730. name: "Boots",
  31731. image: {
  31732. source: "./media/characters/purri/boots.svg",
  31733. extra: 905/853,
  31734. bottom: 18/923
  31735. }
  31736. },
  31737. lying: {
  31738. height: math.unit(2, "feet"),
  31739. name: "Lying",
  31740. image: {
  31741. source: "./media/characters/purri/lying.svg",
  31742. extra: 940/843,
  31743. bottom: 146/1086
  31744. }
  31745. },
  31746. devious: {
  31747. height: math.unit(1.77, "feet"),
  31748. name: "Devious",
  31749. image: {
  31750. source: "./media/characters/purri/devious.svg",
  31751. extra: 1440/1155,
  31752. bottom: 147/1587
  31753. }
  31754. },
  31755. bean: {
  31756. height: math.unit(1.94, "feet"),
  31757. name: "Bean",
  31758. image: {
  31759. source: "./media/characters/purri/bean.svg"
  31760. }
  31761. },
  31762. },
  31763. [
  31764. {
  31765. name: "Micro",
  31766. height: math.unit(1, "mm")
  31767. },
  31768. {
  31769. name: "Normal",
  31770. height: math.unit(6 + 5/12, "feet"),
  31771. default: true
  31772. },
  31773. {
  31774. name: "Macro :3c",
  31775. height: math.unit(2, "miles")
  31776. },
  31777. ]
  31778. ))
  31779. characterMakers.push(() => makeCharacter(
  31780. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31781. {
  31782. front: {
  31783. height: math.unit(6 + 2/12, "feet"),
  31784. weight: math.unit(250, "lb"),
  31785. name: "Front",
  31786. image: {
  31787. source: "./media/characters/moonlight/front.svg",
  31788. extra: 1044/908,
  31789. bottom: 56/1100
  31790. }
  31791. },
  31792. feral: {
  31793. height: math.unit(3 + 1/12, "feet"),
  31794. weight: math.unit(50, "kg"),
  31795. name: "Feral",
  31796. image: {
  31797. source: "./media/characters/moonlight/feral.svg",
  31798. extra: 3705/2791,
  31799. bottom: 145/3850
  31800. }
  31801. },
  31802. paw: {
  31803. height: math.unit(1, "feet"),
  31804. name: "Paw",
  31805. image: {
  31806. source: "./media/characters/moonlight/paw.svg"
  31807. }
  31808. },
  31809. paws: {
  31810. height: math.unit(0.98, "feet"),
  31811. name: "Paws",
  31812. image: {
  31813. source: "./media/characters/moonlight/paws.svg",
  31814. extra: 939/939,
  31815. bottom: 50/989
  31816. }
  31817. },
  31818. mouth: {
  31819. height: math.unit(0.48, "feet"),
  31820. name: "Mouth",
  31821. image: {
  31822. source: "./media/characters/moonlight/mouth.svg"
  31823. }
  31824. },
  31825. dick: {
  31826. height: math.unit(1.46, "feet"),
  31827. name: "Dick",
  31828. image: {
  31829. source: "./media/characters/moonlight/dick.svg"
  31830. }
  31831. },
  31832. },
  31833. [
  31834. {
  31835. name: "Normal",
  31836. height: math.unit(6 + 2/12, "feet"),
  31837. default: true
  31838. },
  31839. {
  31840. name: "Macro",
  31841. height: math.unit(300, "feet")
  31842. },
  31843. {
  31844. name: "Macro+",
  31845. height: math.unit(1, "mile")
  31846. },
  31847. {
  31848. name: "Mt. Moon",
  31849. height: math.unit(5, "miles")
  31850. },
  31851. {
  31852. name: "Megamacro",
  31853. height: math.unit(15, "miles")
  31854. },
  31855. ]
  31856. ))
  31857. characterMakers.push(() => makeCharacter(
  31858. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31859. {
  31860. back: {
  31861. height: math.unit(6, "feet"),
  31862. weight: math.unit(150, "lb"),
  31863. name: "Back",
  31864. image: {
  31865. source: "./media/characters/sylen/back.svg",
  31866. extra: 1335/1273,
  31867. bottom: 107/1442
  31868. }
  31869. },
  31870. },
  31871. [
  31872. {
  31873. name: "Normal",
  31874. height: math.unit(5 + 5/12, "feet")
  31875. },
  31876. {
  31877. name: "Megamacro",
  31878. height: math.unit(3, "miles"),
  31879. default: true
  31880. },
  31881. ]
  31882. ))
  31883. characterMakers.push(() => makeCharacter(
  31884. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31885. {
  31886. front: {
  31887. height: math.unit(6, "feet"),
  31888. weight: math.unit(190, "lb"),
  31889. name: "Front",
  31890. image: {
  31891. source: "./media/characters/huttser/front.svg",
  31892. extra: 1152/1058,
  31893. bottom: 23/1175
  31894. }
  31895. },
  31896. side: {
  31897. height: math.unit(6, "feet"),
  31898. weight: math.unit(190, "lb"),
  31899. name: "Side",
  31900. image: {
  31901. source: "./media/characters/huttser/side.svg",
  31902. extra: 1174/1065,
  31903. bottom: 18/1192
  31904. }
  31905. },
  31906. back: {
  31907. height: math.unit(6, "feet"),
  31908. weight: math.unit(190, "lb"),
  31909. name: "Back",
  31910. image: {
  31911. source: "./media/characters/huttser/back.svg",
  31912. extra: 1158/1056,
  31913. bottom: 12/1170
  31914. }
  31915. },
  31916. },
  31917. [
  31918. ]
  31919. ))
  31920. characterMakers.push(() => makeCharacter(
  31921. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31922. {
  31923. side: {
  31924. height: math.unit(12 + 9/12, "feet"),
  31925. weight: math.unit(15000, "lb"),
  31926. name: "Side",
  31927. image: {
  31928. source: "./media/characters/faan/side.svg",
  31929. extra: 2747/2697,
  31930. bottom: 0/2747
  31931. }
  31932. },
  31933. front: {
  31934. height: math.unit(12 + 9/12, "feet"),
  31935. weight: math.unit(15000, "lb"),
  31936. name: "Front",
  31937. image: {
  31938. source: "./media/characters/faan/front.svg",
  31939. extra: 607/571,
  31940. bottom: 24/631
  31941. }
  31942. },
  31943. head: {
  31944. height: math.unit(2.85, "feet"),
  31945. name: "Head",
  31946. image: {
  31947. source: "./media/characters/faan/head.svg"
  31948. }
  31949. },
  31950. headAlt: {
  31951. height: math.unit(3.13, "feet"),
  31952. name: "Head-alt",
  31953. image: {
  31954. source: "./media/characters/faan/head-alt.svg"
  31955. }
  31956. },
  31957. },
  31958. [
  31959. {
  31960. name: "Normal",
  31961. height: math.unit(12 + 9/12, "feet"),
  31962. default: true
  31963. },
  31964. ]
  31965. ))
  31966. characterMakers.push(() => makeCharacter(
  31967. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31968. {
  31969. front: {
  31970. height: math.unit(6, "feet"),
  31971. weight: math.unit(300, "lb"),
  31972. name: "Front",
  31973. image: {
  31974. source: "./media/characters/tanio/front.svg",
  31975. extra: 711/673,
  31976. bottom: 25/736
  31977. }
  31978. },
  31979. },
  31980. [
  31981. {
  31982. name: "Normal",
  31983. height: math.unit(6, "feet"),
  31984. default: true
  31985. },
  31986. ]
  31987. ))
  31988. characterMakers.push(() => makeCharacter(
  31989. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31990. {
  31991. front: {
  31992. height: math.unit(3, "inches"),
  31993. name: "Front",
  31994. image: {
  31995. source: "./media/characters/noboru/front.svg",
  31996. extra: 1039/932,
  31997. bottom: 18/1057
  31998. }
  31999. },
  32000. },
  32001. [
  32002. {
  32003. name: "Micro",
  32004. height: math.unit(3, "inches"),
  32005. default: true
  32006. },
  32007. ]
  32008. ))
  32009. characterMakers.push(() => makeCharacter(
  32010. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32011. {
  32012. front: {
  32013. height: math.unit(1.85, "meters"),
  32014. weight: math.unit(80, "kg"),
  32015. name: "Front",
  32016. image: {
  32017. source: "./media/characters/daniel-barrett/front.svg",
  32018. extra: 355/337,
  32019. bottom: 9/364
  32020. }
  32021. },
  32022. },
  32023. [
  32024. {
  32025. name: "Pico",
  32026. height: math.unit(0.0433, "mm")
  32027. },
  32028. {
  32029. name: "Nano",
  32030. height: math.unit(1.5, "mm")
  32031. },
  32032. {
  32033. name: "Micro",
  32034. height: math.unit(5.3, "cm"),
  32035. default: true
  32036. },
  32037. {
  32038. name: "Normal",
  32039. height: math.unit(1.85, "meters")
  32040. },
  32041. {
  32042. name: "Macro",
  32043. height: math.unit(64.7, "meters")
  32044. },
  32045. {
  32046. name: "Megamacro",
  32047. height: math.unit(2.26, "km")
  32048. },
  32049. {
  32050. name: "Gigamacro",
  32051. height: math.unit(79, "km")
  32052. },
  32053. {
  32054. name: "Teramacro",
  32055. height: math.unit(2765, "km")
  32056. },
  32057. {
  32058. name: "Petamacro",
  32059. height: math.unit(96678, "km")
  32060. },
  32061. ]
  32062. ))
  32063. characterMakers.push(() => makeCharacter(
  32064. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32065. {
  32066. front: {
  32067. height: math.unit(30, "meters"),
  32068. weight: math.unit(400, "tons"),
  32069. name: "Front",
  32070. image: {
  32071. source: "./media/characters/zeel/front.svg",
  32072. extra: 2599/2599,
  32073. bottom: 226/2825
  32074. }
  32075. },
  32076. },
  32077. [
  32078. {
  32079. name: "Macro",
  32080. height: math.unit(30, "meters"),
  32081. default: true
  32082. },
  32083. ]
  32084. ))
  32085. characterMakers.push(() => makeCharacter(
  32086. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32087. {
  32088. front: {
  32089. height: math.unit(6 + 7/12, "feet"),
  32090. weight: math.unit(210, "lb"),
  32091. name: "Front",
  32092. image: {
  32093. source: "./media/characters/tarn/front.svg",
  32094. extra: 3517/3220,
  32095. bottom: 91/3608
  32096. }
  32097. },
  32098. back: {
  32099. height: math.unit(6 + 7/12, "feet"),
  32100. weight: math.unit(210, "lb"),
  32101. name: "Back",
  32102. image: {
  32103. source: "./media/characters/tarn/back.svg",
  32104. extra: 3566/3241,
  32105. bottom: 34/3600
  32106. }
  32107. },
  32108. dick: {
  32109. height: math.unit(1.65, "feet"),
  32110. name: "Dick",
  32111. image: {
  32112. source: "./media/characters/tarn/dick.svg"
  32113. }
  32114. },
  32115. paw: {
  32116. height: math.unit(1.80, "feet"),
  32117. name: "Paw",
  32118. image: {
  32119. source: "./media/characters/tarn/paw.svg"
  32120. }
  32121. },
  32122. tongue: {
  32123. height: math.unit(0.97, "feet"),
  32124. name: "Tongue",
  32125. image: {
  32126. source: "./media/characters/tarn/tongue.svg"
  32127. }
  32128. },
  32129. },
  32130. [
  32131. {
  32132. name: "Micro",
  32133. height: math.unit(4, "inches")
  32134. },
  32135. {
  32136. name: "Normal",
  32137. height: math.unit(6 + 7/12, "feet"),
  32138. default: true
  32139. },
  32140. {
  32141. name: "Macro",
  32142. height: math.unit(300, "feet")
  32143. },
  32144. ]
  32145. ))
  32146. characterMakers.push(() => makeCharacter(
  32147. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32148. {
  32149. front: {
  32150. height: math.unit(5 + 7/12, "feet"),
  32151. weight: math.unit(80, "kg"),
  32152. name: "Front",
  32153. image: {
  32154. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32155. extra: 3023/2865,
  32156. bottom: 33/3056
  32157. }
  32158. },
  32159. back: {
  32160. height: math.unit(5 + 7/12, "feet"),
  32161. weight: math.unit(80, "kg"),
  32162. name: "Back",
  32163. image: {
  32164. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32165. extra: 3020/2886,
  32166. bottom: 30/3050
  32167. }
  32168. },
  32169. dick: {
  32170. height: math.unit(0.98, "feet"),
  32171. name: "Dick",
  32172. image: {
  32173. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32174. }
  32175. },
  32176. anatomy: {
  32177. height: math.unit(2.86, "feet"),
  32178. name: "Anatomy",
  32179. image: {
  32180. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32181. }
  32182. },
  32183. },
  32184. [
  32185. {
  32186. name: "Really Small",
  32187. height: math.unit(2, "inches")
  32188. },
  32189. {
  32190. name: "Micro",
  32191. height: math.unit(5.583, "inches")
  32192. },
  32193. {
  32194. name: "Normal",
  32195. height: math.unit(5 + 7/12, "feet"),
  32196. default: true
  32197. },
  32198. {
  32199. name: "Macro",
  32200. height: math.unit(67, "feet")
  32201. },
  32202. {
  32203. name: "Megamacro",
  32204. height: math.unit(134, "feet")
  32205. },
  32206. ]
  32207. ))
  32208. characterMakers.push(() => makeCharacter(
  32209. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32210. {
  32211. front: {
  32212. height: math.unit(9, "feet"),
  32213. weight: math.unit(120, "lb"),
  32214. name: "Front",
  32215. image: {
  32216. source: "./media/characters/sally/front.svg",
  32217. extra: 1506/1349,
  32218. bottom: 66/1572
  32219. }
  32220. },
  32221. },
  32222. [
  32223. {
  32224. name: "Normal",
  32225. height: math.unit(9, "feet"),
  32226. default: true
  32227. },
  32228. ]
  32229. ))
  32230. characterMakers.push(() => makeCharacter(
  32231. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32232. {
  32233. front: {
  32234. height: math.unit(8, "feet"),
  32235. weight: math.unit(900, "lb"),
  32236. name: "Front",
  32237. image: {
  32238. source: "./media/characters/owen/front.svg",
  32239. extra: 1761/1657,
  32240. bottom: 74/1835
  32241. }
  32242. },
  32243. side: {
  32244. height: math.unit(8, "feet"),
  32245. weight: math.unit(900, "lb"),
  32246. name: "Side",
  32247. image: {
  32248. source: "./media/characters/owen/side.svg",
  32249. extra: 1797/1734,
  32250. bottom: 30/1827
  32251. }
  32252. },
  32253. back: {
  32254. height: math.unit(8, "feet"),
  32255. weight: math.unit(900, "lb"),
  32256. name: "Back",
  32257. image: {
  32258. source: "./media/characters/owen/back.svg",
  32259. extra: 1796/1706,
  32260. bottom: 59/1855
  32261. }
  32262. },
  32263. maw: {
  32264. height: math.unit(1.76, "feet"),
  32265. name: "Maw",
  32266. image: {
  32267. source: "./media/characters/owen/maw.svg"
  32268. }
  32269. },
  32270. },
  32271. [
  32272. {
  32273. name: "Normal",
  32274. height: math.unit(8, "feet"),
  32275. default: true
  32276. },
  32277. ]
  32278. ))
  32279. characterMakers.push(() => makeCharacter(
  32280. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32281. {
  32282. front: {
  32283. height: math.unit(4, "feet"),
  32284. weight: math.unit(400, "lb"),
  32285. name: "Front",
  32286. image: {
  32287. source: "./media/characters/ryth/front.svg",
  32288. extra: 1920/1748,
  32289. bottom: 42/1962
  32290. }
  32291. },
  32292. back: {
  32293. height: math.unit(4, "feet"),
  32294. weight: math.unit(400, "lb"),
  32295. name: "Back",
  32296. image: {
  32297. source: "./media/characters/ryth/back.svg",
  32298. extra: 1897/1690,
  32299. bottom: 89/1986
  32300. }
  32301. },
  32302. mouth: {
  32303. height: math.unit(1.39, "feet"),
  32304. name: "Mouth",
  32305. image: {
  32306. source: "./media/characters/ryth/mouth.svg"
  32307. }
  32308. },
  32309. tailmaw: {
  32310. height: math.unit(1.23, "feet"),
  32311. name: "Tailmaw",
  32312. image: {
  32313. source: "./media/characters/ryth/tailmaw.svg"
  32314. }
  32315. },
  32316. goia: {
  32317. height: math.unit(4, "meters"),
  32318. weight: math.unit(10800, "lb"),
  32319. name: "Goia",
  32320. image: {
  32321. source: "./media/characters/ryth/goia.svg",
  32322. extra: 745/640,
  32323. bottom: 107/852
  32324. }
  32325. },
  32326. goiaFront: {
  32327. height: math.unit(4, "meters"),
  32328. weight: math.unit(10800, "lb"),
  32329. name: "Goia (Front)",
  32330. image: {
  32331. source: "./media/characters/ryth/goia-front.svg",
  32332. extra: 750/586,
  32333. bottom: 114/864
  32334. }
  32335. },
  32336. goiaMaw: {
  32337. height: math.unit(5.55, "feet"),
  32338. name: "Goia Maw",
  32339. image: {
  32340. source: "./media/characters/ryth/goia-maw.svg"
  32341. }
  32342. },
  32343. goiaForepaw: {
  32344. height: math.unit(3.5, "feet"),
  32345. name: "Goia Forepaw",
  32346. image: {
  32347. source: "./media/characters/ryth/goia-forepaw.svg"
  32348. }
  32349. },
  32350. goiaHindpaw: {
  32351. height: math.unit(5.55, "feet"),
  32352. name: "Goia Hindpaw",
  32353. image: {
  32354. source: "./media/characters/ryth/goia-hindpaw.svg"
  32355. }
  32356. },
  32357. },
  32358. [
  32359. {
  32360. name: "Normal",
  32361. height: math.unit(4, "feet"),
  32362. default: true
  32363. },
  32364. ]
  32365. ))
  32366. characterMakers.push(() => makeCharacter(
  32367. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32368. {
  32369. front: {
  32370. height: math.unit(7, "feet"),
  32371. weight: math.unit(180, "lb"),
  32372. name: "Front",
  32373. image: {
  32374. source: "./media/characters/necrolance/front.svg",
  32375. extra: 1062/947,
  32376. bottom: 41/1103
  32377. }
  32378. },
  32379. back: {
  32380. height: math.unit(7, "feet"),
  32381. weight: math.unit(180, "lb"),
  32382. name: "Back",
  32383. image: {
  32384. source: "./media/characters/necrolance/back.svg",
  32385. extra: 1045/984,
  32386. bottom: 14/1059
  32387. }
  32388. },
  32389. wing: {
  32390. height: math.unit(2.67, "feet"),
  32391. name: "Wing",
  32392. image: {
  32393. source: "./media/characters/necrolance/wing.svg"
  32394. }
  32395. },
  32396. },
  32397. [
  32398. {
  32399. name: "Normal",
  32400. height: math.unit(7, "feet"),
  32401. default: true
  32402. },
  32403. ]
  32404. ))
  32405. characterMakers.push(() => makeCharacter(
  32406. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32407. {
  32408. front: {
  32409. height: math.unit(76, "meters"),
  32410. weight: math.unit(30000, "tons"),
  32411. name: "Front",
  32412. image: {
  32413. source: "./media/characters/tyler/front.svg",
  32414. extra: 1640/1640,
  32415. bottom: 114/1754
  32416. }
  32417. },
  32418. },
  32419. [
  32420. {
  32421. name: "Macro",
  32422. height: math.unit(76, "meters"),
  32423. default: true
  32424. },
  32425. ]
  32426. ))
  32427. characterMakers.push(() => makeCharacter(
  32428. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32429. {
  32430. front: {
  32431. height: math.unit(4 + 11/12, "feet"),
  32432. weight: math.unit(132, "lb"),
  32433. name: "Front",
  32434. image: {
  32435. source: "./media/characters/icey/front.svg",
  32436. extra: 2750/2550,
  32437. bottom: 33/2783
  32438. }
  32439. },
  32440. back: {
  32441. height: math.unit(4 + 11/12, "feet"),
  32442. weight: math.unit(132, "lb"),
  32443. name: "Back",
  32444. image: {
  32445. source: "./media/characters/icey/back.svg",
  32446. extra: 2624/2481,
  32447. bottom: 35/2659
  32448. }
  32449. },
  32450. },
  32451. [
  32452. {
  32453. name: "Normal",
  32454. height: math.unit(4 + 11/12, "feet"),
  32455. default: true
  32456. },
  32457. ]
  32458. ))
  32459. characterMakers.push(() => makeCharacter(
  32460. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32461. {
  32462. front: {
  32463. height: math.unit(100, "feet"),
  32464. weight: math.unit(0, "lb"),
  32465. name: "Front",
  32466. image: {
  32467. source: "./media/characters/smile/front.svg",
  32468. extra: 2983/2912,
  32469. bottom: 162/3145
  32470. }
  32471. },
  32472. back: {
  32473. height: math.unit(100, "feet"),
  32474. weight: math.unit(0, "lb"),
  32475. name: "Back",
  32476. image: {
  32477. source: "./media/characters/smile/back.svg",
  32478. extra: 3143/3031,
  32479. bottom: 91/3234
  32480. }
  32481. },
  32482. head: {
  32483. height: math.unit(26.3, "feet"),
  32484. weight: math.unit(0, "lb"),
  32485. name: "Head",
  32486. image: {
  32487. source: "./media/characters/smile/head.svg"
  32488. }
  32489. },
  32490. collar: {
  32491. height: math.unit(5.3, "feet"),
  32492. weight: math.unit(0, "lb"),
  32493. name: "Collar",
  32494. image: {
  32495. source: "./media/characters/smile/collar.svg"
  32496. }
  32497. },
  32498. },
  32499. [
  32500. {
  32501. name: "Macro",
  32502. height: math.unit(100, "feet"),
  32503. default: true
  32504. },
  32505. ]
  32506. ))
  32507. characterMakers.push(() => makeCharacter(
  32508. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32509. {
  32510. dragon: {
  32511. height: math.unit(26, "feet"),
  32512. weight: math.unit(36, "tons"),
  32513. name: "Dragon",
  32514. image: {
  32515. source: "./media/characters/arimphae/dragon.svg",
  32516. extra: 1574/983,
  32517. bottom: 357/1931
  32518. }
  32519. },
  32520. drake: {
  32521. height: math.unit(9, "feet"),
  32522. weight: math.unit(1.5, "tons"),
  32523. name: "Drake",
  32524. image: {
  32525. source: "./media/characters/arimphae/drake.svg",
  32526. extra: 1120/925,
  32527. bottom: 435/1555
  32528. }
  32529. },
  32530. },
  32531. [
  32532. {
  32533. name: "Small",
  32534. height: math.unit(26*5/9, "feet")
  32535. },
  32536. {
  32537. name: "Normal",
  32538. height: math.unit(26, "feet"),
  32539. default: true
  32540. },
  32541. ]
  32542. ))
  32543. characterMakers.push(() => makeCharacter(
  32544. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32545. {
  32546. front: {
  32547. height: math.unit(8 + 9/12, "feet"),
  32548. name: "Front",
  32549. image: {
  32550. source: "./media/characters/xander/front.svg",
  32551. extra: 1237/974,
  32552. bottom: 94/1331
  32553. }
  32554. },
  32555. },
  32556. [
  32557. {
  32558. name: "Normal",
  32559. height: math.unit(8 + 9/12, "feet"),
  32560. default: true
  32561. },
  32562. {
  32563. name: "Gaze Grabber",
  32564. height: math.unit(13 + 8/12, "feet")
  32565. },
  32566. {
  32567. name: "Jaw Dropper",
  32568. height: math.unit(27, "feet")
  32569. },
  32570. {
  32571. name: "Show Stopper",
  32572. height: math.unit(136, "feet")
  32573. },
  32574. {
  32575. name: "Superstar",
  32576. height: math.unit(1.9e6, "miles")
  32577. },
  32578. ]
  32579. ))
  32580. characterMakers.push(() => makeCharacter(
  32581. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32582. {
  32583. side: {
  32584. height: math.unit(2100, "feet"),
  32585. name: "Side",
  32586. image: {
  32587. source: "./media/characters/osiris/side.svg",
  32588. extra: 1105/939,
  32589. bottom: 167/1272
  32590. }
  32591. },
  32592. },
  32593. [
  32594. {
  32595. name: "Macro",
  32596. height: math.unit(2100, "feet"),
  32597. default: true
  32598. },
  32599. ]
  32600. ))
  32601. characterMakers.push(() => makeCharacter(
  32602. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32603. {
  32604. front: {
  32605. height: math.unit(6 + 8/12, "feet"),
  32606. weight: math.unit(225, "lb"),
  32607. name: "Front",
  32608. image: {
  32609. source: "./media/characters/rhys-londe/front.svg",
  32610. extra: 2258/2141,
  32611. bottom: 188/2446
  32612. }
  32613. },
  32614. back: {
  32615. height: math.unit(6 + 8/12, "feet"),
  32616. weight: math.unit(225, "lb"),
  32617. name: "Back",
  32618. image: {
  32619. source: "./media/characters/rhys-londe/back.svg",
  32620. extra: 2237/2137,
  32621. bottom: 63/2300
  32622. }
  32623. },
  32624. frontNsfw: {
  32625. height: math.unit(6 + 8/12, "feet"),
  32626. weight: math.unit(225, "lb"),
  32627. name: "Front (NSFW)",
  32628. image: {
  32629. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32630. extra: 2258/2141,
  32631. bottom: 188/2446
  32632. }
  32633. },
  32634. backNsfw: {
  32635. height: math.unit(6 + 8/12, "feet"),
  32636. weight: math.unit(225, "lb"),
  32637. name: "Back (NSFW)",
  32638. image: {
  32639. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32640. extra: 2237/2137,
  32641. bottom: 63/2300
  32642. }
  32643. },
  32644. dick: {
  32645. height: math.unit(30, "inches"),
  32646. name: "Dick",
  32647. image: {
  32648. source: "./media/characters/rhys-londe/dick.svg"
  32649. }
  32650. },
  32651. maw: {
  32652. height: math.unit(1.6, "feet"),
  32653. name: "Maw",
  32654. image: {
  32655. source: "./media/characters/rhys-londe/maw.svg"
  32656. }
  32657. },
  32658. },
  32659. [
  32660. {
  32661. name: "Normal",
  32662. height: math.unit(6 + 8/12, "feet"),
  32663. default: true
  32664. },
  32665. ]
  32666. ))
  32667. characterMakers.push(() => makeCharacter(
  32668. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32669. {
  32670. front: {
  32671. height: math.unit(3 + 10/12, "feet"),
  32672. weight: math.unit(90, "lb"),
  32673. name: "Front",
  32674. image: {
  32675. source: "./media/characters/taivas-ensim/front.svg",
  32676. extra: 1327/1216,
  32677. bottom: 96/1423
  32678. }
  32679. },
  32680. back: {
  32681. height: math.unit(3 + 10/12, "feet"),
  32682. weight: math.unit(90, "lb"),
  32683. name: "Back",
  32684. image: {
  32685. source: "./media/characters/taivas-ensim/back.svg",
  32686. extra: 1355/1247,
  32687. bottom: 11/1366
  32688. }
  32689. },
  32690. frontNsfw: {
  32691. height: math.unit(3 + 10/12, "feet"),
  32692. weight: math.unit(90, "lb"),
  32693. name: "Front (NSFW)",
  32694. image: {
  32695. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32696. extra: 1327/1216,
  32697. bottom: 96/1423
  32698. }
  32699. },
  32700. backNsfw: {
  32701. height: math.unit(3 + 10/12, "feet"),
  32702. weight: math.unit(90, "lb"),
  32703. name: "Back (NSFW)",
  32704. image: {
  32705. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32706. extra: 1355/1247,
  32707. bottom: 11/1366
  32708. }
  32709. },
  32710. },
  32711. [
  32712. {
  32713. name: "Normal",
  32714. height: math.unit(3 + 10/12, "feet"),
  32715. default: true
  32716. },
  32717. ]
  32718. ))
  32719. characterMakers.push(() => makeCharacter(
  32720. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32721. {
  32722. front: {
  32723. height: math.unit(9 + 6/12, "feet"),
  32724. weight: math.unit(940, "lb"),
  32725. name: "Front",
  32726. image: {
  32727. source: "./media/characters/byliss/front.svg",
  32728. extra: 1327/1290,
  32729. bottom: 82/1409
  32730. }
  32731. },
  32732. back: {
  32733. height: math.unit(9 + 6/12, "feet"),
  32734. weight: math.unit(940, "lb"),
  32735. name: "Back",
  32736. image: {
  32737. source: "./media/characters/byliss/back.svg",
  32738. extra: 1376/1349,
  32739. bottom: 9/1385
  32740. }
  32741. },
  32742. frontNsfw: {
  32743. height: math.unit(9 + 6/12, "feet"),
  32744. weight: math.unit(940, "lb"),
  32745. name: "Front (NSFW)",
  32746. image: {
  32747. source: "./media/characters/byliss/front-nsfw.svg",
  32748. extra: 1327/1290,
  32749. bottom: 82/1409
  32750. }
  32751. },
  32752. backNsfw: {
  32753. height: math.unit(9 + 6/12, "feet"),
  32754. weight: math.unit(940, "lb"),
  32755. name: "Back (NSFW)",
  32756. image: {
  32757. source: "./media/characters/byliss/back-nsfw.svg",
  32758. extra: 1376/1349,
  32759. bottom: 9/1385
  32760. }
  32761. },
  32762. },
  32763. [
  32764. {
  32765. name: "Normal",
  32766. height: math.unit(9 + 6/12, "feet"),
  32767. default: true
  32768. },
  32769. ]
  32770. ))
  32771. characterMakers.push(() => makeCharacter(
  32772. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32773. {
  32774. front: {
  32775. height: math.unit(5 + 2/12, "feet"),
  32776. weight: math.unit(200, "lb"),
  32777. name: "Front",
  32778. image: {
  32779. source: "./media/characters/noraly/front.svg",
  32780. extra: 4985/4773,
  32781. bottom: 150/5135
  32782. }
  32783. },
  32784. full: {
  32785. height: math.unit(5 + 2/12, "feet"),
  32786. weight: math.unit(164, "lb"),
  32787. name: "Full",
  32788. image: {
  32789. source: "./media/characters/noraly/full.svg",
  32790. extra: 1114/1059,
  32791. bottom: 35/1149
  32792. }
  32793. },
  32794. fuller: {
  32795. height: math.unit(5 + 2/12, "feet"),
  32796. weight: math.unit(230, "lb"),
  32797. name: "Fuller",
  32798. image: {
  32799. source: "./media/characters/noraly/fuller.svg",
  32800. extra: 1114/1059,
  32801. bottom: 35/1149
  32802. }
  32803. },
  32804. fullest: {
  32805. height: math.unit(5 + 2/12, "feet"),
  32806. weight: math.unit(300, "lb"),
  32807. name: "Fullest",
  32808. image: {
  32809. source: "./media/characters/noraly/fullest.svg",
  32810. extra: 1114/1059,
  32811. bottom: 35/1149
  32812. }
  32813. },
  32814. },
  32815. [
  32816. {
  32817. name: "Normal",
  32818. height: math.unit(5 + 2/12, "feet"),
  32819. default: true
  32820. },
  32821. ]
  32822. ))
  32823. characterMakers.push(() => makeCharacter(
  32824. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32825. {
  32826. front: {
  32827. height: math.unit(5 + 2/12, "feet"),
  32828. weight: math.unit(210, "lb"),
  32829. name: "Front",
  32830. image: {
  32831. source: "./media/characters/pera/front.svg",
  32832. extra: 1560/1531,
  32833. bottom: 165/1725
  32834. }
  32835. },
  32836. back: {
  32837. height: math.unit(5 + 2/12, "feet"),
  32838. weight: math.unit(210, "lb"),
  32839. name: "Back",
  32840. image: {
  32841. source: "./media/characters/pera/back.svg",
  32842. extra: 1523/1493,
  32843. bottom: 152/1675
  32844. }
  32845. },
  32846. dick: {
  32847. height: math.unit(2.4, "feet"),
  32848. name: "Dick",
  32849. image: {
  32850. source: "./media/characters/pera/dick.svg"
  32851. }
  32852. },
  32853. },
  32854. [
  32855. {
  32856. name: "Normal",
  32857. height: math.unit(5 + 2/12, "feet"),
  32858. default: true
  32859. },
  32860. ]
  32861. ))
  32862. characterMakers.push(() => makeCharacter(
  32863. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32864. {
  32865. front: {
  32866. height: math.unit(12, "feet"),
  32867. weight: math.unit(3200, "lb"),
  32868. name: "Front",
  32869. image: {
  32870. source: "./media/characters/julian/front.svg",
  32871. extra: 2962/2701,
  32872. bottom: 184/3146
  32873. }
  32874. },
  32875. maw: {
  32876. height: math.unit(5.35, "feet"),
  32877. name: "Maw",
  32878. image: {
  32879. source: "./media/characters/julian/maw.svg"
  32880. }
  32881. },
  32882. paw: {
  32883. height: math.unit(3.07, "feet"),
  32884. name: "Paw",
  32885. image: {
  32886. source: "./media/characters/julian/paw.svg"
  32887. }
  32888. },
  32889. },
  32890. [
  32891. {
  32892. name: "Default",
  32893. height: math.unit(12, "feet"),
  32894. default: true
  32895. },
  32896. {
  32897. name: "Big",
  32898. height: math.unit(50, "feet")
  32899. },
  32900. {
  32901. name: "Really Big",
  32902. height: math.unit(1, "mile")
  32903. },
  32904. {
  32905. name: "Extremely Big",
  32906. height: math.unit(100, "miles")
  32907. },
  32908. {
  32909. name: "Planet Hugger",
  32910. height: math.unit(200, "megameters")
  32911. },
  32912. {
  32913. name: "Unreasonably Big",
  32914. height: math.unit(1e300, "meters")
  32915. },
  32916. ]
  32917. ))
  32918. characterMakers.push(() => makeCharacter(
  32919. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32920. {
  32921. solgooleo: {
  32922. height: math.unit(4, "meters"),
  32923. weight: math.unit(6000*1.5, "kg"),
  32924. volume: math.unit(6000, "liters"),
  32925. name: "Solgooleo",
  32926. image: {
  32927. source: "./media/characters/pi/solgooleo.svg",
  32928. extra: 388/331,
  32929. bottom: 29/417
  32930. }
  32931. },
  32932. },
  32933. [
  32934. {
  32935. name: "Normal",
  32936. height: math.unit(4, "meters"),
  32937. default: true
  32938. },
  32939. ]
  32940. ))
  32941. characterMakers.push(() => makeCharacter(
  32942. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32943. {
  32944. front: {
  32945. height: math.unit(8, "feet"),
  32946. weight: math.unit(4, "tons"),
  32947. name: "Front",
  32948. image: {
  32949. source: "./media/characters/shaun/front.svg",
  32950. extra: 503/495,
  32951. bottom: 20/523
  32952. }
  32953. },
  32954. back: {
  32955. height: math.unit(8, "feet"),
  32956. weight: math.unit(4, "tons"),
  32957. name: "Back",
  32958. image: {
  32959. source: "./media/characters/shaun/back.svg",
  32960. extra: 487/480,
  32961. bottom: 20/507
  32962. }
  32963. },
  32964. },
  32965. [
  32966. {
  32967. name: "Lorg",
  32968. height: math.unit(8, "feet"),
  32969. default: true
  32970. },
  32971. ]
  32972. ))
  32973. characterMakers.push(() => makeCharacter(
  32974. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32975. {
  32976. frontAnthro: {
  32977. height: math.unit(7, "feet"),
  32978. name: "Front",
  32979. image: {
  32980. source: "./media/characters/sini/front-anthro.svg",
  32981. extra: 726/678,
  32982. bottom: 35/761
  32983. },
  32984. form: "anthro",
  32985. default: true
  32986. },
  32987. backAnthro: {
  32988. height: math.unit(7, "feet"),
  32989. name: "Back",
  32990. image: {
  32991. source: "./media/characters/sini/back-anthro.svg",
  32992. extra: 743/701,
  32993. bottom: 12/755
  32994. },
  32995. form: "anthro",
  32996. },
  32997. frontAnthroNsfw: {
  32998. height: math.unit(7, "feet"),
  32999. name: "Front (NSFW)",
  33000. image: {
  33001. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33002. extra: 726/678,
  33003. bottom: 35/761
  33004. },
  33005. form: "anthro"
  33006. },
  33007. backAnthroNsfw: {
  33008. height: math.unit(7, "feet"),
  33009. name: "Back (NSFW)",
  33010. image: {
  33011. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33012. extra: 743/701,
  33013. bottom: 12/755
  33014. },
  33015. form: "anthro",
  33016. },
  33017. mawAnthro: {
  33018. height: math.unit(2.14, "feet"),
  33019. name: "Maw",
  33020. image: {
  33021. source: "./media/characters/sini/maw-anthro.svg"
  33022. },
  33023. form: "anthro"
  33024. },
  33025. dick: {
  33026. height: math.unit(1.45, "feet"),
  33027. name: "Dick",
  33028. image: {
  33029. source: "./media/characters/sini/dick-anthro.svg"
  33030. },
  33031. form: "anthro"
  33032. },
  33033. feral: {
  33034. height: math.unit(16, "feet"),
  33035. name: "Feral",
  33036. image: {
  33037. source: "./media/characters/sini/feral.svg",
  33038. extra: 814/605,
  33039. bottom: 11/825
  33040. },
  33041. form: "feral",
  33042. default: true
  33043. },
  33044. feralNsfw: {
  33045. height: math.unit(16, "feet"),
  33046. name: "Feral (NSFW)",
  33047. image: {
  33048. source: "./media/characters/sini/feral-nsfw.svg",
  33049. extra: 814/605,
  33050. bottom: 11/825
  33051. },
  33052. form: "feral"
  33053. },
  33054. mawFeral: {
  33055. height: math.unit(5.66, "feet"),
  33056. name: "Maw",
  33057. image: {
  33058. source: "./media/characters/sini/maw-feral.svg"
  33059. },
  33060. form: "feral",
  33061. },
  33062. pawFeral: {
  33063. height: math.unit(5.17, "feet"),
  33064. name: "Paw",
  33065. image: {
  33066. source: "./media/characters/sini/paw-feral.svg"
  33067. },
  33068. form: "feral",
  33069. },
  33070. rumpFeral: {
  33071. height: math.unit(13.11, "feet"),
  33072. name: "Rump",
  33073. image: {
  33074. source: "./media/characters/sini/rump-feral.svg"
  33075. },
  33076. form: "feral",
  33077. },
  33078. dickFeral: {
  33079. height: math.unit(1, "feet"),
  33080. name: "Dick",
  33081. image: {
  33082. source: "./media/characters/sini/dick-feral.svg"
  33083. },
  33084. form: "feral",
  33085. },
  33086. eyeFeral: {
  33087. height: math.unit(1.23, "feet"),
  33088. name: "Eye",
  33089. image: {
  33090. source: "./media/characters/sini/eye-feral.svg"
  33091. },
  33092. form: "feral",
  33093. },
  33094. },
  33095. [
  33096. {
  33097. name: "Normal",
  33098. height: math.unit(7, "feet"),
  33099. default: true,
  33100. form: "anthro"
  33101. },
  33102. {
  33103. name: "Normal",
  33104. height: math.unit(16, "feet"),
  33105. default: true,
  33106. form: "feral"
  33107. },
  33108. ],
  33109. {
  33110. "anthro": {
  33111. name: "Anthro",
  33112. default: true
  33113. },
  33114. "feral": {
  33115. name: "Feral",
  33116. }
  33117. }
  33118. ))
  33119. characterMakers.push(() => makeCharacter(
  33120. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33121. {
  33122. side: {
  33123. height: math.unit(13, "meters"),
  33124. weight: math.unit(9072, "kg"),
  33125. name: "Side",
  33126. image: {
  33127. source: "./media/characters/raylldo/side.svg",
  33128. extra: 403/344,
  33129. bottom: 42/445
  33130. }
  33131. },
  33132. leaping: {
  33133. height: math.unit(12.3, "meters"),
  33134. weight: math.unit(9072, "kg"),
  33135. name: "Leaping",
  33136. image: {
  33137. source: "./media/characters/raylldo/leaping.svg",
  33138. extra: 470/249,
  33139. bottom: 13/483
  33140. }
  33141. },
  33142. flying: {
  33143. height: math.unit(18, "meters"),
  33144. weight: math.unit(9072, "kg"),
  33145. name: "Flying",
  33146. image: {
  33147. source: "./media/characters/raylldo/flying.svg"
  33148. }
  33149. },
  33150. head: {
  33151. height: math.unit(5.85, "meters"),
  33152. name: "Head",
  33153. image: {
  33154. source: "./media/characters/raylldo/head.svg"
  33155. }
  33156. },
  33157. maw: {
  33158. height: math.unit(5.32, "meters"),
  33159. name: "Maw",
  33160. image: {
  33161. source: "./media/characters/raylldo/maw.svg"
  33162. }
  33163. },
  33164. eye: {
  33165. height: math.unit(0.54, "meters"),
  33166. name: "Eye",
  33167. image: {
  33168. source: "./media/characters/raylldo/eye.svg"
  33169. }
  33170. },
  33171. },
  33172. [
  33173. {
  33174. name: "Normal",
  33175. height: math.unit(13, "meters"),
  33176. default: true
  33177. },
  33178. ]
  33179. ))
  33180. characterMakers.push(() => makeCharacter(
  33181. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33182. {
  33183. anthroFront: {
  33184. height: math.unit(9, "feet"),
  33185. weight: math.unit(600, "lb"),
  33186. name: "Anthro (Front)",
  33187. image: {
  33188. source: "./media/characters/glint/anthro-front.svg",
  33189. extra: 1097/1018,
  33190. bottom: 28/1125
  33191. }
  33192. },
  33193. anthroBack: {
  33194. height: math.unit(9, "feet"),
  33195. weight: math.unit(600, "lb"),
  33196. name: "Anthro (Back)",
  33197. image: {
  33198. source: "./media/characters/glint/anthro-back.svg",
  33199. extra: 1154/997,
  33200. bottom: 36/1190
  33201. }
  33202. },
  33203. feral: {
  33204. height: math.unit(11, "feet"),
  33205. weight: math.unit(50000, "lb"),
  33206. name: "Feral",
  33207. image: {
  33208. source: "./media/characters/glint/feral.svg",
  33209. extra: 3035/1585,
  33210. bottom: 1169/4204
  33211. }
  33212. },
  33213. dickAnthro: {
  33214. height: math.unit(0.7, "meters"),
  33215. name: "Dick (Anthro)",
  33216. image: {
  33217. source: "./media/characters/glint/dick-anthro.svg"
  33218. }
  33219. },
  33220. dickFeral: {
  33221. height: math.unit(2.65, "meters"),
  33222. name: "Dick (Feral)",
  33223. image: {
  33224. source: "./media/characters/glint/dick-feral.svg"
  33225. }
  33226. },
  33227. slitHidden: {
  33228. height: math.unit(5.85, "meters"),
  33229. name: "Slit (Hidden)",
  33230. image: {
  33231. source: "./media/characters/glint/slit-hidden.svg"
  33232. }
  33233. },
  33234. slitErect: {
  33235. height: math.unit(5.85, "meters"),
  33236. name: "Slit (Erect)",
  33237. image: {
  33238. source: "./media/characters/glint/slit-erect.svg"
  33239. }
  33240. },
  33241. mawAnthro: {
  33242. height: math.unit(0.63, "meters"),
  33243. name: "Maw (Anthro)",
  33244. image: {
  33245. source: "./media/characters/glint/maw.svg"
  33246. }
  33247. },
  33248. mawFeral: {
  33249. height: math.unit(2.89, "meters"),
  33250. name: "Maw (Feral)",
  33251. image: {
  33252. source: "./media/characters/glint/maw.svg"
  33253. }
  33254. },
  33255. },
  33256. [
  33257. {
  33258. name: "Normal",
  33259. height: math.unit(9, "feet"),
  33260. default: true
  33261. },
  33262. ]
  33263. ))
  33264. characterMakers.push(() => makeCharacter(
  33265. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33266. {
  33267. side: {
  33268. height: math.unit(15, "feet"),
  33269. weight: math.unit(5000, "kg"),
  33270. name: "Side",
  33271. image: {
  33272. source: "./media/characters/kairne/side.svg",
  33273. extra: 979/811,
  33274. bottom: 13/992
  33275. }
  33276. },
  33277. front: {
  33278. height: math.unit(15, "feet"),
  33279. weight: math.unit(5000, "kg"),
  33280. name: "Front",
  33281. image: {
  33282. source: "./media/characters/kairne/front.svg",
  33283. extra: 908/814,
  33284. bottom: 26/934
  33285. }
  33286. },
  33287. sideNsfw: {
  33288. height: math.unit(15, "feet"),
  33289. weight: math.unit(5000, "kg"),
  33290. name: "Side (NSFW)",
  33291. image: {
  33292. source: "./media/characters/kairne/side-nsfw.svg",
  33293. extra: 979/811,
  33294. bottom: 13/992
  33295. }
  33296. },
  33297. frontNsfw: {
  33298. height: math.unit(15, "feet"),
  33299. weight: math.unit(5000, "kg"),
  33300. name: "Front (NSFW)",
  33301. image: {
  33302. source: "./media/characters/kairne/front-nsfw.svg",
  33303. extra: 908/814,
  33304. bottom: 26/934
  33305. }
  33306. },
  33307. dickCaged: {
  33308. height: math.unit(0.65, "meters"),
  33309. name: "Dick-caged",
  33310. image: {
  33311. source: "./media/characters/kairne/dick-caged.svg"
  33312. }
  33313. },
  33314. dick: {
  33315. height: math.unit(0.79, "meters"),
  33316. name: "Dick",
  33317. image: {
  33318. source: "./media/characters/kairne/dick.svg"
  33319. }
  33320. },
  33321. genitals: {
  33322. height: math.unit(1.29, "meters"),
  33323. name: "Genitals",
  33324. image: {
  33325. source: "./media/characters/kairne/genitals.svg"
  33326. }
  33327. },
  33328. maw: {
  33329. height: math.unit(1.73, "meters"),
  33330. name: "Maw",
  33331. image: {
  33332. source: "./media/characters/kairne/maw.svg"
  33333. }
  33334. },
  33335. },
  33336. [
  33337. {
  33338. name: "Normal",
  33339. height: math.unit(15, "feet"),
  33340. default: true
  33341. },
  33342. ]
  33343. ))
  33344. characterMakers.push(() => makeCharacter(
  33345. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33346. {
  33347. front: {
  33348. height: math.unit(5 + 8/12, "feet"),
  33349. weight: math.unit(139, "lb"),
  33350. name: "Front",
  33351. image: {
  33352. source: "./media/characters/biscuit-jackal/front.svg",
  33353. extra: 2106/1961,
  33354. bottom: 58/2164
  33355. }
  33356. },
  33357. back: {
  33358. height: math.unit(5 + 8/12, "feet"),
  33359. weight: math.unit(139, "lb"),
  33360. name: "Back",
  33361. image: {
  33362. source: "./media/characters/biscuit-jackal/back.svg",
  33363. extra: 2132/1976,
  33364. bottom: 57/2189
  33365. }
  33366. },
  33367. werejackal: {
  33368. height: math.unit(6 + 3/12, "feet"),
  33369. weight: math.unit(188, "lb"),
  33370. name: "Werejackal",
  33371. image: {
  33372. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33373. extra: 2373/2178,
  33374. bottom: 53/2426
  33375. }
  33376. },
  33377. },
  33378. [
  33379. {
  33380. name: "Normal",
  33381. height: math.unit(5 + 8/12, "feet"),
  33382. default: true
  33383. },
  33384. ]
  33385. ))
  33386. characterMakers.push(() => makeCharacter(
  33387. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33388. {
  33389. front: {
  33390. height: math.unit(140, "cm"),
  33391. weight: math.unit(45, "kg"),
  33392. name: "Front",
  33393. image: {
  33394. source: "./media/characters/tayra-white/front.svg",
  33395. extra: 2229/2192,
  33396. bottom: 75/2304
  33397. }
  33398. },
  33399. },
  33400. [
  33401. {
  33402. name: "Normal",
  33403. height: math.unit(140, "cm"),
  33404. default: true
  33405. },
  33406. ]
  33407. ))
  33408. characterMakers.push(() => makeCharacter(
  33409. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  33410. {
  33411. front: {
  33412. height: math.unit(4 + 5/12, "feet"),
  33413. name: "Front",
  33414. image: {
  33415. source: "./media/characters/scoop/front.svg",
  33416. extra: 1257/1136,
  33417. bottom: 69/1326
  33418. }
  33419. },
  33420. back: {
  33421. height: math.unit(4 + 5/12, "feet"),
  33422. name: "Back",
  33423. image: {
  33424. source: "./media/characters/scoop/back.svg",
  33425. extra: 1321/1152,
  33426. bottom: 32/1353
  33427. }
  33428. },
  33429. maw: {
  33430. height: math.unit(0.68, "feet"),
  33431. name: "Maw",
  33432. image: {
  33433. source: "./media/characters/scoop/maw.svg"
  33434. }
  33435. },
  33436. },
  33437. [
  33438. {
  33439. name: "Really Small",
  33440. height: math.unit(1, "mm")
  33441. },
  33442. {
  33443. name: "Micro",
  33444. height: math.unit(1, "inch")
  33445. },
  33446. {
  33447. name: "Normal",
  33448. height: math.unit(4 + 5/12, "feet"),
  33449. default: true
  33450. },
  33451. {
  33452. name: "Macro",
  33453. height: math.unit(200, "feet")
  33454. },
  33455. {
  33456. name: "Megamacro",
  33457. height: math.unit(3240, "feet")
  33458. },
  33459. {
  33460. name: "Teramacro",
  33461. height: math.unit(2500, "miles")
  33462. },
  33463. ]
  33464. ))
  33465. characterMakers.push(() => makeCharacter(
  33466. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  33467. {
  33468. front: {
  33469. height: math.unit(15 + 7/12, "feet"),
  33470. name: "Front",
  33471. image: {
  33472. source: "./media/characters/saphinara/front.svg",
  33473. extra: 604/546,
  33474. bottom: 19/623
  33475. }
  33476. },
  33477. side: {
  33478. height: math.unit(15 + 7/12, "feet"),
  33479. name: "Side",
  33480. image: {
  33481. source: "./media/characters/saphinara/side.svg",
  33482. extra: 605/547,
  33483. bottom: 6/611
  33484. }
  33485. },
  33486. back: {
  33487. height: math.unit(15 + 7/12, "feet"),
  33488. name: "Back",
  33489. image: {
  33490. source: "./media/characters/saphinara/back.svg",
  33491. extra: 591/531,
  33492. bottom: 13/604
  33493. }
  33494. },
  33495. frontTail: {
  33496. height: math.unit(15 + 7/12, "feet"),
  33497. name: "Front (Full Tail)",
  33498. image: {
  33499. source: "./media/characters/saphinara/front-tail.svg",
  33500. extra: 748/547,
  33501. bottom: 66/814
  33502. }
  33503. },
  33504. },
  33505. [
  33506. {
  33507. name: "Normal",
  33508. height: math.unit(15 + 7/12, "feet"),
  33509. default: true
  33510. },
  33511. {
  33512. name: "Angry",
  33513. height: math.unit(30 + 6/12, "feet")
  33514. },
  33515. {
  33516. name: "Enraged",
  33517. height: math.unit(102 + 1/12, "feet")
  33518. },
  33519. ]
  33520. ))
  33521. characterMakers.push(() => makeCharacter(
  33522. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  33523. {
  33524. front: {
  33525. height: math.unit(6 + 8/12, "feet"),
  33526. weight: math.unit(300, "lb"),
  33527. name: "Front",
  33528. image: {
  33529. source: "./media/characters/jrain/front.svg",
  33530. extra: 3039/2865,
  33531. bottom: 399/3438
  33532. }
  33533. },
  33534. back: {
  33535. height: math.unit(6 + 8/12, "feet"),
  33536. weight: math.unit(300, "lb"),
  33537. name: "Back",
  33538. image: {
  33539. source: "./media/characters/jrain/back.svg",
  33540. extra: 3089/2938,
  33541. bottom: 172/3261
  33542. }
  33543. },
  33544. head: {
  33545. height: math.unit(2.14, "feet"),
  33546. name: "Head",
  33547. image: {
  33548. source: "./media/characters/jrain/head.svg"
  33549. }
  33550. },
  33551. maw: {
  33552. height: math.unit(1.77, "feet"),
  33553. name: "Maw",
  33554. image: {
  33555. source: "./media/characters/jrain/maw.svg"
  33556. }
  33557. },
  33558. leftHand: {
  33559. height: math.unit(1.1, "feet"),
  33560. name: "Left Hand",
  33561. image: {
  33562. source: "./media/characters/jrain/left-hand.svg"
  33563. }
  33564. },
  33565. rightHand: {
  33566. height: math.unit(1.1, "feet"),
  33567. name: "Right Hand",
  33568. image: {
  33569. source: "./media/characters/jrain/right-hand.svg"
  33570. }
  33571. },
  33572. eye: {
  33573. height: math.unit(0.35, "feet"),
  33574. name: "Eye",
  33575. image: {
  33576. source: "./media/characters/jrain/eye.svg"
  33577. }
  33578. },
  33579. },
  33580. [
  33581. {
  33582. name: "Normal",
  33583. height: math.unit(6 + 8/12, "feet"),
  33584. default: true
  33585. },
  33586. {
  33587. name: "Casually Large",
  33588. height: math.unit(25, "feet")
  33589. },
  33590. {
  33591. name: "Giant",
  33592. height: math.unit(100, "feet")
  33593. },
  33594. {
  33595. name: "Kaiju",
  33596. height: math.unit(300, "feet")
  33597. },
  33598. ]
  33599. ))
  33600. characterMakers.push(() => makeCharacter(
  33601. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33602. {
  33603. dragon: {
  33604. height: math.unit(5, "meters"),
  33605. name: "Dragon",
  33606. image: {
  33607. source: "./media/characters/sabrina/dragon.svg",
  33608. extra: 3670 / 2365,
  33609. bottom: 333 / 4003
  33610. }
  33611. },
  33612. gryphon: {
  33613. height: math.unit(3, "meters"),
  33614. name: "Gryphon",
  33615. image: {
  33616. source: "./media/characters/sabrina/gryphon.svg",
  33617. extra: 1576 / 945,
  33618. bottom: 71 / 1647
  33619. }
  33620. },
  33621. snake: {
  33622. height: math.unit(12, "meters"),
  33623. name: "Snake",
  33624. image: {
  33625. source: "./media/characters/sabrina/snake.svg",
  33626. extra: 1758 / 1320,
  33627. bottom: 186 / 1944
  33628. }
  33629. },
  33630. collar: {
  33631. height: math.unit(1.86, "meters"),
  33632. name: "Collar",
  33633. image: {
  33634. source: "./media/characters/sabrina/collar.svg"
  33635. }
  33636. },
  33637. eye: {
  33638. height: math.unit(0.53, "meters"),
  33639. name: "Eye",
  33640. image: {
  33641. source: "./media/characters/sabrina/eye.svg"
  33642. }
  33643. },
  33644. foot: {
  33645. height: math.unit(1.86, "meters"),
  33646. name: "Foot",
  33647. image: {
  33648. source: "./media/characters/sabrina/foot.svg"
  33649. }
  33650. },
  33651. hand: {
  33652. height: math.unit(1.32, "meters"),
  33653. name: "Hand",
  33654. image: {
  33655. source: "./media/characters/sabrina/hand.svg"
  33656. }
  33657. },
  33658. head: {
  33659. height: math.unit(2.44, "meters"),
  33660. name: "Head",
  33661. image: {
  33662. source: "./media/characters/sabrina/head.svg"
  33663. }
  33664. },
  33665. headAngry: {
  33666. height: math.unit(2.44, "meters"),
  33667. name: "Head (Angry))",
  33668. image: {
  33669. source: "./media/characters/sabrina/head-angry.svg"
  33670. }
  33671. },
  33672. maw: {
  33673. height: math.unit(1.65, "meters"),
  33674. name: "Maw",
  33675. image: {
  33676. source: "./media/characters/sabrina/maw.svg"
  33677. }
  33678. },
  33679. spikes: {
  33680. height: math.unit(1.69, "meters"),
  33681. name: "Spikes",
  33682. image: {
  33683. source: "./media/characters/sabrina/spikes.svg"
  33684. }
  33685. },
  33686. stomach: {
  33687. height: math.unit(1.15, "meters"),
  33688. name: "Stomach",
  33689. image: {
  33690. source: "./media/characters/sabrina/stomach.svg"
  33691. }
  33692. },
  33693. tongue: {
  33694. height: math.unit(1.27, "meters"),
  33695. name: "Tongue",
  33696. image: {
  33697. source: "./media/characters/sabrina/tongue.svg"
  33698. }
  33699. },
  33700. wingDorsal: {
  33701. height: math.unit(4.85, "meters"),
  33702. name: "Wing (Dorsal)",
  33703. image: {
  33704. source: "./media/characters/sabrina/wing-dorsal.svg"
  33705. }
  33706. },
  33707. wingVentral: {
  33708. height: math.unit(4.85, "meters"),
  33709. name: "Wing (Ventral)",
  33710. image: {
  33711. source: "./media/characters/sabrina/wing-ventral.svg"
  33712. }
  33713. },
  33714. },
  33715. [
  33716. {
  33717. name: "Normal",
  33718. height: math.unit(5, "meters"),
  33719. default: true
  33720. },
  33721. ]
  33722. ))
  33723. characterMakers.push(() => makeCharacter(
  33724. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33725. {
  33726. frontMaid: {
  33727. height: math.unit(5 + 5/12, "feet"),
  33728. weight: math.unit(130, "lb"),
  33729. name: "Front (Maid)",
  33730. image: {
  33731. source: "./media/characters/midnight-tales/front-maid.svg",
  33732. extra: 489/454,
  33733. bottom: 61/550
  33734. }
  33735. },
  33736. frontFormal: {
  33737. height: math.unit(5 + 5/12, "feet"),
  33738. weight: math.unit(130, "lb"),
  33739. name: "Front (Formal)",
  33740. image: {
  33741. source: "./media/characters/midnight-tales/front-formal.svg",
  33742. extra: 489/454,
  33743. bottom: 61/550
  33744. }
  33745. },
  33746. back: {
  33747. height: math.unit(5 + 5/12, "feet"),
  33748. weight: math.unit(130, "lb"),
  33749. name: "Back",
  33750. image: {
  33751. source: "./media/characters/midnight-tales/back.svg",
  33752. extra: 498/456,
  33753. bottom: 33/531
  33754. }
  33755. },
  33756. frontBeast: {
  33757. height: math.unit(40, "feet"),
  33758. weight: math.unit(64000, "lb"),
  33759. name: "Front (Beast)",
  33760. image: {
  33761. source: "./media/characters/midnight-tales/front-beast.svg",
  33762. extra: 927/860,
  33763. bottom: 53/980
  33764. }
  33765. },
  33766. backBeast: {
  33767. height: math.unit(40, "feet"),
  33768. weight: math.unit(64000, "lb"),
  33769. name: "Back (Beast)",
  33770. image: {
  33771. source: "./media/characters/midnight-tales/back-beast.svg",
  33772. extra: 929/855,
  33773. bottom: 16/945
  33774. }
  33775. },
  33776. footBeast: {
  33777. height: math.unit(6.7, "feet"),
  33778. name: "Foot (Beast)",
  33779. image: {
  33780. source: "./media/characters/midnight-tales/foot-beast.svg"
  33781. }
  33782. },
  33783. headBeast: {
  33784. height: math.unit(8, "feet"),
  33785. name: "Head (Beast)",
  33786. image: {
  33787. source: "./media/characters/midnight-tales/head-beast.svg"
  33788. }
  33789. },
  33790. },
  33791. [
  33792. {
  33793. name: "Normal",
  33794. height: math.unit(5 + 5 / 12, "feet"),
  33795. default: true
  33796. },
  33797. {
  33798. name: "Macro",
  33799. height: math.unit(25, "feet")
  33800. },
  33801. ]
  33802. ))
  33803. characterMakers.push(() => makeCharacter(
  33804. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33805. {
  33806. front: {
  33807. height: math.unit(5 + 10/12, "feet"),
  33808. name: "Front",
  33809. image: {
  33810. source: "./media/characters/argon/front.svg",
  33811. extra: 2009/1935,
  33812. bottom: 118/2127
  33813. }
  33814. },
  33815. back: {
  33816. height: math.unit(5 + 10/12, "feet"),
  33817. name: "Back",
  33818. image: {
  33819. source: "./media/characters/argon/back.svg",
  33820. extra: 2047/1992,
  33821. bottom: 20/2067
  33822. }
  33823. },
  33824. frontDressed: {
  33825. height: math.unit(5 + 10/12, "feet"),
  33826. name: "Front (Dressed)",
  33827. image: {
  33828. source: "./media/characters/argon/front-dressed.svg",
  33829. extra: 2009/1935,
  33830. bottom: 118/2127
  33831. }
  33832. },
  33833. },
  33834. [
  33835. {
  33836. name: "Normal",
  33837. height: math.unit(5 + 10/12, "feet"),
  33838. default: true
  33839. },
  33840. ]
  33841. ))
  33842. characterMakers.push(() => makeCharacter(
  33843. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33844. {
  33845. front: {
  33846. height: math.unit(8 + 6/12, "feet"),
  33847. weight: math.unit(1150, "lb"),
  33848. name: "Front",
  33849. image: {
  33850. source: "./media/characters/kichi/front.svg",
  33851. extra: 1267/1164,
  33852. bottom: 61/1328
  33853. }
  33854. },
  33855. back: {
  33856. height: math.unit(8 + 6/12, "feet"),
  33857. weight: math.unit(1150, "lb"),
  33858. name: "Back",
  33859. image: {
  33860. source: "./media/characters/kichi/back.svg",
  33861. extra: 1273/1166,
  33862. bottom: 33/1306
  33863. }
  33864. },
  33865. },
  33866. [
  33867. {
  33868. name: "Normal",
  33869. height: math.unit(8 + 6/12, "feet"),
  33870. default: true
  33871. },
  33872. ]
  33873. ))
  33874. characterMakers.push(() => makeCharacter(
  33875. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33876. {
  33877. front: {
  33878. height: math.unit(6, "feet"),
  33879. weight: math.unit(210, "lb"),
  33880. name: "Front",
  33881. image: {
  33882. source: "./media/characters/manetel-greyscale/front.svg",
  33883. extra: 350/312,
  33884. bottom: 8/358
  33885. }
  33886. },
  33887. },
  33888. [
  33889. {
  33890. name: "Micro",
  33891. height: math.unit(2, "inches")
  33892. },
  33893. {
  33894. name: "Normal",
  33895. height: math.unit(6, "feet"),
  33896. default: true
  33897. },
  33898. {
  33899. name: "Minimacro",
  33900. height: math.unit(17, "feet")
  33901. },
  33902. {
  33903. name: "Macro",
  33904. height: math.unit(117, "feet")
  33905. },
  33906. ]
  33907. ))
  33908. characterMakers.push(() => makeCharacter(
  33909. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33910. {
  33911. side: {
  33912. height: math.unit(5 + 1/12, "feet"),
  33913. weight: math.unit(418, "lb"),
  33914. name: "Side",
  33915. image: {
  33916. source: "./media/characters/softpurr/side.svg",
  33917. extra: 1993/1945,
  33918. bottom: 134/2127
  33919. }
  33920. },
  33921. front: {
  33922. height: math.unit(5 + 1/12, "feet"),
  33923. weight: math.unit(418, "lb"),
  33924. name: "Front",
  33925. image: {
  33926. source: "./media/characters/softpurr/front.svg",
  33927. extra: 1950/1856,
  33928. bottom: 174/2124
  33929. }
  33930. },
  33931. paw: {
  33932. height: math.unit(1, "feet"),
  33933. name: "Paw",
  33934. image: {
  33935. source: "./media/characters/softpurr/paw.svg"
  33936. }
  33937. },
  33938. },
  33939. [
  33940. {
  33941. name: "Normal",
  33942. height: math.unit(5 + 1/12, "feet"),
  33943. default: true
  33944. },
  33945. ]
  33946. ))
  33947. characterMakers.push(() => makeCharacter(
  33948. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33949. {
  33950. front: {
  33951. height: math.unit(260, "meters"),
  33952. name: "Front",
  33953. image: {
  33954. source: "./media/characters/anahita/front.svg",
  33955. extra: 665/635,
  33956. bottom: 89/754
  33957. }
  33958. },
  33959. },
  33960. [
  33961. {
  33962. name: "Macro",
  33963. height: math.unit(260, "meters"),
  33964. default: true
  33965. },
  33966. ]
  33967. ))
  33968. characterMakers.push(() => makeCharacter(
  33969. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33970. {
  33971. front: {
  33972. height: math.unit(4 + 10/12, "feet"),
  33973. weight: math.unit(160, "lb"),
  33974. name: "Front",
  33975. image: {
  33976. source: "./media/characters/chip-mouse/front.svg",
  33977. extra: 3528/3408,
  33978. bottom: 0/3528
  33979. }
  33980. },
  33981. frontNsfw: {
  33982. height: math.unit(4 + 10/12, "feet"),
  33983. weight: math.unit(160, "lb"),
  33984. name: "Front (NSFW)",
  33985. image: {
  33986. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33987. extra: 3528/3408,
  33988. bottom: 0/3528
  33989. }
  33990. },
  33991. },
  33992. [
  33993. {
  33994. name: "Normal",
  33995. height: math.unit(4 + 10/12, "feet"),
  33996. default: true
  33997. },
  33998. ]
  33999. ))
  34000. characterMakers.push(() => makeCharacter(
  34001. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  34002. {
  34003. side: {
  34004. height: math.unit(10, "feet"),
  34005. weight: math.unit(14000, "lb"),
  34006. name: "Side",
  34007. image: {
  34008. source: "./media/characters/kremm/side.svg",
  34009. extra: 1390/1053,
  34010. bottom: 90/1480
  34011. }
  34012. },
  34013. gut: {
  34014. height: math.unit(5.8, "feet"),
  34015. name: "Gut",
  34016. image: {
  34017. source: "./media/characters/kremm/gut.svg"
  34018. }
  34019. },
  34020. ass: {
  34021. height: math.unit(6.1, "feet"),
  34022. name: "Ass",
  34023. image: {
  34024. source: "./media/characters/kremm/ass.svg"
  34025. }
  34026. },
  34027. jaws: {
  34028. height: math.unit(2.2, "feet"),
  34029. name: "Jaws",
  34030. image: {
  34031. source: "./media/characters/kremm/jaws.svg"
  34032. }
  34033. },
  34034. dick: {
  34035. height: math.unit(4.26, "feet"),
  34036. name: "Dick",
  34037. image: {
  34038. source: "./media/characters/kremm/dick.svg"
  34039. }
  34040. },
  34041. },
  34042. [
  34043. {
  34044. name: "Normal",
  34045. height: math.unit(10, "feet"),
  34046. default: true
  34047. },
  34048. ]
  34049. ))
  34050. characterMakers.push(() => makeCharacter(
  34051. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  34052. {
  34053. front: {
  34054. height: math.unit(30, "stories"),
  34055. name: "Front",
  34056. image: {
  34057. source: "./media/characters/kai/front.svg",
  34058. extra: 1892/1718,
  34059. bottom: 162/2054
  34060. }
  34061. },
  34062. },
  34063. [
  34064. {
  34065. name: "Macro",
  34066. height: math.unit(30, "stories"),
  34067. default: true
  34068. },
  34069. ]
  34070. ))
  34071. characterMakers.push(() => makeCharacter(
  34072. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  34073. {
  34074. front: {
  34075. height: math.unit(6 + 4/12, "feet"),
  34076. weight: math.unit(145, "lb"),
  34077. name: "Front",
  34078. image: {
  34079. source: "./media/characters/sykes/front.svg",
  34080. extra: 1321 / 1187,
  34081. bottom: 66 / 1387
  34082. }
  34083. },
  34084. back: {
  34085. height: math.unit(6 + 4/12, "feet"),
  34086. weight: math.unit(145, "lb"),
  34087. name: "Back",
  34088. image: {
  34089. source: "./media/characters/sykes/back.svg",
  34090. extra: 1326/1181,
  34091. bottom: 31/1357
  34092. }
  34093. },
  34094. handBack: {
  34095. height: math.unit(0.9, "feet"),
  34096. name: "Hand (Back)",
  34097. image: {
  34098. source: "./media/characters/sykes/hand-back.svg"
  34099. }
  34100. },
  34101. handFront: {
  34102. height: math.unit(0.839, "feet"),
  34103. name: "Hand (Front)",
  34104. image: {
  34105. source: "./media/characters/sykes/hand-front.svg"
  34106. }
  34107. },
  34108. leftFoot: {
  34109. height: math.unit(1.2, "feet"),
  34110. name: "Foot (Left)",
  34111. image: {
  34112. source: "./media/characters/sykes/foot-left.svg"
  34113. }
  34114. },
  34115. rightFoot: {
  34116. height: math.unit(1.2, "feet"),
  34117. name: "Foot (Right)",
  34118. image: {
  34119. source: "./media/characters/sykes/foot-right.svg"
  34120. }
  34121. },
  34122. maw: {
  34123. height: math.unit(1.93, "feet"),
  34124. name: "Maw",
  34125. image: {
  34126. source: "./media/characters/sykes/maw.svg"
  34127. }
  34128. },
  34129. teeth: {
  34130. height: math.unit(0.51, "feet"),
  34131. name: "Teeth",
  34132. image: {
  34133. source: "./media/characters/sykes/teeth.svg"
  34134. }
  34135. },
  34136. tongue: {
  34137. height: math.unit(2.13, "feet"),
  34138. name: "Tongue",
  34139. image: {
  34140. source: "./media/characters/sykes/tongue.svg"
  34141. }
  34142. },
  34143. uvula: {
  34144. height: math.unit(0.16, "feet"),
  34145. name: "Uvula",
  34146. image: {
  34147. source: "./media/characters/sykes/uvula.svg"
  34148. }
  34149. },
  34150. collar: {
  34151. height: math.unit(0.287, "feet"),
  34152. name: "Collar",
  34153. image: {
  34154. source: "./media/characters/sykes/collar.svg"
  34155. }
  34156. },
  34157. },
  34158. [
  34159. {
  34160. name: "Shrunken",
  34161. height: math.unit(5, "inches")
  34162. },
  34163. {
  34164. name: "Normal",
  34165. height: math.unit(6 + 4 / 12, "feet"),
  34166. default: true
  34167. },
  34168. {
  34169. name: "Big",
  34170. height: math.unit(15, "feet")
  34171. },
  34172. ]
  34173. ))
  34174. characterMakers.push(() => makeCharacter(
  34175. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  34176. {
  34177. front: {
  34178. height: math.unit(5 + 8/12, "feet"),
  34179. weight: math.unit(190, "lb"),
  34180. name: "Front",
  34181. image: {
  34182. source: "./media/characters/oven-otter/front.svg",
  34183. extra: 1809/1740,
  34184. bottom: 181/1990
  34185. }
  34186. },
  34187. back: {
  34188. height: math.unit(5 + 8/12, "feet"),
  34189. weight: math.unit(190, "lb"),
  34190. name: "Back",
  34191. image: {
  34192. source: "./media/characters/oven-otter/back.svg",
  34193. extra: 1709/1635,
  34194. bottom: 118/1827
  34195. }
  34196. },
  34197. hand: {
  34198. height: math.unit(1.07, "feet"),
  34199. name: "Hand",
  34200. image: {
  34201. source: "./media/characters/oven-otter/hand.svg"
  34202. }
  34203. },
  34204. beans: {
  34205. height: math.unit(1.74, "feet"),
  34206. name: "Beans",
  34207. image: {
  34208. source: "./media/characters/oven-otter/beans.svg"
  34209. }
  34210. },
  34211. },
  34212. [
  34213. {
  34214. name: "Micro",
  34215. height: math.unit(0.5, "inches")
  34216. },
  34217. {
  34218. name: "Normal",
  34219. height: math.unit(5 + 8/12, "feet"),
  34220. default: true
  34221. },
  34222. {
  34223. name: "Macro",
  34224. height: math.unit(250, "feet")
  34225. },
  34226. {
  34227. name: "Really High",
  34228. height: math.unit(420, "feet")
  34229. },
  34230. ]
  34231. ))
  34232. characterMakers.push(() => makeCharacter(
  34233. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  34234. {
  34235. front: {
  34236. height: math.unit(5, "meters"),
  34237. weight: math.unit(292000000000000, "kg"),
  34238. name: "Front",
  34239. image: {
  34240. source: "./media/characters/devourer/front.svg",
  34241. extra: 1800/1733,
  34242. bottom: 211/2011
  34243. }
  34244. },
  34245. maw: {
  34246. height: math.unit(1.1, "meter"),
  34247. name: "Maw",
  34248. image: {
  34249. source: "./media/characters/devourer/maw.svg"
  34250. }
  34251. },
  34252. },
  34253. [
  34254. {
  34255. name: "Small",
  34256. height: math.unit(3, "meters")
  34257. },
  34258. {
  34259. name: "Large",
  34260. height: math.unit(5, "meters"),
  34261. default: true
  34262. },
  34263. ]
  34264. ))
  34265. characterMakers.push(() => makeCharacter(
  34266. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  34267. {
  34268. front: {
  34269. height: math.unit(6, "feet"),
  34270. weight: math.unit(400, "lb"),
  34271. name: "Front",
  34272. image: {
  34273. source: "./media/characters/ellarby/front.svg",
  34274. extra: 1909/1763,
  34275. bottom: 80/1989
  34276. }
  34277. },
  34278. back: {
  34279. height: math.unit(6, "feet"),
  34280. weight: math.unit(400, "lb"),
  34281. name: "Back",
  34282. image: {
  34283. source: "./media/characters/ellarby/back.svg",
  34284. extra: 1914/1784,
  34285. bottom: 172/2086
  34286. }
  34287. },
  34288. },
  34289. [
  34290. {
  34291. name: "Mischief",
  34292. height: math.unit(18, "inches")
  34293. },
  34294. {
  34295. name: "Trouble",
  34296. height: math.unit(12, "feet")
  34297. },
  34298. {
  34299. name: "Havoc",
  34300. height: math.unit(200, "feet"),
  34301. default: true
  34302. },
  34303. {
  34304. name: "Pandemonium",
  34305. height: math.unit(1, "mile")
  34306. },
  34307. {
  34308. name: "Catastrophe",
  34309. height: math.unit(100, "miles")
  34310. },
  34311. ]
  34312. ))
  34313. characterMakers.push(() => makeCharacter(
  34314. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  34315. {
  34316. front: {
  34317. height: math.unit(4.7, "meters"),
  34318. weight: math.unit(6500, "kg"),
  34319. name: "Front",
  34320. image: {
  34321. source: "./media/characters/vex/front.svg",
  34322. extra: 1288/1140,
  34323. bottom: 100/1388
  34324. }
  34325. },
  34326. },
  34327. [
  34328. {
  34329. name: "Normal",
  34330. height: math.unit(4.7, "meters"),
  34331. default: true
  34332. },
  34333. ]
  34334. ))
  34335. characterMakers.push(() => makeCharacter(
  34336. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  34337. {
  34338. normal: {
  34339. height: math.unit(6, "feet"),
  34340. weight: math.unit(350, "lb"),
  34341. name: "Normal",
  34342. image: {
  34343. source: "./media/characters/teshy/normal.svg",
  34344. extra: 1795/1735,
  34345. bottom: 16/1811
  34346. }
  34347. },
  34348. monsterFront: {
  34349. height: math.unit(12, "feet"),
  34350. weight: math.unit(4700, "lb"),
  34351. name: "Monster (Front)",
  34352. image: {
  34353. source: "./media/characters/teshy/monster-front.svg",
  34354. extra: 2042/2034,
  34355. bottom: 128/2170
  34356. }
  34357. },
  34358. monsterSide: {
  34359. height: math.unit(12, "feet"),
  34360. weight: math.unit(4700, "lb"),
  34361. name: "Monster (Side)",
  34362. image: {
  34363. source: "./media/characters/teshy/monster-side.svg",
  34364. extra: 2067/2056,
  34365. bottom: 70/2137
  34366. }
  34367. },
  34368. monsterBack: {
  34369. height: math.unit(12, "feet"),
  34370. weight: math.unit(4700, "lb"),
  34371. name: "Monster (Back)",
  34372. image: {
  34373. source: "./media/characters/teshy/monster-back.svg",
  34374. extra: 1921/1914,
  34375. bottom: 171/2092
  34376. }
  34377. },
  34378. },
  34379. [
  34380. {
  34381. name: "Normal",
  34382. height: math.unit(6, "feet"),
  34383. default: true
  34384. },
  34385. ]
  34386. ))
  34387. characterMakers.push(() => makeCharacter(
  34388. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  34389. {
  34390. front: {
  34391. height: math.unit(6, "feet"),
  34392. name: "Front",
  34393. image: {
  34394. source: "./media/characters/ramey/front.svg",
  34395. extra: 790/787,
  34396. bottom: 27/817
  34397. }
  34398. },
  34399. },
  34400. [
  34401. {
  34402. name: "Normal",
  34403. height: math.unit(6, "feet"),
  34404. default: true
  34405. },
  34406. ]
  34407. ))
  34408. characterMakers.push(() => makeCharacter(
  34409. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  34410. {
  34411. front: {
  34412. height: math.unit(5 + 5/12, "feet"),
  34413. weight: math.unit(120, "lb"),
  34414. name: "Front",
  34415. image: {
  34416. source: "./media/characters/phirae/front.svg",
  34417. extra: 2491/2436,
  34418. bottom: 38/2529
  34419. }
  34420. },
  34421. },
  34422. [
  34423. {
  34424. name: "Normal",
  34425. height: math.unit(5 + 5/12, "feet"),
  34426. default: true
  34427. },
  34428. ]
  34429. ))
  34430. characterMakers.push(() => makeCharacter(
  34431. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  34432. {
  34433. front: {
  34434. height: math.unit(5 + 3/12, "feet"),
  34435. name: "Front",
  34436. image: {
  34437. source: "./media/characters/stagglas/front.svg",
  34438. extra: 962/882,
  34439. bottom: 53/1015
  34440. }
  34441. },
  34442. feral: {
  34443. height: math.unit(335, "cm"),
  34444. name: "Feral",
  34445. image: {
  34446. source: "./media/characters/stagglas/feral.svg",
  34447. extra: 1732/1090,
  34448. bottom: 48/1780
  34449. }
  34450. },
  34451. },
  34452. [
  34453. {
  34454. name: "Normal",
  34455. height: math.unit(5 + 3/12, "feet"),
  34456. default: true
  34457. },
  34458. ]
  34459. ))
  34460. characterMakers.push(() => makeCharacter(
  34461. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  34462. {
  34463. front: {
  34464. height: math.unit(5 + 4/12, "feet"),
  34465. weight: math.unit(145, "lb"),
  34466. name: "Front",
  34467. image: {
  34468. source: "./media/characters/starra/front.svg",
  34469. extra: 1790/1691,
  34470. bottom: 91/1881
  34471. }
  34472. },
  34473. },
  34474. [
  34475. {
  34476. name: "Normal",
  34477. height: math.unit(5 + 4/12, "feet"),
  34478. default: true
  34479. },
  34480. ]
  34481. ))
  34482. characterMakers.push(() => makeCharacter(
  34483. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  34484. {
  34485. front: {
  34486. height: math.unit(2.2, "meters"),
  34487. name: "Front",
  34488. image: {
  34489. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  34490. extra: 1194/1005,
  34491. bottom: 25/1219
  34492. }
  34493. },
  34494. },
  34495. [
  34496. {
  34497. name: "Normal",
  34498. height: math.unit(2.2, "meters"),
  34499. default: true
  34500. },
  34501. ]
  34502. ))
  34503. characterMakers.push(() => makeCharacter(
  34504. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  34505. {
  34506. side: {
  34507. height: math.unit(8 + 2/12, "feet"),
  34508. weight: math.unit(1240, "lb"),
  34509. name: "Side",
  34510. image: {
  34511. source: "./media/characters/mika-valentine/side.svg",
  34512. extra: 2670/2501,
  34513. bottom: 250/2920
  34514. }
  34515. },
  34516. },
  34517. [
  34518. {
  34519. name: "Normal",
  34520. height: math.unit(8 + 2/12, "feet"),
  34521. default: true
  34522. },
  34523. ]
  34524. ))
  34525. characterMakers.push(() => makeCharacter(
  34526. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  34527. {
  34528. front: {
  34529. height: math.unit(7 + 2/12, "feet"),
  34530. name: "Front",
  34531. image: {
  34532. source: "./media/characters/xoltol/front.svg",
  34533. extra: 2212/2124,
  34534. bottom: 84/2296
  34535. }
  34536. },
  34537. side: {
  34538. height: math.unit(7 + 2/12, "feet"),
  34539. name: "Side",
  34540. image: {
  34541. source: "./media/characters/xoltol/side.svg",
  34542. extra: 2273/2197,
  34543. bottom: 26/2299
  34544. }
  34545. },
  34546. hand: {
  34547. height: math.unit(2.5, "feet"),
  34548. name: "Hand",
  34549. image: {
  34550. source: "./media/characters/xoltol/hand.svg"
  34551. }
  34552. },
  34553. },
  34554. [
  34555. {
  34556. name: "Small-ish",
  34557. height: math.unit(5 + 11/12, "feet")
  34558. },
  34559. {
  34560. name: "Normal",
  34561. height: math.unit(7 + 2/12, "feet")
  34562. },
  34563. {
  34564. name: "\"Macro\"",
  34565. height: math.unit(14 + 9/12, "feet"),
  34566. default: true
  34567. },
  34568. {
  34569. name: "Alternate Height",
  34570. height: math.unit(20, "feet")
  34571. },
  34572. {
  34573. name: "Actually Macro",
  34574. height: math.unit(100, "feet")
  34575. },
  34576. ]
  34577. ))
  34578. characterMakers.push(() => makeCharacter(
  34579. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  34580. {
  34581. front: {
  34582. height: math.unit(5 + 2/12, "feet"),
  34583. name: "Front",
  34584. image: {
  34585. source: "./media/characters/kotetsu-redwood/front.svg",
  34586. extra: 1053/942,
  34587. bottom: 60/1113
  34588. }
  34589. },
  34590. },
  34591. [
  34592. {
  34593. name: "Normal",
  34594. height: math.unit(5 + 2/12, "feet"),
  34595. default: true
  34596. },
  34597. ]
  34598. ))
  34599. characterMakers.push(() => makeCharacter(
  34600. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34601. {
  34602. front: {
  34603. height: math.unit(2.4, "meters"),
  34604. weight: math.unit(125, "kg"),
  34605. name: "Front",
  34606. image: {
  34607. source: "./media/characters/lilith/front.svg",
  34608. extra: 1590/1513,
  34609. bottom: 203/1793
  34610. }
  34611. },
  34612. },
  34613. [
  34614. {
  34615. name: "Humanoid",
  34616. height: math.unit(2.4, "meters")
  34617. },
  34618. {
  34619. name: "Normal",
  34620. height: math.unit(6, "meters"),
  34621. default: true
  34622. },
  34623. {
  34624. name: "Largest",
  34625. height: math.unit(55, "meters")
  34626. },
  34627. ]
  34628. ))
  34629. characterMakers.push(() => makeCharacter(
  34630. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34631. {
  34632. front: {
  34633. height: math.unit(8 + 4/12, "feet"),
  34634. weight: math.unit(535, "lb"),
  34635. name: "Front",
  34636. image: {
  34637. source: "./media/characters/beh'kah-bolger/front.svg",
  34638. extra: 1660/1603,
  34639. bottom: 37/1697
  34640. }
  34641. },
  34642. },
  34643. [
  34644. {
  34645. name: "Normal",
  34646. height: math.unit(8 + 4/12, "feet"),
  34647. default: true
  34648. },
  34649. {
  34650. name: "Kaiju",
  34651. height: math.unit(250, "feet")
  34652. },
  34653. {
  34654. name: "Still Growing",
  34655. height: math.unit(10, "miles")
  34656. },
  34657. {
  34658. name: "Continental",
  34659. height: math.unit(5000, "miles")
  34660. },
  34661. {
  34662. name: "Final Form",
  34663. height: math.unit(2500000, "miles")
  34664. },
  34665. ]
  34666. ))
  34667. characterMakers.push(() => makeCharacter(
  34668. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34669. {
  34670. front: {
  34671. height: math.unit(7 + 2/12, "feet"),
  34672. weight: math.unit(230, "kg"),
  34673. name: "Front",
  34674. image: {
  34675. source: "./media/characters/tatyana-milewska/front.svg",
  34676. extra: 1199/1150,
  34677. bottom: 86/1285
  34678. }
  34679. },
  34680. },
  34681. [
  34682. {
  34683. name: "Normal",
  34684. height: math.unit(7 + 2/12, "feet"),
  34685. default: true
  34686. },
  34687. {
  34688. name: "Big",
  34689. height: math.unit(12, "feet")
  34690. },
  34691. {
  34692. name: "Minimacro",
  34693. height: math.unit(20, "feet")
  34694. },
  34695. {
  34696. name: "Macro",
  34697. height: math.unit(120, "feet")
  34698. },
  34699. ]
  34700. ))
  34701. characterMakers.push(() => makeCharacter(
  34702. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34703. {
  34704. front: {
  34705. height: math.unit(7 + 8/12, "feet"),
  34706. weight: math.unit(152, "kg"),
  34707. name: "Front",
  34708. image: {
  34709. source: "./media/characters/helen-arri/front.svg",
  34710. extra: 440/423,
  34711. bottom: 14/454
  34712. }
  34713. },
  34714. back: {
  34715. height: math.unit(7 + 8/12, "feet"),
  34716. weight: math.unit(152, "kg"),
  34717. name: "Back",
  34718. image: {
  34719. source: "./media/characters/helen-arri/back.svg",
  34720. extra: 443/426,
  34721. bottom: 8/451
  34722. }
  34723. },
  34724. },
  34725. [
  34726. {
  34727. name: "Normal",
  34728. height: math.unit(7 + 8/12, "feet"),
  34729. default: true
  34730. },
  34731. {
  34732. name: "Big",
  34733. height: math.unit(14, "feet")
  34734. },
  34735. {
  34736. name: "Minimacro",
  34737. height: math.unit(24, "feet")
  34738. },
  34739. {
  34740. name: "Macro",
  34741. height: math.unit(140, "feet")
  34742. },
  34743. ]
  34744. ))
  34745. characterMakers.push(() => makeCharacter(
  34746. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34747. {
  34748. front: {
  34749. height: math.unit(6, "meters"),
  34750. name: "Front",
  34751. image: {
  34752. source: "./media/characters/ehanu-rehu/front.svg",
  34753. extra: 1800/1800,
  34754. bottom: 59/1859
  34755. }
  34756. },
  34757. },
  34758. [
  34759. {
  34760. name: "Normal",
  34761. height: math.unit(6, "meters"),
  34762. default: true
  34763. },
  34764. ]
  34765. ))
  34766. characterMakers.push(() => makeCharacter(
  34767. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34768. {
  34769. front: {
  34770. height: math.unit(7 + 3/12, "feet"),
  34771. name: "Front",
  34772. image: {
  34773. source: "./media/characters/renholder/front.svg",
  34774. extra: 3096/2960,
  34775. bottom: 250/3346
  34776. }
  34777. },
  34778. },
  34779. [
  34780. {
  34781. name: "Normal Bat",
  34782. height: math.unit(7 + 3/12, "feet"),
  34783. default: true
  34784. },
  34785. {
  34786. name: "Slightly Tall Bat",
  34787. height: math.unit(100, "feet")
  34788. },
  34789. {
  34790. name: "Big Bat",
  34791. height: math.unit(1000, "feet")
  34792. },
  34793. {
  34794. name: "City-Sized Bat",
  34795. height: math.unit(200000, "feet")
  34796. },
  34797. {
  34798. name: "Bigger Bat",
  34799. height: math.unit(10000, "miles")
  34800. },
  34801. {
  34802. name: "Solar Sized Bat",
  34803. height: math.unit(100, "AU")
  34804. },
  34805. {
  34806. name: "Galactic Bat",
  34807. height: math.unit(200000, "lightyears")
  34808. },
  34809. {
  34810. name: "Universally Known Bat",
  34811. height: math.unit(1, "universe")
  34812. },
  34813. ]
  34814. ))
  34815. characterMakers.push(() => makeCharacter(
  34816. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34817. {
  34818. front: {
  34819. height: math.unit(6 + 11/12, "feet"),
  34820. weight: math.unit(250, "lb"),
  34821. name: "Front",
  34822. image: {
  34823. source: "./media/characters/cookiecat/front.svg",
  34824. extra: 893/827,
  34825. bottom: 14/907
  34826. }
  34827. },
  34828. },
  34829. [
  34830. {
  34831. name: "Micro",
  34832. height: math.unit(3, "inches")
  34833. },
  34834. {
  34835. name: "Normal",
  34836. height: math.unit(6 + 11/12, "feet"),
  34837. default: true
  34838. },
  34839. {
  34840. name: "Macro",
  34841. height: math.unit(100, "feet")
  34842. },
  34843. {
  34844. name: "Macro+",
  34845. height: math.unit(404, "feet")
  34846. },
  34847. {
  34848. name: "Megamacro",
  34849. height: math.unit(165, "miles")
  34850. },
  34851. {
  34852. name: "Planetary",
  34853. height: math.unit(4600, "miles")
  34854. },
  34855. ]
  34856. ))
  34857. characterMakers.push(() => makeCharacter(
  34858. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34859. {
  34860. front: {
  34861. height: math.unit(10 + 3/12, "feet"),
  34862. weight: math.unit(1500, "lb"),
  34863. name: "Front",
  34864. image: {
  34865. source: "./media/characters/tux-kusanagi/front.svg",
  34866. extra: 944/840,
  34867. bottom: 39/983
  34868. }
  34869. },
  34870. back: {
  34871. height: math.unit(10 + 3/12, "feet"),
  34872. weight: math.unit(1500, "lb"),
  34873. name: "Back",
  34874. image: {
  34875. source: "./media/characters/tux-kusanagi/back.svg",
  34876. extra: 941/842,
  34877. bottom: 28/969
  34878. }
  34879. },
  34880. rump: {
  34881. height: math.unit(5.25, "feet"),
  34882. name: "Rump",
  34883. image: {
  34884. source: "./media/characters/tux-kusanagi/rump.svg"
  34885. }
  34886. },
  34887. beak: {
  34888. height: math.unit(1.54, "feet"),
  34889. name: "Beak",
  34890. image: {
  34891. source: "./media/characters/tux-kusanagi/beak.svg"
  34892. }
  34893. },
  34894. },
  34895. [
  34896. {
  34897. name: "Normal",
  34898. height: math.unit(10 + 3/12, "feet"),
  34899. default: true
  34900. },
  34901. ]
  34902. ))
  34903. characterMakers.push(() => makeCharacter(
  34904. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34905. {
  34906. front: {
  34907. height: math.unit(58, "feet"),
  34908. weight: math.unit(200, "tons"),
  34909. name: "Front",
  34910. image: {
  34911. source: "./media/characters/uzarmazari/front.svg",
  34912. extra: 1575/1455,
  34913. bottom: 152/1727
  34914. }
  34915. },
  34916. back: {
  34917. height: math.unit(58, "feet"),
  34918. weight: math.unit(200, "tons"),
  34919. name: "Back",
  34920. image: {
  34921. source: "./media/characters/uzarmazari/back.svg",
  34922. extra: 1585/1510,
  34923. bottom: 157/1742
  34924. }
  34925. },
  34926. head: {
  34927. height: math.unit(26, "feet"),
  34928. name: "Head",
  34929. image: {
  34930. source: "./media/characters/uzarmazari/head.svg"
  34931. }
  34932. },
  34933. },
  34934. [
  34935. {
  34936. name: "Normal",
  34937. height: math.unit(58, "feet"),
  34938. default: true
  34939. },
  34940. ]
  34941. ))
  34942. characterMakers.push(() => makeCharacter(
  34943. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34944. {
  34945. side: {
  34946. height: math.unit(15, "feet"),
  34947. name: "Side",
  34948. image: {
  34949. source: "./media/characters/akitu/side.svg",
  34950. extra: 1421/1321,
  34951. bottom: 157/1578
  34952. }
  34953. },
  34954. front: {
  34955. height: math.unit(15, "feet"),
  34956. name: "Front",
  34957. image: {
  34958. source: "./media/characters/akitu/front.svg",
  34959. extra: 1435/1326,
  34960. bottom: 232/1667
  34961. }
  34962. },
  34963. },
  34964. [
  34965. {
  34966. name: "Normal",
  34967. height: math.unit(15, "feet"),
  34968. default: true
  34969. },
  34970. ]
  34971. ))
  34972. characterMakers.push(() => makeCharacter(
  34973. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34974. {
  34975. front: {
  34976. height: math.unit(10 + 8/12, "feet"),
  34977. name: "Front",
  34978. image: {
  34979. source: "./media/characters/azalie-croixland/front.svg",
  34980. extra: 1972/1856,
  34981. bottom: 31/2003
  34982. }
  34983. },
  34984. },
  34985. [
  34986. {
  34987. name: "Original Height",
  34988. height: math.unit(5 + 4/12, "feet")
  34989. },
  34990. {
  34991. name: "Normal Height",
  34992. height: math.unit(10 + 8/12, "feet"),
  34993. default: true
  34994. },
  34995. ]
  34996. ))
  34997. characterMakers.push(() => makeCharacter(
  34998. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34999. {
  35000. side: {
  35001. height: math.unit(7 + 1/12, "feet"),
  35002. weight: math.unit(245, "lb"),
  35003. name: "Side",
  35004. image: {
  35005. source: "./media/characters/kavus-kazian/side.svg",
  35006. extra: 349/342,
  35007. bottom: 15/364
  35008. }
  35009. },
  35010. },
  35011. [
  35012. {
  35013. name: "Normal",
  35014. height: math.unit(7 + 1/12, "feet"),
  35015. default: true
  35016. },
  35017. ]
  35018. ))
  35019. characterMakers.push(() => makeCharacter(
  35020. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  35021. {
  35022. normal: {
  35023. height: math.unit(5 + 11/12, "feet"),
  35024. name: "Normal",
  35025. image: {
  35026. source: "./media/characters/moonlight-rose/normal.svg",
  35027. extra: 1979/1835,
  35028. bottom: 14/1993
  35029. }
  35030. },
  35031. demon: {
  35032. height: math.unit(5, "km"),
  35033. name: "Demon",
  35034. image: {
  35035. source: "./media/characters/moonlight-rose/demon.svg",
  35036. extra: 986/916,
  35037. bottom: 28/1014
  35038. }
  35039. },
  35040. },
  35041. [
  35042. {
  35043. name: "\"Natural\" height",
  35044. height: math.unit(5 + 11/12, "feet")
  35045. },
  35046. {
  35047. name: "Comfortable Size",
  35048. height: math.unit(40, "meters")
  35049. },
  35050. {
  35051. name: "Common Size",
  35052. height: math.unit(50, "km"),
  35053. default: true
  35054. },
  35055. {
  35056. name: "Demonic",
  35057. height: math.unit(1.24415e+21, "meters")
  35058. },
  35059. ]
  35060. ))
  35061. characterMakers.push(() => makeCharacter(
  35062. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  35063. {
  35064. front: {
  35065. height: math.unit(16, "feet"),
  35066. weight: math.unit(610, "kg"),
  35067. name: "Front",
  35068. image: {
  35069. source: "./media/characters/huckle/front.svg",
  35070. extra: 1731/1625,
  35071. bottom: 33/1764
  35072. }
  35073. },
  35074. back: {
  35075. height: math.unit(16, "feet"),
  35076. weight: math.unit(610, "kg"),
  35077. name: "Back",
  35078. image: {
  35079. source: "./media/characters/huckle/back.svg",
  35080. extra: 1738/1651,
  35081. bottom: 37/1775
  35082. }
  35083. },
  35084. laughing: {
  35085. height: math.unit(3.75, "feet"),
  35086. name: "Laughing",
  35087. image: {
  35088. source: "./media/characters/huckle/laughing.svg"
  35089. }
  35090. },
  35091. angry: {
  35092. height: math.unit(4.15, "feet"),
  35093. name: "Angry",
  35094. image: {
  35095. source: "./media/characters/huckle/angry.svg"
  35096. }
  35097. },
  35098. },
  35099. [
  35100. {
  35101. name: "Normal",
  35102. height: math.unit(16, "feet"),
  35103. default: true
  35104. },
  35105. {
  35106. name: "Mini Macro",
  35107. height: math.unit(463, "feet")
  35108. },
  35109. {
  35110. name: "Macro",
  35111. height: math.unit(1680, "meters")
  35112. },
  35113. {
  35114. name: "Mega Macro",
  35115. height: math.unit(175, "km")
  35116. },
  35117. {
  35118. name: "Terra Macro",
  35119. height: math.unit(32, "gigameters")
  35120. },
  35121. {
  35122. name: "Multiverse+",
  35123. height: math.unit(2.56e23, "yottameters")
  35124. },
  35125. ]
  35126. ))
  35127. characterMakers.push(() => makeCharacter(
  35128. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  35129. {
  35130. front: {
  35131. height: math.unit(6 + 9/12, "feet"),
  35132. weight: math.unit(280, "lb"),
  35133. name: "Front",
  35134. image: {
  35135. source: "./media/characters/candy/front.svg",
  35136. extra: 234/217,
  35137. bottom: 11/245
  35138. }
  35139. },
  35140. },
  35141. [
  35142. {
  35143. name: "Really Small",
  35144. height: math.unit(0.1, "nm")
  35145. },
  35146. {
  35147. name: "Micro",
  35148. height: math.unit(2, "inches")
  35149. },
  35150. {
  35151. name: "Normal",
  35152. height: math.unit(6 + 9/12, "feet"),
  35153. default: true
  35154. },
  35155. {
  35156. name: "Small Macro",
  35157. height: math.unit(69, "feet")
  35158. },
  35159. {
  35160. name: "Macro",
  35161. height: math.unit(160, "feet")
  35162. },
  35163. {
  35164. name: "Megamacro",
  35165. height: math.unit(22000, "miles")
  35166. },
  35167. {
  35168. name: "Gigamacro",
  35169. height: math.unit(50000, "miles")
  35170. },
  35171. ]
  35172. ))
  35173. characterMakers.push(() => makeCharacter(
  35174. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  35175. {
  35176. front: {
  35177. height: math.unit(4, "feet"),
  35178. weight: math.unit(90, "lb"),
  35179. name: "Front",
  35180. image: {
  35181. source: "./media/characters/joey-mcdonald/front.svg",
  35182. extra: 1059/852,
  35183. bottom: 33/1092
  35184. }
  35185. },
  35186. back: {
  35187. height: math.unit(4, "feet"),
  35188. weight: math.unit(90, "lb"),
  35189. name: "Back",
  35190. image: {
  35191. source: "./media/characters/joey-mcdonald/back.svg",
  35192. extra: 1077/879,
  35193. bottom: 5/1082
  35194. }
  35195. },
  35196. frontKobold: {
  35197. height: math.unit(4, "feet"),
  35198. weight: math.unit(100, "lb"),
  35199. name: "Front-kobold",
  35200. image: {
  35201. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  35202. extra: 1480/1367,
  35203. bottom: 0/1480
  35204. }
  35205. },
  35206. backKobold: {
  35207. height: math.unit(4, "feet"),
  35208. weight: math.unit(100, "lb"),
  35209. name: "Back-kobold",
  35210. image: {
  35211. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  35212. extra: 1449/1361,
  35213. bottom: 0/1449
  35214. }
  35215. },
  35216. },
  35217. [
  35218. {
  35219. name: "Normal",
  35220. height: math.unit(4, "feet"),
  35221. default: true
  35222. },
  35223. ]
  35224. ))
  35225. characterMakers.push(() => makeCharacter(
  35226. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  35227. {
  35228. front: {
  35229. height: math.unit(12 + 6/12, "feet"),
  35230. name: "Front",
  35231. image: {
  35232. source: "./media/characters/kass-lockheed/front.svg",
  35233. extra: 354/343,
  35234. bottom: 9/363
  35235. }
  35236. },
  35237. back: {
  35238. height: math.unit(12 + 6/12, "feet"),
  35239. name: "Back",
  35240. image: {
  35241. source: "./media/characters/kass-lockheed/back.svg",
  35242. extra: 364/352,
  35243. bottom: 3/367
  35244. }
  35245. },
  35246. dick: {
  35247. height: math.unit(3.12, "feet"),
  35248. name: "Dick",
  35249. image: {
  35250. source: "./media/characters/kass-lockheed/dick.svg"
  35251. }
  35252. },
  35253. head: {
  35254. height: math.unit(2.6, "feet"),
  35255. name: "Head",
  35256. image: {
  35257. source: "./media/characters/kass-lockheed/head.svg"
  35258. }
  35259. },
  35260. bleh: {
  35261. height: math.unit(2.85, "feet"),
  35262. name: "Bleh",
  35263. image: {
  35264. source: "./media/characters/kass-lockheed/bleh.svg"
  35265. }
  35266. },
  35267. smug: {
  35268. height: math.unit(2.85, "feet"),
  35269. name: "Smug",
  35270. image: {
  35271. source: "./media/characters/kass-lockheed/smug.svg"
  35272. }
  35273. },
  35274. },
  35275. [
  35276. {
  35277. name: "Normal",
  35278. height: math.unit(12 + 6/12, "feet"),
  35279. default: true
  35280. },
  35281. ]
  35282. ))
  35283. characterMakers.push(() => makeCharacter(
  35284. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  35285. {
  35286. front: {
  35287. height: math.unit(6 + 2/12, "feet"),
  35288. name: "Front",
  35289. image: {
  35290. source: "./media/characters/taylor/front.svg",
  35291. extra: 639/495,
  35292. bottom: 12/651
  35293. }
  35294. },
  35295. },
  35296. [
  35297. {
  35298. name: "Normal",
  35299. height: math.unit(6 + 2/12, "feet"),
  35300. default: true
  35301. },
  35302. {
  35303. name: "Big",
  35304. height: math.unit(15, "feet")
  35305. },
  35306. {
  35307. name: "Lorg",
  35308. height: math.unit(80, "feet")
  35309. },
  35310. {
  35311. name: "Too Lorg",
  35312. height: math.unit(120, "feet")
  35313. },
  35314. ]
  35315. ))
  35316. characterMakers.push(() => makeCharacter(
  35317. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  35318. {
  35319. front: {
  35320. height: math.unit(15, "feet"),
  35321. name: "Front",
  35322. image: {
  35323. source: "./media/characters/kaizer/front.svg",
  35324. extra: 1612/1436,
  35325. bottom: 43/1655
  35326. }
  35327. },
  35328. },
  35329. [
  35330. {
  35331. name: "Normal",
  35332. height: math.unit(15, "feet"),
  35333. default: true
  35334. },
  35335. ]
  35336. ))
  35337. characterMakers.push(() => makeCharacter(
  35338. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  35339. {
  35340. front: {
  35341. height: math.unit(2, "feet"),
  35342. weight: math.unit(30, "lb"),
  35343. name: "Front",
  35344. image: {
  35345. source: "./media/characters/sandy/front.svg",
  35346. extra: 1439/1307,
  35347. bottom: 194/1633
  35348. }
  35349. },
  35350. },
  35351. [
  35352. {
  35353. name: "Normal",
  35354. height: math.unit(2, "feet"),
  35355. default: true
  35356. },
  35357. ]
  35358. ))
  35359. characterMakers.push(() => makeCharacter(
  35360. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  35361. {
  35362. front: {
  35363. height: math.unit(3, "feet"),
  35364. name: "Front",
  35365. image: {
  35366. source: "./media/characters/mellvi/front.svg",
  35367. extra: 1831/1630,
  35368. bottom: 58/1889
  35369. }
  35370. },
  35371. },
  35372. [
  35373. {
  35374. name: "Normal",
  35375. height: math.unit(3, "feet"),
  35376. default: true
  35377. },
  35378. ]
  35379. ))
  35380. characterMakers.push(() => makeCharacter(
  35381. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  35382. {
  35383. front: {
  35384. height: math.unit(5 + 11/12, "feet"),
  35385. weight: math.unit(200, "lb"),
  35386. name: "Front",
  35387. image: {
  35388. source: "./media/characters/shirou/front.svg",
  35389. extra: 2491/2383,
  35390. bottom: 189/2680
  35391. }
  35392. },
  35393. back: {
  35394. height: math.unit(5 + 11/12, "feet"),
  35395. weight: math.unit(200, "lb"),
  35396. name: "Back",
  35397. image: {
  35398. source: "./media/characters/shirou/back.svg",
  35399. extra: 2554/2450,
  35400. bottom: 76/2630
  35401. }
  35402. },
  35403. },
  35404. [
  35405. {
  35406. name: "Normal",
  35407. height: math.unit(5 + 11/12, "feet"),
  35408. default: true
  35409. },
  35410. ]
  35411. ))
  35412. characterMakers.push(() => makeCharacter(
  35413. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  35414. {
  35415. front: {
  35416. height: math.unit(6 + 3/12, "feet"),
  35417. weight: math.unit(177, "lb"),
  35418. name: "Front",
  35419. image: {
  35420. source: "./media/characters/noryu/front.svg",
  35421. extra: 973/885,
  35422. bottom: 10/983
  35423. }
  35424. },
  35425. },
  35426. [
  35427. {
  35428. name: "Normal",
  35429. height: math.unit(6 + 3/12, "feet"),
  35430. default: true
  35431. },
  35432. ]
  35433. ))
  35434. characterMakers.push(() => makeCharacter(
  35435. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  35436. {
  35437. front: {
  35438. height: math.unit(5 + 6/12, "feet"),
  35439. weight: math.unit(170, "lb"),
  35440. name: "Front",
  35441. image: {
  35442. source: "./media/characters/mevolas-rubenido/front.svg",
  35443. extra: 2109/1901,
  35444. bottom: 96/2205
  35445. }
  35446. },
  35447. },
  35448. [
  35449. {
  35450. name: "Normal",
  35451. height: math.unit(5 + 6/12, "feet"),
  35452. default: true
  35453. },
  35454. ]
  35455. ))
  35456. characterMakers.push(() => makeCharacter(
  35457. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  35458. {
  35459. front: {
  35460. height: math.unit(100, "feet"),
  35461. name: "Front",
  35462. image: {
  35463. source: "./media/characters/dee/front.svg",
  35464. extra: 2153/2036,
  35465. bottom: 59/2212
  35466. }
  35467. },
  35468. back: {
  35469. height: math.unit(100, "feet"),
  35470. name: "Back",
  35471. image: {
  35472. source: "./media/characters/dee/back.svg",
  35473. extra: 2183/2058,
  35474. bottom: 75/2258
  35475. }
  35476. },
  35477. foot: {
  35478. height: math.unit(19.43, "feet"),
  35479. name: "Foot",
  35480. image: {
  35481. source: "./media/characters/dee/foot.svg"
  35482. }
  35483. },
  35484. hoof: {
  35485. height: math.unit(20.6, "feet"),
  35486. name: "Hoof",
  35487. image: {
  35488. source: "./media/characters/dee/hoof.svg"
  35489. }
  35490. },
  35491. },
  35492. [
  35493. {
  35494. name: "Macro",
  35495. height: math.unit(100, "feet"),
  35496. default: true
  35497. },
  35498. ]
  35499. ))
  35500. characterMakers.push(() => makeCharacter(
  35501. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  35502. {
  35503. front: {
  35504. height: math.unit(5 + 6/12, "feet"),
  35505. name: "Front",
  35506. image: {
  35507. source: "./media/characters/teh/front.svg",
  35508. extra: 1002/847,
  35509. bottom: 62/1064
  35510. }
  35511. },
  35512. },
  35513. [
  35514. {
  35515. name: "Normal",
  35516. height: math.unit(5 + 6/12, "feet"),
  35517. default: true
  35518. },
  35519. ]
  35520. ))
  35521. characterMakers.push(() => makeCharacter(
  35522. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  35523. {
  35524. side: {
  35525. height: math.unit(6 + 1/12, "feet"),
  35526. weight: math.unit(204, "lb"),
  35527. name: "Side",
  35528. image: {
  35529. source: "./media/characters/quicksilver-ayukoti/side.svg",
  35530. extra: 974/775,
  35531. bottom: 169/1143
  35532. }
  35533. },
  35534. sitting: {
  35535. height: math.unit(6 + 2/12, "feet"),
  35536. weight: math.unit(204, "lb"),
  35537. name: "Sitting",
  35538. image: {
  35539. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  35540. extra: 1175/964,
  35541. bottom: 378/1553
  35542. }
  35543. },
  35544. },
  35545. [
  35546. {
  35547. name: "Normal",
  35548. height: math.unit(6 + 1/12, "feet"),
  35549. default: true
  35550. },
  35551. ]
  35552. ))
  35553. characterMakers.push(() => makeCharacter(
  35554. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  35555. {
  35556. front: {
  35557. height: math.unit(6, "inches"),
  35558. name: "Front",
  35559. image: {
  35560. source: "./media/characters/tululi/front.svg",
  35561. extra: 1997/1876,
  35562. bottom: 20/2017
  35563. }
  35564. },
  35565. },
  35566. [
  35567. {
  35568. name: "Normal",
  35569. height: math.unit(6, "inches"),
  35570. default: true
  35571. },
  35572. ]
  35573. ))
  35574. characterMakers.push(() => makeCharacter(
  35575. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  35576. {
  35577. front: {
  35578. height: math.unit(4 + 1/12, "feet"),
  35579. name: "Front",
  35580. image: {
  35581. source: "./media/characters/star/front.svg",
  35582. extra: 1493/1189,
  35583. bottom: 48/1541
  35584. }
  35585. },
  35586. },
  35587. [
  35588. {
  35589. name: "Normal",
  35590. height: math.unit(4 + 1/12, "feet"),
  35591. default: true
  35592. },
  35593. ]
  35594. ))
  35595. characterMakers.push(() => makeCharacter(
  35596. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  35597. {
  35598. front: {
  35599. height: math.unit(6 + 3/12, "feet"),
  35600. name: "Front",
  35601. image: {
  35602. source: "./media/characters/comet/front.svg",
  35603. extra: 1681/1462,
  35604. bottom: 26/1707
  35605. }
  35606. },
  35607. },
  35608. [
  35609. {
  35610. name: "Normal",
  35611. height: math.unit(6 + 3/12, "feet"),
  35612. default: true
  35613. },
  35614. ]
  35615. ))
  35616. characterMakers.push(() => makeCharacter(
  35617. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35618. {
  35619. front: {
  35620. height: math.unit(950, "feet"),
  35621. name: "Front",
  35622. image: {
  35623. source: "./media/characters/vortex/front.svg",
  35624. extra: 1497/1434,
  35625. bottom: 56/1553
  35626. }
  35627. },
  35628. maw: {
  35629. height: math.unit(285, "feet"),
  35630. name: "Maw",
  35631. image: {
  35632. source: "./media/characters/vortex/maw.svg"
  35633. }
  35634. },
  35635. },
  35636. [
  35637. {
  35638. name: "Macro",
  35639. height: math.unit(950, "feet"),
  35640. default: true
  35641. },
  35642. ]
  35643. ))
  35644. characterMakers.push(() => makeCharacter(
  35645. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  35646. {
  35647. front: {
  35648. height: math.unit(600, "feet"),
  35649. weight: math.unit(0.02, "grams"),
  35650. name: "Front",
  35651. image: {
  35652. source: "./media/characters/doodle/front.svg",
  35653. extra: 1578/1413,
  35654. bottom: 37/1615
  35655. }
  35656. },
  35657. },
  35658. [
  35659. {
  35660. name: "Macro",
  35661. height: math.unit(600, "feet"),
  35662. default: true
  35663. },
  35664. ]
  35665. ))
  35666. characterMakers.push(() => makeCharacter(
  35667. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35668. {
  35669. front: {
  35670. height: math.unit(6 + 6/12, "feet"),
  35671. name: "Front",
  35672. image: {
  35673. source: "./media/characters/jai/front.svg",
  35674. extra: 1645/1534,
  35675. bottom: 115/1760
  35676. }
  35677. },
  35678. },
  35679. [
  35680. {
  35681. name: "Normal",
  35682. height: math.unit(6 + 6/12, "feet"),
  35683. default: true
  35684. },
  35685. ]
  35686. ))
  35687. characterMakers.push(() => makeCharacter(
  35688. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35689. {
  35690. front: {
  35691. height: math.unit(6 + 8/12, "feet"),
  35692. name: "Front",
  35693. image: {
  35694. source: "./media/characters/pixel/front.svg",
  35695. extra: 1900/1735,
  35696. bottom: 63/1963
  35697. }
  35698. },
  35699. },
  35700. [
  35701. {
  35702. name: "Normal",
  35703. height: math.unit(6 + 8/12, "feet"),
  35704. default: true
  35705. },
  35706. ]
  35707. ))
  35708. characterMakers.push(() => makeCharacter(
  35709. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35710. {
  35711. back: {
  35712. height: math.unit(4 + 1/12, "feet"),
  35713. weight: math.unit(75, "lb"),
  35714. name: "Back",
  35715. image: {
  35716. source: "./media/characters/rhett/back.svg",
  35717. extra: 930/878,
  35718. bottom: 25/955
  35719. }
  35720. },
  35721. front: {
  35722. height: math.unit(4 + 1/12, "feet"),
  35723. weight: math.unit(75, "lb"),
  35724. name: "Front",
  35725. image: {
  35726. source: "./media/characters/rhett/front.svg",
  35727. extra: 1682/1586,
  35728. bottom: 92/1774
  35729. }
  35730. },
  35731. },
  35732. [
  35733. {
  35734. name: "Micro",
  35735. height: math.unit(8, "inches")
  35736. },
  35737. {
  35738. name: "Tiny",
  35739. height: math.unit(2, "feet")
  35740. },
  35741. {
  35742. name: "Normal",
  35743. height: math.unit(4 + 1/12, "feet"),
  35744. default: true
  35745. },
  35746. ]
  35747. ))
  35748. characterMakers.push(() => makeCharacter(
  35749. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35750. {
  35751. front: {
  35752. height: math.unit(3 + 3/12, "feet"),
  35753. name: "Front",
  35754. image: {
  35755. source: "./media/characters/penny/front.svg",
  35756. extra: 1406/1311,
  35757. bottom: 26/1432
  35758. }
  35759. },
  35760. },
  35761. [
  35762. {
  35763. name: "Normal",
  35764. height: math.unit(3 + 3/12, "feet"),
  35765. default: true
  35766. },
  35767. ]
  35768. ))
  35769. characterMakers.push(() => makeCharacter(
  35770. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35771. {
  35772. front: {
  35773. height: math.unit(4 + 11/12, "feet"),
  35774. name: "Front",
  35775. image: {
  35776. source: "./media/characters/monty/front.svg",
  35777. extra: 1479/1209,
  35778. bottom: 0/1479
  35779. }
  35780. },
  35781. },
  35782. [
  35783. {
  35784. name: "Normal",
  35785. height: math.unit(4 + 11/12, "feet"),
  35786. default: true
  35787. },
  35788. ]
  35789. ))
  35790. characterMakers.push(() => makeCharacter(
  35791. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35792. {
  35793. front: {
  35794. height: math.unit(8 + 4/12, "feet"),
  35795. name: "Front",
  35796. image: {
  35797. source: "./media/characters/sterling/front.svg",
  35798. extra: 1420/1236,
  35799. bottom: 27/1447
  35800. }
  35801. },
  35802. },
  35803. [
  35804. {
  35805. name: "Normal",
  35806. height: math.unit(8 + 4/12, "feet"),
  35807. default: true
  35808. },
  35809. ]
  35810. ))
  35811. characterMakers.push(() => makeCharacter(
  35812. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35813. {
  35814. front: {
  35815. height: math.unit(15, "feet"),
  35816. name: "Front",
  35817. image: {
  35818. source: "./media/characters/marble/front.svg",
  35819. extra: 973/937,
  35820. bottom: 32/1005
  35821. }
  35822. },
  35823. },
  35824. [
  35825. {
  35826. name: "Normal",
  35827. height: math.unit(15, "feet"),
  35828. default: true
  35829. },
  35830. ]
  35831. ))
  35832. characterMakers.push(() => makeCharacter(
  35833. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35834. {
  35835. front: {
  35836. height: math.unit(3, "inches"),
  35837. name: "Front",
  35838. image: {
  35839. source: "./media/characters/powder/front.svg",
  35840. extra: 1504/1334,
  35841. bottom: 518/2022
  35842. }
  35843. },
  35844. },
  35845. [
  35846. {
  35847. name: "Normal",
  35848. height: math.unit(3, "inches"),
  35849. default: true
  35850. },
  35851. ]
  35852. ))
  35853. characterMakers.push(() => makeCharacter(
  35854. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35855. {
  35856. front: {
  35857. height: math.unit(4 + 5/12, "feet"),
  35858. name: "Front",
  35859. image: {
  35860. source: "./media/characters/joey-raccoon/front.svg",
  35861. extra: 1273/1197,
  35862. bottom: 0/1273
  35863. }
  35864. },
  35865. },
  35866. [
  35867. {
  35868. name: "Normal",
  35869. height: math.unit(4 + 5/12, "feet"),
  35870. default: true
  35871. },
  35872. ]
  35873. ))
  35874. characterMakers.push(() => makeCharacter(
  35875. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35876. {
  35877. front: {
  35878. height: math.unit(8 + 4/12, "feet"),
  35879. name: "Front",
  35880. image: {
  35881. source: "./media/characters/vick/front.svg",
  35882. extra: 2187/2118,
  35883. bottom: 47/2234
  35884. }
  35885. },
  35886. },
  35887. [
  35888. {
  35889. name: "Normal",
  35890. height: math.unit(8 + 4/12, "feet"),
  35891. default: true
  35892. },
  35893. ]
  35894. ))
  35895. characterMakers.push(() => makeCharacter(
  35896. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35897. {
  35898. front: {
  35899. height: math.unit(5 + 5/12, "feet"),
  35900. name: "Front",
  35901. image: {
  35902. source: "./media/characters/mitsy/front.svg",
  35903. extra: 1842/1695,
  35904. bottom: 0/1842
  35905. }
  35906. },
  35907. },
  35908. [
  35909. {
  35910. name: "Normal",
  35911. height: math.unit(5 + 5/12, "feet"),
  35912. default: true
  35913. },
  35914. ]
  35915. ))
  35916. characterMakers.push(() => makeCharacter(
  35917. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35918. {
  35919. front: {
  35920. height: math.unit(6 + 3/12, "feet"),
  35921. name: "Front",
  35922. image: {
  35923. source: "./media/characters/silvy/front.svg",
  35924. extra: 1995/1836,
  35925. bottom: 225/2220
  35926. }
  35927. },
  35928. },
  35929. [
  35930. {
  35931. name: "Normal",
  35932. height: math.unit(6 + 3/12, "feet"),
  35933. default: true
  35934. },
  35935. ]
  35936. ))
  35937. characterMakers.push(() => makeCharacter(
  35938. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35939. {
  35940. front: {
  35941. height: math.unit(3 + 8/12, "feet"),
  35942. name: "Front",
  35943. image: {
  35944. source: "./media/characters/rodney/front.svg",
  35945. extra: 1956/1747,
  35946. bottom: 31/1987
  35947. }
  35948. },
  35949. frontDressed: {
  35950. height: math.unit(2.9, "feet"),
  35951. name: "Front (Dressed)",
  35952. image: {
  35953. source: "./media/characters/rodney/front-dressed.svg",
  35954. extra: 1382/1241,
  35955. bottom: 385/1767
  35956. }
  35957. },
  35958. },
  35959. [
  35960. {
  35961. name: "Normal",
  35962. height: math.unit(3 + 8/12, "feet"),
  35963. default: true
  35964. },
  35965. ]
  35966. ))
  35967. characterMakers.push(() => makeCharacter(
  35968. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35969. {
  35970. front: {
  35971. height: math.unit(5 + 9/12, "feet"),
  35972. weight: math.unit(194, "lbs"),
  35973. name: "Front",
  35974. image: {
  35975. source: "./media/characters/zakail-sudekai/front.svg",
  35976. extra: 2696/2533,
  35977. bottom: 248/2944
  35978. }
  35979. },
  35980. maw: {
  35981. height: math.unit(1.35, "feet"),
  35982. name: "Maw",
  35983. image: {
  35984. source: "./media/characters/zakail-sudekai/maw.svg"
  35985. }
  35986. },
  35987. },
  35988. [
  35989. {
  35990. name: "Normal",
  35991. height: math.unit(5 + 9/12, "feet"),
  35992. default: true
  35993. },
  35994. ]
  35995. ))
  35996. characterMakers.push(() => makeCharacter(
  35997. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35998. {
  35999. front: {
  36000. height: math.unit(8 + 4/12, "feet"),
  36001. weight: math.unit(1200, "lb"),
  36002. name: "Front",
  36003. image: {
  36004. source: "./media/characters/eleanor/front.svg",
  36005. extra: 1226/1192,
  36006. bottom: 52/1278
  36007. }
  36008. },
  36009. back: {
  36010. height: math.unit(8 + 4/12, "feet"),
  36011. weight: math.unit(1200, "lb"),
  36012. name: "Back",
  36013. image: {
  36014. source: "./media/characters/eleanor/back.svg",
  36015. extra: 1242/1184,
  36016. bottom: 60/1302
  36017. }
  36018. },
  36019. head: {
  36020. height: math.unit(2.62, "feet"),
  36021. name: "Head",
  36022. image: {
  36023. source: "./media/characters/eleanor/head.svg"
  36024. }
  36025. },
  36026. },
  36027. [
  36028. {
  36029. name: "Normal",
  36030. height: math.unit(8 + 4/12, "feet"),
  36031. default: true
  36032. },
  36033. ]
  36034. ))
  36035. characterMakers.push(() => makeCharacter(
  36036. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  36037. {
  36038. front: {
  36039. height: math.unit(8 + 4/12, "feet"),
  36040. weight: math.unit(750, "lb"),
  36041. name: "Front",
  36042. image: {
  36043. source: "./media/characters/tanya/front.svg",
  36044. extra: 1749/1615,
  36045. bottom: 33/1782
  36046. }
  36047. },
  36048. },
  36049. [
  36050. {
  36051. name: "Normal",
  36052. height: math.unit(8 + 4/12, "feet"),
  36053. default: true
  36054. },
  36055. ]
  36056. ))
  36057. characterMakers.push(() => makeCharacter(
  36058. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  36059. {
  36060. front: {
  36061. height: math.unit(5, "feet"),
  36062. weight: math.unit(225, "lb"),
  36063. name: "Front",
  36064. image: {
  36065. source: "./media/characters/cindy/front.svg",
  36066. extra: 1320/1250,
  36067. bottom: 42/1362
  36068. }
  36069. },
  36070. frontDressed: {
  36071. height: math.unit(5, "feet"),
  36072. weight: math.unit(225, "lb"),
  36073. name: "Front (Dressed)",
  36074. image: {
  36075. source: "./media/characters/cindy/front-dressed.svg",
  36076. extra: 1320/1250,
  36077. bottom: 42/1362
  36078. }
  36079. },
  36080. back: {
  36081. height: math.unit(5, "feet"),
  36082. weight: math.unit(225, "lb"),
  36083. name: "Back",
  36084. image: {
  36085. source: "./media/characters/cindy/back.svg",
  36086. extra: 1384/1346,
  36087. bottom: 14/1398
  36088. }
  36089. },
  36090. },
  36091. [
  36092. {
  36093. name: "Normal",
  36094. height: math.unit(5, "feet"),
  36095. default: true
  36096. },
  36097. ]
  36098. ))
  36099. characterMakers.push(() => makeCharacter(
  36100. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  36101. {
  36102. front: {
  36103. height: math.unit(6 + 9/12, "feet"),
  36104. weight: math.unit(440, "lb"),
  36105. name: "Front",
  36106. image: {
  36107. source: "./media/characters/wilbur-owen/front.svg",
  36108. extra: 1575/1448,
  36109. bottom: 72/1647
  36110. }
  36111. },
  36112. back: {
  36113. height: math.unit(6 + 9/12, "feet"),
  36114. weight: math.unit(440, "lb"),
  36115. name: "Back",
  36116. image: {
  36117. source: "./media/characters/wilbur-owen/back.svg",
  36118. extra: 1578/1445,
  36119. bottom: 36/1614
  36120. }
  36121. },
  36122. },
  36123. [
  36124. {
  36125. name: "Normal",
  36126. height: math.unit(6 + 9/12, "feet"),
  36127. default: true
  36128. },
  36129. ]
  36130. ))
  36131. characterMakers.push(() => makeCharacter(
  36132. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  36133. {
  36134. front: {
  36135. height: math.unit(6 + 5/12, "feet"),
  36136. weight: math.unit(650, "lb"),
  36137. name: "Front",
  36138. image: {
  36139. source: "./media/characters/keegan/front.svg",
  36140. extra: 2387/2198,
  36141. bottom: 33/2420
  36142. }
  36143. },
  36144. side: {
  36145. height: math.unit(6 + 5/12, "feet"),
  36146. weight: math.unit(650, "lb"),
  36147. name: "Side",
  36148. image: {
  36149. source: "./media/characters/keegan/side.svg",
  36150. extra: 2390/2202,
  36151. bottom: 47/2437
  36152. }
  36153. },
  36154. back: {
  36155. height: math.unit(6 + 5/12, "feet"),
  36156. weight: math.unit(650, "lb"),
  36157. name: "Back",
  36158. image: {
  36159. source: "./media/characters/keegan/back.svg",
  36160. extra: 2418/2268,
  36161. bottom: 15/2433
  36162. }
  36163. },
  36164. frontSfw: {
  36165. height: math.unit(6 + 5/12, "feet"),
  36166. weight: math.unit(650, "lb"),
  36167. name: "Front (SFW)",
  36168. image: {
  36169. source: "./media/characters/keegan/front-sfw.svg",
  36170. extra: 2387/2198,
  36171. bottom: 33/2420
  36172. }
  36173. },
  36174. beans: {
  36175. height: math.unit(1.85, "feet"),
  36176. name: "Beans",
  36177. image: {
  36178. source: "./media/characters/keegan/beans.svg"
  36179. }
  36180. },
  36181. },
  36182. [
  36183. {
  36184. name: "Normal",
  36185. height: math.unit(6 + 5/12, "feet"),
  36186. default: true
  36187. },
  36188. ]
  36189. ))
  36190. characterMakers.push(() => makeCharacter(
  36191. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  36192. {
  36193. front: {
  36194. height: math.unit(9, "feet"),
  36195. name: "Front",
  36196. image: {
  36197. source: "./media/characters/colton/front.svg",
  36198. extra: 1589/1326,
  36199. bottom: 139/1728
  36200. }
  36201. },
  36202. },
  36203. [
  36204. {
  36205. name: "Normal",
  36206. height: math.unit(9, "feet"),
  36207. default: true
  36208. },
  36209. ]
  36210. ))
  36211. characterMakers.push(() => makeCharacter(
  36212. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  36213. {
  36214. front: {
  36215. height: math.unit(2 + 9/12, "feet"),
  36216. name: "Front",
  36217. image: {
  36218. source: "./media/characters/bora/front.svg",
  36219. extra: 1265/1250,
  36220. bottom: 24/1289
  36221. }
  36222. },
  36223. },
  36224. [
  36225. {
  36226. name: "Normal",
  36227. height: math.unit(2 + 9/12, "feet"),
  36228. default: true
  36229. },
  36230. ]
  36231. ))
  36232. characterMakers.push(() => makeCharacter(
  36233. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  36234. {
  36235. front: {
  36236. height: math.unit(8, "feet"),
  36237. name: "Front",
  36238. image: {
  36239. source: "./media/characters/myu-myu/front.svg",
  36240. extra: 1949/1857,
  36241. bottom: 90/2039
  36242. }
  36243. },
  36244. },
  36245. [
  36246. {
  36247. name: "Normal",
  36248. height: math.unit(8, "feet"),
  36249. default: true
  36250. },
  36251. {
  36252. name: "Big",
  36253. height: math.unit(15, "feet")
  36254. },
  36255. {
  36256. name: "BIG",
  36257. height: math.unit(25, "feet")
  36258. },
  36259. ]
  36260. ))
  36261. characterMakers.push(() => makeCharacter(
  36262. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  36263. {
  36264. side: {
  36265. height: math.unit(7 + 5/12, "feet"),
  36266. weight: math.unit(2800, "lb"),
  36267. name: "Side",
  36268. image: {
  36269. source: "./media/characters/haloren/side.svg",
  36270. extra: 1793/409,
  36271. bottom: 59/1852
  36272. }
  36273. },
  36274. frontPaw: {
  36275. height: math.unit(2.36, "feet"),
  36276. name: "Front paw",
  36277. image: {
  36278. source: "./media/characters/haloren/front-paw.svg"
  36279. }
  36280. },
  36281. hindPaw: {
  36282. height: math.unit(3.18, "feet"),
  36283. name: "Hind paw",
  36284. image: {
  36285. source: "./media/characters/haloren/hind-paw.svg"
  36286. }
  36287. },
  36288. maw: {
  36289. height: math.unit(5.05, "feet"),
  36290. name: "Maw",
  36291. image: {
  36292. source: "./media/characters/haloren/maw.svg"
  36293. }
  36294. },
  36295. dick: {
  36296. height: math.unit(2.90, "feet"),
  36297. name: "Dick",
  36298. image: {
  36299. source: "./media/characters/haloren/dick.svg"
  36300. }
  36301. },
  36302. },
  36303. [
  36304. {
  36305. name: "Normal",
  36306. height: math.unit(7 + 5/12, "feet"),
  36307. default: true
  36308. },
  36309. {
  36310. name: "Enhanced",
  36311. height: math.unit(14 + 3/12, "feet")
  36312. },
  36313. ]
  36314. ))
  36315. characterMakers.push(() => makeCharacter(
  36316. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  36317. {
  36318. front: {
  36319. height: math.unit(171, "cm"),
  36320. name: "Front",
  36321. image: {
  36322. source: "./media/characters/kimmy/front.svg",
  36323. extra: 1491/1435,
  36324. bottom: 53/1544
  36325. }
  36326. },
  36327. },
  36328. [
  36329. {
  36330. name: "Small",
  36331. height: math.unit(9, "cm")
  36332. },
  36333. {
  36334. name: "Normal",
  36335. height: math.unit(171, "cm"),
  36336. default: true
  36337. },
  36338. ]
  36339. ))
  36340. characterMakers.push(() => makeCharacter(
  36341. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  36342. {
  36343. front: {
  36344. height: math.unit(8, "feet"),
  36345. weight: math.unit(300, "lb"),
  36346. name: "Front",
  36347. image: {
  36348. source: "./media/characters/galeboomer/front.svg",
  36349. extra: 4651/4415,
  36350. bottom: 162/4813
  36351. }
  36352. },
  36353. back: {
  36354. height: math.unit(8, "feet"),
  36355. weight: math.unit(300, "lb"),
  36356. name: "Back",
  36357. image: {
  36358. source: "./media/characters/galeboomer/back.svg",
  36359. extra: 4544/4314,
  36360. bottom: 16/4560
  36361. }
  36362. },
  36363. frontAlt: {
  36364. height: math.unit(8, "feet"),
  36365. weight: math.unit(300, "lb"),
  36366. name: "Front (Alt)",
  36367. image: {
  36368. source: "./media/characters/galeboomer/front-alt.svg",
  36369. extra: 4458/4228,
  36370. bottom: 68/4526
  36371. }
  36372. },
  36373. maw: {
  36374. height: math.unit(1.2, "feet"),
  36375. name: "Maw",
  36376. image: {
  36377. source: "./media/characters/galeboomer/maw.svg"
  36378. }
  36379. },
  36380. },
  36381. [
  36382. {
  36383. name: "Normal",
  36384. height: math.unit(8, "feet"),
  36385. default: true
  36386. },
  36387. ]
  36388. ))
  36389. characterMakers.push(() => makeCharacter(
  36390. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  36391. {
  36392. front: {
  36393. height: math.unit(5 + 9/12, "feet"),
  36394. weight: math.unit(120, "lb"),
  36395. name: "Front",
  36396. image: {
  36397. source: "./media/characters/chyr/front.svg",
  36398. extra: 1323/1254,
  36399. bottom: 63/1386
  36400. }
  36401. },
  36402. back: {
  36403. height: math.unit(5 + 9/12, "feet"),
  36404. weight: math.unit(120, "lb"),
  36405. name: "Back",
  36406. image: {
  36407. source: "./media/characters/chyr/back.svg",
  36408. extra: 1323/1252,
  36409. bottom: 48/1371
  36410. }
  36411. },
  36412. },
  36413. [
  36414. {
  36415. name: "Normal",
  36416. height: math.unit(5 + 9/12, "feet"),
  36417. default: true
  36418. },
  36419. ]
  36420. ))
  36421. characterMakers.push(() => makeCharacter(
  36422. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  36423. {
  36424. front: {
  36425. height: math.unit(7, "feet"),
  36426. weight: math.unit(310, "lb"),
  36427. name: "Front",
  36428. image: {
  36429. source: "./media/characters/solarus/front.svg",
  36430. extra: 2415/2021,
  36431. bottom: 103/2518
  36432. }
  36433. },
  36434. back: {
  36435. height: math.unit(7, "feet"),
  36436. weight: math.unit(310, "lb"),
  36437. name: "Back",
  36438. image: {
  36439. source: "./media/characters/solarus/back.svg",
  36440. extra: 2463/2089,
  36441. bottom: 79/2542
  36442. }
  36443. },
  36444. },
  36445. [
  36446. {
  36447. name: "Normal",
  36448. height: math.unit(7, "feet"),
  36449. default: true
  36450. },
  36451. ]
  36452. ))
  36453. characterMakers.push(() => makeCharacter(
  36454. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  36455. {
  36456. front: {
  36457. height: math.unit(16, "feet"),
  36458. name: "Front",
  36459. image: {
  36460. source: "./media/characters/mutsuju-koizaemon/front.svg",
  36461. extra: 1844/1780,
  36462. bottom: 58/1902
  36463. }
  36464. },
  36465. winterCoat: {
  36466. height: math.unit(16, "feet"),
  36467. name: "Winter Coat",
  36468. image: {
  36469. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  36470. extra: 1807/1775,
  36471. bottom: 69/1876
  36472. }
  36473. },
  36474. },
  36475. [
  36476. {
  36477. name: "Normal",
  36478. height: math.unit(16, "feet"),
  36479. default: true
  36480. },
  36481. {
  36482. name: "Chicago Size",
  36483. height: math.unit(560, "feet")
  36484. },
  36485. ]
  36486. ))
  36487. characterMakers.push(() => makeCharacter(
  36488. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  36489. {
  36490. front: {
  36491. height: math.unit(11 + 6/12, "feet"),
  36492. weight: math.unit(1366, "lb"),
  36493. name: "Front",
  36494. image: {
  36495. source: "./media/characters/lexor/front.svg",
  36496. extra: 1560/1481,
  36497. bottom: 211/1771
  36498. }
  36499. },
  36500. back: {
  36501. height: math.unit(11 + 6/12, "feet"),
  36502. weight: math.unit(1366, "lb"),
  36503. name: "Back",
  36504. image: {
  36505. source: "./media/characters/lexor/back.svg",
  36506. extra: 1614/1533,
  36507. bottom: 76/1690
  36508. }
  36509. },
  36510. maw: {
  36511. height: math.unit(3, "feet"),
  36512. name: "Maw",
  36513. image: {
  36514. source: "./media/characters/lexor/maw.svg"
  36515. }
  36516. },
  36517. dick: {
  36518. height: math.unit(2.59, "feet"),
  36519. name: "Dick",
  36520. image: {
  36521. source: "./media/characters/lexor/dick.svg"
  36522. }
  36523. },
  36524. },
  36525. [
  36526. {
  36527. name: "Normal",
  36528. height: math.unit(11 + 6/12, "feet"),
  36529. default: true
  36530. },
  36531. ]
  36532. ))
  36533. characterMakers.push(() => makeCharacter(
  36534. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  36535. {
  36536. front: {
  36537. height: math.unit(5 + 8/12, "feet"),
  36538. name: "Front",
  36539. image: {
  36540. source: "./media/characters/magnum/front.svg",
  36541. extra: 942/855,
  36542. bottom: 26/968
  36543. }
  36544. },
  36545. },
  36546. [
  36547. {
  36548. name: "Normal",
  36549. height: math.unit(5 + 8/12, "feet"),
  36550. default: true
  36551. },
  36552. ]
  36553. ))
  36554. characterMakers.push(() => makeCharacter(
  36555. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  36556. {
  36557. front: {
  36558. height: math.unit(18 + 4/12, "feet"),
  36559. weight: math.unit(1500, "kg"),
  36560. name: "Front",
  36561. image: {
  36562. source: "./media/characters/solas-sharpsman/front.svg",
  36563. extra: 1698/1589,
  36564. bottom: 0/1698
  36565. }
  36566. },
  36567. },
  36568. [
  36569. {
  36570. name: "Normal",
  36571. height: math.unit(18 + 4/12, "feet"),
  36572. default: true
  36573. },
  36574. ]
  36575. ))
  36576. characterMakers.push(() => makeCharacter(
  36577. { name: "October", species: ["tiger"], tags: ["anthro"] },
  36578. {
  36579. front: {
  36580. height: math.unit(5 + 5/12, "feet"),
  36581. weight: math.unit(180, "lb"),
  36582. name: "Front",
  36583. image: {
  36584. source: "./media/characters/october/front.svg",
  36585. extra: 1800/1650,
  36586. bottom: 0/1800
  36587. }
  36588. },
  36589. frontNsfw: {
  36590. height: math.unit(5 + 5/12, "feet"),
  36591. weight: math.unit(180, "lb"),
  36592. name: "Front (NSFW)",
  36593. image: {
  36594. source: "./media/characters/october/front-nsfw.svg",
  36595. extra: 1392/1307,
  36596. bottom: 42/1434
  36597. }
  36598. },
  36599. },
  36600. [
  36601. {
  36602. name: "Normal",
  36603. height: math.unit(5 + 5/12, "feet"),
  36604. default: true
  36605. },
  36606. ]
  36607. ))
  36608. characterMakers.push(() => makeCharacter(
  36609. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  36610. {
  36611. front: {
  36612. height: math.unit(8 + 6/12, "feet"),
  36613. name: "Front",
  36614. image: {
  36615. source: "./media/characters/essynkardi/front.svg",
  36616. extra: 1914/1846,
  36617. bottom: 22/1936
  36618. }
  36619. },
  36620. },
  36621. [
  36622. {
  36623. name: "Normal",
  36624. height: math.unit(8 + 6/12, "feet"),
  36625. default: true
  36626. },
  36627. ]
  36628. ))
  36629. characterMakers.push(() => makeCharacter(
  36630. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36631. {
  36632. front: {
  36633. height: math.unit(6 + 6/12, "feet"),
  36634. weight: math.unit(7, "lb"),
  36635. name: "Front",
  36636. image: {
  36637. source: "./media/characters/icky/front.svg",
  36638. extra: 813/782,
  36639. bottom: 66/879
  36640. }
  36641. },
  36642. back: {
  36643. height: math.unit(6 + 6/12, "feet"),
  36644. weight: math.unit(7, "lb"),
  36645. name: "Back",
  36646. image: {
  36647. source: "./media/characters/icky/back.svg",
  36648. extra: 754/735,
  36649. bottom: 56/810
  36650. }
  36651. },
  36652. },
  36653. [
  36654. {
  36655. name: "Normal",
  36656. height: math.unit(6 + 6/12, "feet"),
  36657. default: true
  36658. },
  36659. ]
  36660. ))
  36661. characterMakers.push(() => makeCharacter(
  36662. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36663. {
  36664. front: {
  36665. height: math.unit(15, "feet"),
  36666. name: "Front",
  36667. image: {
  36668. source: "./media/characters/rojas/front.svg",
  36669. extra: 1462/1408,
  36670. bottom: 95/1557
  36671. }
  36672. },
  36673. back: {
  36674. height: math.unit(15, "feet"),
  36675. name: "Back",
  36676. image: {
  36677. source: "./media/characters/rojas/back.svg",
  36678. extra: 1023/954,
  36679. bottom: 28/1051
  36680. }
  36681. },
  36682. },
  36683. [
  36684. {
  36685. name: "Normal",
  36686. height: math.unit(15, "feet"),
  36687. default: true
  36688. },
  36689. ]
  36690. ))
  36691. characterMakers.push(() => makeCharacter(
  36692. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36693. {
  36694. frontHuman: {
  36695. height: math.unit(5 + 7/12, "feet"),
  36696. name: "Front (Human)",
  36697. image: {
  36698. source: "./media/characters/alek-dryagan/front-human.svg",
  36699. extra: 1687/1667,
  36700. bottom: 69/1756
  36701. }
  36702. },
  36703. backHuman: {
  36704. height: math.unit(5 + 7/12, "feet"),
  36705. name: "Back (Human)",
  36706. image: {
  36707. source: "./media/characters/alek-dryagan/back-human.svg",
  36708. extra: 1670/1649,
  36709. bottom: 65/1735
  36710. }
  36711. },
  36712. frontDemi: {
  36713. height: math.unit(65, "feet"),
  36714. name: "Front (Demi)",
  36715. image: {
  36716. source: "./media/characters/alek-dryagan/front-demi.svg",
  36717. extra: 1669/1642,
  36718. bottom: 49/1718
  36719. }
  36720. },
  36721. backDemi: {
  36722. height: math.unit(65, "feet"),
  36723. name: "Back (Demi)",
  36724. image: {
  36725. source: "./media/characters/alek-dryagan/back-demi.svg",
  36726. extra: 1658/1637,
  36727. bottom: 40/1698
  36728. }
  36729. },
  36730. mawHuman: {
  36731. height: math.unit(0.3, "feet"),
  36732. name: "Maw (Human)",
  36733. image: {
  36734. source: "./media/characters/alek-dryagan/maw-human.svg"
  36735. }
  36736. },
  36737. mawDemi: {
  36738. height: math.unit(3.8, "feet"),
  36739. name: "Maw (Demi)",
  36740. image: {
  36741. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36742. }
  36743. },
  36744. },
  36745. [
  36746. {
  36747. name: "Normal",
  36748. height: math.unit(5 + 7/12, "feet"),
  36749. default: true
  36750. },
  36751. ]
  36752. ))
  36753. characterMakers.push(() => makeCharacter(
  36754. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36755. {
  36756. frontHuman: {
  36757. height: math.unit(5 + 2/12, "feet"),
  36758. name: "Front (Human)",
  36759. image: {
  36760. source: "./media/characters/gen/front-human.svg",
  36761. extra: 1627/1538,
  36762. bottom: 71/1698
  36763. }
  36764. },
  36765. backHuman: {
  36766. height: math.unit(5 + 2/12, "feet"),
  36767. name: "Back (Human)",
  36768. image: {
  36769. source: "./media/characters/gen/back-human.svg",
  36770. extra: 1638/1548,
  36771. bottom: 69/1707
  36772. }
  36773. },
  36774. frontDemi: {
  36775. height: math.unit(5 + 2/12, "feet"),
  36776. name: "Front (Demi)",
  36777. image: {
  36778. source: "./media/characters/gen/front-demi.svg",
  36779. extra: 1627/1538,
  36780. bottom: 71/1698
  36781. }
  36782. },
  36783. backDemi: {
  36784. height: math.unit(5 + 2/12, "feet"),
  36785. name: "Back (Demi)",
  36786. image: {
  36787. source: "./media/characters/gen/back-demi.svg",
  36788. extra: 1638/1548,
  36789. bottom: 69/1707
  36790. }
  36791. },
  36792. },
  36793. [
  36794. {
  36795. name: "Normal",
  36796. height: math.unit(5 + 2/12, "feet"),
  36797. default: true
  36798. },
  36799. ]
  36800. ))
  36801. characterMakers.push(() => makeCharacter(
  36802. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36803. {
  36804. frontImp: {
  36805. height: math.unit(1 + 11/12, "feet"),
  36806. name: "Front (Imp)",
  36807. image: {
  36808. source: "./media/characters/max-kobold/front-imp.svg",
  36809. extra: 1238/1134,
  36810. bottom: 81/1319
  36811. }
  36812. },
  36813. backImp: {
  36814. height: math.unit(1 + 11/12, "feet"),
  36815. name: "Back (Imp)",
  36816. image: {
  36817. source: "./media/characters/max-kobold/back-imp.svg",
  36818. extra: 1334/1175,
  36819. bottom: 34/1368
  36820. }
  36821. },
  36822. frontDemi: {
  36823. height: math.unit(5 + 9/12, "feet"),
  36824. name: "Front (Demi)",
  36825. image: {
  36826. source: "./media/characters/max-kobold/front-demi.svg",
  36827. extra: 1715/1685,
  36828. bottom: 54/1769
  36829. }
  36830. },
  36831. backDemi: {
  36832. height: math.unit(5 + 9/12, "feet"),
  36833. name: "Back (Demi)",
  36834. image: {
  36835. source: "./media/characters/max-kobold/back-demi.svg",
  36836. extra: 1752/1729,
  36837. bottom: 41/1793
  36838. }
  36839. },
  36840. handImp: {
  36841. height: math.unit(0.45, "feet"),
  36842. name: "Hand (Imp)",
  36843. image: {
  36844. source: "./media/characters/max-kobold/hand.svg"
  36845. }
  36846. },
  36847. pawImp: {
  36848. height: math.unit(0.46, "feet"),
  36849. name: "Paw (Imp)",
  36850. image: {
  36851. source: "./media/characters/max-kobold/paw.svg"
  36852. }
  36853. },
  36854. handDemi: {
  36855. height: math.unit(0.80, "feet"),
  36856. name: "Hand (Demi)",
  36857. image: {
  36858. source: "./media/characters/max-kobold/hand.svg"
  36859. }
  36860. },
  36861. pawDemi: {
  36862. height: math.unit(1.1, "feet"),
  36863. name: "Paw (Demi)",
  36864. image: {
  36865. source: "./media/characters/max-kobold/paw.svg"
  36866. }
  36867. },
  36868. headImp: {
  36869. height: math.unit(1.33, "feet"),
  36870. name: "Head (Imp)",
  36871. image: {
  36872. source: "./media/characters/max-kobold/head-imp.svg"
  36873. }
  36874. },
  36875. mawImp: {
  36876. height: math.unit(0.75, "feet"),
  36877. name: "Maw (Imp)",
  36878. image: {
  36879. source: "./media/characters/max-kobold/maw-imp.svg"
  36880. }
  36881. },
  36882. mawDemi: {
  36883. height: math.unit(0.42, "feet"),
  36884. name: "Maw (Demi)",
  36885. image: {
  36886. source: "./media/characters/max-kobold/maw-demi.svg"
  36887. }
  36888. },
  36889. },
  36890. [
  36891. {
  36892. name: "Normal",
  36893. height: math.unit(1 + 11/12, "feet"),
  36894. default: true
  36895. },
  36896. ]
  36897. ))
  36898. characterMakers.push(() => makeCharacter(
  36899. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36900. {
  36901. front: {
  36902. height: math.unit(7 + 5/12, "feet"),
  36903. name: "Front",
  36904. image: {
  36905. source: "./media/characters/carbon/front.svg",
  36906. extra: 1754/1689,
  36907. bottom: 65/1819
  36908. }
  36909. },
  36910. back: {
  36911. height: math.unit(7 + 5/12, "feet"),
  36912. name: "Back",
  36913. image: {
  36914. source: "./media/characters/carbon/back.svg",
  36915. extra: 1762/1695,
  36916. bottom: 24/1786
  36917. }
  36918. },
  36919. frontGigantamax: {
  36920. height: math.unit(150, "feet"),
  36921. name: "Front (Gigantamax)",
  36922. image: {
  36923. source: "./media/characters/carbon/front-gigantamax.svg",
  36924. extra: 1826/1669,
  36925. bottom: 59/1885
  36926. }
  36927. },
  36928. backGigantamax: {
  36929. height: math.unit(150, "feet"),
  36930. name: "Back (Gigantamax)",
  36931. image: {
  36932. source: "./media/characters/carbon/back-gigantamax.svg",
  36933. extra: 1796/1653,
  36934. bottom: 53/1849
  36935. }
  36936. },
  36937. maw: {
  36938. height: math.unit(0.48, "feet"),
  36939. name: "Maw",
  36940. image: {
  36941. source: "./media/characters/carbon/maw.svg"
  36942. }
  36943. },
  36944. mawGigantamax: {
  36945. height: math.unit(7.5, "feet"),
  36946. name: "Maw (Gigantamax)",
  36947. image: {
  36948. source: "./media/characters/carbon/maw-gigantamax.svg"
  36949. }
  36950. },
  36951. },
  36952. [
  36953. {
  36954. name: "Normal",
  36955. height: math.unit(7 + 5/12, "feet"),
  36956. default: true
  36957. },
  36958. ]
  36959. ))
  36960. characterMakers.push(() => makeCharacter(
  36961. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36962. {
  36963. front: {
  36964. height: math.unit(6, "feet"),
  36965. name: "Front",
  36966. image: {
  36967. source: "./media/characters/maverick/front.svg",
  36968. extra: 1672/1661,
  36969. bottom: 85/1757
  36970. }
  36971. },
  36972. back: {
  36973. height: math.unit(6, "feet"),
  36974. name: "Back",
  36975. image: {
  36976. source: "./media/characters/maverick/back.svg",
  36977. extra: 1642/1631,
  36978. bottom: 38/1680
  36979. }
  36980. },
  36981. },
  36982. [
  36983. {
  36984. name: "Normal",
  36985. height: math.unit(6, "feet"),
  36986. default: true
  36987. },
  36988. ]
  36989. ))
  36990. characterMakers.push(() => makeCharacter(
  36991. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36992. {
  36993. front: {
  36994. height: math.unit(15, "feet"),
  36995. weight: math.unit(615, "lb"),
  36996. name: "Front",
  36997. image: {
  36998. source: "./media/characters/grockle/front.svg",
  36999. extra: 1535/1427,
  37000. bottom: 56/1591
  37001. }
  37002. },
  37003. },
  37004. [
  37005. {
  37006. name: "Normal",
  37007. height: math.unit(15, "feet"),
  37008. default: true
  37009. },
  37010. {
  37011. name: "Large",
  37012. height: math.unit(150, "feet")
  37013. },
  37014. {
  37015. name: "Macro",
  37016. height: math.unit(1876, "feet")
  37017. },
  37018. {
  37019. name: "Mega Macro",
  37020. height: math.unit(121940, "feet")
  37021. },
  37022. {
  37023. name: "Giga Macro",
  37024. height: math.unit(750, "km")
  37025. },
  37026. {
  37027. name: "Tera Macro",
  37028. height: math.unit(750000, "km")
  37029. },
  37030. {
  37031. name: "Galactic",
  37032. height: math.unit(1.4e5, "km")
  37033. },
  37034. {
  37035. name: "Godlike",
  37036. height: math.unit(9.8e280, "galaxies")
  37037. },
  37038. ]
  37039. ))
  37040. characterMakers.push(() => makeCharacter(
  37041. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  37042. {
  37043. front: {
  37044. height: math.unit(11, "meters"),
  37045. weight: math.unit(20, "tonnes"),
  37046. name: "Front",
  37047. image: {
  37048. source: "./media/characters/alistair/front.svg",
  37049. extra: 1265/1009,
  37050. bottom: 93/1358
  37051. }
  37052. },
  37053. },
  37054. [
  37055. {
  37056. name: "Normal",
  37057. height: math.unit(11, "meters"),
  37058. default: true
  37059. },
  37060. ]
  37061. ))
  37062. characterMakers.push(() => makeCharacter(
  37063. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  37064. {
  37065. front: {
  37066. height: math.unit(5 + 8/12, "feet"),
  37067. name: "Front",
  37068. image: {
  37069. source: "./media/characters/haruka/front.svg",
  37070. extra: 2012/1952,
  37071. bottom: 0/2012
  37072. }
  37073. },
  37074. },
  37075. [
  37076. {
  37077. name: "Normal",
  37078. height: math.unit(5 + 8/12, "feet"),
  37079. default: true
  37080. },
  37081. ]
  37082. ))
  37083. characterMakers.push(() => makeCharacter(
  37084. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  37085. {
  37086. back: {
  37087. height: math.unit(9, "feet"),
  37088. name: "Back",
  37089. image: {
  37090. source: "./media/characters/vivian-sylveon/back.svg",
  37091. extra: 1853/1714,
  37092. bottom: 0/1853
  37093. }
  37094. },
  37095. },
  37096. [
  37097. {
  37098. name: "Normal",
  37099. height: math.unit(9, "feet"),
  37100. default: true
  37101. },
  37102. {
  37103. name: "Macro",
  37104. height: math.unit(500, "feet")
  37105. },
  37106. {
  37107. name: "Megamacro",
  37108. height: math.unit(600, "miles")
  37109. },
  37110. {
  37111. name: "Gigamacro",
  37112. height: math.unit(30000, "miles")
  37113. },
  37114. ]
  37115. ))
  37116. characterMakers.push(() => makeCharacter(
  37117. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  37118. {
  37119. anthro: {
  37120. height: math.unit(5 + 10/12, "feet"),
  37121. weight: math.unit(100, "lb"),
  37122. name: "Anthro",
  37123. image: {
  37124. source: "./media/characters/daiki/anthro.svg",
  37125. extra: 1115/1027,
  37126. bottom: 69/1184
  37127. }
  37128. },
  37129. feral: {
  37130. height: math.unit(200, "feet"),
  37131. name: "Feral",
  37132. image: {
  37133. source: "./media/characters/daiki/feral.svg",
  37134. extra: 1256/313,
  37135. bottom: 39/1295
  37136. }
  37137. },
  37138. feralHead: {
  37139. height: math.unit(171, "feet"),
  37140. name: "Feral Head",
  37141. image: {
  37142. source: "./media/characters/daiki/feral-head.svg"
  37143. }
  37144. },
  37145. manaDragon: {
  37146. height: math.unit(170, "meters"),
  37147. name: "Mana-dragon",
  37148. image: {
  37149. source: "./media/characters/daiki/mana-dragon.svg",
  37150. extra: 763/420,
  37151. bottom: 97/860
  37152. }
  37153. },
  37154. },
  37155. [
  37156. {
  37157. name: "Normal",
  37158. height: math.unit(5 + 10/12, "feet"),
  37159. default: true
  37160. },
  37161. ]
  37162. ))
  37163. characterMakers.push(() => makeCharacter(
  37164. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  37165. {
  37166. fullyEquippedFront: {
  37167. height: math.unit(3 + 1/12, "feet"),
  37168. weight: math.unit(24, "lb"),
  37169. name: "Fully Equipped (Front)",
  37170. image: {
  37171. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  37172. extra: 687/605,
  37173. bottom: 18/705
  37174. }
  37175. },
  37176. fullyEquippedBack: {
  37177. height: math.unit(3 + 1/12, "feet"),
  37178. weight: math.unit(24, "lb"),
  37179. name: "Fully Equipped (Back)",
  37180. image: {
  37181. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  37182. extra: 689/590,
  37183. bottom: 18/707
  37184. }
  37185. },
  37186. dailyWear: {
  37187. height: math.unit(3 + 1/12, "feet"),
  37188. weight: math.unit(24, "lb"),
  37189. name: "Daily Wear",
  37190. image: {
  37191. source: "./media/characters/tea-spot/daily-wear.svg",
  37192. extra: 701/620,
  37193. bottom: 21/722
  37194. }
  37195. },
  37196. maidWork: {
  37197. height: math.unit(3 + 1/12, "feet"),
  37198. weight: math.unit(24, "lb"),
  37199. name: "Maid Work",
  37200. image: {
  37201. source: "./media/characters/tea-spot/maid-work.svg",
  37202. extra: 693/609,
  37203. bottom: 15/708
  37204. }
  37205. },
  37206. },
  37207. [
  37208. {
  37209. name: "Normal",
  37210. height: math.unit(3 + 1/12, "feet"),
  37211. default: true
  37212. },
  37213. ]
  37214. ))
  37215. characterMakers.push(() => makeCharacter(
  37216. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  37217. {
  37218. front: {
  37219. height: math.unit(175, "cm"),
  37220. weight: math.unit(75, "kg"),
  37221. name: "Front",
  37222. image: {
  37223. source: "./media/characters/chee/front.svg",
  37224. extra: 1796/1740,
  37225. bottom: 40/1836
  37226. }
  37227. },
  37228. },
  37229. [
  37230. {
  37231. name: "Micro-Micro",
  37232. height: math.unit(1, "nm")
  37233. },
  37234. {
  37235. name: "Micro-erst",
  37236. height: math.unit(1, "micrometer")
  37237. },
  37238. {
  37239. name: "Micro-er",
  37240. height: math.unit(1, "cm")
  37241. },
  37242. {
  37243. name: "Normal",
  37244. height: math.unit(175, "cm"),
  37245. default: true
  37246. },
  37247. {
  37248. name: "Macro",
  37249. height: math.unit(100, "m")
  37250. },
  37251. {
  37252. name: "Macro-er",
  37253. height: math.unit(1, "km")
  37254. },
  37255. {
  37256. name: "Macro-erst",
  37257. height: math.unit(10, "km")
  37258. },
  37259. {
  37260. name: "Macro-Macro",
  37261. height: math.unit(100, "km")
  37262. },
  37263. ]
  37264. ))
  37265. characterMakers.push(() => makeCharacter(
  37266. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  37267. {
  37268. front: {
  37269. height: math.unit(11 + 9/12, "feet"),
  37270. weight: math.unit(935, "lb"),
  37271. name: "Front",
  37272. image: {
  37273. source: "./media/characters/kingsley/front.svg",
  37274. extra: 1803/1674,
  37275. bottom: 127/1930
  37276. }
  37277. },
  37278. frontNude: {
  37279. height: math.unit(11 + 9/12, "feet"),
  37280. weight: math.unit(935, "lb"),
  37281. name: "Front (Nude)",
  37282. image: {
  37283. source: "./media/characters/kingsley/front-nude.svg",
  37284. extra: 1803/1674,
  37285. bottom: 127/1930
  37286. }
  37287. },
  37288. },
  37289. [
  37290. {
  37291. name: "Normal",
  37292. height: math.unit(11 + 9/12, "feet"),
  37293. default: true
  37294. },
  37295. ]
  37296. ))
  37297. characterMakers.push(() => makeCharacter(
  37298. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  37299. {
  37300. side: {
  37301. height: math.unit(9, "feet"),
  37302. name: "Side",
  37303. image: {
  37304. source: "./media/characters/rymel/side.svg",
  37305. extra: 792/469,
  37306. bottom: 121/913
  37307. }
  37308. },
  37309. maw: {
  37310. height: math.unit(2.4, "meters"),
  37311. name: "Maw",
  37312. image: {
  37313. source: "./media/characters/rymel/maw.svg"
  37314. }
  37315. },
  37316. },
  37317. [
  37318. {
  37319. name: "House Drake",
  37320. height: math.unit(2, "feet")
  37321. },
  37322. {
  37323. name: "Reduced",
  37324. height: math.unit(4.5, "feet")
  37325. },
  37326. {
  37327. name: "Normal",
  37328. height: math.unit(9, "feet"),
  37329. default: true
  37330. },
  37331. ]
  37332. ))
  37333. characterMakers.push(() => makeCharacter(
  37334. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  37335. {
  37336. front: {
  37337. height: math.unit(1.74, "meters"),
  37338. weight: math.unit(55, "kg"),
  37339. name: "Front",
  37340. image: {
  37341. source: "./media/characters/rubus/front.svg",
  37342. extra: 1894/1742,
  37343. bottom: 44/1938
  37344. }
  37345. },
  37346. },
  37347. [
  37348. {
  37349. name: "Normal",
  37350. height: math.unit(1.74, "meters"),
  37351. default: true
  37352. },
  37353. ]
  37354. ))
  37355. characterMakers.push(() => makeCharacter(
  37356. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  37357. {
  37358. front: {
  37359. height: math.unit(5 + 2/12, "feet"),
  37360. weight: math.unit(112, "lb"),
  37361. name: "Front",
  37362. image: {
  37363. source: "./media/characters/cassie-kingston/front.svg",
  37364. extra: 1438/1390,
  37365. bottom: 47/1485
  37366. }
  37367. },
  37368. },
  37369. [
  37370. {
  37371. name: "Normal",
  37372. height: math.unit(5 + 2/12, "feet"),
  37373. default: true
  37374. },
  37375. {
  37376. name: "Macro",
  37377. height: math.unit(128, "feet")
  37378. },
  37379. {
  37380. name: "Megamacro",
  37381. height: math.unit(2.56, "miles")
  37382. },
  37383. ]
  37384. ))
  37385. characterMakers.push(() => makeCharacter(
  37386. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  37387. {
  37388. front: {
  37389. height: math.unit(7, "feet"),
  37390. name: "Front",
  37391. image: {
  37392. source: "./media/characters/fox/front.svg",
  37393. extra: 1798/1703,
  37394. bottom: 55/1853
  37395. }
  37396. },
  37397. back: {
  37398. height: math.unit(7, "feet"),
  37399. name: "Back",
  37400. image: {
  37401. source: "./media/characters/fox/back.svg",
  37402. extra: 1748/1649,
  37403. bottom: 32/1780
  37404. }
  37405. },
  37406. head: {
  37407. height: math.unit(1.95, "feet"),
  37408. name: "Head",
  37409. image: {
  37410. source: "./media/characters/fox/head.svg"
  37411. }
  37412. },
  37413. dick: {
  37414. height: math.unit(1.33, "feet"),
  37415. name: "Dick",
  37416. image: {
  37417. source: "./media/characters/fox/dick.svg"
  37418. }
  37419. },
  37420. foot: {
  37421. height: math.unit(1, "feet"),
  37422. name: "Foot",
  37423. image: {
  37424. source: "./media/characters/fox/foot.svg"
  37425. }
  37426. },
  37427. paw: {
  37428. height: math.unit(0.92, "feet"),
  37429. name: "Paw",
  37430. image: {
  37431. source: "./media/characters/fox/paw.svg"
  37432. }
  37433. },
  37434. },
  37435. [
  37436. {
  37437. name: "Small",
  37438. height: math.unit(3, "inches")
  37439. },
  37440. {
  37441. name: "\"Realistic\"",
  37442. height: math.unit(7, "feet")
  37443. },
  37444. {
  37445. name: "Normal",
  37446. height: math.unit(150, "feet"),
  37447. default: true
  37448. },
  37449. {
  37450. name: "BIG",
  37451. height: math.unit(1200, "feet")
  37452. },
  37453. {
  37454. name: "👀",
  37455. height: math.unit(5, "miles")
  37456. },
  37457. {
  37458. name: "👀👀👀",
  37459. height: math.unit(64, "miles")
  37460. },
  37461. ]
  37462. ))
  37463. characterMakers.push(() => makeCharacter(
  37464. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  37465. {
  37466. front: {
  37467. height: math.unit(625, "feet"),
  37468. name: "Front",
  37469. image: {
  37470. source: "./media/characters/asonja-rossa/front.svg",
  37471. extra: 1833/1686,
  37472. bottom: 24/1857
  37473. }
  37474. },
  37475. back: {
  37476. height: math.unit(625, "feet"),
  37477. name: "Back",
  37478. image: {
  37479. source: "./media/characters/asonja-rossa/back.svg",
  37480. extra: 1852/1753,
  37481. bottom: 26/1878
  37482. }
  37483. },
  37484. },
  37485. [
  37486. {
  37487. name: "Macro",
  37488. height: math.unit(625, "feet"),
  37489. default: true
  37490. },
  37491. ]
  37492. ))
  37493. characterMakers.push(() => makeCharacter(
  37494. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  37495. {
  37496. side: {
  37497. height: math.unit(8, "feet"),
  37498. name: "Side",
  37499. image: {
  37500. source: "./media/characters/rezukii/side.svg",
  37501. extra: 979/542,
  37502. bottom: 87/1066
  37503. }
  37504. },
  37505. sitting: {
  37506. height: math.unit(14.6, "feet"),
  37507. name: "Sitting",
  37508. image: {
  37509. source: "./media/characters/rezukii/sitting.svg",
  37510. extra: 1023/813,
  37511. bottom: 45/1068
  37512. }
  37513. },
  37514. },
  37515. [
  37516. {
  37517. name: "Tiny",
  37518. height: math.unit(2, "feet")
  37519. },
  37520. {
  37521. name: "Smol",
  37522. height: math.unit(4, "feet")
  37523. },
  37524. {
  37525. name: "Normal",
  37526. height: math.unit(8, "feet"),
  37527. default: true
  37528. },
  37529. {
  37530. name: "Big",
  37531. height: math.unit(12, "feet")
  37532. },
  37533. {
  37534. name: "Macro",
  37535. height: math.unit(30, "feet")
  37536. },
  37537. ]
  37538. ))
  37539. characterMakers.push(() => makeCharacter(
  37540. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  37541. {
  37542. front: {
  37543. height: math.unit(14, "feet"),
  37544. weight: math.unit(9.5, "tonnes"),
  37545. name: "Front",
  37546. image: {
  37547. source: "./media/characters/dawnheart/front.svg",
  37548. extra: 2792/2675,
  37549. bottom: 64/2856
  37550. }
  37551. },
  37552. },
  37553. [
  37554. {
  37555. name: "Normal",
  37556. height: math.unit(14, "feet"),
  37557. default: true
  37558. },
  37559. ]
  37560. ))
  37561. characterMakers.push(() => makeCharacter(
  37562. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  37563. {
  37564. front: {
  37565. height: math.unit(1.7, "m"),
  37566. name: "Front",
  37567. image: {
  37568. source: "./media/characters/gladi/front.svg",
  37569. extra: 1460/1362,
  37570. bottom: 19/1479
  37571. }
  37572. },
  37573. back: {
  37574. height: math.unit(1.7, "m"),
  37575. name: "Back",
  37576. image: {
  37577. source: "./media/characters/gladi/back.svg",
  37578. extra: 1459/1357,
  37579. bottom: 12/1471
  37580. }
  37581. },
  37582. feral: {
  37583. height: math.unit(2.05, "m"),
  37584. name: "Feral",
  37585. image: {
  37586. source: "./media/characters/gladi/feral.svg",
  37587. extra: 821/557,
  37588. bottom: 91/912
  37589. }
  37590. },
  37591. },
  37592. [
  37593. {
  37594. name: "Shortest",
  37595. height: math.unit(70, "cm")
  37596. },
  37597. {
  37598. name: "Normal",
  37599. height: math.unit(1.7, "m")
  37600. },
  37601. {
  37602. name: "Macro",
  37603. height: math.unit(10, "m"),
  37604. default: true
  37605. },
  37606. {
  37607. name: "Tallest",
  37608. height: math.unit(200, "m")
  37609. },
  37610. ]
  37611. ))
  37612. characterMakers.push(() => makeCharacter(
  37613. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  37614. {
  37615. front: {
  37616. height: math.unit(5 + 7/12, "feet"),
  37617. weight: math.unit(2, "tons"),
  37618. name: "Front",
  37619. image: {
  37620. source: "./media/characters/erdno/front.svg",
  37621. extra: 1234/1129,
  37622. bottom: 35/1269
  37623. }
  37624. },
  37625. angled: {
  37626. height: math.unit(5 + 7/12, "feet"),
  37627. weight: math.unit(2, "tons"),
  37628. name: "Angled",
  37629. image: {
  37630. source: "./media/characters/erdno/angled.svg",
  37631. extra: 1185/1139,
  37632. bottom: 36/1221
  37633. }
  37634. },
  37635. side: {
  37636. height: math.unit(5 + 7/12, "feet"),
  37637. weight: math.unit(2, "tons"),
  37638. name: "Side",
  37639. image: {
  37640. source: "./media/characters/erdno/side.svg",
  37641. extra: 1191/1144,
  37642. bottom: 40/1231
  37643. }
  37644. },
  37645. back: {
  37646. height: math.unit(5 + 7/12, "feet"),
  37647. weight: math.unit(2, "tons"),
  37648. name: "Back",
  37649. image: {
  37650. source: "./media/characters/erdno/back.svg",
  37651. extra: 1202/1146,
  37652. bottom: 17/1219
  37653. }
  37654. },
  37655. frontNsfw: {
  37656. height: math.unit(5 + 7/12, "feet"),
  37657. weight: math.unit(2, "tons"),
  37658. name: "Front (NSFW)",
  37659. image: {
  37660. source: "./media/characters/erdno/front-nsfw.svg",
  37661. extra: 1234/1129,
  37662. bottom: 35/1269
  37663. }
  37664. },
  37665. angledNsfw: {
  37666. height: math.unit(5 + 7/12, "feet"),
  37667. weight: math.unit(2, "tons"),
  37668. name: "Angled (NSFW)",
  37669. image: {
  37670. source: "./media/characters/erdno/angled-nsfw.svg",
  37671. extra: 1185/1139,
  37672. bottom: 36/1221
  37673. }
  37674. },
  37675. sideNsfw: {
  37676. height: math.unit(5 + 7/12, "feet"),
  37677. weight: math.unit(2, "tons"),
  37678. name: "Side (NSFW)",
  37679. image: {
  37680. source: "./media/characters/erdno/side-nsfw.svg",
  37681. extra: 1191/1144,
  37682. bottom: 40/1231
  37683. }
  37684. },
  37685. backNsfw: {
  37686. height: math.unit(5 + 7/12, "feet"),
  37687. weight: math.unit(2, "tons"),
  37688. name: "Back (NSFW)",
  37689. image: {
  37690. source: "./media/characters/erdno/back-nsfw.svg",
  37691. extra: 1202/1146,
  37692. bottom: 17/1219
  37693. }
  37694. },
  37695. frontHyper: {
  37696. height: math.unit(5 + 7/12, "feet"),
  37697. weight: math.unit(2, "tons"),
  37698. name: "Front (Hyper)",
  37699. image: {
  37700. source: "./media/characters/erdno/front-hyper.svg",
  37701. extra: 1298/1136,
  37702. bottom: 35/1333
  37703. }
  37704. },
  37705. },
  37706. [
  37707. {
  37708. name: "Normal",
  37709. height: math.unit(5 + 7/12, "feet"),
  37710. default: true
  37711. },
  37712. {
  37713. name: "Big",
  37714. height: math.unit(5.7, "meters")
  37715. },
  37716. {
  37717. name: "Macro",
  37718. height: math.unit(5.7, "kilometers")
  37719. },
  37720. {
  37721. name: "Megamacro",
  37722. height: math.unit(5.7, "earths")
  37723. },
  37724. ]
  37725. ))
  37726. characterMakers.push(() => makeCharacter(
  37727. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37728. {
  37729. front: {
  37730. height: math.unit(5 + 10/12, "feet"),
  37731. weight: math.unit(150, "lb"),
  37732. name: "Front",
  37733. image: {
  37734. source: "./media/characters/jamie/front.svg",
  37735. extra: 1908/1768,
  37736. bottom: 19/1927
  37737. }
  37738. },
  37739. },
  37740. [
  37741. {
  37742. name: "Minimum",
  37743. height: math.unit(2, "cm")
  37744. },
  37745. {
  37746. name: "Micro",
  37747. height: math.unit(3, "inches")
  37748. },
  37749. {
  37750. name: "Normal",
  37751. height: math.unit(5 + 10/12, "feet"),
  37752. default: true
  37753. },
  37754. {
  37755. name: "Macro",
  37756. height: math.unit(150, "feet")
  37757. },
  37758. {
  37759. name: "Megamacro",
  37760. height: math.unit(10000, "m")
  37761. },
  37762. ]
  37763. ))
  37764. characterMakers.push(() => makeCharacter(
  37765. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  37766. {
  37767. front: {
  37768. height: math.unit(2, "meters"),
  37769. weight: math.unit(100, "kg"),
  37770. name: "Front",
  37771. image: {
  37772. source: "./media/characters/shiron/front.svg",
  37773. extra: 2103/1985,
  37774. bottom: 98/2201
  37775. }
  37776. },
  37777. back: {
  37778. height: math.unit(2, "meters"),
  37779. weight: math.unit(100, "kg"),
  37780. name: "Back",
  37781. image: {
  37782. source: "./media/characters/shiron/back.svg",
  37783. extra: 2110/2015,
  37784. bottom: 89/2199
  37785. }
  37786. },
  37787. hand: {
  37788. height: math.unit(0.96, "feet"),
  37789. name: "Hand",
  37790. image: {
  37791. source: "./media/characters/shiron/hand.svg"
  37792. }
  37793. },
  37794. foot: {
  37795. height: math.unit(1.464, "feet"),
  37796. name: "Foot",
  37797. image: {
  37798. source: "./media/characters/shiron/foot.svg"
  37799. }
  37800. },
  37801. },
  37802. [
  37803. {
  37804. name: "Normal",
  37805. height: math.unit(2, "meters")
  37806. },
  37807. {
  37808. name: "Macro",
  37809. height: math.unit(500, "meters"),
  37810. default: true
  37811. },
  37812. {
  37813. name: "Megamacro",
  37814. height: math.unit(20, "km")
  37815. },
  37816. ]
  37817. ))
  37818. characterMakers.push(() => makeCharacter(
  37819. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  37820. {
  37821. front: {
  37822. height: math.unit(6, "feet"),
  37823. name: "Front",
  37824. image: {
  37825. source: "./media/characters/sam/front.svg",
  37826. extra: 849/826,
  37827. bottom: 19/868
  37828. }
  37829. },
  37830. },
  37831. [
  37832. {
  37833. name: "Normal",
  37834. height: math.unit(6, "feet"),
  37835. default: true
  37836. },
  37837. ]
  37838. ))
  37839. characterMakers.push(() => makeCharacter(
  37840. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  37841. {
  37842. front: {
  37843. height: math.unit(8 + 4/12, "feet"),
  37844. weight: math.unit(122, "kg"),
  37845. name: "Front",
  37846. image: {
  37847. source: "./media/characters/namori-kurogawa/front.svg",
  37848. extra: 1894/1576,
  37849. bottom: 34/1928
  37850. }
  37851. },
  37852. },
  37853. [
  37854. {
  37855. name: "Normal",
  37856. height: math.unit(8 + 4/12, "feet"),
  37857. default: true
  37858. },
  37859. ]
  37860. ))
  37861. characterMakers.push(() => makeCharacter(
  37862. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  37863. {
  37864. front: {
  37865. height: math.unit(9, "feet"),
  37866. weight: math.unit(621, "lb"),
  37867. name: "Front",
  37868. image: {
  37869. source: "./media/characters/unmru/front.svg",
  37870. extra: 1853/1747,
  37871. bottom: 73/1926
  37872. }
  37873. },
  37874. side: {
  37875. height: math.unit(9, "feet"),
  37876. weight: math.unit(621, "lb"),
  37877. name: "Side",
  37878. image: {
  37879. source: "./media/characters/unmru/side.svg",
  37880. extra: 1781/1671,
  37881. bottom: 127/1908
  37882. }
  37883. },
  37884. back: {
  37885. height: math.unit(9, "feet"),
  37886. weight: math.unit(621, "lb"),
  37887. name: "Back",
  37888. image: {
  37889. source: "./media/characters/unmru/back.svg",
  37890. extra: 1894/1765,
  37891. bottom: 75/1969
  37892. }
  37893. },
  37894. dick: {
  37895. height: math.unit(3, "feet"),
  37896. weight: math.unit(35, "lb"),
  37897. name: "Dick",
  37898. image: {
  37899. source: "./media/characters/unmru/dick.svg"
  37900. }
  37901. },
  37902. },
  37903. [
  37904. {
  37905. name: "Normal",
  37906. height: math.unit(9, "feet")
  37907. },
  37908. {
  37909. name: "Natural",
  37910. height: math.unit(27, "feet"),
  37911. default: true
  37912. },
  37913. {
  37914. name: "Giant",
  37915. height: math.unit(90, "feet")
  37916. },
  37917. {
  37918. name: "Kaiju",
  37919. height: math.unit(270, "feet")
  37920. },
  37921. {
  37922. name: "Macro",
  37923. height: math.unit(900, "feet")
  37924. },
  37925. {
  37926. name: "Macro+",
  37927. height: math.unit(2700, "feet")
  37928. },
  37929. {
  37930. name: "Megamacro",
  37931. height: math.unit(9000, "feet")
  37932. },
  37933. {
  37934. name: "City-Crushing",
  37935. height: math.unit(27000, "feet")
  37936. },
  37937. {
  37938. name: "Mountain-Mashing",
  37939. height: math.unit(90000, "feet")
  37940. },
  37941. {
  37942. name: "Earth-Eclipsing",
  37943. height: math.unit(2.7e8, "feet")
  37944. },
  37945. {
  37946. name: "Sol-Swallowing",
  37947. height: math.unit(9e10, "feet")
  37948. },
  37949. {
  37950. name: "Majoris-Munching",
  37951. height: math.unit(2.7e13, "feet")
  37952. },
  37953. ]
  37954. ))
  37955. characterMakers.push(() => makeCharacter(
  37956. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37957. {
  37958. front: {
  37959. height: math.unit(1, "inch"),
  37960. name: "Front",
  37961. image: {
  37962. source: "./media/characters/squeaks-mouse/front.svg",
  37963. extra: 352/308,
  37964. bottom: 25/377
  37965. }
  37966. },
  37967. },
  37968. [
  37969. {
  37970. name: "Micro",
  37971. height: math.unit(1, "inch"),
  37972. default: true
  37973. },
  37974. ]
  37975. ))
  37976. characterMakers.push(() => makeCharacter(
  37977. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37978. {
  37979. side: {
  37980. height: math.unit(35, "feet"),
  37981. name: "Side",
  37982. image: {
  37983. source: "./media/characters/sayko/side.svg",
  37984. extra: 1697/1021,
  37985. bottom: 82/1779
  37986. }
  37987. },
  37988. head: {
  37989. height: math.unit(16, "feet"),
  37990. name: "Head",
  37991. image: {
  37992. source: "./media/characters/sayko/head.svg"
  37993. }
  37994. },
  37995. forepaw: {
  37996. height: math.unit(7.85, "feet"),
  37997. name: "Forepaw",
  37998. image: {
  37999. source: "./media/characters/sayko/forepaw.svg"
  38000. }
  38001. },
  38002. hindpaw: {
  38003. height: math.unit(8.8, "feet"),
  38004. name: "Hindpaw",
  38005. image: {
  38006. source: "./media/characters/sayko/hindpaw.svg"
  38007. }
  38008. },
  38009. },
  38010. [
  38011. {
  38012. name: "Normal",
  38013. height: math.unit(35, "feet"),
  38014. default: true
  38015. },
  38016. {
  38017. name: "Colossus",
  38018. height: math.unit(100, "meters")
  38019. },
  38020. {
  38021. name: "\"Small\" Deity",
  38022. height: math.unit(1, "km")
  38023. },
  38024. {
  38025. name: "\"Large\" Deity",
  38026. height: math.unit(15, "km")
  38027. },
  38028. ]
  38029. ))
  38030. characterMakers.push(() => makeCharacter(
  38031. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  38032. {
  38033. front: {
  38034. height: math.unit(6, "feet"),
  38035. weight: math.unit(250, "lb"),
  38036. name: "Front",
  38037. image: {
  38038. source: "./media/characters/mukiro/front.svg",
  38039. extra: 1368/1310,
  38040. bottom: 34/1402
  38041. }
  38042. },
  38043. },
  38044. [
  38045. {
  38046. name: "Normal",
  38047. height: math.unit(6, "feet"),
  38048. default: true
  38049. },
  38050. ]
  38051. ))
  38052. characterMakers.push(() => makeCharacter(
  38053. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  38054. {
  38055. front: {
  38056. height: math.unit(12 + 4/12, "feet"),
  38057. name: "Front",
  38058. image: {
  38059. source: "./media/characters/zeph-the-tiger-god/front.svg",
  38060. extra: 1346/1311,
  38061. bottom: 65/1411
  38062. }
  38063. },
  38064. },
  38065. [
  38066. {
  38067. name: "Base",
  38068. height: math.unit(12 + 4/12, "feet"),
  38069. default: true
  38070. },
  38071. {
  38072. name: "Macro",
  38073. height: math.unit(150, "feet")
  38074. },
  38075. {
  38076. name: "Mega",
  38077. height: math.unit(2, "miles")
  38078. },
  38079. {
  38080. name: "Demi God",
  38081. height: math.unit(4, "AU")
  38082. },
  38083. {
  38084. name: "God Size",
  38085. height: math.unit(1, "universe")
  38086. },
  38087. ]
  38088. ))
  38089. characterMakers.push(() => makeCharacter(
  38090. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  38091. {
  38092. front: {
  38093. height: math.unit(3 + 3/12, "feet"),
  38094. weight: math.unit(88, "lb"),
  38095. name: "Front",
  38096. image: {
  38097. source: "./media/characters/trey/front.svg",
  38098. extra: 1815/1509,
  38099. bottom: 60/1875
  38100. }
  38101. },
  38102. },
  38103. [
  38104. {
  38105. name: "Normal",
  38106. height: math.unit(3 + 3/12, "feet"),
  38107. default: true
  38108. },
  38109. ]
  38110. ))
  38111. characterMakers.push(() => makeCharacter(
  38112. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  38113. {
  38114. front: {
  38115. height: math.unit(4, "meters"),
  38116. name: "Front",
  38117. image: {
  38118. source: "./media/characters/adelonda/front.svg",
  38119. extra: 1077/982,
  38120. bottom: 39/1116
  38121. }
  38122. },
  38123. back: {
  38124. height: math.unit(4, "meters"),
  38125. name: "Back",
  38126. image: {
  38127. source: "./media/characters/adelonda/back.svg",
  38128. extra: 1105/1003,
  38129. bottom: 25/1130
  38130. }
  38131. },
  38132. feral: {
  38133. height: math.unit(40/1.5, "meters"),
  38134. name: "Feral",
  38135. image: {
  38136. source: "./media/characters/adelonda/feral.svg",
  38137. extra: 597/271,
  38138. bottom: 387/984
  38139. }
  38140. },
  38141. },
  38142. [
  38143. {
  38144. name: "Normal",
  38145. height: math.unit(4, "meters"),
  38146. default: true
  38147. },
  38148. ]
  38149. ))
  38150. characterMakers.push(() => makeCharacter(
  38151. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  38152. {
  38153. front: {
  38154. height: math.unit(8 + 4/12, "feet"),
  38155. weight: math.unit(670, "lb"),
  38156. name: "Front",
  38157. image: {
  38158. source: "./media/characters/acadiel/front.svg",
  38159. extra: 1901/1595,
  38160. bottom: 142/2043
  38161. }
  38162. },
  38163. },
  38164. [
  38165. {
  38166. name: "Normal",
  38167. height: math.unit(8 + 4/12, "feet"),
  38168. default: true
  38169. },
  38170. {
  38171. name: "Macro",
  38172. height: math.unit(200, "feet")
  38173. },
  38174. ]
  38175. ))
  38176. characterMakers.push(() => makeCharacter(
  38177. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  38178. {
  38179. front: {
  38180. height: math.unit(6 + 2/12, "feet"),
  38181. weight: math.unit(185, "lb"),
  38182. name: "Front",
  38183. image: {
  38184. source: "./media/characters/kayne-ein/front.svg",
  38185. extra: 1780/1560,
  38186. bottom: 81/1861
  38187. }
  38188. },
  38189. },
  38190. [
  38191. {
  38192. name: "Normal",
  38193. height: math.unit(6 + 2/12, "feet"),
  38194. default: true
  38195. },
  38196. {
  38197. name: "Transformation Stage",
  38198. height: math.unit(15, "feet")
  38199. },
  38200. {
  38201. name: "Macro",
  38202. height: math.unit(150, "feet")
  38203. },
  38204. {
  38205. name: "Earth's Shadow",
  38206. height: math.unit(6200, "miles")
  38207. },
  38208. {
  38209. name: "Universal Demon",
  38210. height: math.unit(28e9, "parsecs")
  38211. },
  38212. {
  38213. name: "Multiverse God",
  38214. height: math.unit(3, "multiverses")
  38215. },
  38216. ]
  38217. ))
  38218. characterMakers.push(() => makeCharacter(
  38219. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  38220. {
  38221. front: {
  38222. height: math.unit(5 + 5/12, "feet"),
  38223. name: "Front",
  38224. image: {
  38225. source: "./media/characters/fawn/front.svg",
  38226. extra: 1873/1731,
  38227. bottom: 95/1968
  38228. }
  38229. },
  38230. back: {
  38231. height: math.unit(5 + 5/12, "feet"),
  38232. name: "Back",
  38233. image: {
  38234. source: "./media/characters/fawn/back.svg",
  38235. extra: 1813/1700,
  38236. bottom: 14/1827
  38237. }
  38238. },
  38239. hoof: {
  38240. height: math.unit(1.45, "feet"),
  38241. name: "Hoof",
  38242. image: {
  38243. source: "./media/characters/fawn/hoof.svg"
  38244. }
  38245. },
  38246. },
  38247. [
  38248. {
  38249. name: "Normal",
  38250. height: math.unit(5 + 5/12, "feet"),
  38251. default: true
  38252. },
  38253. ]
  38254. ))
  38255. characterMakers.push(() => makeCharacter(
  38256. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  38257. {
  38258. front: {
  38259. height: math.unit(2 + 5/12, "feet"),
  38260. name: "Front",
  38261. image: {
  38262. source: "./media/characters/orion/front.svg",
  38263. extra: 1366/1304,
  38264. bottom: 43/1409
  38265. }
  38266. },
  38267. paw: {
  38268. height: math.unit(0.52, "feet"),
  38269. name: "Paw",
  38270. image: {
  38271. source: "./media/characters/orion/paw.svg"
  38272. }
  38273. },
  38274. },
  38275. [
  38276. {
  38277. name: "Normal",
  38278. height: math.unit(2 + 5/12, "feet"),
  38279. default: true
  38280. },
  38281. ]
  38282. ))
  38283. characterMakers.push(() => makeCharacter(
  38284. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  38285. {
  38286. front: {
  38287. height: math.unit(5 + 10/12, "feet"),
  38288. name: "Front",
  38289. image: {
  38290. source: "./media/characters/vera/front.svg",
  38291. extra: 1680/1575,
  38292. bottom: 49/1729
  38293. }
  38294. },
  38295. back: {
  38296. height: math.unit(5 + 10/12, "feet"),
  38297. name: "Back",
  38298. image: {
  38299. source: "./media/characters/vera/back.svg",
  38300. extra: 1700/1588,
  38301. bottom: 18/1718
  38302. }
  38303. },
  38304. arcanine: {
  38305. height: math.unit(6 + 8/12, "feet"),
  38306. name: "Arcanine",
  38307. image: {
  38308. source: "./media/characters/vera/arcanine.svg",
  38309. extra: 1590/1511,
  38310. bottom: 71/1661
  38311. }
  38312. },
  38313. maw: {
  38314. height: math.unit(0.82, "feet"),
  38315. name: "Maw",
  38316. image: {
  38317. source: "./media/characters/vera/maw.svg"
  38318. }
  38319. },
  38320. mawArcanine: {
  38321. height: math.unit(0.97, "feet"),
  38322. name: "Maw (Arcanine)",
  38323. image: {
  38324. source: "./media/characters/vera/maw-arcanine.svg"
  38325. }
  38326. },
  38327. paw: {
  38328. height: math.unit(0.75, "feet"),
  38329. name: "Paw",
  38330. image: {
  38331. source: "./media/characters/vera/paw.svg"
  38332. }
  38333. },
  38334. pawprint: {
  38335. height: math.unit(0.52, "feet"),
  38336. name: "Pawprint",
  38337. image: {
  38338. source: "./media/characters/vera/pawprint.svg"
  38339. }
  38340. },
  38341. },
  38342. [
  38343. {
  38344. name: "Normal",
  38345. height: math.unit(5 + 10/12, "feet"),
  38346. default: true
  38347. },
  38348. {
  38349. name: "Macro",
  38350. height: math.unit(75, "feet")
  38351. },
  38352. ]
  38353. ))
  38354. characterMakers.push(() => makeCharacter(
  38355. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  38356. {
  38357. front: {
  38358. height: math.unit(4, "feet"),
  38359. weight: math.unit(40, "lb"),
  38360. name: "Front",
  38361. image: {
  38362. source: "./media/characters/orvan-rabbit/front.svg",
  38363. extra: 1896/1642,
  38364. bottom: 29/1925
  38365. }
  38366. },
  38367. },
  38368. [
  38369. {
  38370. name: "Normal",
  38371. height: math.unit(4, "feet"),
  38372. default: true
  38373. },
  38374. ]
  38375. ))
  38376. characterMakers.push(() => makeCharacter(
  38377. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  38378. {
  38379. front: {
  38380. height: math.unit(6, "feet"),
  38381. weight: math.unit(168, "lb"),
  38382. name: "Front",
  38383. image: {
  38384. source: "./media/characters/lisa/front.svg",
  38385. extra: 2065/1867,
  38386. bottom: 46/2111
  38387. }
  38388. },
  38389. back: {
  38390. height: math.unit(6, "feet"),
  38391. weight: math.unit(168, "lb"),
  38392. name: "Back",
  38393. image: {
  38394. source: "./media/characters/lisa/back.svg",
  38395. extra: 1982/1838,
  38396. bottom: 29/2011
  38397. }
  38398. },
  38399. maw: {
  38400. height: math.unit(0.81, "feet"),
  38401. name: "Maw",
  38402. image: {
  38403. source: "./media/characters/lisa/maw.svg"
  38404. }
  38405. },
  38406. paw: {
  38407. height: math.unit(0.9, "feet"),
  38408. name: "Paw",
  38409. image: {
  38410. source: "./media/characters/lisa/paw.svg"
  38411. }
  38412. },
  38413. caribousune: {
  38414. height: math.unit(7 + 2/12, "feet"),
  38415. weight: math.unit(268, "lb"),
  38416. name: "Caribousune",
  38417. image: {
  38418. source: "./media/characters/lisa/caribousune.svg",
  38419. extra: 1843/1633,
  38420. bottom: 29/1872
  38421. }
  38422. },
  38423. frontCaribousune: {
  38424. height: math.unit(7 + 2/12, "feet"),
  38425. weight: math.unit(268, "lb"),
  38426. name: "Front (Caribousune)",
  38427. image: {
  38428. source: "./media/characters/lisa/front-caribousune.svg",
  38429. extra: 1818/1638,
  38430. bottom: 52/1870
  38431. }
  38432. },
  38433. sideCaribousune: {
  38434. height: math.unit(7 + 2/12, "feet"),
  38435. weight: math.unit(268, "lb"),
  38436. name: "Side (Caribousune)",
  38437. image: {
  38438. source: "./media/characters/lisa/side-caribousune.svg",
  38439. extra: 1851/1635,
  38440. bottom: 16/1867
  38441. }
  38442. },
  38443. backCaribousune: {
  38444. height: math.unit(7 + 2/12, "feet"),
  38445. weight: math.unit(268, "lb"),
  38446. name: "Back (Caribousune)",
  38447. image: {
  38448. source: "./media/characters/lisa/back-caribousune.svg",
  38449. extra: 1801/1604,
  38450. bottom: 44/1845
  38451. }
  38452. },
  38453. caribou: {
  38454. height: math.unit(7 + 2/12, "feet"),
  38455. weight: math.unit(268, "lb"),
  38456. name: "Caribou",
  38457. image: {
  38458. source: "./media/characters/lisa/caribou.svg",
  38459. extra: 1843/1633,
  38460. bottom: 29/1872
  38461. }
  38462. },
  38463. frontCaribou: {
  38464. height: math.unit(7 + 2/12, "feet"),
  38465. weight: math.unit(268, "lb"),
  38466. name: "Front (Caribou)",
  38467. image: {
  38468. source: "./media/characters/lisa/front-caribou.svg",
  38469. extra: 1818/1638,
  38470. bottom: 52/1870
  38471. }
  38472. },
  38473. sideCaribou: {
  38474. height: math.unit(7 + 2/12, "feet"),
  38475. weight: math.unit(268, "lb"),
  38476. name: "Side (Caribou)",
  38477. image: {
  38478. source: "./media/characters/lisa/side-caribou.svg",
  38479. extra: 1851/1635,
  38480. bottom: 16/1867
  38481. }
  38482. },
  38483. backCaribou: {
  38484. height: math.unit(7 + 2/12, "feet"),
  38485. weight: math.unit(268, "lb"),
  38486. name: "Back (Caribou)",
  38487. image: {
  38488. source: "./media/characters/lisa/back-caribou.svg",
  38489. extra: 1801/1604,
  38490. bottom: 44/1845
  38491. }
  38492. },
  38493. mawCaribou: {
  38494. height: math.unit(1.45, "feet"),
  38495. name: "Maw (Caribou)",
  38496. image: {
  38497. source: "./media/characters/lisa/maw-caribou.svg"
  38498. }
  38499. },
  38500. mawCaribousune: {
  38501. height: math.unit(1.45, "feet"),
  38502. name: "Maw (Caribousune)",
  38503. image: {
  38504. source: "./media/characters/lisa/maw-caribousune.svg"
  38505. }
  38506. },
  38507. pawCaribousune: {
  38508. height: math.unit(1.61, "feet"),
  38509. name: "Paw (Caribou)",
  38510. image: {
  38511. source: "./media/characters/lisa/paw-caribousune.svg"
  38512. }
  38513. },
  38514. },
  38515. [
  38516. {
  38517. name: "Normal",
  38518. height: math.unit(6, "feet")
  38519. },
  38520. {
  38521. name: "God Size",
  38522. height: math.unit(72, "feet"),
  38523. default: true
  38524. },
  38525. {
  38526. name: "Towering",
  38527. height: math.unit(288, "feet")
  38528. },
  38529. {
  38530. name: "City Size",
  38531. height: math.unit(48384, "feet")
  38532. },
  38533. {
  38534. name: "Continental",
  38535. height: math.unit(4200, "miles")
  38536. },
  38537. {
  38538. name: "Planet Eater",
  38539. height: math.unit(42, "earths")
  38540. },
  38541. {
  38542. name: "Star Swallower",
  38543. height: math.unit(42, "solarradii")
  38544. },
  38545. {
  38546. name: "System Swallower",
  38547. height: math.unit(84000, "AU")
  38548. },
  38549. {
  38550. name: "Galaxy Gobbler",
  38551. height: math.unit(42, "galaxies")
  38552. },
  38553. {
  38554. name: "Universe Devourer",
  38555. height: math.unit(42, "universes")
  38556. },
  38557. {
  38558. name: "Multiverse Muncher",
  38559. height: math.unit(42, "multiverses")
  38560. },
  38561. ]
  38562. ))
  38563. characterMakers.push(() => makeCharacter(
  38564. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  38565. {
  38566. front: {
  38567. height: math.unit(36, "feet"),
  38568. name: "Front",
  38569. image: {
  38570. source: "./media/characters/shadow-rat/front.svg",
  38571. extra: 1845/1758,
  38572. bottom: 83/1928
  38573. }
  38574. },
  38575. },
  38576. [
  38577. {
  38578. name: "Macro",
  38579. height: math.unit(36, "feet"),
  38580. default: true
  38581. },
  38582. ]
  38583. ))
  38584. characterMakers.push(() => makeCharacter(
  38585. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  38586. {
  38587. side: {
  38588. height: math.unit(8, "feet"),
  38589. weight: math.unit(2630, "lb"),
  38590. name: "Side",
  38591. image: {
  38592. source: "./media/characters/torallia/side.svg",
  38593. extra: 2164/2021,
  38594. bottom: 371/2535
  38595. }
  38596. },
  38597. },
  38598. [
  38599. {
  38600. name: "Mortal Interaction",
  38601. height: math.unit(8, "feet")
  38602. },
  38603. {
  38604. name: "Natural",
  38605. height: math.unit(24, "feet"),
  38606. default: true
  38607. },
  38608. {
  38609. name: "Giant",
  38610. height: math.unit(80, "feet")
  38611. },
  38612. {
  38613. name: "Kaiju",
  38614. height: math.unit(240, "feet")
  38615. },
  38616. {
  38617. name: "Macro",
  38618. height: math.unit(800, "feet")
  38619. },
  38620. {
  38621. name: "Macro+",
  38622. height: math.unit(2400, "feet")
  38623. },
  38624. {
  38625. name: "Macro++",
  38626. height: math.unit(8000, "feet")
  38627. },
  38628. {
  38629. name: "City-Crushing",
  38630. height: math.unit(24000, "feet")
  38631. },
  38632. {
  38633. name: "Mountain-Mashing",
  38634. height: math.unit(80000, "feet")
  38635. },
  38636. {
  38637. name: "District Demolisher",
  38638. height: math.unit(240000, "feet")
  38639. },
  38640. {
  38641. name: "Tri-County Terror",
  38642. height: math.unit(800000, "feet")
  38643. },
  38644. {
  38645. name: "State Smasher",
  38646. height: math.unit(2.4e6, "feet")
  38647. },
  38648. {
  38649. name: "Nation Nemesis",
  38650. height: math.unit(8e6, "feet")
  38651. },
  38652. {
  38653. name: "Continent Cracker",
  38654. height: math.unit(2.4e7, "feet")
  38655. },
  38656. {
  38657. name: "Planet-Pillaging",
  38658. height: math.unit(8e7, "feet")
  38659. },
  38660. {
  38661. name: "Earth-Eclipsing",
  38662. height: math.unit(2.4e8, "feet")
  38663. },
  38664. {
  38665. name: "Jovian-Jostling",
  38666. height: math.unit(8e8, "feet")
  38667. },
  38668. {
  38669. name: "Gas Giant Gulper",
  38670. height: math.unit(2.4e9, "feet")
  38671. },
  38672. {
  38673. name: "Astral Annihilator",
  38674. height: math.unit(8e9, "feet")
  38675. },
  38676. {
  38677. name: "Celestial Conqueror",
  38678. height: math.unit(2.4e10, "feet")
  38679. },
  38680. {
  38681. name: "Sol-Swallowing",
  38682. height: math.unit(8e10, "feet")
  38683. },
  38684. {
  38685. name: "Hunter of the Heavens",
  38686. height: math.unit(2.4e13, "feet")
  38687. },
  38688. ]
  38689. ))
  38690. characterMakers.push(() => makeCharacter(
  38691. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38692. {
  38693. front: {
  38694. height: math.unit(6 + 8/12, "feet"),
  38695. name: "Front",
  38696. image: {
  38697. source: "./media/characters/rebecca-pawlson/front.svg",
  38698. extra: 1737/1596,
  38699. bottom: 107/1844
  38700. }
  38701. },
  38702. back: {
  38703. height: math.unit(6 + 8/12, "feet"),
  38704. name: "Back",
  38705. image: {
  38706. source: "./media/characters/rebecca-pawlson/back.svg",
  38707. extra: 1702/1523,
  38708. bottom: 86/1788
  38709. }
  38710. },
  38711. },
  38712. [
  38713. {
  38714. name: "Normal",
  38715. height: math.unit(6 + 8/12, "feet")
  38716. },
  38717. {
  38718. name: "Mini Macro",
  38719. height: math.unit(10, "feet"),
  38720. default: true
  38721. },
  38722. {
  38723. name: "Macro",
  38724. height: math.unit(100, "feet")
  38725. },
  38726. {
  38727. name: "Mega Macro",
  38728. height: math.unit(2500, "feet")
  38729. },
  38730. {
  38731. name: "Giga Macro",
  38732. height: math.unit(50, "miles")
  38733. },
  38734. ]
  38735. ))
  38736. characterMakers.push(() => makeCharacter(
  38737. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38738. {
  38739. front: {
  38740. height: math.unit(7 + 6/12, "feet"),
  38741. weight: math.unit(600, "lb"),
  38742. name: "Front",
  38743. image: {
  38744. source: "./media/characters/moxie-nova/front.svg",
  38745. extra: 1734/1652,
  38746. bottom: 41/1775
  38747. }
  38748. },
  38749. },
  38750. [
  38751. {
  38752. name: "Normal",
  38753. height: math.unit(7 + 6/12, "feet"),
  38754. default: true
  38755. },
  38756. ]
  38757. ))
  38758. characterMakers.push(() => makeCharacter(
  38759. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  38760. {
  38761. goat: {
  38762. height: math.unit(4, "feet"),
  38763. weight: math.unit(180, "lb"),
  38764. name: "Goat",
  38765. image: {
  38766. source: "./media/characters/tiffany/goat.svg",
  38767. extra: 1845/1595,
  38768. bottom: 106/1951
  38769. }
  38770. },
  38771. front: {
  38772. height: math.unit(5, "feet"),
  38773. weight: math.unit(150, "lb"),
  38774. name: "Foxcoon",
  38775. image: {
  38776. source: "./media/characters/tiffany/foxcoon.svg",
  38777. extra: 1941/1845,
  38778. bottom: 58/1999
  38779. }
  38780. },
  38781. },
  38782. [
  38783. {
  38784. name: "Normal",
  38785. height: math.unit(5, "feet"),
  38786. default: true
  38787. },
  38788. ]
  38789. ))
  38790. characterMakers.push(() => makeCharacter(
  38791. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  38792. {
  38793. front: {
  38794. height: math.unit(8, "feet"),
  38795. weight: math.unit(300, "lb"),
  38796. name: "Front",
  38797. image: {
  38798. source: "./media/characters/raxinath/front.svg",
  38799. extra: 1407/1309,
  38800. bottom: 39/1446
  38801. }
  38802. },
  38803. back: {
  38804. height: math.unit(8, "feet"),
  38805. weight: math.unit(300, "lb"),
  38806. name: "Back",
  38807. image: {
  38808. source: "./media/characters/raxinath/back.svg",
  38809. extra: 1405/1315,
  38810. bottom: 9/1414
  38811. }
  38812. },
  38813. },
  38814. [
  38815. {
  38816. name: "Speck",
  38817. height: math.unit(0.5, "nm")
  38818. },
  38819. {
  38820. name: "Micro",
  38821. height: math.unit(3, "inches")
  38822. },
  38823. {
  38824. name: "Kobold",
  38825. height: math.unit(3, "feet")
  38826. },
  38827. {
  38828. name: "Normal",
  38829. height: math.unit(8, "feet"),
  38830. default: true
  38831. },
  38832. {
  38833. name: "Giant",
  38834. height: math.unit(50, "feet")
  38835. },
  38836. {
  38837. name: "Macro",
  38838. height: math.unit(1000, "feet")
  38839. },
  38840. {
  38841. name: "Megamacro",
  38842. height: math.unit(1, "mile")
  38843. },
  38844. ]
  38845. ))
  38846. characterMakers.push(() => makeCharacter(
  38847. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  38848. {
  38849. front: {
  38850. height: math.unit(10, "feet"),
  38851. weight: math.unit(1442, "lb"),
  38852. name: "Front",
  38853. image: {
  38854. source: "./media/characters/mal-dragon/front.svg",
  38855. extra: 1515/1444,
  38856. bottom: 113/1628
  38857. }
  38858. },
  38859. back: {
  38860. height: math.unit(10, "feet"),
  38861. weight: math.unit(1442, "lb"),
  38862. name: "Back",
  38863. image: {
  38864. source: "./media/characters/mal-dragon/back.svg",
  38865. extra: 1527/1434,
  38866. bottom: 25/1552
  38867. }
  38868. },
  38869. },
  38870. [
  38871. {
  38872. name: "Mortal Interaction",
  38873. height: math.unit(10, "feet"),
  38874. default: true
  38875. },
  38876. {
  38877. name: "Large",
  38878. height: math.unit(30, "feet")
  38879. },
  38880. {
  38881. name: "Kaiju",
  38882. height: math.unit(300, "feet")
  38883. },
  38884. {
  38885. name: "Megamacro",
  38886. height: math.unit(10000, "feet")
  38887. },
  38888. {
  38889. name: "Continent Cracker",
  38890. height: math.unit(30000000, "feet")
  38891. },
  38892. {
  38893. name: "Sol-Swallowing",
  38894. height: math.unit(1e11, "feet")
  38895. },
  38896. {
  38897. name: "Light Universal",
  38898. height: math.unit(5, "universes")
  38899. },
  38900. {
  38901. name: "Universe Atoms",
  38902. height: math.unit(1.829e9, "universes")
  38903. },
  38904. {
  38905. name: "Light Multiversal",
  38906. height: math.unit(5, "multiverses")
  38907. },
  38908. {
  38909. name: "Multiverse Atoms",
  38910. height: math.unit(1.829e9, "multiverses")
  38911. },
  38912. {
  38913. name: "Fabric of Time",
  38914. height: math.unit(1e262, "multiverses")
  38915. },
  38916. ]
  38917. ))
  38918. characterMakers.push(() => makeCharacter(
  38919. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38920. {
  38921. front: {
  38922. height: math.unit(9, "feet"),
  38923. weight: math.unit(1050, "lb"),
  38924. name: "Front",
  38925. image: {
  38926. source: "./media/characters/tabitha/front.svg",
  38927. extra: 2083/1994,
  38928. bottom: 68/2151
  38929. }
  38930. },
  38931. },
  38932. [
  38933. {
  38934. name: "Baseline",
  38935. height: math.unit(9, "feet"),
  38936. default: true
  38937. },
  38938. {
  38939. name: "Giant",
  38940. height: math.unit(90, "feet")
  38941. },
  38942. {
  38943. name: "Macro",
  38944. height: math.unit(900, "feet")
  38945. },
  38946. {
  38947. name: "Megamacro",
  38948. height: math.unit(9000, "feet")
  38949. },
  38950. {
  38951. name: "City-Crushing",
  38952. height: math.unit(27000, "feet")
  38953. },
  38954. {
  38955. name: "Mountain-Mashing",
  38956. height: math.unit(90000, "feet")
  38957. },
  38958. {
  38959. name: "Nation Nemesis",
  38960. height: math.unit(9e6, "feet")
  38961. },
  38962. {
  38963. name: "Continent Cracker",
  38964. height: math.unit(27e6, "feet")
  38965. },
  38966. {
  38967. name: "Earth-Eclipsing",
  38968. height: math.unit(2.7e8, "feet")
  38969. },
  38970. {
  38971. name: "Gas Giant Gulper",
  38972. height: math.unit(2.7e9, "feet")
  38973. },
  38974. {
  38975. name: "Sol-Swallowing",
  38976. height: math.unit(9e10, "feet")
  38977. },
  38978. {
  38979. name: "Galaxy Gulper",
  38980. height: math.unit(9, "galaxies")
  38981. },
  38982. {
  38983. name: "Cosmos Churner",
  38984. height: math.unit(9, "universes")
  38985. },
  38986. ]
  38987. ))
  38988. characterMakers.push(() => makeCharacter(
  38989. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38990. {
  38991. front: {
  38992. height: math.unit(160, "cm"),
  38993. weight: math.unit(55, "kg"),
  38994. name: "Front",
  38995. image: {
  38996. source: "./media/characters/tow/front.svg",
  38997. extra: 1751/1722,
  38998. bottom: 74/1825
  38999. }
  39000. },
  39001. },
  39002. [
  39003. {
  39004. name: "Norm",
  39005. height: math.unit(160, "cm")
  39006. },
  39007. {
  39008. name: "Casual",
  39009. height: math.unit(3200, "m"),
  39010. default: true
  39011. },
  39012. {
  39013. name: "Show-Off",
  39014. height: math.unit(160, "km")
  39015. },
  39016. ]
  39017. ))
  39018. characterMakers.push(() => makeCharacter(
  39019. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  39020. {
  39021. front: {
  39022. height: math.unit(7 + 11/12, "feet"),
  39023. weight: math.unit(342.8, "lb"),
  39024. name: "Front",
  39025. image: {
  39026. source: "./media/characters/vivian-orca-dragon/front.svg",
  39027. extra: 1890/1865,
  39028. bottom: 28/1918
  39029. }
  39030. },
  39031. },
  39032. [
  39033. {
  39034. name: "Micro",
  39035. height: math.unit(5, "inches")
  39036. },
  39037. {
  39038. name: "Normal",
  39039. height: math.unit(7 + 11/12, "feet"),
  39040. default: true
  39041. },
  39042. {
  39043. name: "Macro",
  39044. height: math.unit(395 + 7/12, "feet")
  39045. },
  39046. ]
  39047. ))
  39048. characterMakers.push(() => makeCharacter(
  39049. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  39050. {
  39051. side: {
  39052. height: math.unit(10, "feet"),
  39053. weight: math.unit(1442, "lb"),
  39054. name: "Side",
  39055. image: {
  39056. source: "./media/characters/lotherakon/side.svg",
  39057. extra: 1604/1497,
  39058. bottom: 89/1693
  39059. }
  39060. },
  39061. },
  39062. [
  39063. {
  39064. name: "Mortal Interaction",
  39065. height: math.unit(10, "feet")
  39066. },
  39067. {
  39068. name: "Large",
  39069. height: math.unit(30, "feet"),
  39070. default: true
  39071. },
  39072. {
  39073. name: "Giant",
  39074. height: math.unit(100, "feet")
  39075. },
  39076. {
  39077. name: "Kaiju",
  39078. height: math.unit(300, "feet")
  39079. },
  39080. {
  39081. name: "Macro",
  39082. height: math.unit(1000, "feet")
  39083. },
  39084. {
  39085. name: "Macro+",
  39086. height: math.unit(3000, "feet")
  39087. },
  39088. {
  39089. name: "Megamacro",
  39090. height: math.unit(10000, "feet")
  39091. },
  39092. {
  39093. name: "City-Crushing",
  39094. height: math.unit(30000, "feet")
  39095. },
  39096. {
  39097. name: "Continent Cracker",
  39098. height: math.unit(30e6, "feet")
  39099. },
  39100. {
  39101. name: "Earth Eclipsing",
  39102. height: math.unit(3e8, "feet")
  39103. },
  39104. {
  39105. name: "Gas Giant Gulper",
  39106. height: math.unit(3e9, "feet")
  39107. },
  39108. {
  39109. name: "Sol-Swallowing",
  39110. height: math.unit(1e11, "feet")
  39111. },
  39112. {
  39113. name: "System Swallower",
  39114. height: math.unit(3e14, "feet")
  39115. },
  39116. {
  39117. name: "Galaxy Gulper",
  39118. height: math.unit(10, "galaxies")
  39119. },
  39120. {
  39121. name: "Light Universal",
  39122. height: math.unit(5, "universes")
  39123. },
  39124. {
  39125. name: "Universe Palm",
  39126. height: math.unit(20, "universes")
  39127. },
  39128. {
  39129. name: "Light Multiversal",
  39130. height: math.unit(5, "multiverses")
  39131. },
  39132. {
  39133. name: "Multiverse Palm",
  39134. height: math.unit(20, "multiverses")
  39135. },
  39136. {
  39137. name: "Inferno Incarnate",
  39138. height: math.unit(1e7, "multiverses")
  39139. },
  39140. ]
  39141. ))
  39142. characterMakers.push(() => makeCharacter(
  39143. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  39144. {
  39145. front: {
  39146. height: math.unit(8, "feet"),
  39147. weight: math.unit(1200, "lb"),
  39148. name: "Front",
  39149. image: {
  39150. source: "./media/characters/malithee/front.svg",
  39151. extra: 1675/1640,
  39152. bottom: 162/1837
  39153. }
  39154. },
  39155. },
  39156. [
  39157. {
  39158. name: "Mortal Interaction",
  39159. height: math.unit(8, "feet"),
  39160. default: true
  39161. },
  39162. {
  39163. name: "Large",
  39164. height: math.unit(24, "feet")
  39165. },
  39166. {
  39167. name: "Kaiju",
  39168. height: math.unit(240, "feet")
  39169. },
  39170. {
  39171. name: "Megamacro",
  39172. height: math.unit(8000, "feet")
  39173. },
  39174. {
  39175. name: "Continent Cracker",
  39176. height: math.unit(24e6, "feet")
  39177. },
  39178. {
  39179. name: "Earth-Eclipsing",
  39180. height: math.unit(2.4e8, "feet")
  39181. },
  39182. {
  39183. name: "Sol-Swallowing",
  39184. height: math.unit(8e10, "feet")
  39185. },
  39186. {
  39187. name: "Galaxy Gulper",
  39188. height: math.unit(8, "galaxies")
  39189. },
  39190. {
  39191. name: "Light Universal",
  39192. height: math.unit(4, "universes")
  39193. },
  39194. {
  39195. name: "Universe Atoms",
  39196. height: math.unit(1.829e9, "universes")
  39197. },
  39198. {
  39199. name: "Light Multiversal",
  39200. height: math.unit(4, "multiverses")
  39201. },
  39202. {
  39203. name: "Multiverse Atoms",
  39204. height: math.unit(1.829e9, "multiverses")
  39205. },
  39206. {
  39207. name: "Nigh-Omnipresence",
  39208. height: math.unit(8e261, "multiverses")
  39209. },
  39210. ]
  39211. ))
  39212. characterMakers.push(() => makeCharacter(
  39213. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  39214. {
  39215. front: {
  39216. height: math.unit(10, "feet"),
  39217. weight: math.unit(1500, "lb"),
  39218. name: "Front",
  39219. image: {
  39220. source: "./media/characters/miles-thestia/front.svg",
  39221. extra: 1812/1727,
  39222. bottom: 86/1898
  39223. }
  39224. },
  39225. back: {
  39226. height: math.unit(10, "feet"),
  39227. weight: math.unit(1500, "lb"),
  39228. name: "Back",
  39229. image: {
  39230. source: "./media/characters/miles-thestia/back.svg",
  39231. extra: 1799/1690,
  39232. bottom: 47/1846
  39233. }
  39234. },
  39235. frontNsfw: {
  39236. height: math.unit(10, "feet"),
  39237. weight: math.unit(1500, "lb"),
  39238. name: "Front (NSFW)",
  39239. image: {
  39240. source: "./media/characters/miles-thestia/front-nsfw.svg",
  39241. extra: 1812/1727,
  39242. bottom: 86/1898
  39243. }
  39244. },
  39245. },
  39246. [
  39247. {
  39248. name: "Mini-Macro",
  39249. height: math.unit(10, "feet"),
  39250. default: true
  39251. },
  39252. ]
  39253. ))
  39254. characterMakers.push(() => makeCharacter(
  39255. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  39256. {
  39257. front: {
  39258. height: math.unit(25, "feet"),
  39259. name: "Front",
  39260. image: {
  39261. source: "./media/characters/titan-s-wulf/front.svg",
  39262. extra: 1560/1484,
  39263. bottom: 76/1636
  39264. }
  39265. },
  39266. },
  39267. [
  39268. {
  39269. name: "Smallest",
  39270. height: math.unit(25, "feet"),
  39271. default: true
  39272. },
  39273. {
  39274. name: "Normal",
  39275. height: math.unit(200, "feet")
  39276. },
  39277. {
  39278. name: "Macro",
  39279. height: math.unit(200000, "feet")
  39280. },
  39281. {
  39282. name: "Multiversal Original",
  39283. height: math.unit(10000, "multiverses")
  39284. },
  39285. ]
  39286. ))
  39287. characterMakers.push(() => makeCharacter(
  39288. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  39289. {
  39290. front: {
  39291. height: math.unit(8, "feet"),
  39292. weight: math.unit(553, "lb"),
  39293. name: "Front",
  39294. image: {
  39295. source: "./media/characters/tawendeh/front.svg",
  39296. extra: 2365/2268,
  39297. bottom: 83/2448
  39298. }
  39299. },
  39300. frontClothed: {
  39301. height: math.unit(8, "feet"),
  39302. weight: math.unit(553, "lb"),
  39303. name: "Front (Clothed)",
  39304. image: {
  39305. source: "./media/characters/tawendeh/front-clothed.svg",
  39306. extra: 2365/2268,
  39307. bottom: 83/2448
  39308. }
  39309. },
  39310. back: {
  39311. height: math.unit(8, "feet"),
  39312. weight: math.unit(553, "lb"),
  39313. name: "Back",
  39314. image: {
  39315. source: "./media/characters/tawendeh/back.svg",
  39316. extra: 2397/2294,
  39317. bottom: 42/2439
  39318. }
  39319. },
  39320. },
  39321. [
  39322. {
  39323. name: "Mortal Interaction",
  39324. height: math.unit(8, "feet"),
  39325. default: true
  39326. },
  39327. {
  39328. name: "Giant",
  39329. height: math.unit(80, "feet")
  39330. },
  39331. {
  39332. name: "Macro",
  39333. height: math.unit(800, "feet")
  39334. },
  39335. {
  39336. name: "Megamacro",
  39337. height: math.unit(8000, "feet")
  39338. },
  39339. {
  39340. name: "City-Crushing",
  39341. height: math.unit(24000, "feet")
  39342. },
  39343. {
  39344. name: "Mountain-Mashing",
  39345. height: math.unit(80000, "feet")
  39346. },
  39347. {
  39348. name: "Nation Nemesis",
  39349. height: math.unit(8e6, "feet")
  39350. },
  39351. {
  39352. name: "Continent Cracker",
  39353. height: math.unit(24e6, "feet")
  39354. },
  39355. {
  39356. name: "Earth-Eclipsing",
  39357. height: math.unit(2.4e8, "feet")
  39358. },
  39359. {
  39360. name: "Gas Giant Gulper",
  39361. height: math.unit(2.4e9, "feet")
  39362. },
  39363. {
  39364. name: "Sol-Swallowing",
  39365. height: math.unit(8e10, "feet")
  39366. },
  39367. {
  39368. name: "Galaxy Gulper",
  39369. height: math.unit(8, "galaxies")
  39370. },
  39371. {
  39372. name: "Cosmos Churner",
  39373. height: math.unit(8, "universes")
  39374. },
  39375. {
  39376. name: "Omnipotent Otter",
  39377. height: math.unit(80, "universes")
  39378. },
  39379. ]
  39380. ))
  39381. characterMakers.push(() => makeCharacter(
  39382. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  39383. {
  39384. front: {
  39385. height: math.unit(2.6, "meters"),
  39386. weight: math.unit(900, "kg"),
  39387. name: "Front",
  39388. image: {
  39389. source: "./media/characters/neesha/front.svg",
  39390. extra: 1803/1653,
  39391. bottom: 128/1931
  39392. }
  39393. },
  39394. },
  39395. [
  39396. {
  39397. name: "Normal",
  39398. height: math.unit(2.6, "meters"),
  39399. default: true
  39400. },
  39401. {
  39402. name: "Macro",
  39403. height: math.unit(50, "meters")
  39404. },
  39405. ]
  39406. ))
  39407. characterMakers.push(() => makeCharacter(
  39408. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  39409. {
  39410. front: {
  39411. height: math.unit(5, "feet"),
  39412. weight: math.unit(185, "lb"),
  39413. name: "Front",
  39414. image: {
  39415. source: "./media/characters/kyera/front.svg",
  39416. extra: 1875/1790,
  39417. bottom: 96/1971
  39418. }
  39419. },
  39420. },
  39421. [
  39422. {
  39423. name: "Normal",
  39424. height: math.unit(5, "feet"),
  39425. default: true
  39426. },
  39427. ]
  39428. ))
  39429. characterMakers.push(() => makeCharacter(
  39430. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  39431. {
  39432. front: {
  39433. height: math.unit(7 + 6/12, "feet"),
  39434. weight: math.unit(540, "lb"),
  39435. name: "Front",
  39436. image: {
  39437. source: "./media/characters/yuko/front.svg",
  39438. extra: 1282/1222,
  39439. bottom: 101/1383
  39440. }
  39441. },
  39442. frontClothed: {
  39443. height: math.unit(7 + 6/12, "feet"),
  39444. weight: math.unit(540, "lb"),
  39445. name: "Front (Clothed)",
  39446. image: {
  39447. source: "./media/characters/yuko/front-clothed.svg",
  39448. extra: 1282/1222,
  39449. bottom: 101/1383
  39450. }
  39451. },
  39452. },
  39453. [
  39454. {
  39455. name: "Normal",
  39456. height: math.unit(7 + 6/12, "feet"),
  39457. default: true
  39458. },
  39459. {
  39460. name: "Macro",
  39461. height: math.unit(26 + 9/12, "feet")
  39462. },
  39463. {
  39464. name: "Megamacro",
  39465. height: math.unit(300, "feet")
  39466. },
  39467. {
  39468. name: "Gigamacro",
  39469. height: math.unit(5000, "feet")
  39470. },
  39471. {
  39472. name: "Planetary",
  39473. height: math.unit(10000, "miles")
  39474. },
  39475. ]
  39476. ))
  39477. characterMakers.push(() => makeCharacter(
  39478. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  39479. {
  39480. front: {
  39481. height: math.unit(8 + 2/12, "feet"),
  39482. weight: math.unit(600, "lb"),
  39483. name: "Front",
  39484. image: {
  39485. source: "./media/characters/deam-nitrel/front.svg",
  39486. extra: 1308/1234,
  39487. bottom: 125/1433
  39488. }
  39489. },
  39490. },
  39491. [
  39492. {
  39493. name: "Normal",
  39494. height: math.unit(8 + 2/12, "feet"),
  39495. default: true
  39496. },
  39497. ]
  39498. ))
  39499. characterMakers.push(() => makeCharacter(
  39500. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  39501. {
  39502. front: {
  39503. height: math.unit(6.1, "feet"),
  39504. weight: math.unit(180, "lb"),
  39505. name: "Front",
  39506. image: {
  39507. source: "./media/characters/skyress/front.svg",
  39508. extra: 1045/915,
  39509. bottom: 28/1073
  39510. }
  39511. },
  39512. maw: {
  39513. height: math.unit(1, "feet"),
  39514. name: "Maw",
  39515. image: {
  39516. source: "./media/characters/skyress/maw.svg"
  39517. }
  39518. },
  39519. },
  39520. [
  39521. {
  39522. name: "Normal",
  39523. height: math.unit(6.1, "feet"),
  39524. default: true
  39525. },
  39526. {
  39527. name: "Macro",
  39528. height: math.unit(200, "feet")
  39529. },
  39530. ]
  39531. ))
  39532. characterMakers.push(() => makeCharacter(
  39533. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  39534. {
  39535. front: {
  39536. height: math.unit(4 + 2/12, "feet"),
  39537. weight: math.unit(40, "kg"),
  39538. name: "Front",
  39539. image: {
  39540. source: "./media/characters/amethyst-jones/front.svg",
  39541. extra: 1220/1150,
  39542. bottom: 101/1321
  39543. }
  39544. },
  39545. },
  39546. [
  39547. {
  39548. name: "Normal",
  39549. height: math.unit(4 + 2/12, "feet"),
  39550. default: true
  39551. },
  39552. ]
  39553. ))
  39554. characterMakers.push(() => makeCharacter(
  39555. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  39556. {
  39557. front: {
  39558. height: math.unit(1.7, "m"),
  39559. weight: math.unit(135, "lb"),
  39560. name: "Front",
  39561. image: {
  39562. source: "./media/characters/jade/front.svg",
  39563. extra: 1818/1767,
  39564. bottom: 32/1850
  39565. }
  39566. },
  39567. back: {
  39568. height: math.unit(1.7, "m"),
  39569. weight: math.unit(135, "lb"),
  39570. name: "Back",
  39571. image: {
  39572. source: "./media/characters/jade/back.svg",
  39573. extra: 1869/1809,
  39574. bottom: 35/1904
  39575. }
  39576. },
  39577. hand: {
  39578. height: math.unit(0.24, "m"),
  39579. name: "Hand",
  39580. image: {
  39581. source: "./media/characters/jade/hand.svg"
  39582. }
  39583. },
  39584. foot: {
  39585. height: math.unit(0.263, "m"),
  39586. name: "Foot",
  39587. image: {
  39588. source: "./media/characters/jade/foot.svg"
  39589. }
  39590. },
  39591. dick: {
  39592. height: math.unit(0.47, "m"),
  39593. name: "Dick",
  39594. image: {
  39595. source: "./media/characters/jade/dick.svg"
  39596. }
  39597. },
  39598. },
  39599. [
  39600. {
  39601. name: "Micro",
  39602. height: math.unit(22, "cm")
  39603. },
  39604. {
  39605. name: "Normal",
  39606. height: math.unit(1.7, "m"),
  39607. default: true
  39608. },
  39609. {
  39610. name: "Macro",
  39611. height: math.unit(152, "m")
  39612. },
  39613. ]
  39614. ))
  39615. characterMakers.push(() => makeCharacter(
  39616. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  39617. {
  39618. front: {
  39619. height: math.unit(100, "miles"),
  39620. weight: math.unit(20000, "tons"),
  39621. name: "Front",
  39622. image: {
  39623. source: "./media/characters/cookie/front.svg",
  39624. extra: 1125/1070,
  39625. bottom: 30/1155
  39626. }
  39627. },
  39628. },
  39629. [
  39630. {
  39631. name: "Big",
  39632. height: math.unit(50, "feet")
  39633. },
  39634. {
  39635. name: "Macro",
  39636. height: math.unit(100, "miles"),
  39637. default: true
  39638. },
  39639. {
  39640. name: "Megamacro",
  39641. height: math.unit(90000, "miles")
  39642. },
  39643. ]
  39644. ))
  39645. characterMakers.push(() => makeCharacter(
  39646. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  39647. {
  39648. front: {
  39649. height: math.unit(6, "feet"),
  39650. weight: math.unit(145, "lb"),
  39651. name: "Front",
  39652. image: {
  39653. source: "./media/characters/farzian/front.svg",
  39654. extra: 1902/1693,
  39655. bottom: 108/2010
  39656. }
  39657. },
  39658. },
  39659. [
  39660. {
  39661. name: "Macro",
  39662. height: math.unit(500, "feet"),
  39663. default: true
  39664. },
  39665. ]
  39666. ))
  39667. characterMakers.push(() => makeCharacter(
  39668. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  39669. {
  39670. front: {
  39671. height: math.unit(3 + 6/12, "feet"),
  39672. weight: math.unit(50, "lb"),
  39673. name: "Front",
  39674. image: {
  39675. source: "./media/characters/kimberly-tilson/front.svg",
  39676. extra: 1400/1322,
  39677. bottom: 36/1436
  39678. }
  39679. },
  39680. back: {
  39681. height: math.unit(3 + 6/12, "feet"),
  39682. weight: math.unit(50, "lb"),
  39683. name: "Back",
  39684. image: {
  39685. source: "./media/characters/kimberly-tilson/back.svg",
  39686. extra: 1370/1307,
  39687. bottom: 20/1390
  39688. }
  39689. },
  39690. },
  39691. [
  39692. {
  39693. name: "Normal",
  39694. height: math.unit(3 + 6/12, "feet"),
  39695. default: true
  39696. },
  39697. ]
  39698. ))
  39699. characterMakers.push(() => makeCharacter(
  39700. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39701. {
  39702. front: {
  39703. height: math.unit(1148, "feet"),
  39704. weight: math.unit(34057, "lb"),
  39705. name: "Front",
  39706. image: {
  39707. source: "./media/characters/harthos/front.svg",
  39708. extra: 1391/1339,
  39709. bottom: 13/1404
  39710. }
  39711. },
  39712. },
  39713. [
  39714. {
  39715. name: "Macro",
  39716. height: math.unit(1148, "feet"),
  39717. default: true
  39718. },
  39719. ]
  39720. ))
  39721. characterMakers.push(() => makeCharacter(
  39722. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39723. {
  39724. front: {
  39725. height: math.unit(15, "feet"),
  39726. name: "Front",
  39727. image: {
  39728. source: "./media/characters/hypatia/front.svg",
  39729. extra: 1653/1591,
  39730. bottom: 79/1732
  39731. }
  39732. },
  39733. },
  39734. [
  39735. {
  39736. name: "Normal",
  39737. height: math.unit(15, "feet")
  39738. },
  39739. {
  39740. name: "Small",
  39741. height: math.unit(300, "feet")
  39742. },
  39743. {
  39744. name: "Macro",
  39745. height: math.unit(2500, "feet"),
  39746. default: true
  39747. },
  39748. {
  39749. name: "Mega Macro",
  39750. height: math.unit(1500, "miles")
  39751. },
  39752. {
  39753. name: "Giga Macro",
  39754. height: math.unit(1.5e6, "miles")
  39755. },
  39756. ]
  39757. ))
  39758. characterMakers.push(() => makeCharacter(
  39759. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  39760. {
  39761. front: {
  39762. height: math.unit(6, "feet"),
  39763. weight: math.unit(200, "lb"),
  39764. name: "Front",
  39765. image: {
  39766. source: "./media/characters/wulver/front.svg",
  39767. extra: 1724/1632,
  39768. bottom: 130/1854
  39769. }
  39770. },
  39771. frontNsfw: {
  39772. height: math.unit(6, "feet"),
  39773. weight: math.unit(200, "lb"),
  39774. name: "Front (NSFW)",
  39775. image: {
  39776. source: "./media/characters/wulver/front-nsfw.svg",
  39777. extra: 1724/1632,
  39778. bottom: 130/1854
  39779. }
  39780. },
  39781. },
  39782. [
  39783. {
  39784. name: "Human-Sized",
  39785. height: math.unit(6, "feet")
  39786. },
  39787. {
  39788. name: "Normal",
  39789. height: math.unit(4, "meters"),
  39790. default: true
  39791. },
  39792. {
  39793. name: "Large",
  39794. height: math.unit(6, "m")
  39795. },
  39796. ]
  39797. ))
  39798. characterMakers.push(() => makeCharacter(
  39799. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  39800. {
  39801. front: {
  39802. height: math.unit(7, "feet"),
  39803. name: "Front",
  39804. image: {
  39805. source: "./media/characters/maru/front.svg",
  39806. extra: 1595/1570,
  39807. bottom: 0/1595
  39808. }
  39809. },
  39810. },
  39811. [
  39812. {
  39813. name: "Normal",
  39814. height: math.unit(7, "feet"),
  39815. default: true
  39816. },
  39817. {
  39818. name: "Macro",
  39819. height: math.unit(700, "feet")
  39820. },
  39821. {
  39822. name: "Mega Macro",
  39823. height: math.unit(25, "miles")
  39824. },
  39825. ]
  39826. ))
  39827. characterMakers.push(() => makeCharacter(
  39828. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  39829. {
  39830. front: {
  39831. height: math.unit(6, "feet"),
  39832. weight: math.unit(170, "lb"),
  39833. name: "Front",
  39834. image: {
  39835. source: "./media/characters/xenon/front.svg",
  39836. extra: 1376/1305,
  39837. bottom: 56/1432
  39838. }
  39839. },
  39840. back: {
  39841. height: math.unit(6, "feet"),
  39842. weight: math.unit(170, "lb"),
  39843. name: "Back",
  39844. image: {
  39845. source: "./media/characters/xenon/back.svg",
  39846. extra: 1328/1259,
  39847. bottom: 95/1423
  39848. }
  39849. },
  39850. maw: {
  39851. height: math.unit(0.52, "feet"),
  39852. name: "Maw",
  39853. image: {
  39854. source: "./media/characters/xenon/maw.svg"
  39855. }
  39856. },
  39857. hand: {
  39858. height: math.unit(0.82, "feet"),
  39859. name: "Hand",
  39860. image: {
  39861. source: "./media/characters/xenon/hand.svg"
  39862. }
  39863. },
  39864. foot: {
  39865. height: math.unit(1.13, "feet"),
  39866. name: "Foot",
  39867. image: {
  39868. source: "./media/characters/xenon/foot.svg"
  39869. }
  39870. },
  39871. },
  39872. [
  39873. {
  39874. name: "Micro",
  39875. height: math.unit(0.8, "inches")
  39876. },
  39877. {
  39878. name: "Normal",
  39879. height: math.unit(6, "feet")
  39880. },
  39881. {
  39882. name: "Macro",
  39883. height: math.unit(50, "feet"),
  39884. default: true
  39885. },
  39886. {
  39887. name: "Macro+",
  39888. height: math.unit(250, "feet")
  39889. },
  39890. {
  39891. name: "Megamacro",
  39892. height: math.unit(1500, "feet")
  39893. },
  39894. ]
  39895. ))
  39896. characterMakers.push(() => makeCharacter(
  39897. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  39898. {
  39899. front: {
  39900. height: math.unit(7 + 5/12, "feet"),
  39901. name: "Front",
  39902. image: {
  39903. source: "./media/characters/zane/front.svg",
  39904. extra: 1260/1203,
  39905. bottom: 94/1354
  39906. }
  39907. },
  39908. back: {
  39909. height: math.unit(5.05, "feet"),
  39910. name: "Back",
  39911. image: {
  39912. source: "./media/characters/zane/back.svg",
  39913. extra: 893/829,
  39914. bottom: 30/923
  39915. }
  39916. },
  39917. werewolf: {
  39918. height: math.unit(11, "feet"),
  39919. name: "Werewolf",
  39920. image: {
  39921. source: "./media/characters/zane/werewolf.svg",
  39922. extra: 1383/1323,
  39923. bottom: 89/1472
  39924. }
  39925. },
  39926. foot: {
  39927. height: math.unit(1.46, "feet"),
  39928. name: "Foot",
  39929. image: {
  39930. source: "./media/characters/zane/foot.svg"
  39931. }
  39932. },
  39933. footFront: {
  39934. height: math.unit(0.784, "feet"),
  39935. name: "Foot (Front)",
  39936. image: {
  39937. source: "./media/characters/zane/foot-front.svg"
  39938. }
  39939. },
  39940. dick: {
  39941. height: math.unit(1.95, "feet"),
  39942. name: "Dick",
  39943. image: {
  39944. source: "./media/characters/zane/dick.svg"
  39945. }
  39946. },
  39947. dickWerewolf: {
  39948. height: math.unit(3.77, "feet"),
  39949. name: "Dick (Werewolf)",
  39950. image: {
  39951. source: "./media/characters/zane/dick.svg"
  39952. }
  39953. },
  39954. },
  39955. [
  39956. {
  39957. name: "Normal",
  39958. height: math.unit(7 + 5/12, "feet"),
  39959. default: true
  39960. },
  39961. ]
  39962. ))
  39963. characterMakers.push(() => makeCharacter(
  39964. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39965. {
  39966. front: {
  39967. height: math.unit(6 + 2/12, "feet"),
  39968. weight: math.unit(284, "lb"),
  39969. name: "Front",
  39970. image: {
  39971. source: "./media/characters/benni-desparque/front.svg",
  39972. extra: 1353/1126,
  39973. bottom: 69/1422
  39974. }
  39975. },
  39976. },
  39977. [
  39978. {
  39979. name: "Civilian",
  39980. height: math.unit(6 + 2/12, "feet")
  39981. },
  39982. {
  39983. name: "Normal",
  39984. height: math.unit(98, "feet"),
  39985. default: true
  39986. },
  39987. {
  39988. name: "Kaiju Fighter",
  39989. height: math.unit(268, "feet")
  39990. },
  39991. ]
  39992. ))
  39993. characterMakers.push(() => makeCharacter(
  39994. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39995. {
  39996. front: {
  39997. height: math.unit(5, "feet"),
  39998. weight: math.unit(105, "lb"),
  39999. name: "Front",
  40000. image: {
  40001. source: "./media/characters/maxine/front.svg",
  40002. extra: 1386/1250,
  40003. bottom: 71/1457
  40004. }
  40005. },
  40006. },
  40007. [
  40008. {
  40009. name: "Normal",
  40010. height: math.unit(5, "feet"),
  40011. default: true
  40012. },
  40013. ]
  40014. ))
  40015. characterMakers.push(() => makeCharacter(
  40016. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  40017. {
  40018. front: {
  40019. height: math.unit(11 + 7/12, "feet"),
  40020. weight: math.unit(9576, "lb"),
  40021. name: "Front",
  40022. image: {
  40023. source: "./media/characters/scaly/front.svg",
  40024. extra: 888/867,
  40025. bottom: 36/924
  40026. }
  40027. },
  40028. },
  40029. [
  40030. {
  40031. name: "Normal",
  40032. height: math.unit(11 + 7/12, "feet"),
  40033. default: true
  40034. },
  40035. ]
  40036. ))
  40037. characterMakers.push(() => makeCharacter(
  40038. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  40039. {
  40040. front: {
  40041. height: math.unit(6 + 3/12, "feet"),
  40042. name: "Front",
  40043. image: {
  40044. source: "./media/characters/saelria/front.svg",
  40045. extra: 1243/1138,
  40046. bottom: 46/1289
  40047. }
  40048. },
  40049. },
  40050. [
  40051. {
  40052. name: "Micro",
  40053. height: math.unit(6, "inches"),
  40054. },
  40055. {
  40056. name: "Normal",
  40057. height: math.unit(6 + 3/12, "feet"),
  40058. default: true
  40059. },
  40060. {
  40061. name: "Macro",
  40062. height: math.unit(25, "feet")
  40063. },
  40064. ]
  40065. ))
  40066. characterMakers.push(() => makeCharacter(
  40067. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  40068. {
  40069. front: {
  40070. height: math.unit(80, "meters"),
  40071. weight: math.unit(7000, "tonnes"),
  40072. name: "Front",
  40073. image: {
  40074. source: "./media/characters/tef/front.svg",
  40075. extra: 2036/1991,
  40076. bottom: 54/2090
  40077. }
  40078. },
  40079. back: {
  40080. height: math.unit(80, "meters"),
  40081. weight: math.unit(7000, "tonnes"),
  40082. name: "Back",
  40083. image: {
  40084. source: "./media/characters/tef/back.svg",
  40085. extra: 2036/1991,
  40086. bottom: 54/2090
  40087. }
  40088. },
  40089. },
  40090. [
  40091. {
  40092. name: "Macro",
  40093. height: math.unit(80, "meters"),
  40094. default: true
  40095. },
  40096. ]
  40097. ))
  40098. characterMakers.push(() => makeCharacter(
  40099. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  40100. {
  40101. front: {
  40102. height: math.unit(13, "feet"),
  40103. weight: math.unit(6, "tons"),
  40104. name: "Front",
  40105. image: {
  40106. source: "./media/characters/rover/front.svg",
  40107. extra: 1233/1156,
  40108. bottom: 50/1283
  40109. }
  40110. },
  40111. back: {
  40112. height: math.unit(13, "feet"),
  40113. weight: math.unit(6, "tons"),
  40114. name: "Back",
  40115. image: {
  40116. source: "./media/characters/rover/back.svg",
  40117. extra: 1327/1258,
  40118. bottom: 39/1366
  40119. }
  40120. },
  40121. },
  40122. [
  40123. {
  40124. name: "Normal",
  40125. height: math.unit(13, "feet"),
  40126. default: true
  40127. },
  40128. {
  40129. name: "Macro",
  40130. height: math.unit(1300, "feet")
  40131. },
  40132. {
  40133. name: "Megamacro",
  40134. height: math.unit(1300, "miles")
  40135. },
  40136. {
  40137. name: "Gigamacro",
  40138. height: math.unit(1300000, "miles")
  40139. },
  40140. ]
  40141. ))
  40142. characterMakers.push(() => makeCharacter(
  40143. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  40144. {
  40145. front: {
  40146. height: math.unit(6, "feet"),
  40147. weight: math.unit(150, "lb"),
  40148. name: "Front",
  40149. image: {
  40150. source: "./media/characters/ariz/front.svg",
  40151. extra: 1401/1346,
  40152. bottom: 5/1406
  40153. }
  40154. },
  40155. },
  40156. [
  40157. {
  40158. name: "Normal",
  40159. height: math.unit(10, "feet"),
  40160. default: true
  40161. },
  40162. ]
  40163. ))
  40164. characterMakers.push(() => makeCharacter(
  40165. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  40166. {
  40167. front: {
  40168. height: math.unit(6, "feet"),
  40169. weight: math.unit(140, "lb"),
  40170. name: "Front",
  40171. image: {
  40172. source: "./media/characters/sigrun/front.svg",
  40173. extra: 1418/1359,
  40174. bottom: 27/1445
  40175. }
  40176. },
  40177. },
  40178. [
  40179. {
  40180. name: "Macro",
  40181. height: math.unit(35, "feet"),
  40182. default: true
  40183. },
  40184. ]
  40185. ))
  40186. characterMakers.push(() => makeCharacter(
  40187. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  40188. {
  40189. front: {
  40190. height: math.unit(6, "feet"),
  40191. weight: math.unit(150, "lb"),
  40192. name: "Front",
  40193. image: {
  40194. source: "./media/characters/numin/front.svg",
  40195. extra: 1433/1388,
  40196. bottom: 12/1445
  40197. }
  40198. },
  40199. },
  40200. [
  40201. {
  40202. name: "Macro",
  40203. height: math.unit(21.5, "km"),
  40204. default: true
  40205. },
  40206. ]
  40207. ))
  40208. characterMakers.push(() => makeCharacter(
  40209. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  40210. {
  40211. front: {
  40212. height: math.unit(6, "feet"),
  40213. weight: math.unit(463, "lb"),
  40214. name: "Front",
  40215. image: {
  40216. source: "./media/characters/melwa/front.svg",
  40217. extra: 1307/1248,
  40218. bottom: 93/1400
  40219. }
  40220. },
  40221. },
  40222. [
  40223. {
  40224. name: "Macro",
  40225. height: math.unit(50, "meters"),
  40226. default: true
  40227. },
  40228. ]
  40229. ))
  40230. characterMakers.push(() => makeCharacter(
  40231. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  40232. {
  40233. front: {
  40234. height: math.unit(325, "feet"),
  40235. name: "Front",
  40236. image: {
  40237. source: "./media/characters/zorkaiju/front.svg",
  40238. extra: 1955/1814,
  40239. bottom: 40/1995
  40240. }
  40241. },
  40242. frontExtended: {
  40243. height: math.unit(325, "feet"),
  40244. name: "Front (Extended)",
  40245. image: {
  40246. source: "./media/characters/zorkaiju/front-extended.svg",
  40247. extra: 1955/1814,
  40248. bottom: 40/1995
  40249. }
  40250. },
  40251. side: {
  40252. height: math.unit(325, "feet"),
  40253. name: "Side",
  40254. image: {
  40255. source: "./media/characters/zorkaiju/side.svg",
  40256. extra: 1495/1396,
  40257. bottom: 17/1512
  40258. }
  40259. },
  40260. sideExtended: {
  40261. height: math.unit(325, "feet"),
  40262. name: "Side (Extended)",
  40263. image: {
  40264. source: "./media/characters/zorkaiju/side-extended.svg",
  40265. extra: 1495/1396,
  40266. bottom: 17/1512
  40267. }
  40268. },
  40269. back: {
  40270. height: math.unit(325, "feet"),
  40271. name: "Back",
  40272. image: {
  40273. source: "./media/characters/zorkaiju/back.svg",
  40274. extra: 1959/1821,
  40275. bottom: 31/1990
  40276. }
  40277. },
  40278. backExtended: {
  40279. height: math.unit(325, "feet"),
  40280. name: "Back (Extended)",
  40281. image: {
  40282. source: "./media/characters/zorkaiju/back-extended.svg",
  40283. extra: 1959/1821,
  40284. bottom: 31/1990
  40285. }
  40286. },
  40287. hand: {
  40288. height: math.unit(58.4, "feet"),
  40289. name: "Hand",
  40290. image: {
  40291. source: "./media/characters/zorkaiju/hand.svg"
  40292. }
  40293. },
  40294. handExtended: {
  40295. height: math.unit(61.4, "feet"),
  40296. name: "Hand (Extended)",
  40297. image: {
  40298. source: "./media/characters/zorkaiju/hand-extended.svg"
  40299. }
  40300. },
  40301. foot: {
  40302. height: math.unit(95, "feet"),
  40303. name: "Foot",
  40304. image: {
  40305. source: "./media/characters/zorkaiju/foot.svg"
  40306. }
  40307. },
  40308. leftArm: {
  40309. height: math.unit(59, "feet"),
  40310. name: "Left Arm",
  40311. image: {
  40312. source: "./media/characters/zorkaiju/left-arm.svg"
  40313. }
  40314. },
  40315. rightArm: {
  40316. height: math.unit(59, "feet"),
  40317. name: "Right Arm",
  40318. image: {
  40319. source: "./media/characters/zorkaiju/right-arm.svg"
  40320. }
  40321. },
  40322. tail: {
  40323. height: math.unit(104, "feet"),
  40324. name: "Tail",
  40325. image: {
  40326. source: "./media/characters/zorkaiju/tail.svg"
  40327. }
  40328. },
  40329. tailExtended: {
  40330. height: math.unit(104, "feet"),
  40331. name: "Tail (Extended)",
  40332. image: {
  40333. source: "./media/characters/zorkaiju/tail-extended.svg"
  40334. }
  40335. },
  40336. tailBottom: {
  40337. height: math.unit(104, "feet"),
  40338. name: "Tail Bottom",
  40339. image: {
  40340. source: "./media/characters/zorkaiju/tail-bottom.svg"
  40341. }
  40342. },
  40343. crystal: {
  40344. height: math.unit(27.54, "feet"),
  40345. name: "Crystal",
  40346. image: {
  40347. source: "./media/characters/zorkaiju/crystal.svg"
  40348. }
  40349. },
  40350. },
  40351. [
  40352. {
  40353. name: "Kaiju",
  40354. height: math.unit(325, "feet"),
  40355. default: true
  40356. },
  40357. ]
  40358. ))
  40359. characterMakers.push(() => makeCharacter(
  40360. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  40361. {
  40362. front: {
  40363. height: math.unit(6 + 1/12, "feet"),
  40364. weight: math.unit(115, "lb"),
  40365. name: "Front",
  40366. image: {
  40367. source: "./media/characters/bailey-belfry/front.svg",
  40368. extra: 1240/1121,
  40369. bottom: 101/1341
  40370. }
  40371. },
  40372. },
  40373. [
  40374. {
  40375. name: "Normal",
  40376. height: math.unit(6 + 1/12, "feet"),
  40377. default: true
  40378. },
  40379. ]
  40380. ))
  40381. characterMakers.push(() => makeCharacter(
  40382. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  40383. {
  40384. side: {
  40385. height: math.unit(4, "meters"),
  40386. weight: math.unit(250, "kg"),
  40387. name: "Side",
  40388. image: {
  40389. source: "./media/characters/blacky/side.svg",
  40390. extra: 1027/919,
  40391. bottom: 43/1070
  40392. }
  40393. },
  40394. maw: {
  40395. height: math.unit(1, "meters"),
  40396. name: "Maw",
  40397. image: {
  40398. source: "./media/characters/blacky/maw.svg"
  40399. }
  40400. },
  40401. paw: {
  40402. height: math.unit(1, "meters"),
  40403. name: "Paw",
  40404. image: {
  40405. source: "./media/characters/blacky/paw.svg"
  40406. }
  40407. },
  40408. },
  40409. [
  40410. {
  40411. name: "Normal",
  40412. height: math.unit(4, "meters"),
  40413. default: true
  40414. },
  40415. ]
  40416. ))
  40417. characterMakers.push(() => makeCharacter(
  40418. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  40419. {
  40420. front: {
  40421. height: math.unit(170, "cm"),
  40422. weight: math.unit(66, "kg"),
  40423. name: "Front",
  40424. image: {
  40425. source: "./media/characters/thux-ei/front.svg",
  40426. extra: 1109/1011,
  40427. bottom: 8/1117
  40428. }
  40429. },
  40430. },
  40431. [
  40432. {
  40433. name: "Normal",
  40434. height: math.unit(170, "cm"),
  40435. default: true
  40436. },
  40437. ]
  40438. ))
  40439. characterMakers.push(() => makeCharacter(
  40440. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  40441. {
  40442. front: {
  40443. height: math.unit(5, "feet"),
  40444. weight: math.unit(120, "lb"),
  40445. name: "Front",
  40446. image: {
  40447. source: "./media/characters/roxanne-voltaire/front.svg",
  40448. extra: 1901/1779,
  40449. bottom: 53/1954
  40450. }
  40451. },
  40452. },
  40453. [
  40454. {
  40455. name: "Normal",
  40456. height: math.unit(5, "feet"),
  40457. default: true
  40458. },
  40459. {
  40460. name: "Giant",
  40461. height: math.unit(50, "feet")
  40462. },
  40463. {
  40464. name: "Titan",
  40465. height: math.unit(500, "feet")
  40466. },
  40467. {
  40468. name: "Macro",
  40469. height: math.unit(5000, "feet")
  40470. },
  40471. {
  40472. name: "Megamacro",
  40473. height: math.unit(50000, "feet")
  40474. },
  40475. {
  40476. name: "Gigamacro",
  40477. height: math.unit(500000, "feet")
  40478. },
  40479. {
  40480. name: "Teramacro",
  40481. height: math.unit(5e6, "feet")
  40482. },
  40483. ]
  40484. ))
  40485. characterMakers.push(() => makeCharacter(
  40486. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  40487. {
  40488. front: {
  40489. height: math.unit(6 + 2/12, "feet"),
  40490. name: "Front",
  40491. image: {
  40492. source: "./media/characters/squeaks/front.svg",
  40493. extra: 1823/1768,
  40494. bottom: 138/1961
  40495. }
  40496. },
  40497. },
  40498. [
  40499. {
  40500. name: "Micro",
  40501. height: math.unit(0.5, "inches")
  40502. },
  40503. {
  40504. name: "Normal",
  40505. height: math.unit(6 + 2/12, "feet"),
  40506. default: true
  40507. },
  40508. {
  40509. name: "Macro",
  40510. height: math.unit(600, "feet")
  40511. },
  40512. ]
  40513. ))
  40514. characterMakers.push(() => makeCharacter(
  40515. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  40516. {
  40517. front: {
  40518. height: math.unit(1.72, "meters"),
  40519. name: "Front",
  40520. image: {
  40521. source: "./media/characters/archinger/front.svg",
  40522. extra: 1861/1675,
  40523. bottom: 125/1986
  40524. }
  40525. },
  40526. back: {
  40527. height: math.unit(1.72, "meters"),
  40528. name: "Back",
  40529. image: {
  40530. source: "./media/characters/archinger/back.svg",
  40531. extra: 1844/1701,
  40532. bottom: 104/1948
  40533. }
  40534. },
  40535. cock: {
  40536. height: math.unit(0.59, "feet"),
  40537. name: "Cock",
  40538. image: {
  40539. source: "./media/characters/archinger/cock.svg"
  40540. }
  40541. },
  40542. },
  40543. [
  40544. {
  40545. name: "Normal",
  40546. height: math.unit(1.72, "meters"),
  40547. default: true
  40548. },
  40549. {
  40550. name: "Macro",
  40551. height: math.unit(84, "meters")
  40552. },
  40553. {
  40554. name: "Macro+",
  40555. height: math.unit(112, "meters")
  40556. },
  40557. {
  40558. name: "Macro++",
  40559. height: math.unit(960, "meters")
  40560. },
  40561. {
  40562. name: "Macro+++",
  40563. height: math.unit(4, "km")
  40564. },
  40565. {
  40566. name: "Macro++++",
  40567. height: math.unit(48, "km")
  40568. },
  40569. {
  40570. name: "Macro+++++",
  40571. height: math.unit(4500, "km")
  40572. },
  40573. ]
  40574. ))
  40575. characterMakers.push(() => makeCharacter(
  40576. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  40577. {
  40578. front: {
  40579. height: math.unit(5 + 5/12, "feet"),
  40580. name: "Front",
  40581. image: {
  40582. source: "./media/characters/alsnapz/front.svg",
  40583. extra: 1157/1065,
  40584. bottom: 42/1199
  40585. }
  40586. },
  40587. },
  40588. [
  40589. {
  40590. name: "Normal",
  40591. height: math.unit(5 + 5/12, "feet"),
  40592. default: true
  40593. },
  40594. ]
  40595. ))
  40596. characterMakers.push(() => makeCharacter(
  40597. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  40598. {
  40599. side: {
  40600. height: math.unit(3.2, "earths"),
  40601. name: "Side",
  40602. image: {
  40603. source: "./media/characters/mag/side.svg",
  40604. extra: 1331/1008,
  40605. bottom: 52/1383
  40606. }
  40607. },
  40608. wing: {
  40609. height: math.unit(1.94, "earths"),
  40610. name: "Wing",
  40611. image: {
  40612. source: "./media/characters/mag/wing.svg"
  40613. }
  40614. },
  40615. dick: {
  40616. height: math.unit(1.8, "earths"),
  40617. name: "Dick",
  40618. image: {
  40619. source: "./media/characters/mag/dick.svg"
  40620. }
  40621. },
  40622. ass: {
  40623. height: math.unit(1.33, "earths"),
  40624. name: "Ass",
  40625. image: {
  40626. source: "./media/characters/mag/ass.svg"
  40627. }
  40628. },
  40629. head: {
  40630. height: math.unit(1.1, "earths"),
  40631. name: "Head",
  40632. image: {
  40633. source: "./media/characters/mag/head.svg"
  40634. }
  40635. },
  40636. maw: {
  40637. height: math.unit(1.62, "earths"),
  40638. name: "Maw",
  40639. image: {
  40640. source: "./media/characters/mag/maw.svg"
  40641. }
  40642. },
  40643. },
  40644. [
  40645. {
  40646. name: "Small",
  40647. height: math.unit(162, "feet")
  40648. },
  40649. {
  40650. name: "Normal",
  40651. height: math.unit(3.2, "earths"),
  40652. default: true
  40653. },
  40654. ]
  40655. ))
  40656. characterMakers.push(() => makeCharacter(
  40657. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  40658. {
  40659. front: {
  40660. height: math.unit(512, "feet"),
  40661. weight: math.unit(63509, "tonnes"),
  40662. name: "Front",
  40663. image: {
  40664. source: "./media/characters/vorrel-harroc/front.svg",
  40665. extra: 1075/1063,
  40666. bottom: 62/1137
  40667. }
  40668. },
  40669. },
  40670. [
  40671. {
  40672. name: "Normal",
  40673. height: math.unit(10, "feet")
  40674. },
  40675. {
  40676. name: "Macro",
  40677. height: math.unit(512, "feet"),
  40678. default: true
  40679. },
  40680. {
  40681. name: "Megamacro",
  40682. height: math.unit(256, "miles")
  40683. },
  40684. {
  40685. name: "Gigamacro",
  40686. height: math.unit(4096, "miles")
  40687. },
  40688. ]
  40689. ))
  40690. characterMakers.push(() => makeCharacter(
  40691. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40692. {
  40693. side: {
  40694. height: math.unit(50, "feet"),
  40695. name: "Side",
  40696. image: {
  40697. source: "./media/characters/froimar/side.svg",
  40698. extra: 855/638,
  40699. bottom: 99/954
  40700. }
  40701. },
  40702. },
  40703. [
  40704. {
  40705. name: "Macro",
  40706. height: math.unit(50, "feet"),
  40707. default: true
  40708. },
  40709. ]
  40710. ))
  40711. characterMakers.push(() => makeCharacter(
  40712. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40713. {
  40714. front: {
  40715. height: math.unit(210, "miles"),
  40716. name: "Front",
  40717. image: {
  40718. source: "./media/characters/timothy/front.svg",
  40719. extra: 1007/943,
  40720. bottom: 62/1069
  40721. }
  40722. },
  40723. frontSkirt: {
  40724. height: math.unit(210, "miles"),
  40725. name: "Front (Skirt)",
  40726. image: {
  40727. source: "./media/characters/timothy/front-skirt.svg",
  40728. extra: 1007/943,
  40729. bottom: 62/1069
  40730. }
  40731. },
  40732. frontCoat: {
  40733. height: math.unit(210, "miles"),
  40734. name: "Front (Coat)",
  40735. image: {
  40736. source: "./media/characters/timothy/front-coat.svg",
  40737. extra: 1007/943,
  40738. bottom: 62/1069
  40739. }
  40740. },
  40741. },
  40742. [
  40743. {
  40744. name: "Macro",
  40745. height: math.unit(210, "miles"),
  40746. default: true
  40747. },
  40748. {
  40749. name: "Megamacro",
  40750. height: math.unit(210000, "miles")
  40751. },
  40752. ]
  40753. ))
  40754. characterMakers.push(() => makeCharacter(
  40755. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  40756. {
  40757. front: {
  40758. height: math.unit(188, "feet"),
  40759. name: "Front",
  40760. image: {
  40761. source: "./media/characters/pyotr/front.svg",
  40762. extra: 1912/1826,
  40763. bottom: 18/1930
  40764. }
  40765. },
  40766. },
  40767. [
  40768. {
  40769. name: "Macro",
  40770. height: math.unit(188, "feet"),
  40771. default: true
  40772. },
  40773. {
  40774. name: "Megamacro",
  40775. height: math.unit(8, "miles")
  40776. },
  40777. ]
  40778. ))
  40779. characterMakers.push(() => makeCharacter(
  40780. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  40781. {
  40782. side: {
  40783. height: math.unit(10, "feet"),
  40784. weight: math.unit(4500, "lb"),
  40785. name: "Side",
  40786. image: {
  40787. source: "./media/characters/ackart/side.svg",
  40788. extra: 1776/1668,
  40789. bottom: 116/1892
  40790. }
  40791. },
  40792. },
  40793. [
  40794. {
  40795. name: "Normal",
  40796. height: math.unit(10, "feet"),
  40797. default: true
  40798. },
  40799. ]
  40800. ))
  40801. characterMakers.push(() => makeCharacter(
  40802. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  40803. {
  40804. side: {
  40805. height: math.unit(21, "feet"),
  40806. name: "Side",
  40807. image: {
  40808. source: "./media/characters/nolow/side.svg",
  40809. extra: 1484/1434,
  40810. bottom: 85/1569
  40811. }
  40812. },
  40813. sideErect: {
  40814. height: math.unit(21, "feet"),
  40815. name: "Side-erect",
  40816. image: {
  40817. source: "./media/characters/nolow/side-erect.svg",
  40818. extra: 1484/1434,
  40819. bottom: 85/1569
  40820. }
  40821. },
  40822. },
  40823. [
  40824. {
  40825. name: "Regular",
  40826. height: math.unit(12, "feet")
  40827. },
  40828. {
  40829. name: "Big Chee",
  40830. height: math.unit(21, "feet"),
  40831. default: true
  40832. },
  40833. ]
  40834. ))
  40835. characterMakers.push(() => makeCharacter(
  40836. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  40837. {
  40838. front: {
  40839. height: math.unit(7, "feet"),
  40840. weight: math.unit(250, "lb"),
  40841. name: "Front",
  40842. image: {
  40843. source: "./media/characters/nines/front.svg",
  40844. extra: 1741/1607,
  40845. bottom: 41/1782
  40846. }
  40847. },
  40848. side: {
  40849. height: math.unit(7, "feet"),
  40850. weight: math.unit(250, "lb"),
  40851. name: "Side",
  40852. image: {
  40853. source: "./media/characters/nines/side.svg",
  40854. extra: 1854/1735,
  40855. bottom: 93/1947
  40856. }
  40857. },
  40858. back: {
  40859. height: math.unit(7, "feet"),
  40860. weight: math.unit(250, "lb"),
  40861. name: "Back",
  40862. image: {
  40863. source: "./media/characters/nines/back.svg",
  40864. extra: 1748/1615,
  40865. bottom: 20/1768
  40866. }
  40867. },
  40868. },
  40869. [
  40870. {
  40871. name: "Megamacro",
  40872. height: math.unit(99, "km"),
  40873. default: true
  40874. },
  40875. ]
  40876. ))
  40877. characterMakers.push(() => makeCharacter(
  40878. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  40879. {
  40880. front: {
  40881. height: math.unit(5 + 10/12, "feet"),
  40882. weight: math.unit(210, "lb"),
  40883. name: "Front",
  40884. image: {
  40885. source: "./media/characters/zenith/front.svg",
  40886. extra: 1531/1452,
  40887. bottom: 198/1729
  40888. }
  40889. },
  40890. back: {
  40891. height: math.unit(5 + 10/12, "feet"),
  40892. weight: math.unit(210, "lb"),
  40893. name: "Back",
  40894. image: {
  40895. source: "./media/characters/zenith/back.svg",
  40896. extra: 1571/1487,
  40897. bottom: 75/1646
  40898. }
  40899. },
  40900. },
  40901. [
  40902. {
  40903. name: "Normal",
  40904. height: math.unit(5 + 10/12, "feet"),
  40905. default: true
  40906. }
  40907. ]
  40908. ))
  40909. characterMakers.push(() => makeCharacter(
  40910. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  40911. {
  40912. front: {
  40913. height: math.unit(4, "feet"),
  40914. weight: math.unit(60, "lb"),
  40915. name: "Front",
  40916. image: {
  40917. source: "./media/characters/jasper/front.svg",
  40918. extra: 1450/1379,
  40919. bottom: 19/1469
  40920. }
  40921. },
  40922. },
  40923. [
  40924. {
  40925. name: "Normal",
  40926. height: math.unit(4, "feet"),
  40927. default: true
  40928. },
  40929. ]
  40930. ))
  40931. characterMakers.push(() => makeCharacter(
  40932. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40933. {
  40934. front: {
  40935. height: math.unit(6 + 5/12, "feet"),
  40936. weight: math.unit(290, "lb"),
  40937. name: "Front",
  40938. image: {
  40939. source: "./media/characters/tiberius-thyben/front.svg",
  40940. extra: 757/739,
  40941. bottom: 39/796
  40942. }
  40943. },
  40944. },
  40945. [
  40946. {
  40947. name: "Micro",
  40948. height: math.unit(1.5, "inches")
  40949. },
  40950. {
  40951. name: "Normal",
  40952. height: math.unit(6 + 5/12, "feet"),
  40953. default: true
  40954. },
  40955. {
  40956. name: "Macro",
  40957. height: math.unit(300, "feet")
  40958. },
  40959. ]
  40960. ))
  40961. characterMakers.push(() => makeCharacter(
  40962. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40963. {
  40964. front: {
  40965. height: math.unit(5 + 6/12, "feet"),
  40966. weight: math.unit(60, "kg"),
  40967. name: "Front",
  40968. image: {
  40969. source: "./media/characters/sabre/front.svg",
  40970. extra: 738/671,
  40971. bottom: 27/765
  40972. }
  40973. },
  40974. },
  40975. [
  40976. {
  40977. name: "Teeny",
  40978. height: math.unit(2, "inches")
  40979. },
  40980. {
  40981. name: "Smol",
  40982. height: math.unit(8, "inches")
  40983. },
  40984. {
  40985. name: "Normal",
  40986. height: math.unit(5 + 6/12, "feet"),
  40987. default: true
  40988. },
  40989. {
  40990. name: "Mini-Macro",
  40991. height: math.unit(15, "feet")
  40992. },
  40993. {
  40994. name: "Macro",
  40995. height: math.unit(50, "feet")
  40996. },
  40997. ]
  40998. ))
  40999. characterMakers.push(() => makeCharacter(
  41000. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  41001. {
  41002. front: {
  41003. height: math.unit(6 + 4/12, "feet"),
  41004. weight: math.unit(170, "lb"),
  41005. name: "Front",
  41006. image: {
  41007. source: "./media/characters/charlie/front.svg",
  41008. extra: 1348/1228,
  41009. bottom: 15/1363
  41010. }
  41011. },
  41012. },
  41013. [
  41014. {
  41015. name: "Macro",
  41016. height: math.unit(1700, "meters"),
  41017. default: true
  41018. },
  41019. {
  41020. name: "MegaMacro",
  41021. height: math.unit(20400, "meters")
  41022. },
  41023. ]
  41024. ))
  41025. characterMakers.push(() => makeCharacter(
  41026. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  41027. {
  41028. front: {
  41029. height: math.unit(6 + 3/12, "feet"),
  41030. weight: math.unit(185, "lb"),
  41031. name: "Front",
  41032. image: {
  41033. source: "./media/characters/susan-grant/front.svg",
  41034. extra: 1351/1327,
  41035. bottom: 26/1377
  41036. }
  41037. },
  41038. },
  41039. [
  41040. {
  41041. name: "Normal",
  41042. height: math.unit(6 + 3/12, "feet"),
  41043. default: true
  41044. },
  41045. {
  41046. name: "Macro",
  41047. height: math.unit(225, "feet")
  41048. },
  41049. {
  41050. name: "Macro+",
  41051. height: math.unit(900, "feet")
  41052. },
  41053. {
  41054. name: "MegaMacro",
  41055. height: math.unit(14400, "feet")
  41056. },
  41057. ]
  41058. ))
  41059. characterMakers.push(() => makeCharacter(
  41060. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  41061. {
  41062. front: {
  41063. height: math.unit(5 + 4/12, "feet"),
  41064. weight: math.unit(110, "lb"),
  41065. name: "Front",
  41066. image: {
  41067. source: "./media/characters/axel-isanov/front.svg",
  41068. extra: 1096/1065,
  41069. bottom: 13/1109
  41070. }
  41071. },
  41072. },
  41073. [
  41074. {
  41075. name: "Normal",
  41076. height: math.unit(5 + 4/12, "feet"),
  41077. default: true
  41078. },
  41079. ]
  41080. ))
  41081. characterMakers.push(() => makeCharacter(
  41082. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  41083. {
  41084. front: {
  41085. height: math.unit(9, "feet"),
  41086. weight: math.unit(467, "lb"),
  41087. name: "Front",
  41088. image: {
  41089. source: "./media/characters/necahual/front.svg",
  41090. extra: 920/873,
  41091. bottom: 26/946
  41092. }
  41093. },
  41094. back: {
  41095. height: math.unit(9, "feet"),
  41096. weight: math.unit(467, "lb"),
  41097. name: "Back",
  41098. image: {
  41099. source: "./media/characters/necahual/back.svg",
  41100. extra: 930/884,
  41101. bottom: 16/946
  41102. }
  41103. },
  41104. frontUnderwear: {
  41105. height: math.unit(9, "feet"),
  41106. weight: math.unit(467, "lb"),
  41107. name: "Front (Underwear)",
  41108. image: {
  41109. source: "./media/characters/necahual/front-underwear.svg",
  41110. extra: 920/873,
  41111. bottom: 26/946
  41112. }
  41113. },
  41114. frontDressed: {
  41115. height: math.unit(9, "feet"),
  41116. weight: math.unit(467, "lb"),
  41117. name: "Front (Dressed)",
  41118. image: {
  41119. source: "./media/characters/necahual/front-dressed.svg",
  41120. extra: 920/873,
  41121. bottom: 26/946
  41122. }
  41123. },
  41124. },
  41125. [
  41126. {
  41127. name: "Comprsesed",
  41128. height: math.unit(9, "feet")
  41129. },
  41130. {
  41131. name: "Natural",
  41132. height: math.unit(15, "feet"),
  41133. default: true
  41134. },
  41135. {
  41136. name: "Boosted",
  41137. height: math.unit(50, "feet")
  41138. },
  41139. {
  41140. name: "Boosted+",
  41141. height: math.unit(150, "feet")
  41142. },
  41143. {
  41144. name: "Max",
  41145. height: math.unit(500, "feet")
  41146. },
  41147. ]
  41148. ))
  41149. characterMakers.push(() => makeCharacter(
  41150. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  41151. {
  41152. front: {
  41153. height: math.unit(22 + 1/12, "feet"),
  41154. weight: math.unit(3200, "lb"),
  41155. name: "Front",
  41156. image: {
  41157. source: "./media/characters/theo-acacia/front.svg",
  41158. extra: 1796/1741,
  41159. bottom: 83/1879
  41160. }
  41161. },
  41162. frontUnderwear: {
  41163. height: math.unit(22 + 1/12, "feet"),
  41164. weight: math.unit(3200, "lb"),
  41165. name: "Front (Underwear)",
  41166. image: {
  41167. source: "./media/characters/theo-acacia/front-underwear.svg",
  41168. extra: 1796/1741,
  41169. bottom: 83/1879
  41170. }
  41171. },
  41172. frontNude: {
  41173. height: math.unit(22 + 1/12, "feet"),
  41174. weight: math.unit(3200, "lb"),
  41175. name: "Front (Nude)",
  41176. image: {
  41177. source: "./media/characters/theo-acacia/front-nude.svg",
  41178. extra: 1796/1741,
  41179. bottom: 83/1879
  41180. }
  41181. },
  41182. },
  41183. [
  41184. {
  41185. name: "Normal",
  41186. height: math.unit(22 + 1/12, "feet"),
  41187. default: true
  41188. },
  41189. ]
  41190. ))
  41191. characterMakers.push(() => makeCharacter(
  41192. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41193. {
  41194. front: {
  41195. height: math.unit(20, "feet"),
  41196. name: "Front",
  41197. image: {
  41198. source: "./media/characters/astra/front.svg",
  41199. extra: 1850/1714,
  41200. bottom: 106/1956
  41201. }
  41202. },
  41203. frontUndressed: {
  41204. height: math.unit(20, "feet"),
  41205. name: "Front (Undressed)",
  41206. image: {
  41207. source: "./media/characters/astra/front-undressed.svg",
  41208. extra: 1926/1749,
  41209. bottom: 0/1926
  41210. }
  41211. },
  41212. hand: {
  41213. height: math.unit(1.53, "feet"),
  41214. name: "Hand",
  41215. image: {
  41216. source: "./media/characters/astra/hand.svg"
  41217. }
  41218. },
  41219. paw: {
  41220. height: math.unit(1.53, "feet"),
  41221. name: "Paw",
  41222. image: {
  41223. source: "./media/characters/astra/paw.svg"
  41224. }
  41225. },
  41226. },
  41227. [
  41228. {
  41229. name: "Smallest",
  41230. height: math.unit(20, "feet")
  41231. },
  41232. {
  41233. name: "Normal",
  41234. height: math.unit(1e9, "miles"),
  41235. default: true
  41236. },
  41237. {
  41238. name: "Larger",
  41239. height: math.unit(5, "multiverses")
  41240. },
  41241. {
  41242. name: "Largest",
  41243. height: math.unit(1e9, "multiverses")
  41244. },
  41245. ]
  41246. ))
  41247. characterMakers.push(() => makeCharacter(
  41248. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41249. {
  41250. front: {
  41251. height: math.unit(8, "feet"),
  41252. name: "Front",
  41253. image: {
  41254. source: "./media/characters/breanna/front.svg",
  41255. extra: 1912/1632,
  41256. bottom: 33/1945
  41257. }
  41258. },
  41259. },
  41260. [
  41261. {
  41262. name: "Smallest",
  41263. height: math.unit(8, "feet")
  41264. },
  41265. {
  41266. name: "Normal",
  41267. height: math.unit(1, "mile"),
  41268. default: true
  41269. },
  41270. {
  41271. name: "Maximum",
  41272. height: math.unit(1500000000000, "lightyears")
  41273. },
  41274. ]
  41275. ))
  41276. characterMakers.push(() => makeCharacter(
  41277. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  41278. {
  41279. front: {
  41280. height: math.unit(5 + 11/12, "feet"),
  41281. weight: math.unit(155, "lb"),
  41282. name: "Front",
  41283. image: {
  41284. source: "./media/characters/cai/front.svg",
  41285. extra: 1823/1702,
  41286. bottom: 32/1855
  41287. }
  41288. },
  41289. back: {
  41290. height: math.unit(5 + 11/12, "feet"),
  41291. weight: math.unit(155, "lb"),
  41292. name: "Back",
  41293. image: {
  41294. source: "./media/characters/cai/back.svg",
  41295. extra: 1809/1708,
  41296. bottom: 31/1840
  41297. }
  41298. },
  41299. },
  41300. [
  41301. {
  41302. name: "Normal",
  41303. height: math.unit(5 + 11/12, "feet"),
  41304. default: true
  41305. },
  41306. {
  41307. name: "Big",
  41308. height: math.unit(15, "feet")
  41309. },
  41310. {
  41311. name: "Macro",
  41312. height: math.unit(200, "feet")
  41313. },
  41314. ]
  41315. ))
  41316. characterMakers.push(() => makeCharacter(
  41317. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  41318. {
  41319. front: {
  41320. height: math.unit(5 + 6/12, "feet"),
  41321. weight: math.unit(160, "lb"),
  41322. name: "Front",
  41323. image: {
  41324. source: "./media/characters/zanna-virtuedòttir/front.svg",
  41325. extra: 1227/1174,
  41326. bottom: 37/1264
  41327. }
  41328. },
  41329. },
  41330. [
  41331. {
  41332. name: "Macro",
  41333. height: math.unit(444, "meters"),
  41334. default: true
  41335. },
  41336. ]
  41337. ))
  41338. characterMakers.push(() => makeCharacter(
  41339. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  41340. {
  41341. front: {
  41342. height: math.unit(18 + 7/12, "feet"),
  41343. name: "Front",
  41344. image: {
  41345. source: "./media/characters/rex/front.svg",
  41346. extra: 1941/1807,
  41347. bottom: 66/2007
  41348. }
  41349. },
  41350. back: {
  41351. height: math.unit(18 + 7/12, "feet"),
  41352. name: "Back",
  41353. image: {
  41354. source: "./media/characters/rex/back.svg",
  41355. extra: 1937/1822,
  41356. bottom: 42/1979
  41357. }
  41358. },
  41359. boot: {
  41360. height: math.unit(3.45, "feet"),
  41361. name: "Boot",
  41362. image: {
  41363. source: "./media/characters/rex/boot.svg"
  41364. }
  41365. },
  41366. paw: {
  41367. height: math.unit(4.17, "feet"),
  41368. name: "Paw",
  41369. image: {
  41370. source: "./media/characters/rex/paw.svg"
  41371. }
  41372. },
  41373. head: {
  41374. height: math.unit(6.728, "feet"),
  41375. name: "Head",
  41376. image: {
  41377. source: "./media/characters/rex/head.svg"
  41378. }
  41379. },
  41380. },
  41381. [
  41382. {
  41383. name: "Nano",
  41384. height: math.unit(18 + 7/12, "feet")
  41385. },
  41386. {
  41387. name: "Micro",
  41388. height: math.unit(1.5, "megameters")
  41389. },
  41390. {
  41391. name: "Normal",
  41392. height: math.unit(440, "megameters"),
  41393. default: true
  41394. },
  41395. {
  41396. name: "Macro",
  41397. height: math.unit(2.5, "gigameters")
  41398. },
  41399. {
  41400. name: "Gigamacro",
  41401. height: math.unit(2, "galaxies")
  41402. },
  41403. ]
  41404. ))
  41405. characterMakers.push(() => makeCharacter(
  41406. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  41407. {
  41408. side: {
  41409. height: math.unit(32, "feet"),
  41410. weight: math.unit(250000, "lb"),
  41411. name: "Side",
  41412. image: {
  41413. source: "./media/characters/silverwing/side.svg",
  41414. extra: 1100/1019,
  41415. bottom: 204/1304
  41416. }
  41417. },
  41418. },
  41419. [
  41420. {
  41421. name: "Normal",
  41422. height: math.unit(32, "feet"),
  41423. default: true
  41424. },
  41425. ]
  41426. ))
  41427. characterMakers.push(() => makeCharacter(
  41428. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  41429. {
  41430. front: {
  41431. height: math.unit(6 + 6/12, "feet"),
  41432. weight: math.unit(350, "lb"),
  41433. name: "Front",
  41434. image: {
  41435. source: "./media/characters/tristan-hawthorne/front.svg",
  41436. extra: 1159/1124,
  41437. bottom: 37/1196
  41438. }
  41439. },
  41440. },
  41441. [
  41442. {
  41443. name: "Normal",
  41444. height: math.unit(6 + 6/12, "feet"),
  41445. default: true
  41446. },
  41447. ]
  41448. ))
  41449. characterMakers.push(() => makeCharacter(
  41450. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  41451. {
  41452. front: {
  41453. height: math.unit(5 + 11/12, "feet"),
  41454. weight: math.unit(190, "lb"),
  41455. name: "Front",
  41456. image: {
  41457. source: "./media/characters/mizu/front.svg",
  41458. extra: 1988/1788,
  41459. bottom: 14/2002
  41460. }
  41461. },
  41462. },
  41463. [
  41464. {
  41465. name: "Normal",
  41466. height: math.unit(5 + 11/12, "feet"),
  41467. default: true
  41468. },
  41469. ]
  41470. ))
  41471. characterMakers.push(() => makeCharacter(
  41472. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  41473. {
  41474. front: {
  41475. height: math.unit(6, "feet"),
  41476. name: "Front",
  41477. image: {
  41478. source: "./media/characters/moonlight-rose-terra/front.svg",
  41479. extra: 1434/1252,
  41480. bottom: 48/1482
  41481. }
  41482. },
  41483. },
  41484. [
  41485. {
  41486. name: "TRAPPIST-1D",
  41487. height: math.unit(4992*2, "km")
  41488. },
  41489. {
  41490. name: "Earth",
  41491. height: math.unit(6367*2, "km"),
  41492. default: true
  41493. },
  41494. {
  41495. name: "Kepler-22b",
  41496. height: math.unit(15282*2, "km")
  41497. },
  41498. ]
  41499. ))
  41500. characterMakers.push(() => makeCharacter(
  41501. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  41502. {
  41503. front: {
  41504. height: math.unit(6, "feet"),
  41505. name: "Front",
  41506. image: {
  41507. source: "./media/characters/moonlight-rose-neptune/front.svg",
  41508. extra: 1851/1712,
  41509. bottom: 0/1851
  41510. }
  41511. },
  41512. },
  41513. [
  41514. {
  41515. name: "Enceladus",
  41516. height: math.unit(513*2, "km")
  41517. },
  41518. {
  41519. name: "Europe",
  41520. height: math.unit(1560*2, "km")
  41521. },
  41522. {
  41523. name: "Neptune",
  41524. height: math.unit(24622*2, "km"),
  41525. default: true
  41526. },
  41527. {
  41528. name: "CoRoT-9b",
  41529. height: math.unit(75067*2, "km")
  41530. },
  41531. ]
  41532. ))
  41533. characterMakers.push(() => makeCharacter(
  41534. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  41535. {
  41536. front: {
  41537. height: math.unit(6, "feet"),
  41538. name: "Front",
  41539. image: {
  41540. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  41541. extra: 1367/1286,
  41542. bottom: 55/1422
  41543. }
  41544. },
  41545. },
  41546. [
  41547. {
  41548. name: "Saturn",
  41549. height: math.unit(58232*2, "km")
  41550. },
  41551. {
  41552. name: "Jupiter",
  41553. height: math.unit(69911*2, "km"),
  41554. default: true
  41555. },
  41556. {
  41557. name: "HD 100546 b",
  41558. height: math.unit(482938, "km")
  41559. },
  41560. ]
  41561. ))
  41562. characterMakers.push(() => makeCharacter(
  41563. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  41564. {
  41565. front: {
  41566. height: math.unit(1.7, "feet"),
  41567. weight: math.unit(50, "lb"),
  41568. name: "Front",
  41569. image: {
  41570. source: "./media/characters/dechroma/front.svg",
  41571. extra: 1095/859,
  41572. bottom: 64/1159
  41573. }
  41574. },
  41575. },
  41576. [
  41577. {
  41578. name: "Normal",
  41579. height: math.unit(1.7, "feet"),
  41580. default: true
  41581. },
  41582. ]
  41583. ))
  41584. characterMakers.push(() => makeCharacter(
  41585. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  41586. {
  41587. side: {
  41588. height: math.unit(30, "feet"),
  41589. name: "Side",
  41590. image: {
  41591. source: "./media/characters/veluren-thanazel/side.svg",
  41592. extra: 1611/633,
  41593. bottom: 118/1729
  41594. }
  41595. },
  41596. front: {
  41597. height: math.unit(30, "feet"),
  41598. name: "Front",
  41599. image: {
  41600. source: "./media/characters/veluren-thanazel/front.svg",
  41601. extra: 1486/636,
  41602. bottom: 238/1724
  41603. }
  41604. },
  41605. head: {
  41606. height: math.unit(21.4, "feet"),
  41607. name: "Head",
  41608. image: {
  41609. source: "./media/characters/veluren-thanazel/head.svg"
  41610. }
  41611. },
  41612. genitals: {
  41613. height: math.unit(19.4, "feet"),
  41614. name: "Genitals",
  41615. image: {
  41616. source: "./media/characters/veluren-thanazel/genitals.svg"
  41617. }
  41618. },
  41619. },
  41620. [
  41621. {
  41622. name: "Social",
  41623. height: math.unit(6, "feet")
  41624. },
  41625. {
  41626. name: "Play",
  41627. height: math.unit(12, "feet")
  41628. },
  41629. {
  41630. name: "True",
  41631. height: math.unit(30, "feet"),
  41632. default: true
  41633. },
  41634. ]
  41635. ))
  41636. characterMakers.push(() => makeCharacter(
  41637. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  41638. {
  41639. front: {
  41640. height: math.unit(7 + 6/12, "feet"),
  41641. weight: math.unit(500, "kg"),
  41642. name: "Front",
  41643. image: {
  41644. source: "./media/characters/arcturas/front.svg",
  41645. extra: 1700/1500,
  41646. bottom: 145/1845
  41647. }
  41648. },
  41649. },
  41650. [
  41651. {
  41652. name: "Normal",
  41653. height: math.unit(7 + 6/12, "feet"),
  41654. default: true
  41655. },
  41656. ]
  41657. ))
  41658. characterMakers.push(() => makeCharacter(
  41659. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41660. {
  41661. side: {
  41662. height: math.unit(6, "feet"),
  41663. weight: math.unit(2, "tons"),
  41664. name: "Side",
  41665. image: {
  41666. source: "./media/characters/vitaen/side.svg",
  41667. extra: 1157/617,
  41668. bottom: 122/1279
  41669. }
  41670. },
  41671. },
  41672. [
  41673. {
  41674. name: "Normal",
  41675. height: math.unit(6, "feet"),
  41676. default: true
  41677. },
  41678. ]
  41679. ))
  41680. characterMakers.push(() => makeCharacter(
  41681. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41682. {
  41683. front: {
  41684. height: math.unit(19, "feet"),
  41685. name: "Front",
  41686. image: {
  41687. source: "./media/characters/fia-dreamweaver/front.svg",
  41688. extra: 1630/1504,
  41689. bottom: 25/1655
  41690. }
  41691. },
  41692. },
  41693. [
  41694. {
  41695. name: "Normal",
  41696. height: math.unit(19, "feet"),
  41697. default: true
  41698. },
  41699. ]
  41700. ))
  41701. characterMakers.push(() => makeCharacter(
  41702. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41703. {
  41704. front: {
  41705. height: math.unit(5 + 4/12, "feet"),
  41706. name: "Front",
  41707. image: {
  41708. source: "./media/characters/artan/front.svg",
  41709. extra: 1618/1535,
  41710. bottom: 46/1664
  41711. }
  41712. },
  41713. back: {
  41714. height: math.unit(5 + 4/12, "feet"),
  41715. name: "Back",
  41716. image: {
  41717. source: "./media/characters/artan/back.svg",
  41718. extra: 1618/1543,
  41719. bottom: 31/1649
  41720. }
  41721. },
  41722. },
  41723. [
  41724. {
  41725. name: "Normal",
  41726. height: math.unit(5 + 4/12, "feet"),
  41727. default: true
  41728. },
  41729. ]
  41730. ))
  41731. characterMakers.push(() => makeCharacter(
  41732. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41733. {
  41734. side: {
  41735. height: math.unit(182, "cm"),
  41736. weight: math.unit(1000, "lb"),
  41737. name: "Side",
  41738. image: {
  41739. source: "./media/characters/silver-dragon/side.svg",
  41740. extra: 710/287,
  41741. bottom: 88/798
  41742. }
  41743. },
  41744. },
  41745. [
  41746. {
  41747. name: "Normal",
  41748. height: math.unit(182, "cm"),
  41749. default: true
  41750. },
  41751. ]
  41752. ))
  41753. characterMakers.push(() => makeCharacter(
  41754. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41755. {
  41756. side: {
  41757. height: math.unit(6 + 6/12, "feet"),
  41758. weight: math.unit(1.5, "tons"),
  41759. name: "Side",
  41760. image: {
  41761. source: "./media/characters/zephyr/side.svg",
  41762. extra: 1433/586,
  41763. bottom: 109/1542
  41764. }
  41765. },
  41766. },
  41767. [
  41768. {
  41769. name: "Normal",
  41770. height: math.unit(6 + 6/12, "feet"),
  41771. default: true
  41772. },
  41773. ]
  41774. ))
  41775. characterMakers.push(() => makeCharacter(
  41776. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41777. {
  41778. side: {
  41779. height: math.unit(1, "feet"),
  41780. name: "Side",
  41781. image: {
  41782. source: "./media/characters/vixye/side.svg",
  41783. extra: 632/541,
  41784. bottom: 0/632
  41785. }
  41786. },
  41787. },
  41788. [
  41789. {
  41790. name: "Normal",
  41791. height: math.unit(1, "feet"),
  41792. default: true
  41793. },
  41794. {
  41795. name: "True",
  41796. height: math.unit(1e15, "multiverses")
  41797. },
  41798. ]
  41799. ))
  41800. characterMakers.push(() => makeCharacter(
  41801. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41802. {
  41803. front: {
  41804. height: math.unit(8 + 2/12, "feet"),
  41805. weight: math.unit(650, "lb"),
  41806. name: "Front",
  41807. image: {
  41808. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41809. extra: 1174/1137,
  41810. bottom: 82/1256
  41811. }
  41812. },
  41813. back: {
  41814. height: math.unit(8 + 2/12, "feet"),
  41815. weight: math.unit(650, "lb"),
  41816. name: "Back",
  41817. image: {
  41818. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41819. extra: 1204/1157,
  41820. bottom: 46/1250
  41821. }
  41822. },
  41823. },
  41824. [
  41825. {
  41826. name: "Wildform",
  41827. height: math.unit(8 + 2/12, "feet"),
  41828. default: true
  41829. },
  41830. ]
  41831. ))
  41832. characterMakers.push(() => makeCharacter(
  41833. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41834. {
  41835. front: {
  41836. height: math.unit(18, "feet"),
  41837. name: "Front",
  41838. image: {
  41839. source: "./media/characters/cyphin/front.svg",
  41840. extra: 970/886,
  41841. bottom: 42/1012
  41842. }
  41843. },
  41844. back: {
  41845. height: math.unit(18, "feet"),
  41846. name: "Back",
  41847. image: {
  41848. source: "./media/characters/cyphin/back.svg",
  41849. extra: 1009/894,
  41850. bottom: 24/1033
  41851. }
  41852. },
  41853. head: {
  41854. height: math.unit(5.05, "feet"),
  41855. name: "Head",
  41856. image: {
  41857. source: "./media/characters/cyphin/head.svg"
  41858. }
  41859. },
  41860. tailbud: {
  41861. height: math.unit(5, "feet"),
  41862. name: "Tailbud",
  41863. image: {
  41864. source: "./media/characters/cyphin/tailbud.svg"
  41865. }
  41866. },
  41867. },
  41868. [
  41869. ]
  41870. ))
  41871. characterMakers.push(() => makeCharacter(
  41872. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41873. {
  41874. side: {
  41875. height: math.unit(10, "feet"),
  41876. weight: math.unit(6, "tons"),
  41877. name: "Side",
  41878. image: {
  41879. source: "./media/characters/raijin/side.svg",
  41880. extra: 1529/613,
  41881. bottom: 337/1866
  41882. }
  41883. },
  41884. },
  41885. [
  41886. {
  41887. name: "Normal",
  41888. height: math.unit(10, "feet"),
  41889. default: true
  41890. },
  41891. ]
  41892. ))
  41893. characterMakers.push(() => makeCharacter(
  41894. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41895. {
  41896. side: {
  41897. height: math.unit(9, "feet"),
  41898. name: "Side",
  41899. image: {
  41900. source: "./media/characters/nilghais/side.svg",
  41901. extra: 1047/744,
  41902. bottom: 91/1138
  41903. }
  41904. },
  41905. head: {
  41906. height: math.unit(3.14, "feet"),
  41907. name: "Head",
  41908. image: {
  41909. source: "./media/characters/nilghais/head.svg"
  41910. }
  41911. },
  41912. mouth: {
  41913. height: math.unit(4.6, "feet"),
  41914. name: "Mouth",
  41915. image: {
  41916. source: "./media/characters/nilghais/mouth.svg"
  41917. }
  41918. },
  41919. wings: {
  41920. height: math.unit(24, "feet"),
  41921. name: "Wings",
  41922. image: {
  41923. source: "./media/characters/nilghais/wings.svg"
  41924. }
  41925. },
  41926. ass: {
  41927. height: math.unit(6.12, "feet"),
  41928. name: "Ass",
  41929. image: {
  41930. source: "./media/characters/nilghais/ass.svg"
  41931. }
  41932. },
  41933. },
  41934. [
  41935. {
  41936. name: "Normal",
  41937. height: math.unit(9, "feet"),
  41938. default: true
  41939. },
  41940. ]
  41941. ))
  41942. characterMakers.push(() => makeCharacter(
  41943. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  41944. {
  41945. regular: {
  41946. height: math.unit(16 + 2/12, "feet"),
  41947. weight: math.unit(2300, "lb"),
  41948. name: "Regular",
  41949. image: {
  41950. source: "./media/characters/zolgar/regular.svg",
  41951. extra: 1246/1004,
  41952. bottom: 124/1370
  41953. }
  41954. },
  41955. boxers: {
  41956. height: math.unit(16 + 2/12, "feet"),
  41957. weight: math.unit(2300, "lb"),
  41958. name: "Boxers",
  41959. image: {
  41960. source: "./media/characters/zolgar/boxers.svg",
  41961. extra: 1246/1004,
  41962. bottom: 124/1370
  41963. }
  41964. },
  41965. armored: {
  41966. height: math.unit(16 + 2/12, "feet"),
  41967. weight: math.unit(2300, "lb"),
  41968. name: "Armored",
  41969. image: {
  41970. source: "./media/characters/zolgar/armored.svg",
  41971. extra: 1246/1004,
  41972. bottom: 124/1370
  41973. }
  41974. },
  41975. goth: {
  41976. height: math.unit(16 + 2/12, "feet"),
  41977. weight: math.unit(2300, "lb"),
  41978. name: "Goth",
  41979. image: {
  41980. source: "./media/characters/zolgar/goth.svg",
  41981. extra: 1246/1004,
  41982. bottom: 124/1370
  41983. }
  41984. },
  41985. },
  41986. [
  41987. {
  41988. name: "Shrunken Down",
  41989. height: math.unit(9 + 2/12, "feet")
  41990. },
  41991. {
  41992. name: "Normal",
  41993. height: math.unit(16 + 2/12, "feet"),
  41994. default: true
  41995. },
  41996. ]
  41997. ))
  41998. characterMakers.push(() => makeCharacter(
  41999. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  42000. {
  42001. front: {
  42002. height: math.unit(6, "feet"),
  42003. weight: math.unit(168, "lb"),
  42004. name: "Front",
  42005. image: {
  42006. source: "./media/characters/luca/front.svg",
  42007. extra: 841/667,
  42008. bottom: 102/943
  42009. }
  42010. },
  42011. },
  42012. [
  42013. {
  42014. name: "Normal",
  42015. height: math.unit(6, "feet"),
  42016. default: true
  42017. },
  42018. ]
  42019. ))
  42020. characterMakers.push(() => makeCharacter(
  42021. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  42022. {
  42023. side: {
  42024. height: math.unit(7 + 3/12, "feet"),
  42025. weight: math.unit(312, "lb"),
  42026. name: "Side",
  42027. image: {
  42028. source: "./media/characters/zezo/side.svg",
  42029. extra: 1192/1067,
  42030. bottom: 63/1255
  42031. }
  42032. },
  42033. },
  42034. [
  42035. {
  42036. name: "Normal",
  42037. height: math.unit(7 + 3/12, "feet"),
  42038. default: true
  42039. },
  42040. ]
  42041. ))
  42042. characterMakers.push(() => makeCharacter(
  42043. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  42044. {
  42045. front: {
  42046. height: math.unit(5 + 5/12, "feet"),
  42047. weight: math.unit(170, "lb"),
  42048. name: "Front",
  42049. image: {
  42050. source: "./media/characters/mayso/front.svg",
  42051. extra: 1215/1108,
  42052. bottom: 16/1231
  42053. }
  42054. },
  42055. },
  42056. [
  42057. {
  42058. name: "Normal",
  42059. height: math.unit(5 + 5/12, "feet"),
  42060. default: true
  42061. },
  42062. ]
  42063. ))
  42064. characterMakers.push(() => makeCharacter(
  42065. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  42066. {
  42067. front: {
  42068. height: math.unit(4 + 3/12, "feet"),
  42069. weight: math.unit(80, "lb"),
  42070. name: "Front",
  42071. image: {
  42072. source: "./media/characters/hess/front.svg",
  42073. extra: 1200/1123,
  42074. bottom: 16/1216
  42075. }
  42076. },
  42077. },
  42078. [
  42079. {
  42080. name: "Normal",
  42081. height: math.unit(4 + 3/12, "feet"),
  42082. default: true
  42083. },
  42084. ]
  42085. ))
  42086. characterMakers.push(() => makeCharacter(
  42087. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  42088. {
  42089. front: {
  42090. height: math.unit(1.9, "meters"),
  42091. name: "Front",
  42092. image: {
  42093. source: "./media/characters/ashgar/front.svg",
  42094. extra: 1177/1146,
  42095. bottom: 99/1276
  42096. }
  42097. },
  42098. back: {
  42099. height: math.unit(1.9, "meters"),
  42100. name: "Back",
  42101. image: {
  42102. source: "./media/characters/ashgar/back.svg",
  42103. extra: 1201/1183,
  42104. bottom: 53/1254
  42105. }
  42106. },
  42107. feral: {
  42108. height: math.unit(1.4, "meters"),
  42109. name: "Feral",
  42110. image: {
  42111. source: "./media/characters/ashgar/feral.svg",
  42112. extra: 370/345,
  42113. bottom: 45/415
  42114. }
  42115. },
  42116. },
  42117. [
  42118. {
  42119. name: "Normal",
  42120. height: math.unit(1.9, "meters"),
  42121. default: true
  42122. },
  42123. ]
  42124. ))
  42125. characterMakers.push(() => makeCharacter(
  42126. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  42127. {
  42128. regular: {
  42129. height: math.unit(6, "feet"),
  42130. weight: math.unit(220, "lb"),
  42131. name: "Regular",
  42132. image: {
  42133. source: "./media/characters/phillip/regular.svg",
  42134. extra: 1373/1277,
  42135. bottom: 75/1448
  42136. }
  42137. },
  42138. dressed: {
  42139. height: math.unit(6, "feet"),
  42140. weight: math.unit(220, "lb"),
  42141. name: "Dressed",
  42142. image: {
  42143. source: "./media/characters/phillip/dressed.svg",
  42144. extra: 1373/1277,
  42145. bottom: 75/1448
  42146. }
  42147. },
  42148. paw: {
  42149. height: math.unit(1.44, "feet"),
  42150. name: "Paw",
  42151. image: {
  42152. source: "./media/characters/phillip/paw.svg"
  42153. }
  42154. },
  42155. },
  42156. [
  42157. {
  42158. name: "Normal",
  42159. height: math.unit(6, "feet"),
  42160. default: true
  42161. },
  42162. ]
  42163. ))
  42164. characterMakers.push(() => makeCharacter(
  42165. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  42166. {
  42167. side: {
  42168. height: math.unit(42, "feet"),
  42169. name: "Side",
  42170. image: {
  42171. source: "./media/characters/uvula/side.svg",
  42172. extra: 683/586,
  42173. bottom: 60/743
  42174. }
  42175. },
  42176. front: {
  42177. height: math.unit(42, "feet"),
  42178. name: "Front",
  42179. image: {
  42180. source: "./media/characters/uvula/front.svg",
  42181. extra: 705/613,
  42182. bottom: 54/759
  42183. }
  42184. },
  42185. maw: {
  42186. height: math.unit(23.5, "feet"),
  42187. name: "Maw",
  42188. image: {
  42189. source: "./media/characters/uvula/maw.svg"
  42190. }
  42191. },
  42192. },
  42193. [
  42194. {
  42195. name: "Original Size",
  42196. height: math.unit(14, "inches")
  42197. },
  42198. {
  42199. name: "Human Size",
  42200. height: math.unit(6, "feet")
  42201. },
  42202. {
  42203. name: "Big",
  42204. height: math.unit(42, "feet"),
  42205. default: true
  42206. },
  42207. {
  42208. name: "Bigger",
  42209. height: math.unit(100, "feet")
  42210. },
  42211. ]
  42212. ))
  42213. characterMakers.push(() => makeCharacter(
  42214. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  42215. {
  42216. front: {
  42217. height: math.unit(5 + 11/12, "feet"),
  42218. name: "Front",
  42219. image: {
  42220. source: "./media/characters/lannah/front.svg",
  42221. extra: 1208/1113,
  42222. bottom: 97/1305
  42223. }
  42224. },
  42225. },
  42226. [
  42227. {
  42228. name: "Normal",
  42229. height: math.unit(5 + 11/12, "feet"),
  42230. default: true
  42231. },
  42232. ]
  42233. ))
  42234. characterMakers.push(() => makeCharacter(
  42235. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  42236. {
  42237. front: {
  42238. height: math.unit(6 + 3/12, "feet"),
  42239. weight: math.unit(3.5, "tons"),
  42240. name: "Front",
  42241. image: {
  42242. source: "./media/characters/emberflame/front.svg",
  42243. extra: 1198/672,
  42244. bottom: 82/1280
  42245. }
  42246. },
  42247. side: {
  42248. height: math.unit(6 + 3/12, "feet"),
  42249. weight: math.unit(3.5, "tons"),
  42250. name: "Side",
  42251. image: {
  42252. source: "./media/characters/emberflame/side.svg",
  42253. extra: 938/527,
  42254. bottom: 56/994
  42255. }
  42256. },
  42257. },
  42258. [
  42259. {
  42260. name: "Normal",
  42261. height: math.unit(6 + 3/12, "feet"),
  42262. default: true
  42263. },
  42264. ]
  42265. ))
  42266. characterMakers.push(() => makeCharacter(
  42267. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  42268. {
  42269. side: {
  42270. height: math.unit(17.5, "feet"),
  42271. weight: math.unit(35, "tons"),
  42272. name: "Side",
  42273. image: {
  42274. source: "./media/characters/sophie-ambrose/side.svg",
  42275. extra: 1573/1242,
  42276. bottom: 71/1644
  42277. }
  42278. },
  42279. maw: {
  42280. height: math.unit(7.4, "feet"),
  42281. name: "Maw",
  42282. image: {
  42283. source: "./media/characters/sophie-ambrose/maw.svg"
  42284. }
  42285. },
  42286. },
  42287. [
  42288. {
  42289. name: "Normal",
  42290. height: math.unit(17.5, "feet"),
  42291. default: true
  42292. },
  42293. ]
  42294. ))
  42295. characterMakers.push(() => makeCharacter(
  42296. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  42297. {
  42298. front: {
  42299. height: math.unit(280, "feet"),
  42300. weight: math.unit(550, "tons"),
  42301. name: "Front",
  42302. image: {
  42303. source: "./media/characters/king-mugi/front.svg",
  42304. extra: 1102/947,
  42305. bottom: 104/1206
  42306. }
  42307. },
  42308. },
  42309. [
  42310. {
  42311. name: "King Mugi",
  42312. height: math.unit(280, "feet"),
  42313. default: true
  42314. },
  42315. ]
  42316. ))
  42317. characterMakers.push(() => makeCharacter(
  42318. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  42319. {
  42320. front: {
  42321. height: math.unit(64, "meters"),
  42322. name: "Front",
  42323. image: {
  42324. source: "./media/characters/nova-fox/front.svg",
  42325. extra: 1310/1246,
  42326. bottom: 65/1375
  42327. }
  42328. },
  42329. },
  42330. [
  42331. {
  42332. name: "Macro",
  42333. height: math.unit(64, "meters"),
  42334. default: true
  42335. },
  42336. ]
  42337. ))
  42338. characterMakers.push(() => makeCharacter(
  42339. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  42340. {
  42341. front: {
  42342. height: math.unit(6 + 3/12, "feet"),
  42343. weight: math.unit(170, "lb"),
  42344. name: "Front",
  42345. image: {
  42346. source: "./media/characters/sam-bat/front.svg",
  42347. extra: 1601/1411,
  42348. bottom: 125/1726
  42349. }
  42350. },
  42351. back: {
  42352. height: math.unit(6 + 3/12, "feet"),
  42353. weight: math.unit(170, "lb"),
  42354. name: "Back",
  42355. image: {
  42356. source: "./media/characters/sam-bat/back.svg",
  42357. extra: 1577/1405,
  42358. bottom: 58/1635
  42359. }
  42360. },
  42361. },
  42362. [
  42363. {
  42364. name: "Normal",
  42365. height: math.unit(6 + 3/12, "feet"),
  42366. default: true
  42367. },
  42368. ]
  42369. ))
  42370. characterMakers.push(() => makeCharacter(
  42371. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  42372. {
  42373. front: {
  42374. height: math.unit(59, "feet"),
  42375. weight: math.unit(40000, "lb"),
  42376. name: "Front",
  42377. image: {
  42378. source: "./media/characters/inari/front.svg",
  42379. extra: 1884/1350,
  42380. bottom: 95/1979
  42381. }
  42382. },
  42383. },
  42384. [
  42385. {
  42386. name: "Gigantamax",
  42387. height: math.unit(59, "feet"),
  42388. default: true
  42389. },
  42390. ]
  42391. ))
  42392. characterMakers.push(() => makeCharacter(
  42393. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  42394. {
  42395. front: {
  42396. height: math.unit(5 + 8/12, "feet"),
  42397. name: "Front",
  42398. image: {
  42399. source: "./media/characters/elizabeth/front.svg",
  42400. extra: 1395/1298,
  42401. bottom: 54/1449
  42402. }
  42403. },
  42404. mouth: {
  42405. height: math.unit(1.97, "feet"),
  42406. name: "Mouth",
  42407. image: {
  42408. source: "./media/characters/elizabeth/mouth.svg"
  42409. }
  42410. },
  42411. foot: {
  42412. height: math.unit(1.17, "feet"),
  42413. name: "Foot",
  42414. image: {
  42415. source: "./media/characters/elizabeth/foot.svg"
  42416. }
  42417. },
  42418. },
  42419. [
  42420. {
  42421. name: "Normal",
  42422. height: math.unit(5 + 8/12, "feet"),
  42423. default: true
  42424. },
  42425. {
  42426. name: "Minimacro",
  42427. height: math.unit(18, "feet")
  42428. },
  42429. {
  42430. name: "Macro",
  42431. height: math.unit(180, "feet")
  42432. },
  42433. ]
  42434. ))
  42435. characterMakers.push(() => makeCharacter(
  42436. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  42437. {
  42438. front: {
  42439. height: math.unit(5 + 2/12, "feet"),
  42440. name: "Front",
  42441. image: {
  42442. source: "./media/characters/october-gossamer/front.svg",
  42443. extra: 505/454,
  42444. bottom: 7/512
  42445. }
  42446. },
  42447. back: {
  42448. height: math.unit(5 + 2/12, "feet"),
  42449. name: "Back",
  42450. image: {
  42451. source: "./media/characters/october-gossamer/back.svg",
  42452. extra: 501/454,
  42453. bottom: 11/512
  42454. }
  42455. },
  42456. },
  42457. [
  42458. {
  42459. name: "Normal",
  42460. height: math.unit(5 + 2/12, "feet"),
  42461. default: true
  42462. },
  42463. ]
  42464. ))
  42465. characterMakers.push(() => makeCharacter(
  42466. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  42467. {
  42468. front: {
  42469. height: math.unit(5, "feet"),
  42470. name: "Front",
  42471. image: {
  42472. source: "./media/characters/epiglottis/front.svg",
  42473. extra: 923/849,
  42474. bottom: 17/940
  42475. }
  42476. },
  42477. },
  42478. [
  42479. {
  42480. name: "Original Size",
  42481. height: math.unit(10, "inches")
  42482. },
  42483. {
  42484. name: "Human Size",
  42485. height: math.unit(5, "feet"),
  42486. default: true
  42487. },
  42488. {
  42489. name: "Big",
  42490. height: math.unit(25, "feet")
  42491. },
  42492. {
  42493. name: "Bigger",
  42494. height: math.unit(50, "feet")
  42495. },
  42496. {
  42497. name: "oh lawd",
  42498. height: math.unit(75, "feet")
  42499. },
  42500. ]
  42501. ))
  42502. characterMakers.push(() => makeCharacter(
  42503. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  42504. {
  42505. front: {
  42506. height: math.unit(2 + 4/12, "feet"),
  42507. weight: math.unit(60, "lb"),
  42508. name: "Front",
  42509. image: {
  42510. source: "./media/characters/lerm/front.svg",
  42511. extra: 796/790,
  42512. bottom: 79/875
  42513. }
  42514. },
  42515. },
  42516. [
  42517. {
  42518. name: "Normal",
  42519. height: math.unit(2 + 4/12, "feet"),
  42520. default: true
  42521. },
  42522. ]
  42523. ))
  42524. characterMakers.push(() => makeCharacter(
  42525. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  42526. {
  42527. front: {
  42528. height: math.unit(5.5, "feet"),
  42529. weight: math.unit(130, "lb"),
  42530. name: "Front",
  42531. image: {
  42532. source: "./media/characters/xena-nebadon/front.svg",
  42533. extra: 1828/1730,
  42534. bottom: 79/1907
  42535. }
  42536. },
  42537. },
  42538. [
  42539. {
  42540. name: "Tiny Puppy",
  42541. height: math.unit(3, "inches")
  42542. },
  42543. {
  42544. name: "Normal",
  42545. height: math.unit(5.5, "feet"),
  42546. default: true
  42547. },
  42548. {
  42549. name: "Lotta Lady",
  42550. height: math.unit(12, "feet")
  42551. },
  42552. {
  42553. name: "Pretty Big",
  42554. height: math.unit(100, "feet")
  42555. },
  42556. {
  42557. name: "Big",
  42558. height: math.unit(500, "feet")
  42559. },
  42560. {
  42561. name: "Skyscraper Toys",
  42562. height: math.unit(2500, "feet")
  42563. },
  42564. {
  42565. name: "Plane Catcher",
  42566. height: math.unit(8, "miles")
  42567. },
  42568. {
  42569. name: "Planet Toys",
  42570. height: math.unit(15, "earths")
  42571. },
  42572. {
  42573. name: "Stardust",
  42574. height: math.unit(0.25, "galaxies")
  42575. },
  42576. {
  42577. name: "Snacks",
  42578. height: math.unit(70, "universes")
  42579. },
  42580. ]
  42581. ))
  42582. characterMakers.push(() => makeCharacter(
  42583. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  42584. {
  42585. front: {
  42586. height: math.unit(1.6, "meters"),
  42587. weight: math.unit(60, "kg"),
  42588. name: "Front",
  42589. image: {
  42590. source: "./media/characters/bounty/front.svg",
  42591. extra: 1426/1308,
  42592. bottom: 15/1441
  42593. }
  42594. },
  42595. back: {
  42596. height: math.unit(1.6, "meters"),
  42597. weight: math.unit(60, "kg"),
  42598. name: "Back",
  42599. image: {
  42600. source: "./media/characters/bounty/back.svg",
  42601. extra: 1417/1307,
  42602. bottom: 8/1425
  42603. }
  42604. },
  42605. },
  42606. [
  42607. {
  42608. name: "Normal",
  42609. height: math.unit(1.6, "meters"),
  42610. default: true
  42611. },
  42612. {
  42613. name: "Macro",
  42614. height: math.unit(300, "meters")
  42615. },
  42616. ]
  42617. ))
  42618. characterMakers.push(() => makeCharacter(
  42619. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  42620. {
  42621. front: {
  42622. height: math.unit(2 + 8/12, "feet"),
  42623. weight: math.unit(15, "lb"),
  42624. name: "Front",
  42625. image: {
  42626. source: "./media/characters/mochi/front.svg",
  42627. extra: 1022/852,
  42628. bottom: 435/1457
  42629. }
  42630. },
  42631. back: {
  42632. height: math.unit(2 + 8/12, "feet"),
  42633. weight: math.unit(15, "lb"),
  42634. name: "Back",
  42635. image: {
  42636. source: "./media/characters/mochi/back.svg",
  42637. extra: 1335/1119,
  42638. bottom: 39/1374
  42639. }
  42640. },
  42641. bird: {
  42642. height: math.unit(2 + 8/12, "feet"),
  42643. weight: math.unit(15, "lb"),
  42644. name: "Bird",
  42645. image: {
  42646. source: "./media/characters/mochi/bird.svg",
  42647. extra: 1251/1113,
  42648. bottom: 178/1429
  42649. }
  42650. },
  42651. kaiju: {
  42652. height: math.unit(154, "feet"),
  42653. weight: math.unit(1e7, "lb"),
  42654. name: "Kaiju",
  42655. image: {
  42656. source: "./media/characters/mochi/kaiju.svg",
  42657. extra: 460/324,
  42658. bottom: 40/500
  42659. }
  42660. },
  42661. head: {
  42662. height: math.unit(1.21, "feet"),
  42663. name: "Head",
  42664. image: {
  42665. source: "./media/characters/mochi/head.svg"
  42666. }
  42667. },
  42668. alternateTail: {
  42669. height: math.unit(2 + 8/12, "feet"),
  42670. weight: math.unit(45, "lb"),
  42671. name: "Alternate Tail",
  42672. image: {
  42673. source: "./media/characters/mochi/alternate-tail.svg",
  42674. extra: 139/76,
  42675. bottom: 45/184
  42676. }
  42677. },
  42678. },
  42679. [
  42680. {
  42681. name: "Micro",
  42682. height: math.unit(2, "inches")
  42683. },
  42684. {
  42685. name: "Normal",
  42686. height: math.unit(2 + 8/12, "feet"),
  42687. default: true
  42688. },
  42689. {
  42690. name: "Macro",
  42691. height: math.unit(106, "feet")
  42692. },
  42693. ]
  42694. ))
  42695. characterMakers.push(() => makeCharacter(
  42696. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42697. {
  42698. front: {
  42699. height: math.unit(5.67, "feet"),
  42700. weight: math.unit(135, "lb"),
  42701. name: "Front",
  42702. image: {
  42703. source: "./media/characters/sarel/front.svg",
  42704. extra: 865/788,
  42705. bottom: 97/962
  42706. }
  42707. },
  42708. back: {
  42709. height: math.unit(5.67, "feet"),
  42710. weight: math.unit(135, "lb"),
  42711. name: "Back",
  42712. image: {
  42713. source: "./media/characters/sarel/back.svg",
  42714. extra: 857/777,
  42715. bottom: 32/889
  42716. }
  42717. },
  42718. chozoan: {
  42719. height: math.unit(5.67, "feet"),
  42720. weight: math.unit(135, "lb"),
  42721. name: "Chozoan",
  42722. image: {
  42723. source: "./media/characters/sarel/chozoan.svg",
  42724. extra: 865/788,
  42725. bottom: 97/962
  42726. }
  42727. },
  42728. current: {
  42729. height: math.unit(5.67, "feet"),
  42730. weight: math.unit(135, "lb"),
  42731. name: "Current",
  42732. image: {
  42733. source: "./media/characters/sarel/current.svg",
  42734. extra: 865/788,
  42735. bottom: 97/962
  42736. }
  42737. },
  42738. head: {
  42739. height: math.unit(1.77, "feet"),
  42740. name: "Head",
  42741. image: {
  42742. source: "./media/characters/sarel/head.svg"
  42743. }
  42744. },
  42745. claws: {
  42746. height: math.unit(1.8, "feet"),
  42747. name: "Claws",
  42748. image: {
  42749. source: "./media/characters/sarel/claws.svg"
  42750. }
  42751. },
  42752. clawsAlt: {
  42753. height: math.unit(1.8, "feet"),
  42754. name: "Claws-alt",
  42755. image: {
  42756. source: "./media/characters/sarel/claws-alt.svg"
  42757. }
  42758. },
  42759. },
  42760. [
  42761. {
  42762. name: "Normal",
  42763. height: math.unit(5.67, "feet"),
  42764. default: true
  42765. },
  42766. ]
  42767. ))
  42768. characterMakers.push(() => makeCharacter(
  42769. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42770. {
  42771. front: {
  42772. height: math.unit(5500, "feet"),
  42773. name: "Front",
  42774. image: {
  42775. source: "./media/characters/alyonia/front.svg",
  42776. extra: 1200/1135,
  42777. bottom: 29/1229
  42778. }
  42779. },
  42780. back: {
  42781. height: math.unit(5500, "feet"),
  42782. name: "Back",
  42783. image: {
  42784. source: "./media/characters/alyonia/back.svg",
  42785. extra: 1205/1138,
  42786. bottom: 10/1215
  42787. }
  42788. },
  42789. },
  42790. [
  42791. {
  42792. name: "Small",
  42793. height: math.unit(10, "feet")
  42794. },
  42795. {
  42796. name: "Macro",
  42797. height: math.unit(500, "feet")
  42798. },
  42799. {
  42800. name: "Mega Macro",
  42801. height: math.unit(5500, "feet"),
  42802. default: true
  42803. },
  42804. {
  42805. name: "Mega Macro+",
  42806. height: math.unit(500000, "feet")
  42807. },
  42808. {
  42809. name: "Giga Macro",
  42810. height: math.unit(3000, "miles")
  42811. },
  42812. {
  42813. name: "Tera Macro",
  42814. height: math.unit(2.8e6, "miles")
  42815. },
  42816. {
  42817. name: "Galactic",
  42818. height: math.unit(120000, "lightyears")
  42819. },
  42820. ]
  42821. ))
  42822. characterMakers.push(() => makeCharacter(
  42823. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42824. {
  42825. werewolf: {
  42826. height: math.unit(8, "feet"),
  42827. weight: math.unit(425, "lb"),
  42828. name: "Werewolf",
  42829. image: {
  42830. source: "./media/characters/autumn/werewolf.svg",
  42831. extra: 2154/2031,
  42832. bottom: 160/2314
  42833. }
  42834. },
  42835. human: {
  42836. height: math.unit(5 + 8/12, "feet"),
  42837. weight: math.unit(150, "lb"),
  42838. name: "Human",
  42839. image: {
  42840. source: "./media/characters/autumn/human.svg",
  42841. extra: 1200/1149,
  42842. bottom: 30/1230
  42843. }
  42844. },
  42845. },
  42846. [
  42847. {
  42848. name: "Normal",
  42849. height: math.unit(8, "feet"),
  42850. default: true
  42851. },
  42852. ]
  42853. ))
  42854. characterMakers.push(() => makeCharacter(
  42855. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  42856. {
  42857. front: {
  42858. height: math.unit(8 + 5/12, "feet"),
  42859. weight: math.unit(825, "lb"),
  42860. name: "Front",
  42861. image: {
  42862. source: "./media/characters/cobalt-charizard/front.svg",
  42863. extra: 1268/1155,
  42864. bottom: 122/1390
  42865. }
  42866. },
  42867. side: {
  42868. height: math.unit(8 + 5/12, "feet"),
  42869. weight: math.unit(825, "lb"),
  42870. name: "Side",
  42871. image: {
  42872. source: "./media/characters/cobalt-charizard/side.svg",
  42873. extra: 1348/1257,
  42874. bottom: 58/1406
  42875. }
  42876. },
  42877. gMax: {
  42878. height: math.unit(134 + 11/12, "feet"),
  42879. name: "G-Max",
  42880. image: {
  42881. source: "./media/characters/cobalt-charizard/g-max.svg",
  42882. extra: 1835/1541,
  42883. bottom: 151/1986
  42884. }
  42885. },
  42886. },
  42887. [
  42888. {
  42889. name: "Normal",
  42890. height: math.unit(8 + 5/12, "feet"),
  42891. default: true
  42892. },
  42893. ]
  42894. ))
  42895. characterMakers.push(() => makeCharacter(
  42896. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  42897. {
  42898. front: {
  42899. height: math.unit(6 + 3/12, "feet"),
  42900. weight: math.unit(210, "lb"),
  42901. name: "Front",
  42902. image: {
  42903. source: "./media/characters/stella/front.svg",
  42904. extra: 3549/3335,
  42905. bottom: 51/3600
  42906. }
  42907. },
  42908. },
  42909. [
  42910. {
  42911. name: "Normal",
  42912. height: math.unit(6 + 3/12, "feet"),
  42913. default: true
  42914. },
  42915. ]
  42916. ))
  42917. characterMakers.push(() => makeCharacter(
  42918. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  42919. {
  42920. front: {
  42921. height: math.unit(5, "feet"),
  42922. weight: math.unit(90, "lb"),
  42923. name: "Front",
  42924. image: {
  42925. source: "./media/characters/riley-bishop/front.svg",
  42926. extra: 1450/1428,
  42927. bottom: 152/1602
  42928. }
  42929. },
  42930. },
  42931. [
  42932. {
  42933. name: "Normal",
  42934. height: math.unit(5, "feet"),
  42935. default: true
  42936. },
  42937. ]
  42938. ))
  42939. characterMakers.push(() => makeCharacter(
  42940. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  42941. {
  42942. side: {
  42943. height: math.unit(8 + 2/12, "feet"),
  42944. weight: math.unit(500, "kg"),
  42945. name: "Side",
  42946. image: {
  42947. source: "./media/characters/theo-arcanine/side.svg",
  42948. extra: 1342/1074,
  42949. bottom: 111/1453
  42950. }
  42951. },
  42952. },
  42953. [
  42954. {
  42955. name: "Normal",
  42956. height: math.unit(8 + 2/12, "feet"),
  42957. default: true
  42958. },
  42959. ]
  42960. ))
  42961. characterMakers.push(() => makeCharacter(
  42962. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  42963. {
  42964. front: {
  42965. height: math.unit(4, "feet"),
  42966. name: "Front",
  42967. image: {
  42968. source: "./media/characters/kali/front.svg",
  42969. extra: 1921/1357,
  42970. bottom: 70/1991
  42971. }
  42972. },
  42973. },
  42974. [
  42975. {
  42976. name: "Normal",
  42977. height: math.unit(4, "feet"),
  42978. default: true
  42979. },
  42980. {
  42981. name: "Macro",
  42982. height: math.unit(32, "meters")
  42983. },
  42984. {
  42985. name: "Macro+",
  42986. height: math.unit(150, "meters")
  42987. },
  42988. {
  42989. name: "Megamacro",
  42990. height: math.unit(7500, "meters")
  42991. },
  42992. {
  42993. name: "Megamacro+",
  42994. height: math.unit(80, "kilometers")
  42995. },
  42996. ]
  42997. ))
  42998. characterMakers.push(() => makeCharacter(
  42999. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  43000. {
  43001. side: {
  43002. height: math.unit(5 + 11/12, "feet"),
  43003. weight: math.unit(236, "lb"),
  43004. name: "Side",
  43005. image: {
  43006. source: "./media/characters/gapp/side.svg",
  43007. extra: 775/340,
  43008. bottom: 58/833
  43009. }
  43010. },
  43011. mouth: {
  43012. height: math.unit(2.98, "feet"),
  43013. name: "Mouth",
  43014. image: {
  43015. source: "./media/characters/gapp/mouth.svg"
  43016. }
  43017. },
  43018. },
  43019. [
  43020. {
  43021. name: "Normal",
  43022. height: math.unit(5 + 1/12, "feet"),
  43023. default: true
  43024. },
  43025. ]
  43026. ))
  43027. characterMakers.push(() => makeCharacter(
  43028. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  43029. {
  43030. front: {
  43031. height: math.unit(6, "feet"),
  43032. name: "Front",
  43033. image: {
  43034. source: "./media/characters/persephone/front.svg",
  43035. extra: 1895/1717,
  43036. bottom: 96/1991
  43037. }
  43038. },
  43039. back: {
  43040. height: math.unit(6, "feet"),
  43041. name: "Back",
  43042. image: {
  43043. source: "./media/characters/persephone/back.svg",
  43044. extra: 1868/1679,
  43045. bottom: 26/1894
  43046. }
  43047. },
  43048. casual: {
  43049. height: math.unit(6, "feet"),
  43050. name: "Casual",
  43051. image: {
  43052. source: "./media/characters/persephone/casual.svg",
  43053. extra: 1713/1541,
  43054. bottom: 76/1789
  43055. }
  43056. },
  43057. },
  43058. [
  43059. {
  43060. name: "Human Size",
  43061. height: math.unit(6, "feet")
  43062. },
  43063. {
  43064. name: "Big Steppy",
  43065. height: math.unit(600, "meters"),
  43066. default: true
  43067. },
  43068. {
  43069. name: "Galaxy Brain",
  43070. height: math.unit(1, "zettameter")
  43071. },
  43072. ]
  43073. ))
  43074. characterMakers.push(() => makeCharacter(
  43075. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  43076. {
  43077. front: {
  43078. height: math.unit(1.85, "meters"),
  43079. name: "Front",
  43080. image: {
  43081. source: "./media/characters/riley-foxthing/front.svg",
  43082. extra: 1495/1354,
  43083. bottom: 122/1617
  43084. }
  43085. },
  43086. frontAlt: {
  43087. height: math.unit(1.85, "meters"),
  43088. name: "Front (Alt)",
  43089. image: {
  43090. source: "./media/characters/riley-foxthing/front-alt.svg",
  43091. extra: 1572/1389,
  43092. bottom: 116/1688
  43093. }
  43094. },
  43095. },
  43096. [
  43097. {
  43098. name: "Normal Sized",
  43099. height: math.unit(1.85, "meters"),
  43100. default: true
  43101. },
  43102. {
  43103. name: "Quite Sizable",
  43104. height: math.unit(5, "meters")
  43105. },
  43106. {
  43107. name: "Rather Large",
  43108. height: math.unit(20, "meters")
  43109. },
  43110. {
  43111. name: "Macro",
  43112. height: math.unit(450, "meters")
  43113. },
  43114. {
  43115. name: "Giga",
  43116. height: math.unit(5, "km")
  43117. },
  43118. ]
  43119. ))
  43120. characterMakers.push(() => makeCharacter(
  43121. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  43122. {
  43123. front: {
  43124. height: math.unit(6, "feet"),
  43125. weight: math.unit(200, "lb"),
  43126. name: "Front",
  43127. image: {
  43128. source: "./media/characters/blizzard/front.svg",
  43129. extra: 1136/990,
  43130. bottom: 136/1272
  43131. }
  43132. },
  43133. back: {
  43134. height: math.unit(6, "feet"),
  43135. weight: math.unit(200, "lb"),
  43136. name: "Back",
  43137. image: {
  43138. source: "./media/characters/blizzard/back.svg",
  43139. extra: 1175/1034,
  43140. bottom: 97/1272
  43141. }
  43142. },
  43143. sitting: {
  43144. height: math.unit(3.725, "feet"),
  43145. weight: math.unit(200, "lb"),
  43146. name: "Sitting",
  43147. image: {
  43148. source: "./media/characters/blizzard/sitting.svg",
  43149. extra: 581/485,
  43150. bottom: 90/671
  43151. }
  43152. },
  43153. frontWizard: {
  43154. height: math.unit(7.9, "feet"),
  43155. weight: math.unit(200, "lb"),
  43156. name: "Front (Wizard)",
  43157. image: {
  43158. source: "./media/characters/blizzard/front-wizard.svg"
  43159. }
  43160. },
  43161. backWizard: {
  43162. height: math.unit(7.9, "feet"),
  43163. weight: math.unit(200, "lb"),
  43164. name: "Back (Wizard)",
  43165. image: {
  43166. source: "./media/characters/blizzard/back-wizard.svg"
  43167. }
  43168. },
  43169. frontNsfw: {
  43170. height: math.unit(6, "feet"),
  43171. weight: math.unit(200, "lb"),
  43172. name: "Front (NSFW)",
  43173. image: {
  43174. source: "./media/characters/blizzard/front-nsfw.svg",
  43175. extra: 1136/990,
  43176. bottom: 136/1272
  43177. }
  43178. },
  43179. backNsfw: {
  43180. height: math.unit(6, "feet"),
  43181. weight: math.unit(200, "lb"),
  43182. name: "Back (NSFW)",
  43183. image: {
  43184. source: "./media/characters/blizzard/back-nsfw.svg",
  43185. extra: 1175/1034,
  43186. bottom: 97/1272
  43187. }
  43188. },
  43189. sittingNsfw: {
  43190. height: math.unit(3.725, "feet"),
  43191. weight: math.unit(200, "lb"),
  43192. name: "Sitting (NSFW)",
  43193. image: {
  43194. source: "./media/characters/blizzard/sitting-nsfw.svg",
  43195. extra: 581/485,
  43196. bottom: 90/671
  43197. }
  43198. },
  43199. wizardFrontNsfw: {
  43200. height: math.unit(7.9, "feet"),
  43201. weight: math.unit(200, "lb"),
  43202. name: "Wizard (Front, NSFW)",
  43203. image: {
  43204. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  43205. }
  43206. },
  43207. },
  43208. [
  43209. {
  43210. name: "Normal",
  43211. height: math.unit(6, "feet"),
  43212. default: true
  43213. },
  43214. ]
  43215. ))
  43216. characterMakers.push(() => makeCharacter(
  43217. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  43218. {
  43219. front: {
  43220. height: math.unit(5 + 2/12, "feet"),
  43221. name: "Front",
  43222. image: {
  43223. source: "./media/characters/lumi/front.svg",
  43224. extra: 1328/1268,
  43225. bottom: 103/1431
  43226. }
  43227. },
  43228. back: {
  43229. height: math.unit(5 + 2/12, "feet"),
  43230. name: "Back",
  43231. image: {
  43232. source: "./media/characters/lumi/back.svg",
  43233. extra: 1381/1327,
  43234. bottom: 43/1424
  43235. }
  43236. },
  43237. },
  43238. [
  43239. {
  43240. name: "Normal",
  43241. height: math.unit(5 + 2/12, "feet"),
  43242. default: true
  43243. },
  43244. ]
  43245. ))
  43246. characterMakers.push(() => makeCharacter(
  43247. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  43248. {
  43249. front: {
  43250. height: math.unit(5 + 9/12, "feet"),
  43251. name: "Front",
  43252. image: {
  43253. source: "./media/characters/aliya-cotton/front.svg",
  43254. extra: 577/564,
  43255. bottom: 29/606
  43256. }
  43257. },
  43258. },
  43259. [
  43260. {
  43261. name: "Normal",
  43262. height: math.unit(5 + 9/12, "feet"),
  43263. default: true
  43264. },
  43265. ]
  43266. ))
  43267. characterMakers.push(() => makeCharacter(
  43268. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  43269. {
  43270. front: {
  43271. height: math.unit(2.7, "meters"),
  43272. weight: math.unit(25000, "lb"),
  43273. name: "Front",
  43274. image: {
  43275. source: "./media/characters/noah-luxray/front.svg",
  43276. extra: 1644/825,
  43277. bottom: 339/1983
  43278. }
  43279. },
  43280. side: {
  43281. height: math.unit(2.97, "meters"),
  43282. weight: math.unit(25000, "lb"),
  43283. name: "Side",
  43284. image: {
  43285. source: "./media/characters/noah-luxray/side.svg",
  43286. extra: 1319/650,
  43287. bottom: 163/1482
  43288. }
  43289. },
  43290. dick: {
  43291. height: math.unit(7.4, "feet"),
  43292. weight: math.unit(2500, "lb"),
  43293. name: "Dick",
  43294. image: {
  43295. source: "./media/characters/noah-luxray/dick.svg"
  43296. }
  43297. },
  43298. dickAlt: {
  43299. height: math.unit(10.83, "feet"),
  43300. weight: math.unit(2500, "lb"),
  43301. name: "Dick-alt",
  43302. image: {
  43303. source: "./media/characters/noah-luxray/dick-alt.svg"
  43304. }
  43305. },
  43306. },
  43307. [
  43308. {
  43309. name: "BIG",
  43310. height: math.unit(2.7, "meters"),
  43311. default: true
  43312. },
  43313. ]
  43314. ))
  43315. characterMakers.push(() => makeCharacter(
  43316. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  43317. {
  43318. standing: {
  43319. height: math.unit(183, "cm"),
  43320. weight: math.unit(68, "kg"),
  43321. name: "Standing",
  43322. image: {
  43323. source: "./media/characters/arion/standing.svg",
  43324. extra: 1869/1807,
  43325. bottom: 93/1962
  43326. }
  43327. },
  43328. reclining: {
  43329. height: math.unit(70.5, "cm"),
  43330. weight: math.unit(68, "lb"),
  43331. name: "Reclining",
  43332. image: {
  43333. source: "./media/characters/arion/reclining.svg",
  43334. extra: 937/870,
  43335. bottom: 63/1000
  43336. }
  43337. },
  43338. },
  43339. [
  43340. {
  43341. name: "Colossus Size, Low",
  43342. height: math.unit(33, "meters"),
  43343. default: true
  43344. },
  43345. {
  43346. name: "Colossus Size, Mid",
  43347. height: math.unit(52, "meters")
  43348. },
  43349. {
  43350. name: "Colossus Size, High",
  43351. height: math.unit(60, "meters")
  43352. },
  43353. {
  43354. name: "Titan Size, Low",
  43355. height: math.unit(91, "meters"),
  43356. },
  43357. {
  43358. name: "Titan Size, Mid",
  43359. height: math.unit(122, "meters")
  43360. },
  43361. {
  43362. name: "Titan Size, High",
  43363. height: math.unit(162, "meters")
  43364. },
  43365. ]
  43366. ))
  43367. characterMakers.push(() => makeCharacter(
  43368. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  43369. {
  43370. front: {
  43371. height: math.unit(53, "meters"),
  43372. name: "Front",
  43373. image: {
  43374. source: "./media/characters/stellar-marbey/front.svg",
  43375. extra: 1913/1805,
  43376. bottom: 92/2005
  43377. }
  43378. },
  43379. back: {
  43380. height: math.unit(53, "meters"),
  43381. name: "Back",
  43382. image: {
  43383. source: "./media/characters/stellar-marbey/back.svg",
  43384. extra: 1960/1851,
  43385. bottom: 28/1988
  43386. }
  43387. },
  43388. mouth: {
  43389. height: math.unit(3.5, "meters"),
  43390. name: "Mouth",
  43391. image: {
  43392. source: "./media/characters/stellar-marbey/mouth.svg"
  43393. }
  43394. },
  43395. },
  43396. [
  43397. {
  43398. name: "Macro",
  43399. height: math.unit(53, "meters"),
  43400. default: true
  43401. },
  43402. ]
  43403. ))
  43404. characterMakers.push(() => makeCharacter(
  43405. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  43406. {
  43407. front: {
  43408. height: math.unit(8 + 1/12, "feet"),
  43409. weight: math.unit(233, "lb"),
  43410. name: "Front",
  43411. image: {
  43412. source: "./media/characters/matsu/front.svg",
  43413. extra: 832/772,
  43414. bottom: 40/872
  43415. }
  43416. },
  43417. back: {
  43418. height: math.unit(8 + 1/12, "feet"),
  43419. weight: math.unit(233, "lb"),
  43420. name: "Back",
  43421. image: {
  43422. source: "./media/characters/matsu/back.svg",
  43423. extra: 839/780,
  43424. bottom: 47/886
  43425. }
  43426. },
  43427. },
  43428. [
  43429. {
  43430. name: "Normal",
  43431. height: math.unit(8 + 1/12, "feet"),
  43432. default: true
  43433. },
  43434. ]
  43435. ))
  43436. characterMakers.push(() => makeCharacter(
  43437. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  43438. {
  43439. front: {
  43440. height: math.unit(4, "feet"),
  43441. weight: math.unit(148, "lb"),
  43442. name: "Front",
  43443. image: {
  43444. source: "./media/characters/thiz/front.svg",
  43445. extra: 1913/1748,
  43446. bottom: 62/1975
  43447. }
  43448. },
  43449. },
  43450. [
  43451. {
  43452. name: "Normal",
  43453. height: math.unit(4, "feet"),
  43454. default: true
  43455. },
  43456. ]
  43457. ))
  43458. characterMakers.push(() => makeCharacter(
  43459. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  43460. {
  43461. front: {
  43462. height: math.unit(7 + 6/12, "feet"),
  43463. weight: math.unit(267, "lb"),
  43464. name: "Front",
  43465. image: {
  43466. source: "./media/characters/marcel/front.svg",
  43467. extra: 1221/1096,
  43468. bottom: 76/1297
  43469. }
  43470. },
  43471. },
  43472. [
  43473. {
  43474. name: "Normal",
  43475. height: math.unit(7 + 6/12, "feet"),
  43476. default: true
  43477. },
  43478. ]
  43479. ))
  43480. characterMakers.push(() => makeCharacter(
  43481. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  43482. {
  43483. side: {
  43484. height: math.unit(42, "meters"),
  43485. name: "Side",
  43486. image: {
  43487. source: "./media/characters/flake/side.svg",
  43488. extra: 1525/1306,
  43489. bottom: 209/1734
  43490. }
  43491. },
  43492. },
  43493. [
  43494. {
  43495. name: "Normal",
  43496. height: math.unit(42, "meters"),
  43497. default: true
  43498. },
  43499. ]
  43500. ))
  43501. characterMakers.push(() => makeCharacter(
  43502. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  43503. {
  43504. dressed: {
  43505. height: math.unit(6 + 4/12, "feet"),
  43506. weight: math.unit(520, "lb"),
  43507. name: "Dressed",
  43508. image: {
  43509. source: "./media/characters/someonne/dressed.svg",
  43510. extra: 1020/1010,
  43511. bottom: 178/1198
  43512. }
  43513. },
  43514. undressed: {
  43515. height: math.unit(6 + 4/12, "feet"),
  43516. weight: math.unit(520, "lb"),
  43517. name: "Undressed",
  43518. image: {
  43519. source: "./media/characters/someonne/undressed.svg",
  43520. extra: 1019/1014,
  43521. bottom: 169/1188
  43522. }
  43523. },
  43524. },
  43525. [
  43526. {
  43527. name: "Normal",
  43528. height: math.unit(6 + 4/12, "feet"),
  43529. default: true
  43530. },
  43531. ]
  43532. ))
  43533. characterMakers.push(() => makeCharacter(
  43534. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  43535. {
  43536. front: {
  43537. height: math.unit(3, "feet"),
  43538. weight: math.unit(30, "lb"),
  43539. name: "Front",
  43540. image: {
  43541. source: "./media/characters/till/front.svg",
  43542. extra: 892/823,
  43543. bottom: 55/947
  43544. }
  43545. },
  43546. },
  43547. [
  43548. {
  43549. name: "Normal",
  43550. height: math.unit(3, "feet"),
  43551. default: true
  43552. },
  43553. ]
  43554. ))
  43555. characterMakers.push(() => makeCharacter(
  43556. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  43557. {
  43558. front: {
  43559. height: math.unit(9 + 8/12, "feet"),
  43560. weight: math.unit(800, "lb"),
  43561. name: "Front",
  43562. image: {
  43563. source: "./media/characters/sydney-heki/front.svg",
  43564. extra: 1360/1300,
  43565. bottom: 22/1382
  43566. }
  43567. },
  43568. back: {
  43569. height: math.unit(9 + 8/12, "feet"),
  43570. weight: math.unit(800, "lb"),
  43571. name: "Back",
  43572. image: {
  43573. source: "./media/characters/sydney-heki/back.svg",
  43574. extra: 1356/1293,
  43575. bottom: 12/1368
  43576. }
  43577. },
  43578. frontDressed: {
  43579. height: math.unit(9 + 8/12, "feet"),
  43580. weight: math.unit(800, "lb"),
  43581. name: "Front-dressed",
  43582. image: {
  43583. source: "./media/characters/sydney-heki/front-dressed.svg",
  43584. extra: 1360/1300,
  43585. bottom: 22/1382
  43586. }
  43587. },
  43588. },
  43589. [
  43590. {
  43591. name: "Normal",
  43592. height: math.unit(9 + 8/12, "feet"),
  43593. default: true
  43594. },
  43595. {
  43596. name: "Macro",
  43597. height: math.unit(500, "feet")
  43598. },
  43599. {
  43600. name: "Megamacro",
  43601. height: math.unit(3.6, "miles")
  43602. },
  43603. ]
  43604. ))
  43605. characterMakers.push(() => makeCharacter(
  43606. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  43607. {
  43608. front: {
  43609. height: math.unit(200, "cm"),
  43610. weight: math.unit(250, "lb"),
  43611. name: "Front",
  43612. image: {
  43613. source: "./media/characters/fowler-karlsson/front.svg",
  43614. extra: 897/845,
  43615. bottom: 123/1020
  43616. }
  43617. },
  43618. back: {
  43619. height: math.unit(200, "cm"),
  43620. weight: math.unit(250, "lb"),
  43621. name: "Back",
  43622. image: {
  43623. source: "./media/characters/fowler-karlsson/back.svg",
  43624. extra: 999/944,
  43625. bottom: 26/1025
  43626. }
  43627. },
  43628. dick: {
  43629. height: math.unit(1.92, "feet"),
  43630. weight: math.unit(150, "lb"),
  43631. name: "Dick",
  43632. image: {
  43633. source: "./media/characters/fowler-karlsson/dick.svg"
  43634. }
  43635. },
  43636. },
  43637. [
  43638. {
  43639. name: "Normal",
  43640. height: math.unit(200, "cm"),
  43641. default: true
  43642. },
  43643. {
  43644. name: "Smaller Macro",
  43645. height: math.unit(90, "m")
  43646. },
  43647. {
  43648. name: "Macro",
  43649. height: math.unit(150, "m")
  43650. },
  43651. {
  43652. name: "Bigger Macro",
  43653. height: math.unit(300, "m")
  43654. },
  43655. ]
  43656. ))
  43657. characterMakers.push(() => makeCharacter(
  43658. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  43659. {
  43660. side: {
  43661. height: math.unit(8 + 2/12, "feet"),
  43662. weight: math.unit(1, "tonne"),
  43663. name: "Side",
  43664. image: {
  43665. source: "./media/characters/rylide/side.svg",
  43666. extra: 1318/1034,
  43667. bottom: 106/1424
  43668. }
  43669. },
  43670. sitting: {
  43671. height: math.unit(303, "cm"),
  43672. weight: math.unit(1, "tonne"),
  43673. name: "Sitting",
  43674. image: {
  43675. source: "./media/characters/rylide/sitting.svg",
  43676. extra: 1303/1103,
  43677. bottom: 36/1339
  43678. }
  43679. },
  43680. },
  43681. [
  43682. {
  43683. name: "Normal",
  43684. height: math.unit(8 + 2/12, "feet"),
  43685. default: true
  43686. },
  43687. ]
  43688. ))
  43689. characterMakers.push(() => makeCharacter(
  43690. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  43691. {
  43692. front: {
  43693. height: math.unit(5 + 10/12, "feet"),
  43694. weight: math.unit(160, "lb"),
  43695. name: "Front",
  43696. image: {
  43697. source: "./media/characters/pudask/front.svg",
  43698. extra: 1616/1590,
  43699. bottom: 161/1777
  43700. }
  43701. },
  43702. },
  43703. [
  43704. {
  43705. name: "Ferret Height",
  43706. height: math.unit(2 + 5/12, "feet")
  43707. },
  43708. {
  43709. name: "Canon Height",
  43710. height: math.unit(5 + 10/12, "feet"),
  43711. default: true
  43712. },
  43713. ]
  43714. ))
  43715. characterMakers.push(() => makeCharacter(
  43716. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  43717. {
  43718. front: {
  43719. height: math.unit(3 + 6/12, "feet"),
  43720. weight: math.unit(60, "lb"),
  43721. name: "Front",
  43722. image: {
  43723. source: "./media/characters/ramita/front.svg",
  43724. extra: 1402/1232,
  43725. bottom: 62/1464
  43726. }
  43727. },
  43728. dressed: {
  43729. height: math.unit(3 + 6/12, "feet"),
  43730. weight: math.unit(60, "lb"),
  43731. name: "Dressed",
  43732. image: {
  43733. source: "./media/characters/ramita/dressed.svg",
  43734. extra: 1534/1249,
  43735. bottom: 50/1584
  43736. }
  43737. },
  43738. },
  43739. [
  43740. {
  43741. name: "Normal",
  43742. height: math.unit(3 + 6/12, "feet"),
  43743. default: true
  43744. },
  43745. ]
  43746. ))
  43747. characterMakers.push(() => makeCharacter(
  43748. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  43749. {
  43750. front: {
  43751. height: math.unit(8, "feet"),
  43752. name: "Front",
  43753. image: {
  43754. source: "./media/characters/ark/front.svg",
  43755. extra: 772/693,
  43756. bottom: 45/817
  43757. }
  43758. },
  43759. },
  43760. [
  43761. {
  43762. name: "Normal",
  43763. height: math.unit(8, "feet"),
  43764. default: true
  43765. },
  43766. ]
  43767. ))
  43768. characterMakers.push(() => makeCharacter(
  43769. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  43770. {
  43771. front: {
  43772. height: math.unit(6, "feet"),
  43773. weight: math.unit(250, "lb"),
  43774. volume: math.unit(5/8, "gallons"),
  43775. name: "Front",
  43776. image: {
  43777. source: "./media/characters/ludwig-horn/front.svg",
  43778. extra: 1782/1635,
  43779. bottom: 96/1878
  43780. }
  43781. },
  43782. back: {
  43783. height: math.unit(6, "feet"),
  43784. weight: math.unit(250, "lb"),
  43785. volume: math.unit(5/8, "gallons"),
  43786. name: "Back",
  43787. image: {
  43788. source: "./media/characters/ludwig-horn/back.svg",
  43789. extra: 1874/1729,
  43790. bottom: 27/1901
  43791. }
  43792. },
  43793. dick: {
  43794. height: math.unit(1.05, "feet"),
  43795. weight: math.unit(15, "lb"),
  43796. volume: math.unit(5/8, "gallons"),
  43797. name: "Dick",
  43798. image: {
  43799. source: "./media/characters/ludwig-horn/dick.svg"
  43800. }
  43801. },
  43802. },
  43803. [
  43804. {
  43805. name: "Small",
  43806. height: math.unit(6, "feet")
  43807. },
  43808. {
  43809. name: "Typical",
  43810. height: math.unit(12, "feet"),
  43811. default: true
  43812. },
  43813. {
  43814. name: "Building",
  43815. height: math.unit(80, "feet")
  43816. },
  43817. {
  43818. name: "Town",
  43819. height: math.unit(800, "feet")
  43820. },
  43821. {
  43822. name: "Kingdom",
  43823. height: math.unit(80000, "feet")
  43824. },
  43825. {
  43826. name: "Planet",
  43827. height: math.unit(8000000, "feet")
  43828. },
  43829. {
  43830. name: "Universe",
  43831. height: math.unit(8000000000, "feet")
  43832. },
  43833. {
  43834. name: "Transcended",
  43835. height: math.unit(8e27, "feet")
  43836. },
  43837. ]
  43838. ))
  43839. characterMakers.push(() => makeCharacter(
  43840. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  43841. {
  43842. front: {
  43843. height: math.unit(5, "feet"),
  43844. weight: math.unit(50, "kg"),
  43845. name: "Front",
  43846. image: {
  43847. source: "./media/characters/biot-avery/front.svg",
  43848. extra: 1295/1232,
  43849. bottom: 86/1381
  43850. }
  43851. },
  43852. },
  43853. [
  43854. {
  43855. name: "Normal",
  43856. height: math.unit(5, "feet"),
  43857. default: true
  43858. },
  43859. ]
  43860. ))
  43861. characterMakers.push(() => makeCharacter(
  43862. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  43863. {
  43864. front: {
  43865. height: math.unit(6, "feet"),
  43866. name: "Front",
  43867. image: {
  43868. source: "./media/characters/kitsune-kiro/front.svg",
  43869. extra: 1270/1158,
  43870. bottom: 42/1312
  43871. }
  43872. },
  43873. frontAlt: {
  43874. height: math.unit(6, "feet"),
  43875. name: "Front-alt",
  43876. image: {
  43877. source: "./media/characters/kitsune-kiro/front-alt.svg",
  43878. extra: 1130/1081,
  43879. bottom: 36/1166
  43880. }
  43881. },
  43882. },
  43883. [
  43884. {
  43885. name: "Smol",
  43886. height: math.unit(3, "feet")
  43887. },
  43888. {
  43889. name: "Normal",
  43890. height: math.unit(6, "feet"),
  43891. default: true
  43892. },
  43893. ]
  43894. ))
  43895. characterMakers.push(() => makeCharacter(
  43896. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  43897. {
  43898. front: {
  43899. height: math.unit(6, "feet"),
  43900. weight: math.unit(125, "lb"),
  43901. name: "Front",
  43902. image: {
  43903. source: "./media/characters/jack-thatcher/front.svg",
  43904. extra: 1474/1370,
  43905. bottom: 26/1500
  43906. }
  43907. },
  43908. back: {
  43909. height: math.unit(6, "feet"),
  43910. weight: math.unit(125, "lb"),
  43911. name: "Back",
  43912. image: {
  43913. source: "./media/characters/jack-thatcher/back.svg",
  43914. extra: 1489/1384,
  43915. bottom: 18/1507
  43916. }
  43917. },
  43918. },
  43919. [
  43920. {
  43921. name: "Normal",
  43922. height: math.unit(6, "feet"),
  43923. default: true
  43924. },
  43925. {
  43926. name: "Macro",
  43927. height: math.unit(75, "feet")
  43928. },
  43929. {
  43930. name: "Macro-er",
  43931. height: math.unit(250, "feet")
  43932. },
  43933. ]
  43934. ))
  43935. characterMakers.push(() => makeCharacter(
  43936. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  43937. {
  43938. front: {
  43939. height: math.unit(7, "feet"),
  43940. weight: math.unit(110, "kg"),
  43941. name: "Front",
  43942. image: {
  43943. source: "./media/characters/max-hyper/front.svg",
  43944. extra: 1969/1881,
  43945. bottom: 49/2018
  43946. }
  43947. },
  43948. },
  43949. [
  43950. {
  43951. name: "Normal",
  43952. height: math.unit(7, "feet"),
  43953. default: true
  43954. },
  43955. ]
  43956. ))
  43957. characterMakers.push(() => makeCharacter(
  43958. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  43959. {
  43960. front: {
  43961. height: math.unit(5 + 5/12, "feet"),
  43962. weight: math.unit(160, "lb"),
  43963. name: "Front",
  43964. image: {
  43965. source: "./media/characters/spook/front.svg",
  43966. extra: 794/791,
  43967. bottom: 54/848
  43968. }
  43969. },
  43970. back: {
  43971. height: math.unit(5 + 5/12, "feet"),
  43972. weight: math.unit(160, "lb"),
  43973. name: "Back",
  43974. image: {
  43975. source: "./media/characters/spook/back.svg",
  43976. extra: 812/798,
  43977. bottom: 32/844
  43978. }
  43979. },
  43980. },
  43981. [
  43982. {
  43983. name: "Normal",
  43984. height: math.unit(5 + 5/12, "feet"),
  43985. default: true
  43986. },
  43987. ]
  43988. ))
  43989. characterMakers.push(() => makeCharacter(
  43990. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  43991. {
  43992. front: {
  43993. height: math.unit(18, "feet"),
  43994. name: "Front",
  43995. image: {
  43996. source: "./media/characters/xeaduulix/front.svg",
  43997. extra: 1380/1166,
  43998. bottom: 110/1490
  43999. }
  44000. },
  44001. back: {
  44002. height: math.unit(18, "feet"),
  44003. name: "Back",
  44004. image: {
  44005. source: "./media/characters/xeaduulix/back.svg",
  44006. extra: 1592/1170,
  44007. bottom: 128/1720
  44008. }
  44009. },
  44010. frontNsfw: {
  44011. height: math.unit(18, "feet"),
  44012. name: "Front (NSFW)",
  44013. image: {
  44014. source: "./media/characters/xeaduulix/front-nsfw.svg",
  44015. extra: 1380/1166,
  44016. bottom: 110/1490
  44017. }
  44018. },
  44019. backNsfw: {
  44020. height: math.unit(18, "feet"),
  44021. name: "Back (NSFW)",
  44022. image: {
  44023. source: "./media/characters/xeaduulix/back-nsfw.svg",
  44024. extra: 1592/1170,
  44025. bottom: 128/1720
  44026. }
  44027. },
  44028. },
  44029. [
  44030. {
  44031. name: "Normal",
  44032. height: math.unit(18, "feet"),
  44033. default: true
  44034. },
  44035. ]
  44036. ))
  44037. characterMakers.push(() => makeCharacter(
  44038. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  44039. {
  44040. spreadWings: {
  44041. height: math.unit(20, "feet"),
  44042. name: "Spread Wings",
  44043. image: {
  44044. source: "./media/characters/fledge/spread-wings.svg",
  44045. extra: 693/635,
  44046. bottom: 26/719
  44047. }
  44048. },
  44049. front: {
  44050. height: math.unit(20, "feet"),
  44051. name: "Front",
  44052. image: {
  44053. source: "./media/characters/fledge/front.svg",
  44054. extra: 684/637,
  44055. bottom: 18/702
  44056. }
  44057. },
  44058. frontAlt: {
  44059. height: math.unit(20, "feet"),
  44060. name: "Front (Alt)",
  44061. image: {
  44062. source: "./media/characters/fledge/front-alt.svg",
  44063. extra: 708/664,
  44064. bottom: 13/721
  44065. }
  44066. },
  44067. back: {
  44068. height: math.unit(20, "feet"),
  44069. name: "Back",
  44070. image: {
  44071. source: "./media/characters/fledge/back.svg",
  44072. extra: 718/634,
  44073. bottom: 22/740
  44074. }
  44075. },
  44076. head: {
  44077. height: math.unit(5.55, "feet"),
  44078. name: "Head",
  44079. image: {
  44080. source: "./media/characters/fledge/head.svg"
  44081. }
  44082. },
  44083. headAlt: {
  44084. height: math.unit(5.1, "feet"),
  44085. name: "Head (Alt)",
  44086. image: {
  44087. source: "./media/characters/fledge/head-alt.svg"
  44088. }
  44089. },
  44090. },
  44091. [
  44092. {
  44093. name: "Small",
  44094. height: math.unit(6 + 2/12, "feet")
  44095. },
  44096. {
  44097. name: "Big",
  44098. height: math.unit(20, "feet"),
  44099. default: true
  44100. },
  44101. {
  44102. name: "Giant",
  44103. height: math.unit(100, "feet")
  44104. },
  44105. {
  44106. name: "Macro",
  44107. height: math.unit(200, "feet")
  44108. },
  44109. ]
  44110. ))
  44111. characterMakers.push(() => makeCharacter(
  44112. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  44113. {
  44114. front: {
  44115. height: math.unit(1, "meter"),
  44116. name: "Front",
  44117. image: {
  44118. source: "./media/characters/atlas-morenai/front.svg",
  44119. extra: 1275/1043,
  44120. bottom: 19/1294
  44121. }
  44122. },
  44123. back: {
  44124. height: math.unit(1, "meter"),
  44125. name: "Back",
  44126. image: {
  44127. source: "./media/characters/atlas-morenai/back.svg",
  44128. extra: 1141/1001,
  44129. bottom: 25/1166
  44130. }
  44131. },
  44132. },
  44133. [
  44134. {
  44135. name: "Normal",
  44136. height: math.unit(1, "meter"),
  44137. default: true
  44138. },
  44139. {
  44140. name: "Magic-Infused",
  44141. height: math.unit(5, "meters")
  44142. },
  44143. ]
  44144. ))
  44145. characterMakers.push(() => makeCharacter(
  44146. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  44147. {
  44148. front: {
  44149. height: math.unit(5, "meters"),
  44150. name: "Front",
  44151. image: {
  44152. source: "./media/characters/cintia/front.svg",
  44153. extra: 1312/1228,
  44154. bottom: 38/1350
  44155. }
  44156. },
  44157. back: {
  44158. height: math.unit(5, "meters"),
  44159. name: "Back",
  44160. image: {
  44161. source: "./media/characters/cintia/back.svg",
  44162. extra: 1260/1166,
  44163. bottom: 98/1358
  44164. }
  44165. },
  44166. frontDick: {
  44167. height: math.unit(5, "meters"),
  44168. name: "Front (Dick)",
  44169. image: {
  44170. source: "./media/characters/cintia/front-dick.svg",
  44171. extra: 1312/1228,
  44172. bottom: 38/1350
  44173. }
  44174. },
  44175. backDick: {
  44176. height: math.unit(5, "meters"),
  44177. name: "Back (Dick)",
  44178. image: {
  44179. source: "./media/characters/cintia/back-dick.svg",
  44180. extra: 1260/1166,
  44181. bottom: 98/1358
  44182. }
  44183. },
  44184. bust: {
  44185. height: math.unit(1.97, "meters"),
  44186. name: "Bust",
  44187. image: {
  44188. source: "./media/characters/cintia/bust.svg",
  44189. extra: 617/565,
  44190. bottom: 0/617
  44191. }
  44192. },
  44193. },
  44194. [
  44195. {
  44196. name: "Normal",
  44197. height: math.unit(5, "meters"),
  44198. default: true
  44199. },
  44200. ]
  44201. ))
  44202. characterMakers.push(() => makeCharacter(
  44203. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  44204. {
  44205. side: {
  44206. height: math.unit(100, "feet"),
  44207. name: "Side",
  44208. image: {
  44209. source: "./media/characters/denora/side.svg",
  44210. extra: 875/803,
  44211. bottom: 9/884
  44212. }
  44213. },
  44214. },
  44215. [
  44216. {
  44217. name: "Standard",
  44218. height: math.unit(100, "feet"),
  44219. default: true
  44220. },
  44221. {
  44222. name: "Grand",
  44223. height: math.unit(1000, "feet")
  44224. },
  44225. {
  44226. name: "Conquering",
  44227. height: math.unit(10000, "feet")
  44228. },
  44229. ]
  44230. ))
  44231. characterMakers.push(() => makeCharacter(
  44232. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  44233. {
  44234. dressed: {
  44235. height: math.unit(8 + 5/12, "feet"),
  44236. weight: math.unit(700, "lb"),
  44237. name: "Dressed",
  44238. image: {
  44239. source: "./media/characters/kiva/dressed.svg",
  44240. extra: 1102/1055,
  44241. bottom: 60/1162
  44242. }
  44243. },
  44244. nude: {
  44245. height: math.unit(8 + 5/12, "feet"),
  44246. weight: math.unit(700, "lb"),
  44247. name: "Nude",
  44248. image: {
  44249. source: "./media/characters/kiva/nude.svg",
  44250. extra: 1102/1055,
  44251. bottom: 60/1162
  44252. }
  44253. },
  44254. },
  44255. [
  44256. {
  44257. name: "Base Height",
  44258. height: math.unit(8 + 5/12, "feet"),
  44259. default: true
  44260. },
  44261. {
  44262. name: "Macro",
  44263. height: math.unit(100, "feet")
  44264. },
  44265. {
  44266. name: "Max",
  44267. height: math.unit(3280, "feet")
  44268. },
  44269. ]
  44270. ))
  44271. characterMakers.push(() => makeCharacter(
  44272. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  44273. {
  44274. front: {
  44275. height: math.unit(6 + 8/12, "feet"),
  44276. weight: math.unit(250, "lb"),
  44277. name: "Front",
  44278. image: {
  44279. source: "./media/characters/ztragon/front.svg",
  44280. extra: 1825/1684,
  44281. bottom: 98/1923
  44282. }
  44283. },
  44284. },
  44285. [
  44286. {
  44287. name: "Normal",
  44288. height: math.unit(6 + 8/12, "feet"),
  44289. default: true
  44290. },
  44291. {
  44292. name: "Macro",
  44293. height: math.unit(80, "feet")
  44294. },
  44295. ]
  44296. ))
  44297. characterMakers.push(() => makeCharacter(
  44298. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  44299. {
  44300. front: {
  44301. height: math.unit(10.4, "feet"),
  44302. weight: math.unit(2, "tons"),
  44303. name: "Front",
  44304. image: {
  44305. source: "./media/characters/yesenia/front.svg",
  44306. extra: 1479/1474,
  44307. bottom: 233/1712
  44308. }
  44309. },
  44310. },
  44311. [
  44312. {
  44313. name: "Normal",
  44314. height: math.unit(10.4, "feet"),
  44315. default: true
  44316. },
  44317. ]
  44318. ))
  44319. characterMakers.push(() => makeCharacter(
  44320. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  44321. {
  44322. normal: {
  44323. height: math.unit(6 + 1/12, "feet"),
  44324. weight: math.unit(180, "lb"),
  44325. name: "Normal",
  44326. image: {
  44327. source: "./media/characters/leanne-lycheborne/normal.svg",
  44328. extra: 1748/1660,
  44329. bottom: 98/1846
  44330. }
  44331. },
  44332. were: {
  44333. height: math.unit(12, "feet"),
  44334. weight: math.unit(1600, "lb"),
  44335. name: "Were",
  44336. image: {
  44337. source: "./media/characters/leanne-lycheborne/were.svg",
  44338. extra: 1485/1432,
  44339. bottom: 66/1551
  44340. }
  44341. },
  44342. },
  44343. [
  44344. {
  44345. name: "Normal",
  44346. height: math.unit(6 + 1/12, "feet"),
  44347. default: true
  44348. },
  44349. ]
  44350. ))
  44351. characterMakers.push(() => makeCharacter(
  44352. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  44353. {
  44354. side: {
  44355. height: math.unit(13, "feet"),
  44356. name: "Side",
  44357. image: {
  44358. source: "./media/characters/kira-tyler/side.svg",
  44359. extra: 693/393,
  44360. bottom: 58/751
  44361. }
  44362. },
  44363. },
  44364. [
  44365. {
  44366. name: "Normal",
  44367. height: math.unit(13, "feet"),
  44368. default: true
  44369. },
  44370. ]
  44371. ))
  44372. characterMakers.push(() => makeCharacter(
  44373. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  44374. {
  44375. front: {
  44376. height: math.unit(10.3, "feet"),
  44377. weight: math.unit(150, "lb"),
  44378. name: "Front",
  44379. image: {
  44380. source: "./media/characters/blaze/front.svg",
  44381. extra: 1378/1286,
  44382. bottom: 172/1550
  44383. }
  44384. },
  44385. },
  44386. [
  44387. {
  44388. name: "Normal",
  44389. height: math.unit(10.3, "feet"),
  44390. default: true
  44391. },
  44392. ]
  44393. ))
  44394. characterMakers.push(() => makeCharacter(
  44395. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  44396. {
  44397. side: {
  44398. height: math.unit(2, "meters"),
  44399. weight: math.unit(400, "kg"),
  44400. name: "Side",
  44401. image: {
  44402. source: "./media/characters/anu/side.svg",
  44403. extra: 506/394,
  44404. bottom: 18/524
  44405. }
  44406. },
  44407. },
  44408. [
  44409. {
  44410. name: "Humanoid",
  44411. height: math.unit(2, "meters")
  44412. },
  44413. {
  44414. name: "Normal",
  44415. height: math.unit(5, "meters"),
  44416. default: true
  44417. },
  44418. ]
  44419. ))
  44420. characterMakers.push(() => makeCharacter(
  44421. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  44422. {
  44423. front: {
  44424. height: math.unit(5 + 5/12, "feet"),
  44425. weight: math.unit(170, "lb"),
  44426. name: "Front",
  44427. image: {
  44428. source: "./media/characters/synx-the-lynx/front.svg",
  44429. extra: 1893/1745,
  44430. bottom: 17/1910
  44431. }
  44432. },
  44433. side: {
  44434. height: math.unit(5 + 5/12, "feet"),
  44435. weight: math.unit(170, "lb"),
  44436. name: "Side",
  44437. image: {
  44438. source: "./media/characters/synx-the-lynx/side.svg",
  44439. extra: 1884/1740,
  44440. bottom: 39/1923
  44441. }
  44442. },
  44443. back: {
  44444. height: math.unit(5 + 5/12, "feet"),
  44445. weight: math.unit(170, "lb"),
  44446. name: "Back",
  44447. image: {
  44448. source: "./media/characters/synx-the-lynx/back.svg",
  44449. extra: 1903/1755,
  44450. bottom: 14/1917
  44451. }
  44452. },
  44453. },
  44454. [
  44455. {
  44456. name: "Normal",
  44457. height: math.unit(5 + 5/12, "feet"),
  44458. default: true
  44459. },
  44460. ]
  44461. ))
  44462. characterMakers.push(() => makeCharacter(
  44463. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  44464. {
  44465. back: {
  44466. height: math.unit(15, "feet"),
  44467. name: "Back",
  44468. image: {
  44469. source: "./media/characters/nadezda-fex/back.svg",
  44470. extra: 1695/1481,
  44471. bottom: 25/1720
  44472. }
  44473. },
  44474. },
  44475. [
  44476. {
  44477. name: "Normal",
  44478. height: math.unit(15, "feet"),
  44479. default: true
  44480. },
  44481. {
  44482. name: "Macro",
  44483. height: math.unit(2.5, "miles")
  44484. },
  44485. {
  44486. name: "Goddess",
  44487. height: math.unit(2, "multiverses")
  44488. },
  44489. ]
  44490. ))
  44491. characterMakers.push(() => makeCharacter(
  44492. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  44493. {
  44494. front: {
  44495. height: math.unit(216, "cm"),
  44496. name: "Front",
  44497. image: {
  44498. source: "./media/characters/lev/front.svg",
  44499. extra: 1728/1670,
  44500. bottom: 82/1810
  44501. }
  44502. },
  44503. back: {
  44504. height: math.unit(216, "cm"),
  44505. name: "Back",
  44506. image: {
  44507. source: "./media/characters/lev/back.svg",
  44508. extra: 1738/1675,
  44509. bottom: 24/1762
  44510. }
  44511. },
  44512. dressed: {
  44513. height: math.unit(216, "cm"),
  44514. name: "Dressed",
  44515. image: {
  44516. source: "./media/characters/lev/dressed.svg",
  44517. extra: 1397/1351,
  44518. bottom: 73/1470
  44519. }
  44520. },
  44521. head: {
  44522. height: math.unit(0.51, "meter"),
  44523. name: "Head",
  44524. image: {
  44525. source: "./media/characters/lev/head.svg"
  44526. }
  44527. },
  44528. },
  44529. [
  44530. {
  44531. name: "Normal",
  44532. height: math.unit(216, "cm"),
  44533. default: true
  44534. },
  44535. {
  44536. name: "Relatively Macro",
  44537. height: math.unit(80, "meters")
  44538. },
  44539. {
  44540. name: "Megamacro",
  44541. height: math.unit(21600, "meters")
  44542. },
  44543. {
  44544. name: "Megamacro+",
  44545. height: math.unit(64800, "meters")
  44546. },
  44547. ]
  44548. ))
  44549. characterMakers.push(() => makeCharacter(
  44550. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  44551. {
  44552. front: {
  44553. height: math.unit(2, "meters"),
  44554. weight: math.unit(80, "kg"),
  44555. name: "Front",
  44556. image: {
  44557. source: "./media/characters/moka/front.svg",
  44558. extra: 1337/1255,
  44559. bottom: 58/1395
  44560. }
  44561. },
  44562. },
  44563. [
  44564. {
  44565. name: "Micro",
  44566. height: math.unit(15, "cm")
  44567. },
  44568. {
  44569. name: "Normal",
  44570. height: math.unit(2, "meters"),
  44571. default: true
  44572. },
  44573. {
  44574. name: "Macro",
  44575. height: math.unit(20, "meters"),
  44576. },
  44577. ]
  44578. ))
  44579. characterMakers.push(() => makeCharacter(
  44580. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  44581. {
  44582. front: {
  44583. height: math.unit(9, "feet"),
  44584. weight: math.unit(240, "lb"),
  44585. name: "Front",
  44586. image: {
  44587. source: "./media/characters/kuzco/front.svg",
  44588. extra: 1593/1487,
  44589. bottom: 32/1625
  44590. }
  44591. },
  44592. side: {
  44593. height: math.unit(9, "feet"),
  44594. weight: math.unit(240, "lb"),
  44595. name: "Side",
  44596. image: {
  44597. source: "./media/characters/kuzco/side.svg",
  44598. extra: 1575/1485,
  44599. bottom: 30/1605
  44600. }
  44601. },
  44602. back: {
  44603. height: math.unit(9, "feet"),
  44604. weight: math.unit(240, "lb"),
  44605. name: "Back",
  44606. image: {
  44607. source: "./media/characters/kuzco/back.svg",
  44608. extra: 1603/1514,
  44609. bottom: 14/1617
  44610. }
  44611. },
  44612. },
  44613. [
  44614. {
  44615. name: "Normal",
  44616. height: math.unit(9, "feet"),
  44617. default: true
  44618. },
  44619. ]
  44620. ))
  44621. characterMakers.push(() => makeCharacter(
  44622. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  44623. {
  44624. side: {
  44625. height: math.unit(2, "meters"),
  44626. weight: math.unit(300, "kg"),
  44627. name: "Side",
  44628. image: {
  44629. source: "./media/characters/ceruleus/side.svg",
  44630. extra: 1068/974,
  44631. bottom: 126/1194
  44632. }
  44633. },
  44634. },
  44635. [
  44636. {
  44637. name: "Normal",
  44638. height: math.unit(16, "meters"),
  44639. default: true
  44640. },
  44641. ]
  44642. ))
  44643. characterMakers.push(() => makeCharacter(
  44644. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  44645. {
  44646. front: {
  44647. height: math.unit(9, "feet"),
  44648. weight: math.unit(500, "kg"),
  44649. name: "Front",
  44650. image: {
  44651. source: "./media/characters/acouya/front.svg",
  44652. extra: 1660/1473,
  44653. bottom: 28/1688
  44654. }
  44655. },
  44656. },
  44657. [
  44658. {
  44659. name: "Normal",
  44660. height: math.unit(9, "feet"),
  44661. default: true
  44662. },
  44663. ]
  44664. ))
  44665. characterMakers.push(() => makeCharacter(
  44666. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  44667. {
  44668. front: {
  44669. height: math.unit(5 + 6/12, "feet"),
  44670. weight: math.unit(195, "lb"),
  44671. name: "Front",
  44672. image: {
  44673. source: "./media/characters/vant/front.svg",
  44674. extra: 1396/1320,
  44675. bottom: 20/1416
  44676. }
  44677. },
  44678. back: {
  44679. height: math.unit(5 + 6/12, "feet"),
  44680. weight: math.unit(195, "lb"),
  44681. name: "Back",
  44682. image: {
  44683. source: "./media/characters/vant/back.svg",
  44684. extra: 1396/1320,
  44685. bottom: 20/1416
  44686. }
  44687. },
  44688. maw: {
  44689. height: math.unit(0.75, "feet"),
  44690. name: "Maw",
  44691. image: {
  44692. source: "./media/characters/vant/maw.svg"
  44693. }
  44694. },
  44695. paw: {
  44696. height: math.unit(1.07, "feet"),
  44697. name: "Paw",
  44698. image: {
  44699. source: "./media/characters/vant/paw.svg"
  44700. }
  44701. },
  44702. },
  44703. [
  44704. {
  44705. name: "Micro",
  44706. height: math.unit(0.25, "inches")
  44707. },
  44708. {
  44709. name: "Normal",
  44710. height: math.unit(5 + 6/12, "feet"),
  44711. default: true
  44712. },
  44713. {
  44714. name: "Macro",
  44715. height: math.unit(75, "feet")
  44716. },
  44717. ]
  44718. ))
  44719. characterMakers.push(() => makeCharacter(
  44720. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  44721. {
  44722. front: {
  44723. height: math.unit(30, "meters"),
  44724. weight: math.unit(363, "tons"),
  44725. name: "Front",
  44726. image: {
  44727. source: "./media/characters/ahra/front.svg",
  44728. extra: 1914/1814,
  44729. bottom: 46/1960
  44730. }
  44731. },
  44732. },
  44733. [
  44734. {
  44735. name: "Macro",
  44736. height: math.unit(30, "meters"),
  44737. default: true
  44738. },
  44739. ]
  44740. ))
  44741. characterMakers.push(() => makeCharacter(
  44742. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  44743. {
  44744. undressed: {
  44745. height: math.unit(2, "m"),
  44746. weight: math.unit(250, "kg"),
  44747. name: "Undressed",
  44748. image: {
  44749. source: "./media/characters/coriander/undressed.svg",
  44750. extra: 1757/1606,
  44751. bottom: 107/1864
  44752. }
  44753. },
  44754. dressed: {
  44755. height: math.unit(2, "m"),
  44756. weight: math.unit(250, "kg"),
  44757. name: "Dressed",
  44758. image: {
  44759. source: "./media/characters/coriander/dressed.svg",
  44760. extra: 1757/1606,
  44761. bottom: 107/1864
  44762. }
  44763. },
  44764. },
  44765. [
  44766. {
  44767. name: "Normal",
  44768. height: math.unit(4, "meters"),
  44769. default: true
  44770. },
  44771. {
  44772. name: "XL",
  44773. height: math.unit(6, "meters")
  44774. },
  44775. {
  44776. name: "XXL",
  44777. height: math.unit(8, "meters")
  44778. },
  44779. ]
  44780. ))
  44781. characterMakers.push(() => makeCharacter(
  44782. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  44783. {
  44784. front: {
  44785. height: math.unit(6, "feet"),
  44786. name: "Front",
  44787. image: {
  44788. source: "./media/characters/syrinx/front.svg",
  44789. extra: 1557/1259,
  44790. bottom: 171/1728
  44791. }
  44792. },
  44793. },
  44794. [
  44795. {
  44796. name: "Normal",
  44797. height: math.unit(6 + 3/12, "feet"),
  44798. default: true
  44799. },
  44800. ]
  44801. ))
  44802. characterMakers.push(() => makeCharacter(
  44803. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  44804. {
  44805. front: {
  44806. height: math.unit(11 + 6/12, "feet"),
  44807. weight: math.unit(1.5, "tons"),
  44808. name: "Front",
  44809. image: {
  44810. source: "./media/characters/bor/front.svg",
  44811. extra: 1189/1109,
  44812. bottom: 170/1359
  44813. }
  44814. },
  44815. },
  44816. [
  44817. {
  44818. name: "Normal",
  44819. height: math.unit(11 + 6/12, "feet"),
  44820. default: true
  44821. },
  44822. {
  44823. name: "Macro",
  44824. height: math.unit(32 + 9/12, "feet")
  44825. },
  44826. ]
  44827. ))
  44828. characterMakers.push(() => makeCharacter(
  44829. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  44830. {
  44831. anthro: {
  44832. height: math.unit(9, "feet"),
  44833. weight: math.unit(2076, "lb"),
  44834. name: "Anthro",
  44835. image: {
  44836. source: "./media/characters/abacus/anthro.svg",
  44837. extra: 1540/1494,
  44838. bottom: 233/1773
  44839. }
  44840. },
  44841. pigeon: {
  44842. height: math.unit(1, "feet"),
  44843. name: "Pigeon",
  44844. image: {
  44845. source: "./media/characters/abacus/pigeon.svg",
  44846. extra: 528/525,
  44847. bottom: 46/574
  44848. }
  44849. },
  44850. },
  44851. [
  44852. {
  44853. name: "Normal",
  44854. height: math.unit(9, "feet"),
  44855. default: true
  44856. },
  44857. ]
  44858. ))
  44859. characterMakers.push(() => makeCharacter(
  44860. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  44861. {
  44862. side: {
  44863. height: math.unit(6, "feet"),
  44864. name: "Side",
  44865. image: {
  44866. source: "./media/characters/delkhan/side.svg",
  44867. extra: 1884/1786,
  44868. bottom: 308/2192
  44869. }
  44870. },
  44871. head: {
  44872. height: math.unit(3.38, "feet"),
  44873. name: "Head",
  44874. image: {
  44875. source: "./media/characters/delkhan/head.svg"
  44876. }
  44877. },
  44878. },
  44879. [
  44880. {
  44881. name: "Normal",
  44882. height: math.unit(72, "feet"),
  44883. default: true
  44884. },
  44885. {
  44886. name: "Giant",
  44887. height: math.unit(172, "feet")
  44888. },
  44889. ]
  44890. ))
  44891. characterMakers.push(() => makeCharacter(
  44892. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  44893. {
  44894. standing: {
  44895. height: math.unit(6, "feet"),
  44896. name: "Standing",
  44897. image: {
  44898. source: "./media/characters/euchidat/standing.svg",
  44899. extra: 1612/1553,
  44900. bottom: 116/1728
  44901. }
  44902. },
  44903. leaning: {
  44904. height: math.unit(6, "feet"),
  44905. name: "Leaning",
  44906. image: {
  44907. source: "./media/characters/euchidat/leaning.svg",
  44908. extra: 1719/1674,
  44909. bottom: 27/1746
  44910. }
  44911. },
  44912. },
  44913. [
  44914. {
  44915. name: "Normal",
  44916. height: math.unit(175, "feet"),
  44917. default: true
  44918. },
  44919. {
  44920. name: "Megamacro",
  44921. height: math.unit(190, "miles")
  44922. },
  44923. {
  44924. name: "Gigamacro",
  44925. height: math.unit(190000, "miles")
  44926. },
  44927. ]
  44928. ))
  44929. characterMakers.push(() => makeCharacter(
  44930. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  44931. {
  44932. front: {
  44933. height: math.unit(6, "feet"),
  44934. weight: math.unit(150, "lb"),
  44935. name: "Front",
  44936. image: {
  44937. source: "./media/characters/rebecca-stack/front.svg",
  44938. extra: 1256/1201,
  44939. bottom: 18/1274
  44940. }
  44941. },
  44942. },
  44943. [
  44944. {
  44945. name: "Normal",
  44946. height: math.unit(5 + 8/12, "feet"),
  44947. default: true
  44948. },
  44949. {
  44950. name: "Demolitionist",
  44951. height: math.unit(200, "feet")
  44952. },
  44953. {
  44954. name: "Out of Control",
  44955. height: math.unit(2, "miles")
  44956. },
  44957. {
  44958. name: "Giga",
  44959. height: math.unit(7200, "miles")
  44960. },
  44961. ]
  44962. ))
  44963. characterMakers.push(() => makeCharacter(
  44964. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  44965. {
  44966. front: {
  44967. height: math.unit(6, "feet"),
  44968. weight: math.unit(150, "lb"),
  44969. name: "Front",
  44970. image: {
  44971. source: "./media/characters/jenny-cartwright/front.svg",
  44972. extra: 1384/1376,
  44973. bottom: 58/1442
  44974. }
  44975. },
  44976. },
  44977. [
  44978. {
  44979. name: "Normal",
  44980. height: math.unit(6 + 7/12, "feet"),
  44981. default: true
  44982. },
  44983. {
  44984. name: "Librarian",
  44985. height: math.unit(55, "feet")
  44986. },
  44987. {
  44988. name: "Sightseer",
  44989. height: math.unit(50, "miles")
  44990. },
  44991. {
  44992. name: "Giga",
  44993. height: math.unit(30000, "miles")
  44994. },
  44995. ]
  44996. ))
  44997. characterMakers.push(() => makeCharacter(
  44998. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  44999. {
  45000. nude: {
  45001. height: math.unit(8, "feet"),
  45002. weight: math.unit(225, "lb"),
  45003. name: "Nude",
  45004. image: {
  45005. source: "./media/characters/marvy/nude.svg",
  45006. extra: 1900/1683,
  45007. bottom: 89/1989
  45008. }
  45009. },
  45010. dressed: {
  45011. height: math.unit(8, "feet"),
  45012. weight: math.unit(225, "lb"),
  45013. name: "Dressed",
  45014. image: {
  45015. source: "./media/characters/marvy/dressed.svg",
  45016. extra: 1900/1683,
  45017. bottom: 89/1989
  45018. }
  45019. },
  45020. head: {
  45021. height: math.unit(2.85, "feet"),
  45022. name: "Head",
  45023. image: {
  45024. source: "./media/characters/marvy/head.svg"
  45025. }
  45026. },
  45027. },
  45028. [
  45029. {
  45030. name: "Normal",
  45031. height: math.unit(8, "feet"),
  45032. default: true
  45033. },
  45034. ]
  45035. ))
  45036. characterMakers.push(() => makeCharacter(
  45037. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  45038. {
  45039. front: {
  45040. height: math.unit(8, "feet"),
  45041. weight: math.unit(250, "lb"),
  45042. name: "Front",
  45043. image: {
  45044. source: "./media/characters/leah/front.svg",
  45045. extra: 1257/1149,
  45046. bottom: 109/1366
  45047. }
  45048. },
  45049. },
  45050. [
  45051. {
  45052. name: "Normal",
  45053. height: math.unit(8, "feet"),
  45054. default: true
  45055. },
  45056. {
  45057. name: "Minimacro",
  45058. height: math.unit(40, "feet")
  45059. },
  45060. {
  45061. name: "Macro",
  45062. height: math.unit(124, "feet")
  45063. },
  45064. {
  45065. name: "Megamacro",
  45066. height: math.unit(850, "feet")
  45067. },
  45068. ]
  45069. ))
  45070. characterMakers.push(() => makeCharacter(
  45071. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  45072. {
  45073. side: {
  45074. height: math.unit(13 + 6/12, "feet"),
  45075. weight: math.unit(3200, "lb"),
  45076. name: "Side",
  45077. image: {
  45078. source: "./media/characters/alvir/side.svg",
  45079. extra: 896/589,
  45080. bottom: 26/922
  45081. }
  45082. },
  45083. },
  45084. [
  45085. {
  45086. name: "Normal",
  45087. height: math.unit(13 + 6/12, "feet"),
  45088. default: true
  45089. },
  45090. ]
  45091. ))
  45092. characterMakers.push(() => makeCharacter(
  45093. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  45094. {
  45095. front: {
  45096. height: math.unit(5 + 4/12, "feet"),
  45097. weight: math.unit(236, "lb"),
  45098. name: "Front",
  45099. image: {
  45100. source: "./media/characters/zaina-khalil/front.svg",
  45101. extra: 1533/1485,
  45102. bottom: 94/1627
  45103. }
  45104. },
  45105. side: {
  45106. height: math.unit(5 + 4/12, "feet"),
  45107. weight: math.unit(236, "lb"),
  45108. name: "Side",
  45109. image: {
  45110. source: "./media/characters/zaina-khalil/side.svg",
  45111. extra: 1537/1498,
  45112. bottom: 66/1603
  45113. }
  45114. },
  45115. back: {
  45116. height: math.unit(5 + 4/12, "feet"),
  45117. weight: math.unit(236, "lb"),
  45118. name: "Back",
  45119. image: {
  45120. source: "./media/characters/zaina-khalil/back.svg",
  45121. extra: 1546/1494,
  45122. bottom: 89/1635
  45123. }
  45124. },
  45125. },
  45126. [
  45127. {
  45128. name: "Normal",
  45129. height: math.unit(5 + 4/12, "feet"),
  45130. default: true
  45131. },
  45132. ]
  45133. ))
  45134. characterMakers.push(() => makeCharacter(
  45135. { name: "Terry", species: ["husky"], tags: ["taur"] },
  45136. {
  45137. side: {
  45138. height: math.unit(12, "feet"),
  45139. weight: math.unit(4000, "lb"),
  45140. name: "Side",
  45141. image: {
  45142. source: "./media/characters/terry/side.svg",
  45143. extra: 1518/1439,
  45144. bottom: 149/1667
  45145. }
  45146. },
  45147. },
  45148. [
  45149. {
  45150. name: "Normal",
  45151. height: math.unit(12, "feet"),
  45152. default: true
  45153. },
  45154. ]
  45155. ))
  45156. characterMakers.push(() => makeCharacter(
  45157. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  45158. {
  45159. front: {
  45160. height: math.unit(12, "feet"),
  45161. weight: math.unit(1500, "lb"),
  45162. name: "Front",
  45163. image: {
  45164. source: "./media/characters/kahea/front.svg",
  45165. extra: 1722/1617,
  45166. bottom: 179/1901
  45167. }
  45168. },
  45169. },
  45170. [
  45171. {
  45172. name: "Normal",
  45173. height: math.unit(12, "feet"),
  45174. default: true
  45175. },
  45176. ]
  45177. ))
  45178. characterMakers.push(() => makeCharacter(
  45179. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  45180. {
  45181. demonFront: {
  45182. height: math.unit(36, "feet"),
  45183. name: "Front",
  45184. image: {
  45185. source: "./media/characters/alex-xuria/demon-front.svg",
  45186. extra: 1705/1673,
  45187. bottom: 198/1903
  45188. },
  45189. form: "demon",
  45190. default: true
  45191. },
  45192. demonBack: {
  45193. height: math.unit(36, "feet"),
  45194. name: "Back",
  45195. image: {
  45196. source: "./media/characters/alex-xuria/demon-back.svg",
  45197. extra: 1725/1693,
  45198. bottom: 70/1795
  45199. },
  45200. form: "demon"
  45201. },
  45202. demonHead: {
  45203. height: math.unit(2.14, "meters"),
  45204. name: "Head",
  45205. image: {
  45206. source: "./media/characters/alex-xuria/demon-head.svg"
  45207. },
  45208. form: "demon"
  45209. },
  45210. demonHand: {
  45211. height: math.unit(1.61, "meters"),
  45212. name: "Hand",
  45213. image: {
  45214. source: "./media/characters/alex-xuria/demon-hand.svg"
  45215. },
  45216. form: "demon"
  45217. },
  45218. demonPaw: {
  45219. height: math.unit(1.35, "meters"),
  45220. name: "Paw",
  45221. image: {
  45222. source: "./media/characters/alex-xuria/demon-paw.svg"
  45223. },
  45224. form: "demon"
  45225. },
  45226. demonFoot: {
  45227. height: math.unit(2.2, "meters"),
  45228. name: "Foot",
  45229. image: {
  45230. source: "./media/characters/alex-xuria/demon-foot.svg"
  45231. },
  45232. form: "demon"
  45233. },
  45234. demonCock: {
  45235. height: math.unit(1.74, "meters"),
  45236. name: "Cock",
  45237. image: {
  45238. source: "./media/characters/alex-xuria/demon-cock.svg"
  45239. },
  45240. form: "demon"
  45241. },
  45242. demonTailClosed: {
  45243. height: math.unit(1.47, "meters"),
  45244. name: "Tail (Closed)",
  45245. image: {
  45246. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  45247. },
  45248. form: "demon"
  45249. },
  45250. demonTailOpen: {
  45251. height: math.unit(2.85, "meters"),
  45252. name: "Tail (Open)",
  45253. image: {
  45254. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  45255. },
  45256. form: "demon"
  45257. },
  45258. incubusFront: {
  45259. height: math.unit(12, "feet"),
  45260. name: "Front",
  45261. image: {
  45262. source: "./media/characters/alex-xuria/incubus-front.svg",
  45263. extra: 1754/1677,
  45264. bottom: 125/1879
  45265. },
  45266. form: "incubus",
  45267. default: true
  45268. },
  45269. incubusBack: {
  45270. height: math.unit(12, "feet"),
  45271. name: "Back",
  45272. image: {
  45273. source: "./media/characters/alex-xuria/incubus-back.svg",
  45274. extra: 1702/1647,
  45275. bottom: 30/1732
  45276. },
  45277. form: "incubus"
  45278. },
  45279. incubusHead: {
  45280. height: math.unit(3.45, "feet"),
  45281. name: "Head",
  45282. image: {
  45283. source: "./media/characters/alex-xuria/incubus-head.svg"
  45284. },
  45285. form: "incubus"
  45286. },
  45287. rabbitFront: {
  45288. height: math.unit(6, "feet"),
  45289. name: "Front",
  45290. image: {
  45291. source: "./media/characters/alex-xuria/rabbit-front.svg",
  45292. extra: 1369/1349,
  45293. bottom: 45/1414
  45294. },
  45295. form: "rabbit",
  45296. default: true
  45297. },
  45298. rabbitSide: {
  45299. height: math.unit(6, "feet"),
  45300. name: "Side",
  45301. image: {
  45302. source: "./media/characters/alex-xuria/rabbit-side.svg",
  45303. extra: 1370/1356,
  45304. bottom: 37/1407
  45305. },
  45306. form: "rabbit"
  45307. },
  45308. rabbitBack: {
  45309. height: math.unit(6, "feet"),
  45310. name: "Back",
  45311. image: {
  45312. source: "./media/characters/alex-xuria/rabbit-back.svg",
  45313. extra: 1375/1358,
  45314. bottom: 43/1418
  45315. },
  45316. form: "rabbit"
  45317. },
  45318. },
  45319. [
  45320. {
  45321. name: "Normal",
  45322. height: math.unit(6, "feet"),
  45323. default: true,
  45324. form: "rabbit"
  45325. },
  45326. {
  45327. name: "Incubus",
  45328. height: math.unit(12, "feet"),
  45329. default: true,
  45330. form: "incubus"
  45331. },
  45332. {
  45333. name: "Demon",
  45334. height: math.unit(36, "feet"),
  45335. default: true,
  45336. form: "demon"
  45337. }
  45338. ],
  45339. {
  45340. "demon": {
  45341. name: "Demon",
  45342. default: true
  45343. },
  45344. "incubus": {
  45345. name: "Incubus",
  45346. },
  45347. "rabbit": {
  45348. name: "Rabbit"
  45349. }
  45350. }
  45351. ))
  45352. characterMakers.push(() => makeCharacter(
  45353. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  45354. {
  45355. front: {
  45356. height: math.unit(7 + 5/12, "feet"),
  45357. weight: math.unit(510, "lb"),
  45358. name: "Front",
  45359. image: {
  45360. source: "./media/characters/syrup/front.svg",
  45361. extra: 932/916,
  45362. bottom: 26/958
  45363. }
  45364. },
  45365. },
  45366. [
  45367. {
  45368. name: "Normal",
  45369. height: math.unit(7 + 5/12, "feet"),
  45370. default: true
  45371. },
  45372. {
  45373. name: "Big",
  45374. height: math.unit(50, "feet")
  45375. },
  45376. {
  45377. name: "Macro",
  45378. height: math.unit(300, "feet")
  45379. },
  45380. {
  45381. name: "Megamacro",
  45382. height: math.unit(1, "mile")
  45383. },
  45384. ]
  45385. ))
  45386. characterMakers.push(() => makeCharacter(
  45387. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  45388. {
  45389. front: {
  45390. height: math.unit(6 + 9/12, "feet"),
  45391. name: "Front",
  45392. image: {
  45393. source: "./media/characters/zeimne/front.svg",
  45394. extra: 1969/1806,
  45395. bottom: 53/2022
  45396. }
  45397. },
  45398. },
  45399. [
  45400. {
  45401. name: "Normal",
  45402. height: math.unit(6 + 9/12, "feet"),
  45403. default: true
  45404. },
  45405. {
  45406. name: "Giant",
  45407. height: math.unit(550, "feet")
  45408. },
  45409. {
  45410. name: "Mega",
  45411. height: math.unit(3, "miles")
  45412. },
  45413. {
  45414. name: "Giga",
  45415. height: math.unit(250, "miles")
  45416. },
  45417. {
  45418. name: "Tera",
  45419. height: math.unit(1, "AU")
  45420. },
  45421. ]
  45422. ))
  45423. characterMakers.push(() => makeCharacter(
  45424. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  45425. {
  45426. front: {
  45427. height: math.unit(5 + 2/12, "feet"),
  45428. name: "Front",
  45429. image: {
  45430. source: "./media/characters/grar/front.svg",
  45431. extra: 1331/1119,
  45432. bottom: 60/1391
  45433. }
  45434. },
  45435. back: {
  45436. height: math.unit(5 + 2/12, "feet"),
  45437. name: "Back",
  45438. image: {
  45439. source: "./media/characters/grar/back.svg",
  45440. extra: 1385/1169,
  45441. bottom: 23/1408
  45442. }
  45443. },
  45444. },
  45445. [
  45446. {
  45447. name: "Normal",
  45448. height: math.unit(5 + 2/12, "feet"),
  45449. default: true
  45450. },
  45451. ]
  45452. ))
  45453. characterMakers.push(() => makeCharacter(
  45454. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  45455. {
  45456. front: {
  45457. height: math.unit(13 + 7/12, "feet"),
  45458. weight: math.unit(2200, "lb"),
  45459. name: "Front",
  45460. image: {
  45461. source: "./media/characters/endraya/front.svg",
  45462. extra: 1289/1215,
  45463. bottom: 50/1339
  45464. }
  45465. },
  45466. nude: {
  45467. height: math.unit(13 + 7/12, "feet"),
  45468. weight: math.unit(2200, "lb"),
  45469. name: "Nude",
  45470. image: {
  45471. source: "./media/characters/endraya/nude.svg",
  45472. extra: 1247/1171,
  45473. bottom: 40/1287
  45474. }
  45475. },
  45476. head: {
  45477. height: math.unit(2.6, "feet"),
  45478. name: "Head",
  45479. image: {
  45480. source: "./media/characters/endraya/head.svg"
  45481. }
  45482. },
  45483. slit: {
  45484. height: math.unit(3.4, "feet"),
  45485. name: "Slit",
  45486. image: {
  45487. source: "./media/characters/endraya/slit.svg"
  45488. }
  45489. },
  45490. },
  45491. [
  45492. {
  45493. name: "Normal",
  45494. height: math.unit(13 + 7/12, "feet"),
  45495. default: true
  45496. },
  45497. {
  45498. name: "Macro",
  45499. height: math.unit(200, "feet")
  45500. },
  45501. ]
  45502. ))
  45503. characterMakers.push(() => makeCharacter(
  45504. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  45505. {
  45506. front: {
  45507. height: math.unit(412, "meters"),
  45508. name: "Front",
  45509. image: {
  45510. source: "./media/characters/rodryana/front.svg",
  45511. extra: 2002/1921,
  45512. bottom: 53/2055
  45513. }
  45514. },
  45515. back: {
  45516. height: math.unit(412, "meters"),
  45517. name: "Back",
  45518. image: {
  45519. source: "./media/characters/rodryana/back.svg",
  45520. extra: 1993/1926,
  45521. bottom: 48/2041
  45522. }
  45523. },
  45524. maw: {
  45525. height: math.unit(45, "meters"),
  45526. name: "Maw",
  45527. image: {
  45528. source: "./media/characters/rodryana/maw.svg"
  45529. }
  45530. },
  45531. slit: {
  45532. height: math.unit(72, "meters"),
  45533. name: "Slit",
  45534. image: {
  45535. source: "./media/characters/rodryana/slit.svg"
  45536. }
  45537. },
  45538. },
  45539. [
  45540. {
  45541. name: "Macro",
  45542. height: math.unit(412, "meters"),
  45543. default: true
  45544. },
  45545. ]
  45546. ))
  45547. characterMakers.push(() => makeCharacter(
  45548. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  45549. {
  45550. front: {
  45551. height: math.unit(6, "feet"),
  45552. weight: math.unit(1000, "lb"),
  45553. name: "Front",
  45554. image: {
  45555. source: "./media/characters/asaya/front.svg",
  45556. extra: 1460/1200,
  45557. bottom: 71/1531
  45558. }
  45559. },
  45560. },
  45561. [
  45562. {
  45563. name: "Normal",
  45564. height: math.unit(8, "km"),
  45565. default: true
  45566. },
  45567. ]
  45568. ))
  45569. characterMakers.push(() => makeCharacter(
  45570. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  45571. {
  45572. front: {
  45573. height: math.unit(3.5, "meters"),
  45574. name: "Front",
  45575. image: {
  45576. source: "./media/characters/sarzu-and-israz/front.svg",
  45577. extra: 1570/1558,
  45578. bottom: 150/1720
  45579. },
  45580. },
  45581. back: {
  45582. height: math.unit(3.5, "meters"),
  45583. name: "Back",
  45584. image: {
  45585. source: "./media/characters/sarzu-and-israz/back.svg",
  45586. extra: 1523/1509,
  45587. bottom: 132/1655
  45588. },
  45589. },
  45590. frontFemale: {
  45591. height: math.unit(3.5, "meters"),
  45592. name: "Front (Female)",
  45593. image: {
  45594. source: "./media/characters/sarzu-and-israz/front-female.svg",
  45595. extra: 1570/1558,
  45596. bottom: 150/1720
  45597. },
  45598. },
  45599. frontHerm: {
  45600. height: math.unit(3.5, "meters"),
  45601. name: "Front (Herm)",
  45602. image: {
  45603. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  45604. extra: 1570/1558,
  45605. bottom: 150/1720
  45606. },
  45607. },
  45608. },
  45609. [
  45610. {
  45611. name: "Normal",
  45612. height: math.unit(3.5, "meters"),
  45613. default: true,
  45614. },
  45615. {
  45616. name: "Macro",
  45617. height: math.unit(65.5, "meters"),
  45618. },
  45619. ],
  45620. ))
  45621. characterMakers.push(() => makeCharacter(
  45622. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  45623. {
  45624. front: {
  45625. height: math.unit(6, "feet"),
  45626. weight: math.unit(250, "lb"),
  45627. name: "Front",
  45628. image: {
  45629. source: "./media/characters/zenimma/front.svg",
  45630. extra: 1346/1320,
  45631. bottom: 58/1404
  45632. }
  45633. },
  45634. back: {
  45635. height: math.unit(6, "feet"),
  45636. weight: math.unit(250, "lb"),
  45637. name: "Back",
  45638. image: {
  45639. source: "./media/characters/zenimma/back.svg",
  45640. extra: 1324/1308,
  45641. bottom: 44/1368
  45642. }
  45643. },
  45644. dick: {
  45645. height: math.unit(1.44, "feet"),
  45646. name: "Dick",
  45647. image: {
  45648. source: "./media/characters/zenimma/dick.svg"
  45649. }
  45650. },
  45651. },
  45652. [
  45653. {
  45654. name: "Canon Height",
  45655. height: math.unit(66, "miles"),
  45656. default: true
  45657. },
  45658. ]
  45659. ))
  45660. characterMakers.push(() => makeCharacter(
  45661. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  45662. {
  45663. nude: {
  45664. height: math.unit(6, "feet"),
  45665. weight: math.unit(150, "lb"),
  45666. name: "Nude",
  45667. image: {
  45668. source: "./media/characters/shavon/nude.svg",
  45669. extra: 1242/1096,
  45670. bottom: 98/1340
  45671. }
  45672. },
  45673. dressed: {
  45674. height: math.unit(6, "feet"),
  45675. weight: math.unit(150, "lb"),
  45676. name: "Dressed",
  45677. image: {
  45678. source: "./media/characters/shavon/dressed.svg",
  45679. extra: 1242/1096,
  45680. bottom: 98/1340
  45681. }
  45682. },
  45683. },
  45684. [
  45685. {
  45686. name: "Macro",
  45687. height: math.unit(255, "feet"),
  45688. default: true
  45689. },
  45690. ]
  45691. ))
  45692. characterMakers.push(() => makeCharacter(
  45693. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  45694. {
  45695. front: {
  45696. height: math.unit(6, "feet"),
  45697. name: "Front",
  45698. image: {
  45699. source: "./media/characters/steph/front.svg",
  45700. extra: 1430/1330,
  45701. bottom: 54/1484
  45702. }
  45703. },
  45704. },
  45705. [
  45706. {
  45707. name: "Normal",
  45708. height: math.unit(6, "feet"),
  45709. default: true
  45710. },
  45711. ]
  45712. ))
  45713. characterMakers.push(() => makeCharacter(
  45714. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  45715. {
  45716. front: {
  45717. height: math.unit(9, "feet"),
  45718. weight: math.unit(400, "lb"),
  45719. name: "Front",
  45720. image: {
  45721. source: "./media/characters/kil'aman/front.svg",
  45722. extra: 1210/1159,
  45723. bottom: 109/1319
  45724. }
  45725. },
  45726. head: {
  45727. height: math.unit(2.14, "feet"),
  45728. name: "Head",
  45729. image: {
  45730. source: "./media/characters/kil'aman/head.svg"
  45731. }
  45732. },
  45733. maw: {
  45734. height: math.unit(1.21, "feet"),
  45735. name: "Maw",
  45736. image: {
  45737. source: "./media/characters/kil'aman/maw.svg"
  45738. }
  45739. },
  45740. foot: {
  45741. height: math.unit(1.7, "feet"),
  45742. name: "Foot",
  45743. image: {
  45744. source: "./media/characters/kil'aman/foot.svg"
  45745. }
  45746. },
  45747. dick: {
  45748. height: math.unit(2.1, "feet"),
  45749. name: "Dick",
  45750. image: {
  45751. source: "./media/characters/kil'aman/dick.svg"
  45752. }
  45753. },
  45754. },
  45755. [
  45756. {
  45757. name: "Normal",
  45758. height: math.unit(9, "feet")
  45759. },
  45760. {
  45761. name: "Canon Height",
  45762. height: math.unit(10, "miles"),
  45763. default: true
  45764. },
  45765. {
  45766. name: "Maximum",
  45767. height: math.unit(6e9, "miles")
  45768. },
  45769. ]
  45770. ))
  45771. characterMakers.push(() => makeCharacter(
  45772. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  45773. {
  45774. front: {
  45775. height: math.unit(90, "feet"),
  45776. weight: math.unit(675000, "lb"),
  45777. name: "Front",
  45778. image: {
  45779. source: "./media/characters/qadan/front.svg",
  45780. extra: 1012/1004,
  45781. bottom: 78/1090
  45782. }
  45783. },
  45784. back: {
  45785. height: math.unit(90, "feet"),
  45786. weight: math.unit(675000, "lb"),
  45787. name: "Back",
  45788. image: {
  45789. source: "./media/characters/qadan/back.svg",
  45790. extra: 1042/1031,
  45791. bottom: 55/1097
  45792. }
  45793. },
  45794. armored: {
  45795. height: math.unit(90, "feet"),
  45796. weight: math.unit(675000, "lb"),
  45797. name: "Armored",
  45798. image: {
  45799. source: "./media/characters/qadan/armored.svg",
  45800. extra: 1047/1037,
  45801. bottom: 48/1095
  45802. }
  45803. },
  45804. },
  45805. [
  45806. {
  45807. name: "Normal",
  45808. height: math.unit(90, "feet"),
  45809. default: true
  45810. },
  45811. ]
  45812. ))
  45813. characterMakers.push(() => makeCharacter(
  45814. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  45815. {
  45816. front: {
  45817. height: math.unit(6, "feet"),
  45818. weight: math.unit(225, "lb"),
  45819. name: "Front",
  45820. image: {
  45821. source: "./media/characters/brooke/front.svg",
  45822. extra: 1050/1010,
  45823. bottom: 66/1116
  45824. }
  45825. },
  45826. back: {
  45827. height: math.unit(6, "feet"),
  45828. weight: math.unit(225, "lb"),
  45829. name: "Back",
  45830. image: {
  45831. source: "./media/characters/brooke/back.svg",
  45832. extra: 1053/1013,
  45833. bottom: 41/1094
  45834. }
  45835. },
  45836. dressed: {
  45837. height: math.unit(6, "feet"),
  45838. weight: math.unit(225, "lb"),
  45839. name: "Dressed",
  45840. image: {
  45841. source: "./media/characters/brooke/dressed.svg",
  45842. extra: 1050/1010,
  45843. bottom: 66/1116
  45844. }
  45845. },
  45846. },
  45847. [
  45848. {
  45849. name: "Canon Height",
  45850. height: math.unit(500, "miles"),
  45851. default: true
  45852. },
  45853. ]
  45854. ))
  45855. characterMakers.push(() => makeCharacter(
  45856. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  45857. {
  45858. front: {
  45859. height: math.unit(6 + 2/12, "feet"),
  45860. weight: math.unit(210, "lb"),
  45861. name: "Front",
  45862. image: {
  45863. source: "./media/characters/wubs/front.svg",
  45864. extra: 1345/1325,
  45865. bottom: 70/1415
  45866. }
  45867. },
  45868. back: {
  45869. height: math.unit(6 + 2/12, "feet"),
  45870. weight: math.unit(210, "lb"),
  45871. name: "Back",
  45872. image: {
  45873. source: "./media/characters/wubs/back.svg",
  45874. extra: 1296/1275,
  45875. bottom: 58/1354
  45876. }
  45877. },
  45878. },
  45879. [
  45880. {
  45881. name: "Normal",
  45882. height: math.unit(6 + 2/12, "feet"),
  45883. default: true
  45884. },
  45885. {
  45886. name: "Macro",
  45887. height: math.unit(1000, "feet")
  45888. },
  45889. {
  45890. name: "Megamacro",
  45891. height: math.unit(1, "mile")
  45892. },
  45893. ]
  45894. ))
  45895. characterMakers.push(() => makeCharacter(
  45896. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  45897. {
  45898. front: {
  45899. height: math.unit(4, "feet"),
  45900. weight: math.unit(120, "lb"),
  45901. name: "Front",
  45902. image: {
  45903. source: "./media/characters/blue/front.svg",
  45904. extra: 1636/1525,
  45905. bottom: 43/1679
  45906. }
  45907. },
  45908. back: {
  45909. height: math.unit(4, "feet"),
  45910. weight: math.unit(120, "lb"),
  45911. name: "Back",
  45912. image: {
  45913. source: "./media/characters/blue/back.svg",
  45914. extra: 1660/1560,
  45915. bottom: 57/1717
  45916. }
  45917. },
  45918. paws: {
  45919. height: math.unit(0.826, "feet"),
  45920. name: "Paws",
  45921. image: {
  45922. source: "./media/characters/blue/paws.svg"
  45923. }
  45924. },
  45925. },
  45926. [
  45927. {
  45928. name: "Micro",
  45929. height: math.unit(3, "inches")
  45930. },
  45931. {
  45932. name: "Normal",
  45933. height: math.unit(4, "feet"),
  45934. default: true
  45935. },
  45936. {
  45937. name: "Femenine Form",
  45938. height: math.unit(14, "feet")
  45939. },
  45940. {
  45941. name: "Werebat Form",
  45942. height: math.unit(18, "feet")
  45943. },
  45944. ]
  45945. ))
  45946. characterMakers.push(() => makeCharacter(
  45947. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  45948. {
  45949. female: {
  45950. height: math.unit(7 + 4/12, "feet"),
  45951. weight: math.unit(243, "lb"),
  45952. name: "Female",
  45953. image: {
  45954. source: "./media/characters/kaya/female.svg",
  45955. extra: 975/898,
  45956. bottom: 34/1009
  45957. }
  45958. },
  45959. herm: {
  45960. height: math.unit(7 + 4/12, "feet"),
  45961. weight: math.unit(243, "lb"),
  45962. name: "Herm",
  45963. image: {
  45964. source: "./media/characters/kaya/herm.svg",
  45965. extra: 975/898,
  45966. bottom: 34/1009
  45967. }
  45968. },
  45969. },
  45970. [
  45971. {
  45972. name: "Normal",
  45973. height: math.unit(7 + 4/12, "feet"),
  45974. default: true
  45975. },
  45976. ]
  45977. ))
  45978. characterMakers.push(() => makeCharacter(
  45979. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  45980. {
  45981. female: {
  45982. height: math.unit(9 + 4/12, "feet"),
  45983. weight: math.unit(398, "lb"),
  45984. name: "Female",
  45985. image: {
  45986. source: "./media/characters/kassandra/female.svg",
  45987. extra: 908/839,
  45988. bottom: 61/969
  45989. }
  45990. },
  45991. intersex: {
  45992. height: math.unit(9 + 4/12, "feet"),
  45993. weight: math.unit(398, "lb"),
  45994. name: "Intersex",
  45995. image: {
  45996. source: "./media/characters/kassandra/intersex.svg",
  45997. extra: 908/839,
  45998. bottom: 61/969
  45999. }
  46000. },
  46001. },
  46002. [
  46003. {
  46004. name: "Normal",
  46005. height: math.unit(9 + 4/12, "feet"),
  46006. default: true
  46007. },
  46008. ]
  46009. ))
  46010. characterMakers.push(() => makeCharacter(
  46011. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  46012. {
  46013. front: {
  46014. height: math.unit(3, "meters"),
  46015. name: "Front",
  46016. image: {
  46017. source: "./media/characters/amy/front.svg",
  46018. extra: 1380/1343,
  46019. bottom: 70/1450
  46020. }
  46021. },
  46022. back: {
  46023. height: math.unit(3, "meters"),
  46024. name: "Back",
  46025. image: {
  46026. source: "./media/characters/amy/back.svg",
  46027. extra: 1380/1347,
  46028. bottom: 66/1446
  46029. }
  46030. },
  46031. },
  46032. [
  46033. {
  46034. name: "Normal",
  46035. height: math.unit(3, "meters"),
  46036. default: true
  46037. },
  46038. ]
  46039. ))
  46040. //characters
  46041. function makeCharacters() {
  46042. const results = [];
  46043. characterMakers.forEach(character => {
  46044. results.push(character());
  46045. });
  46046. return results;
  46047. }