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

48301 wiersze
1.2 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.energyNeed) {
  46. views[key].attributes.capacity = {
  47. name: "Food Intake",
  48. power: 3,
  49. type: "energy",
  50. base: value.energyNeed
  51. }
  52. }
  53. });
  54. return createEntityMaker(info, views, defaultSizes, forms);
  55. }
  56. const speciesData = {
  57. animal: {
  58. name: "Animal"
  59. },
  60. dog: {
  61. name: "Dog",
  62. parents: [
  63. "canine"
  64. ]
  65. },
  66. canine: {
  67. name: "Canine",
  68. parents: [
  69. "mammal"
  70. ]
  71. },
  72. crux: {
  73. name: "Crux",
  74. parents: [
  75. "mammal"
  76. ]
  77. },
  78. mammal: {
  79. name: "Mammal",
  80. parents: [
  81. "animal"
  82. ]
  83. },
  84. "rough-collie": {
  85. name: "Rough Collie",
  86. parents: [
  87. "dog"
  88. ]
  89. },
  90. dragon: {
  91. name: "Dragon",
  92. parents: [
  93. "reptile"
  94. ]
  95. },
  96. reptile: {
  97. name: "Reptile",
  98. parents: [
  99. "animal"
  100. ]
  101. },
  102. woodpecker: {
  103. name: "Woodpecker",
  104. parents: [
  105. "avian"
  106. ]
  107. },
  108. avian: {
  109. name: "Avian",
  110. parents: [
  111. "animal"
  112. ]
  113. },
  114. kitsune: {
  115. name: "Kitsune",
  116. parents: [
  117. "fox"
  118. ]
  119. },
  120. fox: {
  121. name: "Fox",
  122. parents: [
  123. "mammal"
  124. ]
  125. },
  126. pokemon: {
  127. name: "Pokemon"
  128. },
  129. tiger: {
  130. name: "Tiger",
  131. parents: [
  132. "cat"
  133. ]
  134. },
  135. cat: {
  136. name: "Cat",
  137. parents: [
  138. "feliform"
  139. ]
  140. },
  141. "blue-jay": {
  142. name: "Blue Jay",
  143. parents: [
  144. "avian"
  145. ]
  146. },
  147. wolf: {
  148. name: "Wolf",
  149. parents: [
  150. "mammal"
  151. ]
  152. },
  153. coyote: {
  154. name: "Coyote",
  155. parents: [
  156. "mammal"
  157. ]
  158. },
  159. raccoon: {
  160. name: "Raccoon",
  161. parents: [
  162. "mammal"
  163. ]
  164. },
  165. weasel: {
  166. name: "Weasel",
  167. parents: [
  168. "mustelid"
  169. ]
  170. },
  171. "red-panda": {
  172. name: "Red Panda",
  173. parents: [
  174. "mammal"
  175. ]
  176. },
  177. dolphin: {
  178. name: "Dolphin",
  179. parents: [
  180. "mammal"
  181. ]
  182. },
  183. "african-wild-dog": {
  184. name: "African Wild Dog",
  185. parents: [
  186. "canine"
  187. ]
  188. },
  189. "hyena": {
  190. name: "Hyena",
  191. parents: [
  192. "feliform"
  193. ]
  194. },
  195. "carbuncle": {
  196. name: "Carbuncle",
  197. parents: [
  198. "animal"
  199. ]
  200. },
  201. bat: {
  202. name: "Bat",
  203. parents: [
  204. "mammal"
  205. ]
  206. },
  207. "leaf-nosed-bat": {
  208. name: "Leaf-Nosed Bat",
  209. parents: [
  210. "bat"
  211. ]
  212. },
  213. "fish": {
  214. name: "Fish",
  215. parents: [
  216. "animal"
  217. ]
  218. },
  219. "ram": {
  220. name: "Ram",
  221. parents: [
  222. "mammal"
  223. ]
  224. },
  225. "demon": {
  226. name: "Demon",
  227. parents: [
  228. "supernatural"
  229. ]
  230. },
  231. "cougar": {
  232. name: "Cougar",
  233. parents: [
  234. "cat"
  235. ]
  236. },
  237. "goat": {
  238. name: "Goat",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "lion": {
  244. name: "Lion",
  245. parents: [
  246. "cat"
  247. ]
  248. },
  249. "harpy-eager": {
  250. name: "Harpy Eagle",
  251. parents: [
  252. "avian"
  253. ]
  254. },
  255. "deer": {
  256. name: "Deer",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "phoenix": {
  262. name: "Phoenix",
  263. parents: [
  264. "avian"
  265. ]
  266. },
  267. "aeromorph": {
  268. name: "Aeromorph",
  269. parents: [
  270. "machine"
  271. ]
  272. },
  273. "machine": {
  274. name: "Machine",
  275. },
  276. "android": {
  277. name: "Android",
  278. parents: [
  279. "machine"
  280. ]
  281. },
  282. "jackal": {
  283. name: "Jackal",
  284. parents: [
  285. "canine"
  286. ]
  287. },
  288. "corvid": {
  289. name: "Corvid",
  290. parents: [
  291. "avian"
  292. ]
  293. },
  294. "pharaoh-hound": {
  295. name: "Pharaoh Hound",
  296. parents: [
  297. "dog"
  298. ]
  299. },
  300. "skunk": {
  301. name: "Skunk",
  302. parents: [
  303. "mammal"
  304. ]
  305. },
  306. "shark": {
  307. name: "Shark",
  308. parents: [
  309. "fish"
  310. ]
  311. },
  312. "black-panther": {
  313. name: "Black Panther",
  314. parents: [
  315. "cat"
  316. ]
  317. },
  318. "umbra": {
  319. name: "Umbra",
  320. parents: [
  321. "animal"
  322. ]
  323. },
  324. "raven": {
  325. name: "Raven",
  326. parents: [
  327. "corvid"
  328. ]
  329. },
  330. "snow-leopard": {
  331. name: "Snow Leopard",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "barbary-lion": {
  337. name: "Barbary Lion",
  338. parents: [
  339. "lion"
  340. ]
  341. },
  342. "dra'gal": {
  343. name: "Dra'Gal",
  344. parents: [
  345. "mammal"
  346. ]
  347. },
  348. "german-shepherd": {
  349. name: "German Shepherd",
  350. parents: [
  351. "dog"
  352. ]
  353. },
  354. "bayleef": {
  355. name: "Bayleef",
  356. parents: [
  357. "pokemon"
  358. ]
  359. },
  360. "mouse": {
  361. name: "Mouse",
  362. parents: [
  363. "rodent"
  364. ]
  365. },
  366. "rat": {
  367. name: "Rat",
  368. parents: [
  369. "mammal"
  370. ]
  371. },
  372. "hoshiko-beast": {
  373. name: "Hoshiko Beast",
  374. parents: ["animal"]
  375. },
  376. "snow-jugani": {
  377. name: "Snow Jugani",
  378. parents: ["cat"]
  379. },
  380. "patamon": {
  381. name: "Patamon",
  382. parents: ["digimon"]
  383. },
  384. "digimon": {
  385. name: "Digimon",
  386. },
  387. "jugani": {
  388. name: "Jugani",
  389. parents: ["cat"]
  390. },
  391. "luxray": {
  392. name: "Luxray",
  393. parents: ["pokemon"]
  394. },
  395. "mech": {
  396. name: "Mech",
  397. parents: ["machine"]
  398. },
  399. "zoid": {
  400. name: "Zoid",
  401. parents: ["mech"]
  402. },
  403. "monster": {
  404. name: "Monster",
  405. parents: ["animal"]
  406. },
  407. "foo-dog": {
  408. name: "Foo Dog",
  409. parents: ["mammal"]
  410. },
  411. "elephant": {
  412. name: "Elephant",
  413. parents: ["mammal"]
  414. },
  415. "eagle": {
  416. name: "Eagle",
  417. parents: ["avian"]
  418. },
  419. "cow": {
  420. name: "Cow",
  421. parents: ["mammal"]
  422. },
  423. "crocodile": {
  424. name: "Crocodile",
  425. parents: ["reptile"]
  426. },
  427. "borzoi": {
  428. name: "Borzoi",
  429. parents: ["dog"]
  430. },
  431. "snake": {
  432. name: "Snake",
  433. parents: ["reptile"]
  434. },
  435. "horned-bush-viper": {
  436. name: "Horned Bush Viper",
  437. parents: ["snake"]
  438. },
  439. "cobra": {
  440. name: "Cobra",
  441. parents: ["snake"]
  442. },
  443. "harpy-eagle": {
  444. name: "Harpy Eagle",
  445. parents: ["eagle"]
  446. },
  447. "raptor": {
  448. name: "Raptor",
  449. parents: ["dinosaur"]
  450. },
  451. "dinosaur": {
  452. name: "Dinosaur",
  453. parents: ["reptile"]
  454. },
  455. "veilhound": {
  456. name: "Veilhound",
  457. parents: ["hellhound"]
  458. },
  459. "hellhound": {
  460. name: "Hellhound",
  461. parents: ["canine", "demon"]
  462. },
  463. "insect": {
  464. name: "Insect",
  465. parents: ["animal"]
  466. },
  467. "beetle": {
  468. name: "Beetle",
  469. parents: ["insect"]
  470. },
  471. "moth": {
  472. name: "Moth",
  473. parents: ["insect"]
  474. },
  475. "eastern-dragon": {
  476. name: "Eastern Dragon",
  477. parents: ["dragon"]
  478. },
  479. "jaguar": {
  480. name: "Jaguar",
  481. parents: ["cat"]
  482. },
  483. "horse": {
  484. name: "Horse",
  485. parents: ["mammal"]
  486. },
  487. "sergal": {
  488. name: "Sergal",
  489. parents: ["mammal"]
  490. },
  491. "gryphon": {
  492. name: "Gryphon",
  493. parents: ["lion", "eagle"]
  494. },
  495. "robot": {
  496. name: "Robot",
  497. parents: ["machine"]
  498. },
  499. "medihound": {
  500. name: "Medihound",
  501. parents: ["robot", "dog"]
  502. },
  503. "sylveon": {
  504. name: "Sylveon",
  505. parents: ["pokemon"]
  506. },
  507. "catgirl": {
  508. name: "Catgirl",
  509. parents: ["mammal"]
  510. },
  511. "cowgirl": {
  512. name: "Cowgirl",
  513. parents: ["mammal"]
  514. },
  515. "pony": {
  516. name: "Pony",
  517. parents: ["horse"]
  518. },
  519. "rabbit": {
  520. name: "Rabbit",
  521. parents: ["leporidae"]
  522. },
  523. "fennec-fox": {
  524. name: "Fennec Fox",
  525. parents: ["fox"]
  526. },
  527. "azodian": {
  528. name: "Azodian",
  529. parents: ["mouse"]
  530. },
  531. "shiba-inu": {
  532. name: "Shiba Inu",
  533. parents: ["dog"]
  534. },
  535. "changeling": {
  536. name: "Changeling",
  537. parents: ["insect"]
  538. },
  539. "cheetah": {
  540. name: "Cheetah",
  541. parents: ["cat"]
  542. },
  543. "golden-jackal": {
  544. name: "Golden Jackal",
  545. parents: ["jackal"]
  546. },
  547. "manectric": {
  548. name: "Manectric",
  549. parents: ["pokemon"]
  550. },
  551. "rat": {
  552. name: "Rat",
  553. parents: ["rodent"]
  554. },
  555. "rodent": {
  556. name: "Rodent",
  557. parents: ["mammal"]
  558. },
  559. "octocoon": {
  560. name: "Octocoon",
  561. parents: ["raccoon", "octopus"]
  562. },
  563. "octopus": {
  564. name: "Octopus",
  565. parents: ["fish"]
  566. },
  567. "werewolf": {
  568. name: "Werewolf",
  569. parents: ["wolf", "werebeast"]
  570. },
  571. "werebeast": {
  572. name: "Werebeast",
  573. parents: ["monster"]
  574. },
  575. "meerkat": {
  576. name: "Meerkat",
  577. parents: ["mammal"]
  578. },
  579. "human": {
  580. name: "Human",
  581. parents: ["mammal"]
  582. },
  583. "geth": {
  584. name: "Geth",
  585. parents: ["android"]
  586. },
  587. "husky": {
  588. name: "Husky",
  589. parents: ["dog"]
  590. },
  591. "long-eared-bat": {
  592. name: "Long Eared Bat",
  593. parents: ["bat"]
  594. },
  595. "lizard": {
  596. name: "Lizard",
  597. parents: ["reptile"]
  598. },
  599. "salamander": {
  600. name: "Salamander",
  601. parents: ["lizard"]
  602. },
  603. "chameleon": {
  604. name: "Chameleon",
  605. parents: ["lizard"]
  606. },
  607. "gecko": {
  608. name: "Gecko",
  609. parents: ["lizard"]
  610. },
  611. "kobold": {
  612. name: "Kobold",
  613. parents: ["reptile"]
  614. },
  615. "charizard": {
  616. name: "Charizard",
  617. parents: ["pokemon"]
  618. },
  619. "lugia": {
  620. name: "Lugia",
  621. parents: ["pokemon"]
  622. },
  623. "cerberus": {
  624. name: "Cerberus",
  625. parents: ["dog"]
  626. },
  627. "tyrantrum": {
  628. name: "Tyrantrum",
  629. parents: ["pokemon"]
  630. },
  631. "lemur": {
  632. name: "Lemur",
  633. parents: ["mammal"]
  634. },
  635. "kelpie": {
  636. name: "Kelpie",
  637. parents: ["horse", "monster"]
  638. },
  639. "labrador": {
  640. name: "Labrador",
  641. parents: ["dog"]
  642. },
  643. "sylveon": {
  644. name: "Sylveon",
  645. parents: ["eeveelution"]
  646. },
  647. "eeveelution": {
  648. name: "Eeveelution",
  649. parents: ["pokemon"]
  650. },
  651. "polar-bear": {
  652. name: "Polar Bear",
  653. parents: ["bear"]
  654. },
  655. "bear": {
  656. name: "Bear",
  657. parents: ["mammal"]
  658. },
  659. "absol": {
  660. name: "Absol",
  661. parents: ["pokemon"]
  662. },
  663. "wolver": {
  664. name: "Wolver",
  665. parents: ["mammal"]
  666. },
  667. "rottweiler": {
  668. name: "Rottweiler",
  669. parents: ["dog"]
  670. },
  671. "zebra": {
  672. name: "Zebra",
  673. parents: ["horse"]
  674. },
  675. "yoshi": {
  676. name: "Yoshi",
  677. parents: ["lizard"]
  678. },
  679. "lynx": {
  680. name: "Lynx",
  681. parents: ["cat"]
  682. },
  683. "unknown": {
  684. name: "Unknown",
  685. parents: []
  686. },
  687. "thylacine": {
  688. name: "Thylacine",
  689. parents: ["mammal"]
  690. },
  691. "gabumon": {
  692. name: "Gabumon",
  693. parents: ["digimon"]
  694. },
  695. "border-collie": {
  696. name: "Border Collie",
  697. parents: ["dog"]
  698. },
  699. "imp": {
  700. name: "Imp",
  701. parents: ["demon"]
  702. },
  703. "kangaroo": {
  704. name: "Kangaroo",
  705. parents: ["marsupial"]
  706. },
  707. "renamon": {
  708. name: "Renamon",
  709. parents: ["digimon"]
  710. },
  711. "candy-orca-dragon": {
  712. name: "Candy Orca Dragon",
  713. parents: ["fish", "dragon", "candy"]
  714. },
  715. "sabertooth-tiger": {
  716. name: "Sabertooth Tiger",
  717. parents: ["cat"]
  718. },
  719. "espurr": {
  720. name: "Espurr",
  721. parents: ["pokemon"]
  722. },
  723. "otter": {
  724. name: "Otter",
  725. parents: ["mustelid"]
  726. },
  727. "elemental": {
  728. name: "Elemental",
  729. parents: ["mammal"]
  730. },
  731. "mew": {
  732. name: "Mew",
  733. parents: ["pokemon"]
  734. },
  735. "goodra": {
  736. name: "Goodra",
  737. parents: ["pokemon"]
  738. },
  739. "fairy": {
  740. name: "Fairy",
  741. parents: ["magical"]
  742. },
  743. "typhlosion": {
  744. name: "Typhlosion",
  745. parents: ["pokemon"]
  746. },
  747. "magical": {
  748. name: "Magical",
  749. parents: []
  750. },
  751. "xenomorph": {
  752. name: "Xenomorph",
  753. parents: ["monster", "alien"]
  754. },
  755. "charr": {
  756. name: "Charr",
  757. parents: ["cat"]
  758. },
  759. "siberian-husky": {
  760. name: "Siberian Husky",
  761. parents: ["husky"]
  762. },
  763. "alligator": {
  764. name: "Alligator",
  765. parents: ["reptile"]
  766. },
  767. "bernese-mountain-dog": {
  768. name: "Bernese Mountain Dog",
  769. parents: ["dog"]
  770. },
  771. "reshiram": {
  772. name: "Reshiram",
  773. parents: ["pokemon"]
  774. },
  775. "grizzly-bear": {
  776. name: "Grizzly Bear",
  777. parents: ["bear"]
  778. },
  779. "water-monitor": {
  780. name: "Water Monitor",
  781. parents: ["lizard"]
  782. },
  783. "banchofossa": {
  784. name: "Banchofossa",
  785. parents: ["mammal"]
  786. },
  787. "kirin": {
  788. name: "Kirin",
  789. parents: ["monster"]
  790. },
  791. "quilava": {
  792. name: "Quilava",
  793. parents: ["pokemon"]
  794. },
  795. "seviper": {
  796. name: "Seviper",
  797. parents: ["pokemon"]
  798. },
  799. "flying-fox": {
  800. name: "Flying Fox",
  801. parents: ["bat"]
  802. },
  803. "keynain": {
  804. name: "Keynain",
  805. parents: ["avian"]
  806. },
  807. "lucario": {
  808. name: "Lucario",
  809. parents: ["pokemon"]
  810. },
  811. "siamese-cat": {
  812. name: "Siamese Cat",
  813. parents: ["cat"]
  814. },
  815. "spider": {
  816. name: "Spider",
  817. parents: ["insect"]
  818. },
  819. "samurott": {
  820. name: "Samurott",
  821. parents: ["pokemon"]
  822. },
  823. "megalodon": {
  824. name: "Megalodon",
  825. parents: ["shark"]
  826. },
  827. "unicorn": {
  828. name: "Unicorn",
  829. parents: ["horse"]
  830. },
  831. "greninja": {
  832. name: "Greninja",
  833. parents: ["pokemon"]
  834. },
  835. "water-dragon": {
  836. name: "Water Dragon",
  837. parents: ["dragon"]
  838. },
  839. "cross-fox": {
  840. name: "Cross Fox",
  841. parents: ["fox"]
  842. },
  843. "synth": {
  844. name: "Synth",
  845. parents: ["machine"]
  846. },
  847. "construct": {
  848. name: "Construct",
  849. parents: []
  850. },
  851. "mexican-wolf": {
  852. name: "Mexican Wolf",
  853. parents: ["wolf"]
  854. },
  855. "leopard": {
  856. name: "Leopard",
  857. parents: ["cat"]
  858. },
  859. "pig": {
  860. name: "Pig",
  861. parents: ["mammal"]
  862. },
  863. "ampharos": {
  864. name: "Ampharos",
  865. parents: ["pokemon"]
  866. },
  867. "orca": {
  868. name: "Orca",
  869. parents: ["fish"]
  870. },
  871. "lycanroc": {
  872. name: "Lycanroc",
  873. parents: ["pokemon"]
  874. },
  875. "surkanu": {
  876. name: "Surkanu",
  877. parents: ["monster"]
  878. },
  879. "seal": {
  880. name: "Seal",
  881. parents: ["mammal"]
  882. },
  883. "keldeo": {
  884. name: "Keldeo",
  885. parents: ["pokemon"]
  886. },
  887. "great-dane": {
  888. name: "Great Dane",
  889. parents: ["dog"]
  890. },
  891. "black-backed-jackal": {
  892. name: "Black Backed Jackal",
  893. parents: ["jackal"]
  894. },
  895. "sheep": {
  896. name: "Sheep",
  897. parents: ["mammal"]
  898. },
  899. "leopard-seal": {
  900. name: "Leopard Seal",
  901. parents: ["seal"]
  902. },
  903. "zoroark": {
  904. name: "Zoroark",
  905. parents: ["pokemon"]
  906. },
  907. "maned-wolf": {
  908. name: "Maned Wolf",
  909. parents: ["canine"]
  910. },
  911. "dracha": {
  912. name: "Dracha",
  913. parents: ["dragon"]
  914. },
  915. "wolxi": {
  916. name: "Wolxi",
  917. parents: ["mammal", "alien"]
  918. },
  919. "dratini": {
  920. name: "Dratini",
  921. parents: ["pokemon", "dragon"]
  922. },
  923. "skaven": {
  924. name: "Skaven",
  925. parents: ["rat"]
  926. },
  927. "mongoose": {
  928. name: "Mongoose",
  929. parents: ["mammal"]
  930. },
  931. "lopunny": {
  932. name: "Lopunny",
  933. parents: ["pokemon", "rabbit"]
  934. },
  935. "feraligatr": {
  936. name: "Feraligatr",
  937. parents: ["pokemon", "alligator"]
  938. },
  939. "houndoom": {
  940. name: "Houndoom",
  941. parents: ["pokemon", "dog"]
  942. },
  943. "protogen": {
  944. name: "Protogen",
  945. parents: ["machine"]
  946. },
  947. "saint-bernard": {
  948. name: "Saint Bernard",
  949. parents: ["dog"]
  950. },
  951. "crow": {
  952. name: "Crow",
  953. parents: ["corvid"]
  954. },
  955. "delphox": {
  956. name: "Delphox",
  957. parents: ["pokemon", "fox"]
  958. },
  959. "moose": {
  960. name: "Moose",
  961. parents: ["mammal"]
  962. },
  963. "joraxian": {
  964. name: "Joraxian",
  965. parents: ["monster", "canine", "demon"]
  966. },
  967. "nimbat": {
  968. name: "Nimbat",
  969. parents: ["mammal"]
  970. },
  971. "aardwolf": {
  972. name: "Aardwolf",
  973. parents: ["canine"]
  974. },
  975. "fluudrani": {
  976. name: "Fluudrani",
  977. parents: ["animal"]
  978. },
  979. "arcanine": {
  980. name: "Arcanine",
  981. parents: ["pokemon", "dog"]
  982. },
  983. "inteleon": {
  984. name: "Inteleon",
  985. parents: ["pokemon", "fish"]
  986. },
  987. "ninetales": {
  988. name: "Ninetales",
  989. parents: ["pokemon", "kitsune"]
  990. },
  991. "tigrex": {
  992. name: "Tigrex",
  993. parents: ["tiger"]
  994. },
  995. "zorua": {
  996. name: "Zorua",
  997. parents: ["pokemon", "fox"]
  998. },
  999. "vulpix": {
  1000. name: "Vulpix",
  1001. parents: ["pokemon", "fox"]
  1002. },
  1003. "barghest": {
  1004. name: "Barghest",
  1005. parents: ["monster"]
  1006. },
  1007. "gray-wolf": {
  1008. name: "Gray Wolf",
  1009. parents: ["wolf"]
  1010. },
  1011. "ruppells-fox": {
  1012. name: "Rüppell's Fox",
  1013. parents: ["fox"]
  1014. },
  1015. "bull-terrier": {
  1016. name: "Bull Terrier",
  1017. parents: ["dog"]
  1018. },
  1019. "european-honey-buzzard": {
  1020. name: "European Honey Buzzard",
  1021. parents: ["avian"]
  1022. },
  1023. "t-rex": {
  1024. name: "Tyrannosaurus Rex",
  1025. parents: ["dinosaur"]
  1026. },
  1027. "mactarian": {
  1028. name: "Mactarian",
  1029. parents: ["shark", "monster"]
  1030. },
  1031. "mewtwo-y": {
  1032. name: "Mewtwo Y",
  1033. parents: ["mewtwo"]
  1034. },
  1035. "mewtwo": {
  1036. name: "Mewtwo",
  1037. parents: ["pokemon"]
  1038. },
  1039. "eevee": {
  1040. name: "Eevee",
  1041. parents: ["eeveelution"]
  1042. },
  1043. "mienshao": {
  1044. name: "Mienshao",
  1045. parents: ["pokemon"]
  1046. },
  1047. "sugar-glider": {
  1048. name: "Sugar Glider",
  1049. parents: ["opossum"]
  1050. },
  1051. "spectral-bat": {
  1052. name: "Spectral Bat",
  1053. parents: ["bat"]
  1054. },
  1055. "scolipede": {
  1056. name: "Scolipede",
  1057. parents: ["pokemon", "insect"]
  1058. },
  1059. "jackalope": {
  1060. name: "Jackalope",
  1061. parents: ["rabbit", "antelope"]
  1062. },
  1063. "caracal": {
  1064. name: "Caracal",
  1065. parents: ["cat"]
  1066. },
  1067. "stoat": {
  1068. name: "Stoat",
  1069. parents: ["mammal"]
  1070. },
  1071. "african-golden-cat": {
  1072. name: "African Golden Cat",
  1073. parents: ["cat"]
  1074. },
  1075. "gigantosaurus": {
  1076. name: "Gigantosaurus",
  1077. parents: ["dinosaur"]
  1078. },
  1079. "zorgoia": {
  1080. name: "Zorgoia",
  1081. parents: ["mammal"]
  1082. },
  1083. "monitor-lizard": {
  1084. name: "Monitor Lizard",
  1085. parents: ["lizard"]
  1086. },
  1087. "ziralkia": {
  1088. name: "Ziralkia",
  1089. parents: ["mammal"]
  1090. },
  1091. "kiiasi": {
  1092. name: "Kiiasi",
  1093. parents: ["animal"]
  1094. },
  1095. "synx": {
  1096. name: "Synx",
  1097. parents: ["monster"]
  1098. },
  1099. "panther": {
  1100. name: "Panther",
  1101. parents: ["cat"]
  1102. },
  1103. "azumarill": {
  1104. name: "Azumarill",
  1105. parents: ["pokemon"]
  1106. },
  1107. "river-snaptail": {
  1108. name: "River Snaptail",
  1109. parents: ["otter", "crocodile"]
  1110. },
  1111. "great-blue-heron": {
  1112. name: "Great Blue Heron",
  1113. parents: ["avian"]
  1114. },
  1115. "smeargle": {
  1116. name: "Smeargle",
  1117. parents: ["pokemon"]
  1118. },
  1119. "vendeilen": {
  1120. name: "Vendeilen",
  1121. parents: ["monster"]
  1122. },
  1123. "ventura": {
  1124. name: "Ventura",
  1125. parents: ["canine"]
  1126. },
  1127. "clouded-leopard": {
  1128. name: "Clouded Leopard",
  1129. parents: ["leopard"]
  1130. },
  1131. "argonian": {
  1132. name: "Argonian",
  1133. parents: ["lizard"]
  1134. },
  1135. "salazzle": {
  1136. name: "Salazzle",
  1137. parents: ["pokemon", "lizard"]
  1138. },
  1139. "je-stoff-drachen": {
  1140. name: "Je-Stoff Drachen",
  1141. parents: ["dragon"]
  1142. },
  1143. "finnish-spitz-dog": {
  1144. name: "Finnish Spitz Dog",
  1145. parents: ["dog"]
  1146. },
  1147. "gray-fox": {
  1148. name: "Gray Fox",
  1149. parents: ["fox"]
  1150. },
  1151. "opossum": {
  1152. name: "Opossum",
  1153. parents: ["mammal"]
  1154. },
  1155. "antelope": {
  1156. name: "Antelope",
  1157. parents: ["mammal"]
  1158. },
  1159. "weavile": {
  1160. name: "Weavile",
  1161. parents: ["pokemon"]
  1162. },
  1163. "pikachu": {
  1164. name: "Pikachu",
  1165. parents: ["pokemon", "mouse"]
  1166. },
  1167. "grovyle": {
  1168. name: "Grovyle",
  1169. parents: ["pokemon", "plant"]
  1170. },
  1171. "sthara": {
  1172. name: "Sthara",
  1173. parents: ["snow-leopard", "reptile"]
  1174. },
  1175. "star-warrior": {
  1176. name: "Star Warrior",
  1177. parents: ["magical"]
  1178. },
  1179. "dragonoid": {
  1180. name: "Dragonoid",
  1181. parents: ["dragon"]
  1182. },
  1183. "suicune": {
  1184. name: "Suicune",
  1185. parents: ["pokemon"]
  1186. },
  1187. "vole": {
  1188. name: "Vole",
  1189. parents: ["mammal"]
  1190. },
  1191. "blaziken": {
  1192. name: "Blaziken",
  1193. parents: ["pokemon", "avian"]
  1194. },
  1195. "buizel": {
  1196. name: "Buizel",
  1197. parents: ["pokemon", "fish"]
  1198. },
  1199. "floatzel": {
  1200. name: "Floatzel",
  1201. parents: ["pokemon", "fish"]
  1202. },
  1203. "umok": {
  1204. name: "Umok",
  1205. parents: ["avian"]
  1206. },
  1207. "sea-monster": {
  1208. name: "Sea Monster",
  1209. parents: ["monster", "fish"]
  1210. },
  1211. "egyptian-vulture": {
  1212. name: "Egyptian Vulture",
  1213. parents: ["avian"]
  1214. },
  1215. "doberman": {
  1216. name: "Doberman",
  1217. parents: ["dog"]
  1218. },
  1219. "zangoose": {
  1220. name: "Zangoose",
  1221. parents: ["pokemon", "mongoose"]
  1222. },
  1223. "mongoose": {
  1224. name: "Mongoose",
  1225. parents: ["mammal"]
  1226. },
  1227. "wickerbeast": {
  1228. name: "Wickerbeast",
  1229. parents: ["monster"]
  1230. },
  1231. "zenari": {
  1232. name: "Zenari",
  1233. parents: ["lizard"]
  1234. },
  1235. "plant": {
  1236. name: "Plant",
  1237. parents: []
  1238. },
  1239. "raskatox": {
  1240. name: "Raskatox",
  1241. parents: ["raccoon", "skunk", "cat", "fox"]
  1242. },
  1243. "mikromare": {
  1244. name: "mikromare",
  1245. parents: ["alien"]
  1246. },
  1247. "alien": {
  1248. name: "Alien",
  1249. parents: ["animal"]
  1250. },
  1251. "deity": {
  1252. name: "Deity",
  1253. parents: []
  1254. },
  1255. "skarlan": {
  1256. name: "Skarlan",
  1257. parents: ["slug", "dragon"]
  1258. },
  1259. "slug": {
  1260. name: "Slug",
  1261. parents: ["mollusk"]
  1262. },
  1263. "mollusk": {
  1264. name: "Mollusk",
  1265. parents: ["animal"]
  1266. },
  1267. "chimera": {
  1268. name: "Chimera",
  1269. parents: ["monster"]
  1270. },
  1271. "gestalt": {
  1272. name: "Gestalt",
  1273. parents: ["construct"]
  1274. },
  1275. "mimic": {
  1276. name: "Mimic",
  1277. parents: ["monster"]
  1278. },
  1279. "calico-rat": {
  1280. name: "Calico Rat",
  1281. parents: ["rat"]
  1282. },
  1283. "panda": {
  1284. name: "Panda",
  1285. parents: ["mammal"]
  1286. },
  1287. "oni": {
  1288. name: "Oni",
  1289. parents: ["monster"]
  1290. },
  1291. "pegasus": {
  1292. name: "Pegasus",
  1293. parents: ["horse"]
  1294. },
  1295. "vulpera": {
  1296. name: "Vulpera",
  1297. parents: ["fennec-fox"]
  1298. },
  1299. "ceratosaurus": {
  1300. name: "Ceratosaurus",
  1301. parents: ["dinosaur"]
  1302. },
  1303. "nykur": {
  1304. name: "Nykur",
  1305. parents: ["horse", "monster"]
  1306. },
  1307. "giraffe": {
  1308. name: "Giraffe",
  1309. parents: ["mammal"]
  1310. },
  1311. "tauren": {
  1312. name: "Tauren",
  1313. parents: ["cow"]
  1314. },
  1315. "draconi": {
  1316. name: "Draconi",
  1317. parents: ["alien", "cat", "cyborg"]
  1318. },
  1319. "dire-wolf": {
  1320. name: "Dire Wolf",
  1321. parents: ["wolf"]
  1322. },
  1323. "ferromorph": {
  1324. name: "Ferromorph",
  1325. parents: ["construct"]
  1326. },
  1327. "meowth": {
  1328. name: "Meowth",
  1329. parents: ["cat", "pokemon"]
  1330. },
  1331. "pavodragon": {
  1332. name: "Pavodragon",
  1333. parents: ["dragon"]
  1334. },
  1335. "aaltranae": {
  1336. name: "Aaltranae",
  1337. parents: ["dragon"]
  1338. },
  1339. "cyborg": {
  1340. name: "Cyborg",
  1341. parents: ["machine"]
  1342. },
  1343. "draptor": {
  1344. name: "Draptor",
  1345. parents: ["dragon"]
  1346. },
  1347. "candy": {
  1348. name: "Candy",
  1349. parents: []
  1350. },
  1351. "drenath": {
  1352. name: "Drenath",
  1353. parents: ["dragon", "snake", "rabbit"]
  1354. },
  1355. "coyju": {
  1356. name: "Coyju",
  1357. parents: ["coyote", "kaiju"]
  1358. },
  1359. "kaiju": {
  1360. name: "Kaiju",
  1361. parents: ["monster"]
  1362. },
  1363. "nickit": {
  1364. name: "Nickit",
  1365. parents: ["pokemon", "cat"]
  1366. },
  1367. "lopunny": {
  1368. name: "Lopunny",
  1369. parents: ["pokemon", "rabbit"]
  1370. },
  1371. "korean-jindo-dog": {
  1372. name: "Korean Jindo Dog",
  1373. parents: ["dog"]
  1374. },
  1375. "naga": {
  1376. name: "Naga",
  1377. parents: ["snake", "monster"]
  1378. },
  1379. "undead": {
  1380. name: "Undead",
  1381. parents: ["monster"]
  1382. },
  1383. "whale": {
  1384. name: "Whale",
  1385. parents: ["fish"]
  1386. },
  1387. "gelato-bee": {
  1388. name: "Gelato Bee",
  1389. parents: ["bee"]
  1390. },
  1391. "bee": {
  1392. name: "Bee",
  1393. parents: ["insect"]
  1394. },
  1395. "gardevoir": {
  1396. name: "Gardevoir",
  1397. parents: ["pokemon"]
  1398. },
  1399. "ant": {
  1400. name: "Ant",
  1401. parents: ["insect"]
  1402. },
  1403. "frog": {
  1404. name: "Frog",
  1405. parents: ["amphibian"]
  1406. },
  1407. "amphibian": {
  1408. name: "Amphibian",
  1409. parents: ["animal"]
  1410. },
  1411. "pangolin": {
  1412. name: "Pangolin",
  1413. parents: ["mammal"]
  1414. },
  1415. "uragi'viidorn": {
  1416. name: "Uragi'viidorn",
  1417. parents: ["avian", "bear"]
  1418. },
  1419. "gryphdelphais": {
  1420. name: "Gryphdelphais",
  1421. parents: ["dolphin", "gryphon"]
  1422. },
  1423. "plush": {
  1424. name: "Plush",
  1425. parents: ["construct"]
  1426. },
  1427. "draiger": {
  1428. name: "Draiger",
  1429. parents: ["dragon","tiger"]
  1430. },
  1431. "foxsky": {
  1432. name: "Foxsky",
  1433. parents: ["fox", "husky"]
  1434. },
  1435. "umbreon": {
  1436. name: "Umbreon",
  1437. parents: ["eeveelution"]
  1438. },
  1439. "slime-dragon": {
  1440. name: "Slime Dragon",
  1441. parents: ["dragon", "goo"]
  1442. },
  1443. "enderman": {
  1444. name: "Enderman",
  1445. parents: ["monster"]
  1446. },
  1447. "gremlin": {
  1448. name: "Gremlin",
  1449. parents: ["monster"]
  1450. },
  1451. "dragonsune": {
  1452. name: "Dragonsune",
  1453. parents: ["dragon", "kitsune"]
  1454. },
  1455. "ghost": {
  1456. name: "Ghost",
  1457. parents: ["supernatural"]
  1458. },
  1459. "false-vampire-bat": {
  1460. name: "False Vampire Bat",
  1461. parents: ["bat"]
  1462. },
  1463. "succubus": {
  1464. name: "Succubus",
  1465. parents: ["demon"]
  1466. },
  1467. "mia": {
  1468. name: "Mia",
  1469. parents: ["canine"]
  1470. },
  1471. "rainbow": {
  1472. name: "Rainbow",
  1473. parents: ["monster"]
  1474. },
  1475. "solgaleo": {
  1476. name: "Solgaleo",
  1477. parents: ["pokemon"]
  1478. },
  1479. "lucent-nargacuga": {
  1480. name: "Lucent Nargacuga",
  1481. parents: ["monster-hunter"]
  1482. },
  1483. "monster-hunter": {
  1484. name: "Monster Hunter",
  1485. parents: ["monster"]
  1486. },
  1487. "leviathan": {
  1488. "name": "Leviathan",
  1489. "url": "sea-monster"
  1490. },
  1491. "bull": {
  1492. name: "Bull",
  1493. parents: ["mammal"]
  1494. },
  1495. "tanuki": {
  1496. name: "Tanuki",
  1497. parents: ["monster"]
  1498. },
  1499. "chakat": {
  1500. name: "Chakat",
  1501. parents: ["cat"]
  1502. },
  1503. "hydra": {
  1504. name: "Hydra",
  1505. parents: ["monster"]
  1506. },
  1507. "zigzagoon": {
  1508. name: "Zigzagoon",
  1509. parents: ["raccoon", "pokemon"]
  1510. },
  1511. "vulture": {
  1512. name: "Vulture",
  1513. parents: ["avian"]
  1514. },
  1515. "eastern-dragon": {
  1516. name: "Eastern Dragon",
  1517. parents: ["dragon"]
  1518. },
  1519. "gryffon": {
  1520. name: "Gryffon",
  1521. parents: ["phoenix", "red-panda"]
  1522. },
  1523. "amtsvane": {
  1524. name: "Amtsvane",
  1525. parents: ["reptile"]
  1526. },
  1527. "kigavi": {
  1528. name: "Kigavi",
  1529. parents: ["avian"]
  1530. },
  1531. "turian": {
  1532. name: "Turian",
  1533. parents: ["avian"]
  1534. },
  1535. "zeraora": {
  1536. name: "Zeraora",
  1537. parents: ["pokemon"]
  1538. },
  1539. "sandshrew": {
  1540. name: "Sandshrew",
  1541. parents: ["pokemon", "pangolin"]
  1542. },
  1543. "valais-blacknose-sheep": {
  1544. name: "Valais Blacknose Sheep",
  1545. parents: ["sheep"]
  1546. },
  1547. "novaleit": {
  1548. name: "Novaleit",
  1549. parents: ["mammal"]
  1550. },
  1551. "dunnoh": {
  1552. name: "Dunnoh",
  1553. parents: ["mammal"]
  1554. },
  1555. "lunaral-dragon": {
  1556. name: "Lunaral Dragon",
  1557. parents: ["dragon"]
  1558. },
  1559. "arctic-wolf": {
  1560. name: "Arctic Wolf",
  1561. parents: ["wolf"]
  1562. },
  1563. "donkey": {
  1564. name: "Donkey",
  1565. parents: ["horse"]
  1566. },
  1567. "chinchilla": {
  1568. name: "Chinchilla",
  1569. parents: ["rodent"]
  1570. },
  1571. "felkin": {
  1572. name: "Felkin",
  1573. parents: ["dragon"]
  1574. },
  1575. "tykeriel": {
  1576. name: "Tykeriel",
  1577. parents: ["avian"]
  1578. },
  1579. "folf": {
  1580. name: "Folf",
  1581. parents: ["fox", "wolf"]
  1582. },
  1583. "pooltoy": {
  1584. name: "Pooltoy",
  1585. parents: ["construct"]
  1586. },
  1587. "demi": {
  1588. name: "Demi",
  1589. parents: ["human"]
  1590. },
  1591. "stegosaurus": {
  1592. name: "Stegosaurus",
  1593. parents: ["dinosaur"]
  1594. },
  1595. "computer-virus": {
  1596. name: "Computer Virus",
  1597. parents: ["program"]
  1598. },
  1599. "program": {
  1600. name: "Program",
  1601. parents: ["construct"]
  1602. },
  1603. "space-springhare": {
  1604. name: "Space Springhare",
  1605. parents: ["hare"]
  1606. },
  1607. "river-drake": {
  1608. name: "River Drake",
  1609. parents: ["dragon"]
  1610. },
  1611. "djinn": {
  1612. "name": "Djinn",
  1613. "url": "supernatural"
  1614. },
  1615. "supernatural": {
  1616. name: "Supernatural",
  1617. parents: ["monster"]
  1618. },
  1619. "grasshopper-mouse": {
  1620. name: "Grasshopper Mouse",
  1621. parents: ["mouse"]
  1622. },
  1623. "somali-cat": {
  1624. name: "Somali Cat",
  1625. parents: ["cat"]
  1626. },
  1627. "minccino": {
  1628. name: "Minccino",
  1629. parents: ["pokemon", "chinchilla"]
  1630. },
  1631. "pine-marten": {
  1632. name: "Pine Marten",
  1633. parents: ["marten"]
  1634. },
  1635. "marten": {
  1636. name: "Marten",
  1637. parents: ["mustelid"]
  1638. },
  1639. "mustelid": {
  1640. name: "Mustelid",
  1641. parents: ["mammal"]
  1642. },
  1643. "caribou": {
  1644. name: "Caribou",
  1645. parents: ["deer"]
  1646. },
  1647. "gnoll": {
  1648. name: "Gnoll",
  1649. parents: ["hyena", "monster"]
  1650. },
  1651. "peacekeeper": {
  1652. name: "Peacekeeper",
  1653. parents: ["human"]
  1654. },
  1655. "river-otter": {
  1656. name: "River Otter",
  1657. parents: ["otter"]
  1658. },
  1659. "dhole": {
  1660. name: "Dhole",
  1661. parents: ["canine"]
  1662. },
  1663. "springbok": {
  1664. name: "Springbok",
  1665. parents: ["antelope"]
  1666. },
  1667. "marsupial": {
  1668. name: "Marsupial",
  1669. parents: ["mammal"]
  1670. },
  1671. "townsend-big-eared-bat": {
  1672. name: "Townsend Big-eared Bat",
  1673. parents: ["bat"]
  1674. },
  1675. "squirrel": {
  1676. name: "Squirrel",
  1677. parents: ["rodent"]
  1678. },
  1679. "magpie": {
  1680. name: "Magpie",
  1681. parents: ["corvid"]
  1682. },
  1683. "civet": {
  1684. name: "Civet",
  1685. parents: ["feliform"]
  1686. },
  1687. "feliform": {
  1688. name: "Feliform",
  1689. parents: ["mammal"]
  1690. },
  1691. "tiefling": {
  1692. name: "Tiefling",
  1693. parents: ["devil"]
  1694. },
  1695. "devil": {
  1696. name: "Devil",
  1697. parents: ["supernatural"]
  1698. },
  1699. "sika-deer": {
  1700. name: "Sika Deer",
  1701. parents: ["deer"]
  1702. },
  1703. "vaporeon": {
  1704. name: "Vaporeon",
  1705. parents: ["eeveelution"]
  1706. },
  1707. "leafeon": {
  1708. name: "Leafeon",
  1709. parents: ["eeveelution"]
  1710. },
  1711. "jolteon": {
  1712. name: "Jolteon",
  1713. parents: ["eeveelution"]
  1714. },
  1715. "spireborn": {
  1716. name: "Spireborn",
  1717. parents: ["zorgoia"]
  1718. },
  1719. "vampire": {
  1720. name: "Vampire",
  1721. parents: ["monster"]
  1722. },
  1723. "extraplanar": {
  1724. name: "Extraplanar",
  1725. parents: []
  1726. },
  1727. "goo": {
  1728. name: "Goo",
  1729. parents: []
  1730. },
  1731. "skink": {
  1732. name: "Skink",
  1733. parents: ["lizard"]
  1734. },
  1735. "bat-eared-fox": {
  1736. name: "Bat-eared Fox",
  1737. parents: ["fox"]
  1738. },
  1739. "belted-kingfisher": {
  1740. name: "Belted Kingfisher",
  1741. parents: ["avian"]
  1742. },
  1743. "omnifalcon": {
  1744. name: "Omnifalcon",
  1745. parents: ["gryphon", "falcon", "harpy-eagle"]
  1746. },
  1747. "falcon": {
  1748. name: "Falcon",
  1749. parents: ["avian"]
  1750. },
  1751. "avali": {
  1752. name: "Avali",
  1753. parents: ["avian", "alien"]
  1754. },
  1755. "arctic-fox": {
  1756. name: "Arctic Fox",
  1757. parents: ["fox"]
  1758. },
  1759. "snow-tiger": {
  1760. name: "Snow Tiger",
  1761. parents: ["tiger"]
  1762. },
  1763. "marble-fox": {
  1764. name: "Marble Fox",
  1765. parents: ["fox"]
  1766. },
  1767. "king-wickerbeast": {
  1768. name: "King Wickerbeast",
  1769. parents: ["wickerbeast"]
  1770. },
  1771. "wickerbeast": {
  1772. name: "Wickerbeast",
  1773. parents: ["mammal"]
  1774. },
  1775. "european-polecat": {
  1776. name: "European Polecat",
  1777. parents: ["mustelid"]
  1778. },
  1779. "teshari": {
  1780. name: "Teshari",
  1781. parents: ["avian", "raptor"]
  1782. },
  1783. "alicorn": {
  1784. name: "Alicorn",
  1785. parents: ["horse"]
  1786. },
  1787. "atlas-moth": {
  1788. name: "Atlas Moth",
  1789. parents: ["moth"]
  1790. },
  1791. "owlbear": {
  1792. name: "Owlbear",
  1793. parents: ["owl", "bear", "monster"]
  1794. },
  1795. "owl": {
  1796. name: "Owl",
  1797. parents: ["avian"]
  1798. },
  1799. "silvertongue": {
  1800. name: "Silvertongue",
  1801. parents: ["reptile"]
  1802. },
  1803. "ahuizotl": {
  1804. name: "Ahuizotl",
  1805. parents: ["monster"]
  1806. },
  1807. "ender-dragon": {
  1808. name: "Ender Dragon",
  1809. parents: ["dragon"]
  1810. },
  1811. "bruhathkayosaurus": {
  1812. name: "Bruhathkayosaurus",
  1813. parents: ["sauropod"]
  1814. },
  1815. "sauropod": {
  1816. name: "Sauropod",
  1817. parents: ["dinosaur"]
  1818. },
  1819. "black-sable-antelope": {
  1820. name: "Black Sable Antelope",
  1821. parents: ["antelope"]
  1822. },
  1823. "slime": {
  1824. name: "Slime",
  1825. parents: ["goo"]
  1826. },
  1827. "utahraptor": {
  1828. name: "Utahraptor",
  1829. parents: ["raptor"]
  1830. },
  1831. "indian-giant-squirrel": {
  1832. name: "Indian Giant Squirrel",
  1833. parents: ["squirrel"]
  1834. },
  1835. "golden-retriever": {
  1836. name: "Golden Retriever",
  1837. parents: ["dog"]
  1838. },
  1839. "triceratops": {
  1840. name: "Triceratops",
  1841. parents: ["dinosaur"]
  1842. },
  1843. "drake": {
  1844. name: "Drake",
  1845. parents: ["dragon"]
  1846. },
  1847. "okapi": {
  1848. name: "Okapi",
  1849. parents: ["giraffe"]
  1850. },
  1851. "arctic-hare": {
  1852. name: "Arctic Hare",
  1853. parents: ["hare"]
  1854. },
  1855. "hare": {
  1856. name: "Hare",
  1857. parents: ["leporidae"]
  1858. },
  1859. "leporidae": {
  1860. name: "Leporidae",
  1861. parents: ["mammal"]
  1862. },
  1863. "leopard-gecko": {
  1864. name: "Leopard Gecko",
  1865. parents: ["gecko"]
  1866. },
  1867. "dreamspawn": {
  1868. name: "Dreamspawn",
  1869. parents: ["illusion"]
  1870. },
  1871. "illusion": {
  1872. name: "Illusion",
  1873. parents: []
  1874. },
  1875. "purrloin": {
  1876. name: "Purrloin",
  1877. parents: ["cat", "pokemon"]
  1878. },
  1879. "noivern": {
  1880. name: "Noivern",
  1881. parents: ["bat", "dragon", "pokemon"]
  1882. },
  1883. "hedgehog": {
  1884. name: "Hedgehog",
  1885. parents: ["mammal"]
  1886. },
  1887. "liger": {
  1888. name: "Liger",
  1889. parents: ["lion", "tiger", "hybrid"]
  1890. },
  1891. "hybrid": {
  1892. name: "Hybrid",
  1893. parents: []
  1894. },
  1895. }
  1896. //species
  1897. function getSpeciesInfo(speciesList) {
  1898. let result = new Set();
  1899. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1900. result.add(entry)
  1901. });
  1902. return Array.from(result);
  1903. };
  1904. function getSpeciesInfoHelper(species) {
  1905. if (!speciesData[species]) {
  1906. console.warn(species + " doesn't exist");
  1907. return [];
  1908. }
  1909. if (speciesData[species].parents) {
  1910. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1911. } else {
  1912. return [species];
  1913. }
  1914. }
  1915. characterMakers.push(() => makeCharacter(
  1916. {
  1917. name: "Fen",
  1918. species: ["crux"],
  1919. description: {
  1920. title: "Bio",
  1921. text: "Very furry. Sheds on everything."
  1922. },
  1923. tags: [
  1924. "anthro",
  1925. "goo"
  1926. ]
  1927. },
  1928. {
  1929. front: {
  1930. height: math.unit(12, "feet"),
  1931. weight: math.unit(2400, "lb"),
  1932. name: "Front",
  1933. image: {
  1934. source: "./media/characters/fen/front.svg",
  1935. extra: 1804/1562,
  1936. bottom: 205/2009
  1937. }
  1938. },
  1939. diving: {
  1940. height: math.unit(4.9, "meters"),
  1941. weight: math.unit(2400, "lb"),
  1942. name: "Diving",
  1943. image: {
  1944. source: "./media/characters/fen/diving.svg"
  1945. }
  1946. },
  1947. goo: {
  1948. height: math.unit(12, "feet"),
  1949. weight: math.unit(3000, "lb"),
  1950. capacity: math.unit(6, "people"),
  1951. name: "Goo",
  1952. image: {
  1953. source: "./media/characters/fen/goo.svg",
  1954. extra: 1307/1071,
  1955. bottom: 134/1441
  1956. }
  1957. },
  1958. maw: {
  1959. height: math.unit(5.03, "feet"),
  1960. name: "Maw",
  1961. image: {
  1962. source: "./media/characters/fen/maw.svg"
  1963. }
  1964. },
  1965. gooCeiling: {
  1966. height: math.unit(6.6, "feet"),
  1967. weight: math.unit(3000, "lb"),
  1968. capacity: math.unit(6, "people"),
  1969. name: "Goo (Ceiling)",
  1970. image: {
  1971. source: "./media/characters/fen/goo-ceiling.svg"
  1972. }
  1973. },
  1974. back: {
  1975. height: math.unit(12, "feet"),
  1976. weight: math.unit(2400, "lb"),
  1977. name: "Back",
  1978. image: {
  1979. source: "./media/characters/fen/back.svg",
  1980. },
  1981. info: {
  1982. description: {
  1983. mode: "append",
  1984. text: "\n\nHe is not currently looking at you."
  1985. }
  1986. }
  1987. },
  1988. full: {
  1989. height: math.unit(1.6, "meter"),
  1990. weight: math.unit(3200, "lb"),
  1991. name: "Full",
  1992. image: {
  1993. source: "./media/characters/fen/full.svg",
  1994. extra: 1133/859,
  1995. bottom: 145/1278
  1996. },
  1997. info: {
  1998. description: {
  1999. mode: "append",
  2000. text: "\n\nMunch."
  2001. }
  2002. }
  2003. },
  2004. gooLounging: {
  2005. height: math.unit(4.53, "feet"),
  2006. weight: math.unit(3000, "lb"),
  2007. capacity: math.unit(6, "people"),
  2008. name: "Goo (Lounging)",
  2009. image: {
  2010. source: "./media/characters/fen/goo.svg",
  2011. bottom: 116 / 613
  2012. }
  2013. },
  2014. lounging: {
  2015. height: math.unit(10.52, "feet"),
  2016. weight: math.unit(2400, "lb"),
  2017. name: "Lounging",
  2018. image: {
  2019. source: "./media/characters/fen/lounging.svg"
  2020. }
  2021. },
  2022. },
  2023. [
  2024. {
  2025. name: "Small",
  2026. height: math.unit(2.2428, "meter")
  2027. },
  2028. {
  2029. name: "Normal",
  2030. height: math.unit(12, "feet"),
  2031. default: true,
  2032. },
  2033. {
  2034. name: "Big",
  2035. height: math.unit(20, "feet")
  2036. },
  2037. {
  2038. name: "Minimacro",
  2039. height: math.unit(40, "feet"),
  2040. info: {
  2041. description: {
  2042. mode: "append",
  2043. text: "\n\nTOO DAMN BIG"
  2044. }
  2045. }
  2046. },
  2047. {
  2048. name: "Macro",
  2049. height: math.unit(100, "feet"),
  2050. info: {
  2051. description: {
  2052. mode: "append",
  2053. text: "\n\nTOO DAMN BIG"
  2054. }
  2055. }
  2056. },
  2057. {
  2058. name: "Megamacro",
  2059. height: math.unit(2, "miles")
  2060. },
  2061. {
  2062. name: "Gigamacro",
  2063. height: math.unit(10, "earths")
  2064. },
  2065. ]
  2066. ))
  2067. characterMakers.push(() => makeCharacter(
  2068. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2069. {
  2070. front: {
  2071. height: math.unit(183, "cm"),
  2072. weight: math.unit(80, "kg"),
  2073. name: "Front",
  2074. image: {
  2075. source: "./media/characters/sofia-fluttertail/front.svg",
  2076. bottom: 0.01,
  2077. extra: 2154 / 2081
  2078. }
  2079. },
  2080. frontAlt: {
  2081. height: math.unit(183, "cm"),
  2082. weight: math.unit(80, "kg"),
  2083. name: "Front (alt)",
  2084. image: {
  2085. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2086. }
  2087. },
  2088. back: {
  2089. height: math.unit(183, "cm"),
  2090. weight: math.unit(80, "kg"),
  2091. name: "Back",
  2092. image: {
  2093. source: "./media/characters/sofia-fluttertail/back.svg"
  2094. }
  2095. },
  2096. kneeling: {
  2097. height: math.unit(125, "cm"),
  2098. weight: math.unit(80, "kg"),
  2099. name: "Kneeling",
  2100. image: {
  2101. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2102. extra: 1033 / 977,
  2103. bottom: 23.7 / 1057
  2104. }
  2105. },
  2106. maw: {
  2107. height: math.unit(183 / 5, "cm"),
  2108. name: "Maw",
  2109. image: {
  2110. source: "./media/characters/sofia-fluttertail/maw.svg"
  2111. }
  2112. },
  2113. mawcloseup: {
  2114. height: math.unit(183 / 5 * 0.41, "cm"),
  2115. name: "Maw (Closeup)",
  2116. image: {
  2117. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2118. }
  2119. },
  2120. paws: {
  2121. height: math.unit(1.17, "feet"),
  2122. name: "Paws",
  2123. image: {
  2124. source: "./media/characters/sofia-fluttertail/paws.svg",
  2125. extra: 851 / 851,
  2126. bottom: 17 / 868
  2127. }
  2128. },
  2129. },
  2130. [
  2131. {
  2132. name: "Normal",
  2133. height: math.unit(1.83, "meter")
  2134. },
  2135. {
  2136. name: "Size Thief",
  2137. height: math.unit(18, "feet")
  2138. },
  2139. {
  2140. name: "50 Foot Collie",
  2141. height: math.unit(50, "feet")
  2142. },
  2143. {
  2144. name: "Macro",
  2145. height: math.unit(96, "feet"),
  2146. default: true
  2147. },
  2148. {
  2149. name: "Megamerger",
  2150. height: math.unit(650, "feet")
  2151. },
  2152. ]
  2153. ))
  2154. characterMakers.push(() => makeCharacter(
  2155. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2156. {
  2157. front: {
  2158. height: math.unit(7, "feet"),
  2159. weight: math.unit(100, "kg"),
  2160. name: "Front",
  2161. image: {
  2162. source: "./media/characters/march/front.svg",
  2163. extra: 1992/1851,
  2164. bottom: 39/2031
  2165. }
  2166. },
  2167. foot: {
  2168. height: math.unit(0.9, "feet"),
  2169. name: "Foot",
  2170. image: {
  2171. source: "./media/characters/march/foot.svg"
  2172. }
  2173. },
  2174. },
  2175. [
  2176. {
  2177. name: "Normal",
  2178. height: math.unit(7.9, "feet")
  2179. },
  2180. {
  2181. name: "Macro",
  2182. height: math.unit(220, "meters")
  2183. },
  2184. {
  2185. name: "Megamacro",
  2186. height: math.unit(2.98, "km"),
  2187. default: true
  2188. },
  2189. {
  2190. name: "Gigamacro",
  2191. height: math.unit(15963, "km")
  2192. },
  2193. {
  2194. name: "Teramacro",
  2195. height: math.unit(2980000000, "km")
  2196. },
  2197. {
  2198. name: "Examacro",
  2199. height: math.unit(250, "parsecs")
  2200. },
  2201. ]
  2202. ))
  2203. characterMakers.push(() => makeCharacter(
  2204. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2205. {
  2206. front: {
  2207. height: math.unit(6, "feet"),
  2208. weight: math.unit(60, "kg"),
  2209. name: "Front",
  2210. image: {
  2211. source: "./media/characters/noir/front.svg",
  2212. extra: 1,
  2213. bottom: 0.032
  2214. }
  2215. },
  2216. },
  2217. [
  2218. {
  2219. name: "Normal",
  2220. height: math.unit(6.6, "feet")
  2221. },
  2222. {
  2223. name: "Macro",
  2224. height: math.unit(500, "feet")
  2225. },
  2226. {
  2227. name: "Megamacro",
  2228. height: math.unit(2.5, "km"),
  2229. default: true
  2230. },
  2231. {
  2232. name: "Gigamacro",
  2233. height: math.unit(22500, "km")
  2234. },
  2235. {
  2236. name: "Teramacro",
  2237. height: math.unit(2500000000, "km")
  2238. },
  2239. {
  2240. name: "Examacro",
  2241. height: math.unit(200, "parsecs")
  2242. },
  2243. ]
  2244. ))
  2245. characterMakers.push(() => makeCharacter(
  2246. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2247. {
  2248. front: {
  2249. height: math.unit(7, "feet"),
  2250. weight: math.unit(100, "kg"),
  2251. name: "Front",
  2252. image: {
  2253. source: "./media/characters/okuri/front.svg",
  2254. extra: 1,
  2255. bottom: 0.037
  2256. }
  2257. },
  2258. back: {
  2259. height: math.unit(7, "feet"),
  2260. weight: math.unit(100, "kg"),
  2261. name: "Back",
  2262. image: {
  2263. source: "./media/characters/okuri/back.svg",
  2264. extra: 1,
  2265. bottom: 0.007
  2266. }
  2267. },
  2268. },
  2269. [
  2270. {
  2271. name: "Megamacro",
  2272. height: math.unit(100, "miles"),
  2273. default: true
  2274. },
  2275. ]
  2276. ))
  2277. characterMakers.push(() => makeCharacter(
  2278. { name: "Manny", species: ["manectric"], 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/manny/front.svg",
  2286. extra: 1,
  2287. bottom: 0.06
  2288. }
  2289. },
  2290. back: {
  2291. height: math.unit(7, "feet"),
  2292. weight: math.unit(100, "kg"),
  2293. name: "Back",
  2294. image: {
  2295. source: "./media/characters/manny/back.svg",
  2296. extra: 1,
  2297. bottom: 0.014
  2298. }
  2299. },
  2300. },
  2301. [
  2302. {
  2303. name: "Normal",
  2304. height: math.unit(7, "feet"),
  2305. },
  2306. {
  2307. name: "Macro",
  2308. height: math.unit(78, "feet"),
  2309. default: true
  2310. },
  2311. {
  2312. name: "Macro+",
  2313. height: math.unit(300, "meters")
  2314. },
  2315. {
  2316. name: "Macro++",
  2317. height: math.unit(2400, "meters")
  2318. },
  2319. {
  2320. name: "Megamacro",
  2321. height: math.unit(5167, "meters")
  2322. },
  2323. {
  2324. name: "Gigamacro",
  2325. height: math.unit(41769, "miles")
  2326. },
  2327. ]
  2328. ))
  2329. characterMakers.push(() => makeCharacter(
  2330. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2331. {
  2332. front: {
  2333. height: math.unit(7, "feet"),
  2334. weight: math.unit(100, "kg"),
  2335. name: "Front",
  2336. image: {
  2337. source: "./media/characters/adake/front-1.svg"
  2338. }
  2339. },
  2340. frontAlt: {
  2341. height: math.unit(7, "feet"),
  2342. weight: math.unit(100, "kg"),
  2343. name: "Front (Alt)",
  2344. image: {
  2345. source: "./media/characters/adake/front-2.svg",
  2346. extra: 1,
  2347. bottom: 0.01
  2348. }
  2349. },
  2350. back: {
  2351. height: math.unit(7, "feet"),
  2352. weight: math.unit(100, "kg"),
  2353. name: "Back",
  2354. image: {
  2355. source: "./media/characters/adake/back.svg",
  2356. }
  2357. },
  2358. kneel: {
  2359. height: math.unit(5.385, "feet"),
  2360. weight: math.unit(100, "kg"),
  2361. name: "Kneeling",
  2362. image: {
  2363. source: "./media/characters/adake/kneel.svg",
  2364. bottom: 0.052
  2365. }
  2366. },
  2367. },
  2368. [
  2369. {
  2370. name: "Normal",
  2371. height: math.unit(7, "feet"),
  2372. },
  2373. {
  2374. name: "Macro",
  2375. height: math.unit(78, "feet"),
  2376. default: true
  2377. },
  2378. {
  2379. name: "Macro+",
  2380. height: math.unit(300, "meters")
  2381. },
  2382. {
  2383. name: "Macro++",
  2384. height: math.unit(2400, "meters")
  2385. },
  2386. {
  2387. name: "Megamacro",
  2388. height: math.unit(5167, "meters")
  2389. },
  2390. {
  2391. name: "Gigamacro",
  2392. height: math.unit(41769, "miles")
  2393. },
  2394. ]
  2395. ))
  2396. characterMakers.push(() => makeCharacter(
  2397. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2398. {
  2399. front: {
  2400. height: math.unit(1.65, "meters"),
  2401. weight: math.unit(50, "kg"),
  2402. name: "Front",
  2403. image: {
  2404. source: "./media/characters/elijah/front.svg",
  2405. extra: 858 / 830,
  2406. bottom: 95.5 / 953.8559
  2407. }
  2408. },
  2409. back: {
  2410. height: math.unit(1.65, "meters"),
  2411. weight: math.unit(50, "kg"),
  2412. name: "Back",
  2413. image: {
  2414. source: "./media/characters/elijah/back.svg",
  2415. extra: 895 / 850,
  2416. bottom: 5.3 / 897.956
  2417. }
  2418. },
  2419. frontNsfw: {
  2420. height: math.unit(1.65, "meters"),
  2421. weight: math.unit(50, "kg"),
  2422. name: "Front (NSFW)",
  2423. image: {
  2424. source: "./media/characters/elijah/front-nsfw.svg",
  2425. extra: 858 / 830,
  2426. bottom: 95.5 / 953.8559
  2427. }
  2428. },
  2429. backNsfw: {
  2430. height: math.unit(1.65, "meters"),
  2431. weight: math.unit(50, "kg"),
  2432. name: "Back (NSFW)",
  2433. image: {
  2434. source: "./media/characters/elijah/back-nsfw.svg",
  2435. extra: 895 / 850,
  2436. bottom: 5.3 / 897.956
  2437. }
  2438. },
  2439. dick: {
  2440. height: math.unit(1, "feet"),
  2441. name: "Dick",
  2442. image: {
  2443. source: "./media/characters/elijah/dick.svg"
  2444. }
  2445. },
  2446. beakOpen: {
  2447. height: math.unit(1.25, "feet"),
  2448. name: "Beak (Open)",
  2449. image: {
  2450. source: "./media/characters/elijah/beak-open.svg"
  2451. }
  2452. },
  2453. beakShut: {
  2454. height: math.unit(1.25, "feet"),
  2455. name: "Beak (Shut)",
  2456. image: {
  2457. source: "./media/characters/elijah/beak-shut.svg"
  2458. }
  2459. },
  2460. footFlexing: {
  2461. height: math.unit(1.61, "feet"),
  2462. name: "Foot (Flexing)",
  2463. image: {
  2464. source: "./media/characters/elijah/foot-flexing.svg"
  2465. }
  2466. },
  2467. footStepping: {
  2468. height: math.unit(1.44, "feet"),
  2469. name: "Foot (Stepping)",
  2470. image: {
  2471. source: "./media/characters/elijah/foot-stepping.svg"
  2472. }
  2473. },
  2474. plantigradeLeg: {
  2475. height: math.unit(2.34, "feet"),
  2476. name: "Plantigrade Leg",
  2477. image: {
  2478. source: "./media/characters/elijah/plantigrade-leg.svg"
  2479. }
  2480. },
  2481. plantigradeFootLeft: {
  2482. height: math.unit(0.9, "feet"),
  2483. name: "Plantigrade Foot (Left)",
  2484. image: {
  2485. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2486. }
  2487. },
  2488. plantigradeFootRight: {
  2489. height: math.unit(0.9, "feet"),
  2490. name: "Plantigrade Foot (Right)",
  2491. image: {
  2492. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2493. }
  2494. },
  2495. },
  2496. [
  2497. {
  2498. name: "Normal",
  2499. height: math.unit(1.65, "meters")
  2500. },
  2501. {
  2502. name: "Macro",
  2503. height: math.unit(55, "meters"),
  2504. default: true
  2505. },
  2506. {
  2507. name: "Macro+",
  2508. height: math.unit(105, "meters")
  2509. },
  2510. ]
  2511. ))
  2512. characterMakers.push(() => makeCharacter(
  2513. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2514. {
  2515. front: {
  2516. height: math.unit(7 + 2/12, "feet"),
  2517. weight: math.unit(320, "kg"),
  2518. name: "Front",
  2519. image: {
  2520. source: "./media/characters/rai/front.svg",
  2521. extra: 1802/1696,
  2522. bottom: 68/1870
  2523. }
  2524. },
  2525. frontDressed: {
  2526. height: math.unit(7 + 2/12, "feet"),
  2527. weight: math.unit(320, "kg"),
  2528. name: "Front (Dressed)",
  2529. image: {
  2530. source: "./media/characters/rai/front-dressed.svg",
  2531. extra: 1802/1696,
  2532. bottom: 68/1870
  2533. }
  2534. },
  2535. side: {
  2536. height: math.unit(7 + 2/12, "feet"),
  2537. weight: math.unit(320, "kg"),
  2538. name: "Side",
  2539. image: {
  2540. source: "./media/characters/rai/side.svg",
  2541. extra: 1789/1710,
  2542. bottom: 115/1904
  2543. }
  2544. },
  2545. back: {
  2546. height: math.unit(7 + 2/12, "feet"),
  2547. weight: math.unit(320, "kg"),
  2548. name: "Back",
  2549. image: {
  2550. source: "./media/characters/rai/back.svg",
  2551. extra: 1770/1707,
  2552. bottom: 28/1798
  2553. }
  2554. },
  2555. feral: {
  2556. height: math.unit(9.5, "feet"),
  2557. weight: math.unit(640, "kg"),
  2558. name: "Feral",
  2559. image: {
  2560. source: "./media/characters/rai/feral.svg",
  2561. extra: 945/553,
  2562. bottom: 176/1121
  2563. }
  2564. },
  2565. dragon: {
  2566. height: math.unit(23, "feet"),
  2567. weight: math.unit(50000, "lb"),
  2568. name: "Dragon",
  2569. image: {
  2570. source: "./media/characters/rai/dragon.svg",
  2571. extra: 2498 / 2030,
  2572. bottom: 85.2 / 2584
  2573. }
  2574. },
  2575. maw: {
  2576. height: math.unit(1.69, "feet"),
  2577. name: "Maw",
  2578. image: {
  2579. source: "./media/characters/rai/maw.svg"
  2580. }
  2581. },
  2582. },
  2583. [
  2584. {
  2585. name: "Normal",
  2586. height: math.unit(7 + 2/12, "feet")
  2587. },
  2588. {
  2589. name: "Big",
  2590. height: math.unit(11, "feet")
  2591. },
  2592. {
  2593. name: "Macro",
  2594. height: math.unit(302, "feet"),
  2595. default: true
  2596. },
  2597. ]
  2598. ))
  2599. characterMakers.push(() => makeCharacter(
  2600. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2601. {
  2602. frontDressed: {
  2603. height: math.unit(216, "feet"),
  2604. weight: math.unit(7000000, "lb"),
  2605. name: "Front (Dressed)",
  2606. image: {
  2607. source: "./media/characters/jazzy/front-dressed.svg",
  2608. extra: 2738 / 2651,
  2609. bottom: 41.8 / 2786
  2610. }
  2611. },
  2612. backDressed: {
  2613. height: math.unit(216, "feet"),
  2614. weight: math.unit(7000000, "lb"),
  2615. name: "Back (Dressed)",
  2616. image: {
  2617. source: "./media/characters/jazzy/back-dressed.svg",
  2618. extra: 2775 / 2673,
  2619. bottom: 36.8 / 2817
  2620. }
  2621. },
  2622. front: {
  2623. height: math.unit(216, "feet"),
  2624. weight: math.unit(7000000, "lb"),
  2625. name: "Front",
  2626. image: {
  2627. source: "./media/characters/jazzy/front.svg",
  2628. extra: 2738 / 2651,
  2629. bottom: 41.8 / 2786
  2630. }
  2631. },
  2632. back: {
  2633. height: math.unit(216, "feet"),
  2634. weight: math.unit(7000000, "lb"),
  2635. name: "Back",
  2636. image: {
  2637. source: "./media/characters/jazzy/back.svg",
  2638. extra: 2775 / 2673,
  2639. bottom: 36.8 / 2817
  2640. }
  2641. },
  2642. maw: {
  2643. height: math.unit(20, "feet"),
  2644. name: "Maw",
  2645. image: {
  2646. source: "./media/characters/jazzy/maw.svg"
  2647. }
  2648. },
  2649. paws: {
  2650. height: math.unit(27.5, "feet"),
  2651. name: "Paws",
  2652. image: {
  2653. source: "./media/characters/jazzy/paws.svg"
  2654. }
  2655. },
  2656. eye: {
  2657. height: math.unit(4.4, "feet"),
  2658. name: "Eye",
  2659. image: {
  2660. source: "./media/characters/jazzy/eye.svg"
  2661. }
  2662. },
  2663. droneOffense: {
  2664. height: math.unit(9.5, "inches"),
  2665. name: "Drone (Offense)",
  2666. image: {
  2667. source: "./media/characters/jazzy/drone-offense.svg"
  2668. }
  2669. },
  2670. droneRecon: {
  2671. height: math.unit(9.5, "inches"),
  2672. name: "Drone (Recon)",
  2673. image: {
  2674. source: "./media/characters/jazzy/drone-recon.svg"
  2675. }
  2676. },
  2677. droneDefense: {
  2678. height: math.unit(9.5, "inches"),
  2679. name: "Drone (Defense)",
  2680. image: {
  2681. source: "./media/characters/jazzy/drone-defense.svg"
  2682. }
  2683. },
  2684. },
  2685. [
  2686. {
  2687. name: "Macro",
  2688. height: math.unit(216, "feet"),
  2689. default: true
  2690. },
  2691. ]
  2692. ))
  2693. characterMakers.push(() => makeCharacter(
  2694. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2695. {
  2696. front: {
  2697. height: math.unit(9 + 6/12, "feet"),
  2698. weight: math.unit(700, "lb"),
  2699. name: "Front",
  2700. image: {
  2701. source: "./media/characters/flamm/front.svg",
  2702. extra: 1751/1632,
  2703. bottom: 46/1797
  2704. }
  2705. },
  2706. buff: {
  2707. height: math.unit(9 + 6/12, "feet"),
  2708. weight: math.unit(950, "lb"),
  2709. name: "Buff",
  2710. image: {
  2711. source: "./media/characters/flamm/buff.svg",
  2712. extra: 3018/2874,
  2713. bottom: 221/3239
  2714. }
  2715. },
  2716. },
  2717. [
  2718. {
  2719. name: "Normal",
  2720. height: math.unit(9.5, "feet")
  2721. },
  2722. {
  2723. name: "Macro",
  2724. height: math.unit(200, "feet"),
  2725. default: true
  2726. },
  2727. ]
  2728. ))
  2729. characterMakers.push(() => makeCharacter(
  2730. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2731. {
  2732. front: {
  2733. height: math.unit(5 + 3/12, "feet"),
  2734. weight: math.unit(60, "kg"),
  2735. name: "Front",
  2736. image: {
  2737. source: "./media/characters/zephiro/front.svg",
  2738. extra: 2309 / 2162,
  2739. bottom: 0.069
  2740. }
  2741. },
  2742. side: {
  2743. height: math.unit(5 + 3/12, "feet"),
  2744. weight: math.unit(60, "kg"),
  2745. name: "Side",
  2746. image: {
  2747. source: "./media/characters/zephiro/side.svg",
  2748. extra: 2403 / 2279,
  2749. bottom: 0.015
  2750. }
  2751. },
  2752. back: {
  2753. height: math.unit(5 + 3/12, "feet"),
  2754. weight: math.unit(60, "kg"),
  2755. name: "Back",
  2756. image: {
  2757. source: "./media/characters/zephiro/back.svg",
  2758. extra: 2373 / 2244,
  2759. bottom: 0.013
  2760. }
  2761. },
  2762. hand: {
  2763. height: math.unit(0.68, "feet"),
  2764. name: "Hand",
  2765. image: {
  2766. source: "./media/characters/zephiro/hand.svg"
  2767. }
  2768. },
  2769. paw: {
  2770. height: math.unit(1, "feet"),
  2771. name: "Paw",
  2772. image: {
  2773. source: "./media/characters/zephiro/paw.svg"
  2774. }
  2775. },
  2776. beans: {
  2777. height: math.unit(0.93, "feet"),
  2778. name: "Beans",
  2779. image: {
  2780. source: "./media/characters/zephiro/beans.svg"
  2781. }
  2782. },
  2783. },
  2784. [
  2785. {
  2786. name: "Micro",
  2787. height: math.unit(3, "inches")
  2788. },
  2789. {
  2790. name: "Normal",
  2791. height: math.unit(5 + 3 / 12, "feet"),
  2792. default: true
  2793. },
  2794. {
  2795. name: "Macro",
  2796. height: math.unit(118, "feet")
  2797. },
  2798. ]
  2799. ))
  2800. characterMakers.push(() => makeCharacter(
  2801. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2802. {
  2803. front: {
  2804. height: math.unit(5, "feet"),
  2805. weight: math.unit(90, "kg"),
  2806. name: "Front",
  2807. image: {
  2808. source: "./media/characters/fory/front.svg",
  2809. extra: 2862 / 2674,
  2810. bottom: 180 / 3043.8
  2811. }
  2812. },
  2813. back: {
  2814. height: math.unit(5, "feet"),
  2815. weight: math.unit(90, "kg"),
  2816. name: "Back",
  2817. image: {
  2818. source: "./media/characters/fory/back.svg",
  2819. extra: 2962 / 2791,
  2820. bottom: 106 / 3071.8
  2821. }
  2822. },
  2823. foot: {
  2824. height: math.unit(2.14, "feet"),
  2825. name: "Foot",
  2826. image: {
  2827. source: "./media/characters/fory/foot.svg"
  2828. }
  2829. },
  2830. },
  2831. [
  2832. {
  2833. name: "Normal",
  2834. height: math.unit(5, "feet")
  2835. },
  2836. {
  2837. name: "Macro",
  2838. height: math.unit(50, "feet"),
  2839. default: true
  2840. },
  2841. {
  2842. name: "Megamacro",
  2843. height: math.unit(10, "miles")
  2844. },
  2845. {
  2846. name: "Gigamacro",
  2847. height: math.unit(5, "earths")
  2848. },
  2849. ]
  2850. ))
  2851. characterMakers.push(() => makeCharacter(
  2852. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2853. {
  2854. front: {
  2855. height: math.unit(7, "feet"),
  2856. weight: math.unit(90, "kg"),
  2857. name: "Front",
  2858. image: {
  2859. source: "./media/characters/kurrikage/front.svg",
  2860. extra: 1845/1733,
  2861. bottom: 119/1964
  2862. }
  2863. },
  2864. back: {
  2865. height: math.unit(7, "feet"),
  2866. weight: math.unit(90, "kg"),
  2867. name: "Back",
  2868. image: {
  2869. source: "./media/characters/kurrikage/back.svg",
  2870. extra: 1790/1677,
  2871. bottom: 61/1851
  2872. }
  2873. },
  2874. dressed: {
  2875. height: math.unit(7, "feet"),
  2876. weight: math.unit(90, "kg"),
  2877. name: "Dressed",
  2878. image: {
  2879. source: "./media/characters/kurrikage/dressed.svg",
  2880. extra: 1845/1733,
  2881. bottom: 119/1964
  2882. }
  2883. },
  2884. foot: {
  2885. height: math.unit(1.5, "feet"),
  2886. name: "Foot",
  2887. image: {
  2888. source: "./media/characters/kurrikage/foot.svg"
  2889. }
  2890. },
  2891. staff: {
  2892. height: math.unit(6.7, "feet"),
  2893. name: "Staff",
  2894. image: {
  2895. source: "./media/characters/kurrikage/staff.svg"
  2896. }
  2897. },
  2898. peek: {
  2899. height: math.unit(1.05, "feet"),
  2900. name: "Peeking",
  2901. image: {
  2902. source: "./media/characters/kurrikage/peek.svg",
  2903. bottom: 0.08
  2904. }
  2905. },
  2906. },
  2907. [
  2908. {
  2909. name: "Normal",
  2910. height: math.unit(12, "feet"),
  2911. default: true
  2912. },
  2913. {
  2914. name: "Big",
  2915. height: math.unit(20, "feet")
  2916. },
  2917. {
  2918. name: "Macro",
  2919. height: math.unit(500, "feet")
  2920. },
  2921. {
  2922. name: "Megamacro",
  2923. height: math.unit(20, "miles")
  2924. },
  2925. ]
  2926. ))
  2927. characterMakers.push(() => makeCharacter(
  2928. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2929. {
  2930. front: {
  2931. height: math.unit(6, "feet"),
  2932. weight: math.unit(75, "kg"),
  2933. name: "Front",
  2934. image: {
  2935. source: "./media/characters/shingo/front.svg",
  2936. extra: 1900/1825,
  2937. bottom: 82/1982
  2938. }
  2939. },
  2940. side: {
  2941. height: math.unit(6, "feet"),
  2942. weight: math.unit(75, "kg"),
  2943. name: "Side",
  2944. image: {
  2945. source: "./media/characters/shingo/side.svg",
  2946. extra: 1930/1865,
  2947. bottom: 16/1946
  2948. }
  2949. },
  2950. back: {
  2951. height: math.unit(6, "feet"),
  2952. weight: math.unit(75, "kg"),
  2953. name: "Back",
  2954. image: {
  2955. source: "./media/characters/shingo/back.svg",
  2956. extra: 1922/1852,
  2957. bottom: 16/1938
  2958. }
  2959. },
  2960. frontDressed: {
  2961. height: math.unit(6, "feet"),
  2962. weight: math.unit(150, "lb"),
  2963. name: "Front-dressed",
  2964. image: {
  2965. source: "./media/characters/shingo/front-dressed.svg",
  2966. extra: 1900/1825,
  2967. bottom: 82/1982
  2968. }
  2969. },
  2970. paw: {
  2971. height: math.unit(1.29, "feet"),
  2972. name: "Paw",
  2973. image: {
  2974. source: "./media/characters/shingo/paw.svg"
  2975. }
  2976. },
  2977. hand: {
  2978. height: math.unit(1.07, "feet"),
  2979. name: "Hand",
  2980. image: {
  2981. source: "./media/characters/shingo/hand.svg"
  2982. }
  2983. },
  2984. frontAlt: {
  2985. height: math.unit(6, "feet"),
  2986. weight: math.unit(75, "kg"),
  2987. name: "Front (Alt)",
  2988. image: {
  2989. source: "./media/characters/shingo/front-alt.svg",
  2990. extra: 3511 / 3338,
  2991. bottom: 0.005
  2992. }
  2993. },
  2994. frontAlt2: {
  2995. height: math.unit(6, "feet"),
  2996. weight: math.unit(75, "kg"),
  2997. name: "Front (Alt 2)",
  2998. image: {
  2999. source: "./media/characters/shingo/front-alt-2.svg",
  3000. extra: 706/681,
  3001. bottom: 11/717
  3002. }
  3003. },
  3004. pawAlt: {
  3005. height: math.unit(1, "feet"),
  3006. name: "Paw (Alt)",
  3007. image: {
  3008. source: "./media/characters/shingo/paw-alt.svg"
  3009. }
  3010. },
  3011. },
  3012. [
  3013. {
  3014. name: "Micro",
  3015. height: math.unit(4, "inches")
  3016. },
  3017. {
  3018. name: "Normal",
  3019. height: math.unit(6, "feet"),
  3020. default: true
  3021. },
  3022. {
  3023. name: "Macro",
  3024. height: math.unit(108, "feet")
  3025. },
  3026. {
  3027. name: "Macro+",
  3028. height: math.unit(1500, "feet")
  3029. },
  3030. ]
  3031. ))
  3032. characterMakers.push(() => makeCharacter(
  3033. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3034. {
  3035. side: {
  3036. height: math.unit(6, "feet"),
  3037. weight: math.unit(75, "kg"),
  3038. name: "Side",
  3039. image: {
  3040. source: "./media/characters/aigey/side.svg"
  3041. }
  3042. },
  3043. },
  3044. [
  3045. {
  3046. name: "Macro",
  3047. height: math.unit(200, "feet"),
  3048. default: true
  3049. },
  3050. {
  3051. name: "Megamacro",
  3052. height: math.unit(100, "miles")
  3053. },
  3054. ]
  3055. )
  3056. )
  3057. characterMakers.push(() => makeCharacter(
  3058. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3059. {
  3060. front: {
  3061. height: math.unit(5 + 5 / 12, "feet"),
  3062. weight: math.unit(75, "kg"),
  3063. name: "Front",
  3064. image: {
  3065. source: "./media/characters/natasha/front.svg",
  3066. extra: 859 / 824,
  3067. bottom: 23 / 879.6
  3068. }
  3069. },
  3070. frontNsfw: {
  3071. height: math.unit(5 + 5 / 12, "feet"),
  3072. weight: math.unit(75, "kg"),
  3073. name: "Front (NSFW)",
  3074. image: {
  3075. source: "./media/characters/natasha/front-nsfw.svg",
  3076. extra: 859 / 824,
  3077. bottom: 23 / 879.6
  3078. }
  3079. },
  3080. frontErect: {
  3081. height: math.unit(5 + 5 / 12, "feet"),
  3082. weight: math.unit(75, "kg"),
  3083. name: "Front (Erect)",
  3084. image: {
  3085. source: "./media/characters/natasha/front-erect.svg",
  3086. extra: 859 / 824,
  3087. bottom: 23 / 879.6
  3088. }
  3089. },
  3090. back: {
  3091. height: math.unit(5 + 5 / 12, "feet"),
  3092. weight: math.unit(75, "kg"),
  3093. name: "Back",
  3094. image: {
  3095. source: "./media/characters/natasha/back.svg",
  3096. extra: 887.9 / 852.6,
  3097. bottom: 9.7 / 896.4
  3098. }
  3099. },
  3100. backAlt: {
  3101. height: math.unit(5 + 5 / 12, "feet"),
  3102. weight: math.unit(75, "kg"),
  3103. name: "Back (Alt)",
  3104. image: {
  3105. source: "./media/characters/natasha/back-alt.svg",
  3106. extra: 1236.7 / 1192,
  3107. bottom: 22.3 / 1258.2
  3108. }
  3109. },
  3110. dick: {
  3111. height: math.unit(1.772, "feet"),
  3112. name: "Dick",
  3113. image: {
  3114. source: "./media/characters/natasha/dick.svg"
  3115. }
  3116. },
  3117. paw: {
  3118. height: math.unit(0.250, "meters"),
  3119. name: "Paw",
  3120. image: {
  3121. source: "./media/characters/natasha/paw.svg"
  3122. }
  3123. },
  3124. },
  3125. [
  3126. {
  3127. name: "Normal",
  3128. height: math.unit(5 + 5 / 12, "feet")
  3129. },
  3130. {
  3131. name: "Large",
  3132. height: math.unit(12, "feet")
  3133. },
  3134. {
  3135. name: "Macro",
  3136. height: math.unit(100, "feet"),
  3137. default: true
  3138. },
  3139. {
  3140. name: "Macro+",
  3141. height: math.unit(260, "feet")
  3142. },
  3143. {
  3144. name: "Macro++",
  3145. height: math.unit(1, "mile")
  3146. },
  3147. ]
  3148. ))
  3149. characterMakers.push(() => makeCharacter(
  3150. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3151. {
  3152. front: {
  3153. height: math.unit(6, "feet"),
  3154. weight: math.unit(75, "kg"),
  3155. name: "Front",
  3156. image: {
  3157. source: "./media/characters/malik/front.svg"
  3158. }
  3159. },
  3160. side: {
  3161. height: math.unit(6, "feet"),
  3162. weight: math.unit(75, "kg"),
  3163. name: "Side",
  3164. image: {
  3165. source: "./media/characters/malik/side.svg",
  3166. extra: 1.1539
  3167. }
  3168. },
  3169. back: {
  3170. height: math.unit(6, "feet"),
  3171. weight: math.unit(75, "kg"),
  3172. name: "Back",
  3173. image: {
  3174. source: "./media/characters/malik/back.svg"
  3175. }
  3176. },
  3177. },
  3178. [
  3179. {
  3180. name: "Macro",
  3181. height: math.unit(156, "feet"),
  3182. default: true
  3183. },
  3184. {
  3185. name: "Macro+",
  3186. height: math.unit(1188, "feet")
  3187. },
  3188. ]
  3189. ))
  3190. characterMakers.push(() => makeCharacter(
  3191. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3192. {
  3193. front: {
  3194. height: math.unit(6, "feet"),
  3195. weight: math.unit(75, "kg"),
  3196. name: "Front",
  3197. image: {
  3198. source: "./media/characters/sefer/front.svg",
  3199. extra: 848 / 659,
  3200. bottom: 28.3 / 876.442
  3201. }
  3202. },
  3203. back: {
  3204. height: math.unit(6, "feet"),
  3205. weight: math.unit(75, "kg"),
  3206. name: "Back",
  3207. image: {
  3208. source: "./media/characters/sefer/back.svg",
  3209. extra: 864 / 695,
  3210. bottom: 10 / 871
  3211. }
  3212. },
  3213. frontDressed: {
  3214. height: math.unit(6, "feet"),
  3215. weight: math.unit(75, "kg"),
  3216. name: "Front (Dressed)",
  3217. image: {
  3218. source: "./media/characters/sefer/front-dressed.svg",
  3219. extra: 839 / 653,
  3220. bottom: 37.6 / 878
  3221. }
  3222. },
  3223. },
  3224. [
  3225. {
  3226. name: "Normal",
  3227. height: math.unit(6, "feet"),
  3228. default: true
  3229. },
  3230. ]
  3231. ))
  3232. characterMakers.push(() => makeCharacter(
  3233. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3234. {
  3235. body: {
  3236. height: math.unit(2.2428, "meter"),
  3237. weight: math.unit(124.738, "kg"),
  3238. name: "Body",
  3239. image: {
  3240. extra: 1225 / 1050,
  3241. source: "./media/characters/north/front.svg"
  3242. }
  3243. }
  3244. },
  3245. [
  3246. {
  3247. name: "Micro",
  3248. height: math.unit(4, "inches")
  3249. },
  3250. {
  3251. name: "Macro",
  3252. height: math.unit(63, "meters")
  3253. },
  3254. {
  3255. name: "Megamacro",
  3256. height: math.unit(101, "miles"),
  3257. default: true
  3258. }
  3259. ]
  3260. ))
  3261. characterMakers.push(() => makeCharacter(
  3262. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3263. {
  3264. angled: {
  3265. height: math.unit(4, "meter"),
  3266. weight: math.unit(150, "kg"),
  3267. name: "Angled",
  3268. image: {
  3269. source: "./media/characters/talan/angled-sfw.svg",
  3270. bottom: 29 / 3734
  3271. }
  3272. },
  3273. angledNsfw: {
  3274. height: math.unit(4, "meter"),
  3275. weight: math.unit(150, "kg"),
  3276. name: "Angled (NSFW)",
  3277. image: {
  3278. source: "./media/characters/talan/angled-nsfw.svg",
  3279. bottom: 29 / 3734
  3280. }
  3281. },
  3282. frontNsfw: {
  3283. height: math.unit(4, "meter"),
  3284. weight: math.unit(150, "kg"),
  3285. name: "Front (NSFW)",
  3286. image: {
  3287. source: "./media/characters/talan/front-nsfw.svg",
  3288. bottom: 29 / 3734
  3289. }
  3290. },
  3291. sideNsfw: {
  3292. height: math.unit(4, "meter"),
  3293. weight: math.unit(150, "kg"),
  3294. name: "Side (NSFW)",
  3295. image: {
  3296. source: "./media/characters/talan/side-nsfw.svg",
  3297. bottom: 29 / 3734
  3298. }
  3299. },
  3300. back: {
  3301. height: math.unit(4, "meter"),
  3302. weight: math.unit(150, "kg"),
  3303. name: "Back",
  3304. image: {
  3305. source: "./media/characters/talan/back.svg"
  3306. }
  3307. },
  3308. dickBottom: {
  3309. height: math.unit(0.621, "meter"),
  3310. name: "Dick (Bottom)",
  3311. image: {
  3312. source: "./media/characters/talan/dick-bottom.svg"
  3313. }
  3314. },
  3315. dickTop: {
  3316. height: math.unit(0.621, "meter"),
  3317. name: "Dick (Top)",
  3318. image: {
  3319. source: "./media/characters/talan/dick-top.svg"
  3320. }
  3321. },
  3322. dickSide: {
  3323. height: math.unit(0.305, "meter"),
  3324. name: "Dick (Side)",
  3325. image: {
  3326. source: "./media/characters/talan/dick-side.svg"
  3327. }
  3328. },
  3329. dickFront: {
  3330. height: math.unit(0.305, "meter"),
  3331. name: "Dick (Front)",
  3332. image: {
  3333. source: "./media/characters/talan/dick-front.svg"
  3334. }
  3335. },
  3336. },
  3337. [
  3338. {
  3339. name: "Normal",
  3340. height: math.unit(4, "meters")
  3341. },
  3342. {
  3343. name: "Macro",
  3344. height: math.unit(100, "meters")
  3345. },
  3346. {
  3347. name: "Megamacro",
  3348. height: math.unit(2, "miles"),
  3349. default: true
  3350. },
  3351. {
  3352. name: "Gigamacro",
  3353. height: math.unit(5000, "miles")
  3354. },
  3355. {
  3356. name: "Teramacro",
  3357. height: math.unit(100, "parsecs")
  3358. }
  3359. ]
  3360. ))
  3361. characterMakers.push(() => makeCharacter(
  3362. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3363. {
  3364. front: {
  3365. height: math.unit(2, "meter"),
  3366. weight: math.unit(90, "kg"),
  3367. name: "Front",
  3368. image: {
  3369. source: "./media/characters/gael'rathus/front.svg"
  3370. }
  3371. },
  3372. frontAlt: {
  3373. height: math.unit(2, "meter"),
  3374. weight: math.unit(90, "kg"),
  3375. name: "Front (alt)",
  3376. image: {
  3377. source: "./media/characters/gael'rathus/front-alt.svg"
  3378. }
  3379. },
  3380. frontAlt2: {
  3381. height: math.unit(2, "meter"),
  3382. weight: math.unit(90, "kg"),
  3383. name: "Front (alt 2)",
  3384. image: {
  3385. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3386. }
  3387. }
  3388. },
  3389. [
  3390. {
  3391. name: "Normal",
  3392. height: math.unit(9, "feet"),
  3393. default: true
  3394. },
  3395. {
  3396. name: "Large",
  3397. height: math.unit(25, "feet")
  3398. },
  3399. {
  3400. name: "Macro",
  3401. height: math.unit(0.25, "miles")
  3402. },
  3403. {
  3404. name: "Megamacro",
  3405. height: math.unit(10, "miles")
  3406. }
  3407. ]
  3408. ))
  3409. characterMakers.push(() => makeCharacter(
  3410. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3411. {
  3412. side: {
  3413. height: math.unit(2, "meter"),
  3414. weight: math.unit(140, "kg"),
  3415. name: "Side",
  3416. image: {
  3417. source: "./media/characters/sosha/side.svg",
  3418. bottom: 0.042
  3419. }
  3420. },
  3421. },
  3422. [
  3423. {
  3424. name: "Normal",
  3425. height: math.unit(12, "feet"),
  3426. default: true
  3427. }
  3428. ]
  3429. ))
  3430. characterMakers.push(() => makeCharacter(
  3431. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3432. {
  3433. side: {
  3434. height: math.unit(5 + 5 / 12, "feet"),
  3435. weight: math.unit(170, "kg"),
  3436. name: "Side",
  3437. image: {
  3438. source: "./media/characters/runnola/side.svg",
  3439. extra: 741 / 448,
  3440. bottom: 0.05
  3441. }
  3442. },
  3443. },
  3444. [
  3445. {
  3446. name: "Small",
  3447. height: math.unit(3, "feet")
  3448. },
  3449. {
  3450. name: "Normal",
  3451. height: math.unit(5 + 5 / 12, "feet"),
  3452. default: true
  3453. },
  3454. {
  3455. name: "Big",
  3456. height: math.unit(10, "feet")
  3457. },
  3458. ]
  3459. ))
  3460. characterMakers.push(() => makeCharacter(
  3461. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3462. {
  3463. front: {
  3464. height: math.unit(2, "meter"),
  3465. weight: math.unit(50, "kg"),
  3466. name: "Front",
  3467. image: {
  3468. source: "./media/characters/kurribird/front.svg",
  3469. bottom: 0.015
  3470. }
  3471. },
  3472. frontAlt: {
  3473. height: math.unit(1.5, "meter"),
  3474. weight: math.unit(50, "kg"),
  3475. name: "Front (Alt)",
  3476. image: {
  3477. source: "./media/characters/kurribird/front-alt.svg",
  3478. extra: 1.45
  3479. }
  3480. },
  3481. },
  3482. [
  3483. {
  3484. name: "Normal",
  3485. height: math.unit(7, "feet")
  3486. },
  3487. {
  3488. name: "Big",
  3489. height: math.unit(12, "feet"),
  3490. default: true
  3491. },
  3492. {
  3493. name: "Macro",
  3494. height: math.unit(1500, "feet")
  3495. },
  3496. {
  3497. name: "Megamacro",
  3498. height: math.unit(2, "miles")
  3499. }
  3500. ]
  3501. ))
  3502. characterMakers.push(() => makeCharacter(
  3503. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3504. {
  3505. front: {
  3506. height: math.unit(2, "meter"),
  3507. weight: math.unit(80, "kg"),
  3508. name: "Front",
  3509. image: {
  3510. source: "./media/characters/elbial/front.svg",
  3511. extra: 1643 / 1556,
  3512. bottom: 60.2 / 1696
  3513. }
  3514. },
  3515. side: {
  3516. height: math.unit(2, "meter"),
  3517. weight: math.unit(80, "kg"),
  3518. name: "Side",
  3519. image: {
  3520. source: "./media/characters/elbial/side.svg",
  3521. extra: 1601/1528,
  3522. bottom: 97/1698
  3523. }
  3524. },
  3525. back: {
  3526. height: math.unit(2, "meter"),
  3527. weight: math.unit(80, "kg"),
  3528. name: "Back",
  3529. image: {
  3530. source: "./media/characters/elbial/back.svg",
  3531. extra: 1653/1569,
  3532. bottom: 20/1673
  3533. }
  3534. },
  3535. frontDressed: {
  3536. height: math.unit(2, "meter"),
  3537. weight: math.unit(80, "kg"),
  3538. name: "Front (Dressed)",
  3539. image: {
  3540. source: "./media/characters/elbial/front-dressed.svg",
  3541. extra: 1638/1569,
  3542. bottom: 70/1708
  3543. }
  3544. },
  3545. genitals: {
  3546. height: math.unit(2 / 3.367, "meter"),
  3547. name: "Genitals",
  3548. image: {
  3549. source: "./media/characters/elbial/genitals.svg"
  3550. }
  3551. },
  3552. },
  3553. [
  3554. {
  3555. name: "Large",
  3556. height: math.unit(100, "feet")
  3557. },
  3558. {
  3559. name: "Macro",
  3560. height: math.unit(500, "feet"),
  3561. default: true
  3562. },
  3563. {
  3564. name: "Megamacro",
  3565. height: math.unit(10, "miles")
  3566. },
  3567. {
  3568. name: "Gigamacro",
  3569. height: math.unit(25000, "miles")
  3570. },
  3571. {
  3572. name: "Full-Size",
  3573. height: math.unit(8000000, "gigaparsecs")
  3574. }
  3575. ]
  3576. ))
  3577. characterMakers.push(() => makeCharacter(
  3578. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3579. {
  3580. front: {
  3581. height: math.unit(2, "meter"),
  3582. weight: math.unit(60, "kg"),
  3583. name: "Front",
  3584. image: {
  3585. source: "./media/characters/noah/front.svg"
  3586. }
  3587. },
  3588. talons: {
  3589. height: math.unit(0.315, "meter"),
  3590. name: "Talons",
  3591. image: {
  3592. source: "./media/characters/noah/talons.svg"
  3593. }
  3594. }
  3595. },
  3596. [
  3597. {
  3598. name: "Large",
  3599. height: math.unit(50, "feet")
  3600. },
  3601. {
  3602. name: "Macro",
  3603. height: math.unit(750, "feet"),
  3604. default: true
  3605. },
  3606. {
  3607. name: "Megamacro",
  3608. height: math.unit(50, "miles")
  3609. },
  3610. {
  3611. name: "Gigamacro",
  3612. height: math.unit(100000, "miles")
  3613. },
  3614. {
  3615. name: "Full-Size",
  3616. height: math.unit(3000000000, "miles")
  3617. }
  3618. ]
  3619. ))
  3620. characterMakers.push(() => makeCharacter(
  3621. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3622. {
  3623. front: {
  3624. height: math.unit(2, "meter"),
  3625. weight: math.unit(80, "kg"),
  3626. name: "Front",
  3627. image: {
  3628. source: "./media/characters/natalya/front.svg"
  3629. }
  3630. },
  3631. back: {
  3632. height: math.unit(2, "meter"),
  3633. weight: math.unit(80, "kg"),
  3634. name: "Back",
  3635. image: {
  3636. source: "./media/characters/natalya/back.svg"
  3637. }
  3638. }
  3639. },
  3640. [
  3641. {
  3642. name: "Normal",
  3643. height: math.unit(150, "feet"),
  3644. default: true
  3645. },
  3646. {
  3647. name: "Megamacro",
  3648. height: math.unit(5, "miles")
  3649. },
  3650. {
  3651. name: "Full-Size",
  3652. height: math.unit(600, "kiloparsecs")
  3653. }
  3654. ]
  3655. ))
  3656. characterMakers.push(() => makeCharacter(
  3657. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3658. {
  3659. front: {
  3660. height: math.unit(2, "meter"),
  3661. weight: math.unit(50, "kg"),
  3662. name: "Front",
  3663. image: {
  3664. source: "./media/characters/erestrebah/front.svg",
  3665. extra: 1262/1162,
  3666. bottom: 96/1358
  3667. }
  3668. },
  3669. back: {
  3670. height: math.unit(2, "meter"),
  3671. weight: math.unit(50, "kg"),
  3672. name: "Back",
  3673. image: {
  3674. source: "./media/characters/erestrebah/back.svg",
  3675. extra: 1257/1139,
  3676. bottom: 13/1270
  3677. }
  3678. },
  3679. wing: {
  3680. height: math.unit(2, "meter"),
  3681. weight: math.unit(50, "kg"),
  3682. name: "Wing",
  3683. image: {
  3684. source: "./media/characters/erestrebah/wing.svg",
  3685. extra: 1262/1162,
  3686. bottom: 96/1358
  3687. }
  3688. },
  3689. mouth: {
  3690. height: math.unit(0.39, "feet"),
  3691. name: "Mouth",
  3692. image: {
  3693. source: "./media/characters/erestrebah/mouth.svg"
  3694. }
  3695. }
  3696. },
  3697. [
  3698. {
  3699. name: "Normal",
  3700. height: math.unit(10, "feet")
  3701. },
  3702. {
  3703. name: "Large",
  3704. height: math.unit(50, "feet"),
  3705. default: true
  3706. },
  3707. {
  3708. name: "Macro",
  3709. height: math.unit(300, "feet")
  3710. },
  3711. {
  3712. name: "Macro+",
  3713. height: math.unit(750, "feet")
  3714. },
  3715. {
  3716. name: "Megamacro",
  3717. height: math.unit(3, "miles")
  3718. }
  3719. ]
  3720. ))
  3721. characterMakers.push(() => makeCharacter(
  3722. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3723. {
  3724. front: {
  3725. height: math.unit(2, "meter"),
  3726. weight: math.unit(80, "kg"),
  3727. name: "Front",
  3728. image: {
  3729. source: "./media/characters/jennifer/front.svg",
  3730. bottom: 0.11,
  3731. extra: 1.16
  3732. }
  3733. },
  3734. frontAlt: {
  3735. height: math.unit(2, "meter"),
  3736. weight: math.unit(80, "kg"),
  3737. name: "Front (Alt)",
  3738. image: {
  3739. source: "./media/characters/jennifer/front-alt.svg"
  3740. }
  3741. }
  3742. },
  3743. [
  3744. {
  3745. name: "Canon Height",
  3746. height: math.unit(120, "feet"),
  3747. default: true
  3748. },
  3749. {
  3750. name: "Macro+",
  3751. height: math.unit(300, "feet")
  3752. },
  3753. {
  3754. name: "Megamacro",
  3755. height: math.unit(20000, "feet")
  3756. }
  3757. ]
  3758. ))
  3759. characterMakers.push(() => makeCharacter(
  3760. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3761. {
  3762. front: {
  3763. height: math.unit(2, "meter"),
  3764. weight: math.unit(50, "kg"),
  3765. name: "Front",
  3766. image: {
  3767. source: "./media/characters/kalista/front.svg",
  3768. extra: 1314/1145,
  3769. bottom: 101/1415
  3770. }
  3771. },
  3772. back: {
  3773. height: math.unit(2, "meter"),
  3774. weight: math.unit(50, "kg"),
  3775. name: "Back",
  3776. image: {
  3777. source: "./media/characters/kalista/back.svg",
  3778. extra: 1366 / 1156,
  3779. bottom: 33.9 / 1362.78
  3780. }
  3781. }
  3782. },
  3783. [
  3784. {
  3785. name: "Uncomfortably Small",
  3786. height: math.unit(10, "feet")
  3787. },
  3788. {
  3789. name: "Small",
  3790. height: math.unit(30, "feet")
  3791. },
  3792. {
  3793. name: "Macro",
  3794. height: math.unit(100, "feet"),
  3795. default: true
  3796. },
  3797. {
  3798. name: "Macro+",
  3799. height: math.unit(2000, "feet")
  3800. },
  3801. {
  3802. name: "True Form",
  3803. height: math.unit(8924, "miles")
  3804. }
  3805. ]
  3806. ))
  3807. characterMakers.push(() => makeCharacter(
  3808. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3809. {
  3810. front: {
  3811. height: math.unit(2, "meter"),
  3812. weight: math.unit(120, "kg"),
  3813. name: "Front",
  3814. image: {
  3815. source: "./media/characters/ggv/front.svg"
  3816. }
  3817. },
  3818. side: {
  3819. height: math.unit(2, "meter"),
  3820. weight: math.unit(120, "kg"),
  3821. name: "Side",
  3822. image: {
  3823. source: "./media/characters/ggv/side.svg"
  3824. }
  3825. }
  3826. },
  3827. [
  3828. {
  3829. name: "Extremely Puny",
  3830. height: math.unit(9 + 5 / 12, "feet")
  3831. },
  3832. {
  3833. name: "Horribly Small",
  3834. height: math.unit(47.7, "miles"),
  3835. default: true
  3836. },
  3837. {
  3838. name: "Reasonably Sized",
  3839. height: math.unit(25000, "parsecs")
  3840. },
  3841. {
  3842. name: "Slightly Uncompressed",
  3843. height: math.unit(7.77e31, "parsecs")
  3844. },
  3845. {
  3846. name: "Omniversal",
  3847. height: math.unit(1e300, "meters")
  3848. },
  3849. ]
  3850. ))
  3851. characterMakers.push(() => makeCharacter(
  3852. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3853. {
  3854. front: {
  3855. height: math.unit(2, "meter"),
  3856. weight: math.unit(75, "lb"),
  3857. name: "Front",
  3858. image: {
  3859. source: "./media/characters/napalm/front.svg"
  3860. }
  3861. },
  3862. back: {
  3863. height: math.unit(2, "meter"),
  3864. weight: math.unit(75, "lb"),
  3865. name: "Back",
  3866. image: {
  3867. source: "./media/characters/napalm/back.svg"
  3868. }
  3869. }
  3870. },
  3871. [
  3872. {
  3873. name: "Standard",
  3874. height: math.unit(55, "feet"),
  3875. default: true
  3876. }
  3877. ]
  3878. ))
  3879. characterMakers.push(() => makeCharacter(
  3880. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3881. {
  3882. front: {
  3883. height: math.unit(7 + 5 / 6, "feet"),
  3884. weight: math.unit(325, "lb"),
  3885. name: "Front",
  3886. image: {
  3887. source: "./media/characters/asana/front.svg",
  3888. extra: 1133 / 1060,
  3889. bottom: 15.2 / 1148.6
  3890. }
  3891. },
  3892. back: {
  3893. height: math.unit(7 + 5 / 6, "feet"),
  3894. weight: math.unit(325, "lb"),
  3895. name: "Back",
  3896. image: {
  3897. source: "./media/characters/asana/back.svg",
  3898. extra: 1114 / 1043,
  3899. bottom: 5 / 1120
  3900. }
  3901. },
  3902. dressedDark: {
  3903. height: math.unit(7 + 5 / 6, "feet"),
  3904. weight: math.unit(325, "lb"),
  3905. name: "Dressed (Dark)",
  3906. image: {
  3907. source: "./media/characters/asana/dressed-dark.svg",
  3908. extra: 1133 / 1060,
  3909. bottom: 15.2 / 1148.6
  3910. }
  3911. },
  3912. dressedLight: {
  3913. height: math.unit(7 + 5 / 6, "feet"),
  3914. weight: math.unit(325, "lb"),
  3915. name: "Dressed (Light)",
  3916. image: {
  3917. source: "./media/characters/asana/dressed-light.svg",
  3918. extra: 1133 / 1060,
  3919. bottom: 15.2 / 1148.6
  3920. }
  3921. },
  3922. },
  3923. [
  3924. {
  3925. name: "Standard",
  3926. height: math.unit(7 + 5 / 6, "feet"),
  3927. default: true
  3928. },
  3929. {
  3930. name: "Large",
  3931. height: math.unit(10, "meters")
  3932. },
  3933. {
  3934. name: "Macro",
  3935. height: math.unit(2500, "meters")
  3936. },
  3937. {
  3938. name: "Megamacro",
  3939. height: math.unit(5e6, "meters")
  3940. },
  3941. {
  3942. name: "Examacro",
  3943. height: math.unit(5e12, "lightyears")
  3944. },
  3945. {
  3946. name: "Max Size",
  3947. height: math.unit(1e31, "lightyears")
  3948. }
  3949. ]
  3950. ))
  3951. characterMakers.push(() => makeCharacter(
  3952. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3953. {
  3954. front: {
  3955. height: math.unit(2, "meter"),
  3956. weight: math.unit(60, "kg"),
  3957. name: "Front",
  3958. image: {
  3959. source: "./media/characters/ebony/front.svg",
  3960. bottom: 0.03,
  3961. extra: 1045 / 810 + 0.03
  3962. }
  3963. },
  3964. side: {
  3965. height: math.unit(2, "meter"),
  3966. weight: math.unit(60, "kg"),
  3967. name: "Side",
  3968. image: {
  3969. source: "./media/characters/ebony/side.svg",
  3970. bottom: 0.03,
  3971. extra: 1045 / 810 + 0.03
  3972. }
  3973. },
  3974. back: {
  3975. height: math.unit(2, "meter"),
  3976. weight: math.unit(60, "kg"),
  3977. name: "Back",
  3978. image: {
  3979. source: "./media/characters/ebony/back.svg",
  3980. bottom: 0.01,
  3981. extra: 1045 / 810 + 0.01
  3982. }
  3983. },
  3984. },
  3985. [
  3986. // TODO check why I did this lol
  3987. {
  3988. name: "Standard",
  3989. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3990. default: true
  3991. },
  3992. {
  3993. name: "Macro",
  3994. height: math.unit(200, "feet")
  3995. },
  3996. {
  3997. name: "Gigamacro",
  3998. height: math.unit(13000, "km")
  3999. }
  4000. ]
  4001. ))
  4002. characterMakers.push(() => makeCharacter(
  4003. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4004. {
  4005. front: {
  4006. height: math.unit(6, "feet"),
  4007. weight: math.unit(175, "lb"),
  4008. name: "Front",
  4009. image: {
  4010. source: "./media/characters/mountain/front.svg",
  4011. extra: 972 / 955,
  4012. bottom: 64 / 1036.6
  4013. }
  4014. },
  4015. back: {
  4016. height: math.unit(6, "feet"),
  4017. weight: math.unit(175, "lb"),
  4018. name: "Back",
  4019. image: {
  4020. source: "./media/characters/mountain/back.svg",
  4021. extra: 970 / 950,
  4022. bottom: 28.25 / 999
  4023. }
  4024. },
  4025. },
  4026. [
  4027. {
  4028. name: "Large",
  4029. height: math.unit(20, "meters")
  4030. },
  4031. {
  4032. name: "Macro",
  4033. height: math.unit(300, "meters")
  4034. },
  4035. {
  4036. name: "Gigamacro",
  4037. height: math.unit(10000, "km"),
  4038. default: true
  4039. },
  4040. {
  4041. name: "Examacro",
  4042. height: math.unit(10e9, "lightyears")
  4043. }
  4044. ]
  4045. ))
  4046. characterMakers.push(() => makeCharacter(
  4047. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4048. {
  4049. front: {
  4050. height: math.unit(8, "feet"),
  4051. weight: math.unit(500, "lb"),
  4052. name: "Front",
  4053. image: {
  4054. source: "./media/characters/rick/front.svg"
  4055. }
  4056. }
  4057. },
  4058. [
  4059. {
  4060. name: "Normal",
  4061. height: math.unit(8, "feet"),
  4062. default: true
  4063. },
  4064. {
  4065. name: "Macro",
  4066. height: math.unit(5, "km")
  4067. }
  4068. ]
  4069. ))
  4070. characterMakers.push(() => makeCharacter(
  4071. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4072. {
  4073. front: {
  4074. height: math.unit(8, "feet"),
  4075. weight: math.unit(120, "lb"),
  4076. name: "Front",
  4077. image: {
  4078. source: "./media/characters/ona/front.svg"
  4079. }
  4080. },
  4081. frontAlt: {
  4082. height: math.unit(8, "feet"),
  4083. weight: math.unit(120, "lb"),
  4084. name: "Front (Alt)",
  4085. image: {
  4086. source: "./media/characters/ona/front-alt.svg"
  4087. }
  4088. },
  4089. back: {
  4090. height: math.unit(8, "feet"),
  4091. weight: math.unit(120, "lb"),
  4092. name: "Back",
  4093. image: {
  4094. source: "./media/characters/ona/back.svg"
  4095. }
  4096. },
  4097. foot: {
  4098. height: math.unit(1.1, "feet"),
  4099. name: "Foot",
  4100. image: {
  4101. source: "./media/characters/ona/foot.svg"
  4102. }
  4103. }
  4104. },
  4105. [
  4106. {
  4107. name: "Megamacro",
  4108. height: math.unit(70, "km"),
  4109. default: true
  4110. },
  4111. {
  4112. name: "Gigamacro",
  4113. height: math.unit(681818, "miles")
  4114. },
  4115. {
  4116. name: "Examacro",
  4117. height: math.unit(3800000, "lightyears")
  4118. },
  4119. ]
  4120. ))
  4121. characterMakers.push(() => makeCharacter(
  4122. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4123. {
  4124. front: {
  4125. height: math.unit(12, "feet"),
  4126. weight: math.unit(3000, "lb"),
  4127. name: "Front",
  4128. image: {
  4129. source: "./media/characters/mech/front.svg",
  4130. extra: 2900 / 2770,
  4131. bottom: 110 / 3010
  4132. }
  4133. },
  4134. back: {
  4135. height: math.unit(12, "feet"),
  4136. weight: math.unit(3000, "lb"),
  4137. name: "Back",
  4138. image: {
  4139. source: "./media/characters/mech/back.svg",
  4140. extra: 3011 / 2890,
  4141. bottom: 94 / 3105
  4142. }
  4143. },
  4144. maw: {
  4145. height: math.unit(3.07, "feet"),
  4146. name: "Maw",
  4147. image: {
  4148. source: "./media/characters/mech/maw.svg"
  4149. }
  4150. },
  4151. head: {
  4152. height: math.unit(2.82, "feet"),
  4153. name: "Head",
  4154. image: {
  4155. source: "./media/characters/mech/head.svg"
  4156. }
  4157. },
  4158. dick: {
  4159. height: math.unit(1.43, "feet"),
  4160. name: "Dick",
  4161. image: {
  4162. source: "./media/characters/mech/dick.svg"
  4163. }
  4164. },
  4165. },
  4166. [
  4167. {
  4168. name: "Normal",
  4169. height: math.unit(12, "feet")
  4170. },
  4171. {
  4172. name: "Macro",
  4173. height: math.unit(300, "feet"),
  4174. default: true
  4175. },
  4176. {
  4177. name: "Macro+",
  4178. height: math.unit(1500, "feet")
  4179. },
  4180. ]
  4181. ))
  4182. characterMakers.push(() => makeCharacter(
  4183. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4184. {
  4185. front: {
  4186. height: math.unit(1.3, "meter"),
  4187. weight: math.unit(30, "kg"),
  4188. name: "Front",
  4189. image: {
  4190. source: "./media/characters/gregory/front.svg",
  4191. }
  4192. }
  4193. },
  4194. [
  4195. {
  4196. name: "Normal",
  4197. height: math.unit(1.3, "meter"),
  4198. default: true
  4199. },
  4200. {
  4201. name: "Macro",
  4202. height: math.unit(20, "meter")
  4203. }
  4204. ]
  4205. ))
  4206. characterMakers.push(() => makeCharacter(
  4207. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4208. {
  4209. front: {
  4210. height: math.unit(2.8, "meter"),
  4211. weight: math.unit(200, "kg"),
  4212. name: "Front",
  4213. image: {
  4214. source: "./media/characters/elory/front.svg",
  4215. }
  4216. }
  4217. },
  4218. [
  4219. {
  4220. name: "Normal",
  4221. height: math.unit(2.8, "meter"),
  4222. default: true
  4223. },
  4224. {
  4225. name: "Macro",
  4226. height: math.unit(38, "meter")
  4227. }
  4228. ]
  4229. ))
  4230. characterMakers.push(() => makeCharacter(
  4231. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4232. {
  4233. front: {
  4234. height: math.unit(470, "feet"),
  4235. weight: math.unit(924, "tons"),
  4236. name: "Front",
  4237. image: {
  4238. source: "./media/characters/angelpatamon/front.svg",
  4239. }
  4240. }
  4241. },
  4242. [
  4243. {
  4244. name: "Normal",
  4245. height: math.unit(470, "feet"),
  4246. default: true
  4247. },
  4248. {
  4249. name: "Deity Size I",
  4250. height: math.unit(28651.2, "km")
  4251. },
  4252. {
  4253. name: "Deity Size II",
  4254. height: math.unit(171907.2, "km")
  4255. }
  4256. ]
  4257. ))
  4258. characterMakers.push(() => makeCharacter(
  4259. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4260. {
  4261. side: {
  4262. height: math.unit(7.2, "meter"),
  4263. weight: math.unit(8.2, "tons"),
  4264. name: "Side",
  4265. image: {
  4266. source: "./media/characters/cryae/side.svg",
  4267. extra: 3500 / 1500
  4268. }
  4269. }
  4270. },
  4271. [
  4272. {
  4273. name: "Normal",
  4274. height: math.unit(7.2, "meter"),
  4275. default: true
  4276. }
  4277. ]
  4278. ))
  4279. characterMakers.push(() => makeCharacter(
  4280. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4281. {
  4282. front: {
  4283. height: math.unit(6, "feet"),
  4284. weight: math.unit(175, "lb"),
  4285. name: "Front",
  4286. image: {
  4287. source: "./media/characters/xera/front.svg",
  4288. extra: 2377 / 1972,
  4289. bottom: 75.5 / 2452
  4290. }
  4291. },
  4292. side: {
  4293. height: math.unit(6, "feet"),
  4294. weight: math.unit(175, "lb"),
  4295. name: "Side",
  4296. image: {
  4297. source: "./media/characters/xera/side.svg",
  4298. extra: 2345 / 2019,
  4299. bottom: 39.7 / 2384
  4300. }
  4301. },
  4302. back: {
  4303. height: math.unit(6, "feet"),
  4304. weight: math.unit(175, "lb"),
  4305. name: "Back",
  4306. image: {
  4307. source: "./media/characters/xera/back.svg",
  4308. extra: 2095 / 1984,
  4309. bottom: 67 / 2166
  4310. }
  4311. },
  4312. },
  4313. [
  4314. {
  4315. name: "Small",
  4316. height: math.unit(10, "feet")
  4317. },
  4318. {
  4319. name: "Macro",
  4320. height: math.unit(500, "meters"),
  4321. default: true
  4322. },
  4323. {
  4324. name: "Macro+",
  4325. height: math.unit(10, "km")
  4326. },
  4327. {
  4328. name: "Gigamacro",
  4329. height: math.unit(25000, "km")
  4330. },
  4331. {
  4332. name: "Teramacro",
  4333. height: math.unit(3e6, "km")
  4334. }
  4335. ]
  4336. ))
  4337. characterMakers.push(() => makeCharacter(
  4338. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4339. {
  4340. front: {
  4341. height: math.unit(6, "feet"),
  4342. weight: math.unit(175, "lb"),
  4343. name: "Front",
  4344. image: {
  4345. source: "./media/characters/nebula/front.svg",
  4346. extra: 2566 / 2362,
  4347. bottom: 81 / 2644
  4348. }
  4349. }
  4350. },
  4351. [
  4352. {
  4353. name: "Small",
  4354. height: math.unit(4.5, "meters")
  4355. },
  4356. {
  4357. name: "Macro",
  4358. height: math.unit(1500, "meters"),
  4359. default: true
  4360. },
  4361. {
  4362. name: "Megamacro",
  4363. height: math.unit(150, "km")
  4364. },
  4365. {
  4366. name: "Gigamacro",
  4367. height: math.unit(27000, "km")
  4368. }
  4369. ]
  4370. ))
  4371. characterMakers.push(() => makeCharacter(
  4372. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4373. {
  4374. front: {
  4375. height: math.unit(6, "feet"),
  4376. weight: math.unit(225, "lb"),
  4377. name: "Front",
  4378. image: {
  4379. source: "./media/characters/abysgar/front.svg"
  4380. }
  4381. }
  4382. },
  4383. [
  4384. {
  4385. name: "Small",
  4386. height: math.unit(4.5, "meters")
  4387. },
  4388. {
  4389. name: "Macro",
  4390. height: math.unit(1250, "meters"),
  4391. default: true
  4392. },
  4393. {
  4394. name: "Megamacro",
  4395. height: math.unit(125, "km")
  4396. },
  4397. {
  4398. name: "Gigamacro",
  4399. height: math.unit(26000, "km")
  4400. }
  4401. ]
  4402. ))
  4403. characterMakers.push(() => makeCharacter(
  4404. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4405. {
  4406. front: {
  4407. height: math.unit(6, "feet"),
  4408. weight: math.unit(180, "lb"),
  4409. name: "Front",
  4410. image: {
  4411. source: "./media/characters/yakuz/front.svg"
  4412. }
  4413. }
  4414. },
  4415. [
  4416. {
  4417. name: "Small",
  4418. height: math.unit(5, "meters")
  4419. },
  4420. {
  4421. name: "Macro",
  4422. height: math.unit(1500, "meters"),
  4423. default: true
  4424. },
  4425. {
  4426. name: "Megamacro",
  4427. height: math.unit(200, "km")
  4428. },
  4429. {
  4430. name: "Gigamacro",
  4431. height: math.unit(100000, "km")
  4432. }
  4433. ]
  4434. ))
  4435. characterMakers.push(() => makeCharacter(
  4436. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4437. {
  4438. front: {
  4439. height: math.unit(6, "feet"),
  4440. weight: math.unit(175, "lb"),
  4441. name: "Front",
  4442. image: {
  4443. source: "./media/characters/mirova/front.svg",
  4444. extra: 3334 / 3071,
  4445. bottom: 42 / 3375.6
  4446. }
  4447. }
  4448. },
  4449. [
  4450. {
  4451. name: "Small",
  4452. height: math.unit(5, "meters")
  4453. },
  4454. {
  4455. name: "Macro",
  4456. height: math.unit(900, "meters"),
  4457. default: true
  4458. },
  4459. {
  4460. name: "Megamacro",
  4461. height: math.unit(135, "km")
  4462. },
  4463. {
  4464. name: "Gigamacro",
  4465. height: math.unit(20000, "km")
  4466. }
  4467. ]
  4468. ))
  4469. characterMakers.push(() => makeCharacter(
  4470. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4471. {
  4472. side: {
  4473. height: math.unit(28.35, "feet"),
  4474. weight: math.unit(99.75, "tons"),
  4475. name: "Side",
  4476. image: {
  4477. source: "./media/characters/asana-mech/side.svg",
  4478. extra: 923 / 699,
  4479. bottom: 50 / 975
  4480. }
  4481. },
  4482. chaingun: {
  4483. height: math.unit(7, "feet"),
  4484. weight: math.unit(2400, "lb"),
  4485. name: "Chaingun",
  4486. image: {
  4487. source: "./media/characters/asana-mech/chaingun.svg"
  4488. }
  4489. },
  4490. laser: {
  4491. height: math.unit(7.12, "feet"),
  4492. weight: math.unit(2000, "lb"),
  4493. name: "Laser",
  4494. image: {
  4495. source: "./media/characters/asana-mech/laser.svg"
  4496. }
  4497. },
  4498. },
  4499. [
  4500. {
  4501. name: "Normal",
  4502. height: math.unit(28.35, "feet"),
  4503. default: true
  4504. },
  4505. {
  4506. name: "Macro",
  4507. height: math.unit(2500, "feet")
  4508. },
  4509. {
  4510. name: "Megamacro",
  4511. height: math.unit(25, "miles")
  4512. },
  4513. {
  4514. name: "Examacro",
  4515. height: math.unit(6e8, "lightyears")
  4516. },
  4517. ]
  4518. ))
  4519. characterMakers.push(() => makeCharacter(
  4520. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4521. {
  4522. front: {
  4523. height: math.unit(5, "meters"),
  4524. weight: math.unit(1000, "kg"),
  4525. name: "Front",
  4526. image: {
  4527. source: "./media/characters/asche/front.svg",
  4528. extra: 1258 / 1190,
  4529. bottom: 47 / 1305
  4530. }
  4531. },
  4532. frontUnderwear: {
  4533. height: math.unit(5, "meters"),
  4534. weight: math.unit(1000, "kg"),
  4535. name: "Front (Underwear)",
  4536. image: {
  4537. source: "./media/characters/asche/front-underwear.svg",
  4538. extra: 1258 / 1190,
  4539. bottom: 47 / 1305
  4540. }
  4541. },
  4542. frontDressed: {
  4543. height: math.unit(5, "meters"),
  4544. weight: math.unit(1000, "kg"),
  4545. name: "Front (Dressed)",
  4546. image: {
  4547. source: "./media/characters/asche/front-dressed.svg",
  4548. extra: 1258 / 1190,
  4549. bottom: 47 / 1305
  4550. }
  4551. },
  4552. frontArmor: {
  4553. height: math.unit(5, "meters"),
  4554. weight: math.unit(1000, "kg"),
  4555. name: "Front (Armored)",
  4556. image: {
  4557. source: "./media/characters/asche/front-armored.svg",
  4558. extra: 1374 / 1308,
  4559. bottom: 23 / 1397
  4560. }
  4561. },
  4562. mp724: {
  4563. height: math.unit(0.96, "meters"),
  4564. weight: math.unit(38, "kg"),
  4565. name: "H&K MP724",
  4566. image: {
  4567. source: "./media/characters/asche/h&k-mp724.svg"
  4568. }
  4569. },
  4570. side: {
  4571. height: math.unit(5, "meters"),
  4572. weight: math.unit(1000, "kg"),
  4573. name: "Side",
  4574. image: {
  4575. source: "./media/characters/asche/side.svg",
  4576. extra: 1717 / 1609,
  4577. bottom: 0.005
  4578. }
  4579. },
  4580. back: {
  4581. height: math.unit(5, "meters"),
  4582. weight: math.unit(1000, "kg"),
  4583. name: "Back",
  4584. image: {
  4585. source: "./media/characters/asche/back.svg",
  4586. extra: 1570 / 1501
  4587. }
  4588. },
  4589. },
  4590. [
  4591. {
  4592. name: "DEFCON 5",
  4593. height: math.unit(5, "meters")
  4594. },
  4595. {
  4596. name: "DEFCON 4",
  4597. height: math.unit(500, "meters"),
  4598. default: true
  4599. },
  4600. {
  4601. name: "DEFCON 3",
  4602. height: math.unit(5, "km")
  4603. },
  4604. {
  4605. name: "DEFCON 2",
  4606. height: math.unit(500, "km")
  4607. },
  4608. {
  4609. name: "DEFCON 1",
  4610. height: math.unit(500000, "km")
  4611. },
  4612. {
  4613. name: "DEFCON 0",
  4614. height: math.unit(3, "gigaparsecs")
  4615. },
  4616. ]
  4617. ))
  4618. characterMakers.push(() => makeCharacter(
  4619. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4620. {
  4621. front: {
  4622. height: math.unit(2, "meters"),
  4623. weight: math.unit(76, "kg"),
  4624. name: "Front",
  4625. image: {
  4626. source: "./media/characters/gale/front.svg"
  4627. }
  4628. },
  4629. frontAlt1: {
  4630. height: math.unit(2, "meters"),
  4631. weight: math.unit(76, "kg"),
  4632. name: "Front (Alt 1)",
  4633. image: {
  4634. source: "./media/characters/gale/front-alt-1.svg"
  4635. }
  4636. },
  4637. frontAlt2: {
  4638. height: math.unit(2, "meters"),
  4639. weight: math.unit(76, "kg"),
  4640. name: "Front (Alt 2)",
  4641. image: {
  4642. source: "./media/characters/gale/front-alt-2.svg"
  4643. }
  4644. },
  4645. },
  4646. [
  4647. {
  4648. name: "Normal",
  4649. height: math.unit(7, "feet")
  4650. },
  4651. {
  4652. name: "Macro",
  4653. height: math.unit(150, "feet"),
  4654. default: true
  4655. },
  4656. {
  4657. name: "Macro+",
  4658. height: math.unit(300, "feet")
  4659. },
  4660. ]
  4661. ))
  4662. characterMakers.push(() => makeCharacter(
  4663. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4664. {
  4665. front: {
  4666. height: math.unit(5 + 10/12, "feet"),
  4667. weight: math.unit(67, "kg"),
  4668. name: "Front",
  4669. image: {
  4670. source: "./media/characters/draylen/front.svg",
  4671. extra: 832/777,
  4672. bottom: 85/917
  4673. }
  4674. }
  4675. },
  4676. [
  4677. {
  4678. name: "Normal",
  4679. height: math.unit(5 + 10/12, "feet")
  4680. },
  4681. {
  4682. name: "Macro",
  4683. height: math.unit(150, "feet"),
  4684. default: true
  4685. }
  4686. ]
  4687. ))
  4688. characterMakers.push(() => makeCharacter(
  4689. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4690. {
  4691. front: {
  4692. height: math.unit(7 + 9 / 12, "feet"),
  4693. weight: math.unit(379, "lbs"),
  4694. name: "Front",
  4695. image: {
  4696. source: "./media/characters/chez/front.svg"
  4697. }
  4698. },
  4699. side: {
  4700. height: math.unit(7 + 9 / 12, "feet"),
  4701. weight: math.unit(379, "lbs"),
  4702. name: "Side",
  4703. image: {
  4704. source: "./media/characters/chez/side.svg"
  4705. }
  4706. }
  4707. },
  4708. [
  4709. {
  4710. name: "Normal",
  4711. height: math.unit(7 + 9 / 12, "feet"),
  4712. default: true
  4713. },
  4714. {
  4715. name: "God King",
  4716. height: math.unit(9750000, "meters")
  4717. }
  4718. ]
  4719. ))
  4720. characterMakers.push(() => makeCharacter(
  4721. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4722. {
  4723. front: {
  4724. height: math.unit(6, "feet"),
  4725. weight: math.unit(275, "lbs"),
  4726. name: "Front",
  4727. image: {
  4728. source: "./media/characters/kaylum/front.svg",
  4729. bottom: 0.01,
  4730. extra: 1166 / 1031
  4731. }
  4732. },
  4733. frontWingless: {
  4734. height: math.unit(6, "feet"),
  4735. weight: math.unit(275, "lbs"),
  4736. name: "Front (Wingless)",
  4737. image: {
  4738. source: "./media/characters/kaylum/front-wingless.svg",
  4739. bottom: 0.01,
  4740. extra: 1117 / 1031
  4741. }
  4742. }
  4743. },
  4744. [
  4745. {
  4746. name: "Normal",
  4747. height: math.unit(3.05, "meters")
  4748. },
  4749. {
  4750. name: "Master",
  4751. height: math.unit(5.5, "meters")
  4752. },
  4753. {
  4754. name: "Rampage",
  4755. height: math.unit(19, "meters")
  4756. },
  4757. {
  4758. name: "Macro Lite",
  4759. height: math.unit(37, "meters")
  4760. },
  4761. {
  4762. name: "Hyper Predator",
  4763. height: math.unit(61, "meters")
  4764. },
  4765. {
  4766. name: "Macro",
  4767. height: math.unit(138, "meters"),
  4768. default: true
  4769. }
  4770. ]
  4771. ))
  4772. characterMakers.push(() => makeCharacter(
  4773. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4774. {
  4775. front: {
  4776. height: math.unit(6, "feet"),
  4777. weight: math.unit(150, "lbs"),
  4778. name: "Front",
  4779. image: {
  4780. source: "./media/characters/geta/front.svg"
  4781. }
  4782. }
  4783. },
  4784. [
  4785. {
  4786. name: "Micro",
  4787. height: math.unit(3, "inches"),
  4788. default: true
  4789. },
  4790. {
  4791. name: "Normal",
  4792. height: math.unit(5 + 5 / 12, "feet")
  4793. }
  4794. ]
  4795. ))
  4796. characterMakers.push(() => makeCharacter(
  4797. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4798. {
  4799. front: {
  4800. height: math.unit(6, "feet"),
  4801. weight: math.unit(300, "lbs"),
  4802. name: "Front",
  4803. image: {
  4804. source: "./media/characters/tyrnn/front.svg"
  4805. }
  4806. }
  4807. },
  4808. [
  4809. {
  4810. name: "Main Height",
  4811. height: math.unit(355, "feet"),
  4812. default: true
  4813. },
  4814. {
  4815. name: "Fave. Height",
  4816. height: math.unit(2400, "feet")
  4817. }
  4818. ]
  4819. ))
  4820. characterMakers.push(() => makeCharacter(
  4821. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4822. {
  4823. front: {
  4824. height: math.unit(6, "feet"),
  4825. weight: math.unit(300, "lbs"),
  4826. name: "Front",
  4827. image: {
  4828. source: "./media/characters/appledectomy/front.svg"
  4829. }
  4830. }
  4831. },
  4832. [
  4833. {
  4834. name: "Macro",
  4835. height: math.unit(2500, "feet")
  4836. },
  4837. {
  4838. name: "Megamacro",
  4839. height: math.unit(50, "miles"),
  4840. default: true
  4841. },
  4842. {
  4843. name: "Gigamacro",
  4844. height: math.unit(5000, "miles")
  4845. },
  4846. {
  4847. name: "Teramacro",
  4848. height: math.unit(250000, "miles")
  4849. },
  4850. ]
  4851. ))
  4852. characterMakers.push(() => makeCharacter(
  4853. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4854. {
  4855. front: {
  4856. height: math.unit(6, "feet"),
  4857. weight: math.unit(200, "lbs"),
  4858. name: "Front",
  4859. image: {
  4860. source: "./media/characters/vulpes/front.svg",
  4861. extra: 573 / 543,
  4862. bottom: 0.033
  4863. }
  4864. },
  4865. side: {
  4866. height: math.unit(6, "feet"),
  4867. weight: math.unit(200, "lbs"),
  4868. name: "Side",
  4869. image: {
  4870. source: "./media/characters/vulpes/side.svg",
  4871. extra: 577 / 549,
  4872. bottom: 11 / 588
  4873. }
  4874. },
  4875. back: {
  4876. height: math.unit(6, "feet"),
  4877. weight: math.unit(200, "lbs"),
  4878. name: "Back",
  4879. image: {
  4880. source: "./media/characters/vulpes/back.svg",
  4881. extra: 573 / 549,
  4882. bottom: 20 / 593
  4883. }
  4884. },
  4885. feet: {
  4886. height: math.unit(1.276, "feet"),
  4887. name: "Feet",
  4888. image: {
  4889. source: "./media/characters/vulpes/feet.svg"
  4890. }
  4891. },
  4892. maw: {
  4893. height: math.unit(1.18, "feet"),
  4894. name: "Maw",
  4895. image: {
  4896. source: "./media/characters/vulpes/maw.svg"
  4897. }
  4898. },
  4899. },
  4900. [
  4901. {
  4902. name: "Micro",
  4903. height: math.unit(2, "inches")
  4904. },
  4905. {
  4906. name: "Normal",
  4907. height: math.unit(6.3, "feet")
  4908. },
  4909. {
  4910. name: "Macro",
  4911. height: math.unit(850, "feet")
  4912. },
  4913. {
  4914. name: "Megamacro",
  4915. height: math.unit(7500, "feet"),
  4916. default: true
  4917. },
  4918. {
  4919. name: "Gigamacro",
  4920. height: math.unit(570000, "miles")
  4921. }
  4922. ]
  4923. ))
  4924. characterMakers.push(() => makeCharacter(
  4925. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4926. {
  4927. front: {
  4928. height: math.unit(6, "feet"),
  4929. weight: math.unit(210, "lbs"),
  4930. name: "Front",
  4931. image: {
  4932. source: "./media/characters/rain-fallen/front.svg"
  4933. }
  4934. },
  4935. side: {
  4936. height: math.unit(6, "feet"),
  4937. weight: math.unit(210, "lbs"),
  4938. name: "Side",
  4939. image: {
  4940. source: "./media/characters/rain-fallen/side.svg"
  4941. }
  4942. },
  4943. back: {
  4944. height: math.unit(6, "feet"),
  4945. weight: math.unit(210, "lbs"),
  4946. name: "Back",
  4947. image: {
  4948. source: "./media/characters/rain-fallen/back.svg"
  4949. }
  4950. },
  4951. feral: {
  4952. height: math.unit(9, "feet"),
  4953. weight: math.unit(700, "lbs"),
  4954. name: "Feral",
  4955. image: {
  4956. source: "./media/characters/rain-fallen/feral.svg"
  4957. }
  4958. },
  4959. },
  4960. [
  4961. {
  4962. name: "Meddling with Mortals",
  4963. height: math.unit(8 + 8/12, "feet")
  4964. },
  4965. {
  4966. name: "Normal",
  4967. height: math.unit(5, "meter")
  4968. },
  4969. {
  4970. name: "Macro",
  4971. height: math.unit(150, "meter"),
  4972. default: true
  4973. },
  4974. {
  4975. name: "Megamacro",
  4976. height: math.unit(278e6, "meter")
  4977. },
  4978. {
  4979. name: "Gigamacro",
  4980. height: math.unit(2e9, "meter")
  4981. },
  4982. {
  4983. name: "Teramacro",
  4984. height: math.unit(8e12, "meter")
  4985. },
  4986. {
  4987. name: "Devourer",
  4988. height: math.unit(14, "zettameters")
  4989. },
  4990. {
  4991. name: "Scarlet King",
  4992. height: math.unit(18, "yottameters")
  4993. },
  4994. {
  4995. name: "Void",
  4996. height: math.unit(1e88, "yottameters")
  4997. }
  4998. ]
  4999. ))
  5000. characterMakers.push(() => makeCharacter(
  5001. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5002. {
  5003. standing: {
  5004. height: math.unit(6, "feet"),
  5005. weight: math.unit(180, "lbs"),
  5006. name: "Standing",
  5007. image: {
  5008. source: "./media/characters/zaakira/standing.svg",
  5009. extra: 1599/1504,
  5010. bottom: 39/1638
  5011. }
  5012. },
  5013. laying: {
  5014. height: math.unit(3, "feet"),
  5015. weight: math.unit(180, "lbs"),
  5016. name: "Laying",
  5017. image: {
  5018. source: "./media/characters/zaakira/laying.svg"
  5019. }
  5020. },
  5021. },
  5022. [
  5023. {
  5024. name: "Normal",
  5025. height: math.unit(12, "feet")
  5026. },
  5027. {
  5028. name: "Macro",
  5029. height: math.unit(279, "feet"),
  5030. default: true
  5031. }
  5032. ]
  5033. ))
  5034. characterMakers.push(() => makeCharacter(
  5035. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5036. {
  5037. femSfw: {
  5038. height: math.unit(8, "feet"),
  5039. weight: math.unit(350, "lb"),
  5040. name: "Fem",
  5041. image: {
  5042. source: "./media/characters/sigvald/fem-sfw.svg",
  5043. extra: 182 / 164,
  5044. bottom: 8.7 / 190.5
  5045. }
  5046. },
  5047. femNsfw: {
  5048. height: math.unit(8, "feet"),
  5049. weight: math.unit(350, "lb"),
  5050. name: "Fem (NSFW)",
  5051. image: {
  5052. source: "./media/characters/sigvald/fem-nsfw.svg",
  5053. extra: 182 / 164,
  5054. bottom: 8.7 / 190.5
  5055. }
  5056. },
  5057. maleNsfw: {
  5058. height: math.unit(8, "feet"),
  5059. weight: math.unit(350, "lb"),
  5060. name: "Male (NSFW)",
  5061. image: {
  5062. source: "./media/characters/sigvald/male-nsfw.svg",
  5063. extra: 182 / 164,
  5064. bottom: 8.7 / 190.5
  5065. }
  5066. },
  5067. hermNsfw: {
  5068. height: math.unit(8, "feet"),
  5069. weight: math.unit(350, "lb"),
  5070. name: "Herm (NSFW)",
  5071. image: {
  5072. source: "./media/characters/sigvald/herm-nsfw.svg",
  5073. extra: 182 / 164,
  5074. bottom: 8.7 / 190.5
  5075. }
  5076. },
  5077. dick: {
  5078. height: math.unit(2.36, "feet"),
  5079. name: "Dick",
  5080. image: {
  5081. source: "./media/characters/sigvald/dick.svg"
  5082. }
  5083. },
  5084. eye: {
  5085. height: math.unit(0.31, "feet"),
  5086. name: "Eye",
  5087. image: {
  5088. source: "./media/characters/sigvald/eye.svg"
  5089. }
  5090. },
  5091. mouth: {
  5092. height: math.unit(0.92, "feet"),
  5093. name: "Mouth",
  5094. image: {
  5095. source: "./media/characters/sigvald/mouth.svg"
  5096. }
  5097. },
  5098. paws: {
  5099. height: math.unit(2.2, "feet"),
  5100. name: "Paws",
  5101. image: {
  5102. source: "./media/characters/sigvald/paws.svg"
  5103. }
  5104. }
  5105. },
  5106. [
  5107. {
  5108. name: "Normal",
  5109. height: math.unit(8, "feet")
  5110. },
  5111. {
  5112. name: "Large",
  5113. height: math.unit(12, "feet")
  5114. },
  5115. {
  5116. name: "Larger",
  5117. height: math.unit(20, "feet")
  5118. },
  5119. {
  5120. name: "Macro",
  5121. height: math.unit(150, "feet")
  5122. },
  5123. {
  5124. name: "Macro+",
  5125. height: math.unit(200, "feet"),
  5126. default: true
  5127. },
  5128. ]
  5129. ))
  5130. characterMakers.push(() => makeCharacter(
  5131. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5132. {
  5133. side: {
  5134. height: math.unit(12, "feet"),
  5135. weight: math.unit(2000, "kg"),
  5136. name: "Side",
  5137. image: {
  5138. source: "./media/characters/scott/side.svg",
  5139. extra: 754 / 724,
  5140. bottom: 0.069
  5141. }
  5142. },
  5143. upright: {
  5144. height: math.unit(12, "feet"),
  5145. weight: math.unit(2000, "kg"),
  5146. name: "Upright",
  5147. image: {
  5148. source: "./media/characters/scott/upright.svg",
  5149. extra: 3881 / 3722,
  5150. bottom: 0.05
  5151. }
  5152. },
  5153. },
  5154. [
  5155. {
  5156. name: "Normal",
  5157. height: math.unit(12, "feet"),
  5158. default: true
  5159. },
  5160. ]
  5161. ))
  5162. characterMakers.push(() => makeCharacter(
  5163. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5164. {
  5165. side: {
  5166. height: math.unit(8, "meters"),
  5167. weight: math.unit(84755, "lbs"),
  5168. name: "Side",
  5169. image: {
  5170. source: "./media/characters/tobias/side.svg",
  5171. extra: 1474 / 1096,
  5172. bottom: 38.9 / 1513.1235
  5173. }
  5174. },
  5175. },
  5176. [
  5177. {
  5178. name: "Normal",
  5179. height: math.unit(8, "meters"),
  5180. default: true
  5181. },
  5182. ]
  5183. ))
  5184. characterMakers.push(() => makeCharacter(
  5185. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5186. {
  5187. front: {
  5188. height: math.unit(5.5, "feet"),
  5189. weight: math.unit(400, "lbs"),
  5190. name: "Front",
  5191. image: {
  5192. source: "./media/characters/kieran/front.svg",
  5193. extra: 2694 / 2364,
  5194. bottom: 217 / 2908
  5195. }
  5196. },
  5197. side: {
  5198. height: math.unit(5.5, "feet"),
  5199. weight: math.unit(400, "lbs"),
  5200. name: "Side",
  5201. image: {
  5202. source: "./media/characters/kieran/side.svg",
  5203. extra: 875 / 777,
  5204. bottom: 84.6 / 959
  5205. }
  5206. },
  5207. },
  5208. [
  5209. {
  5210. name: "Normal",
  5211. height: math.unit(5.5, "feet"),
  5212. default: true
  5213. },
  5214. ]
  5215. ))
  5216. characterMakers.push(() => makeCharacter(
  5217. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5218. {
  5219. side: {
  5220. height: math.unit(2, "meters"),
  5221. weight: math.unit(70, "kg"),
  5222. name: "Side",
  5223. image: {
  5224. source: "./media/characters/sanya/side.svg",
  5225. bottom: 0.02,
  5226. extra: 1.02
  5227. }
  5228. },
  5229. },
  5230. [
  5231. {
  5232. name: "Small",
  5233. height: math.unit(2, "meters")
  5234. },
  5235. {
  5236. name: "Normal",
  5237. height: math.unit(3, "meters")
  5238. },
  5239. {
  5240. name: "Macro",
  5241. height: math.unit(16, "meters"),
  5242. default: true
  5243. },
  5244. ]
  5245. ))
  5246. characterMakers.push(() => makeCharacter(
  5247. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5248. {
  5249. front: {
  5250. height: math.unit(2, "meters"),
  5251. weight: math.unit(120, "kg"),
  5252. name: "Front",
  5253. image: {
  5254. source: "./media/characters/miranda/front.svg",
  5255. extra: 195 / 185,
  5256. bottom: 10.9 / 206.5
  5257. }
  5258. },
  5259. back: {
  5260. height: math.unit(2, "meters"),
  5261. weight: math.unit(120, "kg"),
  5262. name: "Back",
  5263. image: {
  5264. source: "./media/characters/miranda/back.svg",
  5265. extra: 201 / 193,
  5266. bottom: 2.3 / 203.7
  5267. }
  5268. },
  5269. },
  5270. [
  5271. {
  5272. name: "Normal",
  5273. height: math.unit(10, "feet"),
  5274. default: true
  5275. }
  5276. ]
  5277. ))
  5278. characterMakers.push(() => makeCharacter(
  5279. { name: "James", species: ["deer"], tags: ["anthro"] },
  5280. {
  5281. side: {
  5282. height: math.unit(2, "meters"),
  5283. weight: math.unit(100, "kg"),
  5284. name: "Front",
  5285. image: {
  5286. source: "./media/characters/james/front.svg",
  5287. extra: 10 / 8.5
  5288. }
  5289. },
  5290. },
  5291. [
  5292. {
  5293. name: "Normal",
  5294. height: math.unit(8.5, "feet"),
  5295. default: true
  5296. }
  5297. ]
  5298. ))
  5299. characterMakers.push(() => makeCharacter(
  5300. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5301. {
  5302. side: {
  5303. height: math.unit(9.5, "feet"),
  5304. weight: math.unit(2500, "lbs"),
  5305. name: "Side",
  5306. image: {
  5307. source: "./media/characters/heather/side.svg"
  5308. }
  5309. },
  5310. },
  5311. [
  5312. {
  5313. name: "Normal",
  5314. height: math.unit(9.5, "feet"),
  5315. default: true
  5316. }
  5317. ]
  5318. ))
  5319. characterMakers.push(() => makeCharacter(
  5320. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5321. {
  5322. side: {
  5323. height: math.unit(6.5, "feet"),
  5324. weight: math.unit(400, "lbs"),
  5325. name: "Side",
  5326. image: {
  5327. source: "./media/characters/lukas/side.svg",
  5328. extra: 7.25 / 6.5
  5329. }
  5330. },
  5331. },
  5332. [
  5333. {
  5334. name: "Normal",
  5335. height: math.unit(6.5, "feet"),
  5336. default: true
  5337. }
  5338. ]
  5339. ))
  5340. characterMakers.push(() => makeCharacter(
  5341. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5342. {
  5343. side: {
  5344. height: math.unit(5, "feet"),
  5345. weight: math.unit(3000, "lbs"),
  5346. name: "Side",
  5347. image: {
  5348. source: "./media/characters/louise/side.svg"
  5349. }
  5350. },
  5351. },
  5352. [
  5353. {
  5354. name: "Normal",
  5355. height: math.unit(5, "feet"),
  5356. default: true
  5357. }
  5358. ]
  5359. ))
  5360. characterMakers.push(() => makeCharacter(
  5361. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5362. {
  5363. side: {
  5364. height: math.unit(6, "feet"),
  5365. weight: math.unit(150, "lbs"),
  5366. name: "Side",
  5367. image: {
  5368. source: "./media/characters/ramona/side.svg",
  5369. extra: 871/854,
  5370. bottom: 41/912
  5371. }
  5372. },
  5373. },
  5374. [
  5375. {
  5376. name: "Normal",
  5377. height: math.unit(5.3, "meters"),
  5378. default: true
  5379. },
  5380. {
  5381. name: "Macro",
  5382. height: math.unit(20, "stories")
  5383. },
  5384. {
  5385. name: "Macro+",
  5386. height: math.unit(50, "stories")
  5387. },
  5388. ]
  5389. ))
  5390. characterMakers.push(() => makeCharacter(
  5391. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5392. {
  5393. standing: {
  5394. height: math.unit(5.75, "feet"),
  5395. weight: math.unit(160, "lbs"),
  5396. name: "Standing",
  5397. image: {
  5398. source: "./media/characters/deerpuff/standing.svg",
  5399. extra: 682 / 624
  5400. }
  5401. },
  5402. sitting: {
  5403. height: math.unit(5.75 / 1.79, "feet"),
  5404. weight: math.unit(160, "lbs"),
  5405. name: "Sitting",
  5406. image: {
  5407. source: "./media/characters/deerpuff/sitting.svg",
  5408. bottom: 44 / 400,
  5409. extra: 1
  5410. }
  5411. },
  5412. taurLaying: {
  5413. height: math.unit(6, "feet"),
  5414. weight: math.unit(400, "lbs"),
  5415. name: "Taur (Laying)",
  5416. image: {
  5417. source: "./media/characters/deerpuff/taur-laying.svg"
  5418. }
  5419. },
  5420. },
  5421. [
  5422. {
  5423. name: "Puffball",
  5424. height: math.unit(6, "inches")
  5425. },
  5426. {
  5427. name: "Normalpuff",
  5428. height: math.unit(5.75, "feet")
  5429. },
  5430. {
  5431. name: "Macropuff",
  5432. height: math.unit(1500, "feet"),
  5433. default: true
  5434. },
  5435. {
  5436. name: "Megapuff",
  5437. height: math.unit(500, "miles")
  5438. },
  5439. {
  5440. name: "Gigapuff",
  5441. height: math.unit(250000, "miles")
  5442. },
  5443. {
  5444. name: "Omegapuff",
  5445. height: math.unit(1000, "lightyears")
  5446. },
  5447. ]
  5448. ))
  5449. characterMakers.push(() => makeCharacter(
  5450. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5451. {
  5452. stomping: {
  5453. height: math.unit(6, "feet"),
  5454. weight: math.unit(170, "lbs"),
  5455. name: "Stomping",
  5456. image: {
  5457. source: "./media/characters/vivian/stomping.svg"
  5458. }
  5459. },
  5460. sitting: {
  5461. height: math.unit(6 / 1.75, "feet"),
  5462. weight: math.unit(170, "lbs"),
  5463. name: "Sitting",
  5464. image: {
  5465. source: "./media/characters/vivian/sitting.svg",
  5466. bottom: 1 / 6.4,
  5467. extra: 1,
  5468. }
  5469. },
  5470. },
  5471. [
  5472. {
  5473. name: "Normal",
  5474. height: math.unit(7, "feet"),
  5475. default: true
  5476. },
  5477. {
  5478. name: "Macro",
  5479. height: math.unit(10, "stories")
  5480. },
  5481. {
  5482. name: "Macro+",
  5483. height: math.unit(30, "stories")
  5484. },
  5485. {
  5486. name: "Megamacro",
  5487. height: math.unit(10, "miles")
  5488. },
  5489. {
  5490. name: "Megamacro+",
  5491. height: math.unit(2750000, "meters")
  5492. },
  5493. ]
  5494. ))
  5495. characterMakers.push(() => makeCharacter(
  5496. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5497. {
  5498. front: {
  5499. height: math.unit(6, "feet"),
  5500. weight: math.unit(160, "lbs"),
  5501. name: "Front",
  5502. image: {
  5503. source: "./media/characters/prince/front.svg",
  5504. extra: 3400 / 3000
  5505. }
  5506. },
  5507. jumping: {
  5508. height: math.unit(6, "feet"),
  5509. weight: math.unit(160, "lbs"),
  5510. name: "Jumping",
  5511. image: {
  5512. source: "./media/characters/prince/jump.svg",
  5513. extra: 2555 / 2134
  5514. }
  5515. },
  5516. },
  5517. [
  5518. {
  5519. name: "Normal",
  5520. height: math.unit(7.75, "feet"),
  5521. default: true
  5522. },
  5523. {
  5524. name: "Not cute",
  5525. height: math.unit(17, "feet")
  5526. },
  5527. {
  5528. name: "I said NOT",
  5529. height: math.unit(91, "feet")
  5530. },
  5531. {
  5532. name: "Please stop",
  5533. height: math.unit(560, "feet")
  5534. },
  5535. {
  5536. name: "What have you done",
  5537. height: math.unit(2200, "feet")
  5538. },
  5539. {
  5540. name: "Deer God",
  5541. height: math.unit(3.6, "miles")
  5542. },
  5543. ]
  5544. ))
  5545. characterMakers.push(() => makeCharacter(
  5546. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5547. {
  5548. standing: {
  5549. height: math.unit(6, "feet"),
  5550. weight: math.unit(300, "lbs"),
  5551. name: "Standing",
  5552. image: {
  5553. source: "./media/characters/psymon/standing.svg",
  5554. extra: 1888 / 1810,
  5555. bottom: 0.05
  5556. }
  5557. },
  5558. slithering: {
  5559. height: math.unit(6, "feet"),
  5560. weight: math.unit(300, "lbs"),
  5561. name: "Slithering",
  5562. image: {
  5563. source: "./media/characters/psymon/slithering.svg",
  5564. extra: 1330 / 1224
  5565. }
  5566. },
  5567. slitheringAlt: {
  5568. height: math.unit(6, "feet"),
  5569. weight: math.unit(300, "lbs"),
  5570. name: "Slithering (Alt)",
  5571. image: {
  5572. source: "./media/characters/psymon/slithering-alt.svg",
  5573. extra: 1330 / 1224
  5574. }
  5575. },
  5576. },
  5577. [
  5578. {
  5579. name: "Normal",
  5580. height: math.unit(11.25, "feet"),
  5581. default: true
  5582. },
  5583. {
  5584. name: "Large",
  5585. height: math.unit(27, "feet")
  5586. },
  5587. {
  5588. name: "Giant",
  5589. height: math.unit(87, "feet")
  5590. },
  5591. {
  5592. name: "Macro",
  5593. height: math.unit(365, "feet")
  5594. },
  5595. {
  5596. name: "Megamacro",
  5597. height: math.unit(3, "miles")
  5598. },
  5599. {
  5600. name: "World Serpent",
  5601. height: math.unit(8000, "miles")
  5602. },
  5603. ]
  5604. ))
  5605. characterMakers.push(() => makeCharacter(
  5606. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5607. {
  5608. front: {
  5609. height: math.unit(6, "feet"),
  5610. weight: math.unit(180, "lbs"),
  5611. name: "Front",
  5612. image: {
  5613. source: "./media/characters/daimos/front.svg",
  5614. extra: 4160 / 3897,
  5615. bottom: 0.021
  5616. }
  5617. }
  5618. },
  5619. [
  5620. {
  5621. name: "Normal",
  5622. height: math.unit(8, "feet"),
  5623. default: true
  5624. },
  5625. {
  5626. name: "Big Dog",
  5627. height: math.unit(22, "feet")
  5628. },
  5629. {
  5630. name: "Macro",
  5631. height: math.unit(127, "feet")
  5632. },
  5633. {
  5634. name: "Megamacro",
  5635. height: math.unit(3600, "feet")
  5636. },
  5637. ]
  5638. ))
  5639. characterMakers.push(() => makeCharacter(
  5640. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5641. {
  5642. side: {
  5643. height: math.unit(6, "feet"),
  5644. weight: math.unit(180, "lbs"),
  5645. name: "Side",
  5646. image: {
  5647. source: "./media/characters/blake/side.svg",
  5648. extra: 1212 / 1120,
  5649. bottom: 0.05
  5650. }
  5651. },
  5652. crouched: {
  5653. height: math.unit(6 * 0.57, "feet"),
  5654. weight: math.unit(180, "lbs"),
  5655. name: "Crouched",
  5656. image: {
  5657. source: "./media/characters/blake/crouched.svg",
  5658. extra: 840 / 587,
  5659. bottom: 0.04
  5660. }
  5661. },
  5662. bent: {
  5663. height: math.unit(6 * 0.75, "feet"),
  5664. weight: math.unit(180, "lbs"),
  5665. name: "Bent",
  5666. image: {
  5667. source: "./media/characters/blake/bent.svg",
  5668. extra: 592 / 544,
  5669. bottom: 0.035
  5670. }
  5671. },
  5672. },
  5673. [
  5674. {
  5675. name: "Normal",
  5676. height: math.unit(8 + 1 / 6, "feet"),
  5677. default: true
  5678. },
  5679. {
  5680. name: "Big Backside",
  5681. height: math.unit(37, "feet")
  5682. },
  5683. {
  5684. name: "Subway Shredder",
  5685. height: math.unit(72, "feet")
  5686. },
  5687. {
  5688. name: "City Carver",
  5689. height: math.unit(1675, "feet")
  5690. },
  5691. {
  5692. name: "Tectonic Tweaker",
  5693. height: math.unit(2300, "miles")
  5694. },
  5695. ]
  5696. ))
  5697. characterMakers.push(() => makeCharacter(
  5698. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5699. {
  5700. front: {
  5701. height: math.unit(6, "feet"),
  5702. weight: math.unit(180, "lbs"),
  5703. name: "Front",
  5704. image: {
  5705. source: "./media/characters/guisetto/front.svg",
  5706. extra: 856 / 817,
  5707. bottom: 0.06
  5708. }
  5709. },
  5710. airborne: {
  5711. height: math.unit(6, "feet"),
  5712. weight: math.unit(180, "lbs"),
  5713. name: "Airborne",
  5714. image: {
  5715. source: "./media/characters/guisetto/airborne.svg",
  5716. extra: 584 / 525
  5717. }
  5718. },
  5719. },
  5720. [
  5721. {
  5722. name: "Normal",
  5723. height: math.unit(10 + 11 / 12, "feet"),
  5724. default: true
  5725. },
  5726. {
  5727. name: "Large",
  5728. height: math.unit(35, "feet")
  5729. },
  5730. {
  5731. name: "Macro",
  5732. height: math.unit(475, "feet")
  5733. },
  5734. ]
  5735. ))
  5736. characterMakers.push(() => makeCharacter(
  5737. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5738. {
  5739. front: {
  5740. height: math.unit(6, "feet"),
  5741. weight: math.unit(180, "lbs"),
  5742. name: "Front",
  5743. image: {
  5744. source: "./media/characters/luxor/front.svg",
  5745. extra: 2940 / 2152
  5746. }
  5747. },
  5748. back: {
  5749. height: math.unit(6, "feet"),
  5750. weight: math.unit(180, "lbs"),
  5751. name: "Back",
  5752. image: {
  5753. source: "./media/characters/luxor/back.svg",
  5754. extra: 1083 / 960
  5755. }
  5756. },
  5757. },
  5758. [
  5759. {
  5760. name: "Normal",
  5761. height: math.unit(5 + 5 / 6, "feet"),
  5762. default: true
  5763. },
  5764. {
  5765. name: "Lamp",
  5766. height: math.unit(50, "feet")
  5767. },
  5768. {
  5769. name: "Lämp",
  5770. height: math.unit(300, "feet")
  5771. },
  5772. {
  5773. name: "The sun is a lamp",
  5774. height: math.unit(250000, "miles")
  5775. },
  5776. ]
  5777. ))
  5778. characterMakers.push(() => makeCharacter(
  5779. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5780. {
  5781. front: {
  5782. height: math.unit(6, "feet"),
  5783. weight: math.unit(50, "lbs"),
  5784. name: "Front",
  5785. image: {
  5786. source: "./media/characters/huoyan/front.svg"
  5787. }
  5788. },
  5789. side: {
  5790. height: math.unit(6, "feet"),
  5791. weight: math.unit(180, "lbs"),
  5792. name: "Side",
  5793. image: {
  5794. source: "./media/characters/huoyan/side.svg"
  5795. }
  5796. },
  5797. },
  5798. [
  5799. {
  5800. name: "Chef",
  5801. height: math.unit(9, "feet")
  5802. },
  5803. {
  5804. name: "Normal",
  5805. height: math.unit(65, "feet"),
  5806. default: true
  5807. },
  5808. {
  5809. name: "Macro",
  5810. height: math.unit(780, "feet")
  5811. },
  5812. {
  5813. name: "Flaming Mountain",
  5814. height: math.unit(4.8, "miles")
  5815. },
  5816. {
  5817. name: "Celestial",
  5818. height: math.unit(765000, "miles")
  5819. },
  5820. ]
  5821. ))
  5822. characterMakers.push(() => makeCharacter(
  5823. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5824. {
  5825. front: {
  5826. height: math.unit(5 + 3 / 4, "feet"),
  5827. weight: math.unit(120, "lbs"),
  5828. name: "Front",
  5829. image: {
  5830. source: "./media/characters/tails/front.svg"
  5831. }
  5832. }
  5833. },
  5834. [
  5835. {
  5836. name: "Normal",
  5837. height: math.unit(5 + 3 / 4, "feet"),
  5838. default: true
  5839. }
  5840. ]
  5841. ))
  5842. characterMakers.push(() => makeCharacter(
  5843. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5844. {
  5845. front: {
  5846. height: math.unit(4, "feet"),
  5847. weight: math.unit(50, "lbs"),
  5848. name: "Front",
  5849. image: {
  5850. source: "./media/characters/rainy/front.svg"
  5851. }
  5852. }
  5853. },
  5854. [
  5855. {
  5856. name: "Macro",
  5857. height: math.unit(800, "feet"),
  5858. default: true
  5859. }
  5860. ]
  5861. ))
  5862. characterMakers.push(() => makeCharacter(
  5863. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5864. {
  5865. front: {
  5866. height: math.unit(6, "feet"),
  5867. weight: math.unit(150, "lbs"),
  5868. name: "Front",
  5869. image: {
  5870. source: "./media/characters/rainier/front.svg"
  5871. }
  5872. }
  5873. },
  5874. [
  5875. {
  5876. name: "Micro",
  5877. height: math.unit(2, "mm"),
  5878. default: true
  5879. }
  5880. ]
  5881. ))
  5882. characterMakers.push(() => makeCharacter(
  5883. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5884. {
  5885. front: {
  5886. height: math.unit(8 + 4/12, "feet"),
  5887. name: "Front",
  5888. image: {
  5889. source: "./media/characters/andy-renard/front.svg",
  5890. extra: 1839/1726,
  5891. bottom: 134/1973
  5892. }
  5893. },
  5894. back: {
  5895. height: math.unit(8 + 4/12, "feet"),
  5896. name: "Back",
  5897. image: {
  5898. source: "./media/characters/andy-renard/back.svg",
  5899. extra: 1838/1710,
  5900. bottom: 105/1943
  5901. }
  5902. },
  5903. },
  5904. [
  5905. {
  5906. name: "Tall",
  5907. height: math.unit(8 + 4/12, "feet")
  5908. },
  5909. {
  5910. name: "Mini Macro",
  5911. height: math.unit(15, "feet"),
  5912. default: true
  5913. },
  5914. {
  5915. name: "Macro",
  5916. height: math.unit(100, "feet")
  5917. },
  5918. {
  5919. name: "Mega Macro",
  5920. height: math.unit(1000, "feet")
  5921. },
  5922. {
  5923. name: "Giga Macro",
  5924. height: math.unit(10, "miles")
  5925. },
  5926. {
  5927. name: "God Macro",
  5928. height: math.unit(1, "multiverse")
  5929. },
  5930. ]
  5931. ))
  5932. characterMakers.push(() => makeCharacter(
  5933. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5934. {
  5935. front: {
  5936. height: math.unit(6, "feet"),
  5937. weight: math.unit(210, "lbs"),
  5938. name: "Front",
  5939. image: {
  5940. source: "./media/characters/cimmaron/front-sfw.svg",
  5941. extra: 701 / 676,
  5942. bottom: 0.046
  5943. }
  5944. },
  5945. back: {
  5946. height: math.unit(6, "feet"),
  5947. weight: math.unit(210, "lbs"),
  5948. name: "Back",
  5949. image: {
  5950. source: "./media/characters/cimmaron/back-sfw.svg",
  5951. extra: 701 / 676,
  5952. bottom: 0.046
  5953. }
  5954. },
  5955. frontNsfw: {
  5956. height: math.unit(6, "feet"),
  5957. weight: math.unit(210, "lbs"),
  5958. name: "Front (NSFW)",
  5959. image: {
  5960. source: "./media/characters/cimmaron/front-nsfw.svg",
  5961. extra: 701 / 676,
  5962. bottom: 0.046
  5963. }
  5964. },
  5965. backNsfw: {
  5966. height: math.unit(6, "feet"),
  5967. weight: math.unit(210, "lbs"),
  5968. name: "Back (NSFW)",
  5969. image: {
  5970. source: "./media/characters/cimmaron/back-nsfw.svg",
  5971. extra: 701 / 676,
  5972. bottom: 0.046
  5973. }
  5974. },
  5975. dick: {
  5976. height: math.unit(1.714, "feet"),
  5977. name: "Dick",
  5978. image: {
  5979. source: "./media/characters/cimmaron/dick.svg"
  5980. }
  5981. },
  5982. },
  5983. [
  5984. {
  5985. name: "Normal",
  5986. height: math.unit(6, "feet"),
  5987. default: true
  5988. },
  5989. {
  5990. name: "Macro Mayor",
  5991. height: math.unit(350, "meters")
  5992. },
  5993. ]
  5994. ))
  5995. characterMakers.push(() => makeCharacter(
  5996. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5997. {
  5998. front: {
  5999. height: math.unit(6, "feet"),
  6000. weight: math.unit(200, "lbs"),
  6001. name: "Front",
  6002. image: {
  6003. source: "./media/characters/akari/front.svg",
  6004. extra: 962 / 901,
  6005. bottom: 0.04
  6006. }
  6007. }
  6008. },
  6009. [
  6010. {
  6011. name: "Micro",
  6012. height: math.unit(5, "inches"),
  6013. default: true
  6014. },
  6015. {
  6016. name: "Normal",
  6017. height: math.unit(7, "feet")
  6018. },
  6019. ]
  6020. ))
  6021. characterMakers.push(() => makeCharacter(
  6022. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6023. {
  6024. front: {
  6025. height: math.unit(6, "feet"),
  6026. weight: math.unit(140, "lbs"),
  6027. name: "Front",
  6028. image: {
  6029. source: "./media/characters/cynosura/front.svg",
  6030. extra: 896 / 847
  6031. }
  6032. },
  6033. back: {
  6034. height: math.unit(6, "feet"),
  6035. weight: math.unit(140, "lbs"),
  6036. name: "Back",
  6037. image: {
  6038. source: "./media/characters/cynosura/back.svg",
  6039. extra: 1365 / 1250
  6040. }
  6041. },
  6042. },
  6043. [
  6044. {
  6045. name: "Micro",
  6046. height: math.unit(4, "inches")
  6047. },
  6048. {
  6049. name: "Normal",
  6050. height: math.unit(5.75, "feet"),
  6051. default: true
  6052. },
  6053. {
  6054. name: "Tall",
  6055. height: math.unit(10, "feet")
  6056. },
  6057. {
  6058. name: "Big",
  6059. height: math.unit(20, "feet")
  6060. },
  6061. {
  6062. name: "Macro",
  6063. height: math.unit(50, "feet")
  6064. },
  6065. ]
  6066. ))
  6067. characterMakers.push(() => makeCharacter(
  6068. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6069. {
  6070. front: {
  6071. height: math.unit(13 + 2/12, "feet"),
  6072. weight: math.unit(800, "kg"),
  6073. name: "Front",
  6074. image: {
  6075. source: "./media/characters/gin/front.svg",
  6076. extra: 1312/1191,
  6077. bottom: 45/1357
  6078. }
  6079. },
  6080. mouth: {
  6081. height: math.unit(2.39 * 1.8, "feet"),
  6082. name: "Mouth",
  6083. image: {
  6084. source: "./media/characters/gin/mouth.svg"
  6085. }
  6086. },
  6087. hand: {
  6088. height: math.unit(1.57 * 2.19, "feet"),
  6089. name: "Hand",
  6090. image: {
  6091. source: "./media/characters/gin/hand.svg"
  6092. }
  6093. },
  6094. foot: {
  6095. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6096. name: "Foot",
  6097. image: {
  6098. source: "./media/characters/gin/foot.svg"
  6099. }
  6100. },
  6101. sole: {
  6102. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6103. name: "Sole",
  6104. image: {
  6105. source: "./media/characters/gin/sole.svg"
  6106. }
  6107. },
  6108. },
  6109. [
  6110. {
  6111. name: "Very Small",
  6112. height: math.unit(13 + 2 / 12, "feet")
  6113. },
  6114. {
  6115. name: "Micro",
  6116. height: math.unit(600, "miles")
  6117. },
  6118. {
  6119. name: "Regular",
  6120. height: math.unit(20, "earths"),
  6121. default: true
  6122. },
  6123. {
  6124. name: "Macro",
  6125. height: math.unit(2.2, "solarradii")
  6126. },
  6127. {
  6128. name: "Teramacro",
  6129. height: math.unit(1.2, "galaxies")
  6130. },
  6131. {
  6132. name: "Omegamacro",
  6133. height: math.unit(200, "universes")
  6134. },
  6135. ]
  6136. ))
  6137. characterMakers.push(() => makeCharacter(
  6138. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6139. {
  6140. front: {
  6141. height: math.unit(6 + 1 / 6, "feet"),
  6142. weight: math.unit(178, "lbs"),
  6143. name: "Front",
  6144. image: {
  6145. source: "./media/characters/guy/front.svg"
  6146. }
  6147. }
  6148. },
  6149. [
  6150. {
  6151. name: "Normal",
  6152. height: math.unit(6 + 1 / 6, "feet"),
  6153. default: true
  6154. },
  6155. {
  6156. name: "Large",
  6157. height: math.unit(25 + 7 / 12, "feet")
  6158. },
  6159. {
  6160. name: "Macro",
  6161. height: math.unit(60 + 9 / 12, "feet")
  6162. },
  6163. {
  6164. name: "Macro+",
  6165. height: math.unit(246, "feet")
  6166. },
  6167. {
  6168. name: "Macro++",
  6169. height: math.unit(878, "feet")
  6170. }
  6171. ]
  6172. ))
  6173. characterMakers.push(() => makeCharacter(
  6174. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6175. {
  6176. front: {
  6177. height: math.unit(9, "feet"),
  6178. weight: math.unit(800, "lbs"),
  6179. name: "Front",
  6180. image: {
  6181. source: "./media/characters/tiberius/front.svg",
  6182. extra: 2295 / 2071
  6183. }
  6184. },
  6185. back: {
  6186. height: math.unit(9, "feet"),
  6187. weight: math.unit(800, "lbs"),
  6188. name: "Back",
  6189. image: {
  6190. source: "./media/characters/tiberius/back.svg",
  6191. extra: 2373 / 2160
  6192. }
  6193. },
  6194. },
  6195. [
  6196. {
  6197. name: "Normal",
  6198. height: math.unit(9, "feet"),
  6199. default: true
  6200. }
  6201. ]
  6202. ))
  6203. characterMakers.push(() => makeCharacter(
  6204. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6205. {
  6206. front: {
  6207. height: math.unit(6, "feet"),
  6208. weight: math.unit(600, "lbs"),
  6209. name: "Front",
  6210. image: {
  6211. source: "./media/characters/surgo/front.svg",
  6212. extra: 3591 / 2227
  6213. }
  6214. },
  6215. back: {
  6216. height: math.unit(6, "feet"),
  6217. weight: math.unit(600, "lbs"),
  6218. name: "Back",
  6219. image: {
  6220. source: "./media/characters/surgo/back.svg",
  6221. extra: 3557 / 2228
  6222. }
  6223. },
  6224. laying: {
  6225. height: math.unit(6 * 0.85, "feet"),
  6226. weight: math.unit(600, "lbs"),
  6227. name: "Laying",
  6228. image: {
  6229. source: "./media/characters/surgo/laying.svg"
  6230. }
  6231. },
  6232. },
  6233. [
  6234. {
  6235. name: "Normal",
  6236. height: math.unit(6, "feet"),
  6237. default: true
  6238. }
  6239. ]
  6240. ))
  6241. characterMakers.push(() => makeCharacter(
  6242. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6243. {
  6244. side: {
  6245. height: math.unit(6, "feet"),
  6246. weight: math.unit(150, "lbs"),
  6247. name: "Side",
  6248. image: {
  6249. source: "./media/characters/cibus/side.svg",
  6250. extra: 800 / 400
  6251. }
  6252. },
  6253. },
  6254. [
  6255. {
  6256. name: "Normal",
  6257. height: math.unit(6, "feet"),
  6258. default: true
  6259. }
  6260. ]
  6261. ))
  6262. characterMakers.push(() => makeCharacter(
  6263. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6264. {
  6265. front: {
  6266. height: math.unit(6, "feet"),
  6267. weight: math.unit(240, "lbs"),
  6268. name: "Front",
  6269. image: {
  6270. source: "./media/characters/nibbles/front.svg"
  6271. }
  6272. },
  6273. side: {
  6274. height: math.unit(6, "feet"),
  6275. weight: math.unit(240, "lbs"),
  6276. name: "Side",
  6277. image: {
  6278. source: "./media/characters/nibbles/side.svg"
  6279. }
  6280. },
  6281. },
  6282. [
  6283. {
  6284. name: "Normal",
  6285. height: math.unit(9, "feet"),
  6286. default: true
  6287. }
  6288. ]
  6289. ))
  6290. characterMakers.push(() => makeCharacter(
  6291. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6292. {
  6293. side: {
  6294. height: math.unit(5 + 1 / 6, "feet"),
  6295. weight: math.unit(130, "lbs"),
  6296. name: "Side",
  6297. image: {
  6298. source: "./media/characters/rikky/side.svg",
  6299. extra: 851 / 801
  6300. }
  6301. },
  6302. },
  6303. [
  6304. {
  6305. name: "Normal",
  6306. height: math.unit(5 + 1 / 6, "feet")
  6307. },
  6308. {
  6309. name: "Macro",
  6310. height: math.unit(152, "feet"),
  6311. default: true
  6312. },
  6313. {
  6314. name: "Megamacro",
  6315. height: math.unit(7, "miles")
  6316. }
  6317. ]
  6318. ))
  6319. characterMakers.push(() => makeCharacter(
  6320. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6321. {
  6322. side: {
  6323. height: math.unit(370, "cm"),
  6324. weight: math.unit(350, "lbs"),
  6325. name: "Side",
  6326. image: {
  6327. source: "./media/characters/malfressa/side.svg"
  6328. }
  6329. },
  6330. walking: {
  6331. height: math.unit(370, "cm"),
  6332. weight: math.unit(350, "lbs"),
  6333. name: "Walking",
  6334. image: {
  6335. source: "./media/characters/malfressa/walking.svg"
  6336. }
  6337. },
  6338. feral: {
  6339. height: math.unit(2500, "cm"),
  6340. weight: math.unit(100000, "lbs"),
  6341. name: "Feral",
  6342. image: {
  6343. source: "./media/characters/malfressa/feral.svg",
  6344. extra: 2108 / 837,
  6345. bottom: 0.02
  6346. }
  6347. },
  6348. },
  6349. [
  6350. {
  6351. name: "Normal",
  6352. height: math.unit(370, "cm")
  6353. },
  6354. {
  6355. name: "Macro",
  6356. height: math.unit(300, "meters"),
  6357. default: true
  6358. }
  6359. ]
  6360. ))
  6361. characterMakers.push(() => makeCharacter(
  6362. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6363. {
  6364. front: {
  6365. height: math.unit(6, "feet"),
  6366. weight: math.unit(60, "kg"),
  6367. name: "Front",
  6368. image: {
  6369. source: "./media/characters/jaro/front.svg",
  6370. extra: 845/817,
  6371. bottom: 45/890
  6372. }
  6373. },
  6374. back: {
  6375. height: math.unit(6, "feet"),
  6376. weight: math.unit(60, "kg"),
  6377. name: "Back",
  6378. image: {
  6379. source: "./media/characters/jaro/back.svg",
  6380. extra: 847/817,
  6381. bottom: 34/881
  6382. }
  6383. },
  6384. },
  6385. [
  6386. {
  6387. name: "Micro",
  6388. height: math.unit(7, "inches")
  6389. },
  6390. {
  6391. name: "Normal",
  6392. height: math.unit(5.5, "feet"),
  6393. default: true
  6394. },
  6395. {
  6396. name: "Minimacro",
  6397. height: math.unit(20, "feet")
  6398. },
  6399. {
  6400. name: "Macro",
  6401. height: math.unit(200, "meters")
  6402. }
  6403. ]
  6404. ))
  6405. characterMakers.push(() => makeCharacter(
  6406. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6407. {
  6408. front: {
  6409. height: math.unit(6, "feet"),
  6410. weight: math.unit(195, "lb"),
  6411. name: "Front",
  6412. image: {
  6413. source: "./media/characters/rogue/front.svg"
  6414. }
  6415. },
  6416. },
  6417. [
  6418. {
  6419. name: "Macro",
  6420. height: math.unit(90, "feet"),
  6421. default: true
  6422. },
  6423. ]
  6424. ))
  6425. characterMakers.push(() => makeCharacter(
  6426. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6427. {
  6428. front: {
  6429. height: math.unit(5 + 8 / 12, "feet"),
  6430. weight: math.unit(140, "lb"),
  6431. name: "Front",
  6432. image: {
  6433. source: "./media/characters/piper/front.svg",
  6434. extra: 3948/3655,
  6435. bottom: 0/3948
  6436. }
  6437. },
  6438. },
  6439. [
  6440. {
  6441. name: "Micro",
  6442. height: math.unit(2, "inches")
  6443. },
  6444. {
  6445. name: "Normal",
  6446. height: math.unit(5 + 8 / 12, "feet")
  6447. },
  6448. {
  6449. name: "Macro",
  6450. height: math.unit(250, "feet"),
  6451. default: true
  6452. },
  6453. {
  6454. name: "Megamacro",
  6455. height: math.unit(7, "miles")
  6456. },
  6457. ]
  6458. ))
  6459. characterMakers.push(() => makeCharacter(
  6460. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6461. {
  6462. front: {
  6463. height: math.unit(6, "feet"),
  6464. weight: math.unit(220, "lb"),
  6465. name: "Front",
  6466. image: {
  6467. source: "./media/characters/gemini/front.svg"
  6468. }
  6469. },
  6470. back: {
  6471. height: math.unit(6, "feet"),
  6472. weight: math.unit(220, "lb"),
  6473. name: "Back",
  6474. image: {
  6475. source: "./media/characters/gemini/back.svg"
  6476. }
  6477. },
  6478. kneeling: {
  6479. height: math.unit(6 / 1.5, "feet"),
  6480. weight: math.unit(220, "lb"),
  6481. name: "Kneeling",
  6482. image: {
  6483. source: "./media/characters/gemini/kneeling.svg",
  6484. bottom: 0.02
  6485. }
  6486. },
  6487. },
  6488. [
  6489. {
  6490. name: "Macro",
  6491. height: math.unit(300, "meters"),
  6492. default: true
  6493. },
  6494. {
  6495. name: "Megamacro",
  6496. height: math.unit(6900, "meters")
  6497. },
  6498. ]
  6499. ))
  6500. characterMakers.push(() => makeCharacter(
  6501. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6502. {
  6503. anthro: {
  6504. height: math.unit(2.35, "meters"),
  6505. weight: math.unit(73, "kg"),
  6506. name: "Anthro",
  6507. image: {
  6508. source: "./media/characters/alicia/anthro.svg",
  6509. extra: 2571 / 2385,
  6510. bottom: 75 / 2648
  6511. }
  6512. },
  6513. paw: {
  6514. height: math.unit(1.32, "feet"),
  6515. name: "Paw",
  6516. image: {
  6517. source: "./media/characters/alicia/paw.svg"
  6518. }
  6519. },
  6520. feral: {
  6521. height: math.unit(1.69, "meters"),
  6522. weight: math.unit(73, "kg"),
  6523. name: "Feral",
  6524. image: {
  6525. source: "./media/characters/alicia/feral.svg",
  6526. extra: 2123 / 1715,
  6527. bottom: 222 / 2349
  6528. }
  6529. },
  6530. },
  6531. [
  6532. {
  6533. name: "Normal",
  6534. height: math.unit(2.35, "meters")
  6535. },
  6536. {
  6537. name: "Macro",
  6538. height: math.unit(60, "meters"),
  6539. default: true
  6540. },
  6541. {
  6542. name: "Megamacro",
  6543. height: math.unit(10000, "kilometers")
  6544. },
  6545. ]
  6546. ))
  6547. characterMakers.push(() => makeCharacter(
  6548. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6549. {
  6550. front: {
  6551. height: math.unit(7, "feet"),
  6552. weight: math.unit(250, "lbs"),
  6553. name: "Front",
  6554. image: {
  6555. source: "./media/characters/archy/front.svg"
  6556. }
  6557. }
  6558. },
  6559. [
  6560. {
  6561. name: "Micro",
  6562. height: math.unit(1, "inch")
  6563. },
  6564. {
  6565. name: "Shorty",
  6566. height: math.unit(5, "feet")
  6567. },
  6568. {
  6569. name: "Normal",
  6570. height: math.unit(7, "feet")
  6571. },
  6572. {
  6573. name: "Macro",
  6574. height: math.unit(600, "meters"),
  6575. default: true
  6576. },
  6577. {
  6578. name: "Megamacro",
  6579. height: math.unit(1, "mile")
  6580. },
  6581. ]
  6582. ))
  6583. characterMakers.push(() => makeCharacter(
  6584. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6585. {
  6586. front: {
  6587. height: math.unit(1.65, "meters"),
  6588. weight: math.unit(74, "kg"),
  6589. name: "Front",
  6590. image: {
  6591. source: "./media/characters/berri/front.svg",
  6592. extra: 857 / 837,
  6593. bottom: 18 / 877
  6594. }
  6595. },
  6596. bum: {
  6597. height: math.unit(1.46, "feet"),
  6598. name: "Bum",
  6599. image: {
  6600. source: "./media/characters/berri/bum.svg"
  6601. }
  6602. },
  6603. mouth: {
  6604. height: math.unit(0.44, "feet"),
  6605. name: "Mouth",
  6606. image: {
  6607. source: "./media/characters/berri/mouth.svg"
  6608. }
  6609. },
  6610. paw: {
  6611. height: math.unit(0.826, "feet"),
  6612. name: "Paw",
  6613. image: {
  6614. source: "./media/characters/berri/paw.svg"
  6615. }
  6616. },
  6617. },
  6618. [
  6619. {
  6620. name: "Normal",
  6621. height: math.unit(1.65, "meters")
  6622. },
  6623. {
  6624. name: "Macro",
  6625. height: math.unit(60, "m"),
  6626. default: true
  6627. },
  6628. {
  6629. name: "Megamacro",
  6630. height: math.unit(9.213, "km")
  6631. },
  6632. {
  6633. name: "Planet Eater",
  6634. height: math.unit(489, "megameters")
  6635. },
  6636. {
  6637. name: "Teramacro",
  6638. height: math.unit(2471635000000, "meters")
  6639. },
  6640. {
  6641. name: "Examacro",
  6642. height: math.unit(8.0624e+26, "meters")
  6643. }
  6644. ]
  6645. ))
  6646. characterMakers.push(() => makeCharacter(
  6647. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6648. {
  6649. front: {
  6650. height: math.unit(1.72, "meters"),
  6651. weight: math.unit(68, "kg"),
  6652. name: "Front",
  6653. image: {
  6654. source: "./media/characters/lexi/front.svg"
  6655. }
  6656. }
  6657. },
  6658. [
  6659. {
  6660. name: "Very Smol",
  6661. height: math.unit(10, "mm")
  6662. },
  6663. {
  6664. name: "Micro",
  6665. height: math.unit(6.8, "cm"),
  6666. default: true
  6667. },
  6668. {
  6669. name: "Normal",
  6670. height: math.unit(1.72, "m")
  6671. }
  6672. ]
  6673. ))
  6674. characterMakers.push(() => makeCharacter(
  6675. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6676. {
  6677. front: {
  6678. height: math.unit(1.69, "meters"),
  6679. weight: math.unit(68, "kg"),
  6680. name: "Front",
  6681. image: {
  6682. source: "./media/characters/martin/front.svg",
  6683. extra: 596 / 581
  6684. }
  6685. }
  6686. },
  6687. [
  6688. {
  6689. name: "Micro",
  6690. height: math.unit(6.85, "cm"),
  6691. default: true
  6692. },
  6693. {
  6694. name: "Normal",
  6695. height: math.unit(1.69, "m")
  6696. }
  6697. ]
  6698. ))
  6699. characterMakers.push(() => makeCharacter(
  6700. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6701. {
  6702. front: {
  6703. height: math.unit(1.69, "meters"),
  6704. weight: math.unit(68, "kg"),
  6705. name: "Front",
  6706. image: {
  6707. source: "./media/characters/juno/front.svg"
  6708. }
  6709. }
  6710. },
  6711. [
  6712. {
  6713. name: "Micro",
  6714. height: math.unit(7, "cm")
  6715. },
  6716. {
  6717. name: "Normal",
  6718. height: math.unit(1.89, "m")
  6719. },
  6720. {
  6721. name: "Macro",
  6722. height: math.unit(353, "meters"),
  6723. default: true
  6724. }
  6725. ]
  6726. ))
  6727. characterMakers.push(() => makeCharacter(
  6728. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6729. {
  6730. front: {
  6731. height: math.unit(1.93, "meters"),
  6732. weight: math.unit(83, "kg"),
  6733. name: "Front",
  6734. image: {
  6735. source: "./media/characters/samantha/front.svg"
  6736. }
  6737. },
  6738. frontClothed: {
  6739. height: math.unit(1.93, "meters"),
  6740. weight: math.unit(83, "kg"),
  6741. name: "Front (Clothed)",
  6742. image: {
  6743. source: "./media/characters/samantha/front-clothed.svg"
  6744. }
  6745. },
  6746. back: {
  6747. height: math.unit(1.93, "meters"),
  6748. weight: math.unit(83, "kg"),
  6749. name: "Back",
  6750. image: {
  6751. source: "./media/characters/samantha/back.svg"
  6752. }
  6753. },
  6754. },
  6755. [
  6756. {
  6757. name: "Normal",
  6758. height: math.unit(1.93, "m")
  6759. },
  6760. {
  6761. name: "Macro",
  6762. height: math.unit(74, "meters"),
  6763. default: true
  6764. },
  6765. {
  6766. name: "Macro+",
  6767. height: math.unit(223, "meters"),
  6768. },
  6769. {
  6770. name: "Megamacro",
  6771. height: math.unit(8381, "meters"),
  6772. },
  6773. {
  6774. name: "Megamacro+",
  6775. height: math.unit(12000, "kilometers")
  6776. },
  6777. ]
  6778. ))
  6779. characterMakers.push(() => makeCharacter(
  6780. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6781. {
  6782. front: {
  6783. height: math.unit(1.92, "meters"),
  6784. weight: math.unit(80, "kg"),
  6785. name: "Front",
  6786. image: {
  6787. source: "./media/characters/dr-clay/front.svg"
  6788. }
  6789. },
  6790. frontClothed: {
  6791. height: math.unit(1.92, "meters"),
  6792. weight: math.unit(80, "kg"),
  6793. name: "Front (Clothed)",
  6794. image: {
  6795. source: "./media/characters/dr-clay/front-clothed.svg"
  6796. }
  6797. }
  6798. },
  6799. [
  6800. {
  6801. name: "Normal",
  6802. height: math.unit(1.92, "m")
  6803. },
  6804. {
  6805. name: "Macro",
  6806. height: math.unit(214, "meters"),
  6807. default: true
  6808. },
  6809. {
  6810. name: "Macro+",
  6811. height: math.unit(12.237, "meters"),
  6812. },
  6813. {
  6814. name: "Megamacro",
  6815. height: math.unit(557, "megameters"),
  6816. },
  6817. {
  6818. name: "Unimaginable",
  6819. height: math.unit(120e9, "lightyears")
  6820. },
  6821. ]
  6822. ))
  6823. characterMakers.push(() => makeCharacter(
  6824. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6825. {
  6826. front: {
  6827. height: math.unit(2, "meters"),
  6828. weight: math.unit(80, "kg"),
  6829. name: "Front",
  6830. image: {
  6831. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6832. }
  6833. }
  6834. },
  6835. [
  6836. {
  6837. name: "Teramacro",
  6838. height: math.unit(500000, "lightyears"),
  6839. default: true
  6840. },
  6841. ]
  6842. ))
  6843. characterMakers.push(() => makeCharacter(
  6844. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6845. {
  6846. crux: {
  6847. height: math.unit(2, "meters"),
  6848. weight: math.unit(150, "kg"),
  6849. name: "Crux",
  6850. image: {
  6851. source: "./media/characters/vemus/crux.svg",
  6852. extra: 1074/936,
  6853. bottom: 23/1097
  6854. }
  6855. },
  6856. skunkTanuki: {
  6857. height: math.unit(2, "meters"),
  6858. weight: math.unit(150, "kg"),
  6859. name: "Skunk-Tanuki",
  6860. image: {
  6861. source: "./media/characters/vemus/skunk-tanuki.svg",
  6862. extra: 926/893,
  6863. bottom: 20/946
  6864. }
  6865. },
  6866. },
  6867. [
  6868. {
  6869. name: "Normal",
  6870. height: math.unit(3.75, "meters"),
  6871. default: true
  6872. },
  6873. {
  6874. name: "Big",
  6875. height: math.unit(8, "meters")
  6876. },
  6877. {
  6878. name: "Macro",
  6879. height: math.unit(100, "meters")
  6880. },
  6881. {
  6882. name: "Macro+",
  6883. height: math.unit(1500, "meters")
  6884. },
  6885. {
  6886. name: "Stellar",
  6887. height: math.unit(14e8, "meters")
  6888. },
  6889. ]
  6890. ))
  6891. characterMakers.push(() => makeCharacter(
  6892. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6893. {
  6894. front: {
  6895. height: math.unit(2, "meters"),
  6896. weight: math.unit(70, "kg"),
  6897. name: "Front",
  6898. image: {
  6899. source: "./media/characters/beherit/front.svg",
  6900. extra: 1234/1109,
  6901. bottom: 55/1289
  6902. }
  6903. }
  6904. },
  6905. [
  6906. {
  6907. name: "Normal",
  6908. height: math.unit(6, "feet")
  6909. },
  6910. {
  6911. name: "Lorg",
  6912. height: math.unit(25, "feet"),
  6913. default: true
  6914. },
  6915. {
  6916. name: "Lorger",
  6917. height: math.unit(75, "feet")
  6918. },
  6919. {
  6920. name: "Macro",
  6921. height: math.unit(200, "meters")
  6922. },
  6923. ]
  6924. ))
  6925. characterMakers.push(() => makeCharacter(
  6926. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6927. {
  6928. front: {
  6929. height: math.unit(2, "meters"),
  6930. weight: math.unit(150, "kg"),
  6931. name: "Front",
  6932. image: {
  6933. source: "./media/characters/everett/front.svg",
  6934. extra: 1017/866,
  6935. bottom: 86/1103
  6936. }
  6937. },
  6938. paw: {
  6939. height: math.unit(2 / 3.6, "meters"),
  6940. name: "Paw",
  6941. image: {
  6942. source: "./media/characters/everett/paw.svg"
  6943. }
  6944. },
  6945. },
  6946. [
  6947. {
  6948. name: "Normal",
  6949. height: math.unit(15, "feet"),
  6950. default: true
  6951. },
  6952. {
  6953. name: "Lorg",
  6954. height: math.unit(70, "feet"),
  6955. default: true
  6956. },
  6957. {
  6958. name: "Lorger",
  6959. height: math.unit(250, "feet")
  6960. },
  6961. {
  6962. name: "Macro",
  6963. height: math.unit(500, "meters")
  6964. },
  6965. ]
  6966. ))
  6967. characterMakers.push(() => makeCharacter(
  6968. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6969. {
  6970. front: {
  6971. height: math.unit(2, "meters"),
  6972. weight: math.unit(86, "kg"),
  6973. name: "Front",
  6974. image: {
  6975. source: "./media/characters/rose/front.svg",
  6976. extra: 1785/1636,
  6977. bottom: 30/1815
  6978. }
  6979. },
  6980. frontSporty: {
  6981. height: math.unit(2, "meters"),
  6982. weight: math.unit(86, "kg"),
  6983. name: "Front (Sporty)",
  6984. image: {
  6985. source: "./media/characters/rose/front-sporty.svg",
  6986. extra: 350/335,
  6987. bottom: 10/360
  6988. }
  6989. },
  6990. frontAlt: {
  6991. height: math.unit(1.6, "meters"),
  6992. weight: math.unit(86, "kg"),
  6993. name: "Front (Alt)",
  6994. image: {
  6995. source: "./media/characters/rose/front-alt.svg",
  6996. extra: 299/283,
  6997. bottom: 3/302
  6998. }
  6999. },
  7000. plush: {
  7001. height: math.unit(2, "meters"),
  7002. weight: math.unit(86/3, "kg"),
  7003. name: "Plush",
  7004. image: {
  7005. source: "./media/characters/rose/plush.svg",
  7006. extra: 361/337,
  7007. bottom: 11/372
  7008. }
  7009. },
  7010. },
  7011. [
  7012. {
  7013. name: "True Micro",
  7014. height: math.unit(9, "cm")
  7015. },
  7016. {
  7017. name: "Micro",
  7018. height: math.unit(16, "cm")
  7019. },
  7020. {
  7021. name: "Normal",
  7022. height: math.unit(1.85, "meters"),
  7023. default: true
  7024. },
  7025. {
  7026. name: "Mini-Macro",
  7027. height: math.unit(5, "meters")
  7028. },
  7029. {
  7030. name: "Macro",
  7031. height: math.unit(15, "meters")
  7032. },
  7033. {
  7034. name: "True Macro",
  7035. height: math.unit(40, "meters")
  7036. },
  7037. {
  7038. name: "City Scale",
  7039. height: math.unit(1, "km")
  7040. },
  7041. ]
  7042. ))
  7043. characterMakers.push(() => makeCharacter(
  7044. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7045. {
  7046. front: {
  7047. height: math.unit(2, "meters"),
  7048. weight: math.unit(350, "lbs"),
  7049. name: "Front",
  7050. image: {
  7051. source: "./media/characters/regal/front.svg"
  7052. }
  7053. },
  7054. back: {
  7055. height: math.unit(2, "meters"),
  7056. weight: math.unit(350, "lbs"),
  7057. name: "Back",
  7058. image: {
  7059. source: "./media/characters/regal/back.svg"
  7060. }
  7061. },
  7062. },
  7063. [
  7064. {
  7065. name: "Macro",
  7066. height: math.unit(350, "feet"),
  7067. default: true
  7068. }
  7069. ]
  7070. ))
  7071. characterMakers.push(() => makeCharacter(
  7072. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7073. {
  7074. front: {
  7075. height: math.unit(4 + 11 / 12, "feet"),
  7076. weight: math.unit(100, "lbs"),
  7077. name: "Front",
  7078. image: {
  7079. source: "./media/characters/opal/front.svg"
  7080. }
  7081. },
  7082. frontAlt: {
  7083. height: math.unit(4 + 11 / 12, "feet"),
  7084. weight: math.unit(100, "lbs"),
  7085. name: "Front (Alt)",
  7086. image: {
  7087. source: "./media/characters/opal/front-alt.svg"
  7088. }
  7089. },
  7090. },
  7091. [
  7092. {
  7093. name: "Small",
  7094. height: math.unit(4 + 11 / 12, "feet")
  7095. },
  7096. {
  7097. name: "Normal",
  7098. height: math.unit(20, "feet"),
  7099. default: true
  7100. },
  7101. {
  7102. name: "Macro",
  7103. height: math.unit(120, "feet")
  7104. },
  7105. {
  7106. name: "Megamacro",
  7107. height: math.unit(80, "miles")
  7108. },
  7109. {
  7110. name: "True Size",
  7111. height: math.unit(100000, "lightyears")
  7112. },
  7113. ]
  7114. ))
  7115. characterMakers.push(() => makeCharacter(
  7116. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7117. {
  7118. front: {
  7119. height: math.unit(6, "feet"),
  7120. weight: math.unit(200, "lbs"),
  7121. name: "Front",
  7122. image: {
  7123. source: "./media/characters/vector-wuff/front.svg"
  7124. }
  7125. }
  7126. },
  7127. [
  7128. {
  7129. name: "Normal",
  7130. height: math.unit(2.8, "meters")
  7131. },
  7132. {
  7133. name: "Macro",
  7134. height: math.unit(450, "meters"),
  7135. default: true
  7136. },
  7137. {
  7138. name: "Megamacro",
  7139. height: math.unit(15, "kilometers")
  7140. }
  7141. ]
  7142. ))
  7143. characterMakers.push(() => makeCharacter(
  7144. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7145. {
  7146. front: {
  7147. height: math.unit(6, "feet"),
  7148. weight: math.unit(256, "lbs"),
  7149. name: "Front",
  7150. image: {
  7151. source: "./media/characters/dannik/front.svg"
  7152. }
  7153. }
  7154. },
  7155. [
  7156. {
  7157. name: "Macro",
  7158. height: math.unit(69.57, "meters"),
  7159. default: true
  7160. },
  7161. ]
  7162. ))
  7163. characterMakers.push(() => makeCharacter(
  7164. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7165. {
  7166. front: {
  7167. height: math.unit(6, "feet"),
  7168. weight: math.unit(120, "lbs"),
  7169. name: "Front",
  7170. image: {
  7171. source: "./media/characters/azura-saharah/front.svg"
  7172. }
  7173. },
  7174. back: {
  7175. height: math.unit(6, "feet"),
  7176. weight: math.unit(120, "lbs"),
  7177. name: "Back",
  7178. image: {
  7179. source: "./media/characters/azura-saharah/back.svg"
  7180. }
  7181. },
  7182. },
  7183. [
  7184. {
  7185. name: "Macro",
  7186. height: math.unit(100, "feet"),
  7187. default: true
  7188. },
  7189. ]
  7190. ))
  7191. characterMakers.push(() => makeCharacter(
  7192. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7193. {
  7194. side: {
  7195. height: math.unit(5 + 4 / 12, "feet"),
  7196. weight: math.unit(163, "lbs"),
  7197. name: "Side",
  7198. image: {
  7199. source: "./media/characters/kennedy/side.svg"
  7200. }
  7201. }
  7202. },
  7203. [
  7204. {
  7205. name: "Standard Doggo",
  7206. height: math.unit(5 + 4 / 12, "feet")
  7207. },
  7208. {
  7209. name: "Big Doggo",
  7210. height: math.unit(25 + 3 / 12, "feet"),
  7211. default: true
  7212. },
  7213. ]
  7214. ))
  7215. characterMakers.push(() => makeCharacter(
  7216. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7217. {
  7218. front: {
  7219. height: math.unit(5 + 5/12, "feet"),
  7220. weight: math.unit(100, "lbs"),
  7221. name: "Front",
  7222. image: {
  7223. source: "./media/characters/odios-de-lunar/front.svg",
  7224. extra: 1468/1323,
  7225. bottom: 22/1490
  7226. }
  7227. }
  7228. },
  7229. [
  7230. {
  7231. name: "Micro",
  7232. height: math.unit(3, "inches")
  7233. },
  7234. {
  7235. name: "Normal",
  7236. height: math.unit(5.5, "feet"),
  7237. default: true
  7238. },
  7239. {
  7240. name: "Macro",
  7241. height: math.unit(100, "feet")
  7242. },
  7243. ]
  7244. ))
  7245. characterMakers.push(() => makeCharacter(
  7246. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7247. {
  7248. back: {
  7249. height: math.unit(6, "feet"),
  7250. weight: math.unit(220, "lbs"),
  7251. name: "Back",
  7252. image: {
  7253. source: "./media/characters/mandake/back.svg"
  7254. }
  7255. }
  7256. },
  7257. [
  7258. {
  7259. name: "Normal",
  7260. height: math.unit(7, "feet"),
  7261. default: true
  7262. },
  7263. {
  7264. name: "Macro",
  7265. height: math.unit(78, "feet")
  7266. },
  7267. {
  7268. name: "Macro+",
  7269. height: math.unit(300, "meters")
  7270. },
  7271. {
  7272. name: "Macro++",
  7273. height: math.unit(2400, "feet")
  7274. },
  7275. {
  7276. name: "Megamacro",
  7277. height: math.unit(5167, "meters")
  7278. },
  7279. {
  7280. name: "Gigamacro",
  7281. height: math.unit(41769, "miles")
  7282. },
  7283. ]
  7284. ))
  7285. characterMakers.push(() => makeCharacter(
  7286. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7287. {
  7288. front: {
  7289. height: math.unit(6, "feet"),
  7290. weight: math.unit(120, "lbs"),
  7291. name: "Front",
  7292. image: {
  7293. source: "./media/characters/yozey/front.svg"
  7294. }
  7295. },
  7296. frontAlt: {
  7297. height: math.unit(6, "feet"),
  7298. weight: math.unit(120, "lbs"),
  7299. name: "Front (Alt)",
  7300. image: {
  7301. source: "./media/characters/yozey/front-alt.svg"
  7302. }
  7303. },
  7304. side: {
  7305. height: math.unit(6, "feet"),
  7306. weight: math.unit(120, "lbs"),
  7307. name: "Side",
  7308. image: {
  7309. source: "./media/characters/yozey/side.svg"
  7310. }
  7311. },
  7312. },
  7313. [
  7314. {
  7315. name: "Micro",
  7316. height: math.unit(3, "inches"),
  7317. default: true
  7318. },
  7319. {
  7320. name: "Normal",
  7321. height: math.unit(6, "feet")
  7322. }
  7323. ]
  7324. ))
  7325. characterMakers.push(() => makeCharacter(
  7326. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7327. {
  7328. front: {
  7329. height: math.unit(6, "feet"),
  7330. weight: math.unit(103, "lbs"),
  7331. name: "Front",
  7332. image: {
  7333. source: "./media/characters/valeska-voss/front.svg"
  7334. }
  7335. }
  7336. },
  7337. [
  7338. {
  7339. name: "Mini-Sized Sub",
  7340. height: math.unit(3.1, "inches")
  7341. },
  7342. {
  7343. name: "Mid-Sized Sub",
  7344. height: math.unit(6.2, "inches")
  7345. },
  7346. {
  7347. name: "Full-Sized Sub",
  7348. height: math.unit(9.3, "inches")
  7349. },
  7350. {
  7351. name: "Normal",
  7352. height: math.unit(5 + 2 / 12, "foot"),
  7353. default: true
  7354. },
  7355. ]
  7356. ))
  7357. characterMakers.push(() => makeCharacter(
  7358. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7359. {
  7360. front: {
  7361. height: math.unit(6, "feet"),
  7362. weight: math.unit(160, "lbs"),
  7363. name: "Front",
  7364. image: {
  7365. source: "./media/characters/gene-zeta/front.svg",
  7366. extra: 3006 / 2826,
  7367. bottom: 182 / 3188
  7368. }
  7369. }
  7370. },
  7371. [
  7372. {
  7373. name: "Micro",
  7374. height: math.unit(6, "inches")
  7375. },
  7376. {
  7377. name: "Normal",
  7378. height: math.unit(5 + 11 / 12, "foot"),
  7379. default: true
  7380. },
  7381. {
  7382. name: "Macro",
  7383. height: math.unit(140, "feet")
  7384. },
  7385. {
  7386. name: "Supercharged",
  7387. height: math.unit(2500, "feet")
  7388. },
  7389. ]
  7390. ))
  7391. characterMakers.push(() => makeCharacter(
  7392. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7393. {
  7394. front: {
  7395. height: math.unit(6, "feet"),
  7396. weight: math.unit(350, "lbs"),
  7397. name: "Front",
  7398. image: {
  7399. source: "./media/characters/razinox/front.svg",
  7400. extra: 1686 / 1548,
  7401. bottom: 28.2 / 1868
  7402. }
  7403. },
  7404. back: {
  7405. height: math.unit(6, "feet"),
  7406. weight: math.unit(350, "lbs"),
  7407. name: "Back",
  7408. image: {
  7409. source: "./media/characters/razinox/back.svg",
  7410. extra: 1660 / 1590,
  7411. bottom: 15 / 1665
  7412. }
  7413. },
  7414. },
  7415. [
  7416. {
  7417. name: "Normal",
  7418. height: math.unit(10 + 8 / 12, "foot")
  7419. },
  7420. {
  7421. name: "Minimacro",
  7422. height: math.unit(15, "foot")
  7423. },
  7424. {
  7425. name: "Macro",
  7426. height: math.unit(60, "foot"),
  7427. default: true
  7428. },
  7429. {
  7430. name: "Megamacro",
  7431. height: math.unit(5, "miles")
  7432. },
  7433. {
  7434. name: "Gigamacro",
  7435. height: math.unit(6000, "miles")
  7436. },
  7437. ]
  7438. ))
  7439. characterMakers.push(() => makeCharacter(
  7440. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7441. {
  7442. front: {
  7443. height: math.unit(6, "feet"),
  7444. weight: math.unit(150, "lbs"),
  7445. name: "Front",
  7446. image: {
  7447. source: "./media/characters/cobalt/front.svg"
  7448. }
  7449. }
  7450. },
  7451. [
  7452. {
  7453. name: "Normal",
  7454. height: math.unit(8 + 1 / 12, "foot")
  7455. },
  7456. {
  7457. name: "Macro",
  7458. height: math.unit(111, "foot"),
  7459. default: true
  7460. },
  7461. {
  7462. name: "Supracosmic",
  7463. height: math.unit(1e42, "feet")
  7464. },
  7465. ]
  7466. ))
  7467. characterMakers.push(() => makeCharacter(
  7468. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7469. {
  7470. front: {
  7471. height: math.unit(6, "feet"),
  7472. weight: math.unit(140, "lbs"),
  7473. name: "Front",
  7474. image: {
  7475. source: "./media/characters/amanda/front.svg"
  7476. }
  7477. }
  7478. },
  7479. [
  7480. {
  7481. name: "Micro",
  7482. height: math.unit(5, "inches"),
  7483. default: true
  7484. },
  7485. ]
  7486. ))
  7487. characterMakers.push(() => makeCharacter(
  7488. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7489. {
  7490. front: {
  7491. height: math.unit(2.75, "meters"),
  7492. weight: math.unit(1200, "lb"),
  7493. name: "Front",
  7494. image: {
  7495. source: "./media/characters/teal/front.svg",
  7496. extra: 2463 / 2320,
  7497. bottom: 166 / 2629
  7498. }
  7499. },
  7500. back: {
  7501. height: math.unit(2.75, "meters"),
  7502. weight: math.unit(1200, "lb"),
  7503. name: "Back",
  7504. image: {
  7505. source: "./media/characters/teal/back.svg",
  7506. extra: 2580 / 2489,
  7507. bottom: 151 / 2731
  7508. }
  7509. },
  7510. sitting: {
  7511. height: math.unit(1.9, "meters"),
  7512. weight: math.unit(1200, "lb"),
  7513. name: "Sitting",
  7514. image: {
  7515. source: "./media/characters/teal/sitting.svg",
  7516. extra: 623 / 590,
  7517. bottom: 121 / 744
  7518. }
  7519. },
  7520. standing: {
  7521. height: math.unit(2.75, "meters"),
  7522. weight: math.unit(1200, "lb"),
  7523. name: "Standing",
  7524. image: {
  7525. source: "./media/characters/teal/standing.svg",
  7526. extra: 923 / 893,
  7527. bottom: 60 / 983
  7528. }
  7529. },
  7530. stretching: {
  7531. height: math.unit(3.65, "meters"),
  7532. weight: math.unit(1200, "lb"),
  7533. name: "Stretching",
  7534. image: {
  7535. source: "./media/characters/teal/stretching.svg",
  7536. extra: 1276 / 1244,
  7537. bottom: 0 / 1276
  7538. }
  7539. },
  7540. legged: {
  7541. height: math.unit(1.3, "meters"),
  7542. weight: math.unit(100, "lb"),
  7543. name: "Legged",
  7544. image: {
  7545. source: "./media/characters/teal/legged.svg",
  7546. extra: 462 / 437,
  7547. bottom: 24 / 486
  7548. }
  7549. },
  7550. naga: {
  7551. height: math.unit(5.4, "meters"),
  7552. weight: math.unit(4000, "lb"),
  7553. name: "Naga",
  7554. image: {
  7555. source: "./media/characters/teal/naga.svg",
  7556. extra: 1902 / 1858,
  7557. bottom: 0 / 1902
  7558. }
  7559. },
  7560. hand: {
  7561. height: math.unit(0.52, "meters"),
  7562. name: "Hand",
  7563. image: {
  7564. source: "./media/characters/teal/hand.svg"
  7565. }
  7566. },
  7567. maw: {
  7568. height: math.unit(0.43, "meters"),
  7569. name: "Maw",
  7570. image: {
  7571. source: "./media/characters/teal/maw.svg"
  7572. }
  7573. },
  7574. slit: {
  7575. height: math.unit(0.25, "meters"),
  7576. name: "Slit",
  7577. image: {
  7578. source: "./media/characters/teal/slit.svg"
  7579. }
  7580. },
  7581. },
  7582. [
  7583. {
  7584. name: "Normal",
  7585. height: math.unit(2.75, "meters"),
  7586. default: true
  7587. },
  7588. {
  7589. name: "Macro",
  7590. height: math.unit(300, "feet")
  7591. },
  7592. {
  7593. name: "Macro+",
  7594. height: math.unit(2000, "feet")
  7595. },
  7596. ]
  7597. ))
  7598. characterMakers.push(() => makeCharacter(
  7599. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7600. {
  7601. frontCat: {
  7602. height: math.unit(6, "feet"),
  7603. weight: math.unit(180, "lbs"),
  7604. name: "Front (Cat)",
  7605. image: {
  7606. source: "./media/characters/ravin-amulet/front-cat.svg"
  7607. }
  7608. },
  7609. frontCatAlt: {
  7610. height: math.unit(6, "feet"),
  7611. weight: math.unit(180, "lbs"),
  7612. name: "Front (Alt, Cat)",
  7613. image: {
  7614. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7615. }
  7616. },
  7617. frontWerewolf: {
  7618. height: math.unit(6 * 1.2, "feet"),
  7619. weight: math.unit(225, "lbs"),
  7620. name: "Front (Werewolf)",
  7621. image: {
  7622. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7623. }
  7624. },
  7625. backWerewolf: {
  7626. height: math.unit(6 * 1.2, "feet"),
  7627. weight: math.unit(225, "lbs"),
  7628. name: "Back (Werewolf)",
  7629. image: {
  7630. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7631. }
  7632. },
  7633. },
  7634. [
  7635. {
  7636. name: "Nano",
  7637. height: math.unit(1, "micrometer")
  7638. },
  7639. {
  7640. name: "Micro",
  7641. height: math.unit(1, "inch")
  7642. },
  7643. {
  7644. name: "Normal",
  7645. height: math.unit(6, "feet"),
  7646. default: true
  7647. },
  7648. {
  7649. name: "Macro",
  7650. height: math.unit(60, "feet")
  7651. }
  7652. ]
  7653. ))
  7654. characterMakers.push(() => makeCharacter(
  7655. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7656. {
  7657. front: {
  7658. height: math.unit(6, "feet"),
  7659. weight: math.unit(165, "lbs"),
  7660. name: "Front",
  7661. image: {
  7662. source: "./media/characters/fluoresce/front.svg"
  7663. }
  7664. }
  7665. },
  7666. [
  7667. {
  7668. name: "Micro",
  7669. height: math.unit(6, "cm")
  7670. },
  7671. {
  7672. name: "Normal",
  7673. height: math.unit(5 + 7 / 12, "feet"),
  7674. default: true
  7675. },
  7676. {
  7677. name: "Macro",
  7678. height: math.unit(56, "feet")
  7679. },
  7680. {
  7681. name: "Megamacro",
  7682. height: math.unit(1.9, "miles")
  7683. },
  7684. ]
  7685. ))
  7686. characterMakers.push(() => makeCharacter(
  7687. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7688. {
  7689. front: {
  7690. height: math.unit(9 + 6 / 12, "feet"),
  7691. weight: math.unit(523, "lbs"),
  7692. name: "Side",
  7693. image: {
  7694. source: "./media/characters/aurora/side.svg"
  7695. }
  7696. }
  7697. },
  7698. [
  7699. {
  7700. name: "Normal",
  7701. height: math.unit(9 + 6 / 12, "feet")
  7702. },
  7703. {
  7704. name: "Macro",
  7705. height: math.unit(96, "feet"),
  7706. default: true
  7707. },
  7708. {
  7709. name: "Macro+",
  7710. height: math.unit(243, "feet")
  7711. },
  7712. ]
  7713. ))
  7714. characterMakers.push(() => makeCharacter(
  7715. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7716. {
  7717. front: {
  7718. height: math.unit(194, "cm"),
  7719. weight: math.unit(90, "kg"),
  7720. name: "Front",
  7721. image: {
  7722. source: "./media/characters/ranek/front.svg"
  7723. }
  7724. },
  7725. side: {
  7726. height: math.unit(194, "cm"),
  7727. weight: math.unit(90, "kg"),
  7728. name: "Side",
  7729. image: {
  7730. source: "./media/characters/ranek/side.svg"
  7731. }
  7732. },
  7733. back: {
  7734. height: math.unit(194, "cm"),
  7735. weight: math.unit(90, "kg"),
  7736. name: "Back",
  7737. image: {
  7738. source: "./media/characters/ranek/back.svg"
  7739. }
  7740. },
  7741. feral: {
  7742. height: math.unit(30, "cm"),
  7743. weight: math.unit(1.6, "lbs"),
  7744. name: "Feral",
  7745. image: {
  7746. source: "./media/characters/ranek/feral.svg"
  7747. }
  7748. },
  7749. },
  7750. [
  7751. {
  7752. name: "Normal",
  7753. height: math.unit(194, "cm"),
  7754. default: true
  7755. },
  7756. {
  7757. name: "Macro",
  7758. height: math.unit(100, "meters")
  7759. },
  7760. ]
  7761. ))
  7762. characterMakers.push(() => makeCharacter(
  7763. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7764. {
  7765. front: {
  7766. height: math.unit(5 + 6 / 12, "feet"),
  7767. weight: math.unit(153, "lbs"),
  7768. name: "Front",
  7769. image: {
  7770. source: "./media/characters/andrew-cooper/front.svg"
  7771. }
  7772. },
  7773. },
  7774. [
  7775. {
  7776. name: "Nano",
  7777. height: math.unit(1, "mm")
  7778. },
  7779. {
  7780. name: "Micro",
  7781. height: math.unit(2, "inches")
  7782. },
  7783. {
  7784. name: "Normal",
  7785. height: math.unit(5 + 6 / 12, "feet"),
  7786. default: true
  7787. }
  7788. ]
  7789. ))
  7790. characterMakers.push(() => makeCharacter(
  7791. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7792. {
  7793. front: {
  7794. height: math.unit(6, "feet"),
  7795. weight: math.unit(180, "lbs"),
  7796. name: "Front",
  7797. image: {
  7798. source: "./media/characters/akane-sato/front.svg",
  7799. extra: 1219 / 1140
  7800. }
  7801. },
  7802. back: {
  7803. height: math.unit(6, "feet"),
  7804. weight: math.unit(180, "lbs"),
  7805. name: "Back",
  7806. image: {
  7807. source: "./media/characters/akane-sato/back.svg",
  7808. extra: 1219 / 1170
  7809. }
  7810. },
  7811. },
  7812. [
  7813. {
  7814. name: "Normal",
  7815. height: math.unit(2.5, "meters")
  7816. },
  7817. {
  7818. name: "Macro",
  7819. height: math.unit(250, "meters"),
  7820. default: true
  7821. },
  7822. {
  7823. name: "Megamacro",
  7824. height: math.unit(25, "km")
  7825. },
  7826. ]
  7827. ))
  7828. characterMakers.push(() => makeCharacter(
  7829. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7830. {
  7831. front: {
  7832. height: math.unit(6, "feet"),
  7833. weight: math.unit(65, "kg"),
  7834. name: "Front",
  7835. image: {
  7836. source: "./media/characters/rook/front.svg",
  7837. extra: 960 / 950
  7838. }
  7839. }
  7840. },
  7841. [
  7842. {
  7843. name: "Normal",
  7844. height: math.unit(8.8, "feet")
  7845. },
  7846. {
  7847. name: "Macro",
  7848. height: math.unit(88, "feet"),
  7849. default: true
  7850. },
  7851. {
  7852. name: "Megamacro",
  7853. height: math.unit(8, "miles")
  7854. },
  7855. ]
  7856. ))
  7857. characterMakers.push(() => makeCharacter(
  7858. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7859. {
  7860. front: {
  7861. height: math.unit(12 + 2 / 12, "feet"),
  7862. weight: math.unit(808, "lbs"),
  7863. name: "Front",
  7864. image: {
  7865. source: "./media/characters/prodigy/front.svg"
  7866. }
  7867. }
  7868. },
  7869. [
  7870. {
  7871. name: "Normal",
  7872. height: math.unit(12 + 2 / 12, "feet"),
  7873. default: true
  7874. },
  7875. {
  7876. name: "Macro",
  7877. height: math.unit(143, "feet")
  7878. },
  7879. {
  7880. name: "Macro+",
  7881. height: math.unit(400, "feet")
  7882. },
  7883. ]
  7884. ))
  7885. characterMakers.push(() => makeCharacter(
  7886. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7887. {
  7888. front: {
  7889. height: math.unit(6, "feet"),
  7890. weight: math.unit(225, "lbs"),
  7891. name: "Front",
  7892. image: {
  7893. source: "./media/characters/daniel/front.svg"
  7894. }
  7895. },
  7896. leaning: {
  7897. height: math.unit(6, "feet"),
  7898. weight: math.unit(225, "lbs"),
  7899. name: "Leaning",
  7900. image: {
  7901. source: "./media/characters/daniel/leaning.svg"
  7902. }
  7903. },
  7904. },
  7905. [
  7906. {
  7907. name: "Macro",
  7908. height: math.unit(1000, "feet"),
  7909. default: true
  7910. },
  7911. ]
  7912. ))
  7913. characterMakers.push(() => makeCharacter(
  7914. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7915. {
  7916. front: {
  7917. height: math.unit(6, "feet"),
  7918. weight: math.unit(88, "lbs"),
  7919. name: "Front",
  7920. image: {
  7921. source: "./media/characters/chiros/front.svg",
  7922. extra: 306 / 226
  7923. }
  7924. },
  7925. side: {
  7926. height: math.unit(6, "feet"),
  7927. weight: math.unit(88, "lbs"),
  7928. name: "Side",
  7929. image: {
  7930. source: "./media/characters/chiros/side.svg",
  7931. extra: 306 / 226
  7932. }
  7933. },
  7934. },
  7935. [
  7936. {
  7937. name: "Normal",
  7938. height: math.unit(6, "cm"),
  7939. default: true
  7940. },
  7941. ]
  7942. ))
  7943. characterMakers.push(() => makeCharacter(
  7944. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7945. {
  7946. front: {
  7947. height: math.unit(6, "feet"),
  7948. weight: math.unit(100, "lbs"),
  7949. name: "Front",
  7950. image: {
  7951. source: "./media/characters/selka/front.svg",
  7952. extra: 947 / 887
  7953. }
  7954. }
  7955. },
  7956. [
  7957. {
  7958. name: "Normal",
  7959. height: math.unit(5, "cm"),
  7960. default: true
  7961. },
  7962. ]
  7963. ))
  7964. characterMakers.push(() => makeCharacter(
  7965. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7966. {
  7967. front: {
  7968. height: math.unit(8 + 3 / 12, "feet"),
  7969. weight: math.unit(424, "lbs"),
  7970. name: "Front",
  7971. image: {
  7972. source: "./media/characters/verin/front.svg",
  7973. extra: 1845 / 1550
  7974. }
  7975. },
  7976. frontArmored: {
  7977. height: math.unit(8 + 3 / 12, "feet"),
  7978. weight: math.unit(424, "lbs"),
  7979. name: "Front (Armored)",
  7980. image: {
  7981. source: "./media/characters/verin/front-armor.svg",
  7982. extra: 1845 / 1550,
  7983. bottom: 0.01
  7984. }
  7985. },
  7986. back: {
  7987. height: math.unit(8 + 3 / 12, "feet"),
  7988. weight: math.unit(424, "lbs"),
  7989. name: "Back",
  7990. image: {
  7991. source: "./media/characters/verin/back.svg",
  7992. bottom: 0.1,
  7993. extra: 1
  7994. }
  7995. },
  7996. foot: {
  7997. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7998. name: "Foot",
  7999. image: {
  8000. source: "./media/characters/verin/foot.svg"
  8001. }
  8002. },
  8003. },
  8004. [
  8005. {
  8006. name: "Normal",
  8007. height: math.unit(8 + 3 / 12, "feet")
  8008. },
  8009. {
  8010. name: "Minimacro",
  8011. height: math.unit(21, "feet"),
  8012. default: true
  8013. },
  8014. {
  8015. name: "Macro",
  8016. height: math.unit(626, "feet")
  8017. },
  8018. ]
  8019. ))
  8020. characterMakers.push(() => makeCharacter(
  8021. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8022. {
  8023. front: {
  8024. height: math.unit(2.718, "meters"),
  8025. weight: math.unit(150, "lbs"),
  8026. name: "Front",
  8027. image: {
  8028. source: "./media/characters/sovrim-terraquian/front.svg",
  8029. extra: 1752/1689,
  8030. bottom: 36/1788
  8031. }
  8032. },
  8033. back: {
  8034. height: math.unit(2.718, "meters"),
  8035. weight: math.unit(150, "lbs"),
  8036. name: "Back",
  8037. image: {
  8038. source: "./media/characters/sovrim-terraquian/back.svg",
  8039. extra: 1698/1657,
  8040. bottom: 58/1756
  8041. }
  8042. },
  8043. tongue: {
  8044. height: math.unit(2.865, "feet"),
  8045. name: "Tongue",
  8046. image: {
  8047. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8048. }
  8049. },
  8050. hand: {
  8051. height: math.unit(1.61, "feet"),
  8052. name: "Hand",
  8053. image: {
  8054. source: "./media/characters/sovrim-terraquian/hand.svg"
  8055. }
  8056. },
  8057. foot: {
  8058. height: math.unit(1.05, "feet"),
  8059. name: "Foot",
  8060. image: {
  8061. source: "./media/characters/sovrim-terraquian/foot.svg"
  8062. }
  8063. },
  8064. footAlt: {
  8065. height: math.unit(0.88, "feet"),
  8066. name: "Foot (Alt)",
  8067. image: {
  8068. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8069. }
  8070. },
  8071. },
  8072. [
  8073. {
  8074. name: "Micro",
  8075. height: math.unit(2, "inches")
  8076. },
  8077. {
  8078. name: "Small",
  8079. height: math.unit(1, "meter")
  8080. },
  8081. {
  8082. name: "Normal",
  8083. height: math.unit(Math.E, "meters"),
  8084. default: true
  8085. },
  8086. {
  8087. name: "Macro",
  8088. height: math.unit(20, "meters")
  8089. },
  8090. {
  8091. name: "Macro+",
  8092. height: math.unit(400, "meters")
  8093. },
  8094. ]
  8095. ))
  8096. characterMakers.push(() => makeCharacter(
  8097. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8098. {
  8099. front: {
  8100. height: math.unit(7, "feet"),
  8101. weight: math.unit(489, "lbs"),
  8102. name: "Front",
  8103. image: {
  8104. source: "./media/characters/reece-silvermane/front.svg",
  8105. bottom: 0.02,
  8106. extra: 1
  8107. }
  8108. },
  8109. },
  8110. [
  8111. {
  8112. name: "Macro",
  8113. height: math.unit(1.5, "miles"),
  8114. default: true
  8115. },
  8116. ]
  8117. ))
  8118. characterMakers.push(() => makeCharacter(
  8119. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8120. {
  8121. front: {
  8122. height: math.unit(6, "feet"),
  8123. weight: math.unit(78, "kg"),
  8124. name: "Front",
  8125. image: {
  8126. source: "./media/characters/kane/front.svg",
  8127. extra: 978 / 899
  8128. }
  8129. },
  8130. },
  8131. [
  8132. {
  8133. name: "Normal",
  8134. height: math.unit(2.1, "m"),
  8135. },
  8136. {
  8137. name: "Macro",
  8138. height: math.unit(1, "km"),
  8139. default: true
  8140. },
  8141. ]
  8142. ))
  8143. characterMakers.push(() => makeCharacter(
  8144. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8145. {
  8146. front: {
  8147. height: math.unit(6, "feet"),
  8148. weight: math.unit(200, "kg"),
  8149. name: "Front",
  8150. image: {
  8151. source: "./media/characters/tegon/front.svg",
  8152. bottom: 0.01,
  8153. extra: 1
  8154. }
  8155. },
  8156. },
  8157. [
  8158. {
  8159. name: "Micro",
  8160. height: math.unit(1, "inch")
  8161. },
  8162. {
  8163. name: "Normal",
  8164. height: math.unit(6 + 3 / 12, "feet"),
  8165. default: true
  8166. },
  8167. {
  8168. name: "Macro",
  8169. height: math.unit(300, "feet")
  8170. },
  8171. {
  8172. name: "Megamacro",
  8173. height: math.unit(69, "miles")
  8174. },
  8175. ]
  8176. ))
  8177. characterMakers.push(() => makeCharacter(
  8178. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8179. {
  8180. side: {
  8181. height: math.unit(6, "feet"),
  8182. weight: math.unit(2304, "lbs"),
  8183. name: "Side",
  8184. image: {
  8185. source: "./media/characters/arcturax/side.svg",
  8186. extra: 790 / 376,
  8187. bottom: 0.01
  8188. }
  8189. },
  8190. },
  8191. [
  8192. {
  8193. name: "Micro",
  8194. height: math.unit(2, "inch")
  8195. },
  8196. {
  8197. name: "Normal",
  8198. height: math.unit(6, "feet")
  8199. },
  8200. {
  8201. name: "Macro",
  8202. height: math.unit(39, "feet"),
  8203. default: true
  8204. },
  8205. {
  8206. name: "Megamacro",
  8207. height: math.unit(7, "miles")
  8208. },
  8209. ]
  8210. ))
  8211. characterMakers.push(() => makeCharacter(
  8212. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8213. {
  8214. front: {
  8215. height: math.unit(6, "feet"),
  8216. weight: math.unit(50, "lbs"),
  8217. name: "Front",
  8218. image: {
  8219. source: "./media/characters/sentri/front.svg",
  8220. extra: 1750 / 1570,
  8221. bottom: 0.025
  8222. }
  8223. },
  8224. frontAlt: {
  8225. height: math.unit(6, "feet"),
  8226. weight: math.unit(50, "lbs"),
  8227. name: "Front (Alt)",
  8228. image: {
  8229. source: "./media/characters/sentri/front-alt.svg",
  8230. extra: 1750 / 1570,
  8231. bottom: 0.025
  8232. }
  8233. },
  8234. },
  8235. [
  8236. {
  8237. name: "Normal",
  8238. height: math.unit(15, "feet"),
  8239. default: true
  8240. },
  8241. {
  8242. name: "Macro",
  8243. height: math.unit(2500, "feet")
  8244. }
  8245. ]
  8246. ))
  8247. characterMakers.push(() => makeCharacter(
  8248. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8249. {
  8250. front: {
  8251. height: math.unit(5 + 8 / 12, "feet"),
  8252. weight: math.unit(130, "lbs"),
  8253. name: "Front",
  8254. image: {
  8255. source: "./media/characters/corvin/front.svg",
  8256. extra: 1803 / 1629
  8257. }
  8258. },
  8259. frontShirt: {
  8260. height: math.unit(5 + 8 / 12, "feet"),
  8261. weight: math.unit(130, "lbs"),
  8262. name: "Front (Shirt)",
  8263. image: {
  8264. source: "./media/characters/corvin/front-shirt.svg",
  8265. extra: 1803 / 1629
  8266. }
  8267. },
  8268. frontPoncho: {
  8269. height: math.unit(5 + 8 / 12, "feet"),
  8270. weight: math.unit(130, "lbs"),
  8271. name: "Front (Poncho)",
  8272. image: {
  8273. source: "./media/characters/corvin/front-poncho.svg",
  8274. extra: 1803 / 1629
  8275. }
  8276. },
  8277. side: {
  8278. height: math.unit(5 + 8 / 12, "feet"),
  8279. weight: math.unit(130, "lbs"),
  8280. name: "Side",
  8281. image: {
  8282. source: "./media/characters/corvin/side.svg",
  8283. extra: 1012 / 945
  8284. }
  8285. },
  8286. back: {
  8287. height: math.unit(5 + 8 / 12, "feet"),
  8288. weight: math.unit(130, "lbs"),
  8289. name: "Back",
  8290. image: {
  8291. source: "./media/characters/corvin/back.svg",
  8292. extra: 1803 / 1629
  8293. }
  8294. },
  8295. },
  8296. [
  8297. {
  8298. name: "Micro",
  8299. height: math.unit(3, "inches")
  8300. },
  8301. {
  8302. name: "Normal",
  8303. height: math.unit(5 + 8 / 12, "feet")
  8304. },
  8305. {
  8306. name: "Macro",
  8307. height: math.unit(300, "feet"),
  8308. default: true
  8309. },
  8310. {
  8311. name: "Megamacro",
  8312. height: math.unit(500, "miles")
  8313. }
  8314. ]
  8315. ))
  8316. characterMakers.push(() => makeCharacter(
  8317. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8318. {
  8319. front: {
  8320. height: math.unit(6, "feet"),
  8321. weight: math.unit(135, "lbs"),
  8322. name: "Front",
  8323. image: {
  8324. source: "./media/characters/q/front.svg",
  8325. extra: 854 / 752,
  8326. bottom: 0.005
  8327. }
  8328. },
  8329. back: {
  8330. height: math.unit(6, "feet"),
  8331. weight: math.unit(130, "lbs"),
  8332. name: "Back",
  8333. image: {
  8334. source: "./media/characters/q/back.svg",
  8335. extra: 854 / 752
  8336. }
  8337. },
  8338. },
  8339. [
  8340. {
  8341. name: "Macro",
  8342. height: math.unit(90, "feet"),
  8343. default: true
  8344. },
  8345. {
  8346. name: "Extra Macro",
  8347. height: math.unit(300, "feet"),
  8348. },
  8349. {
  8350. name: "BIG WALF",
  8351. height: math.unit(750, "feet"),
  8352. },
  8353. ]
  8354. ))
  8355. characterMakers.push(() => makeCharacter(
  8356. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8357. {
  8358. front: {
  8359. height: math.unit(6, "feet"),
  8360. weight: math.unit(150, "lbs"),
  8361. name: "Front",
  8362. image: {
  8363. source: "./media/characters/carley/front.svg",
  8364. extra: 3927 / 3540,
  8365. bottom: 29.2 / 735
  8366. }
  8367. }
  8368. },
  8369. [
  8370. {
  8371. name: "Normal",
  8372. height: math.unit(6 + 3 / 12, "feet")
  8373. },
  8374. {
  8375. name: "Macro",
  8376. height: math.unit(185, "feet"),
  8377. default: true
  8378. },
  8379. {
  8380. name: "Megamacro",
  8381. height: math.unit(8, "miles"),
  8382. },
  8383. ]
  8384. ))
  8385. characterMakers.push(() => makeCharacter(
  8386. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8387. {
  8388. front: {
  8389. height: math.unit(3, "feet"),
  8390. weight: math.unit(28, "lbs"),
  8391. name: "Front",
  8392. image: {
  8393. source: "./media/characters/citrine/front.svg"
  8394. }
  8395. }
  8396. },
  8397. [
  8398. {
  8399. name: "Normal",
  8400. height: math.unit(3, "feet"),
  8401. default: true
  8402. }
  8403. ]
  8404. ))
  8405. characterMakers.push(() => makeCharacter(
  8406. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8407. {
  8408. front: {
  8409. height: math.unit(14, "feet"),
  8410. weight: math.unit(1450, "kg"),
  8411. capacity: math.unit(15, "people"),
  8412. name: "Front",
  8413. image: {
  8414. source: "./media/characters/aura-starwind/front.svg",
  8415. extra: 1440/1327,
  8416. bottom: 11/1451
  8417. }
  8418. },
  8419. side: {
  8420. height: math.unit(14, "feet"),
  8421. weight: math.unit(1450, "kg"),
  8422. capacity: math.unit(15, "people"),
  8423. name: "Side",
  8424. image: {
  8425. source: "./media/characters/aura-starwind/side.svg",
  8426. extra: 1654 / 1497
  8427. }
  8428. },
  8429. taur: {
  8430. height: math.unit(18, "feet"),
  8431. weight: math.unit(5500, "kg"),
  8432. capacity: math.unit(50, "people"),
  8433. name: "Taur",
  8434. image: {
  8435. source: "./media/characters/aura-starwind/taur.svg",
  8436. extra: 1760 / 1650
  8437. }
  8438. },
  8439. feral: {
  8440. height: math.unit(46, "feet"),
  8441. weight: math.unit(25000, "kg"),
  8442. capacity: math.unit(120, "people"),
  8443. name: "Feral",
  8444. image: {
  8445. source: "./media/characters/aura-starwind/feral.svg"
  8446. }
  8447. },
  8448. },
  8449. [
  8450. {
  8451. name: "Normal",
  8452. height: math.unit(14, "feet"),
  8453. default: true
  8454. },
  8455. {
  8456. name: "Macro",
  8457. height: math.unit(50, "meters")
  8458. },
  8459. {
  8460. name: "Megamacro",
  8461. height: math.unit(5000, "meters")
  8462. },
  8463. {
  8464. name: "Gigamacro",
  8465. height: math.unit(100000, "kilometers")
  8466. },
  8467. ]
  8468. ))
  8469. characterMakers.push(() => makeCharacter(
  8470. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8471. {
  8472. front: {
  8473. height: math.unit(2 + 7 / 12, "feet"),
  8474. weight: math.unit(32, "lbs"),
  8475. name: "Front",
  8476. image: {
  8477. source: "./media/characters/rivet/front.svg",
  8478. extra: 1716 / 1658,
  8479. bottom: 0.03
  8480. }
  8481. },
  8482. foot: {
  8483. height: math.unit(0.551, "feet"),
  8484. name: "Rivet's Foot",
  8485. image: {
  8486. source: "./media/characters/rivet/foot.svg"
  8487. },
  8488. rename: true
  8489. }
  8490. },
  8491. [
  8492. {
  8493. name: "Micro",
  8494. height: math.unit(1.5, "inches"),
  8495. },
  8496. {
  8497. name: "Normal",
  8498. height: math.unit(2 + 7 / 12, "feet"),
  8499. default: true
  8500. },
  8501. {
  8502. name: "Macro",
  8503. height: math.unit(85, "feet")
  8504. },
  8505. {
  8506. name: "Megamacro",
  8507. height: math.unit(2.2, "km")
  8508. }
  8509. ]
  8510. ))
  8511. characterMakers.push(() => makeCharacter(
  8512. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8513. {
  8514. front: {
  8515. height: math.unit(5 + 9 / 12, "feet"),
  8516. weight: math.unit(150, "lbs"),
  8517. name: "Front",
  8518. image: {
  8519. source: "./media/characters/coffee/front.svg",
  8520. extra: 3666 / 3032,
  8521. bottom: 0.04
  8522. }
  8523. },
  8524. foot: {
  8525. height: math.unit(1.29, "feet"),
  8526. name: "Foot",
  8527. image: {
  8528. source: "./media/characters/coffee/foot.svg"
  8529. }
  8530. },
  8531. },
  8532. [
  8533. {
  8534. name: "Micro",
  8535. height: math.unit(2, "inches"),
  8536. },
  8537. {
  8538. name: "Normal",
  8539. height: math.unit(5 + 9 / 12, "feet"),
  8540. default: true
  8541. },
  8542. {
  8543. name: "Macro",
  8544. height: math.unit(800, "feet")
  8545. },
  8546. {
  8547. name: "Megamacro",
  8548. height: math.unit(25, "miles")
  8549. }
  8550. ]
  8551. ))
  8552. characterMakers.push(() => makeCharacter(
  8553. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8554. {
  8555. front: {
  8556. height: math.unit(6, "feet"),
  8557. weight: math.unit(200, "lbs"),
  8558. name: "Front",
  8559. image: {
  8560. source: "./media/characters/chari-gal/front.svg",
  8561. extra: 1568 / 1385,
  8562. bottom: 0.047
  8563. }
  8564. },
  8565. gigantamax: {
  8566. height: math.unit(6 * 16, "feet"),
  8567. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8568. name: "Gigantamax",
  8569. image: {
  8570. source: "./media/characters/chari-gal/gigantamax.svg",
  8571. extra: 1124 / 888,
  8572. bottom: 0.03
  8573. }
  8574. },
  8575. },
  8576. [
  8577. {
  8578. name: "Normal",
  8579. height: math.unit(5 + 7 / 12, "feet")
  8580. },
  8581. {
  8582. name: "Macro",
  8583. height: math.unit(200, "feet"),
  8584. default: true
  8585. }
  8586. ]
  8587. ))
  8588. characterMakers.push(() => makeCharacter(
  8589. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8590. {
  8591. front: {
  8592. height: math.unit(6, "feet"),
  8593. weight: math.unit(150, "lbs"),
  8594. name: "Front",
  8595. image: {
  8596. source: "./media/characters/nova/front.svg",
  8597. extra: 5000 / 4722,
  8598. bottom: 0.02
  8599. }
  8600. }
  8601. },
  8602. [
  8603. {
  8604. name: "Micro-",
  8605. height: math.unit(0.8, "inches")
  8606. },
  8607. {
  8608. name: "Micro",
  8609. height: math.unit(2, "inches"),
  8610. default: true
  8611. },
  8612. ]
  8613. ))
  8614. characterMakers.push(() => makeCharacter(
  8615. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8616. {
  8617. front: {
  8618. height: math.unit(3 + 1 / 12, "feet"),
  8619. weight: math.unit(21.7, "lbs"),
  8620. name: "Front",
  8621. image: {
  8622. source: "./media/characters/argent/front.svg",
  8623. extra: 1471 / 1331,
  8624. bottom: 100.8 / 1575.5
  8625. }
  8626. }
  8627. },
  8628. [
  8629. {
  8630. name: "Micro",
  8631. height: math.unit(2, "inches")
  8632. },
  8633. {
  8634. name: "Normal",
  8635. height: math.unit(3 + 1 / 12, "feet"),
  8636. default: true
  8637. },
  8638. {
  8639. name: "Macro",
  8640. height: math.unit(120, "feet")
  8641. },
  8642. ]
  8643. ))
  8644. characterMakers.push(() => makeCharacter(
  8645. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8646. {
  8647. lamp: {
  8648. height: math.unit(7 * 1559 / 989, "feet"),
  8649. name: "Magic Lamp",
  8650. image: {
  8651. source: "./media/characters/mira-al-cul/lamp.svg",
  8652. extra: 1617 / 1559
  8653. }
  8654. },
  8655. front: {
  8656. height: math.unit(7, "feet"),
  8657. name: "Front",
  8658. image: {
  8659. source: "./media/characters/mira-al-cul/front.svg",
  8660. extra: 1044 / 990
  8661. }
  8662. },
  8663. },
  8664. [
  8665. {
  8666. name: "Heavily Restricted",
  8667. height: math.unit(7 * 1559 / 989, "feet")
  8668. },
  8669. {
  8670. name: "Freshly Freed",
  8671. height: math.unit(50 * 1559 / 989, "feet")
  8672. },
  8673. {
  8674. name: "World Encompassing",
  8675. height: math.unit(10000 * 1559 / 989, "miles")
  8676. },
  8677. {
  8678. name: "Galactic",
  8679. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8680. },
  8681. {
  8682. name: "Palmed Universe",
  8683. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8684. default: true
  8685. },
  8686. {
  8687. name: "Multiversal Matriarch",
  8688. height: math.unit(8.87e10, "yottameters")
  8689. },
  8690. {
  8691. name: "Void Mother",
  8692. height: math.unit(3.14e110, "yottaparsecs")
  8693. },
  8694. {
  8695. name: "Toying with Transcendence",
  8696. height: math.unit(1e307, "meters")
  8697. },
  8698. ]
  8699. ))
  8700. characterMakers.push(() => makeCharacter(
  8701. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8702. {
  8703. front: {
  8704. height: math.unit(17 + 1 / 12, "feet"),
  8705. weight: math.unit(476.2 * 5, "lbs"),
  8706. name: "Front",
  8707. image: {
  8708. source: "./media/characters/kuro-shi-uchū/front.svg",
  8709. extra: 2329 / 1835,
  8710. bottom: 0.02
  8711. }
  8712. },
  8713. },
  8714. [
  8715. {
  8716. name: "Micro",
  8717. height: math.unit(2, "inches")
  8718. },
  8719. {
  8720. name: "Normal",
  8721. height: math.unit(12, "meters")
  8722. },
  8723. {
  8724. name: "Planetary",
  8725. height: math.unit(0.00929, "AU"),
  8726. default: true
  8727. },
  8728. {
  8729. name: "Universal",
  8730. height: math.unit(20, "gigaparsecs")
  8731. },
  8732. ]
  8733. ))
  8734. characterMakers.push(() => makeCharacter(
  8735. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8736. {
  8737. front: {
  8738. height: math.unit(5 + 2 / 12, "feet"),
  8739. weight: math.unit(120, "lbs"),
  8740. name: "Front",
  8741. image: {
  8742. source: "./media/characters/katherine/front.svg",
  8743. extra: 2075 / 1969
  8744. }
  8745. },
  8746. dress: {
  8747. height: math.unit(5 + 2 / 12, "feet"),
  8748. weight: math.unit(120, "lbs"),
  8749. name: "Dress",
  8750. image: {
  8751. source: "./media/characters/katherine/dress.svg",
  8752. extra: 2258 / 2064
  8753. }
  8754. },
  8755. },
  8756. [
  8757. {
  8758. name: "Micro",
  8759. height: math.unit(1, "inches"),
  8760. default: true
  8761. },
  8762. {
  8763. name: "Normal",
  8764. height: math.unit(5 + 2 / 12, "feet")
  8765. },
  8766. {
  8767. name: "Macro",
  8768. height: math.unit(100, "meters")
  8769. },
  8770. {
  8771. name: "Megamacro",
  8772. height: math.unit(80, "miles")
  8773. },
  8774. ]
  8775. ))
  8776. characterMakers.push(() => makeCharacter(
  8777. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8778. {
  8779. front: {
  8780. height: math.unit(7 + 8 / 12, "feet"),
  8781. weight: math.unit(250, "lbs"),
  8782. name: "Front",
  8783. image: {
  8784. source: "./media/characters/yevis/front.svg",
  8785. extra: 1938 / 1755
  8786. }
  8787. }
  8788. },
  8789. [
  8790. {
  8791. name: "Mortal",
  8792. height: math.unit(7 + 8 / 12, "feet")
  8793. },
  8794. {
  8795. name: "Battle",
  8796. height: math.unit(25 + 11 / 12, "feet")
  8797. },
  8798. {
  8799. name: "Wrath",
  8800. height: math.unit(1654 + 11 / 12, "feet")
  8801. },
  8802. {
  8803. name: "Planet Destroyer",
  8804. height: math.unit(12000, "miles")
  8805. },
  8806. {
  8807. name: "Galaxy Conqueror",
  8808. height: math.unit(1.45, "zettameters"),
  8809. default: true
  8810. },
  8811. {
  8812. name: "Universal War",
  8813. height: math.unit(184, "gigaparsecs")
  8814. },
  8815. {
  8816. name: "Eternity War",
  8817. height: math.unit(1.98e55, "yottaparsecs")
  8818. },
  8819. ]
  8820. ))
  8821. characterMakers.push(() => makeCharacter(
  8822. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8823. {
  8824. front: {
  8825. height: math.unit(5 + 8 / 12, "feet"),
  8826. weight: math.unit(63, "kg"),
  8827. name: "Front",
  8828. image: {
  8829. source: "./media/characters/xavier/front.svg",
  8830. extra: 944 / 883
  8831. }
  8832. },
  8833. frontStretch: {
  8834. height: math.unit(5 + 8 / 12, "feet"),
  8835. weight: math.unit(63, "kg"),
  8836. name: "Stretching",
  8837. image: {
  8838. source: "./media/characters/xavier/front-stretch.svg",
  8839. extra: 962 / 820
  8840. }
  8841. },
  8842. },
  8843. [
  8844. {
  8845. name: "Normal",
  8846. height: math.unit(5 + 8 / 12, "feet")
  8847. },
  8848. {
  8849. name: "Macro",
  8850. height: math.unit(100, "meters"),
  8851. default: true
  8852. },
  8853. {
  8854. name: "McLargeHuge",
  8855. height: math.unit(10, "miles")
  8856. },
  8857. ]
  8858. ))
  8859. characterMakers.push(() => makeCharacter(
  8860. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8861. {
  8862. front: {
  8863. height: math.unit(5 + 5 / 12, "feet"),
  8864. weight: math.unit(150, "lb"),
  8865. name: "Front",
  8866. image: {
  8867. source: "./media/characters/joshii/front.svg",
  8868. extra: 765 / 653,
  8869. bottom: 51 / 816
  8870. }
  8871. },
  8872. foot: {
  8873. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8874. name: "Foot",
  8875. image: {
  8876. source: "./media/characters/joshii/foot.svg"
  8877. }
  8878. },
  8879. },
  8880. [
  8881. {
  8882. name: "Micro",
  8883. height: math.unit(2, "inches"),
  8884. default: true
  8885. },
  8886. {
  8887. name: "Normal",
  8888. height: math.unit(5 + 5 / 12, "feet")
  8889. },
  8890. {
  8891. name: "Macro",
  8892. height: math.unit(785, "feet")
  8893. },
  8894. {
  8895. name: "Megamacro",
  8896. height: math.unit(24.5, "miles")
  8897. },
  8898. ]
  8899. ))
  8900. characterMakers.push(() => makeCharacter(
  8901. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8902. {
  8903. front: {
  8904. height: math.unit(6, "feet"),
  8905. weight: math.unit(150, "lb"),
  8906. name: "Front",
  8907. image: {
  8908. source: "./media/characters/goddess-elizabeth/front.svg",
  8909. extra: 1800 / 1525,
  8910. bottom: 0.005
  8911. }
  8912. },
  8913. foot: {
  8914. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8915. name: "Foot",
  8916. image: {
  8917. source: "./media/characters/goddess-elizabeth/foot.svg"
  8918. }
  8919. },
  8920. mouth: {
  8921. height: math.unit(6, "feet"),
  8922. name: "Mouth",
  8923. image: {
  8924. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8925. }
  8926. },
  8927. },
  8928. [
  8929. {
  8930. name: "Micro",
  8931. height: math.unit(12, "feet")
  8932. },
  8933. {
  8934. name: "Normal",
  8935. height: math.unit(80, "miles"),
  8936. default: true
  8937. },
  8938. {
  8939. name: "Macro",
  8940. height: math.unit(15000, "parsecs")
  8941. },
  8942. ]
  8943. ))
  8944. characterMakers.push(() => makeCharacter(
  8945. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8946. {
  8947. front: {
  8948. height: math.unit(5 + 9 / 12, "feet"),
  8949. weight: math.unit(144, "lb"),
  8950. name: "Front",
  8951. image: {
  8952. source: "./media/characters/kara/front.svg"
  8953. }
  8954. },
  8955. feet: {
  8956. height: math.unit(6 / 6.765, "feet"),
  8957. name: "Kara's Feet",
  8958. rename: true,
  8959. image: {
  8960. source: "./media/characters/kara/feet.svg"
  8961. }
  8962. },
  8963. },
  8964. [
  8965. {
  8966. name: "Normal",
  8967. height: math.unit(5 + 9 / 12, "feet")
  8968. },
  8969. {
  8970. name: "Macro",
  8971. height: math.unit(174, "feet"),
  8972. default: true
  8973. },
  8974. ]
  8975. ))
  8976. characterMakers.push(() => makeCharacter(
  8977. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8978. {
  8979. front: {
  8980. height: math.unit(18, "feet"),
  8981. weight: math.unit(4050, "lb"),
  8982. name: "Front",
  8983. image: {
  8984. source: "./media/characters/tyrone/front.svg",
  8985. extra: 2405 / 2270,
  8986. bottom: 182 / 2587
  8987. }
  8988. },
  8989. },
  8990. [
  8991. {
  8992. name: "Normal",
  8993. height: math.unit(18, "feet"),
  8994. default: true
  8995. },
  8996. {
  8997. name: "Macro",
  8998. height: math.unit(300, "feet")
  8999. },
  9000. {
  9001. name: "Megamacro",
  9002. height: math.unit(15, "km")
  9003. },
  9004. {
  9005. name: "Gigamacro",
  9006. height: math.unit(500, "km")
  9007. },
  9008. {
  9009. name: "Teramacro",
  9010. height: math.unit(0.5, "gigameters")
  9011. },
  9012. {
  9013. name: "Omnimacro",
  9014. height: math.unit(1e252, "yottauniverse")
  9015. },
  9016. ]
  9017. ))
  9018. characterMakers.push(() => makeCharacter(
  9019. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9020. {
  9021. front: {
  9022. height: math.unit(7 + 8 / 12, "feet"),
  9023. weight: math.unit(120, "lb"),
  9024. name: "Front",
  9025. image: {
  9026. source: "./media/characters/danny/front.svg",
  9027. extra: 1490 / 1350
  9028. }
  9029. },
  9030. back: {
  9031. height: math.unit(7 + 8 / 12, "feet"),
  9032. weight: math.unit(120, "lb"),
  9033. name: "Back",
  9034. image: {
  9035. source: "./media/characters/danny/back.svg",
  9036. extra: 1490 / 1350
  9037. }
  9038. },
  9039. },
  9040. [
  9041. {
  9042. name: "Normal",
  9043. height: math.unit(7 + 8 / 12, "feet"),
  9044. default: true
  9045. },
  9046. ]
  9047. ))
  9048. characterMakers.push(() => makeCharacter(
  9049. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9050. {
  9051. front: {
  9052. height: math.unit(3.5, "inches"),
  9053. weight: math.unit(19, "grams"),
  9054. name: "Front",
  9055. image: {
  9056. source: "./media/characters/mallow/front.svg",
  9057. extra: 471 / 431
  9058. }
  9059. },
  9060. back: {
  9061. height: math.unit(3.5, "inches"),
  9062. weight: math.unit(19, "grams"),
  9063. name: "Back",
  9064. image: {
  9065. source: "./media/characters/mallow/back.svg",
  9066. extra: 471 / 431
  9067. }
  9068. },
  9069. },
  9070. [
  9071. {
  9072. name: "Normal",
  9073. height: math.unit(3.5, "inches"),
  9074. default: true
  9075. },
  9076. ]
  9077. ))
  9078. characterMakers.push(() => makeCharacter(
  9079. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9080. {
  9081. front: {
  9082. height: math.unit(9, "feet"),
  9083. weight: math.unit(230, "kg"),
  9084. name: "Front",
  9085. image: {
  9086. source: "./media/characters/starry-aqua/front.svg"
  9087. }
  9088. },
  9089. back: {
  9090. height: math.unit(9, "feet"),
  9091. weight: math.unit(230, "kg"),
  9092. name: "Back",
  9093. image: {
  9094. source: "./media/characters/starry-aqua/back.svg"
  9095. }
  9096. },
  9097. hand: {
  9098. height: math.unit(9 * 0.1168, "feet"),
  9099. name: "Hand",
  9100. image: {
  9101. source: "./media/characters/starry-aqua/hand.svg"
  9102. }
  9103. },
  9104. foot: {
  9105. height: math.unit(9 * 0.18, "feet"),
  9106. name: "Foot",
  9107. image: {
  9108. source: "./media/characters/starry-aqua/foot.svg"
  9109. }
  9110. }
  9111. },
  9112. [
  9113. {
  9114. name: "Micro",
  9115. height: math.unit(3, "inches")
  9116. },
  9117. {
  9118. name: "Normal",
  9119. height: math.unit(9, "feet")
  9120. },
  9121. {
  9122. name: "Macro",
  9123. height: math.unit(300, "feet"),
  9124. default: true
  9125. },
  9126. {
  9127. name: "Megamacro",
  9128. height: math.unit(3200, "feet")
  9129. }
  9130. ]
  9131. ))
  9132. characterMakers.push(() => makeCharacter(
  9133. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9134. {
  9135. front: {
  9136. height: math.unit(15, "feet"),
  9137. weight: math.unit(5026, "lb"),
  9138. name: "Front",
  9139. image: {
  9140. source: "./media/characters/luka-towers/front.svg",
  9141. extra: 1269/1133,
  9142. bottom: 51/1320
  9143. }
  9144. },
  9145. },
  9146. [
  9147. {
  9148. name: "Normal",
  9149. height: math.unit(15, "feet"),
  9150. default: true
  9151. },
  9152. {
  9153. name: "Minimacro",
  9154. height: math.unit(25, "feet")
  9155. },
  9156. {
  9157. name: "Macro",
  9158. height: math.unit(320, "feet")
  9159. },
  9160. {
  9161. name: "Megamacro",
  9162. height: math.unit(35000, "feet")
  9163. },
  9164. {
  9165. name: "Gigamacro",
  9166. height: math.unit(4000, "miles")
  9167. },
  9168. {
  9169. name: "Teramacro",
  9170. height: math.unit(15000, "miles")
  9171. },
  9172. ]
  9173. ))
  9174. characterMakers.push(() => makeCharacter(
  9175. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9176. {
  9177. front: {
  9178. height: math.unit(6, "feet"),
  9179. weight: math.unit(150, "lb"),
  9180. name: "Front",
  9181. image: {
  9182. source: "./media/characters/natalie-nightring/front.svg",
  9183. extra: 1,
  9184. bottom: 0.06
  9185. }
  9186. },
  9187. },
  9188. [
  9189. {
  9190. name: "Uh Oh",
  9191. height: math.unit(0.1, "mm")
  9192. },
  9193. {
  9194. name: "Small",
  9195. height: math.unit(3, "inches")
  9196. },
  9197. {
  9198. name: "Human Scale",
  9199. height: math.unit(6, "feet")
  9200. },
  9201. {
  9202. name: "Librarian",
  9203. height: math.unit(50, "feet"),
  9204. default: true
  9205. },
  9206. {
  9207. name: "Immense",
  9208. height: math.unit(200, "miles")
  9209. },
  9210. ]
  9211. ))
  9212. characterMakers.push(() => makeCharacter(
  9213. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9214. {
  9215. front: {
  9216. height: math.unit(6, "feet"),
  9217. weight: math.unit(180, "lbs"),
  9218. name: "Front",
  9219. image: {
  9220. source: "./media/characters/danni-rosie/front.svg",
  9221. extra: 1260 / 1128,
  9222. bottom: 0.022
  9223. }
  9224. },
  9225. },
  9226. [
  9227. {
  9228. name: "Micro",
  9229. height: math.unit(2, "inches"),
  9230. default: true
  9231. },
  9232. ]
  9233. ))
  9234. characterMakers.push(() => makeCharacter(
  9235. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9236. {
  9237. front: {
  9238. height: math.unit(5 + 9 / 12, "feet"),
  9239. weight: math.unit(220, "lb"),
  9240. name: "Front",
  9241. image: {
  9242. source: "./media/characters/samantha-kruse/front.svg",
  9243. extra: (985 / 935),
  9244. bottom: 0.03
  9245. }
  9246. },
  9247. frontUndressed: {
  9248. height: math.unit(5 + 9 / 12, "feet"),
  9249. weight: math.unit(220, "lb"),
  9250. name: "Front (Undressed)",
  9251. image: {
  9252. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9253. extra: (973 / 923),
  9254. bottom: 0.025
  9255. }
  9256. },
  9257. fat: {
  9258. height: math.unit(5 + 9 / 12, "feet"),
  9259. weight: math.unit(900, "lb"),
  9260. name: "Front (Fat)",
  9261. image: {
  9262. source: "./media/characters/samantha-kruse/fat.svg",
  9263. extra: 2688 / 2561
  9264. }
  9265. },
  9266. },
  9267. [
  9268. {
  9269. name: "Normal",
  9270. height: math.unit(5 + 9 / 12, "feet"),
  9271. default: true
  9272. }
  9273. ]
  9274. ))
  9275. characterMakers.push(() => makeCharacter(
  9276. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9277. {
  9278. back: {
  9279. height: math.unit(5 + 4 / 12, "feet"),
  9280. weight: math.unit(4963, "lb"),
  9281. name: "Back",
  9282. image: {
  9283. source: "./media/characters/amelia-rosie/back.svg",
  9284. extra: 1113 / 963,
  9285. bottom: 0.01
  9286. }
  9287. },
  9288. },
  9289. [
  9290. {
  9291. name: "Level 0",
  9292. height: math.unit(5 + 4 / 12, "feet")
  9293. },
  9294. {
  9295. name: "Level 1",
  9296. height: math.unit(164597, "feet"),
  9297. default: true
  9298. },
  9299. {
  9300. name: "Level 2",
  9301. height: math.unit(956243, "miles")
  9302. },
  9303. {
  9304. name: "Level 3",
  9305. height: math.unit(29421709423, "miles")
  9306. },
  9307. {
  9308. name: "Level 4",
  9309. height: math.unit(154, "lightyears")
  9310. },
  9311. {
  9312. name: "Level 5",
  9313. height: math.unit(4738272, "lightyears")
  9314. },
  9315. {
  9316. name: "Level 6",
  9317. height: math.unit(145787152896, "lightyears")
  9318. },
  9319. ]
  9320. ))
  9321. characterMakers.push(() => makeCharacter(
  9322. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9323. {
  9324. front: {
  9325. height: math.unit(5 + 11 / 12, "feet"),
  9326. weight: math.unit(65, "kg"),
  9327. name: "Front",
  9328. image: {
  9329. source: "./media/characters/rook-kitara/front.svg",
  9330. extra: 1347 / 1274,
  9331. bottom: 0.005
  9332. }
  9333. },
  9334. },
  9335. [
  9336. {
  9337. name: "Totally Unfair",
  9338. height: math.unit(1.8, "mm")
  9339. },
  9340. {
  9341. name: "Lap Rookie",
  9342. height: math.unit(1.4, "feet")
  9343. },
  9344. {
  9345. name: "Normal",
  9346. height: math.unit(5 + 11 / 12, "feet"),
  9347. default: true
  9348. },
  9349. {
  9350. name: "How Did This Happen",
  9351. height: math.unit(80, "miles")
  9352. }
  9353. ]
  9354. ))
  9355. characterMakers.push(() => makeCharacter(
  9356. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9357. {
  9358. front: {
  9359. height: math.unit(7, "feet"),
  9360. weight: math.unit(300, "lb"),
  9361. name: "Front",
  9362. image: {
  9363. source: "./media/characters/pisces/front.svg",
  9364. extra: 2255 / 2115,
  9365. bottom: 0.03
  9366. }
  9367. },
  9368. back: {
  9369. height: math.unit(7, "feet"),
  9370. weight: math.unit(300, "lb"),
  9371. name: "Back",
  9372. image: {
  9373. source: "./media/characters/pisces/back.svg",
  9374. extra: 2146 / 2055,
  9375. bottom: 0.04
  9376. }
  9377. },
  9378. },
  9379. [
  9380. {
  9381. name: "Normal",
  9382. height: math.unit(7, "feet"),
  9383. default: true
  9384. },
  9385. {
  9386. name: "Swimming Pool",
  9387. height: math.unit(12.2, "meters")
  9388. },
  9389. {
  9390. name: "Olympic Swimming Pool",
  9391. height: math.unit(56.3, "meters")
  9392. },
  9393. {
  9394. name: "Lake Superior",
  9395. height: math.unit(93900, "meters")
  9396. },
  9397. {
  9398. name: "Mediterranean Sea",
  9399. height: math.unit(644457, "meters")
  9400. },
  9401. {
  9402. name: "World's Oceans",
  9403. height: math.unit(4567491, "meters")
  9404. },
  9405. ]
  9406. ))
  9407. characterMakers.push(() => makeCharacter(
  9408. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9409. {
  9410. front: {
  9411. height: math.unit(2.3, "meters"),
  9412. weight: math.unit(120, "kg"),
  9413. name: "Front",
  9414. image: {
  9415. source: "./media/characters/zelas/front.svg"
  9416. }
  9417. },
  9418. side: {
  9419. height: math.unit(2.3, "meters"),
  9420. weight: math.unit(120, "kg"),
  9421. name: "Side",
  9422. image: {
  9423. source: "./media/characters/zelas/side.svg"
  9424. }
  9425. },
  9426. back: {
  9427. height: math.unit(2.3, "meters"),
  9428. weight: math.unit(120, "kg"),
  9429. name: "Back",
  9430. image: {
  9431. source: "./media/characters/zelas/back.svg"
  9432. }
  9433. },
  9434. foot: {
  9435. height: math.unit(1.116, "feet"),
  9436. name: "Foot",
  9437. image: {
  9438. source: "./media/characters/zelas/foot.svg"
  9439. }
  9440. },
  9441. },
  9442. [
  9443. {
  9444. name: "Normal",
  9445. height: math.unit(2.3, "meters")
  9446. },
  9447. {
  9448. name: "Macro",
  9449. height: math.unit(30, "meters"),
  9450. default: true
  9451. },
  9452. ]
  9453. ))
  9454. characterMakers.push(() => makeCharacter(
  9455. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9456. {
  9457. front: {
  9458. height: math.unit(1, "inch"),
  9459. weight: math.unit(0.21, "grams"),
  9460. name: "Front",
  9461. image: {
  9462. source: "./media/characters/talbot/front.svg",
  9463. extra: 594 / 544
  9464. }
  9465. },
  9466. },
  9467. [
  9468. {
  9469. name: "Micro",
  9470. height: math.unit(1, "inch"),
  9471. default: true
  9472. },
  9473. ]
  9474. ))
  9475. characterMakers.push(() => makeCharacter(
  9476. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9477. {
  9478. front: {
  9479. height: math.unit(3 + 3 / 12, "feet"),
  9480. weight: math.unit(51.8, "lb"),
  9481. name: "Front",
  9482. image: {
  9483. source: "./media/characters/fliss/front.svg",
  9484. extra: 840 / 640
  9485. }
  9486. },
  9487. },
  9488. [
  9489. {
  9490. name: "Teeny Tiny",
  9491. height: math.unit(1, "mm")
  9492. },
  9493. {
  9494. name: "Small",
  9495. height: math.unit(1, "inch"),
  9496. default: true
  9497. },
  9498. {
  9499. name: "Standard Sylveon",
  9500. height: math.unit(3 + 3 / 12, "feet")
  9501. },
  9502. {
  9503. name: "Large Nuisance",
  9504. height: math.unit(33, "feet")
  9505. },
  9506. {
  9507. name: "City Filler",
  9508. height: math.unit(3000, "feet")
  9509. },
  9510. {
  9511. name: "New Horizon",
  9512. height: math.unit(6000, "miles")
  9513. },
  9514. ]
  9515. ))
  9516. characterMakers.push(() => makeCharacter(
  9517. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9518. {
  9519. front: {
  9520. height: math.unit(5, "cm"),
  9521. weight: math.unit(1.94, "g"),
  9522. name: "Front",
  9523. image: {
  9524. source: "./media/characters/fleta/front.svg",
  9525. extra: 835 / 803
  9526. }
  9527. },
  9528. back: {
  9529. height: math.unit(5, "cm"),
  9530. weight: math.unit(1.94, "g"),
  9531. name: "Back",
  9532. image: {
  9533. source: "./media/characters/fleta/back.svg",
  9534. extra: 835 / 803
  9535. }
  9536. },
  9537. },
  9538. [
  9539. {
  9540. name: "Micro",
  9541. height: math.unit(5, "cm"),
  9542. default: true
  9543. },
  9544. ]
  9545. ))
  9546. characterMakers.push(() => makeCharacter(
  9547. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9548. {
  9549. front: {
  9550. height: math.unit(6, "feet"),
  9551. weight: math.unit(225, "lb"),
  9552. name: "Front",
  9553. image: {
  9554. source: "./media/characters/dominic/front.svg",
  9555. extra: 1770 / 1620,
  9556. bottom: 0.025
  9557. }
  9558. },
  9559. back: {
  9560. height: math.unit(6, "feet"),
  9561. weight: math.unit(225, "lb"),
  9562. name: "Back",
  9563. image: {
  9564. source: "./media/characters/dominic/back.svg",
  9565. extra: 1745 / 1620,
  9566. bottom: 0.065
  9567. }
  9568. },
  9569. },
  9570. [
  9571. {
  9572. name: "Nano",
  9573. height: math.unit(0.1, "mm")
  9574. },
  9575. {
  9576. name: "Micro-",
  9577. height: math.unit(1, "mm")
  9578. },
  9579. {
  9580. name: "Micro",
  9581. height: math.unit(4, "inches")
  9582. },
  9583. {
  9584. name: "Normal",
  9585. height: math.unit(6 + 4 / 12, "feet"),
  9586. default: true
  9587. },
  9588. {
  9589. name: "Macro",
  9590. height: math.unit(115, "feet")
  9591. },
  9592. {
  9593. name: "Macro+",
  9594. height: math.unit(955, "feet")
  9595. },
  9596. {
  9597. name: "Megamacro",
  9598. height: math.unit(8990, "feet")
  9599. },
  9600. {
  9601. name: "Gigmacro",
  9602. height: math.unit(9310, "miles")
  9603. },
  9604. {
  9605. name: "Teramacro",
  9606. height: math.unit(1567005010, "miles")
  9607. },
  9608. {
  9609. name: "Examacro",
  9610. height: math.unit(1425, "parsecs")
  9611. },
  9612. ]
  9613. ))
  9614. characterMakers.push(() => makeCharacter(
  9615. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9616. {
  9617. front: {
  9618. height: math.unit(400, "feet"),
  9619. weight: math.unit(44444444, "lb"),
  9620. name: "Front",
  9621. image: {
  9622. source: "./media/characters/major-colonel/front.svg"
  9623. }
  9624. },
  9625. back: {
  9626. height: math.unit(400, "feet"),
  9627. weight: math.unit(44444444, "lb"),
  9628. name: "Back",
  9629. image: {
  9630. source: "./media/characters/major-colonel/back.svg"
  9631. }
  9632. },
  9633. },
  9634. [
  9635. {
  9636. name: "Macro",
  9637. height: math.unit(400, "feet"),
  9638. default: true
  9639. },
  9640. ]
  9641. ))
  9642. characterMakers.push(() => makeCharacter(
  9643. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9644. {
  9645. catFront: {
  9646. height: math.unit(6, "feet"),
  9647. weight: math.unit(120, "lb"),
  9648. name: "Front (Cat Side)",
  9649. image: {
  9650. source: "./media/characters/axel-lycan/cat-front.svg",
  9651. extra: 430 / 402,
  9652. bottom: 43 / 472.35
  9653. }
  9654. },
  9655. catBack: {
  9656. height: math.unit(6, "feet"),
  9657. weight: math.unit(120, "lb"),
  9658. name: "Back (Cat Side)",
  9659. image: {
  9660. source: "./media/characters/axel-lycan/cat-back.svg",
  9661. extra: 447 / 419,
  9662. bottom: 23.3 / 469
  9663. }
  9664. },
  9665. wolfFront: {
  9666. height: math.unit(6, "feet"),
  9667. weight: math.unit(120, "lb"),
  9668. name: "Front (Wolf Side)",
  9669. image: {
  9670. source: "./media/characters/axel-lycan/wolf-front.svg",
  9671. extra: 485 / 456,
  9672. bottom: 19 / 504
  9673. }
  9674. },
  9675. wolfBack: {
  9676. height: math.unit(6, "feet"),
  9677. weight: math.unit(120, "lb"),
  9678. name: "Back (Wolf Side)",
  9679. image: {
  9680. source: "./media/characters/axel-lycan/wolf-back.svg",
  9681. extra: 475 / 438,
  9682. bottom: 39.2 / 514
  9683. }
  9684. },
  9685. },
  9686. [
  9687. {
  9688. name: "Macro",
  9689. height: math.unit(1, "km"),
  9690. default: true
  9691. },
  9692. ]
  9693. ))
  9694. characterMakers.push(() => makeCharacter(
  9695. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9696. {
  9697. front: {
  9698. height: math.unit(5 + 9 / 12, "feet"),
  9699. weight: math.unit(175, "lb"),
  9700. name: "Front",
  9701. image: {
  9702. source: "./media/characters/vanrel-hyena/front.svg",
  9703. extra: 1086 / 1010,
  9704. bottom: 0.04
  9705. }
  9706. },
  9707. },
  9708. [
  9709. {
  9710. name: "Normal",
  9711. height: math.unit(5 + 9 / 12, "feet"),
  9712. default: true
  9713. },
  9714. ]
  9715. ))
  9716. characterMakers.push(() => makeCharacter(
  9717. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9718. {
  9719. front: {
  9720. height: math.unit(6, "feet"),
  9721. weight: math.unit(103, "lb"),
  9722. name: "Front",
  9723. image: {
  9724. source: "./media/characters/abbott-absol/front.svg",
  9725. extra: 2010 / 1842
  9726. }
  9727. },
  9728. },
  9729. [
  9730. {
  9731. name: "Megamicro",
  9732. height: math.unit(0.1, "mm")
  9733. },
  9734. {
  9735. name: "Micro",
  9736. height: math.unit(1, "inch")
  9737. },
  9738. {
  9739. name: "Normal",
  9740. height: math.unit(6, "feet"),
  9741. default: true
  9742. },
  9743. ]
  9744. ))
  9745. characterMakers.push(() => makeCharacter(
  9746. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9747. {
  9748. front: {
  9749. height: math.unit(6, "feet"),
  9750. weight: math.unit(264, "lb"),
  9751. name: "Front",
  9752. image: {
  9753. source: "./media/characters/hector/front.svg",
  9754. extra: 2280 / 2130,
  9755. bottom: 0.07
  9756. }
  9757. },
  9758. },
  9759. [
  9760. {
  9761. name: "Normal",
  9762. height: math.unit(12.25, "foot"),
  9763. default: true
  9764. },
  9765. {
  9766. name: "Macro",
  9767. height: math.unit(160, "feet")
  9768. },
  9769. ]
  9770. ))
  9771. characterMakers.push(() => makeCharacter(
  9772. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9773. {
  9774. front: {
  9775. height: math.unit(6, "feet"),
  9776. weight: math.unit(150, "lb"),
  9777. name: "Front",
  9778. image: {
  9779. source: "./media/characters/sal/front.svg",
  9780. extra: 1846 / 1699,
  9781. bottom: 0.04
  9782. }
  9783. },
  9784. },
  9785. [
  9786. {
  9787. name: "Megamacro",
  9788. height: math.unit(10, "miles"),
  9789. default: true
  9790. },
  9791. ]
  9792. ))
  9793. characterMakers.push(() => makeCharacter(
  9794. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9795. {
  9796. front: {
  9797. height: math.unit(3, "meters"),
  9798. weight: math.unit(450, "kg"),
  9799. name: "front",
  9800. image: {
  9801. source: "./media/characters/ranger/front.svg",
  9802. extra: 2401 / 2243,
  9803. bottom: 0.05
  9804. }
  9805. },
  9806. },
  9807. [
  9808. {
  9809. name: "Normal",
  9810. height: math.unit(3, "meters"),
  9811. default: true
  9812. },
  9813. ]
  9814. ))
  9815. characterMakers.push(() => makeCharacter(
  9816. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9817. {
  9818. front: {
  9819. height: math.unit(14, "feet"),
  9820. weight: math.unit(800, "kg"),
  9821. name: "Front",
  9822. image: {
  9823. source: "./media/characters/theresa/front.svg",
  9824. extra: 3575 / 3346,
  9825. bottom: 0.03
  9826. }
  9827. },
  9828. },
  9829. [
  9830. {
  9831. name: "Normal",
  9832. height: math.unit(14, "feet"),
  9833. default: true
  9834. },
  9835. ]
  9836. ))
  9837. characterMakers.push(() => makeCharacter(
  9838. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9839. {
  9840. front: {
  9841. height: math.unit(6, "feet"),
  9842. weight: math.unit(3, "kg"),
  9843. name: "Front",
  9844. image: {
  9845. source: "./media/characters/ine/front.svg",
  9846. extra: 678 / 539,
  9847. bottom: 0.023
  9848. }
  9849. },
  9850. },
  9851. [
  9852. {
  9853. name: "Normal",
  9854. height: math.unit(2.265, "feet"),
  9855. default: true
  9856. },
  9857. ]
  9858. ))
  9859. characterMakers.push(() => makeCharacter(
  9860. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9861. {
  9862. front: {
  9863. height: math.unit(5, "feet"),
  9864. weight: math.unit(30, "kg"),
  9865. name: "Front",
  9866. image: {
  9867. source: "./media/characters/vial/front.svg",
  9868. extra: 1365 / 1277,
  9869. bottom: 0.04
  9870. }
  9871. },
  9872. },
  9873. [
  9874. {
  9875. name: "Normal",
  9876. height: math.unit(5, "feet"),
  9877. default: true
  9878. },
  9879. ]
  9880. ))
  9881. characterMakers.push(() => makeCharacter(
  9882. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9883. {
  9884. side: {
  9885. height: math.unit(3.4, "meters"),
  9886. weight: math.unit(1000, "lb"),
  9887. name: "Side",
  9888. image: {
  9889. source: "./media/characters/rovoska/side.svg",
  9890. extra: 4403 / 1515
  9891. }
  9892. },
  9893. },
  9894. [
  9895. {
  9896. name: "Normal",
  9897. height: math.unit(3.4, "meters"),
  9898. default: true
  9899. },
  9900. ]
  9901. ))
  9902. characterMakers.push(() => makeCharacter(
  9903. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9904. {
  9905. front: {
  9906. height: math.unit(8, "feet"),
  9907. weight: math.unit(315, "lb"),
  9908. name: "Front",
  9909. image: {
  9910. source: "./media/characters/gunner-rotthbauer/front.svg"
  9911. }
  9912. },
  9913. back: {
  9914. height: math.unit(8, "feet"),
  9915. weight: math.unit(315, "lb"),
  9916. name: "Back",
  9917. image: {
  9918. source: "./media/characters/gunner-rotthbauer/back.svg"
  9919. }
  9920. },
  9921. },
  9922. [
  9923. {
  9924. name: "Micro",
  9925. height: math.unit(3.5, "inches")
  9926. },
  9927. {
  9928. name: "Normal",
  9929. height: math.unit(8, "feet"),
  9930. default: true
  9931. },
  9932. {
  9933. name: "Macro",
  9934. height: math.unit(250, "feet")
  9935. },
  9936. {
  9937. name: "Megamacro",
  9938. height: math.unit(1, "AU")
  9939. },
  9940. ]
  9941. ))
  9942. characterMakers.push(() => makeCharacter(
  9943. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9944. {
  9945. front: {
  9946. height: math.unit(5 + 5 / 12, "feet"),
  9947. weight: math.unit(140, "lb"),
  9948. name: "Front",
  9949. image: {
  9950. source: "./media/characters/allatia/front.svg",
  9951. extra: 1227 / 1180,
  9952. bottom: 0.027
  9953. }
  9954. },
  9955. },
  9956. [
  9957. {
  9958. name: "Normal",
  9959. height: math.unit(5 + 5 / 12, "feet")
  9960. },
  9961. {
  9962. name: "Macro",
  9963. height: math.unit(250, "feet"),
  9964. default: true
  9965. },
  9966. {
  9967. name: "Megamacro",
  9968. height: math.unit(8, "miles")
  9969. }
  9970. ]
  9971. ))
  9972. characterMakers.push(() => makeCharacter(
  9973. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9974. {
  9975. front: {
  9976. height: math.unit(6, "feet"),
  9977. weight: math.unit(120, "lb"),
  9978. name: "Front",
  9979. image: {
  9980. source: "./media/characters/tene/front.svg",
  9981. extra: 1728 / 1578,
  9982. bottom: 0.022
  9983. }
  9984. },
  9985. stomping: {
  9986. height: math.unit(2.025, "meters"),
  9987. weight: math.unit(120, "lb"),
  9988. name: "Stomping",
  9989. image: {
  9990. source: "./media/characters/tene/stomping.svg",
  9991. extra: 938 / 873,
  9992. bottom: 0.01
  9993. }
  9994. },
  9995. sitting: {
  9996. height: math.unit(1, "meter"),
  9997. weight: math.unit(120, "lb"),
  9998. name: "Sitting",
  9999. image: {
  10000. source: "./media/characters/tene/sitting.svg",
  10001. extra: 437 / 415,
  10002. bottom: 0.1
  10003. }
  10004. },
  10005. feral: {
  10006. height: math.unit(3.9, "feet"),
  10007. weight: math.unit(250, "lb"),
  10008. name: "Feral",
  10009. image: {
  10010. source: "./media/characters/tene/feral.svg",
  10011. extra: 717 / 458,
  10012. bottom: 0.179
  10013. }
  10014. },
  10015. },
  10016. [
  10017. {
  10018. name: "Normal",
  10019. height: math.unit(6, "feet")
  10020. },
  10021. {
  10022. name: "Macro",
  10023. height: math.unit(300, "feet"),
  10024. default: true
  10025. },
  10026. {
  10027. name: "Megamacro",
  10028. height: math.unit(5, "miles")
  10029. },
  10030. ]
  10031. ))
  10032. characterMakers.push(() => makeCharacter(
  10033. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10034. {
  10035. side: {
  10036. height: math.unit(6, "feet"),
  10037. name: "Side",
  10038. image: {
  10039. source: "./media/characters/evander/side.svg",
  10040. extra: 877 / 477
  10041. }
  10042. },
  10043. },
  10044. [
  10045. {
  10046. name: "Normal",
  10047. height: math.unit(0.83, "meters"),
  10048. default: true
  10049. },
  10050. ]
  10051. ))
  10052. characterMakers.push(() => makeCharacter(
  10053. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10054. {
  10055. front: {
  10056. height: math.unit(12, "feet"),
  10057. weight: math.unit(1000, "lb"),
  10058. name: "Front",
  10059. image: {
  10060. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10061. extra: 1762 / 1611
  10062. }
  10063. },
  10064. back: {
  10065. height: math.unit(12, "feet"),
  10066. weight: math.unit(1000, "lb"),
  10067. name: "Back",
  10068. image: {
  10069. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10070. extra: 1762 / 1611
  10071. }
  10072. },
  10073. },
  10074. [
  10075. {
  10076. name: "Normal",
  10077. height: math.unit(12, "feet"),
  10078. default: true
  10079. },
  10080. {
  10081. name: "Kaiju",
  10082. height: math.unit(150, "feet")
  10083. },
  10084. ]
  10085. ))
  10086. characterMakers.push(() => makeCharacter(
  10087. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10088. {
  10089. front: {
  10090. height: math.unit(6, "feet"),
  10091. weight: math.unit(150, "lb"),
  10092. name: "Front",
  10093. image: {
  10094. source: "./media/characters/zero-alurus/front.svg"
  10095. }
  10096. },
  10097. back: {
  10098. height: math.unit(6, "feet"),
  10099. weight: math.unit(150, "lb"),
  10100. name: "Back",
  10101. image: {
  10102. source: "./media/characters/zero-alurus/back.svg"
  10103. }
  10104. },
  10105. },
  10106. [
  10107. {
  10108. name: "Normal",
  10109. height: math.unit(5 + 10 / 12, "feet")
  10110. },
  10111. {
  10112. name: "Macro",
  10113. height: math.unit(60, "feet"),
  10114. default: true
  10115. },
  10116. {
  10117. name: "Macro+",
  10118. height: math.unit(450, "feet")
  10119. },
  10120. ]
  10121. ))
  10122. characterMakers.push(() => makeCharacter(
  10123. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10124. {
  10125. front: {
  10126. height: math.unit(6, "feet"),
  10127. weight: math.unit(200, "lb"),
  10128. name: "Front",
  10129. image: {
  10130. source: "./media/characters/mega-shi/front.svg",
  10131. extra: 1279 / 1250,
  10132. bottom: 0.02
  10133. }
  10134. },
  10135. back: {
  10136. height: math.unit(6, "feet"),
  10137. weight: math.unit(200, "lb"),
  10138. name: "Back",
  10139. image: {
  10140. source: "./media/characters/mega-shi/back.svg",
  10141. extra: 1279 / 1250,
  10142. bottom: 0.02
  10143. }
  10144. },
  10145. },
  10146. [
  10147. {
  10148. name: "Micro",
  10149. height: math.unit(16 + 6 / 12, "feet")
  10150. },
  10151. {
  10152. name: "Third Dimension",
  10153. height: math.unit(40, "meters")
  10154. },
  10155. {
  10156. name: "Normal",
  10157. height: math.unit(660, "feet"),
  10158. default: true
  10159. },
  10160. {
  10161. name: "Megamacro",
  10162. height: math.unit(10, "miles")
  10163. },
  10164. {
  10165. name: "Planetary Launch",
  10166. height: math.unit(500, "miles")
  10167. },
  10168. {
  10169. name: "Interstellar",
  10170. height: math.unit(1e9, "miles")
  10171. },
  10172. {
  10173. name: "Leaving the Universe",
  10174. height: math.unit(1, "gigaparsec")
  10175. },
  10176. {
  10177. name: "Travelling Universes",
  10178. height: math.unit(30e15, "parsecs")
  10179. },
  10180. ]
  10181. ))
  10182. characterMakers.push(() => makeCharacter(
  10183. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10184. {
  10185. front: {
  10186. height: math.unit(5 + 4/12, "feet"),
  10187. weight: math.unit(120, "lb"),
  10188. name: "Front",
  10189. image: {
  10190. source: "./media/characters/odyssey/front.svg",
  10191. extra: 1747/1571,
  10192. bottom: 47/1794
  10193. }
  10194. },
  10195. side: {
  10196. height: math.unit(5.1, "feet"),
  10197. weight: math.unit(120, "lb"),
  10198. name: "Side",
  10199. image: {
  10200. source: "./media/characters/odyssey/side.svg",
  10201. extra: 1847/1619,
  10202. bottom: 47/1894
  10203. }
  10204. },
  10205. lounging: {
  10206. height: math.unit(1.464, "feet"),
  10207. weight: math.unit(120, "lb"),
  10208. name: "Lounging",
  10209. image: {
  10210. source: "./media/characters/odyssey/lounging.svg",
  10211. extra: 1235/837,
  10212. bottom: 551/1786
  10213. }
  10214. },
  10215. },
  10216. [
  10217. {
  10218. name: "Normal",
  10219. height: math.unit(5 + 4 / 12, "feet")
  10220. },
  10221. {
  10222. name: "Macro",
  10223. height: math.unit(1, "km")
  10224. },
  10225. {
  10226. name: "Megamacro",
  10227. height: math.unit(3000, "km")
  10228. },
  10229. {
  10230. name: "Gigamacro",
  10231. height: math.unit(1, "AU"),
  10232. default: true
  10233. },
  10234. {
  10235. name: "Omniversal",
  10236. height: math.unit(100e14, "lightyears")
  10237. },
  10238. ]
  10239. ))
  10240. characterMakers.push(() => makeCharacter(
  10241. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10242. {
  10243. front: {
  10244. height: math.unit(6, "feet"),
  10245. weight: math.unit(300, "lb"),
  10246. name: "Front",
  10247. image: {
  10248. source: "./media/characters/mekuto/front.svg",
  10249. extra: 921 / 832,
  10250. bottom: 0.03
  10251. }
  10252. },
  10253. hand: {
  10254. height: math.unit(6 / 10.24, "feet"),
  10255. name: "Hand",
  10256. image: {
  10257. source: "./media/characters/mekuto/hand.svg"
  10258. }
  10259. },
  10260. foot: {
  10261. height: math.unit(6 / 5.05, "feet"),
  10262. name: "Foot",
  10263. image: {
  10264. source: "./media/characters/mekuto/foot.svg"
  10265. }
  10266. },
  10267. },
  10268. [
  10269. {
  10270. name: "Minimicro",
  10271. height: math.unit(0.2, "inches")
  10272. },
  10273. {
  10274. name: "Micro",
  10275. height: math.unit(1.5, "inches")
  10276. },
  10277. {
  10278. name: "Normal",
  10279. height: math.unit(5 + 11 / 12, "feet"),
  10280. default: true
  10281. },
  10282. {
  10283. name: "Minimacro",
  10284. height: math.unit(17 + 9 / 12, "feet")
  10285. },
  10286. {
  10287. name: "Macro",
  10288. height: math.unit(177.5, "feet")
  10289. },
  10290. {
  10291. name: "Megamacro",
  10292. height: math.unit(152, "miles")
  10293. },
  10294. ]
  10295. ))
  10296. characterMakers.push(() => makeCharacter(
  10297. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10298. {
  10299. front: {
  10300. height: math.unit(6.5, "inches"),
  10301. weight: math.unit(13, "oz"),
  10302. name: "Front",
  10303. image: {
  10304. source: "./media/characters/dafydd-tomos/front.svg",
  10305. extra: 2990 / 2603,
  10306. bottom: 0.03
  10307. }
  10308. },
  10309. },
  10310. [
  10311. {
  10312. name: "Micro",
  10313. height: math.unit(6.5, "inches"),
  10314. default: true
  10315. },
  10316. ]
  10317. ))
  10318. characterMakers.push(() => makeCharacter(
  10319. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10320. {
  10321. front: {
  10322. height: math.unit(6, "feet"),
  10323. weight: math.unit(150, "lb"),
  10324. name: "Front",
  10325. image: {
  10326. source: "./media/characters/splinter/front.svg",
  10327. extra: 2990 / 2882,
  10328. bottom: 0.04
  10329. }
  10330. },
  10331. back: {
  10332. height: math.unit(6, "feet"),
  10333. weight: math.unit(150, "lb"),
  10334. name: "Back",
  10335. image: {
  10336. source: "./media/characters/splinter/back.svg",
  10337. extra: 2990 / 2882,
  10338. bottom: 0.04
  10339. }
  10340. },
  10341. },
  10342. [
  10343. {
  10344. name: "Normal",
  10345. height: math.unit(6, "feet")
  10346. },
  10347. {
  10348. name: "Macro",
  10349. height: math.unit(230, "meters"),
  10350. default: true
  10351. },
  10352. ]
  10353. ))
  10354. characterMakers.push(() => makeCharacter(
  10355. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10356. {
  10357. front: {
  10358. height: math.unit(4 + 10 / 12, "feet"),
  10359. weight: math.unit(480, "lb"),
  10360. name: "Front",
  10361. image: {
  10362. source: "./media/characters/snow-gabumon/front.svg",
  10363. extra: 1140 / 963,
  10364. bottom: 0.058
  10365. }
  10366. },
  10367. back: {
  10368. height: math.unit(4 + 10 / 12, "feet"),
  10369. weight: math.unit(480, "lb"),
  10370. name: "Back",
  10371. image: {
  10372. source: "./media/characters/snow-gabumon/back.svg",
  10373. extra: 1115 / 962,
  10374. bottom: 0.041
  10375. }
  10376. },
  10377. frontUndresed: {
  10378. height: math.unit(4 + 10 / 12, "feet"),
  10379. weight: math.unit(480, "lb"),
  10380. name: "Front (Undressed)",
  10381. image: {
  10382. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10383. extra: 1061 / 960,
  10384. bottom: 0.045
  10385. }
  10386. },
  10387. },
  10388. [
  10389. {
  10390. name: "Micro",
  10391. height: math.unit(1, "inch")
  10392. },
  10393. {
  10394. name: "Normal",
  10395. height: math.unit(4 + 10 / 12, "feet"),
  10396. default: true
  10397. },
  10398. {
  10399. name: "Macro",
  10400. height: math.unit(200, "feet")
  10401. },
  10402. {
  10403. name: "Megamacro",
  10404. height: math.unit(120, "miles")
  10405. },
  10406. {
  10407. name: "Gigamacro",
  10408. height: math.unit(9800, "miles")
  10409. },
  10410. ]
  10411. ))
  10412. characterMakers.push(() => makeCharacter(
  10413. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10414. {
  10415. front: {
  10416. height: math.unit(1.7, "meters"),
  10417. weight: math.unit(140, "lb"),
  10418. name: "Front",
  10419. image: {
  10420. source: "./media/characters/moody/front.svg",
  10421. extra: 3226 / 3007,
  10422. bottom: 0.087
  10423. }
  10424. },
  10425. },
  10426. [
  10427. {
  10428. name: "Micro",
  10429. height: math.unit(1, "mm")
  10430. },
  10431. {
  10432. name: "Normal",
  10433. height: math.unit(1.7, "meters"),
  10434. default: true
  10435. },
  10436. {
  10437. name: "Macro",
  10438. height: math.unit(80, "meters")
  10439. },
  10440. {
  10441. name: "Macro+",
  10442. height: math.unit(500, "meters")
  10443. },
  10444. ]
  10445. ))
  10446. characterMakers.push(() => makeCharacter(
  10447. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10448. {
  10449. front: {
  10450. height: math.unit(6, "feet"),
  10451. weight: math.unit(150, "lb"),
  10452. name: "Front",
  10453. image: {
  10454. source: "./media/characters/zyas/front.svg",
  10455. extra: 1180 / 1120,
  10456. bottom: 0.045
  10457. }
  10458. },
  10459. },
  10460. [
  10461. {
  10462. name: "Normal",
  10463. height: math.unit(10, "feet"),
  10464. default: true
  10465. },
  10466. {
  10467. name: "Macro",
  10468. height: math.unit(500, "feet")
  10469. },
  10470. {
  10471. name: "Megamacro",
  10472. height: math.unit(5, "miles")
  10473. },
  10474. {
  10475. name: "Teramacro",
  10476. height: math.unit(150000, "miles")
  10477. },
  10478. ]
  10479. ))
  10480. characterMakers.push(() => makeCharacter(
  10481. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10482. {
  10483. front: {
  10484. height: math.unit(6, "feet"),
  10485. weight: math.unit(150, "lb"),
  10486. name: "Front",
  10487. image: {
  10488. source: "./media/characters/cuon/front.svg",
  10489. extra: 1390 / 1320,
  10490. bottom: 0.008
  10491. }
  10492. },
  10493. },
  10494. [
  10495. {
  10496. name: "Micro",
  10497. height: math.unit(3, "inches")
  10498. },
  10499. {
  10500. name: "Normal",
  10501. height: math.unit(18 + 9 / 12, "feet"),
  10502. default: true
  10503. },
  10504. {
  10505. name: "Macro",
  10506. height: math.unit(360, "feet")
  10507. },
  10508. {
  10509. name: "Megamacro",
  10510. height: math.unit(360, "miles")
  10511. },
  10512. ]
  10513. ))
  10514. characterMakers.push(() => makeCharacter(
  10515. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10516. {
  10517. front: {
  10518. height: math.unit(2.4, "meters"),
  10519. weight: math.unit(70, "kg"),
  10520. name: "Front",
  10521. image: {
  10522. source: "./media/characters/nyanuxk/front.svg",
  10523. extra: 1172 / 1084,
  10524. bottom: 0.065
  10525. }
  10526. },
  10527. side: {
  10528. height: math.unit(2.4, "meters"),
  10529. weight: math.unit(70, "kg"),
  10530. name: "Side",
  10531. image: {
  10532. source: "./media/characters/nyanuxk/side.svg",
  10533. extra: 1190 / 1132,
  10534. bottom: 0.007
  10535. }
  10536. },
  10537. back: {
  10538. height: math.unit(2.4, "meters"),
  10539. weight: math.unit(70, "kg"),
  10540. name: "Back",
  10541. image: {
  10542. source: "./media/characters/nyanuxk/back.svg",
  10543. extra: 1200 / 1141,
  10544. bottom: 0.015
  10545. }
  10546. },
  10547. foot: {
  10548. height: math.unit(0.52, "meters"),
  10549. name: "Foot",
  10550. image: {
  10551. source: "./media/characters/nyanuxk/foot.svg"
  10552. }
  10553. },
  10554. },
  10555. [
  10556. {
  10557. name: "Micro",
  10558. height: math.unit(2, "cm")
  10559. },
  10560. {
  10561. name: "Normal",
  10562. height: math.unit(2.4, "meters"),
  10563. default: true
  10564. },
  10565. {
  10566. name: "Smaller Macro",
  10567. height: math.unit(120, "meters")
  10568. },
  10569. {
  10570. name: "Bigger Macro",
  10571. height: math.unit(1.2, "km")
  10572. },
  10573. {
  10574. name: "Megamacro",
  10575. height: math.unit(15, "kilometers")
  10576. },
  10577. {
  10578. name: "Gigamacro",
  10579. height: math.unit(2000, "km")
  10580. },
  10581. {
  10582. name: "Teramacro",
  10583. height: math.unit(500000, "km")
  10584. },
  10585. ]
  10586. ))
  10587. characterMakers.push(() => makeCharacter(
  10588. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10589. {
  10590. side: {
  10591. height: math.unit(6, "feet"),
  10592. name: "Side",
  10593. image: {
  10594. source: "./media/characters/ailbhe/side.svg",
  10595. extra: 757 / 464,
  10596. bottom: 0.041
  10597. }
  10598. },
  10599. },
  10600. [
  10601. {
  10602. name: "Normal",
  10603. height: math.unit(1.07, "meters"),
  10604. default: true
  10605. },
  10606. ]
  10607. ))
  10608. characterMakers.push(() => makeCharacter(
  10609. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10610. {
  10611. front: {
  10612. height: math.unit(6, "feet"),
  10613. weight: math.unit(120, "kg"),
  10614. name: "Front",
  10615. image: {
  10616. source: "./media/characters/zevulfius/front.svg",
  10617. extra: 965 / 903
  10618. }
  10619. },
  10620. side: {
  10621. height: math.unit(6, "feet"),
  10622. weight: math.unit(120, "kg"),
  10623. name: "Side",
  10624. image: {
  10625. source: "./media/characters/zevulfius/side.svg",
  10626. extra: 939 / 900
  10627. }
  10628. },
  10629. back: {
  10630. height: math.unit(6, "feet"),
  10631. weight: math.unit(120, "kg"),
  10632. name: "Back",
  10633. image: {
  10634. source: "./media/characters/zevulfius/back.svg",
  10635. extra: 918 / 854,
  10636. bottom: 0.005
  10637. }
  10638. },
  10639. foot: {
  10640. height: math.unit(6 / 3.72, "feet"),
  10641. name: "Foot",
  10642. image: {
  10643. source: "./media/characters/zevulfius/foot.svg"
  10644. }
  10645. },
  10646. },
  10647. [
  10648. {
  10649. name: "Macro",
  10650. height: math.unit(750, "meters")
  10651. },
  10652. {
  10653. name: "Megamacro",
  10654. height: math.unit(20, "km"),
  10655. default: true
  10656. },
  10657. {
  10658. name: "Gigamacro",
  10659. height: math.unit(2000, "km")
  10660. },
  10661. {
  10662. name: "Teramacro",
  10663. height: math.unit(250000, "km")
  10664. },
  10665. ]
  10666. ))
  10667. characterMakers.push(() => makeCharacter(
  10668. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10669. {
  10670. front: {
  10671. height: math.unit(100, "feet"),
  10672. weight: math.unit(350, "kg"),
  10673. name: "Front",
  10674. image: {
  10675. source: "./media/characters/rikes/front.svg",
  10676. extra: 1565 / 1483,
  10677. bottom: 0.017
  10678. }
  10679. },
  10680. },
  10681. [
  10682. {
  10683. name: "Macro",
  10684. height: math.unit(100, "feet"),
  10685. default: true
  10686. },
  10687. ]
  10688. ))
  10689. characterMakers.push(() => makeCharacter(
  10690. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10691. {
  10692. front: {
  10693. height: math.unit(8, "feet"),
  10694. weight: math.unit(356, "lb"),
  10695. name: "Front",
  10696. image: {
  10697. source: "./media/characters/adam-silver-mane/front.svg",
  10698. extra: 1036/937,
  10699. bottom: 63/1099
  10700. }
  10701. },
  10702. side: {
  10703. height: math.unit(8, "feet"),
  10704. weight: math.unit(356, "lb"),
  10705. name: "Side",
  10706. image: {
  10707. source: "./media/characters/adam-silver-mane/side.svg",
  10708. extra: 997/901,
  10709. bottom: 59/1056
  10710. }
  10711. },
  10712. frontNsfw: {
  10713. height: math.unit(8, "feet"),
  10714. weight: math.unit(356, "lb"),
  10715. name: "Front (NSFW)",
  10716. image: {
  10717. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10718. extra: 1036/937,
  10719. bottom: 63/1099
  10720. }
  10721. },
  10722. sideNsfw: {
  10723. height: math.unit(8, "feet"),
  10724. weight: math.unit(356, "lb"),
  10725. name: "Side (NSFW)",
  10726. image: {
  10727. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10728. extra: 997/901,
  10729. bottom: 59/1056
  10730. }
  10731. },
  10732. dick: {
  10733. height: math.unit(2.1, "feet"),
  10734. name: "Dick",
  10735. image: {
  10736. source: "./media/characters/adam-silver-mane/dick.svg"
  10737. }
  10738. },
  10739. taur: {
  10740. height: math.unit(16, "feet"),
  10741. weight: math.unit(1500, "kg"),
  10742. name: "Taur",
  10743. image: {
  10744. source: "./media/characters/adam-silver-mane/taur.svg",
  10745. extra: 1713 / 1571,
  10746. bottom: 0.01
  10747. }
  10748. },
  10749. },
  10750. [
  10751. {
  10752. name: "Normal",
  10753. height: math.unit(8, "feet")
  10754. },
  10755. {
  10756. name: "Minimacro",
  10757. height: math.unit(80, "feet")
  10758. },
  10759. {
  10760. name: "MDA",
  10761. height: math.unit(80, "meters")
  10762. },
  10763. {
  10764. name: "Macro",
  10765. height: math.unit(800, "feet"),
  10766. default: true
  10767. },
  10768. {
  10769. name: "Megamacro",
  10770. height: math.unit(8000, "feet")
  10771. },
  10772. {
  10773. name: "Gigamacro",
  10774. height: math.unit(800, "miles")
  10775. },
  10776. {
  10777. name: "Teramacro",
  10778. height: math.unit(80000, "miles")
  10779. },
  10780. {
  10781. name: "Celestial",
  10782. height: math.unit(8e6, "miles")
  10783. },
  10784. {
  10785. name: "Star Dragon",
  10786. height: math.unit(800000, "parsecs")
  10787. },
  10788. {
  10789. name: "Godly",
  10790. height: math.unit(800, "teraparsecs")
  10791. },
  10792. ]
  10793. ))
  10794. characterMakers.push(() => makeCharacter(
  10795. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10796. {
  10797. front: {
  10798. height: math.unit(6, "feet"),
  10799. weight: math.unit(150, "lb"),
  10800. name: "Front",
  10801. image: {
  10802. source: "./media/characters/ky'owin/front.svg",
  10803. extra: 3888 / 3068,
  10804. bottom: 0.015
  10805. }
  10806. },
  10807. },
  10808. [
  10809. {
  10810. name: "Normal",
  10811. height: math.unit(6 + 8 / 12, "feet")
  10812. },
  10813. {
  10814. name: "Large",
  10815. height: math.unit(68, "feet")
  10816. },
  10817. {
  10818. name: "Macro",
  10819. height: math.unit(132, "feet")
  10820. },
  10821. {
  10822. name: "Macro+",
  10823. height: math.unit(340, "feet")
  10824. },
  10825. {
  10826. name: "Macro++",
  10827. height: math.unit(680, "feet"),
  10828. default: true
  10829. },
  10830. {
  10831. name: "Megamacro",
  10832. height: math.unit(1, "mile")
  10833. },
  10834. {
  10835. name: "Megamacro+",
  10836. height: math.unit(10, "miles")
  10837. },
  10838. ]
  10839. ))
  10840. characterMakers.push(() => makeCharacter(
  10841. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10842. {
  10843. front: {
  10844. height: math.unit(4, "feet"),
  10845. weight: math.unit(50, "lb"),
  10846. name: "Front",
  10847. image: {
  10848. source: "./media/characters/mal/front.svg",
  10849. extra: 785 / 724,
  10850. bottom: 0.07
  10851. }
  10852. },
  10853. },
  10854. [
  10855. {
  10856. name: "Micro",
  10857. height: math.unit(4, "inches")
  10858. },
  10859. {
  10860. name: "Normal",
  10861. height: math.unit(4, "feet"),
  10862. default: true
  10863. },
  10864. {
  10865. name: "Macro",
  10866. height: math.unit(200, "feet")
  10867. },
  10868. ]
  10869. ))
  10870. characterMakers.push(() => makeCharacter(
  10871. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10872. {
  10873. front: {
  10874. height: math.unit(6, "feet"),
  10875. weight: math.unit(150, "lb"),
  10876. name: "Front",
  10877. image: {
  10878. source: "./media/characters/jordan-deware/front.svg",
  10879. extra: 1191 / 1012
  10880. }
  10881. },
  10882. },
  10883. [
  10884. {
  10885. name: "Nano",
  10886. height: math.unit(0.01, "mm")
  10887. },
  10888. {
  10889. name: "Minimicro",
  10890. height: math.unit(1, "mm")
  10891. },
  10892. {
  10893. name: "Micro",
  10894. height: math.unit(0.5, "inches")
  10895. },
  10896. {
  10897. name: "Normal",
  10898. height: math.unit(4, "feet"),
  10899. default: true
  10900. },
  10901. {
  10902. name: "Minimacro",
  10903. height: math.unit(40, "meters")
  10904. },
  10905. {
  10906. name: "Small Macro",
  10907. height: math.unit(400, "meters")
  10908. },
  10909. {
  10910. name: "Macro",
  10911. height: math.unit(4, "miles")
  10912. },
  10913. {
  10914. name: "Megamacro",
  10915. height: math.unit(40, "miles")
  10916. },
  10917. {
  10918. name: "Megamacro+",
  10919. height: math.unit(400, "miles")
  10920. },
  10921. {
  10922. name: "Gigamacro",
  10923. height: math.unit(400000, "miles")
  10924. },
  10925. ]
  10926. ))
  10927. characterMakers.push(() => makeCharacter(
  10928. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10929. {
  10930. side: {
  10931. height: math.unit(6, "feet"),
  10932. weight: math.unit(150, "lb"),
  10933. name: "Side",
  10934. image: {
  10935. source: "./media/characters/kimiko/side.svg",
  10936. extra: 600 / 358
  10937. }
  10938. },
  10939. },
  10940. [
  10941. {
  10942. name: "Normal",
  10943. height: math.unit(15, "feet"),
  10944. default: true
  10945. },
  10946. {
  10947. name: "Macro",
  10948. height: math.unit(220, "feet")
  10949. },
  10950. {
  10951. name: "Macro+",
  10952. height: math.unit(1450, "feet")
  10953. },
  10954. {
  10955. name: "Megamacro",
  10956. height: math.unit(11500, "feet")
  10957. },
  10958. {
  10959. name: "Gigamacro",
  10960. height: math.unit(9500, "miles")
  10961. },
  10962. {
  10963. name: "Teramacro",
  10964. height: math.unit(2208005005, "miles")
  10965. },
  10966. {
  10967. name: "Examacro",
  10968. height: math.unit(2750, "parsecs")
  10969. },
  10970. {
  10971. name: "Zettamacro",
  10972. height: math.unit(101500, "parsecs")
  10973. },
  10974. ]
  10975. ))
  10976. characterMakers.push(() => makeCharacter(
  10977. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10978. {
  10979. front: {
  10980. height: math.unit(6, "feet"),
  10981. weight: math.unit(70, "kg"),
  10982. name: "Front",
  10983. image: {
  10984. source: "./media/characters/andrew-sleepy/front.svg"
  10985. }
  10986. },
  10987. side: {
  10988. height: math.unit(6, "feet"),
  10989. weight: math.unit(70, "kg"),
  10990. name: "Side",
  10991. image: {
  10992. source: "./media/characters/andrew-sleepy/side.svg"
  10993. }
  10994. },
  10995. },
  10996. [
  10997. {
  10998. name: "Micro",
  10999. height: math.unit(1, "mm"),
  11000. default: true
  11001. },
  11002. ]
  11003. ))
  11004. characterMakers.push(() => makeCharacter(
  11005. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11006. {
  11007. front: {
  11008. height: math.unit(6, "feet"),
  11009. weight: math.unit(150, "lb"),
  11010. name: "Front",
  11011. image: {
  11012. source: "./media/characters/judio/front.svg",
  11013. extra: 1258 / 1110
  11014. }
  11015. },
  11016. },
  11017. [
  11018. {
  11019. name: "Normal",
  11020. height: math.unit(5 + 6 / 12, "feet")
  11021. },
  11022. {
  11023. name: "Macro",
  11024. height: math.unit(1000, "feet"),
  11025. default: true
  11026. },
  11027. {
  11028. name: "Megamacro",
  11029. height: math.unit(10, "miles")
  11030. },
  11031. ]
  11032. ))
  11033. characterMakers.push(() => makeCharacter(
  11034. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11035. {
  11036. front: {
  11037. height: math.unit(6, "feet"),
  11038. weight: math.unit(68, "kg"),
  11039. name: "Front",
  11040. image: {
  11041. source: "./media/characters/nomaxice/front.svg",
  11042. extra: 1498 / 1073,
  11043. bottom: 0.075
  11044. }
  11045. },
  11046. foot: {
  11047. height: math.unit(1.1, "feet"),
  11048. name: "Foot",
  11049. image: {
  11050. source: "./media/characters/nomaxice/foot.svg"
  11051. }
  11052. },
  11053. },
  11054. [
  11055. {
  11056. name: "Micro",
  11057. height: math.unit(8, "cm")
  11058. },
  11059. {
  11060. name: "Norm",
  11061. height: math.unit(1.82, "m")
  11062. },
  11063. {
  11064. name: "Norm+",
  11065. height: math.unit(8.8, "feet")
  11066. },
  11067. {
  11068. name: "Big",
  11069. height: math.unit(8, "meters"),
  11070. default: true
  11071. },
  11072. {
  11073. name: "Macro",
  11074. height: math.unit(18, "meters")
  11075. },
  11076. {
  11077. name: "Macro+",
  11078. height: math.unit(88, "meters")
  11079. },
  11080. ]
  11081. ))
  11082. characterMakers.push(() => makeCharacter(
  11083. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11084. {
  11085. front: {
  11086. height: math.unit(12, "feet"),
  11087. weight: math.unit(1.5, "tons"),
  11088. name: "Front",
  11089. image: {
  11090. source: "./media/characters/dydros/front.svg",
  11091. extra: 863 / 800,
  11092. bottom: 0.015
  11093. }
  11094. },
  11095. back: {
  11096. height: math.unit(12, "feet"),
  11097. weight: math.unit(1.5, "tons"),
  11098. name: "Back",
  11099. image: {
  11100. source: "./media/characters/dydros/back.svg",
  11101. extra: 900 / 843,
  11102. bottom: 0.005
  11103. }
  11104. },
  11105. },
  11106. [
  11107. {
  11108. name: "Normal",
  11109. height: math.unit(12, "feet"),
  11110. default: true
  11111. },
  11112. ]
  11113. ))
  11114. characterMakers.push(() => makeCharacter(
  11115. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11116. {
  11117. front: {
  11118. height: math.unit(6, "feet"),
  11119. weight: math.unit(100, "kg"),
  11120. name: "Front",
  11121. image: {
  11122. source: "./media/characters/riggi/front.svg",
  11123. extra: 5787 / 5303
  11124. }
  11125. },
  11126. hyper: {
  11127. height: math.unit(6 * 5 / 3, "feet"),
  11128. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11129. name: "Hyper",
  11130. image: {
  11131. source: "./media/characters/riggi/hyper.svg",
  11132. extra: 3595 / 3485
  11133. }
  11134. },
  11135. },
  11136. [
  11137. {
  11138. name: "Small Macro",
  11139. height: math.unit(50, "feet")
  11140. },
  11141. {
  11142. name: "Default",
  11143. height: math.unit(200, "feet"),
  11144. default: true
  11145. },
  11146. {
  11147. name: "Loom",
  11148. height: math.unit(10000, "feet")
  11149. },
  11150. {
  11151. name: "Cruising Altitude",
  11152. height: math.unit(30000, "feet")
  11153. },
  11154. {
  11155. name: "Megamacro",
  11156. height: math.unit(100, "miles")
  11157. },
  11158. {
  11159. name: "Continent Sized",
  11160. height: math.unit(2800, "miles")
  11161. },
  11162. {
  11163. name: "Earth Sized",
  11164. height: math.unit(8000, "miles")
  11165. },
  11166. ]
  11167. ))
  11168. characterMakers.push(() => makeCharacter(
  11169. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11170. {
  11171. front: {
  11172. height: math.unit(6, "feet"),
  11173. weight: math.unit(250, "lb"),
  11174. name: "Front",
  11175. image: {
  11176. source: "./media/characters/alexi/front.svg",
  11177. extra: 3483 / 3291,
  11178. bottom: 0.04
  11179. }
  11180. },
  11181. back: {
  11182. height: math.unit(6, "feet"),
  11183. weight: math.unit(250, "lb"),
  11184. name: "Back",
  11185. image: {
  11186. source: "./media/characters/alexi/back.svg",
  11187. extra: 3533 / 3356,
  11188. bottom: 0.021
  11189. }
  11190. },
  11191. frontTransforming: {
  11192. height: math.unit(8.58, "feet"),
  11193. weight: math.unit(1300, "lb"),
  11194. name: "Transforming",
  11195. image: {
  11196. source: "./media/characters/alexi/front-transforming.svg",
  11197. extra: 437 / 409,
  11198. bottom: 19 / 458.66
  11199. }
  11200. },
  11201. frontTransformed: {
  11202. height: math.unit(12.5, "feet"),
  11203. weight: math.unit(4000, "lb"),
  11204. name: "Transformed",
  11205. image: {
  11206. source: "./media/characters/alexi/front-transformed.svg",
  11207. extra: 639 / 614,
  11208. bottom: 30.55 / 671
  11209. }
  11210. },
  11211. },
  11212. [
  11213. {
  11214. name: "Normal",
  11215. height: math.unit(14, "feet"),
  11216. default: true
  11217. },
  11218. {
  11219. name: "Minimacro",
  11220. height: math.unit(30, "meters")
  11221. },
  11222. {
  11223. name: "Macro",
  11224. height: math.unit(500, "meters")
  11225. },
  11226. {
  11227. name: "Megamacro",
  11228. height: math.unit(9000, "km")
  11229. },
  11230. {
  11231. name: "Teramacro",
  11232. height: math.unit(384000, "km")
  11233. },
  11234. ]
  11235. ))
  11236. characterMakers.push(() => makeCharacter(
  11237. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11238. {
  11239. front: {
  11240. height: math.unit(6, "feet"),
  11241. weight: math.unit(150, "lb"),
  11242. name: "Front",
  11243. image: {
  11244. source: "./media/characters/kayroo/front.svg",
  11245. extra: 1153 / 1038,
  11246. bottom: 0.06
  11247. }
  11248. },
  11249. foot: {
  11250. height: math.unit(6, "feet"),
  11251. weight: math.unit(150, "lb"),
  11252. name: "Foot",
  11253. image: {
  11254. source: "./media/characters/kayroo/foot.svg"
  11255. }
  11256. },
  11257. },
  11258. [
  11259. {
  11260. name: "Normal",
  11261. height: math.unit(8, "feet"),
  11262. default: true
  11263. },
  11264. {
  11265. name: "Minimacro",
  11266. height: math.unit(250, "feet")
  11267. },
  11268. {
  11269. name: "Macro",
  11270. height: math.unit(2800, "feet")
  11271. },
  11272. {
  11273. name: "Megamacro",
  11274. height: math.unit(5200, "feet")
  11275. },
  11276. {
  11277. name: "Gigamacro",
  11278. height: math.unit(27000, "feet")
  11279. },
  11280. {
  11281. name: "Omega",
  11282. height: math.unit(45000, "feet")
  11283. },
  11284. ]
  11285. ))
  11286. characterMakers.push(() => makeCharacter(
  11287. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11288. {
  11289. front: {
  11290. height: math.unit(18, "feet"),
  11291. weight: math.unit(5800, "lb"),
  11292. name: "Front",
  11293. image: {
  11294. source: "./media/characters/rhys/front.svg",
  11295. extra: 3386 / 3090,
  11296. bottom: 0.07
  11297. }
  11298. },
  11299. },
  11300. [
  11301. {
  11302. name: "Normal",
  11303. height: math.unit(18, "feet"),
  11304. default: true
  11305. },
  11306. {
  11307. name: "Working Size",
  11308. height: math.unit(200, "feet")
  11309. },
  11310. {
  11311. name: "Demolition Size",
  11312. height: math.unit(2000, "feet")
  11313. },
  11314. {
  11315. name: "Maximum Licensed Size",
  11316. height: math.unit(5, "miles")
  11317. },
  11318. {
  11319. name: "Maximum Observed Size",
  11320. height: math.unit(10, "yottameters")
  11321. },
  11322. ]
  11323. ))
  11324. characterMakers.push(() => makeCharacter(
  11325. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11326. {
  11327. front: {
  11328. height: math.unit(6, "feet"),
  11329. weight: math.unit(250, "lb"),
  11330. name: "Front",
  11331. image: {
  11332. source: "./media/characters/toto/front.svg",
  11333. extra: 527 / 479,
  11334. bottom: 0.05
  11335. }
  11336. },
  11337. },
  11338. [
  11339. {
  11340. name: "Micro",
  11341. height: math.unit(3, "feet")
  11342. },
  11343. {
  11344. name: "Normal",
  11345. height: math.unit(10, "feet")
  11346. },
  11347. {
  11348. name: "Macro",
  11349. height: math.unit(150, "feet"),
  11350. default: true
  11351. },
  11352. {
  11353. name: "Megamacro",
  11354. height: math.unit(1200, "feet")
  11355. },
  11356. ]
  11357. ))
  11358. characterMakers.push(() => makeCharacter(
  11359. { name: "King", species: ["lion"], tags: ["anthro"] },
  11360. {
  11361. back: {
  11362. height: math.unit(6, "feet"),
  11363. weight: math.unit(150, "lb"),
  11364. name: "Back",
  11365. image: {
  11366. source: "./media/characters/king/back.svg"
  11367. }
  11368. },
  11369. },
  11370. [
  11371. {
  11372. name: "Micro",
  11373. height: math.unit(2, "inches")
  11374. },
  11375. {
  11376. name: "Normal",
  11377. height: math.unit(8, "feet")
  11378. },
  11379. {
  11380. name: "Macro",
  11381. height: math.unit(200, "feet"),
  11382. default: true
  11383. },
  11384. {
  11385. name: "Megamacro",
  11386. height: math.unit(50, "miles")
  11387. },
  11388. ]
  11389. ))
  11390. characterMakers.push(() => makeCharacter(
  11391. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11392. {
  11393. front: {
  11394. height: math.unit(11, "feet"),
  11395. weight: math.unit(1400, "lb"),
  11396. name: "Front",
  11397. image: {
  11398. source: "./media/characters/cordite/front.svg",
  11399. extra: 1919/1827,
  11400. bottom: 40/1959
  11401. }
  11402. },
  11403. side: {
  11404. height: math.unit(11, "feet"),
  11405. weight: math.unit(1400, "lb"),
  11406. name: "Side",
  11407. image: {
  11408. source: "./media/characters/cordite/side.svg",
  11409. extra: 1908/1793,
  11410. bottom: 38/1946
  11411. }
  11412. },
  11413. back: {
  11414. height: math.unit(11, "feet"),
  11415. weight: math.unit(1400, "lb"),
  11416. name: "Back",
  11417. image: {
  11418. source: "./media/characters/cordite/back.svg",
  11419. extra: 1938/1837,
  11420. bottom: 10/1948
  11421. }
  11422. },
  11423. feral: {
  11424. height: math.unit(2, "feet"),
  11425. weight: math.unit(90, "lb"),
  11426. name: "Feral",
  11427. image: {
  11428. source: "./media/characters/cordite/feral.svg",
  11429. extra: 1260 / 755,
  11430. bottom: 0.05
  11431. }
  11432. },
  11433. },
  11434. [
  11435. {
  11436. name: "Normal",
  11437. height: math.unit(11, "feet"),
  11438. default: true
  11439. },
  11440. ]
  11441. ))
  11442. characterMakers.push(() => makeCharacter(
  11443. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11444. {
  11445. front: {
  11446. height: math.unit(6, "feet"),
  11447. weight: math.unit(150, "lb"),
  11448. name: "Front",
  11449. image: {
  11450. source: "./media/characters/pianostrong/front.svg",
  11451. extra: 6577 / 6254,
  11452. bottom: 0.02
  11453. }
  11454. },
  11455. side: {
  11456. height: math.unit(6, "feet"),
  11457. weight: math.unit(150, "lb"),
  11458. name: "Side",
  11459. image: {
  11460. source: "./media/characters/pianostrong/side.svg",
  11461. extra: 6106 / 5730
  11462. }
  11463. },
  11464. back: {
  11465. height: math.unit(6, "feet"),
  11466. weight: math.unit(150, "lb"),
  11467. name: "Back",
  11468. image: {
  11469. source: "./media/characters/pianostrong/back.svg",
  11470. extra: 6085 / 5733,
  11471. bottom: 0.01
  11472. }
  11473. },
  11474. },
  11475. [
  11476. {
  11477. name: "Macro",
  11478. height: math.unit(100, "feet")
  11479. },
  11480. {
  11481. name: "Macro+",
  11482. height: math.unit(300, "feet"),
  11483. default: true
  11484. },
  11485. {
  11486. name: "Macro++",
  11487. height: math.unit(1000, "feet")
  11488. },
  11489. ]
  11490. ))
  11491. characterMakers.push(() => makeCharacter(
  11492. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11493. {
  11494. front: {
  11495. height: math.unit(6, "feet"),
  11496. weight: math.unit(150, "lb"),
  11497. name: "Front",
  11498. image: {
  11499. source: "./media/characters/kona/front.svg",
  11500. extra: 2960 / 2629,
  11501. bottom: 0.005
  11502. }
  11503. },
  11504. },
  11505. [
  11506. {
  11507. name: "Normal",
  11508. height: math.unit(11 + 8 / 12, "feet")
  11509. },
  11510. {
  11511. name: "Macro",
  11512. height: math.unit(850, "feet"),
  11513. default: true
  11514. },
  11515. {
  11516. name: "Macro+",
  11517. height: math.unit(1.5, "km"),
  11518. default: true
  11519. },
  11520. {
  11521. name: "Megamacro",
  11522. height: math.unit(80, "miles")
  11523. },
  11524. {
  11525. name: "Gigamacro",
  11526. height: math.unit(3500, "miles")
  11527. },
  11528. ]
  11529. ))
  11530. characterMakers.push(() => makeCharacter(
  11531. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11532. {
  11533. side: {
  11534. height: math.unit(1.9, "meters"),
  11535. weight: math.unit(326, "kg"),
  11536. name: "Side",
  11537. image: {
  11538. source: "./media/characters/levi/side.svg",
  11539. extra: 1704 / 1334,
  11540. bottom: 0.02
  11541. }
  11542. },
  11543. },
  11544. [
  11545. {
  11546. name: "Normal",
  11547. height: math.unit(1.9, "meters"),
  11548. default: true
  11549. },
  11550. {
  11551. name: "Macro",
  11552. height: math.unit(20, "meters")
  11553. },
  11554. {
  11555. name: "Macro+",
  11556. height: math.unit(200, "meters")
  11557. },
  11558. {
  11559. name: "Megamacro",
  11560. height: math.unit(2, "km")
  11561. },
  11562. {
  11563. name: "Megamacro+",
  11564. height: math.unit(20, "km")
  11565. },
  11566. {
  11567. name: "Gigamacro",
  11568. height: math.unit(2500, "km")
  11569. },
  11570. {
  11571. name: "Gigamacro+",
  11572. height: math.unit(120000, "km")
  11573. },
  11574. {
  11575. name: "Teramacro",
  11576. height: math.unit(7.77e6, "km")
  11577. },
  11578. ]
  11579. ))
  11580. characterMakers.push(() => makeCharacter(
  11581. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11582. {
  11583. front: {
  11584. height: math.unit(6 + 4/12, "feet"),
  11585. weight: math.unit(190, "lb"),
  11586. name: "Front",
  11587. image: {
  11588. source: "./media/characters/bmc/front.svg",
  11589. extra: 1626/1472,
  11590. bottom: 79/1705
  11591. }
  11592. },
  11593. back: {
  11594. height: math.unit(6 + 4/12, "feet"),
  11595. weight: math.unit(190, "lb"),
  11596. name: "Back",
  11597. image: {
  11598. source: "./media/characters/bmc/back.svg",
  11599. extra: 1640/1479,
  11600. bottom: 45/1685
  11601. }
  11602. },
  11603. frontArmor: {
  11604. height: math.unit(6 + 4/12, "feet"),
  11605. weight: math.unit(190, "lb"),
  11606. name: "Front-armor",
  11607. image: {
  11608. source: "./media/characters/bmc/front-armor.svg",
  11609. extra: 1538/1468,
  11610. bottom: 79/1617
  11611. }
  11612. },
  11613. },
  11614. [
  11615. {
  11616. name: "Human-sized",
  11617. height: math.unit(6 + 4 / 12, "feet")
  11618. },
  11619. {
  11620. name: "Interactive Size",
  11621. height: math.unit(25, "feet")
  11622. },
  11623. {
  11624. name: "Small",
  11625. height: math.unit(250, "feet")
  11626. },
  11627. {
  11628. name: "Normal",
  11629. height: math.unit(1250, "feet"),
  11630. default: true
  11631. },
  11632. {
  11633. name: "Good Day",
  11634. height: math.unit(88, "miles")
  11635. },
  11636. {
  11637. name: "Largest Measured Size",
  11638. height: math.unit(105.960, "galaxies")
  11639. },
  11640. ]
  11641. ))
  11642. characterMakers.push(() => makeCharacter(
  11643. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11644. {
  11645. front: {
  11646. height: math.unit(20, "feet"),
  11647. weight: math.unit(2016, "kg"),
  11648. name: "Front",
  11649. image: {
  11650. source: "./media/characters/sven-the-kaiju/front.svg",
  11651. extra: 1277/1250,
  11652. bottom: 35/1312
  11653. }
  11654. },
  11655. mouth: {
  11656. height: math.unit(1.85, "feet"),
  11657. name: "Mouth",
  11658. image: {
  11659. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11660. }
  11661. },
  11662. },
  11663. [
  11664. {
  11665. name: "Fairy",
  11666. height: math.unit(6, "inches")
  11667. },
  11668. {
  11669. name: "Normal",
  11670. height: math.unit(20, "feet"),
  11671. default: true
  11672. },
  11673. {
  11674. name: "Rampage",
  11675. height: math.unit(200, "feet")
  11676. },
  11677. {
  11678. name: "Archfey Forest Guardian",
  11679. height: math.unit(1, "mile")
  11680. },
  11681. ]
  11682. ))
  11683. characterMakers.push(() => makeCharacter(
  11684. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11685. {
  11686. front: {
  11687. height: math.unit(4, "meters"),
  11688. weight: math.unit(2, "tons"),
  11689. name: "Front",
  11690. image: {
  11691. source: "./media/characters/marik/front.svg",
  11692. extra: 1057 / 1003,
  11693. bottom: 0.08
  11694. }
  11695. },
  11696. },
  11697. [
  11698. {
  11699. name: "Normal",
  11700. height: math.unit(4, "meters"),
  11701. default: true
  11702. },
  11703. {
  11704. name: "Macro",
  11705. height: math.unit(20, "meters")
  11706. },
  11707. {
  11708. name: "Megamacro",
  11709. height: math.unit(50, "km")
  11710. },
  11711. {
  11712. name: "Gigamacro",
  11713. height: math.unit(100, "km")
  11714. },
  11715. {
  11716. name: "Alpha Macro",
  11717. height: math.unit(7.88e7, "yottameters")
  11718. },
  11719. ]
  11720. ))
  11721. characterMakers.push(() => makeCharacter(
  11722. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11723. {
  11724. front: {
  11725. height: math.unit(6, "feet"),
  11726. weight: math.unit(110, "lb"),
  11727. name: "Front",
  11728. image: {
  11729. source: "./media/characters/mel/front.svg",
  11730. extra: 736 / 617,
  11731. bottom: 0.017
  11732. }
  11733. },
  11734. },
  11735. [
  11736. {
  11737. name: "Pico",
  11738. height: math.unit(3, "pm")
  11739. },
  11740. {
  11741. name: "Nano",
  11742. height: math.unit(3, "nm")
  11743. },
  11744. {
  11745. name: "Micro",
  11746. height: math.unit(0.3, "mm"),
  11747. default: true
  11748. },
  11749. {
  11750. name: "Micro+",
  11751. height: math.unit(3, "mm")
  11752. },
  11753. {
  11754. name: "Normal",
  11755. height: math.unit(5 + 10.5 / 12, "feet")
  11756. },
  11757. ]
  11758. ))
  11759. characterMakers.push(() => makeCharacter(
  11760. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11761. {
  11762. kaiju: {
  11763. height: math.unit(1.75, "meters"),
  11764. weight: math.unit(55, "kg"),
  11765. name: "Kaiju",
  11766. image: {
  11767. source: "./media/characters/lykonous/kaiju.svg",
  11768. extra: 1055 / 946,
  11769. bottom: 0.135
  11770. }
  11771. },
  11772. },
  11773. [
  11774. {
  11775. name: "Normal",
  11776. height: math.unit(2.5, "meters"),
  11777. default: true
  11778. },
  11779. {
  11780. name: "Kaiju Dragon",
  11781. height: math.unit(60, "meters")
  11782. },
  11783. {
  11784. name: "Mega Kaiju",
  11785. height: math.unit(120, "km")
  11786. },
  11787. {
  11788. name: "Giga Kaiju",
  11789. height: math.unit(200, "megameters")
  11790. },
  11791. {
  11792. name: "Terra Kaiju",
  11793. height: math.unit(400, "gigameters")
  11794. },
  11795. {
  11796. name: "Kaiju Dragon God",
  11797. height: math.unit(13000, "exaparsecs")
  11798. },
  11799. ]
  11800. ))
  11801. characterMakers.push(() => makeCharacter(
  11802. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11803. {
  11804. front: {
  11805. height: math.unit(6, "feet"),
  11806. weight: math.unit(150, "lb"),
  11807. name: "Front",
  11808. image: {
  11809. source: "./media/characters/blü/front.svg",
  11810. extra: 1883 / 1564,
  11811. bottom: 0.031
  11812. }
  11813. },
  11814. },
  11815. [
  11816. {
  11817. name: "Normal",
  11818. height: math.unit(13, "feet"),
  11819. default: true
  11820. },
  11821. {
  11822. name: "Big Boi",
  11823. height: math.unit(150, "meters")
  11824. },
  11825. {
  11826. name: "Mini Stomper",
  11827. height: math.unit(300, "meters")
  11828. },
  11829. {
  11830. name: "Macro",
  11831. height: math.unit(1000, "meters")
  11832. },
  11833. {
  11834. name: "Megamacro",
  11835. height: math.unit(11000, "meters")
  11836. },
  11837. {
  11838. name: "Gigamacro",
  11839. height: math.unit(11000, "km")
  11840. },
  11841. {
  11842. name: "Teramacro",
  11843. height: math.unit(420000, "km")
  11844. },
  11845. {
  11846. name: "Examacro",
  11847. height: math.unit(120, "parsecs")
  11848. },
  11849. {
  11850. name: "God Tho",
  11851. height: math.unit(98000000000, "parsecs")
  11852. },
  11853. ]
  11854. ))
  11855. characterMakers.push(() => makeCharacter(
  11856. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11857. {
  11858. taurFront: {
  11859. height: math.unit(6, "feet"),
  11860. weight: math.unit(200, "lb"),
  11861. name: "Taur (Front)",
  11862. image: {
  11863. source: "./media/characters/scales/taur-front.svg",
  11864. extra: 1,
  11865. bottom: 0.05
  11866. }
  11867. },
  11868. taurBack: {
  11869. height: math.unit(6, "feet"),
  11870. weight: math.unit(200, "lb"),
  11871. name: "Taur (Back)",
  11872. image: {
  11873. source: "./media/characters/scales/taur-back.svg",
  11874. extra: 1,
  11875. bottom: 0.08
  11876. }
  11877. },
  11878. anthro: {
  11879. height: math.unit(6 * 7 / 12, "feet"),
  11880. weight: math.unit(100, "lb"),
  11881. name: "Anthro",
  11882. image: {
  11883. source: "./media/characters/scales/anthro.svg",
  11884. extra: 1,
  11885. bottom: 0.06
  11886. }
  11887. },
  11888. },
  11889. [
  11890. {
  11891. name: "Normal",
  11892. height: math.unit(12, "feet"),
  11893. default: true
  11894. },
  11895. ]
  11896. ))
  11897. characterMakers.push(() => makeCharacter(
  11898. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11899. {
  11900. front: {
  11901. height: math.unit(6, "feet"),
  11902. weight: math.unit(150, "lb"),
  11903. name: "Front",
  11904. image: {
  11905. source: "./media/characters/koragos/front.svg",
  11906. extra: 841 / 794,
  11907. bottom: 0.035
  11908. }
  11909. },
  11910. back: {
  11911. height: math.unit(6, "feet"),
  11912. weight: math.unit(150, "lb"),
  11913. name: "Back",
  11914. image: {
  11915. source: "./media/characters/koragos/back.svg",
  11916. extra: 841 / 810,
  11917. bottom: 0.022
  11918. }
  11919. },
  11920. },
  11921. [
  11922. {
  11923. name: "Normal",
  11924. height: math.unit(6 + 11 / 12, "feet"),
  11925. default: true
  11926. },
  11927. {
  11928. name: "Macro",
  11929. height: math.unit(490, "feet")
  11930. },
  11931. {
  11932. name: "Megamacro",
  11933. height: math.unit(10, "miles")
  11934. },
  11935. {
  11936. name: "Gigamacro",
  11937. height: math.unit(50, "miles")
  11938. },
  11939. ]
  11940. ))
  11941. characterMakers.push(() => makeCharacter(
  11942. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11943. {
  11944. front: {
  11945. height: math.unit(6, "feet"),
  11946. weight: math.unit(250, "lb"),
  11947. name: "Front",
  11948. image: {
  11949. source: "./media/characters/xylrem/front.svg",
  11950. extra: 3323 / 3050,
  11951. bottom: 0.065
  11952. }
  11953. },
  11954. },
  11955. [
  11956. {
  11957. name: "Micro",
  11958. height: math.unit(4, "feet")
  11959. },
  11960. {
  11961. name: "Normal",
  11962. height: math.unit(16, "feet"),
  11963. default: true
  11964. },
  11965. {
  11966. name: "Macro",
  11967. height: math.unit(2720, "feet")
  11968. },
  11969. {
  11970. name: "Megamacro",
  11971. height: math.unit(25000, "miles")
  11972. },
  11973. ]
  11974. ))
  11975. characterMakers.push(() => makeCharacter(
  11976. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11977. {
  11978. front: {
  11979. height: math.unit(8, "feet"),
  11980. weight: math.unit(250, "kg"),
  11981. name: "Front",
  11982. image: {
  11983. source: "./media/characters/ikideru/front.svg",
  11984. extra: 930 / 870,
  11985. bottom: 0.087
  11986. }
  11987. },
  11988. back: {
  11989. height: math.unit(8, "feet"),
  11990. weight: math.unit(250, "kg"),
  11991. name: "Back",
  11992. image: {
  11993. source: "./media/characters/ikideru/back.svg",
  11994. extra: 919 / 852,
  11995. bottom: 0.055
  11996. }
  11997. },
  11998. },
  11999. [
  12000. {
  12001. name: "Rare",
  12002. height: math.unit(8, "feet"),
  12003. default: true
  12004. },
  12005. {
  12006. name: "Playful Loom",
  12007. height: math.unit(80, "feet")
  12008. },
  12009. {
  12010. name: "City Leaner",
  12011. height: math.unit(230, "feet")
  12012. },
  12013. {
  12014. name: "Megamacro",
  12015. height: math.unit(2500, "feet")
  12016. },
  12017. {
  12018. name: "Gigamacro",
  12019. height: math.unit(26400, "feet")
  12020. },
  12021. {
  12022. name: "Tectonic Shifter",
  12023. height: math.unit(1.7, "megameters")
  12024. },
  12025. {
  12026. name: "Planet Carer",
  12027. height: math.unit(21, "megameters")
  12028. },
  12029. {
  12030. name: "God",
  12031. height: math.unit(11157.22, "parsecs")
  12032. },
  12033. ]
  12034. ))
  12035. characterMakers.push(() => makeCharacter(
  12036. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12037. {
  12038. front: {
  12039. height: math.unit(6, "feet"),
  12040. weight: math.unit(120, "lb"),
  12041. name: "Front",
  12042. image: {
  12043. source: "./media/characters/neo/front.svg"
  12044. }
  12045. },
  12046. },
  12047. [
  12048. {
  12049. name: "Micro",
  12050. height: math.unit(2, "inches"),
  12051. default: true
  12052. },
  12053. {
  12054. name: "Human Size",
  12055. height: math.unit(5 + 8 / 12, "feet")
  12056. },
  12057. ]
  12058. ))
  12059. characterMakers.push(() => makeCharacter(
  12060. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12061. {
  12062. front: {
  12063. height: math.unit(13 + 10 / 12, "feet"),
  12064. weight: math.unit(5320, "lb"),
  12065. name: "Front",
  12066. image: {
  12067. source: "./media/characters/chauncey-chantz/front.svg",
  12068. extra: 1587 / 1435,
  12069. bottom: 0.02
  12070. }
  12071. },
  12072. },
  12073. [
  12074. {
  12075. name: "Normal",
  12076. height: math.unit(13 + 10 / 12, "feet"),
  12077. default: true
  12078. },
  12079. {
  12080. name: "Macro",
  12081. height: math.unit(45, "feet")
  12082. },
  12083. {
  12084. name: "Megamacro",
  12085. height: math.unit(250, "miles")
  12086. },
  12087. {
  12088. name: "Planetary",
  12089. height: math.unit(10000, "miles")
  12090. },
  12091. {
  12092. name: "Galactic",
  12093. height: math.unit(40000, "parsecs")
  12094. },
  12095. {
  12096. name: "Universal",
  12097. height: math.unit(1, "yottameter")
  12098. },
  12099. ]
  12100. ))
  12101. characterMakers.push(() => makeCharacter(
  12102. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12103. {
  12104. front: {
  12105. height: math.unit(6, "feet"),
  12106. weight: math.unit(150, "lb"),
  12107. name: "Front",
  12108. image: {
  12109. source: "./media/characters/epifox/front.svg",
  12110. extra: 1,
  12111. bottom: 0.075
  12112. }
  12113. },
  12114. },
  12115. [
  12116. {
  12117. name: "Micro",
  12118. height: math.unit(6, "inches")
  12119. },
  12120. {
  12121. name: "Normal",
  12122. height: math.unit(12, "feet"),
  12123. default: true
  12124. },
  12125. {
  12126. name: "Macro",
  12127. height: math.unit(3810, "feet")
  12128. },
  12129. {
  12130. name: "Megamacro",
  12131. height: math.unit(500, "miles")
  12132. },
  12133. ]
  12134. ))
  12135. characterMakers.push(() => makeCharacter(
  12136. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12137. {
  12138. front: {
  12139. height: math.unit(1.8796, "m"),
  12140. weight: math.unit(230, "lb"),
  12141. name: "Front",
  12142. image: {
  12143. source: "./media/characters/colin-t/front.svg",
  12144. extra: 1272 / 1193,
  12145. bottom: 0.07
  12146. }
  12147. },
  12148. },
  12149. [
  12150. {
  12151. name: "Micro",
  12152. height: math.unit(0.571, "meters")
  12153. },
  12154. {
  12155. name: "Normal",
  12156. height: math.unit(1.8796, "meters"),
  12157. default: true
  12158. },
  12159. {
  12160. name: "Tall",
  12161. height: math.unit(4, "meters")
  12162. },
  12163. {
  12164. name: "Macro",
  12165. height: math.unit(67.241, "meters")
  12166. },
  12167. {
  12168. name: "Megamacro",
  12169. height: math.unit(371.856, "meters")
  12170. },
  12171. {
  12172. name: "Planetary",
  12173. height: math.unit(12631.5689, "km")
  12174. },
  12175. ]
  12176. ))
  12177. characterMakers.push(() => makeCharacter(
  12178. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12179. {
  12180. front: {
  12181. height: math.unit(1.85, "meters"),
  12182. weight: math.unit(80, "kg"),
  12183. name: "Front",
  12184. image: {
  12185. source: "./media/characters/matvei/front.svg",
  12186. extra: 614 / 594,
  12187. bottom: 0.01
  12188. }
  12189. },
  12190. },
  12191. [
  12192. {
  12193. name: "Normal",
  12194. height: math.unit(1.85, "meters"),
  12195. default: true
  12196. },
  12197. ]
  12198. ))
  12199. characterMakers.push(() => makeCharacter(
  12200. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12201. {
  12202. front: {
  12203. height: math.unit(5 + 9 / 12, "feet"),
  12204. weight: math.unit(70, "lb"),
  12205. name: "Front",
  12206. image: {
  12207. source: "./media/characters/quincy/front.svg",
  12208. extra: 3041 / 2751
  12209. }
  12210. },
  12211. back: {
  12212. height: math.unit(5 + 9 / 12, "feet"),
  12213. weight: math.unit(70, "lb"),
  12214. name: "Back",
  12215. image: {
  12216. source: "./media/characters/quincy/back.svg",
  12217. extra: 3041 / 2751
  12218. }
  12219. },
  12220. flying: {
  12221. height: math.unit(5 + 4 / 12, "feet"),
  12222. weight: math.unit(70, "lb"),
  12223. name: "Flying",
  12224. image: {
  12225. source: "./media/characters/quincy/flying.svg",
  12226. extra: 1044 / 930
  12227. }
  12228. },
  12229. },
  12230. [
  12231. {
  12232. name: "Micro",
  12233. height: math.unit(3, "cm")
  12234. },
  12235. {
  12236. name: "Normal",
  12237. height: math.unit(5 + 9 / 12, "feet")
  12238. },
  12239. {
  12240. name: "Macro",
  12241. height: math.unit(200, "meters"),
  12242. default: true
  12243. },
  12244. {
  12245. name: "Megamacro",
  12246. height: math.unit(1000, "meters")
  12247. },
  12248. ]
  12249. ))
  12250. characterMakers.push(() => makeCharacter(
  12251. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12252. {
  12253. front: {
  12254. height: math.unit(3 + 11/12, "feet"),
  12255. weight: math.unit(50, "lb"),
  12256. name: "Front",
  12257. image: {
  12258. source: "./media/characters/vanrel/front.svg",
  12259. extra: 1104/949,
  12260. bottom: 52/1156
  12261. }
  12262. },
  12263. back: {
  12264. height: math.unit(3 + 11/12, "feet"),
  12265. weight: math.unit(50, "lb"),
  12266. name: "Back",
  12267. image: {
  12268. source: "./media/characters/vanrel/back.svg",
  12269. extra: 1119/976,
  12270. bottom: 37/1156
  12271. }
  12272. },
  12273. tome: {
  12274. height: math.unit(1.35, "feet"),
  12275. weight: math.unit(10, "lb"),
  12276. name: "Vanrel's Tome",
  12277. rename: true,
  12278. image: {
  12279. source: "./media/characters/vanrel/tome.svg"
  12280. }
  12281. },
  12282. beans: {
  12283. height: math.unit(0.89, "feet"),
  12284. name: "Beans",
  12285. image: {
  12286. source: "./media/characters/vanrel/beans.svg"
  12287. }
  12288. },
  12289. },
  12290. [
  12291. {
  12292. name: "Normal",
  12293. height: math.unit(3 + 11/12, "feet"),
  12294. default: true
  12295. },
  12296. ]
  12297. ))
  12298. characterMakers.push(() => makeCharacter(
  12299. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12300. {
  12301. front: {
  12302. height: math.unit(7 + 5 / 12, "feet"),
  12303. name: "Front",
  12304. image: {
  12305. source: "./media/characters/kuiper-vanrel/front.svg",
  12306. extra: 1219/1169,
  12307. bottom: 69/1288
  12308. }
  12309. },
  12310. back: {
  12311. height: math.unit(7 + 5 / 12, "feet"),
  12312. name: "Back",
  12313. image: {
  12314. source: "./media/characters/kuiper-vanrel/back.svg",
  12315. extra: 1236/1193,
  12316. bottom: 27/1263
  12317. }
  12318. },
  12319. foot: {
  12320. height: math.unit(0.55, "meters"),
  12321. name: "Foot",
  12322. image: {
  12323. source: "./media/characters/kuiper-vanrel/foot.svg",
  12324. }
  12325. },
  12326. battle: {
  12327. height: math.unit(6.824, "feet"),
  12328. name: "Battle",
  12329. image: {
  12330. source: "./media/characters/kuiper-vanrel/battle.svg",
  12331. extra: 1466 / 1327,
  12332. bottom: 29 / 1492.5
  12333. }
  12334. },
  12335. meerkui: {
  12336. height: math.unit(18, "inches"),
  12337. name: "Meerkui",
  12338. image: {
  12339. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12340. extra: 1354/1289,
  12341. bottom: 69/1423
  12342. }
  12343. },
  12344. },
  12345. [
  12346. {
  12347. name: "Normal",
  12348. height: math.unit(7 + 5 / 12, "feet"),
  12349. default: true
  12350. },
  12351. ]
  12352. ))
  12353. characterMakers.push(() => makeCharacter(
  12354. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12355. {
  12356. front: {
  12357. height: math.unit(8 + 5 / 12, "feet"),
  12358. name: "Front",
  12359. image: {
  12360. source: "./media/characters/keset-vanrel/front.svg",
  12361. extra: 1231/1148,
  12362. bottom: 82/1313
  12363. }
  12364. },
  12365. back: {
  12366. height: math.unit(8 + 5 / 12, "feet"),
  12367. name: "Back",
  12368. image: {
  12369. source: "./media/characters/keset-vanrel/back.svg",
  12370. extra: 1240/1174,
  12371. bottom: 33/1273
  12372. }
  12373. },
  12374. hand: {
  12375. height: math.unit(0.6, "meters"),
  12376. name: "Hand",
  12377. image: {
  12378. source: "./media/characters/keset-vanrel/hand.svg"
  12379. }
  12380. },
  12381. foot: {
  12382. height: math.unit(0.94978, "meters"),
  12383. name: "Foot",
  12384. image: {
  12385. source: "./media/characters/keset-vanrel/foot.svg"
  12386. }
  12387. },
  12388. battle: {
  12389. height: math.unit(7.408, "feet"),
  12390. name: "Battle",
  12391. image: {
  12392. source: "./media/characters/keset-vanrel/battle.svg",
  12393. extra: 1890 / 1386,
  12394. bottom: 73.28 / 1970
  12395. }
  12396. },
  12397. },
  12398. [
  12399. {
  12400. name: "Normal",
  12401. height: math.unit(8 + 5 / 12, "feet"),
  12402. default: true
  12403. },
  12404. ]
  12405. ))
  12406. characterMakers.push(() => makeCharacter(
  12407. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12408. {
  12409. front: {
  12410. height: math.unit(6, "feet"),
  12411. weight: math.unit(150, "lb"),
  12412. name: "Front",
  12413. image: {
  12414. source: "./media/characters/neos/front.svg",
  12415. extra: 1696 / 992,
  12416. bottom: 0.14
  12417. }
  12418. },
  12419. },
  12420. [
  12421. {
  12422. name: "Normal",
  12423. height: math.unit(54, "cm"),
  12424. default: true
  12425. },
  12426. {
  12427. name: "Macro",
  12428. height: math.unit(100, "m")
  12429. },
  12430. {
  12431. name: "Megamacro",
  12432. height: math.unit(10, "km")
  12433. },
  12434. {
  12435. name: "Megamacro+",
  12436. height: math.unit(100, "km")
  12437. },
  12438. {
  12439. name: "Gigamacro",
  12440. height: math.unit(100, "Mm")
  12441. },
  12442. {
  12443. name: "Teramacro",
  12444. height: math.unit(100, "Gm")
  12445. },
  12446. {
  12447. name: "Examacro",
  12448. height: math.unit(100, "Em")
  12449. },
  12450. {
  12451. name: "Godly",
  12452. height: math.unit(10000, "Ym")
  12453. },
  12454. {
  12455. name: "Beyond Godly",
  12456. height: math.unit(25, "multiverses")
  12457. },
  12458. ]
  12459. ))
  12460. characterMakers.push(() => makeCharacter(
  12461. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12462. {
  12463. feminine: {
  12464. height: math.unit(5, "feet"),
  12465. weight: math.unit(100, "lb"),
  12466. name: "Feminine",
  12467. image: {
  12468. source: "./media/characters/sammy-mouse/feminine.svg",
  12469. extra: 2526 / 2425,
  12470. bottom: 0.123
  12471. }
  12472. },
  12473. masculine: {
  12474. height: math.unit(5, "feet"),
  12475. weight: math.unit(100, "lb"),
  12476. name: "Masculine",
  12477. image: {
  12478. source: "./media/characters/sammy-mouse/masculine.svg",
  12479. extra: 2526 / 2425,
  12480. bottom: 0.123
  12481. }
  12482. },
  12483. },
  12484. [
  12485. {
  12486. name: "Micro",
  12487. height: math.unit(5, "inches")
  12488. },
  12489. {
  12490. name: "Normal",
  12491. height: math.unit(5, "feet"),
  12492. default: true
  12493. },
  12494. {
  12495. name: "Macro",
  12496. height: math.unit(60, "feet")
  12497. },
  12498. ]
  12499. ))
  12500. characterMakers.push(() => makeCharacter(
  12501. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12502. {
  12503. front: {
  12504. height: math.unit(4, "feet"),
  12505. weight: math.unit(50, "lb"),
  12506. name: "Front",
  12507. image: {
  12508. source: "./media/characters/kole/front.svg",
  12509. extra: 1423 / 1303,
  12510. bottom: 0.025
  12511. }
  12512. },
  12513. back: {
  12514. height: math.unit(4, "feet"),
  12515. weight: math.unit(50, "lb"),
  12516. name: "Back",
  12517. image: {
  12518. source: "./media/characters/kole/back.svg",
  12519. extra: 1426 / 1280,
  12520. bottom: 0.02
  12521. }
  12522. },
  12523. },
  12524. [
  12525. {
  12526. name: "Normal",
  12527. height: math.unit(4, "feet"),
  12528. default: true
  12529. },
  12530. ]
  12531. ))
  12532. characterMakers.push(() => makeCharacter(
  12533. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12534. {
  12535. front: {
  12536. height: math.unit(2.5, "feet"),
  12537. weight: math.unit(32, "lb"),
  12538. name: "Front",
  12539. image: {
  12540. source: "./media/characters/rufran/front.svg",
  12541. extra: 1313/885,
  12542. bottom: 94/1407
  12543. }
  12544. },
  12545. side: {
  12546. height: math.unit(2.5, "feet"),
  12547. weight: math.unit(32, "lb"),
  12548. name: "Side",
  12549. image: {
  12550. source: "./media/characters/rufran/side.svg",
  12551. extra: 1109/852,
  12552. bottom: 118/1227
  12553. }
  12554. },
  12555. back: {
  12556. height: math.unit(2.5, "feet"),
  12557. weight: math.unit(32, "lb"),
  12558. name: "Back",
  12559. image: {
  12560. source: "./media/characters/rufran/back.svg",
  12561. extra: 1280/878,
  12562. bottom: 131/1411
  12563. }
  12564. },
  12565. mouth: {
  12566. height: math.unit(1.13, "feet"),
  12567. name: "Mouth",
  12568. image: {
  12569. source: "./media/characters/rufran/mouth.svg"
  12570. }
  12571. },
  12572. foot: {
  12573. height: math.unit(1.33, "feet"),
  12574. name: "Foot",
  12575. image: {
  12576. source: "./media/characters/rufran/foot.svg"
  12577. }
  12578. },
  12579. koboldFront: {
  12580. height: math.unit(2 + 6 / 12, "feet"),
  12581. weight: math.unit(20, "lb"),
  12582. name: "Front (Kobold)",
  12583. image: {
  12584. source: "./media/characters/rufran/kobold-front.svg",
  12585. extra: 2041 / 1839,
  12586. bottom: 0.055
  12587. }
  12588. },
  12589. koboldBack: {
  12590. height: math.unit(2 + 6 / 12, "feet"),
  12591. weight: math.unit(20, "lb"),
  12592. name: "Back (Kobold)",
  12593. image: {
  12594. source: "./media/characters/rufran/kobold-back.svg",
  12595. extra: 2054 / 1839,
  12596. bottom: 0.01
  12597. }
  12598. },
  12599. koboldHand: {
  12600. height: math.unit(0.2166, "meters"),
  12601. name: "Hand (Kobold)",
  12602. image: {
  12603. source: "./media/characters/rufran/kobold-hand.svg"
  12604. }
  12605. },
  12606. koboldFoot: {
  12607. height: math.unit(0.185, "meters"),
  12608. name: "Foot (Kobold)",
  12609. image: {
  12610. source: "./media/characters/rufran/kobold-foot.svg"
  12611. }
  12612. },
  12613. },
  12614. [
  12615. {
  12616. name: "Micro",
  12617. height: math.unit(1, "inch")
  12618. },
  12619. {
  12620. name: "Normal",
  12621. height: math.unit(2 + 6 / 12, "feet"),
  12622. default: true
  12623. },
  12624. {
  12625. name: "Big",
  12626. height: math.unit(60, "feet")
  12627. },
  12628. {
  12629. name: "Macro",
  12630. height: math.unit(325, "feet")
  12631. },
  12632. ]
  12633. ))
  12634. characterMakers.push(() => makeCharacter(
  12635. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12636. {
  12637. front: {
  12638. height: math.unit(0.3, "meters"),
  12639. weight: math.unit(3.5, "kg"),
  12640. name: "Front",
  12641. image: {
  12642. source: "./media/characters/chip/front.svg",
  12643. extra: 748 / 674
  12644. }
  12645. },
  12646. },
  12647. [
  12648. {
  12649. name: "Micro",
  12650. height: math.unit(1, "inch"),
  12651. default: true
  12652. },
  12653. ]
  12654. ))
  12655. characterMakers.push(() => makeCharacter(
  12656. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12657. {
  12658. side: {
  12659. height: math.unit(2.3, "meters"),
  12660. weight: math.unit(3500, "lb"),
  12661. name: "Side",
  12662. image: {
  12663. source: "./media/characters/torvid/side.svg",
  12664. extra: 1972 / 722,
  12665. bottom: 0.035
  12666. }
  12667. },
  12668. },
  12669. [
  12670. {
  12671. name: "Normal",
  12672. height: math.unit(2.3, "meters"),
  12673. default: true
  12674. },
  12675. ]
  12676. ))
  12677. characterMakers.push(() => makeCharacter(
  12678. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12679. {
  12680. front: {
  12681. height: math.unit(2, "meters"),
  12682. weight: math.unit(150.5, "kg"),
  12683. name: "Front",
  12684. image: {
  12685. source: "./media/characters/susan/front.svg",
  12686. extra: 693 / 635,
  12687. bottom: 0.05
  12688. }
  12689. },
  12690. },
  12691. [
  12692. {
  12693. name: "Megamacro",
  12694. height: math.unit(505, "miles"),
  12695. default: true
  12696. },
  12697. ]
  12698. ))
  12699. characterMakers.push(() => makeCharacter(
  12700. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12701. {
  12702. front: {
  12703. height: math.unit(6, "feet"),
  12704. weight: math.unit(150, "lb"),
  12705. name: "Front",
  12706. image: {
  12707. source: "./media/characters/raindrops/front.svg",
  12708. extra: 2655 / 2461,
  12709. bottom: 49 / 2705
  12710. }
  12711. },
  12712. back: {
  12713. height: math.unit(6, "feet"),
  12714. weight: math.unit(150, "lb"),
  12715. name: "Back",
  12716. image: {
  12717. source: "./media/characters/raindrops/back.svg",
  12718. extra: 2574 / 2400,
  12719. bottom: 65 / 2634
  12720. }
  12721. },
  12722. },
  12723. [
  12724. {
  12725. name: "Micro",
  12726. height: math.unit(6, "inches")
  12727. },
  12728. {
  12729. name: "Normal",
  12730. height: math.unit(6 + 2 / 12, "feet")
  12731. },
  12732. {
  12733. name: "Macro",
  12734. height: math.unit(131, "feet"),
  12735. default: true
  12736. },
  12737. {
  12738. name: "Megamacro",
  12739. height: math.unit(15, "miles")
  12740. },
  12741. {
  12742. name: "Gigamacro",
  12743. height: math.unit(4000, "miles")
  12744. },
  12745. {
  12746. name: "Teramacro",
  12747. height: math.unit(315000, "miles")
  12748. },
  12749. ]
  12750. ))
  12751. characterMakers.push(() => makeCharacter(
  12752. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12753. {
  12754. front: {
  12755. height: math.unit(2.794, "meters"),
  12756. weight: math.unit(325, "kg"),
  12757. name: "Front",
  12758. image: {
  12759. source: "./media/characters/tezwa/front.svg",
  12760. extra: 2083 / 1906,
  12761. bottom: 0.031
  12762. }
  12763. },
  12764. foot: {
  12765. height: math.unit(0.687, "meters"),
  12766. name: "Foot",
  12767. image: {
  12768. source: "./media/characters/tezwa/foot.svg"
  12769. }
  12770. },
  12771. },
  12772. [
  12773. {
  12774. name: "Normal",
  12775. height: math.unit(9 + 2 / 12, "feet"),
  12776. default: true
  12777. },
  12778. ]
  12779. ))
  12780. characterMakers.push(() => makeCharacter(
  12781. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12782. {
  12783. front: {
  12784. height: math.unit(58, "feet"),
  12785. weight: math.unit(89000, "lb"),
  12786. name: "Front",
  12787. image: {
  12788. source: "./media/characters/typhus/front.svg",
  12789. extra: 816 / 800,
  12790. bottom: 0.065
  12791. }
  12792. },
  12793. },
  12794. [
  12795. {
  12796. name: "Macro",
  12797. height: math.unit(58, "feet"),
  12798. default: true
  12799. },
  12800. ]
  12801. ))
  12802. characterMakers.push(() => makeCharacter(
  12803. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12804. {
  12805. front: {
  12806. height: math.unit(12, "feet"),
  12807. weight: math.unit(6, "tonnes"),
  12808. name: "Front",
  12809. image: {
  12810. source: "./media/characters/lyra-von-wulf/front.svg",
  12811. extra: 1,
  12812. bottom: 0.10
  12813. }
  12814. },
  12815. frontMecha: {
  12816. height: math.unit(12, "feet"),
  12817. weight: math.unit(12, "tonnes"),
  12818. name: "Front (Mecha)",
  12819. image: {
  12820. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12821. extra: 1,
  12822. bottom: 0.042
  12823. }
  12824. },
  12825. maw: {
  12826. height: math.unit(2.2, "feet"),
  12827. name: "Maw",
  12828. image: {
  12829. source: "./media/characters/lyra-von-wulf/maw.svg"
  12830. }
  12831. },
  12832. },
  12833. [
  12834. {
  12835. name: "Normal",
  12836. height: math.unit(12, "feet"),
  12837. default: true
  12838. },
  12839. {
  12840. name: "Classic",
  12841. height: math.unit(50, "feet")
  12842. },
  12843. {
  12844. name: "Macro",
  12845. height: math.unit(500, "feet")
  12846. },
  12847. {
  12848. name: "Megamacro",
  12849. height: math.unit(1, "mile")
  12850. },
  12851. {
  12852. name: "Gigamacro",
  12853. height: math.unit(400, "miles")
  12854. },
  12855. {
  12856. name: "Teramacro",
  12857. height: math.unit(22000, "miles")
  12858. },
  12859. {
  12860. name: "Solarmacro",
  12861. height: math.unit(8600000, "miles")
  12862. },
  12863. {
  12864. name: "Galactic",
  12865. height: math.unit(1057000, "lightyears")
  12866. },
  12867. ]
  12868. ))
  12869. characterMakers.push(() => makeCharacter(
  12870. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12871. {
  12872. front: {
  12873. height: math.unit(6 + 10 / 12, "feet"),
  12874. weight: math.unit(150, "lb"),
  12875. name: "Front",
  12876. image: {
  12877. source: "./media/characters/dixon/front.svg",
  12878. extra: 3361 / 3209,
  12879. bottom: 0.01
  12880. }
  12881. },
  12882. },
  12883. [
  12884. {
  12885. name: "Normal",
  12886. height: math.unit(6 + 10 / 12, "feet"),
  12887. default: true
  12888. },
  12889. {
  12890. name: "Big",
  12891. height: math.unit(12, "meters")
  12892. },
  12893. {
  12894. name: "Macro",
  12895. height: math.unit(500, "meters")
  12896. },
  12897. {
  12898. name: "Megamacro",
  12899. height: math.unit(2, "km")
  12900. },
  12901. ]
  12902. ))
  12903. characterMakers.push(() => makeCharacter(
  12904. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12905. {
  12906. front: {
  12907. height: math.unit(185, "cm"),
  12908. weight: math.unit(68, "kg"),
  12909. name: "Front",
  12910. image: {
  12911. source: "./media/characters/kauko/front.svg",
  12912. extra: 1455 / 1421,
  12913. bottom: 0.03
  12914. }
  12915. },
  12916. back: {
  12917. height: math.unit(185, "cm"),
  12918. weight: math.unit(68, "kg"),
  12919. name: "Back",
  12920. image: {
  12921. source: "./media/characters/kauko/back.svg",
  12922. extra: 1455 / 1421,
  12923. bottom: 0.004
  12924. }
  12925. },
  12926. },
  12927. [
  12928. {
  12929. name: "Normal",
  12930. height: math.unit(185, "cm"),
  12931. default: true
  12932. },
  12933. ]
  12934. ))
  12935. characterMakers.push(() => makeCharacter(
  12936. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12937. {
  12938. front: {
  12939. height: math.unit(6, "feet"),
  12940. weight: math.unit(150, "kg"),
  12941. name: "Front",
  12942. image: {
  12943. source: "./media/characters/varg/front.svg",
  12944. extra: 1108 / 1018,
  12945. bottom: 0.0375
  12946. }
  12947. },
  12948. },
  12949. [
  12950. {
  12951. name: "Normal",
  12952. height: math.unit(5, "meters")
  12953. },
  12954. {
  12955. name: "Macro",
  12956. height: math.unit(200, "meters")
  12957. },
  12958. {
  12959. name: "Megamacro",
  12960. height: math.unit(20, "kilometers")
  12961. },
  12962. {
  12963. name: "True Size",
  12964. height: math.unit(211, "km"),
  12965. default: true
  12966. },
  12967. {
  12968. name: "Gigamacro",
  12969. height: math.unit(1000, "km")
  12970. },
  12971. {
  12972. name: "Gigamacro+",
  12973. height: math.unit(8000, "km")
  12974. },
  12975. {
  12976. name: "Teramacro",
  12977. height: math.unit(1000000, "km")
  12978. },
  12979. ]
  12980. ))
  12981. characterMakers.push(() => makeCharacter(
  12982. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12983. {
  12984. front: {
  12985. height: math.unit(7 + 7 / 12, "feet"),
  12986. weight: math.unit(267, "lb"),
  12987. name: "Front",
  12988. image: {
  12989. source: "./media/characters/dayza/front.svg",
  12990. extra: 1262 / 1200,
  12991. bottom: 0.035
  12992. }
  12993. },
  12994. side: {
  12995. height: math.unit(7 + 7 / 12, "feet"),
  12996. weight: math.unit(267, "lb"),
  12997. name: "Side",
  12998. image: {
  12999. source: "./media/characters/dayza/side.svg",
  13000. extra: 1295 / 1245,
  13001. bottom: 0.05
  13002. }
  13003. },
  13004. back: {
  13005. height: math.unit(7 + 7 / 12, "feet"),
  13006. weight: math.unit(267, "lb"),
  13007. name: "Back",
  13008. image: {
  13009. source: "./media/characters/dayza/back.svg",
  13010. extra: 1241 / 1170
  13011. }
  13012. },
  13013. },
  13014. [
  13015. {
  13016. name: "Normal",
  13017. height: math.unit(7 + 7 / 12, "feet"),
  13018. default: true
  13019. },
  13020. {
  13021. name: "Macro",
  13022. height: math.unit(155, "feet")
  13023. },
  13024. ]
  13025. ))
  13026. characterMakers.push(() => makeCharacter(
  13027. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13028. {
  13029. front: {
  13030. height: math.unit(6 + 5 / 12, "feet"),
  13031. weight: math.unit(160, "lb"),
  13032. name: "Front",
  13033. image: {
  13034. source: "./media/characters/xanthos/front.svg",
  13035. extra: 1,
  13036. bottom: 0.04
  13037. }
  13038. },
  13039. back: {
  13040. height: math.unit(6 + 5 / 12, "feet"),
  13041. weight: math.unit(160, "lb"),
  13042. name: "Back",
  13043. image: {
  13044. source: "./media/characters/xanthos/back.svg",
  13045. extra: 1,
  13046. bottom: 0.03
  13047. }
  13048. },
  13049. hand: {
  13050. height: math.unit(0.928, "feet"),
  13051. name: "Hand",
  13052. image: {
  13053. source: "./media/characters/xanthos/hand.svg"
  13054. }
  13055. },
  13056. foot: {
  13057. height: math.unit(1.286, "feet"),
  13058. name: "Foot",
  13059. image: {
  13060. source: "./media/characters/xanthos/foot.svg"
  13061. }
  13062. },
  13063. },
  13064. [
  13065. {
  13066. name: "Normal",
  13067. height: math.unit(6 + 5 / 12, "feet"),
  13068. default: true
  13069. },
  13070. {
  13071. name: "Normal+",
  13072. height: math.unit(6, "meters")
  13073. },
  13074. {
  13075. name: "Macro",
  13076. height: math.unit(40, "feet")
  13077. },
  13078. {
  13079. name: "Macro+",
  13080. height: math.unit(200, "meters")
  13081. },
  13082. {
  13083. name: "Megamacro",
  13084. height: math.unit(20, "km")
  13085. },
  13086. {
  13087. name: "Megamacro+",
  13088. height: math.unit(100, "km")
  13089. },
  13090. {
  13091. name: "Gigamacro",
  13092. height: math.unit(200, "megameters")
  13093. },
  13094. {
  13095. name: "Gigamacro+",
  13096. height: math.unit(1.5, "gigameters")
  13097. },
  13098. ]
  13099. ))
  13100. characterMakers.push(() => makeCharacter(
  13101. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13102. {
  13103. front: {
  13104. height: math.unit(6 + 3 / 12, "feet"),
  13105. weight: math.unit(215, "lb"),
  13106. name: "Front",
  13107. image: {
  13108. source: "./media/characters/grynn/front.svg",
  13109. extra: 4627 / 4209,
  13110. bottom: 0.047
  13111. }
  13112. },
  13113. },
  13114. [
  13115. {
  13116. name: "Micro",
  13117. height: math.unit(6, "inches")
  13118. },
  13119. {
  13120. name: "Normal",
  13121. height: math.unit(6 + 3 / 12, "feet"),
  13122. default: true
  13123. },
  13124. {
  13125. name: "Big",
  13126. height: math.unit(104, "feet")
  13127. },
  13128. {
  13129. name: "Macro",
  13130. height: math.unit(944, "feet")
  13131. },
  13132. {
  13133. name: "Macro+",
  13134. height: math.unit(9480, "feet")
  13135. },
  13136. {
  13137. name: "Megamacro",
  13138. height: math.unit(78752, "feet")
  13139. },
  13140. {
  13141. name: "Megamacro+",
  13142. height: math.unit(630128, "feet")
  13143. },
  13144. {
  13145. name: "Megamacro++",
  13146. height: math.unit(3150695, "feet")
  13147. },
  13148. ]
  13149. ))
  13150. characterMakers.push(() => makeCharacter(
  13151. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13152. {
  13153. front: {
  13154. height: math.unit(7 + 5 / 12, "feet"),
  13155. weight: math.unit(450, "lb"),
  13156. name: "Front",
  13157. image: {
  13158. source: "./media/characters/mocha-aura/front.svg",
  13159. extra: 1907 / 1817,
  13160. bottom: 0.04
  13161. }
  13162. },
  13163. back: {
  13164. height: math.unit(7 + 5 / 12, "feet"),
  13165. weight: math.unit(450, "lb"),
  13166. name: "Back",
  13167. image: {
  13168. source: "./media/characters/mocha-aura/back.svg",
  13169. extra: 1900 / 1825,
  13170. bottom: 0.045
  13171. }
  13172. },
  13173. },
  13174. [
  13175. {
  13176. name: "Nano",
  13177. height: math.unit(1, "nm")
  13178. },
  13179. {
  13180. name: "Megamicro",
  13181. height: math.unit(1, "mm")
  13182. },
  13183. {
  13184. name: "Micro",
  13185. height: math.unit(3, "inches")
  13186. },
  13187. {
  13188. name: "Normal",
  13189. height: math.unit(7 + 5 / 12, "feet"),
  13190. default: true
  13191. },
  13192. {
  13193. name: "Macro",
  13194. height: math.unit(30, "feet")
  13195. },
  13196. {
  13197. name: "Megamacro",
  13198. height: math.unit(3500, "feet")
  13199. },
  13200. {
  13201. name: "Teramacro",
  13202. height: math.unit(500000, "miles")
  13203. },
  13204. {
  13205. name: "Petamacro",
  13206. height: math.unit(50000000000000000, "parsecs")
  13207. },
  13208. ]
  13209. ))
  13210. characterMakers.push(() => makeCharacter(
  13211. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13212. {
  13213. front: {
  13214. height: math.unit(6, "feet"),
  13215. weight: math.unit(150, "lb"),
  13216. name: "Front",
  13217. image: {
  13218. source: "./media/characters/ilisha-devya/front.svg",
  13219. extra: 1053/1049,
  13220. bottom: 270/1323
  13221. }
  13222. },
  13223. back: {
  13224. height: math.unit(6, "feet"),
  13225. weight: math.unit(150, "lb"),
  13226. name: "Back",
  13227. image: {
  13228. source: "./media/characters/ilisha-devya/back.svg",
  13229. extra: 1131/1128,
  13230. bottom: 39/1170
  13231. }
  13232. },
  13233. },
  13234. [
  13235. {
  13236. name: "Macro",
  13237. height: math.unit(500, "feet"),
  13238. default: true
  13239. },
  13240. {
  13241. name: "Megamacro",
  13242. height: math.unit(10, "miles")
  13243. },
  13244. {
  13245. name: "Gigamacro",
  13246. height: math.unit(100000, "miles")
  13247. },
  13248. {
  13249. name: "Examacro",
  13250. height: math.unit(1e9, "lightyears")
  13251. },
  13252. {
  13253. name: "Omniversal",
  13254. height: math.unit(1e33, "lightyears")
  13255. },
  13256. {
  13257. name: "Beyond Infinite",
  13258. height: math.unit(1e100, "lightyears")
  13259. },
  13260. ]
  13261. ))
  13262. characterMakers.push(() => makeCharacter(
  13263. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13264. {
  13265. Side: {
  13266. height: math.unit(6, "feet"),
  13267. weight: math.unit(150, "lb"),
  13268. name: "Side",
  13269. image: {
  13270. source: "./media/characters/mira/side.svg",
  13271. extra: 900 / 799,
  13272. bottom: 0.02
  13273. }
  13274. },
  13275. },
  13276. [
  13277. {
  13278. name: "Human Size",
  13279. height: math.unit(6, "feet")
  13280. },
  13281. {
  13282. name: "Macro",
  13283. height: math.unit(100, "feet"),
  13284. default: true
  13285. },
  13286. {
  13287. name: "Megamacro",
  13288. height: math.unit(10, "miles")
  13289. },
  13290. {
  13291. name: "Gigamacro",
  13292. height: math.unit(25000, "miles")
  13293. },
  13294. {
  13295. name: "Teramacro",
  13296. height: math.unit(300, "AU")
  13297. },
  13298. {
  13299. name: "Full Size",
  13300. height: math.unit(4.5e10, "lightyears")
  13301. },
  13302. ]
  13303. ))
  13304. characterMakers.push(() => makeCharacter(
  13305. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13306. {
  13307. front: {
  13308. height: math.unit(6, "feet"),
  13309. weight: math.unit(150, "lb"),
  13310. name: "Front",
  13311. image: {
  13312. source: "./media/characters/holly/front.svg",
  13313. extra: 639 / 606
  13314. }
  13315. },
  13316. back: {
  13317. height: math.unit(6, "feet"),
  13318. weight: math.unit(150, "lb"),
  13319. name: "Back",
  13320. image: {
  13321. source: "./media/characters/holly/back.svg",
  13322. extra: 623 / 598
  13323. }
  13324. },
  13325. frontWorking: {
  13326. height: math.unit(6, "feet"),
  13327. weight: math.unit(150, "lb"),
  13328. name: "Front (Working)",
  13329. image: {
  13330. source: "./media/characters/holly/front-working.svg",
  13331. extra: 607 / 577,
  13332. bottom: 0.048
  13333. }
  13334. },
  13335. },
  13336. [
  13337. {
  13338. name: "Normal",
  13339. height: math.unit(12 + 3 / 12, "feet"),
  13340. default: true
  13341. },
  13342. ]
  13343. ))
  13344. characterMakers.push(() => makeCharacter(
  13345. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13346. {
  13347. front: {
  13348. height: math.unit(6, "feet"),
  13349. weight: math.unit(150, "lb"),
  13350. name: "Front",
  13351. image: {
  13352. source: "./media/characters/porter/front.svg",
  13353. extra: 1,
  13354. bottom: 0.01
  13355. }
  13356. },
  13357. frontRobes: {
  13358. height: math.unit(6, "feet"),
  13359. weight: math.unit(150, "lb"),
  13360. name: "Front (Robes)",
  13361. image: {
  13362. source: "./media/characters/porter/front-robes.svg",
  13363. extra: 1.01,
  13364. bottom: 0.01
  13365. }
  13366. },
  13367. },
  13368. [
  13369. {
  13370. name: "Normal",
  13371. height: math.unit(11 + 9 / 12, "feet"),
  13372. default: true
  13373. },
  13374. ]
  13375. ))
  13376. characterMakers.push(() => makeCharacter(
  13377. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13378. {
  13379. legendary: {
  13380. height: math.unit(6, "feet"),
  13381. weight: math.unit(150, "lb"),
  13382. name: "Legendary",
  13383. image: {
  13384. source: "./media/characters/lucy/legendary.svg",
  13385. extra: 1355 / 1100,
  13386. bottom: 0.045
  13387. }
  13388. },
  13389. },
  13390. [
  13391. {
  13392. name: "Legendary",
  13393. height: math.unit(86882 * 2, "miles"),
  13394. default: true
  13395. },
  13396. ]
  13397. ))
  13398. characterMakers.push(() => makeCharacter(
  13399. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13400. {
  13401. front: {
  13402. height: math.unit(6, "feet"),
  13403. weight: math.unit(150, "lb"),
  13404. name: "Front",
  13405. image: {
  13406. source: "./media/characters/drusilla/front.svg",
  13407. extra: 678 / 635,
  13408. bottom: 0.03
  13409. }
  13410. },
  13411. back: {
  13412. height: math.unit(6, "feet"),
  13413. weight: math.unit(150, "lb"),
  13414. name: "Back",
  13415. image: {
  13416. source: "./media/characters/drusilla/back.svg",
  13417. extra: 678 / 635,
  13418. bottom: 0.005
  13419. }
  13420. },
  13421. },
  13422. [
  13423. {
  13424. name: "Macro",
  13425. height: math.unit(100, "feet")
  13426. },
  13427. {
  13428. name: "Canon Height",
  13429. height: math.unit(2000, "feet"),
  13430. default: true
  13431. },
  13432. ]
  13433. ))
  13434. characterMakers.push(() => makeCharacter(
  13435. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13436. {
  13437. front: {
  13438. height: math.unit(6, "feet"),
  13439. weight: math.unit(180, "lb"),
  13440. name: "Front",
  13441. image: {
  13442. source: "./media/characters/renard-thatch/front.svg",
  13443. extra: 2411 / 2275,
  13444. bottom: 0.01
  13445. }
  13446. },
  13447. frontPosing: {
  13448. height: math.unit(6, "feet"),
  13449. weight: math.unit(180, "lb"),
  13450. name: "Front (Posing)",
  13451. image: {
  13452. source: "./media/characters/renard-thatch/front-posing.svg",
  13453. extra: 2381 / 2261,
  13454. bottom: 0.01
  13455. }
  13456. },
  13457. back: {
  13458. height: math.unit(6, "feet"),
  13459. weight: math.unit(180, "lb"),
  13460. name: "Back",
  13461. image: {
  13462. source: "./media/characters/renard-thatch/back.svg",
  13463. extra: 2428 / 2288
  13464. }
  13465. },
  13466. },
  13467. [
  13468. {
  13469. name: "Micro",
  13470. height: math.unit(3, "inches")
  13471. },
  13472. {
  13473. name: "Default",
  13474. height: math.unit(6, "feet"),
  13475. default: true
  13476. },
  13477. {
  13478. name: "Macro",
  13479. height: math.unit(75, "feet")
  13480. },
  13481. ]
  13482. ))
  13483. characterMakers.push(() => makeCharacter(
  13484. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13485. {
  13486. front: {
  13487. height: math.unit(1450, "feet"),
  13488. weight: math.unit(1.21e6, "tons"),
  13489. name: "Front",
  13490. image: {
  13491. source: "./media/characters/sekvra/front.svg",
  13492. extra: 1193/1190,
  13493. bottom: 78/1271
  13494. }
  13495. },
  13496. side: {
  13497. height: math.unit(1450, "feet"),
  13498. weight: math.unit(1.21e6, "tons"),
  13499. name: "Side",
  13500. image: {
  13501. source: "./media/characters/sekvra/side.svg",
  13502. extra: 1193/1190,
  13503. bottom: 52/1245
  13504. }
  13505. },
  13506. back: {
  13507. height: math.unit(1450, "feet"),
  13508. weight: math.unit(1.21e6, "tons"),
  13509. name: "Back",
  13510. image: {
  13511. source: "./media/characters/sekvra/back.svg",
  13512. extra: 1219/1216,
  13513. bottom: 21/1240
  13514. }
  13515. },
  13516. frontClothed: {
  13517. height: math.unit(1450, "feet"),
  13518. weight: math.unit(1.21e6, "tons"),
  13519. name: "Front (Clothed)",
  13520. image: {
  13521. source: "./media/characters/sekvra/front-clothed.svg",
  13522. extra: 1192/1189,
  13523. bottom: 79/1271
  13524. }
  13525. },
  13526. },
  13527. [
  13528. {
  13529. name: "Macro",
  13530. height: math.unit(1450, "feet"),
  13531. default: true
  13532. },
  13533. {
  13534. name: "Megamacro",
  13535. height: math.unit(15000, "feet")
  13536. },
  13537. ]
  13538. ))
  13539. characterMakers.push(() => makeCharacter(
  13540. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13541. {
  13542. front: {
  13543. height: math.unit(6, "feet"),
  13544. weight: math.unit(150, "lb"),
  13545. name: "Front",
  13546. image: {
  13547. source: "./media/characters/carmine/front.svg",
  13548. extra: 1,
  13549. bottom: 0.035
  13550. }
  13551. },
  13552. frontArmor: {
  13553. height: math.unit(6, "feet"),
  13554. weight: math.unit(150, "lb"),
  13555. name: "Front (Armor)",
  13556. image: {
  13557. source: "./media/characters/carmine/front-armor.svg",
  13558. extra: 1,
  13559. bottom: 0.035
  13560. }
  13561. },
  13562. },
  13563. [
  13564. {
  13565. name: "Large",
  13566. height: math.unit(1, "mile")
  13567. },
  13568. {
  13569. name: "Huge",
  13570. height: math.unit(40, "miles"),
  13571. default: true
  13572. },
  13573. {
  13574. name: "Colossal",
  13575. height: math.unit(2500, "miles")
  13576. },
  13577. ]
  13578. ))
  13579. characterMakers.push(() => makeCharacter(
  13580. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13581. {
  13582. front: {
  13583. height: math.unit(6, "feet"),
  13584. weight: math.unit(150, "lb"),
  13585. name: "Front",
  13586. image: {
  13587. source: "./media/characters/elyssia/front.svg",
  13588. extra: 2201 / 2035,
  13589. bottom: 0.05
  13590. }
  13591. },
  13592. frontClothed: {
  13593. height: math.unit(6, "feet"),
  13594. weight: math.unit(150, "lb"),
  13595. name: "Front (Clothed)",
  13596. image: {
  13597. source: "./media/characters/elyssia/front-clothed.svg",
  13598. extra: 2201 / 2035,
  13599. bottom: 0.05
  13600. }
  13601. },
  13602. back: {
  13603. height: math.unit(6, "feet"),
  13604. weight: math.unit(150, "lb"),
  13605. name: "Back",
  13606. image: {
  13607. source: "./media/characters/elyssia/back.svg",
  13608. extra: 2201 / 2035,
  13609. bottom: 0.013
  13610. }
  13611. },
  13612. },
  13613. [
  13614. {
  13615. name: "Smaller",
  13616. height: math.unit(150, "feet")
  13617. },
  13618. {
  13619. name: "Standard",
  13620. height: math.unit(1400, "feet"),
  13621. default: true
  13622. },
  13623. {
  13624. name: "Distracted",
  13625. height: math.unit(15000, "feet")
  13626. },
  13627. ]
  13628. ))
  13629. characterMakers.push(() => makeCharacter(
  13630. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13631. {
  13632. front: {
  13633. height: math.unit(7 + 4/12, "feet"),
  13634. weight: math.unit(690, "lb"),
  13635. name: "Front",
  13636. image: {
  13637. source: "./media/characters/geno-maxwell/front.svg",
  13638. extra: 984/856,
  13639. bottom: 87/1071
  13640. }
  13641. },
  13642. back: {
  13643. height: math.unit(7 + 4/12, "feet"),
  13644. weight: math.unit(690, "lb"),
  13645. name: "Back",
  13646. image: {
  13647. source: "./media/characters/geno-maxwell/back.svg",
  13648. extra: 981/854,
  13649. bottom: 57/1038
  13650. }
  13651. },
  13652. frontCostume: {
  13653. height: math.unit(7 + 4/12, "feet"),
  13654. weight: math.unit(690, "lb"),
  13655. name: "Front (Costume)",
  13656. image: {
  13657. source: "./media/characters/geno-maxwell/front-costume.svg",
  13658. extra: 984/856,
  13659. bottom: 87/1071
  13660. }
  13661. },
  13662. backcostume: {
  13663. height: math.unit(7 + 4/12, "feet"),
  13664. weight: math.unit(690, "lb"),
  13665. name: "Back (Costume)",
  13666. image: {
  13667. source: "./media/characters/geno-maxwell/back-costume.svg",
  13668. extra: 981/854,
  13669. bottom: 57/1038
  13670. }
  13671. },
  13672. },
  13673. [
  13674. {
  13675. name: "Micro",
  13676. height: math.unit(3, "inches")
  13677. },
  13678. {
  13679. name: "Normal",
  13680. height: math.unit(7 + 4 / 12, "feet"),
  13681. default: true
  13682. },
  13683. {
  13684. name: "Macro",
  13685. height: math.unit(220, "feet")
  13686. },
  13687. {
  13688. name: "Megamacro",
  13689. height: math.unit(11, "miles")
  13690. },
  13691. ]
  13692. ))
  13693. characterMakers.push(() => makeCharacter(
  13694. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13695. {
  13696. front: {
  13697. height: math.unit(7 + 4/12, "feet"),
  13698. weight: math.unit(750, "lb"),
  13699. name: "Front",
  13700. image: {
  13701. source: "./media/characters/regena-maxwell/front.svg",
  13702. extra: 984/856,
  13703. bottom: 87/1071
  13704. }
  13705. },
  13706. back: {
  13707. height: math.unit(7 + 4/12, "feet"),
  13708. weight: math.unit(750, "lb"),
  13709. name: "Back",
  13710. image: {
  13711. source: "./media/characters/regena-maxwell/back.svg",
  13712. extra: 981/854,
  13713. bottom: 57/1038
  13714. }
  13715. },
  13716. frontCostume: {
  13717. height: math.unit(7 + 4/12, "feet"),
  13718. weight: math.unit(750, "lb"),
  13719. name: "Front (Costume)",
  13720. image: {
  13721. source: "./media/characters/regena-maxwell/front-costume.svg",
  13722. extra: 984/856,
  13723. bottom: 87/1071
  13724. }
  13725. },
  13726. backcostume: {
  13727. height: math.unit(7 + 4/12, "feet"),
  13728. weight: math.unit(750, "lb"),
  13729. name: "Back (Costume)",
  13730. image: {
  13731. source: "./media/characters/regena-maxwell/back-costume.svg",
  13732. extra: 981/854,
  13733. bottom: 57/1038
  13734. }
  13735. },
  13736. },
  13737. [
  13738. {
  13739. name: "Normal",
  13740. height: math.unit(7 + 4 / 12, "feet"),
  13741. default: true
  13742. },
  13743. {
  13744. name: "Macro",
  13745. height: math.unit(220, "feet")
  13746. },
  13747. {
  13748. name: "Megamacro",
  13749. height: math.unit(11, "miles")
  13750. },
  13751. ]
  13752. ))
  13753. characterMakers.push(() => makeCharacter(
  13754. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13755. {
  13756. front: {
  13757. height: math.unit(6, "feet"),
  13758. weight: math.unit(150, "lb"),
  13759. name: "Front",
  13760. image: {
  13761. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13762. extra: 860 / 690,
  13763. bottom: 0.03
  13764. }
  13765. },
  13766. },
  13767. [
  13768. {
  13769. name: "Normal",
  13770. height: math.unit(1.7, "meters"),
  13771. default: true
  13772. },
  13773. ]
  13774. ))
  13775. characterMakers.push(() => makeCharacter(
  13776. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13777. {
  13778. front: {
  13779. height: math.unit(6, "feet"),
  13780. weight: math.unit(150, "lb"),
  13781. name: "Front",
  13782. image: {
  13783. source: "./media/characters/quilly/front.svg",
  13784. extra: 890 / 776
  13785. }
  13786. },
  13787. },
  13788. [
  13789. {
  13790. name: "Gigamacro",
  13791. height: math.unit(404090, "miles"),
  13792. default: true
  13793. },
  13794. ]
  13795. ))
  13796. characterMakers.push(() => makeCharacter(
  13797. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13798. {
  13799. front: {
  13800. height: math.unit(7 + 8 / 12, "feet"),
  13801. weight: math.unit(350, "lb"),
  13802. name: "Front",
  13803. image: {
  13804. source: "./media/characters/tempest/front.svg",
  13805. extra: 1175 / 1086,
  13806. bottom: 0.02
  13807. }
  13808. },
  13809. },
  13810. [
  13811. {
  13812. name: "Normal",
  13813. height: math.unit(7 + 8 / 12, "feet"),
  13814. default: true
  13815. },
  13816. ]
  13817. ))
  13818. characterMakers.push(() => makeCharacter(
  13819. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13820. {
  13821. side: {
  13822. height: math.unit(4 + 5 / 12, "feet"),
  13823. weight: math.unit(80, "lb"),
  13824. name: "Side",
  13825. image: {
  13826. source: "./media/characters/rodger/side.svg",
  13827. extra: 1235 / 1118
  13828. }
  13829. },
  13830. },
  13831. [
  13832. {
  13833. name: "Micro",
  13834. height: math.unit(1, "inch")
  13835. },
  13836. {
  13837. name: "Normal",
  13838. height: math.unit(4 + 5 / 12, "feet"),
  13839. default: true
  13840. },
  13841. {
  13842. name: "Macro",
  13843. height: math.unit(120, "feet")
  13844. },
  13845. ]
  13846. ))
  13847. characterMakers.push(() => makeCharacter(
  13848. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13849. {
  13850. front: {
  13851. height: math.unit(6, "feet"),
  13852. weight: math.unit(150, "lb"),
  13853. name: "Front",
  13854. image: {
  13855. source: "./media/characters/danyel/front.svg",
  13856. extra: 1185 / 1123,
  13857. bottom: 0.05
  13858. }
  13859. },
  13860. },
  13861. [
  13862. {
  13863. name: "Shrunken",
  13864. height: math.unit(0.5, "mm")
  13865. },
  13866. {
  13867. name: "Micro",
  13868. height: math.unit(1, "mm"),
  13869. default: true
  13870. },
  13871. {
  13872. name: "Upsized",
  13873. height: math.unit(5 + 5 / 12, "feet")
  13874. },
  13875. ]
  13876. ))
  13877. characterMakers.push(() => makeCharacter(
  13878. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13879. {
  13880. front: {
  13881. height: math.unit(5 + 6 / 12, "feet"),
  13882. weight: math.unit(200, "lb"),
  13883. name: "Front",
  13884. image: {
  13885. source: "./media/characters/vivian-bijoux/front.svg",
  13886. extra: 1217/1209,
  13887. bottom: 76/1293
  13888. }
  13889. },
  13890. back: {
  13891. height: math.unit(5 + 6 / 12, "feet"),
  13892. weight: math.unit(200, "lb"),
  13893. name: "Back",
  13894. image: {
  13895. source: "./media/characters/vivian-bijoux/back.svg",
  13896. extra: 1214/1208,
  13897. bottom: 51/1265
  13898. }
  13899. },
  13900. dressed: {
  13901. height: math.unit(5 + 6 / 12, "feet"),
  13902. weight: math.unit(200, "lb"),
  13903. name: "Dressed",
  13904. image: {
  13905. source: "./media/characters/vivian-bijoux/dressed.svg",
  13906. extra: 1217/1209,
  13907. bottom: 76/1293
  13908. }
  13909. },
  13910. },
  13911. [
  13912. {
  13913. name: "Normal",
  13914. height: math.unit(5 + 6 / 12, "feet"),
  13915. default: true
  13916. },
  13917. {
  13918. name: "Bad Dream",
  13919. height: math.unit(500, "feet")
  13920. },
  13921. {
  13922. name: "Nightmare",
  13923. height: math.unit(500, "miles")
  13924. },
  13925. ]
  13926. ))
  13927. characterMakers.push(() => makeCharacter(
  13928. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13929. {
  13930. front: {
  13931. height: math.unit(6 + 1 / 12, "feet"),
  13932. weight: math.unit(260, "lb"),
  13933. name: "Front",
  13934. image: {
  13935. source: "./media/characters/zeta/front.svg",
  13936. extra: 1968 / 1889,
  13937. bottom: 0.06
  13938. }
  13939. },
  13940. back: {
  13941. height: math.unit(6 + 1 / 12, "feet"),
  13942. weight: math.unit(260, "lb"),
  13943. name: "Back",
  13944. image: {
  13945. source: "./media/characters/zeta/back.svg",
  13946. extra: 1944 / 1858,
  13947. bottom: 0.03
  13948. }
  13949. },
  13950. hand: {
  13951. height: math.unit(1.112, "feet"),
  13952. name: "Hand",
  13953. image: {
  13954. source: "./media/characters/zeta/hand.svg"
  13955. }
  13956. },
  13957. foot: {
  13958. height: math.unit(1.48, "feet"),
  13959. name: "Foot",
  13960. image: {
  13961. source: "./media/characters/zeta/foot.svg"
  13962. }
  13963. },
  13964. },
  13965. [
  13966. {
  13967. name: "Micro",
  13968. height: math.unit(6, "inches")
  13969. },
  13970. {
  13971. name: "Normal",
  13972. height: math.unit(6 + 1 / 12, "feet"),
  13973. default: true
  13974. },
  13975. {
  13976. name: "Macro",
  13977. height: math.unit(20, "feet")
  13978. },
  13979. ]
  13980. ))
  13981. characterMakers.push(() => makeCharacter(
  13982. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13983. {
  13984. front: {
  13985. height: math.unit(6, "feet"),
  13986. weight: math.unit(150, "lb"),
  13987. name: "Front",
  13988. image: {
  13989. source: "./media/characters/jamie-larsen/front.svg",
  13990. extra: 962 / 933,
  13991. bottom: 0.02
  13992. }
  13993. },
  13994. back: {
  13995. height: math.unit(6, "feet"),
  13996. weight: math.unit(150, "lb"),
  13997. name: "Back",
  13998. image: {
  13999. source: "./media/characters/jamie-larsen/back.svg",
  14000. extra: 997 / 946
  14001. }
  14002. },
  14003. },
  14004. [
  14005. {
  14006. name: "Macro",
  14007. height: math.unit(28 + 7 / 12, "feet"),
  14008. default: true
  14009. },
  14010. {
  14011. name: "Macro+",
  14012. height: math.unit(180, "feet")
  14013. },
  14014. {
  14015. name: "Megamacro",
  14016. height: math.unit(10, "miles")
  14017. },
  14018. {
  14019. name: "Gigamacro",
  14020. height: math.unit(200000, "miles")
  14021. },
  14022. ]
  14023. ))
  14024. characterMakers.push(() => makeCharacter(
  14025. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14026. {
  14027. front: {
  14028. height: math.unit(6, "feet"),
  14029. weight: math.unit(120, "lb"),
  14030. name: "Front",
  14031. image: {
  14032. source: "./media/characters/vance/front.svg",
  14033. extra: 1980 / 1890,
  14034. bottom: 0.09
  14035. }
  14036. },
  14037. back: {
  14038. height: math.unit(6, "feet"),
  14039. weight: math.unit(120, "lb"),
  14040. name: "Back",
  14041. image: {
  14042. source: "./media/characters/vance/back.svg",
  14043. extra: 2081 / 1994,
  14044. bottom: 0.014
  14045. }
  14046. },
  14047. hand: {
  14048. height: math.unit(0.88, "feet"),
  14049. name: "Hand",
  14050. image: {
  14051. source: "./media/characters/vance/hand.svg"
  14052. }
  14053. },
  14054. foot: {
  14055. height: math.unit(0.64, "feet"),
  14056. name: "Foot",
  14057. image: {
  14058. source: "./media/characters/vance/foot.svg"
  14059. }
  14060. },
  14061. },
  14062. [
  14063. {
  14064. name: "Small",
  14065. height: math.unit(90, "feet"),
  14066. default: true
  14067. },
  14068. {
  14069. name: "Macro",
  14070. height: math.unit(100, "meters")
  14071. },
  14072. {
  14073. name: "Megamacro",
  14074. height: math.unit(15, "miles")
  14075. },
  14076. ]
  14077. ))
  14078. characterMakers.push(() => makeCharacter(
  14079. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14080. {
  14081. front: {
  14082. height: math.unit(6, "feet"),
  14083. weight: math.unit(180, "lb"),
  14084. name: "Front",
  14085. image: {
  14086. source: "./media/characters/xochitl/front.svg",
  14087. extra: 2297 / 2261,
  14088. bottom: 0.065
  14089. }
  14090. },
  14091. back: {
  14092. height: math.unit(6, "feet"),
  14093. weight: math.unit(180, "lb"),
  14094. name: "Back",
  14095. image: {
  14096. source: "./media/characters/xochitl/back.svg",
  14097. extra: 2386 / 2354,
  14098. bottom: 0.01
  14099. }
  14100. },
  14101. foot: {
  14102. height: math.unit(6 / 5 * 1.15, "feet"),
  14103. weight: math.unit(150, "lb"),
  14104. name: "Foot",
  14105. image: {
  14106. source: "./media/characters/xochitl/foot.svg"
  14107. }
  14108. },
  14109. },
  14110. [
  14111. {
  14112. name: "Macro",
  14113. height: math.unit(80, "feet")
  14114. },
  14115. {
  14116. name: "Macro+",
  14117. height: math.unit(400, "feet"),
  14118. default: true
  14119. },
  14120. {
  14121. name: "Gigamacro",
  14122. height: math.unit(80000, "miles")
  14123. },
  14124. {
  14125. name: "Gigamacro+",
  14126. height: math.unit(400000, "miles")
  14127. },
  14128. {
  14129. name: "Teramacro",
  14130. height: math.unit(300, "AU")
  14131. },
  14132. ]
  14133. ))
  14134. characterMakers.push(() => makeCharacter(
  14135. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14136. {
  14137. front: {
  14138. height: math.unit(6, "feet"),
  14139. weight: math.unit(150, "lb"),
  14140. name: "Front",
  14141. image: {
  14142. source: "./media/characters/vincent/front.svg",
  14143. extra: 1130 / 1080,
  14144. bottom: 0.055
  14145. }
  14146. },
  14147. beak: {
  14148. height: math.unit(6 * 0.1, "feet"),
  14149. name: "Beak",
  14150. image: {
  14151. source: "./media/characters/vincent/beak.svg"
  14152. }
  14153. },
  14154. hand: {
  14155. height: math.unit(6 * 0.85, "feet"),
  14156. weight: math.unit(150, "lb"),
  14157. name: "Hand",
  14158. image: {
  14159. source: "./media/characters/vincent/hand.svg"
  14160. }
  14161. },
  14162. foot: {
  14163. height: math.unit(6 * 0.19, "feet"),
  14164. weight: math.unit(150, "lb"),
  14165. name: "Foot",
  14166. image: {
  14167. source: "./media/characters/vincent/foot.svg"
  14168. }
  14169. },
  14170. },
  14171. [
  14172. {
  14173. name: "Base",
  14174. height: math.unit(6 + 5 / 12, "feet"),
  14175. default: true
  14176. },
  14177. {
  14178. name: "Macro",
  14179. height: math.unit(300, "feet")
  14180. },
  14181. {
  14182. name: "Megamacro",
  14183. height: math.unit(2, "miles")
  14184. },
  14185. {
  14186. name: "Gigamacro",
  14187. height: math.unit(1000, "miles")
  14188. },
  14189. ]
  14190. ))
  14191. characterMakers.push(() => makeCharacter(
  14192. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14193. {
  14194. front: {
  14195. height: math.unit(2, "meters"),
  14196. weight: math.unit(500, "kg"),
  14197. name: "Front",
  14198. image: {
  14199. source: "./media/characters/coatl/front.svg",
  14200. extra: 3948 / 3500,
  14201. bottom: 0.082
  14202. }
  14203. },
  14204. },
  14205. [
  14206. {
  14207. name: "Normal",
  14208. height: math.unit(4, "meters")
  14209. },
  14210. {
  14211. name: "Macro",
  14212. height: math.unit(100, "meters"),
  14213. default: true
  14214. },
  14215. {
  14216. name: "Macro+",
  14217. height: math.unit(300, "meters")
  14218. },
  14219. {
  14220. name: "Megamacro",
  14221. height: math.unit(3, "gigameters")
  14222. },
  14223. {
  14224. name: "Megamacro+",
  14225. height: math.unit(300, "terameters")
  14226. },
  14227. {
  14228. name: "Megamacro++",
  14229. height: math.unit(3, "lightyears")
  14230. },
  14231. ]
  14232. ))
  14233. characterMakers.push(() => makeCharacter(
  14234. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14235. {
  14236. front: {
  14237. height: math.unit(6, "feet"),
  14238. weight: math.unit(50, "kg"),
  14239. name: "front",
  14240. image: {
  14241. source: "./media/characters/shiroryu/front.svg",
  14242. extra: 1990 / 1935
  14243. }
  14244. },
  14245. },
  14246. [
  14247. {
  14248. name: "Mortal Mingling",
  14249. height: math.unit(3, "meters")
  14250. },
  14251. {
  14252. name: "Kaiju-ish",
  14253. height: math.unit(250, "meters")
  14254. },
  14255. {
  14256. name: "Somewhat Godly",
  14257. height: math.unit(400, "km"),
  14258. default: true
  14259. },
  14260. {
  14261. name: "Planetary",
  14262. height: math.unit(300, "megameters")
  14263. },
  14264. {
  14265. name: "Galaxy-dwarfing",
  14266. height: math.unit(450, "kiloparsecs")
  14267. },
  14268. {
  14269. name: "Universe Eater",
  14270. height: math.unit(150, "gigaparsecs")
  14271. },
  14272. {
  14273. name: "Almost Immeasurable",
  14274. height: math.unit(1.3e266, "yottaparsecs")
  14275. },
  14276. ]
  14277. ))
  14278. characterMakers.push(() => makeCharacter(
  14279. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14280. {
  14281. front: {
  14282. height: math.unit(6, "feet"),
  14283. weight: math.unit(150, "lb"),
  14284. name: "Front",
  14285. image: {
  14286. source: "./media/characters/umeko/front.svg",
  14287. extra: 1,
  14288. bottom: 0.019
  14289. }
  14290. },
  14291. frontArmored: {
  14292. height: math.unit(6, "feet"),
  14293. weight: math.unit(150, "lb"),
  14294. name: "Front (Armored)",
  14295. image: {
  14296. source: "./media/characters/umeko/front-armored.svg",
  14297. extra: 1,
  14298. bottom: 0.021
  14299. }
  14300. },
  14301. },
  14302. [
  14303. {
  14304. name: "Macro",
  14305. height: math.unit(220, "feet"),
  14306. default: true
  14307. },
  14308. {
  14309. name: "Guardian Dragon",
  14310. height: math.unit(50, "miles")
  14311. },
  14312. {
  14313. name: "Cosmic",
  14314. height: math.unit(800000, "miles")
  14315. },
  14316. ]
  14317. ))
  14318. characterMakers.push(() => makeCharacter(
  14319. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14320. {
  14321. front: {
  14322. height: math.unit(6, "feet"),
  14323. weight: math.unit(150, "lb"),
  14324. name: "Front",
  14325. image: {
  14326. source: "./media/characters/cassidy/front.svg",
  14327. extra: 810/808,
  14328. bottom: 41/851
  14329. }
  14330. },
  14331. },
  14332. [
  14333. {
  14334. name: "Canon Height",
  14335. height: math.unit(120, "feet"),
  14336. default: true
  14337. },
  14338. {
  14339. name: "Macro+",
  14340. height: math.unit(400, "feet")
  14341. },
  14342. {
  14343. name: "Macro++",
  14344. height: math.unit(4000, "feet")
  14345. },
  14346. {
  14347. name: "Megamacro",
  14348. height: math.unit(3, "miles")
  14349. },
  14350. ]
  14351. ))
  14352. characterMakers.push(() => makeCharacter(
  14353. { name: "Isaac", species: ["moose"], 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/isaac/front.svg",
  14361. extra: 896 / 815,
  14362. bottom: 0.11
  14363. }
  14364. },
  14365. },
  14366. [
  14367. {
  14368. name: "Human Size",
  14369. height: math.unit(8, "feet"),
  14370. default: true
  14371. },
  14372. {
  14373. name: "Macro",
  14374. height: math.unit(400, "feet")
  14375. },
  14376. {
  14377. name: "Megamacro",
  14378. height: math.unit(50, "miles")
  14379. },
  14380. {
  14381. name: "Canon Height",
  14382. height: math.unit(200, "AU")
  14383. },
  14384. ]
  14385. ))
  14386. characterMakers.push(() => makeCharacter(
  14387. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14388. {
  14389. front: {
  14390. height: math.unit(6, "feet"),
  14391. weight: math.unit(72, "kg"),
  14392. name: "Front",
  14393. image: {
  14394. source: "./media/characters/sleekit/front.svg",
  14395. extra: 4693 / 4487,
  14396. bottom: 0.012
  14397. }
  14398. },
  14399. },
  14400. [
  14401. {
  14402. name: "Minimum Height",
  14403. height: math.unit(10, "meters")
  14404. },
  14405. {
  14406. name: "Smaller",
  14407. height: math.unit(25, "meters")
  14408. },
  14409. {
  14410. name: "Larger",
  14411. height: math.unit(38, "meters"),
  14412. default: true
  14413. },
  14414. {
  14415. name: "Maximum height",
  14416. height: math.unit(100, "meters")
  14417. },
  14418. ]
  14419. ))
  14420. characterMakers.push(() => makeCharacter(
  14421. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14422. {
  14423. front: {
  14424. height: math.unit(6, "feet"),
  14425. weight: math.unit(150, "lb"),
  14426. name: "Front",
  14427. image: {
  14428. source: "./media/characters/nillia/front.svg",
  14429. extra: 2195 / 2037,
  14430. bottom: 0.005
  14431. }
  14432. },
  14433. back: {
  14434. height: math.unit(6, "feet"),
  14435. weight: math.unit(150, "lb"),
  14436. name: "Back",
  14437. image: {
  14438. source: "./media/characters/nillia/back.svg",
  14439. extra: 2195 / 2037,
  14440. bottom: 0.005
  14441. }
  14442. },
  14443. },
  14444. [
  14445. {
  14446. name: "Canon Height",
  14447. height: math.unit(489, "feet"),
  14448. default: true
  14449. }
  14450. ]
  14451. ))
  14452. characterMakers.push(() => makeCharacter(
  14453. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14454. {
  14455. front: {
  14456. height: math.unit(6, "feet"),
  14457. weight: math.unit(150, "lb"),
  14458. name: "Front",
  14459. image: {
  14460. source: "./media/characters/mesmyriza/front.svg",
  14461. extra: 2067 / 1784,
  14462. bottom: 0.035
  14463. }
  14464. },
  14465. foot: {
  14466. height: math.unit(6 / (250 / 35), "feet"),
  14467. name: "Foot",
  14468. image: {
  14469. source: "./media/characters/mesmyriza/foot.svg"
  14470. }
  14471. },
  14472. },
  14473. [
  14474. {
  14475. name: "Macro",
  14476. height: math.unit(457, "meters"),
  14477. default: true
  14478. },
  14479. {
  14480. name: "Megamacro",
  14481. height: math.unit(8, "megameters")
  14482. },
  14483. ]
  14484. ))
  14485. characterMakers.push(() => makeCharacter(
  14486. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14487. {
  14488. front: {
  14489. height: math.unit(6, "feet"),
  14490. weight: math.unit(250, "lb"),
  14491. name: "Front",
  14492. image: {
  14493. source: "./media/characters/saudade/front.svg",
  14494. extra: 1172 / 1139,
  14495. bottom: 0.035
  14496. }
  14497. },
  14498. },
  14499. [
  14500. {
  14501. name: "Micro",
  14502. height: math.unit(3, "inches")
  14503. },
  14504. {
  14505. name: "Normal",
  14506. height: math.unit(6, "feet"),
  14507. default: true
  14508. },
  14509. {
  14510. name: "Macro",
  14511. height: math.unit(50, "feet")
  14512. },
  14513. {
  14514. name: "Megamacro",
  14515. height: math.unit(2800, "feet")
  14516. },
  14517. ]
  14518. ))
  14519. characterMakers.push(() => makeCharacter(
  14520. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14521. {
  14522. front: {
  14523. height: math.unit(5 + 4 / 12, "feet"),
  14524. weight: math.unit(100, "lb"),
  14525. name: "Front",
  14526. image: {
  14527. source: "./media/characters/keireer/front.svg",
  14528. extra: 716 / 666,
  14529. bottom: 0.05
  14530. }
  14531. },
  14532. },
  14533. [
  14534. {
  14535. name: "Normal",
  14536. height: math.unit(5 + 4 / 12, "feet"),
  14537. default: true
  14538. },
  14539. ]
  14540. ))
  14541. characterMakers.push(() => makeCharacter(
  14542. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14543. {
  14544. front: {
  14545. height: math.unit(6, "feet"),
  14546. weight: math.unit(90, "kg"),
  14547. name: "Front",
  14548. image: {
  14549. source: "./media/characters/mirja/front.svg",
  14550. extra: 1789 / 1683,
  14551. bottom: 0.05
  14552. }
  14553. },
  14554. frontDressed: {
  14555. height: math.unit(6, "feet"),
  14556. weight: math.unit(90, "lb"),
  14557. name: "Front (Dressed)",
  14558. image: {
  14559. source: "./media/characters/mirja/front-dressed.svg",
  14560. extra: 1789 / 1683,
  14561. bottom: 0.05
  14562. }
  14563. },
  14564. back: {
  14565. height: math.unit(6, "feet"),
  14566. weight: math.unit(90, "lb"),
  14567. name: "Back",
  14568. image: {
  14569. source: "./media/characters/mirja/back.svg",
  14570. extra: 953 / 917,
  14571. bottom: 0.017
  14572. }
  14573. },
  14574. },
  14575. [
  14576. {
  14577. name: "\"Incognito\"",
  14578. height: math.unit(3, "meters")
  14579. },
  14580. {
  14581. name: "Strolling Size",
  14582. height: math.unit(15, "km")
  14583. },
  14584. {
  14585. name: "Larger Strolling Size",
  14586. height: math.unit(400, "km")
  14587. },
  14588. {
  14589. name: "Preferred Size",
  14590. height: math.unit(5000, "km")
  14591. },
  14592. {
  14593. name: "True Size",
  14594. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14595. default: true
  14596. },
  14597. ]
  14598. ))
  14599. characterMakers.push(() => makeCharacter(
  14600. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14601. {
  14602. front: {
  14603. height: math.unit(15, "feet"),
  14604. weight: math.unit(880, "kg"),
  14605. name: "Front",
  14606. image: {
  14607. source: "./media/characters/nightraver/front.svg",
  14608. extra: 2444 / 2160,
  14609. bottom: 0.027
  14610. }
  14611. },
  14612. back: {
  14613. height: math.unit(15, "feet"),
  14614. weight: math.unit(880, "kg"),
  14615. name: "Back",
  14616. image: {
  14617. source: "./media/characters/nightraver/back.svg",
  14618. extra: 2309 / 2180,
  14619. bottom: 0.005
  14620. }
  14621. },
  14622. sole: {
  14623. height: math.unit(2.878, "feet"),
  14624. name: "Sole",
  14625. image: {
  14626. source: "./media/characters/nightraver/sole.svg"
  14627. }
  14628. },
  14629. foot: {
  14630. height: math.unit(2.285, "feet"),
  14631. name: "Foot",
  14632. image: {
  14633. source: "./media/characters/nightraver/foot.svg"
  14634. }
  14635. },
  14636. maw: {
  14637. height: math.unit(2.67, "feet"),
  14638. name: "Maw",
  14639. image: {
  14640. source: "./media/characters/nightraver/maw.svg"
  14641. }
  14642. },
  14643. },
  14644. [
  14645. {
  14646. name: "Micro",
  14647. height: math.unit(1, "cm")
  14648. },
  14649. {
  14650. name: "Normal",
  14651. height: math.unit(15, "feet"),
  14652. default: true
  14653. },
  14654. {
  14655. name: "Macro",
  14656. height: math.unit(300, "feet")
  14657. },
  14658. {
  14659. name: "Megamacro",
  14660. height: math.unit(300, "miles")
  14661. },
  14662. {
  14663. name: "Gigamacro",
  14664. height: math.unit(10000, "miles")
  14665. },
  14666. ]
  14667. ))
  14668. characterMakers.push(() => makeCharacter(
  14669. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14670. {
  14671. side: {
  14672. height: math.unit(2, "inches"),
  14673. weight: math.unit(5, "grams"),
  14674. name: "Side",
  14675. image: {
  14676. source: "./media/characters/arc/side.svg"
  14677. }
  14678. },
  14679. },
  14680. [
  14681. {
  14682. name: "Micro",
  14683. height: math.unit(2, "inches"),
  14684. default: true
  14685. },
  14686. ]
  14687. ))
  14688. characterMakers.push(() => makeCharacter(
  14689. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14690. {
  14691. front: {
  14692. height: math.unit(1.1938, "meters"),
  14693. weight: math.unit(54, "kg"),
  14694. name: "Front",
  14695. image: {
  14696. source: "./media/characters/nebula-shahar/front.svg",
  14697. extra: 1642 / 1436,
  14698. bottom: 0.06
  14699. }
  14700. },
  14701. },
  14702. [
  14703. {
  14704. name: "Megamicro",
  14705. height: math.unit(0.3, "mm")
  14706. },
  14707. {
  14708. name: "Micro",
  14709. height: math.unit(3, "cm")
  14710. },
  14711. {
  14712. name: "Normal",
  14713. height: math.unit(138, "cm"),
  14714. default: true
  14715. },
  14716. {
  14717. name: "Macro",
  14718. height: math.unit(30, "m")
  14719. },
  14720. ]
  14721. ))
  14722. characterMakers.push(() => makeCharacter(
  14723. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14724. {
  14725. front: {
  14726. height: math.unit(5.24, "feet"),
  14727. weight: math.unit(150, "lb"),
  14728. name: "Front",
  14729. image: {
  14730. source: "./media/characters/shayla/front.svg",
  14731. extra: 1512 / 1414,
  14732. bottom: 0.01
  14733. }
  14734. },
  14735. back: {
  14736. height: math.unit(5.24, "feet"),
  14737. weight: math.unit(150, "lb"),
  14738. name: "Back",
  14739. image: {
  14740. source: "./media/characters/shayla/back.svg",
  14741. extra: 1512 / 1414
  14742. }
  14743. },
  14744. hand: {
  14745. height: math.unit(0.7781496062992126, "feet"),
  14746. name: "Hand",
  14747. image: {
  14748. source: "./media/characters/shayla/hand.svg"
  14749. }
  14750. },
  14751. foot: {
  14752. height: math.unit(1.4206036745406823, "feet"),
  14753. name: "Foot",
  14754. image: {
  14755. source: "./media/characters/shayla/foot.svg"
  14756. }
  14757. },
  14758. },
  14759. [
  14760. {
  14761. name: "Micro",
  14762. height: math.unit(0.32, "feet")
  14763. },
  14764. {
  14765. name: "Normal",
  14766. height: math.unit(5.24, "feet"),
  14767. default: true
  14768. },
  14769. {
  14770. name: "Macro",
  14771. height: math.unit(492.12, "feet")
  14772. },
  14773. {
  14774. name: "Megamacro",
  14775. height: math.unit(186.41, "miles")
  14776. },
  14777. ]
  14778. ))
  14779. characterMakers.push(() => makeCharacter(
  14780. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14781. {
  14782. front: {
  14783. height: math.unit(2.2, "m"),
  14784. weight: math.unit(120, "kg"),
  14785. name: "Front",
  14786. image: {
  14787. source: "./media/characters/pia-jr/front.svg",
  14788. extra: 1000 / 970,
  14789. bottom: 0.035
  14790. }
  14791. },
  14792. hand: {
  14793. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14794. name: "Hand",
  14795. image: {
  14796. source: "./media/characters/pia-jr/hand.svg"
  14797. }
  14798. },
  14799. paw: {
  14800. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14801. name: "Paw",
  14802. image: {
  14803. source: "./media/characters/pia-jr/paw.svg"
  14804. }
  14805. },
  14806. },
  14807. [
  14808. {
  14809. name: "Micro",
  14810. height: math.unit(1.2, "cm")
  14811. },
  14812. {
  14813. name: "Normal",
  14814. height: math.unit(2.2, "m"),
  14815. default: true
  14816. },
  14817. {
  14818. name: "Macro",
  14819. height: math.unit(180, "m")
  14820. },
  14821. {
  14822. name: "Megamacro",
  14823. height: math.unit(420, "km")
  14824. },
  14825. ]
  14826. ))
  14827. characterMakers.push(() => makeCharacter(
  14828. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14829. {
  14830. front: {
  14831. height: math.unit(2, "m"),
  14832. weight: math.unit(115, "kg"),
  14833. name: "Front",
  14834. image: {
  14835. source: "./media/characters/pia-sr/front.svg",
  14836. extra: 760 / 730,
  14837. bottom: 0.015
  14838. }
  14839. },
  14840. back: {
  14841. height: math.unit(2, "m"),
  14842. weight: math.unit(115, "kg"),
  14843. name: "Back",
  14844. image: {
  14845. source: "./media/characters/pia-sr/back.svg",
  14846. extra: 760 / 730,
  14847. bottom: 0.01
  14848. }
  14849. },
  14850. hand: {
  14851. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14852. name: "Hand",
  14853. image: {
  14854. source: "./media/characters/pia-sr/hand.svg"
  14855. }
  14856. },
  14857. foot: {
  14858. height: math.unit(1.83, "feet"),
  14859. name: "Foot",
  14860. image: {
  14861. source: "./media/characters/pia-sr/foot.svg"
  14862. }
  14863. },
  14864. },
  14865. [
  14866. {
  14867. name: "Micro",
  14868. height: math.unit(88, "mm")
  14869. },
  14870. {
  14871. name: "Normal",
  14872. height: math.unit(2, "m"),
  14873. default: true
  14874. },
  14875. {
  14876. name: "Macro",
  14877. height: math.unit(200, "m")
  14878. },
  14879. {
  14880. name: "Megamacro",
  14881. height: math.unit(420, "km")
  14882. },
  14883. ]
  14884. ))
  14885. characterMakers.push(() => makeCharacter(
  14886. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14887. {
  14888. front: {
  14889. height: math.unit(8 + 2 / 12, "feet"),
  14890. weight: math.unit(300, "lb"),
  14891. name: "Front",
  14892. image: {
  14893. source: "./media/characters/kibibyte/front.svg",
  14894. extra: 2221 / 2098,
  14895. bottom: 0.04
  14896. }
  14897. },
  14898. },
  14899. [
  14900. {
  14901. name: "Normal",
  14902. height: math.unit(8 + 2 / 12, "feet"),
  14903. default: true
  14904. },
  14905. {
  14906. name: "Socialable Macro",
  14907. height: math.unit(50, "feet")
  14908. },
  14909. {
  14910. name: "Macro",
  14911. height: math.unit(300, "feet")
  14912. },
  14913. {
  14914. name: "Megamacro",
  14915. height: math.unit(500, "miles")
  14916. },
  14917. ]
  14918. ))
  14919. characterMakers.push(() => makeCharacter(
  14920. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14921. {
  14922. front: {
  14923. height: math.unit(6, "feet"),
  14924. weight: math.unit(150, "lb"),
  14925. name: "Front",
  14926. image: {
  14927. source: "./media/characters/felix/front.svg",
  14928. extra: 762 / 722,
  14929. bottom: 0.02
  14930. }
  14931. },
  14932. frontClothed: {
  14933. height: math.unit(6, "feet"),
  14934. weight: math.unit(150, "lb"),
  14935. name: "Front (Clothed)",
  14936. image: {
  14937. source: "./media/characters/felix/front-clothed.svg",
  14938. extra: 762 / 722,
  14939. bottom: 0.02
  14940. }
  14941. },
  14942. },
  14943. [
  14944. {
  14945. name: "Normal",
  14946. height: math.unit(6 + 8 / 12, "feet"),
  14947. default: true
  14948. },
  14949. {
  14950. name: "Macro",
  14951. height: math.unit(2600, "feet")
  14952. },
  14953. {
  14954. name: "Megamacro",
  14955. height: math.unit(450, "miles")
  14956. },
  14957. ]
  14958. ))
  14959. characterMakers.push(() => makeCharacter(
  14960. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14961. {
  14962. front: {
  14963. height: math.unit(6 + 1 / 12, "feet"),
  14964. weight: math.unit(250, "lb"),
  14965. name: "Front",
  14966. image: {
  14967. source: "./media/characters/tobo/front.svg",
  14968. extra: 608 / 586,
  14969. bottom: 0.023
  14970. }
  14971. },
  14972. back: {
  14973. height: math.unit(6 + 1 / 12, "feet"),
  14974. weight: math.unit(250, "lb"),
  14975. name: "Back",
  14976. image: {
  14977. source: "./media/characters/tobo/back.svg",
  14978. extra: 608 / 586
  14979. }
  14980. },
  14981. },
  14982. [
  14983. {
  14984. name: "Nano",
  14985. height: math.unit(2, "nm")
  14986. },
  14987. {
  14988. name: "Megamicro",
  14989. height: math.unit(0.1, "mm")
  14990. },
  14991. {
  14992. name: "Micro",
  14993. height: math.unit(1, "inch"),
  14994. default: true
  14995. },
  14996. {
  14997. name: "Human-sized",
  14998. height: math.unit(6 + 1 / 12, "feet")
  14999. },
  15000. {
  15001. name: "Macro",
  15002. height: math.unit(250, "feet")
  15003. },
  15004. {
  15005. name: "Megamacro",
  15006. height: math.unit(75, "miles")
  15007. },
  15008. {
  15009. name: "Texas-sized",
  15010. height: math.unit(750, "miles")
  15011. },
  15012. {
  15013. name: "Teramacro",
  15014. height: math.unit(50000, "miles")
  15015. },
  15016. ]
  15017. ))
  15018. characterMakers.push(() => makeCharacter(
  15019. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15020. {
  15021. front: {
  15022. height: math.unit(6, "feet"),
  15023. weight: math.unit(269, "lb"),
  15024. name: "Front",
  15025. image: {
  15026. source: "./media/characters/danny-kapowsky/front.svg",
  15027. extra: 766 / 736,
  15028. bottom: 0.044
  15029. }
  15030. },
  15031. back: {
  15032. height: math.unit(6, "feet"),
  15033. weight: math.unit(269, "lb"),
  15034. name: "Back",
  15035. image: {
  15036. source: "./media/characters/danny-kapowsky/back.svg",
  15037. extra: 797 / 760,
  15038. bottom: 0.025
  15039. }
  15040. },
  15041. },
  15042. [
  15043. {
  15044. name: "Macro",
  15045. height: math.unit(150, "feet"),
  15046. default: true
  15047. },
  15048. {
  15049. name: "Macro+",
  15050. height: math.unit(200, "feet")
  15051. },
  15052. {
  15053. name: "Macro++",
  15054. height: math.unit(300, "feet")
  15055. },
  15056. {
  15057. name: "Macro+++",
  15058. height: math.unit(400, "feet")
  15059. },
  15060. ]
  15061. ))
  15062. characterMakers.push(() => makeCharacter(
  15063. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15064. {
  15065. side: {
  15066. height: math.unit(6, "feet"),
  15067. weight: math.unit(170, "lb"),
  15068. name: "Side",
  15069. image: {
  15070. source: "./media/characters/finn/side.svg",
  15071. extra: 1953 / 1807,
  15072. bottom: 0.057
  15073. }
  15074. },
  15075. },
  15076. [
  15077. {
  15078. name: "Megamacro",
  15079. height: math.unit(14445, "feet"),
  15080. default: true
  15081. },
  15082. ]
  15083. ))
  15084. characterMakers.push(() => makeCharacter(
  15085. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15086. {
  15087. front: {
  15088. height: math.unit(5 + 6 / 12, "feet"),
  15089. weight: math.unit(125, "lb"),
  15090. name: "Front",
  15091. image: {
  15092. source: "./media/characters/roy/front.svg",
  15093. extra: 1,
  15094. bottom: 0.11
  15095. }
  15096. },
  15097. },
  15098. [
  15099. {
  15100. name: "Micro",
  15101. height: math.unit(3, "inches"),
  15102. default: true
  15103. },
  15104. {
  15105. name: "Normal",
  15106. height: math.unit(5 + 6 / 12, "feet")
  15107. },
  15108. {
  15109. name: "Lesser Macro",
  15110. height: math.unit(60, "feet")
  15111. },
  15112. {
  15113. name: "Greater Macro",
  15114. height: math.unit(120, "feet")
  15115. },
  15116. ]
  15117. ))
  15118. characterMakers.push(() => makeCharacter(
  15119. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15120. {
  15121. front: {
  15122. height: math.unit(6, "feet"),
  15123. weight: math.unit(100, "lb"),
  15124. name: "Front",
  15125. image: {
  15126. source: "./media/characters/aevsivs/front.svg",
  15127. extra: 1,
  15128. bottom: 0.03
  15129. }
  15130. },
  15131. back: {
  15132. height: math.unit(6, "feet"),
  15133. weight: math.unit(100, "lb"),
  15134. name: "Back",
  15135. image: {
  15136. source: "./media/characters/aevsivs/back.svg"
  15137. }
  15138. },
  15139. },
  15140. [
  15141. {
  15142. name: "Micro",
  15143. height: math.unit(2, "inches"),
  15144. default: true
  15145. },
  15146. {
  15147. name: "Normal",
  15148. height: math.unit(5, "feet")
  15149. },
  15150. ]
  15151. ))
  15152. characterMakers.push(() => makeCharacter(
  15153. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15154. {
  15155. front: {
  15156. height: math.unit(5 + 7 / 12, "feet"),
  15157. weight: math.unit(159, "lb"),
  15158. name: "Front",
  15159. image: {
  15160. source: "./media/characters/hildegard/front.svg",
  15161. extra: 289 / 269,
  15162. bottom: 7.63 / 297.8
  15163. }
  15164. },
  15165. back: {
  15166. height: math.unit(5 + 7 / 12, "feet"),
  15167. weight: math.unit(159, "lb"),
  15168. name: "Back",
  15169. image: {
  15170. source: "./media/characters/hildegard/back.svg",
  15171. extra: 280 / 260,
  15172. bottom: 2.3 / 282
  15173. }
  15174. },
  15175. },
  15176. [
  15177. {
  15178. name: "Normal",
  15179. height: math.unit(5 + 7 / 12, "feet"),
  15180. default: true
  15181. },
  15182. ]
  15183. ))
  15184. characterMakers.push(() => makeCharacter(
  15185. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15186. {
  15187. bernard: {
  15188. height: math.unit(2 + 7 / 12, "feet"),
  15189. weight: math.unit(66, "lb"),
  15190. name: "Bernard",
  15191. rename: true,
  15192. image: {
  15193. source: "./media/characters/bernard-wilder/bernard.svg",
  15194. extra: 192 / 128,
  15195. bottom: 0.05
  15196. }
  15197. },
  15198. wilder: {
  15199. height: math.unit(5 + 8 / 12, "feet"),
  15200. weight: math.unit(143, "lb"),
  15201. name: "Wilder",
  15202. rename: true,
  15203. image: {
  15204. source: "./media/characters/bernard-wilder/wilder.svg",
  15205. extra: 361 / 312,
  15206. bottom: 0.02
  15207. }
  15208. },
  15209. },
  15210. [
  15211. {
  15212. name: "Normal",
  15213. height: math.unit(2 + 7 / 12, "feet"),
  15214. default: true
  15215. },
  15216. ]
  15217. ))
  15218. characterMakers.push(() => makeCharacter(
  15219. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15220. {
  15221. anthro: {
  15222. height: math.unit(6 + 1 / 12, "feet"),
  15223. weight: math.unit(155, "lb"),
  15224. name: "Anthro",
  15225. image: {
  15226. source: "./media/characters/hearth/anthro.svg",
  15227. extra: 1178/1136,
  15228. bottom: 28/1206
  15229. }
  15230. },
  15231. feral: {
  15232. height: math.unit(3.78, "feet"),
  15233. weight: math.unit(35, "kg"),
  15234. name: "Feral",
  15235. image: {
  15236. source: "./media/characters/hearth/feral.svg",
  15237. extra: 153 / 135,
  15238. bottom: 0.03
  15239. }
  15240. },
  15241. },
  15242. [
  15243. {
  15244. name: "Normal",
  15245. height: math.unit(6 + 1 / 12, "feet"),
  15246. default: true
  15247. },
  15248. ]
  15249. ))
  15250. characterMakers.push(() => makeCharacter(
  15251. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15252. {
  15253. front: {
  15254. height: math.unit(6, "feet"),
  15255. weight: math.unit(182, "lb"),
  15256. name: "Front",
  15257. image: {
  15258. source: "./media/characters/ingrid/front.svg",
  15259. extra: 294 / 268,
  15260. bottom: 0.027
  15261. }
  15262. },
  15263. },
  15264. [
  15265. {
  15266. name: "Normal",
  15267. height: math.unit(6, "feet"),
  15268. default: true
  15269. },
  15270. ]
  15271. ))
  15272. characterMakers.push(() => makeCharacter(
  15273. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15274. {
  15275. eevee: {
  15276. height: math.unit(2 + 10 / 12, "feet"),
  15277. weight: math.unit(86, "lb"),
  15278. name: "Malgam",
  15279. image: {
  15280. source: "./media/characters/malgam/eevee.svg",
  15281. extra: 952/784,
  15282. bottom: 38/990
  15283. }
  15284. },
  15285. sylveon: {
  15286. height: math.unit(4, "feet"),
  15287. weight: math.unit(101, "lb"),
  15288. name: "Future Malgam",
  15289. rename: true,
  15290. image: {
  15291. source: "./media/characters/malgam/sylveon.svg",
  15292. extra: 371 / 325,
  15293. bottom: 0.015
  15294. }
  15295. },
  15296. gigantamax: {
  15297. height: math.unit(50, "feet"),
  15298. name: "Gigantamax Malgam",
  15299. rename: true,
  15300. image: {
  15301. source: "./media/characters/malgam/gigantamax.svg"
  15302. }
  15303. },
  15304. },
  15305. [
  15306. {
  15307. name: "Normal",
  15308. height: math.unit(2 + 10 / 12, "feet"),
  15309. default: true
  15310. },
  15311. ]
  15312. ))
  15313. characterMakers.push(() => makeCharacter(
  15314. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15315. {
  15316. front: {
  15317. height: math.unit(5 + 11 / 12, "feet"),
  15318. weight: math.unit(188, "lb"),
  15319. name: "Front",
  15320. image: {
  15321. source: "./media/characters/fleur/front.svg",
  15322. extra: 309 / 283,
  15323. bottom: 0.007
  15324. }
  15325. },
  15326. },
  15327. [
  15328. {
  15329. name: "Normal",
  15330. height: math.unit(5 + 11 / 12, "feet"),
  15331. default: true
  15332. },
  15333. ]
  15334. ))
  15335. characterMakers.push(() => makeCharacter(
  15336. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15337. {
  15338. front: {
  15339. height: math.unit(5 + 4 / 12, "feet"),
  15340. weight: math.unit(122, "lb"),
  15341. name: "Front",
  15342. image: {
  15343. source: "./media/characters/jude/front.svg",
  15344. extra: 288 / 273,
  15345. bottom: 0.03
  15346. }
  15347. },
  15348. },
  15349. [
  15350. {
  15351. name: "Normal",
  15352. height: math.unit(5 + 4 / 12, "feet"),
  15353. default: true
  15354. },
  15355. ]
  15356. ))
  15357. characterMakers.push(() => makeCharacter(
  15358. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15359. {
  15360. front: {
  15361. height: math.unit(5 + 11 / 12, "feet"),
  15362. weight: math.unit(190, "lb"),
  15363. name: "Front",
  15364. image: {
  15365. source: "./media/characters/seara/front.svg",
  15366. extra: 1,
  15367. bottom: 0.05
  15368. }
  15369. },
  15370. },
  15371. [
  15372. {
  15373. name: "Normal",
  15374. height: math.unit(5 + 11 / 12, "feet"),
  15375. default: true
  15376. },
  15377. ]
  15378. ))
  15379. characterMakers.push(() => makeCharacter(
  15380. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15381. {
  15382. front: {
  15383. height: math.unit(16 + 5 / 12, "feet"),
  15384. weight: math.unit(524, "lb"),
  15385. name: "Front",
  15386. image: {
  15387. source: "./media/characters/caspian/front.svg",
  15388. extra: 1,
  15389. bottom: 0.04
  15390. }
  15391. },
  15392. },
  15393. [
  15394. {
  15395. name: "Normal",
  15396. height: math.unit(16 + 5 / 12, "feet"),
  15397. default: true
  15398. },
  15399. ]
  15400. ))
  15401. characterMakers.push(() => makeCharacter(
  15402. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15403. {
  15404. front: {
  15405. height: math.unit(5 + 7 / 12, "feet"),
  15406. weight: math.unit(170, "lb"),
  15407. name: "Front",
  15408. image: {
  15409. source: "./media/characters/mika/front.svg",
  15410. extra: 1,
  15411. bottom: 0.016
  15412. }
  15413. },
  15414. },
  15415. [
  15416. {
  15417. name: "Normal",
  15418. height: math.unit(5 + 7 / 12, "feet"),
  15419. default: true
  15420. },
  15421. ]
  15422. ))
  15423. characterMakers.push(() => makeCharacter(
  15424. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15425. {
  15426. front: {
  15427. height: math.unit(6 + 2 / 12, "feet"),
  15428. weight: math.unit(268, "lb"),
  15429. name: "Front",
  15430. image: {
  15431. source: "./media/characters/sol/front.svg",
  15432. extra: 247 / 231,
  15433. bottom: 0.05
  15434. }
  15435. },
  15436. },
  15437. [
  15438. {
  15439. name: "Normal",
  15440. height: math.unit(6 + 2 / 12, "feet"),
  15441. default: true
  15442. },
  15443. ]
  15444. ))
  15445. characterMakers.push(() => makeCharacter(
  15446. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15447. {
  15448. buizel: {
  15449. height: math.unit(2 + 5 / 12, "feet"),
  15450. weight: math.unit(87, "lb"),
  15451. name: "Front",
  15452. image: {
  15453. source: "./media/characters/umiko/buizel.svg",
  15454. extra: 172 / 157,
  15455. bottom: 0.01
  15456. },
  15457. form: "buizel",
  15458. default: true
  15459. },
  15460. floatzel: {
  15461. height: math.unit(5 + 9 / 12, "feet"),
  15462. weight: math.unit(250, "lb"),
  15463. name: "Front",
  15464. image: {
  15465. source: "./media/characters/umiko/floatzel.svg",
  15466. extra: 1076/1006,
  15467. bottom: 15/1091
  15468. },
  15469. form: "floatzel",
  15470. default: true
  15471. },
  15472. },
  15473. [
  15474. {
  15475. name: "Normal",
  15476. height: math.unit(2 + 5 / 12, "feet"),
  15477. form: "buizel",
  15478. default: true
  15479. },
  15480. {
  15481. name: "Normal",
  15482. height: math.unit(5 + 9 / 12, "feet"),
  15483. form: "floatzel",
  15484. default: true
  15485. },
  15486. ],
  15487. {
  15488. "buizel": {
  15489. name: "Buizel"
  15490. },
  15491. "floatzel": {
  15492. name: "Floatzel",
  15493. default: true
  15494. }
  15495. }
  15496. ))
  15497. characterMakers.push(() => makeCharacter(
  15498. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15499. {
  15500. front: {
  15501. height: math.unit(6 + 2 / 12, "feet"),
  15502. weight: math.unit(146, "lb"),
  15503. name: "Front",
  15504. image: {
  15505. source: "./media/characters/iliac/front.svg",
  15506. extra: 389 / 365,
  15507. bottom: 0.035
  15508. }
  15509. },
  15510. },
  15511. [
  15512. {
  15513. name: "Normal",
  15514. height: math.unit(6 + 2 / 12, "feet"),
  15515. default: true
  15516. },
  15517. ]
  15518. ))
  15519. characterMakers.push(() => makeCharacter(
  15520. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15521. {
  15522. front: {
  15523. height: math.unit(6, "feet"),
  15524. weight: math.unit(170, "lb"),
  15525. name: "Front",
  15526. image: {
  15527. source: "./media/characters/topaz/front.svg",
  15528. extra: 317 / 303,
  15529. bottom: 0.055
  15530. }
  15531. },
  15532. },
  15533. [
  15534. {
  15535. name: "Normal",
  15536. height: math.unit(6, "feet"),
  15537. default: true
  15538. },
  15539. ]
  15540. ))
  15541. characterMakers.push(() => makeCharacter(
  15542. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15543. {
  15544. front: {
  15545. height: math.unit(5 + 11 / 12, "feet"),
  15546. weight: math.unit(144, "lb"),
  15547. name: "Front",
  15548. image: {
  15549. source: "./media/characters/gabriel/front.svg",
  15550. extra: 285 / 262,
  15551. bottom: 0.004
  15552. }
  15553. },
  15554. },
  15555. [
  15556. {
  15557. name: "Normal",
  15558. height: math.unit(5 + 11 / 12, "feet"),
  15559. default: true
  15560. },
  15561. ]
  15562. ))
  15563. characterMakers.push(() => makeCharacter(
  15564. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15565. {
  15566. side: {
  15567. height: math.unit(6 + 5 / 12, "feet"),
  15568. weight: math.unit(300, "lb"),
  15569. name: "Side",
  15570. image: {
  15571. source: "./media/characters/tempest-suicune/side.svg",
  15572. extra: 195 / 154,
  15573. bottom: 0.04
  15574. }
  15575. },
  15576. },
  15577. [
  15578. {
  15579. name: "Normal",
  15580. height: math.unit(6 + 5 / 12, "feet"),
  15581. default: true
  15582. },
  15583. ]
  15584. ))
  15585. characterMakers.push(() => makeCharacter(
  15586. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15587. {
  15588. front: {
  15589. height: math.unit(7 + 2 / 12, "feet"),
  15590. weight: math.unit(322, "lb"),
  15591. name: "Front",
  15592. image: {
  15593. source: "./media/characters/vulcan/front.svg",
  15594. extra: 154 / 147,
  15595. bottom: 0.04
  15596. }
  15597. },
  15598. },
  15599. [
  15600. {
  15601. name: "Normal",
  15602. height: math.unit(7 + 2 / 12, "feet"),
  15603. default: true
  15604. },
  15605. ]
  15606. ))
  15607. characterMakers.push(() => makeCharacter(
  15608. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15609. {
  15610. front: {
  15611. height: math.unit(5 + 10 / 12, "feet"),
  15612. weight: math.unit(264, "lb"),
  15613. name: "Front",
  15614. image: {
  15615. source: "./media/characters/gault/front.svg",
  15616. extra: 161 / 140,
  15617. bottom: 0.028
  15618. }
  15619. },
  15620. },
  15621. [
  15622. {
  15623. name: "Normal",
  15624. height: math.unit(5 + 10 / 12, "feet"),
  15625. default: true
  15626. },
  15627. ]
  15628. ))
  15629. characterMakers.push(() => makeCharacter(
  15630. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15631. {
  15632. front: {
  15633. height: math.unit(6, "feet"),
  15634. weight: math.unit(150, "lb"),
  15635. name: "Front",
  15636. image: {
  15637. source: "./media/characters/shard/front.svg",
  15638. extra: 273 / 238,
  15639. bottom: 0.02
  15640. }
  15641. },
  15642. },
  15643. [
  15644. {
  15645. name: "Normal",
  15646. height: math.unit(3 + 6 / 12, "feet"),
  15647. default: true
  15648. },
  15649. ]
  15650. ))
  15651. characterMakers.push(() => makeCharacter(
  15652. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15653. {
  15654. front: {
  15655. height: math.unit(5 + 11 / 12, "feet"),
  15656. weight: math.unit(146, "lb"),
  15657. name: "Front",
  15658. image: {
  15659. source: "./media/characters/ashe/front.svg",
  15660. extra: 400 / 373,
  15661. bottom: 0.01
  15662. }
  15663. },
  15664. },
  15665. [
  15666. {
  15667. name: "Normal",
  15668. height: math.unit(5 + 11 / 12, "feet"),
  15669. default: true
  15670. },
  15671. ]
  15672. ))
  15673. characterMakers.push(() => makeCharacter(
  15674. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15675. {
  15676. front: {
  15677. height: math.unit(5 + 5 / 12, "feet"),
  15678. weight: math.unit(135, "lb"),
  15679. name: "Front",
  15680. image: {
  15681. source: "./media/characters/beatrix/front.svg",
  15682. extra: 392 / 379,
  15683. bottom: 0.01
  15684. }
  15685. },
  15686. },
  15687. [
  15688. {
  15689. name: "Normal",
  15690. height: math.unit(6, "feet"),
  15691. default: true
  15692. },
  15693. ]
  15694. ))
  15695. characterMakers.push(() => makeCharacter(
  15696. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15697. {
  15698. front: {
  15699. height: math.unit(6 + 2/12, "feet"),
  15700. weight: math.unit(135, "lb"),
  15701. name: "Front",
  15702. image: {
  15703. source: "./media/characters/ignatius/front.svg",
  15704. extra: 1380/1259,
  15705. bottom: 27/1407
  15706. }
  15707. },
  15708. },
  15709. [
  15710. {
  15711. name: "Normal",
  15712. height: math.unit(6 + 2/12, "feet"),
  15713. default: true
  15714. },
  15715. ]
  15716. ))
  15717. characterMakers.push(() => makeCharacter(
  15718. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15719. {
  15720. front: {
  15721. height: math.unit(6 + 2 / 12, "feet"),
  15722. weight: math.unit(138, "lb"),
  15723. name: "Front",
  15724. image: {
  15725. source: "./media/characters/mei-li/front.svg",
  15726. extra: 237 / 229,
  15727. bottom: 0.03
  15728. }
  15729. },
  15730. },
  15731. [
  15732. {
  15733. name: "Normal",
  15734. height: math.unit(6 + 2 / 12, "feet"),
  15735. default: true
  15736. },
  15737. ]
  15738. ))
  15739. characterMakers.push(() => makeCharacter(
  15740. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15741. {
  15742. front: {
  15743. height: math.unit(2 + 4 / 12, "feet"),
  15744. weight: math.unit(62, "lb"),
  15745. name: "Front",
  15746. image: {
  15747. source: "./media/characters/puru/front.svg",
  15748. extra: 206 / 149,
  15749. bottom: 0.06
  15750. }
  15751. },
  15752. },
  15753. [
  15754. {
  15755. name: "Normal",
  15756. height: math.unit(2 + 4 / 12, "feet"),
  15757. default: true
  15758. },
  15759. ]
  15760. ))
  15761. characterMakers.push(() => makeCharacter(
  15762. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15763. {
  15764. anthro: {
  15765. height: math.unit(5 + 8/12, "feet"),
  15766. weight: math.unit(200, "lb"),
  15767. energyNeed: math.unit(2000, "kcal"),
  15768. name: "Anthro",
  15769. image: {
  15770. source: "./media/characters/kee/anthro.svg",
  15771. extra: 3251/3184,
  15772. bottom: 250/3501
  15773. }
  15774. },
  15775. taur: {
  15776. height: math.unit(11, "feet"),
  15777. weight: math.unit(500, "lb"),
  15778. energyNeed: math.unit(5000, "kcal"),
  15779. name: "Taur",
  15780. image: {
  15781. source: "./media/characters/kee/taur.svg",
  15782. extra: 1362/1320,
  15783. bottom: 83/1445
  15784. }
  15785. },
  15786. },
  15787. [
  15788. {
  15789. name: "Normal",
  15790. height: math.unit(5 + 8/12, "feet"),
  15791. default: true
  15792. },
  15793. {
  15794. name: "Macro",
  15795. height: math.unit(35, "feet")
  15796. },
  15797. ]
  15798. ))
  15799. characterMakers.push(() => makeCharacter(
  15800. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15801. {
  15802. anthro: {
  15803. height: math.unit(7, "feet"),
  15804. weight: math.unit(190, "lb"),
  15805. name: "Anthro",
  15806. image: {
  15807. source: "./media/characters/cobalt-dracha/anthro.svg",
  15808. extra: 231 / 225,
  15809. bottom: 0.04
  15810. }
  15811. },
  15812. feral: {
  15813. height: math.unit(9 + 7 / 12, "feet"),
  15814. weight: math.unit(294, "lb"),
  15815. name: "Feral",
  15816. image: {
  15817. source: "./media/characters/cobalt-dracha/feral.svg",
  15818. extra: 692 / 633,
  15819. bottom: 0.05
  15820. }
  15821. },
  15822. },
  15823. [
  15824. {
  15825. name: "Normal",
  15826. height: math.unit(7, "feet"),
  15827. default: true
  15828. },
  15829. ]
  15830. ))
  15831. characterMakers.push(() => makeCharacter(
  15832. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15833. {
  15834. fallen: {
  15835. height: math.unit(11 + 8 / 12, "feet"),
  15836. weight: math.unit(485, "lb"),
  15837. name: "Java (Fallen)",
  15838. rename: true,
  15839. image: {
  15840. source: "./media/characters/java/fallen.svg",
  15841. extra: 226 / 208,
  15842. bottom: 0.005
  15843. }
  15844. },
  15845. godkin: {
  15846. height: math.unit(10 + 6 / 12, "feet"),
  15847. weight: math.unit(328, "lb"),
  15848. name: "Java (Godkin)",
  15849. rename: true,
  15850. image: {
  15851. source: "./media/characters/java/godkin.svg",
  15852. extra: 1104/1068,
  15853. bottom: 36/1140
  15854. }
  15855. },
  15856. },
  15857. [
  15858. {
  15859. name: "Normal",
  15860. height: math.unit(11 + 8 / 12, "feet"),
  15861. default: true
  15862. },
  15863. ]
  15864. ))
  15865. characterMakers.push(() => makeCharacter(
  15866. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15867. {
  15868. front: {
  15869. height: math.unit(5 + 9 / 12, "feet"),
  15870. weight: math.unit(170, "lb"),
  15871. name: "Front",
  15872. image: {
  15873. source: "./media/characters/purna/front.svg",
  15874. extra: 239 / 229,
  15875. bottom: 0.01
  15876. }
  15877. },
  15878. },
  15879. [
  15880. {
  15881. name: "Normal",
  15882. height: math.unit(5 + 9 / 12, "feet"),
  15883. default: true
  15884. },
  15885. ]
  15886. ))
  15887. characterMakers.push(() => makeCharacter(
  15888. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15889. {
  15890. front: {
  15891. height: math.unit(5 + 9 / 12, "feet"),
  15892. weight: math.unit(142, "lb"),
  15893. name: "Front",
  15894. image: {
  15895. source: "./media/characters/kuva/front.svg",
  15896. extra: 281 / 271,
  15897. bottom: 0.006
  15898. }
  15899. },
  15900. },
  15901. [
  15902. {
  15903. name: "Normal",
  15904. height: math.unit(5 + 9 / 12, "feet"),
  15905. default: true
  15906. },
  15907. ]
  15908. ))
  15909. characterMakers.push(() => makeCharacter(
  15910. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15911. {
  15912. anthro: {
  15913. height: math.unit(9 + 2 / 12, "feet"),
  15914. weight: math.unit(270, "lb"),
  15915. name: "Anthro",
  15916. image: {
  15917. source: "./media/characters/embra/anthro.svg",
  15918. extra: 200 / 187,
  15919. bottom: 0.02
  15920. }
  15921. },
  15922. feral: {
  15923. height: math.unit(18 + 8 / 12, "feet"),
  15924. weight: math.unit(576, "lb"),
  15925. name: "Feral",
  15926. image: {
  15927. source: "./media/characters/embra/feral.svg",
  15928. extra: 152 / 137,
  15929. bottom: 0.037
  15930. }
  15931. },
  15932. },
  15933. [
  15934. {
  15935. name: "Normal",
  15936. height: math.unit(9 + 2 / 12, "feet"),
  15937. default: true
  15938. },
  15939. ]
  15940. ))
  15941. characterMakers.push(() => makeCharacter(
  15942. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15943. {
  15944. anthro: {
  15945. height: math.unit(10 + 9 / 12, "feet"),
  15946. weight: math.unit(224, "lb"),
  15947. name: "Anthro",
  15948. image: {
  15949. source: "./media/characters/grottos/anthro.svg",
  15950. extra: 350 / 332,
  15951. bottom: 0.045
  15952. }
  15953. },
  15954. feral: {
  15955. height: math.unit(20 + 7 / 12, "feet"),
  15956. weight: math.unit(629, "lb"),
  15957. name: "Feral",
  15958. image: {
  15959. source: "./media/characters/grottos/feral.svg",
  15960. extra: 207 / 190,
  15961. bottom: 0.05
  15962. }
  15963. },
  15964. },
  15965. [
  15966. {
  15967. name: "Normal",
  15968. height: math.unit(10 + 9 / 12, "feet"),
  15969. default: true
  15970. },
  15971. ]
  15972. ))
  15973. characterMakers.push(() => makeCharacter(
  15974. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15975. {
  15976. anthro: {
  15977. height: math.unit(9 + 6 / 12, "feet"),
  15978. weight: math.unit(298, "lb"),
  15979. name: "Anthro",
  15980. image: {
  15981. source: "./media/characters/frifna/anthro.svg",
  15982. extra: 282 / 269,
  15983. bottom: 0.015
  15984. }
  15985. },
  15986. feral: {
  15987. height: math.unit(16 + 2 / 12, "feet"),
  15988. weight: math.unit(624, "lb"),
  15989. name: "Feral",
  15990. image: {
  15991. source: "./media/characters/frifna/feral.svg"
  15992. }
  15993. },
  15994. },
  15995. [
  15996. {
  15997. name: "Normal",
  15998. height: math.unit(9 + 6 / 12, "feet"),
  15999. default: true
  16000. },
  16001. ]
  16002. ))
  16003. characterMakers.push(() => makeCharacter(
  16004. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16005. {
  16006. front: {
  16007. height: math.unit(6 + 2 / 12, "feet"),
  16008. weight: math.unit(168, "lb"),
  16009. name: "Front",
  16010. image: {
  16011. source: "./media/characters/elise/front.svg",
  16012. extra: 276 / 271
  16013. }
  16014. },
  16015. },
  16016. [
  16017. {
  16018. name: "Normal",
  16019. height: math.unit(6 + 2 / 12, "feet"),
  16020. default: true
  16021. },
  16022. ]
  16023. ))
  16024. characterMakers.push(() => makeCharacter(
  16025. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16026. {
  16027. front: {
  16028. height: math.unit(5 + 10 / 12, "feet"),
  16029. weight: math.unit(210, "lb"),
  16030. name: "Front",
  16031. image: {
  16032. source: "./media/characters/glade/front.svg",
  16033. extra: 258 / 247,
  16034. bottom: 0.008
  16035. }
  16036. },
  16037. },
  16038. [
  16039. {
  16040. name: "Normal",
  16041. height: math.unit(5 + 10 / 12, "feet"),
  16042. default: true
  16043. },
  16044. ]
  16045. ))
  16046. characterMakers.push(() => makeCharacter(
  16047. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16048. {
  16049. front: {
  16050. height: math.unit(5 + 10 / 12, "feet"),
  16051. weight: math.unit(129, "lb"),
  16052. name: "Front",
  16053. image: {
  16054. source: "./media/characters/rina/front.svg",
  16055. extra: 266 / 255,
  16056. bottom: 0.005
  16057. }
  16058. },
  16059. },
  16060. [
  16061. {
  16062. name: "Normal",
  16063. height: math.unit(5 + 10 / 12, "feet"),
  16064. default: true
  16065. },
  16066. ]
  16067. ))
  16068. characterMakers.push(() => makeCharacter(
  16069. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16070. {
  16071. front: {
  16072. height: math.unit(6 + 1 / 12, "feet"),
  16073. weight: math.unit(192, "lb"),
  16074. name: "Front",
  16075. image: {
  16076. source: "./media/characters/veronica/front.svg",
  16077. extra: 319 / 309,
  16078. bottom: 0.005
  16079. }
  16080. },
  16081. },
  16082. [
  16083. {
  16084. name: "Normal",
  16085. height: math.unit(6 + 1 / 12, "feet"),
  16086. default: true
  16087. },
  16088. ]
  16089. ))
  16090. characterMakers.push(() => makeCharacter(
  16091. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16092. {
  16093. front: {
  16094. height: math.unit(9 + 3 / 12, "feet"),
  16095. weight: math.unit(1100, "lb"),
  16096. name: "Front",
  16097. image: {
  16098. source: "./media/characters/braxton/front.svg",
  16099. extra: 1057 / 984,
  16100. bottom: 0.05
  16101. }
  16102. },
  16103. },
  16104. [
  16105. {
  16106. name: "Normal",
  16107. height: math.unit(9 + 3 / 12, "feet")
  16108. },
  16109. {
  16110. name: "Giant",
  16111. height: math.unit(300, "feet"),
  16112. default: true
  16113. },
  16114. {
  16115. name: "Macro",
  16116. height: math.unit(700, "feet")
  16117. },
  16118. {
  16119. name: "Megamacro",
  16120. height: math.unit(6000, "feet")
  16121. },
  16122. ]
  16123. ))
  16124. characterMakers.push(() => makeCharacter(
  16125. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16126. {
  16127. front: {
  16128. height: math.unit(6 + 7 / 12, "feet"),
  16129. weight: math.unit(150, "lb"),
  16130. name: "Front",
  16131. image: {
  16132. source: "./media/characters/blue-feyonics/front.svg",
  16133. extra: 1403 / 1306,
  16134. bottom: 0.047
  16135. }
  16136. },
  16137. },
  16138. [
  16139. {
  16140. name: "Normal",
  16141. height: math.unit(6 + 7 / 12, "feet"),
  16142. default: true
  16143. },
  16144. ]
  16145. ))
  16146. characterMakers.push(() => makeCharacter(
  16147. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16148. {
  16149. front: {
  16150. height: math.unit(1.8, "meters"),
  16151. weight: math.unit(60, "kg"),
  16152. name: "Front",
  16153. image: {
  16154. source: "./media/characters/maxwell/front.svg",
  16155. extra: 2060 / 1873
  16156. }
  16157. },
  16158. },
  16159. [
  16160. {
  16161. name: "Micro",
  16162. height: math.unit(1, "mm")
  16163. },
  16164. {
  16165. name: "Normal",
  16166. height: math.unit(1.8, "meter"),
  16167. default: true
  16168. },
  16169. {
  16170. name: "Macro",
  16171. height: math.unit(30, "meters")
  16172. },
  16173. {
  16174. name: "Megamacro",
  16175. height: math.unit(10, "km")
  16176. },
  16177. ]
  16178. ))
  16179. characterMakers.push(() => makeCharacter(
  16180. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16181. {
  16182. front: {
  16183. height: math.unit(6, "feet"),
  16184. weight: math.unit(150, "lb"),
  16185. name: "Front",
  16186. image: {
  16187. source: "./media/characters/jack/front.svg",
  16188. extra: 1754 / 1640,
  16189. bottom: 0.01
  16190. }
  16191. },
  16192. },
  16193. [
  16194. {
  16195. name: "Normal",
  16196. height: math.unit(80000, "feet"),
  16197. default: true
  16198. },
  16199. {
  16200. name: "Max size",
  16201. height: math.unit(10, "lightyears")
  16202. },
  16203. ]
  16204. ))
  16205. characterMakers.push(() => makeCharacter(
  16206. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16207. {
  16208. urban: {
  16209. height: math.unit(5, "feet"),
  16210. weight: math.unit(240, "lb"),
  16211. name: "Urban",
  16212. image: {
  16213. source: "./media/characters/cafat/urban.svg",
  16214. extra: 1223/1126,
  16215. bottom: 205/1428
  16216. }
  16217. },
  16218. summer: {
  16219. height: math.unit(5, "feet"),
  16220. weight: math.unit(240, "lb"),
  16221. name: "Summer",
  16222. image: {
  16223. source: "./media/characters/cafat/summer.svg",
  16224. extra: 1223/1126,
  16225. bottom: 205/1428
  16226. }
  16227. },
  16228. winter: {
  16229. height: math.unit(5, "feet"),
  16230. weight: math.unit(240, "lb"),
  16231. name: "Winter",
  16232. image: {
  16233. source: "./media/characters/cafat/winter.svg",
  16234. extra: 1223/1126,
  16235. bottom: 205/1428
  16236. }
  16237. },
  16238. lingerie: {
  16239. height: math.unit(5, "feet"),
  16240. weight: math.unit(240, "lb"),
  16241. name: "Lingerie",
  16242. image: {
  16243. source: "./media/characters/cafat/lingerie.svg",
  16244. extra: 1223/1126,
  16245. bottom: 205/1428
  16246. }
  16247. },
  16248. upright: {
  16249. height: math.unit(6.3, "feet"),
  16250. weight: math.unit(240, "lb"),
  16251. name: "Upright",
  16252. image: {
  16253. source: "./media/characters/cafat/upright.svg",
  16254. bottom: 0.01
  16255. }
  16256. },
  16257. uprightFull: {
  16258. height: math.unit(6.3, "feet"),
  16259. weight: math.unit(240, "lb"),
  16260. name: "Upright (Full)",
  16261. image: {
  16262. source: "./media/characters/cafat/upright-full.svg",
  16263. bottom: 0.01
  16264. }
  16265. },
  16266. },
  16267. [
  16268. {
  16269. name: "Small",
  16270. height: math.unit(5, "feet"),
  16271. default: true
  16272. },
  16273. {
  16274. name: "Large",
  16275. height: math.unit(13, "feet")
  16276. },
  16277. ]
  16278. ))
  16279. characterMakers.push(() => makeCharacter(
  16280. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16281. {
  16282. front: {
  16283. height: math.unit(6, "feet"),
  16284. weight: math.unit(150, "lb"),
  16285. name: "Front",
  16286. image: {
  16287. source: "./media/characters/verin-raharra/front.svg",
  16288. extra: 5019 / 4835,
  16289. bottom: 0.023
  16290. }
  16291. },
  16292. },
  16293. [
  16294. {
  16295. name: "Normal",
  16296. height: math.unit(7 + 5 / 12, "feet"),
  16297. default: true
  16298. },
  16299. {
  16300. name: "Upsized",
  16301. height: math.unit(20, "feet")
  16302. },
  16303. ]
  16304. ))
  16305. characterMakers.push(() => makeCharacter(
  16306. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16307. {
  16308. front: {
  16309. height: math.unit(7, "feet"),
  16310. weight: math.unit(230, "lb"),
  16311. name: "Front",
  16312. image: {
  16313. source: "./media/characters/nakata/front.svg",
  16314. extra: 1.005,
  16315. bottom: 0.01
  16316. }
  16317. },
  16318. },
  16319. [
  16320. {
  16321. name: "Normal",
  16322. height: math.unit(7, "feet"),
  16323. default: true
  16324. },
  16325. {
  16326. name: "Big",
  16327. height: math.unit(14, "feet")
  16328. },
  16329. {
  16330. name: "Macro",
  16331. height: math.unit(400, "feet")
  16332. },
  16333. ]
  16334. ))
  16335. characterMakers.push(() => makeCharacter(
  16336. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16337. {
  16338. front: {
  16339. height: math.unit(4.91, "feet"),
  16340. weight: math.unit(100, "lb"),
  16341. name: "Front",
  16342. image: {
  16343. source: "./media/characters/lily/front.svg",
  16344. extra: 1585 / 1415,
  16345. bottom: 0.02
  16346. }
  16347. },
  16348. },
  16349. [
  16350. {
  16351. name: "Normal",
  16352. height: math.unit(4.91, "feet"),
  16353. default: true
  16354. },
  16355. ]
  16356. ))
  16357. characterMakers.push(() => makeCharacter(
  16358. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16359. {
  16360. laying: {
  16361. height: math.unit(4 + 4 / 12, "feet"),
  16362. weight: math.unit(600, "lb"),
  16363. name: "Laying",
  16364. image: {
  16365. source: "./media/characters/sheila/laying.svg",
  16366. extra: 1333 / 1265,
  16367. bottom: 0.16
  16368. }
  16369. },
  16370. },
  16371. [
  16372. {
  16373. name: "Normal",
  16374. height: math.unit(4 + 4 / 12, "feet"),
  16375. default: true
  16376. },
  16377. ]
  16378. ))
  16379. characterMakers.push(() => makeCharacter(
  16380. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16381. {
  16382. front: {
  16383. height: math.unit(6, "feet"),
  16384. weight: math.unit(190, "lb"),
  16385. name: "Front",
  16386. image: {
  16387. source: "./media/characters/sax/front.svg",
  16388. extra: 1187 / 973,
  16389. bottom: 0.042
  16390. }
  16391. },
  16392. },
  16393. [
  16394. {
  16395. name: "Micro",
  16396. height: math.unit(4, "inches"),
  16397. default: true
  16398. },
  16399. ]
  16400. ))
  16401. characterMakers.push(() => makeCharacter(
  16402. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16403. {
  16404. front: {
  16405. height: math.unit(6, "feet"),
  16406. weight: math.unit(150, "lb"),
  16407. name: "Front",
  16408. image: {
  16409. source: "./media/characters/pandora/front.svg",
  16410. extra: 2720 / 2556,
  16411. bottom: 0.015
  16412. }
  16413. },
  16414. back: {
  16415. height: math.unit(6, "feet"),
  16416. weight: math.unit(150, "lb"),
  16417. name: "Back",
  16418. image: {
  16419. source: "./media/characters/pandora/back.svg",
  16420. extra: 2720 / 2556,
  16421. bottom: 0.01
  16422. }
  16423. },
  16424. beans: {
  16425. height: math.unit(6 / 8, "feet"),
  16426. name: "Beans",
  16427. image: {
  16428. source: "./media/characters/pandora/beans.svg"
  16429. }
  16430. },
  16431. collar: {
  16432. height: math.unit(0.31, "feet"),
  16433. name: "Collar",
  16434. image: {
  16435. source: "./media/characters/pandora/collar.svg"
  16436. }
  16437. },
  16438. skirt: {
  16439. height: math.unit(6, "feet"),
  16440. weight: math.unit(150, "lb"),
  16441. name: "Skirt",
  16442. image: {
  16443. source: "./media/characters/pandora/skirt.svg",
  16444. extra: 1622 / 1525,
  16445. bottom: 0.015
  16446. }
  16447. },
  16448. hoodie: {
  16449. height: math.unit(6, "feet"),
  16450. weight: math.unit(150, "lb"),
  16451. name: "Hoodie",
  16452. image: {
  16453. source: "./media/characters/pandora/hoodie.svg",
  16454. extra: 1622 / 1525,
  16455. bottom: 0.015
  16456. }
  16457. },
  16458. casual: {
  16459. height: math.unit(6, "feet"),
  16460. weight: math.unit(150, "lb"),
  16461. name: "Casual",
  16462. image: {
  16463. source: "./media/characters/pandora/casual.svg",
  16464. extra: 1622 / 1525,
  16465. bottom: 0.015
  16466. }
  16467. },
  16468. },
  16469. [
  16470. {
  16471. name: "Normal",
  16472. height: math.unit(6, "feet")
  16473. },
  16474. {
  16475. name: "Big Steppy",
  16476. height: math.unit(1, "km"),
  16477. default: true
  16478. },
  16479. {
  16480. name: "Galactic Steppy",
  16481. height: math.unit(2, "gigameters")
  16482. },
  16483. ]
  16484. ))
  16485. characterMakers.push(() => makeCharacter(
  16486. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16487. {
  16488. side: {
  16489. height: math.unit(10, "feet"),
  16490. weight: math.unit(800, "kg"),
  16491. name: "Side",
  16492. image: {
  16493. source: "./media/characters/venio-darcony/side.svg",
  16494. extra: 1373 / 1003,
  16495. bottom: 0.037
  16496. }
  16497. },
  16498. front: {
  16499. height: math.unit(19, "feet"),
  16500. weight: math.unit(800, "kg"),
  16501. name: "Front",
  16502. image: {
  16503. source: "./media/characters/venio-darcony/front.svg"
  16504. }
  16505. },
  16506. back: {
  16507. height: math.unit(19, "feet"),
  16508. weight: math.unit(800, "kg"),
  16509. name: "Back",
  16510. image: {
  16511. source: "./media/characters/venio-darcony/back.svg"
  16512. }
  16513. },
  16514. sideNsfw: {
  16515. height: math.unit(10, "feet"),
  16516. weight: math.unit(800, "kg"),
  16517. name: "Side (NSFW)",
  16518. image: {
  16519. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16520. extra: 1373 / 1003,
  16521. bottom: 0.037
  16522. }
  16523. },
  16524. frontNsfw: {
  16525. height: math.unit(19, "feet"),
  16526. weight: math.unit(800, "kg"),
  16527. name: "Front (NSFW)",
  16528. image: {
  16529. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16530. }
  16531. },
  16532. backNsfw: {
  16533. height: math.unit(19, "feet"),
  16534. weight: math.unit(800, "kg"),
  16535. name: "Back (NSFW)",
  16536. image: {
  16537. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16538. }
  16539. },
  16540. sideArmored: {
  16541. height: math.unit(10, "feet"),
  16542. weight: math.unit(800, "kg"),
  16543. name: "Side (Armored)",
  16544. image: {
  16545. source: "./media/characters/venio-darcony/side-armored.svg",
  16546. extra: 1373 / 1003,
  16547. bottom: 0.037
  16548. }
  16549. },
  16550. frontArmored: {
  16551. height: math.unit(19, "feet"),
  16552. weight: math.unit(900, "kg"),
  16553. name: "Front (Armored)",
  16554. image: {
  16555. source: "./media/characters/venio-darcony/front-armored.svg"
  16556. }
  16557. },
  16558. backArmored: {
  16559. height: math.unit(19, "feet"),
  16560. weight: math.unit(900, "kg"),
  16561. name: "Back (Armored)",
  16562. image: {
  16563. source: "./media/characters/venio-darcony/back-armored.svg"
  16564. }
  16565. },
  16566. sword: {
  16567. height: math.unit(10, "feet"),
  16568. weight: math.unit(50, "lb"),
  16569. name: "Sword",
  16570. image: {
  16571. source: "./media/characters/venio-darcony/sword.svg"
  16572. }
  16573. },
  16574. },
  16575. [
  16576. {
  16577. name: "Normal",
  16578. height: math.unit(10, "feet")
  16579. },
  16580. {
  16581. name: "Macro",
  16582. height: math.unit(130, "feet"),
  16583. default: true
  16584. },
  16585. {
  16586. name: "Macro+",
  16587. height: math.unit(240, "feet")
  16588. },
  16589. ]
  16590. ))
  16591. characterMakers.push(() => makeCharacter(
  16592. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16593. {
  16594. front: {
  16595. height: math.unit(6, "feet"),
  16596. weight: math.unit(150, "lb"),
  16597. name: "Front",
  16598. image: {
  16599. source: "./media/characters/veski/front.svg",
  16600. extra: 1299 / 1225,
  16601. bottom: 0.04
  16602. }
  16603. },
  16604. back: {
  16605. height: math.unit(6, "feet"),
  16606. weight: math.unit(150, "lb"),
  16607. name: "Back",
  16608. image: {
  16609. source: "./media/characters/veski/back.svg",
  16610. extra: 1299 / 1225,
  16611. bottom: 0.008
  16612. }
  16613. },
  16614. maw: {
  16615. height: math.unit(1.5 * 1.21, "feet"),
  16616. name: "Maw",
  16617. image: {
  16618. source: "./media/characters/veski/maw.svg"
  16619. }
  16620. },
  16621. },
  16622. [
  16623. {
  16624. name: "Macro",
  16625. height: math.unit(2, "km"),
  16626. default: true
  16627. },
  16628. ]
  16629. ))
  16630. characterMakers.push(() => makeCharacter(
  16631. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16632. {
  16633. front: {
  16634. height: math.unit(5 + 7 / 12, "feet"),
  16635. name: "Front",
  16636. image: {
  16637. source: "./media/characters/isabelle/front.svg",
  16638. extra: 2130 / 1976,
  16639. bottom: 0.05
  16640. }
  16641. },
  16642. },
  16643. [
  16644. {
  16645. name: "Supermicro",
  16646. height: math.unit(10, "micrometers")
  16647. },
  16648. {
  16649. name: "Micro",
  16650. height: math.unit(1, "inch")
  16651. },
  16652. {
  16653. name: "Tiny",
  16654. height: math.unit(5, "inches")
  16655. },
  16656. {
  16657. name: "Standard",
  16658. height: math.unit(5 + 7 / 12, "inches")
  16659. },
  16660. {
  16661. name: "Macro",
  16662. height: math.unit(80, "meters"),
  16663. default: true
  16664. },
  16665. {
  16666. name: "Megamacro",
  16667. height: math.unit(250, "meters")
  16668. },
  16669. {
  16670. name: "Gigamacro",
  16671. height: math.unit(5, "km")
  16672. },
  16673. {
  16674. name: "Cosmic",
  16675. height: math.unit(2.5e6, "miles")
  16676. },
  16677. ]
  16678. ))
  16679. characterMakers.push(() => makeCharacter(
  16680. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16681. {
  16682. front: {
  16683. height: math.unit(6, "feet"),
  16684. weight: math.unit(150, "lb"),
  16685. name: "Front",
  16686. image: {
  16687. source: "./media/characters/hanzo/front.svg",
  16688. extra: 374 / 344,
  16689. bottom: 0.02
  16690. }
  16691. },
  16692. },
  16693. [
  16694. {
  16695. name: "Normal",
  16696. height: math.unit(8, "feet"),
  16697. default: true
  16698. },
  16699. ]
  16700. ))
  16701. characterMakers.push(() => makeCharacter(
  16702. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16703. {
  16704. front: {
  16705. height: math.unit(7, "feet"),
  16706. weight: math.unit(130, "lb"),
  16707. name: "Front",
  16708. image: {
  16709. source: "./media/characters/anna/front.svg",
  16710. extra: 169 / 145,
  16711. bottom: 0.06
  16712. }
  16713. },
  16714. full: {
  16715. height: math.unit(4.96, "feet"),
  16716. weight: math.unit(220, "lb"),
  16717. name: "Full",
  16718. image: {
  16719. source: "./media/characters/anna/full.svg",
  16720. extra: 138 / 114,
  16721. bottom: 0.15
  16722. }
  16723. },
  16724. tongue: {
  16725. height: math.unit(2.53, "feet"),
  16726. name: "Tongue",
  16727. image: {
  16728. source: "./media/characters/anna/tongue.svg"
  16729. }
  16730. },
  16731. },
  16732. [
  16733. {
  16734. name: "Normal",
  16735. height: math.unit(7, "feet"),
  16736. default: true
  16737. },
  16738. ]
  16739. ))
  16740. characterMakers.push(() => makeCharacter(
  16741. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16742. {
  16743. front: {
  16744. height: math.unit(7, "feet"),
  16745. weight: math.unit(150, "lb"),
  16746. name: "Front",
  16747. image: {
  16748. source: "./media/characters/ian-corvid/front.svg",
  16749. extra: 150 / 142,
  16750. bottom: 0.02
  16751. }
  16752. },
  16753. back: {
  16754. height: math.unit(7, "feet"),
  16755. weight: math.unit(150, "lb"),
  16756. name: "Back",
  16757. image: {
  16758. source: "./media/characters/ian-corvid/back.svg",
  16759. extra: 150 / 143,
  16760. bottom: 0.01
  16761. }
  16762. },
  16763. stomping: {
  16764. height: math.unit(7, "feet"),
  16765. weight: math.unit(150, "lb"),
  16766. name: "Stomping",
  16767. image: {
  16768. source: "./media/characters/ian-corvid/stomping.svg",
  16769. extra: 76 / 72
  16770. }
  16771. },
  16772. sitting: {
  16773. height: math.unit(7 / 1.8, "feet"),
  16774. weight: math.unit(150, "lb"),
  16775. name: "Sitting",
  16776. image: {
  16777. source: "./media/characters/ian-corvid/sitting.svg",
  16778. extra: 1400 / 1269,
  16779. bottom: 0.15
  16780. }
  16781. },
  16782. },
  16783. [
  16784. {
  16785. name: "Tiny Microw",
  16786. height: math.unit(1, "inch")
  16787. },
  16788. {
  16789. name: "Microw",
  16790. height: math.unit(6, "inches")
  16791. },
  16792. {
  16793. name: "Crow",
  16794. height: math.unit(7 + 1 / 12, "feet"),
  16795. default: true
  16796. },
  16797. {
  16798. name: "Macrow",
  16799. height: math.unit(176, "feet")
  16800. },
  16801. ]
  16802. ))
  16803. characterMakers.push(() => makeCharacter(
  16804. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16805. {
  16806. front: {
  16807. height: math.unit(5 + 7 / 12, "feet"),
  16808. weight: math.unit(147, "lb"),
  16809. name: "Front",
  16810. image: {
  16811. source: "./media/characters/natalie-kellon/front.svg",
  16812. extra: 1214 / 1141,
  16813. bottom: 0.02
  16814. }
  16815. },
  16816. },
  16817. [
  16818. {
  16819. name: "Micro",
  16820. height: math.unit(1 / 16, "inch")
  16821. },
  16822. {
  16823. name: "Tiny",
  16824. height: math.unit(4, "inches")
  16825. },
  16826. {
  16827. name: "Normal",
  16828. height: math.unit(5 + 7 / 12, "feet"),
  16829. default: true
  16830. },
  16831. {
  16832. name: "Amazon",
  16833. height: math.unit(12, "feet")
  16834. },
  16835. {
  16836. name: "Giantess",
  16837. height: math.unit(160, "meters")
  16838. },
  16839. {
  16840. name: "Titaness",
  16841. height: math.unit(800, "meters")
  16842. },
  16843. ]
  16844. ))
  16845. characterMakers.push(() => makeCharacter(
  16846. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16847. {
  16848. front: {
  16849. height: math.unit(6, "feet"),
  16850. weight: math.unit(150, "lb"),
  16851. name: "Front",
  16852. image: {
  16853. source: "./media/characters/alluria/front.svg",
  16854. extra: 806 / 738,
  16855. bottom: 0.01
  16856. }
  16857. },
  16858. side: {
  16859. height: math.unit(6, "feet"),
  16860. weight: math.unit(150, "lb"),
  16861. name: "Side",
  16862. image: {
  16863. source: "./media/characters/alluria/side.svg",
  16864. extra: 800 / 750,
  16865. }
  16866. },
  16867. back: {
  16868. height: math.unit(6, "feet"),
  16869. weight: math.unit(150, "lb"),
  16870. name: "Back",
  16871. image: {
  16872. source: "./media/characters/alluria/back.svg",
  16873. extra: 806 / 738,
  16874. }
  16875. },
  16876. frontMaid: {
  16877. height: math.unit(6, "feet"),
  16878. weight: math.unit(150, "lb"),
  16879. name: "Front (Maid)",
  16880. image: {
  16881. source: "./media/characters/alluria/front-maid.svg",
  16882. extra: 806 / 738,
  16883. bottom: 0.01
  16884. }
  16885. },
  16886. sideMaid: {
  16887. height: math.unit(6, "feet"),
  16888. weight: math.unit(150, "lb"),
  16889. name: "Side (Maid)",
  16890. image: {
  16891. source: "./media/characters/alluria/side-maid.svg",
  16892. extra: 800 / 750,
  16893. bottom: 0.005
  16894. }
  16895. },
  16896. backMaid: {
  16897. height: math.unit(6, "feet"),
  16898. weight: math.unit(150, "lb"),
  16899. name: "Back (Maid)",
  16900. image: {
  16901. source: "./media/characters/alluria/back-maid.svg",
  16902. extra: 806 / 738,
  16903. }
  16904. },
  16905. },
  16906. [
  16907. {
  16908. name: "Micro",
  16909. height: math.unit(6, "inches"),
  16910. default: true
  16911. },
  16912. ]
  16913. ))
  16914. characterMakers.push(() => makeCharacter(
  16915. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16916. {
  16917. front: {
  16918. height: math.unit(6, "feet"),
  16919. weight: math.unit(150, "lb"),
  16920. name: "Front",
  16921. image: {
  16922. source: "./media/characters/kyle/front.svg",
  16923. extra: 1069 / 962,
  16924. bottom: 77.228 / 1727.45
  16925. }
  16926. },
  16927. },
  16928. [
  16929. {
  16930. name: "Macro",
  16931. height: math.unit(150, "feet"),
  16932. default: true
  16933. },
  16934. ]
  16935. ))
  16936. characterMakers.push(() => makeCharacter(
  16937. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16938. {
  16939. front: {
  16940. height: math.unit(6, "feet"),
  16941. weight: math.unit(300, "lb"),
  16942. name: "Front",
  16943. image: {
  16944. source: "./media/characters/duncan/front.svg",
  16945. extra: 1650 / 1482,
  16946. bottom: 0.05
  16947. }
  16948. },
  16949. },
  16950. [
  16951. {
  16952. name: "Macro",
  16953. height: math.unit(100, "feet"),
  16954. default: true
  16955. },
  16956. ]
  16957. ))
  16958. characterMakers.push(() => makeCharacter(
  16959. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16960. {
  16961. front: {
  16962. height: math.unit(5 + 4 / 12, "feet"),
  16963. weight: math.unit(220, "lb"),
  16964. name: "Front",
  16965. image: {
  16966. source: "./media/characters/memory/front.svg",
  16967. extra: 3641 / 3545,
  16968. bottom: 0.03
  16969. }
  16970. },
  16971. back: {
  16972. height: math.unit(5 + 4 / 12, "feet"),
  16973. weight: math.unit(220, "lb"),
  16974. name: "Back",
  16975. image: {
  16976. source: "./media/characters/memory/back.svg",
  16977. extra: 3641 / 3545,
  16978. bottom: 0.025
  16979. }
  16980. },
  16981. frontSkirt: {
  16982. height: math.unit(5 + 4 / 12, "feet"),
  16983. weight: math.unit(220, "lb"),
  16984. name: "Front (Skirt)",
  16985. image: {
  16986. source: "./media/characters/memory/front-skirt.svg",
  16987. extra: 3641 / 3545,
  16988. bottom: 0.03
  16989. }
  16990. },
  16991. frontDress: {
  16992. height: math.unit(5 + 4 / 12, "feet"),
  16993. weight: math.unit(220, "lb"),
  16994. name: "Front (Dress)",
  16995. image: {
  16996. source: "./media/characters/memory/front-dress.svg",
  16997. extra: 3641 / 3545,
  16998. bottom: 0.03
  16999. }
  17000. },
  17001. },
  17002. [
  17003. {
  17004. name: "Micro",
  17005. height: math.unit(6, "inches"),
  17006. default: true
  17007. },
  17008. {
  17009. name: "Normal",
  17010. height: math.unit(5 + 4 / 12, "feet")
  17011. },
  17012. ]
  17013. ))
  17014. characterMakers.push(() => makeCharacter(
  17015. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17016. {
  17017. front: {
  17018. height: math.unit(4 + 11 / 12, "feet"),
  17019. weight: math.unit(100, "lb"),
  17020. name: "Front",
  17021. image: {
  17022. source: "./media/characters/luno/front.svg",
  17023. extra: 1535 / 1487,
  17024. bottom: 0.03
  17025. }
  17026. },
  17027. },
  17028. [
  17029. {
  17030. name: "Micro",
  17031. height: math.unit(3, "inches")
  17032. },
  17033. {
  17034. name: "Normal",
  17035. height: math.unit(4 + 11 / 12, "feet"),
  17036. default: true
  17037. },
  17038. {
  17039. name: "Macro",
  17040. height: math.unit(300, "feet")
  17041. },
  17042. {
  17043. name: "Megamacro",
  17044. height: math.unit(700, "miles")
  17045. },
  17046. ]
  17047. ))
  17048. characterMakers.push(() => makeCharacter(
  17049. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17050. {
  17051. front: {
  17052. height: math.unit(6 + 2 / 12, "feet"),
  17053. weight: math.unit(170, "lb"),
  17054. name: "Front",
  17055. image: {
  17056. source: "./media/characters/jamesy/front.svg",
  17057. extra: 440 / 382,
  17058. bottom: 0.005
  17059. }
  17060. },
  17061. },
  17062. [
  17063. {
  17064. name: "Micro",
  17065. height: math.unit(3, "inches")
  17066. },
  17067. {
  17068. name: "Normal",
  17069. height: math.unit(6 + 2 / 12, "feet"),
  17070. default: true
  17071. },
  17072. {
  17073. name: "Macro",
  17074. height: math.unit(300, "feet")
  17075. },
  17076. {
  17077. name: "Megamacro",
  17078. height: math.unit(700, "miles")
  17079. },
  17080. ]
  17081. ))
  17082. characterMakers.push(() => makeCharacter(
  17083. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17084. {
  17085. front: {
  17086. height: math.unit(6, "feet"),
  17087. weight: math.unit(160, "lb"),
  17088. name: "Front",
  17089. image: {
  17090. source: "./media/characters/mark/front.svg",
  17091. extra: 3300 / 3100,
  17092. bottom: 136.42 / 3440.47
  17093. }
  17094. },
  17095. },
  17096. [
  17097. {
  17098. name: "Macro",
  17099. height: math.unit(120, "meters")
  17100. },
  17101. {
  17102. name: "Bigger Macro",
  17103. height: math.unit(350, "meters")
  17104. },
  17105. {
  17106. name: "Megamacro",
  17107. height: math.unit(8, "km"),
  17108. default: true
  17109. },
  17110. {
  17111. name: "Continental",
  17112. height: math.unit(4550, "km")
  17113. },
  17114. {
  17115. name: "Planetary",
  17116. height: math.unit(65000, "km")
  17117. },
  17118. ]
  17119. ))
  17120. characterMakers.push(() => makeCharacter(
  17121. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17122. {
  17123. front: {
  17124. height: math.unit(6, "feet"),
  17125. weight: math.unit(400, "lb"),
  17126. name: "Front",
  17127. image: {
  17128. source: "./media/characters/mac/front.svg",
  17129. extra: 1048 / 987.7,
  17130. bottom: 60 / 1107.6,
  17131. }
  17132. },
  17133. },
  17134. [
  17135. {
  17136. name: "Macro",
  17137. height: math.unit(500, "feet"),
  17138. default: true
  17139. },
  17140. ]
  17141. ))
  17142. characterMakers.push(() => makeCharacter(
  17143. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17144. {
  17145. front: {
  17146. height: math.unit(5 + 2 / 12, "feet"),
  17147. weight: math.unit(190, "lb"),
  17148. name: "Front",
  17149. image: {
  17150. source: "./media/characters/bari/front.svg",
  17151. extra: 3156 / 2880,
  17152. bottom: 0.03
  17153. }
  17154. },
  17155. back: {
  17156. height: math.unit(5 + 2 / 12, "feet"),
  17157. weight: math.unit(190, "lb"),
  17158. name: "Back",
  17159. image: {
  17160. source: "./media/characters/bari/back.svg",
  17161. extra: 3260 / 2834,
  17162. bottom: 0.025
  17163. }
  17164. },
  17165. frontPlush: {
  17166. height: math.unit(5 + 2 / 12, "feet"),
  17167. weight: math.unit(190, "lb"),
  17168. name: "Front (Plush)",
  17169. image: {
  17170. source: "./media/characters/bari/front-plush.svg",
  17171. extra: 1112 / 1061,
  17172. bottom: 0.002
  17173. }
  17174. },
  17175. },
  17176. [
  17177. {
  17178. name: "Micro",
  17179. height: math.unit(3, "inches")
  17180. },
  17181. {
  17182. name: "Normal",
  17183. height: math.unit(5 + 2 / 12, "feet"),
  17184. default: true
  17185. },
  17186. {
  17187. name: "Macro",
  17188. height: math.unit(20, "feet")
  17189. },
  17190. ]
  17191. ))
  17192. characterMakers.push(() => makeCharacter(
  17193. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17194. {
  17195. front: {
  17196. height: math.unit(6 + 1 / 12, "feet"),
  17197. weight: math.unit(275, "lb"),
  17198. name: "Front",
  17199. image: {
  17200. source: "./media/characters/hunter-misha-raven/front.svg"
  17201. }
  17202. },
  17203. },
  17204. [
  17205. {
  17206. name: "Mortal",
  17207. height: math.unit(6 + 1 / 12, "feet")
  17208. },
  17209. {
  17210. name: "Divine",
  17211. height: math.unit(1.12134e34, "parsecs"),
  17212. default: true
  17213. },
  17214. ]
  17215. ))
  17216. characterMakers.push(() => makeCharacter(
  17217. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17218. {
  17219. front: {
  17220. height: math.unit(6 + 3 / 12, "feet"),
  17221. weight: math.unit(220, "lb"),
  17222. name: "Front",
  17223. image: {
  17224. source: "./media/characters/max-calore/front.svg",
  17225. extra: 1700 / 1648,
  17226. bottom: 0.01
  17227. }
  17228. },
  17229. back: {
  17230. height: math.unit(6 + 3 / 12, "feet"),
  17231. weight: math.unit(220, "lb"),
  17232. name: "Back",
  17233. image: {
  17234. source: "./media/characters/max-calore/back.svg",
  17235. extra: 1700 / 1648,
  17236. bottom: 0.01
  17237. }
  17238. },
  17239. },
  17240. [
  17241. {
  17242. name: "Normal",
  17243. height: math.unit(6 + 3 / 12, "feet"),
  17244. default: true
  17245. },
  17246. ]
  17247. ))
  17248. characterMakers.push(() => makeCharacter(
  17249. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17250. {
  17251. side: {
  17252. height: math.unit(2 + 8 / 12, "feet"),
  17253. weight: math.unit(99, "lb"),
  17254. name: "Side",
  17255. image: {
  17256. source: "./media/characters/aspen/side.svg",
  17257. extra: 152 / 138,
  17258. bottom: 0.032
  17259. }
  17260. },
  17261. },
  17262. [
  17263. {
  17264. name: "Normal",
  17265. height: math.unit(2 + 8 / 12, "feet"),
  17266. default: true
  17267. },
  17268. ]
  17269. ))
  17270. characterMakers.push(() => makeCharacter(
  17271. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17272. {
  17273. side: {
  17274. height: math.unit(3 + 2 / 12, "feet"),
  17275. weight: math.unit(224, "lb"),
  17276. name: "Side",
  17277. image: {
  17278. source: "./media/characters/sheila-feral-wolf/side.svg",
  17279. extra: 179 / 166,
  17280. bottom: 0.03
  17281. }
  17282. },
  17283. },
  17284. [
  17285. {
  17286. name: "Normal",
  17287. height: math.unit(3 + 2 / 12, "feet"),
  17288. default: true
  17289. },
  17290. ]
  17291. ))
  17292. characterMakers.push(() => makeCharacter(
  17293. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17294. {
  17295. side: {
  17296. height: math.unit(1 + 9 / 12, "feet"),
  17297. weight: math.unit(38, "lb"),
  17298. name: "Side",
  17299. image: {
  17300. source: "./media/characters/michelle/side.svg",
  17301. extra: 147 / 136.7,
  17302. bottom: 0.03
  17303. }
  17304. },
  17305. },
  17306. [
  17307. {
  17308. name: "Normal",
  17309. height: math.unit(1 + 9 / 12, "feet"),
  17310. default: true
  17311. },
  17312. ]
  17313. ))
  17314. characterMakers.push(() => makeCharacter(
  17315. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17316. {
  17317. front: {
  17318. height: math.unit(1.54, "feet"),
  17319. weight: math.unit(50, "lb"),
  17320. name: "Front",
  17321. image: {
  17322. source: "./media/characters/nino/front.svg"
  17323. }
  17324. },
  17325. },
  17326. [
  17327. {
  17328. name: "Normal",
  17329. height: math.unit(1.54, "feet"),
  17330. default: true
  17331. },
  17332. ]
  17333. ))
  17334. characterMakers.push(() => makeCharacter(
  17335. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17336. {
  17337. front: {
  17338. height: math.unit(1.49, "feet"),
  17339. weight: math.unit(45, "lb"),
  17340. name: "Front",
  17341. image: {
  17342. source: "./media/characters/viola/front.svg"
  17343. }
  17344. },
  17345. },
  17346. [
  17347. {
  17348. name: "Normal",
  17349. height: math.unit(1.49, "feet"),
  17350. default: true
  17351. },
  17352. ]
  17353. ))
  17354. characterMakers.push(() => makeCharacter(
  17355. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17356. {
  17357. front: {
  17358. height: math.unit(6 + 5 / 12, "feet"),
  17359. weight: math.unit(580, "lb"),
  17360. name: "Front",
  17361. image: {
  17362. source: "./media/characters/atlas/front.svg",
  17363. extra: 298.5 / 290,
  17364. bottom: 0.015
  17365. }
  17366. },
  17367. },
  17368. [
  17369. {
  17370. name: "Normal",
  17371. height: math.unit(6 + 5 / 12, "feet"),
  17372. default: true
  17373. },
  17374. ]
  17375. ))
  17376. characterMakers.push(() => makeCharacter(
  17377. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17378. {
  17379. side: {
  17380. height: math.unit(15.6, "inches"),
  17381. weight: math.unit(10, "lb"),
  17382. name: "Side",
  17383. image: {
  17384. source: "./media/characters/davy/side.svg",
  17385. extra: 200 / 170,
  17386. bottom: 0.01
  17387. }
  17388. },
  17389. },
  17390. [
  17391. {
  17392. name: "Normal",
  17393. height: math.unit(15.6, "inches"),
  17394. default: true
  17395. },
  17396. ]
  17397. ))
  17398. characterMakers.push(() => makeCharacter(
  17399. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17400. {
  17401. side: {
  17402. height: math.unit(4 + 8 / 12, "feet"),
  17403. weight: math.unit(166, "lb"),
  17404. name: "Side",
  17405. image: {
  17406. source: "./media/characters/fiona/side.svg",
  17407. extra: 232 / 220,
  17408. bottom: 0.03
  17409. }
  17410. },
  17411. },
  17412. [
  17413. {
  17414. name: "Normal",
  17415. height: math.unit(4 + 8 / 12, "feet"),
  17416. default: true
  17417. },
  17418. ]
  17419. ))
  17420. characterMakers.push(() => makeCharacter(
  17421. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17422. {
  17423. front: {
  17424. height: math.unit(26, "inches"),
  17425. weight: math.unit(35, "lb"),
  17426. name: "Front",
  17427. image: {
  17428. source: "./media/characters/lyla/front.svg",
  17429. bottom: 0.1
  17430. }
  17431. },
  17432. },
  17433. [
  17434. {
  17435. name: "Normal",
  17436. height: math.unit(3, "feet"),
  17437. default: true
  17438. },
  17439. ]
  17440. ))
  17441. characterMakers.push(() => makeCharacter(
  17442. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17443. {
  17444. side: {
  17445. height: math.unit(1.8, "feet"),
  17446. weight: math.unit(44, "lb"),
  17447. name: "Side",
  17448. image: {
  17449. source: "./media/characters/perseus/side.svg",
  17450. bottom: 0.21
  17451. }
  17452. },
  17453. },
  17454. [
  17455. {
  17456. name: "Normal",
  17457. height: math.unit(1.8, "feet"),
  17458. default: true
  17459. },
  17460. ]
  17461. ))
  17462. characterMakers.push(() => makeCharacter(
  17463. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17464. {
  17465. side: {
  17466. height: math.unit(4 + 2 / 12, "feet"),
  17467. weight: math.unit(20, "lb"),
  17468. name: "Side",
  17469. image: {
  17470. source: "./media/characters/remus/side.svg"
  17471. }
  17472. },
  17473. },
  17474. [
  17475. {
  17476. name: "Normal",
  17477. height: math.unit(4 + 2 / 12, "feet"),
  17478. default: true
  17479. },
  17480. ]
  17481. ))
  17482. characterMakers.push(() => makeCharacter(
  17483. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17484. {
  17485. front: {
  17486. height: math.unit(4 + 11 / 12, "feet"),
  17487. weight: math.unit(114, "lb"),
  17488. name: "Front",
  17489. image: {
  17490. source: "./media/characters/raf/front.svg",
  17491. extra: 1504/1339,
  17492. bottom: 26/1530
  17493. }
  17494. },
  17495. side: {
  17496. height: math.unit(4 + 11 / 12, "feet"),
  17497. weight: math.unit(114, "lb"),
  17498. name: "Side",
  17499. image: {
  17500. source: "./media/characters/raf/side.svg",
  17501. extra: 1466/1316,
  17502. bottom: 29/1495
  17503. }
  17504. },
  17505. },
  17506. [
  17507. {
  17508. name: "Micro",
  17509. height: math.unit(2, "inches")
  17510. },
  17511. {
  17512. name: "Normal",
  17513. height: math.unit(4 + 11 / 12, "feet"),
  17514. default: true
  17515. },
  17516. {
  17517. name: "Macro",
  17518. height: math.unit(70, "feet")
  17519. },
  17520. ]
  17521. ))
  17522. characterMakers.push(() => makeCharacter(
  17523. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17524. {
  17525. front: {
  17526. height: math.unit(1.5, "meters"),
  17527. weight: math.unit(68, "kg"),
  17528. name: "Front",
  17529. image: {
  17530. source: "./media/characters/liam-einarr/front.svg",
  17531. extra: 2822 / 2666
  17532. }
  17533. },
  17534. back: {
  17535. height: math.unit(1.5, "meters"),
  17536. weight: math.unit(68, "kg"),
  17537. name: "Back",
  17538. image: {
  17539. source: "./media/characters/liam-einarr/back.svg",
  17540. extra: 2822 / 2666,
  17541. bottom: 0.015
  17542. }
  17543. },
  17544. },
  17545. [
  17546. {
  17547. name: "Normal",
  17548. height: math.unit(1.5, "meters"),
  17549. default: true
  17550. },
  17551. {
  17552. name: "Macro",
  17553. height: math.unit(150, "meters")
  17554. },
  17555. {
  17556. name: "Megamacro",
  17557. height: math.unit(35, "km")
  17558. },
  17559. ]
  17560. ))
  17561. characterMakers.push(() => makeCharacter(
  17562. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17563. {
  17564. front: {
  17565. height: math.unit(6, "feet"),
  17566. weight: math.unit(75, "kg"),
  17567. name: "Front",
  17568. image: {
  17569. source: "./media/characters/linda/front.svg",
  17570. extra: 930 / 874,
  17571. bottom: 0.004
  17572. }
  17573. },
  17574. },
  17575. [
  17576. {
  17577. name: "Normal",
  17578. height: math.unit(6, "feet"),
  17579. default: true
  17580. },
  17581. ]
  17582. ))
  17583. characterMakers.push(() => makeCharacter(
  17584. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17585. {
  17586. front: {
  17587. height: math.unit(6 + 8 / 12, "feet"),
  17588. weight: math.unit(220, "lb"),
  17589. name: "Front",
  17590. image: {
  17591. source: "./media/characters/caylex/front.svg",
  17592. extra: 821 / 772,
  17593. bottom: 0.07
  17594. }
  17595. },
  17596. back: {
  17597. height: math.unit(6 + 8 / 12, "feet"),
  17598. weight: math.unit(220, "lb"),
  17599. name: "Back",
  17600. image: {
  17601. source: "./media/characters/caylex/back.svg",
  17602. extra: 821 / 772,
  17603. bottom: 0.022
  17604. }
  17605. },
  17606. hand: {
  17607. height: math.unit(1.25, "feet"),
  17608. name: "Hand",
  17609. image: {
  17610. source: "./media/characters/caylex/hand.svg"
  17611. }
  17612. },
  17613. foot: {
  17614. height: math.unit(1.6, "feet"),
  17615. name: "Foot",
  17616. image: {
  17617. source: "./media/characters/caylex/foot.svg"
  17618. }
  17619. },
  17620. armored: {
  17621. height: math.unit(6 + 8 / 12, "feet"),
  17622. weight: math.unit(250, "lb"),
  17623. name: "Armored",
  17624. image: {
  17625. source: "./media/characters/caylex/armored.svg",
  17626. extra: 1420 / 1310,
  17627. bottom: 0.045
  17628. }
  17629. },
  17630. },
  17631. [
  17632. {
  17633. name: "Normal",
  17634. height: math.unit(6 + 8 / 12, "feet"),
  17635. default: true
  17636. },
  17637. {
  17638. name: "Normal+",
  17639. height: math.unit(12, "feet")
  17640. },
  17641. ]
  17642. ))
  17643. characterMakers.push(() => makeCharacter(
  17644. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17645. {
  17646. front: {
  17647. height: math.unit(7 + 6 / 12, "feet"),
  17648. weight: math.unit(288, "lb"),
  17649. name: "Front",
  17650. image: {
  17651. source: "./media/characters/alana/front.svg",
  17652. extra: 679 / 653,
  17653. bottom: 22.5 / 701
  17654. }
  17655. },
  17656. },
  17657. [
  17658. {
  17659. name: "Normal",
  17660. height: math.unit(7 + 6 / 12, "feet")
  17661. },
  17662. {
  17663. name: "Large",
  17664. height: math.unit(50, "feet")
  17665. },
  17666. {
  17667. name: "Macro",
  17668. height: math.unit(100, "feet"),
  17669. default: true
  17670. },
  17671. {
  17672. name: "Macro+",
  17673. height: math.unit(200, "feet")
  17674. },
  17675. ]
  17676. ))
  17677. characterMakers.push(() => makeCharacter(
  17678. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17679. {
  17680. front: {
  17681. height: math.unit(6 + 1 / 12, "feet"),
  17682. weight: math.unit(210, "lb"),
  17683. name: "Front",
  17684. image: {
  17685. source: "./media/characters/hasani/front.svg",
  17686. extra: 244 / 232,
  17687. bottom: 0.01
  17688. }
  17689. },
  17690. back: {
  17691. height: math.unit(6 + 1 / 12, "feet"),
  17692. weight: math.unit(210, "lb"),
  17693. name: "Back",
  17694. image: {
  17695. source: "./media/characters/hasani/back.svg",
  17696. extra: 244 / 232,
  17697. bottom: 0.01
  17698. }
  17699. },
  17700. },
  17701. [
  17702. {
  17703. name: "Normal",
  17704. height: math.unit(6 + 1 / 12, "feet")
  17705. },
  17706. {
  17707. name: "Macro",
  17708. height: math.unit(175, "feet"),
  17709. default: true
  17710. },
  17711. ]
  17712. ))
  17713. characterMakers.push(() => makeCharacter(
  17714. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17715. {
  17716. front: {
  17717. height: math.unit(1.82, "meters"),
  17718. weight: math.unit(140, "lb"),
  17719. name: "Front",
  17720. image: {
  17721. source: "./media/characters/nita/front.svg",
  17722. extra: 2473 / 2363,
  17723. bottom: 0.01
  17724. }
  17725. },
  17726. },
  17727. [
  17728. {
  17729. name: "Normal",
  17730. height: math.unit(1.82, "m")
  17731. },
  17732. {
  17733. name: "Macro",
  17734. height: math.unit(300, "m")
  17735. },
  17736. {
  17737. name: "Mistake Canon",
  17738. height: math.unit(0.5, "miles"),
  17739. default: true
  17740. },
  17741. {
  17742. name: "Big Mistake",
  17743. height: math.unit(13, "miles")
  17744. },
  17745. {
  17746. name: "Playing God",
  17747. height: math.unit(2450, "miles")
  17748. },
  17749. ]
  17750. ))
  17751. characterMakers.push(() => makeCharacter(
  17752. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17753. {
  17754. front: {
  17755. height: math.unit(4, "feet"),
  17756. weight: math.unit(120, "lb"),
  17757. name: "Front",
  17758. image: {
  17759. source: "./media/characters/shiriko/front.svg",
  17760. extra: 970/934,
  17761. bottom: 5/975
  17762. }
  17763. },
  17764. },
  17765. [
  17766. {
  17767. name: "Normal",
  17768. height: math.unit(4, "feet"),
  17769. default: true
  17770. },
  17771. ]
  17772. ))
  17773. characterMakers.push(() => makeCharacter(
  17774. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17775. {
  17776. front: {
  17777. height: math.unit(6, "feet"),
  17778. name: "front",
  17779. image: {
  17780. source: "./media/characters/deja/front.svg",
  17781. extra: 926 / 840,
  17782. bottom: 0.07
  17783. }
  17784. },
  17785. },
  17786. [
  17787. {
  17788. name: "Planck Length",
  17789. height: math.unit(1.6e-35, "meters")
  17790. },
  17791. {
  17792. name: "Normal",
  17793. height: math.unit(30.48, "meters"),
  17794. default: true
  17795. },
  17796. {
  17797. name: "Universal",
  17798. height: math.unit(8.8e26, "meters")
  17799. },
  17800. ]
  17801. ))
  17802. characterMakers.push(() => makeCharacter(
  17803. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17804. {
  17805. side: {
  17806. height: math.unit(8, "feet"),
  17807. weight: math.unit(6300, "lb"),
  17808. name: "Side",
  17809. image: {
  17810. source: "./media/characters/anima/side.svg",
  17811. bottom: 0.035
  17812. }
  17813. },
  17814. },
  17815. [
  17816. {
  17817. name: "Normal",
  17818. height: math.unit(8, "feet"),
  17819. default: true
  17820. },
  17821. ]
  17822. ))
  17823. characterMakers.push(() => makeCharacter(
  17824. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17825. {
  17826. front: {
  17827. height: math.unit(8, "feet"),
  17828. weight: math.unit(350, "lb"),
  17829. name: "Front",
  17830. image: {
  17831. source: "./media/characters/bianca/front.svg",
  17832. extra: 234 / 225,
  17833. bottom: 0.03
  17834. }
  17835. },
  17836. },
  17837. [
  17838. {
  17839. name: "Normal",
  17840. height: math.unit(8, "feet"),
  17841. default: true
  17842. },
  17843. ]
  17844. ))
  17845. characterMakers.push(() => makeCharacter(
  17846. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17847. {
  17848. front: {
  17849. height: math.unit(6, "feet"),
  17850. weight: math.unit(150, "lb"),
  17851. name: "Front",
  17852. image: {
  17853. source: "./media/characters/adinia/front.svg",
  17854. extra: 1845 / 1672,
  17855. bottom: 0.02
  17856. }
  17857. },
  17858. back: {
  17859. height: math.unit(6, "feet"),
  17860. weight: math.unit(150, "lb"),
  17861. name: "Back",
  17862. image: {
  17863. source: "./media/characters/adinia/back.svg",
  17864. extra: 1845 / 1672,
  17865. bottom: 0.002
  17866. }
  17867. },
  17868. },
  17869. [
  17870. {
  17871. name: "Normal",
  17872. height: math.unit(11 + 5 / 12, "feet"),
  17873. default: true
  17874. },
  17875. ]
  17876. ))
  17877. characterMakers.push(() => makeCharacter(
  17878. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17879. {
  17880. front: {
  17881. height: math.unit(3, "meters"),
  17882. weight: math.unit(200, "kg"),
  17883. name: "Front",
  17884. image: {
  17885. source: "./media/characters/lykasa/front.svg",
  17886. extra: 1076 / 976,
  17887. bottom: 0.06
  17888. }
  17889. },
  17890. },
  17891. [
  17892. {
  17893. name: "Normal",
  17894. height: math.unit(3, "meters")
  17895. },
  17896. {
  17897. name: "Kaiju",
  17898. height: math.unit(120, "meters"),
  17899. default: true
  17900. },
  17901. {
  17902. name: "Mega Kaiju",
  17903. height: math.unit(240, "km")
  17904. },
  17905. {
  17906. name: "Giga Kaiju",
  17907. height: math.unit(400, "megameters")
  17908. },
  17909. {
  17910. name: "Tera Kaiju",
  17911. height: math.unit(800, "gigameters")
  17912. },
  17913. {
  17914. name: "Kaiju Dragon Goddess",
  17915. height: math.unit(26, "zettaparsecs")
  17916. },
  17917. ]
  17918. ))
  17919. characterMakers.push(() => makeCharacter(
  17920. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17921. {
  17922. side: {
  17923. height: math.unit(283 / 124 * 6, "feet"),
  17924. weight: math.unit(35000, "lb"),
  17925. name: "Side",
  17926. image: {
  17927. source: "./media/characters/malfaren/side.svg",
  17928. extra: 1310/529,
  17929. bottom: 24/1334
  17930. }
  17931. },
  17932. front: {
  17933. height: math.unit(22.36, "feet"),
  17934. weight: math.unit(35000, "lb"),
  17935. name: "Front",
  17936. image: {
  17937. source: "./media/characters/malfaren/front.svg",
  17938. extra: 1237/1115,
  17939. bottom: 32/1269
  17940. }
  17941. },
  17942. maw: {
  17943. height: math.unit(6.9, "feet"),
  17944. name: "Maw",
  17945. image: {
  17946. source: "./media/characters/malfaren/maw.svg"
  17947. }
  17948. },
  17949. dick: {
  17950. height: math.unit(6.19, "feet"),
  17951. name: "Dick",
  17952. image: {
  17953. source: "./media/characters/malfaren/dick.svg"
  17954. }
  17955. },
  17956. eye: {
  17957. height: math.unit(0.69, "feet"),
  17958. name: "Eye",
  17959. image: {
  17960. source: "./media/characters/malfaren/eye.svg"
  17961. }
  17962. },
  17963. },
  17964. [
  17965. {
  17966. name: "Big",
  17967. height: math.unit(283 / 162 * 6, "feet"),
  17968. },
  17969. {
  17970. name: "Bigger",
  17971. height: math.unit(283 / 124 * 6, "feet")
  17972. },
  17973. {
  17974. name: "Massive",
  17975. height: math.unit(283 / 92 * 6, "feet"),
  17976. default: true
  17977. },
  17978. {
  17979. name: "👀💦",
  17980. height: math.unit(283 / 73 * 6, "feet"),
  17981. },
  17982. ]
  17983. ))
  17984. characterMakers.push(() => makeCharacter(
  17985. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17986. {
  17987. front: {
  17988. height: math.unit(1.7, "m"),
  17989. weight: math.unit(70, "kg"),
  17990. name: "Front",
  17991. image: {
  17992. source: "./media/characters/kernel/front.svg",
  17993. extra: 222 / 210,
  17994. bottom: 0.007
  17995. }
  17996. },
  17997. },
  17998. [
  17999. {
  18000. name: "Nano",
  18001. height: math.unit(17, "micrometers")
  18002. },
  18003. {
  18004. name: "Micro",
  18005. height: math.unit(1.7, "mm")
  18006. },
  18007. {
  18008. name: "Small",
  18009. height: math.unit(1.7, "cm")
  18010. },
  18011. {
  18012. name: "Normal",
  18013. height: math.unit(1.7, "m"),
  18014. default: true
  18015. },
  18016. ]
  18017. ))
  18018. characterMakers.push(() => makeCharacter(
  18019. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18020. {
  18021. front: {
  18022. height: math.unit(1.75, "meters"),
  18023. weight: math.unit(65, "kg"),
  18024. name: "Front",
  18025. image: {
  18026. source: "./media/characters/jayne-folest/front.svg",
  18027. extra: 2115 / 2007,
  18028. bottom: 0.02
  18029. }
  18030. },
  18031. back: {
  18032. height: math.unit(1.75, "meters"),
  18033. weight: math.unit(65, "kg"),
  18034. name: "Back",
  18035. image: {
  18036. source: "./media/characters/jayne-folest/back.svg",
  18037. extra: 2115 / 2007,
  18038. bottom: 0.005
  18039. }
  18040. },
  18041. frontClothed: {
  18042. height: math.unit(1.75, "meters"),
  18043. weight: math.unit(65, "kg"),
  18044. name: "Front (Clothed)",
  18045. image: {
  18046. source: "./media/characters/jayne-folest/front-clothed.svg",
  18047. extra: 2115 / 2007,
  18048. bottom: 0.035
  18049. }
  18050. },
  18051. hand: {
  18052. height: math.unit(1 / 1.260, "feet"),
  18053. name: "Hand",
  18054. image: {
  18055. source: "./media/characters/jayne-folest/hand.svg"
  18056. }
  18057. },
  18058. foot: {
  18059. height: math.unit(1 / 0.918, "feet"),
  18060. name: "Foot",
  18061. image: {
  18062. source: "./media/characters/jayne-folest/foot.svg"
  18063. }
  18064. },
  18065. },
  18066. [
  18067. {
  18068. name: "Micro",
  18069. height: math.unit(4, "cm")
  18070. },
  18071. {
  18072. name: "Normal",
  18073. height: math.unit(1.75, "meters")
  18074. },
  18075. {
  18076. name: "Macro",
  18077. height: math.unit(47.5, "meters"),
  18078. default: true
  18079. },
  18080. ]
  18081. ))
  18082. characterMakers.push(() => makeCharacter(
  18083. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18084. {
  18085. front: {
  18086. height: math.unit(180, "cm"),
  18087. weight: math.unit(70, "kg"),
  18088. name: "Front",
  18089. image: {
  18090. source: "./media/characters/algier/front.svg",
  18091. extra: 596 / 572,
  18092. bottom: 0.04
  18093. }
  18094. },
  18095. back: {
  18096. height: math.unit(180, "cm"),
  18097. weight: math.unit(70, "kg"),
  18098. name: "Back",
  18099. image: {
  18100. source: "./media/characters/algier/back.svg",
  18101. extra: 596 / 572,
  18102. bottom: 0.025
  18103. }
  18104. },
  18105. frontdressed: {
  18106. height: math.unit(180, "cm"),
  18107. weight: math.unit(150, "kg"),
  18108. name: "Front-dressed",
  18109. image: {
  18110. source: "./media/characters/algier/front-dressed.svg",
  18111. extra: 596 / 572,
  18112. bottom: 0.038
  18113. }
  18114. },
  18115. },
  18116. [
  18117. {
  18118. name: "Micro",
  18119. height: math.unit(5, "cm")
  18120. },
  18121. {
  18122. name: "Normal",
  18123. height: math.unit(180, "cm"),
  18124. default: true
  18125. },
  18126. {
  18127. name: "Macro",
  18128. height: math.unit(64, "m")
  18129. },
  18130. ]
  18131. ))
  18132. characterMakers.push(() => makeCharacter(
  18133. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18134. {
  18135. upright: {
  18136. height: math.unit(7, "feet"),
  18137. weight: math.unit(300, "lb"),
  18138. name: "Upright",
  18139. image: {
  18140. source: "./media/characters/pretzel/upright.svg",
  18141. extra: 534 / 522,
  18142. bottom: 0.065
  18143. }
  18144. },
  18145. sprawling: {
  18146. height: math.unit(3.75, "feet"),
  18147. weight: math.unit(300, "lb"),
  18148. name: "Sprawling",
  18149. image: {
  18150. source: "./media/characters/pretzel/sprawling.svg",
  18151. extra: 314 / 281,
  18152. bottom: 0.1
  18153. }
  18154. },
  18155. tongue: {
  18156. height: math.unit(2, "feet"),
  18157. name: "Tongue",
  18158. image: {
  18159. source: "./media/characters/pretzel/tongue.svg"
  18160. }
  18161. },
  18162. },
  18163. [
  18164. {
  18165. name: "Normal",
  18166. height: math.unit(7, "feet"),
  18167. default: true
  18168. },
  18169. {
  18170. name: "Oversized",
  18171. height: math.unit(15, "feet")
  18172. },
  18173. {
  18174. name: "Huge",
  18175. height: math.unit(30, "feet")
  18176. },
  18177. {
  18178. name: "Macro",
  18179. height: math.unit(250, "feet")
  18180. },
  18181. ]
  18182. ))
  18183. characterMakers.push(() => makeCharacter(
  18184. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18185. {
  18186. sideFront: {
  18187. height: math.unit(5 + 2 / 12, "feet"),
  18188. weight: math.unit(120, "lb"),
  18189. name: "Front Side",
  18190. image: {
  18191. source: "./media/characters/roxi/side-front.svg",
  18192. extra: 2924 / 2717,
  18193. bottom: 0.08
  18194. }
  18195. },
  18196. sideBack: {
  18197. height: math.unit(5 + 2 / 12, "feet"),
  18198. weight: math.unit(120, "lb"),
  18199. name: "Back Side",
  18200. image: {
  18201. source: "./media/characters/roxi/side-back.svg",
  18202. extra: 2904 / 2693,
  18203. bottom: 0.06
  18204. }
  18205. },
  18206. front: {
  18207. height: math.unit(5 + 2 / 12, "feet"),
  18208. weight: math.unit(120, "lb"),
  18209. name: "Front",
  18210. image: {
  18211. source: "./media/characters/roxi/front.svg",
  18212. extra: 2028 / 1907,
  18213. bottom: 0.01
  18214. }
  18215. },
  18216. frontAlt: {
  18217. height: math.unit(5 + 2 / 12, "feet"),
  18218. weight: math.unit(120, "lb"),
  18219. name: "Front (Alt)",
  18220. image: {
  18221. source: "./media/characters/roxi/front-alt.svg",
  18222. extra: 1828 / 1798,
  18223. bottom: 0.01
  18224. }
  18225. },
  18226. sitting: {
  18227. height: math.unit(2.8, "feet"),
  18228. weight: math.unit(120, "lb"),
  18229. name: "Sitting",
  18230. image: {
  18231. source: "./media/characters/roxi/sitting.svg",
  18232. extra: 2660 / 2462,
  18233. bottom: 0.1
  18234. }
  18235. },
  18236. },
  18237. [
  18238. {
  18239. name: "Normal",
  18240. height: math.unit(5 + 2 / 12, "feet"),
  18241. default: true
  18242. },
  18243. ]
  18244. ))
  18245. characterMakers.push(() => makeCharacter(
  18246. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18247. {
  18248. side: {
  18249. height: math.unit(55, "feet"),
  18250. weight: math.unit(153, "tons"),
  18251. name: "Side",
  18252. image: {
  18253. source: "./media/characters/shadow/side.svg",
  18254. extra: 701 / 628,
  18255. bottom: 0.02
  18256. }
  18257. },
  18258. flying: {
  18259. height: math.unit(145, "feet"),
  18260. weight: math.unit(153, "tons"),
  18261. name: "Flying",
  18262. image: {
  18263. source: "./media/characters/shadow/flying.svg"
  18264. }
  18265. },
  18266. },
  18267. [
  18268. {
  18269. name: "Normal",
  18270. height: math.unit(55, "feet"),
  18271. default: true
  18272. },
  18273. ]
  18274. ))
  18275. characterMakers.push(() => makeCharacter(
  18276. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18277. {
  18278. front: {
  18279. height: math.unit(6, "feet"),
  18280. weight: math.unit(200, "lb"),
  18281. name: "Front",
  18282. image: {
  18283. source: "./media/characters/marcie/front.svg",
  18284. extra: 960 / 876,
  18285. bottom: 58 / 1017.87
  18286. }
  18287. },
  18288. },
  18289. [
  18290. {
  18291. name: "Macro",
  18292. height: math.unit(1, "mile"),
  18293. default: true
  18294. },
  18295. ]
  18296. ))
  18297. characterMakers.push(() => makeCharacter(
  18298. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18299. {
  18300. front: {
  18301. height: math.unit(7, "feet"),
  18302. weight: math.unit(200, "lb"),
  18303. name: "Front",
  18304. image: {
  18305. source: "./media/characters/kachina/front.svg",
  18306. extra: 1290.68 / 1119,
  18307. bottom: 36.5 / 1327.18
  18308. }
  18309. },
  18310. },
  18311. [
  18312. {
  18313. name: "Normal",
  18314. height: math.unit(7, "feet"),
  18315. default: true
  18316. },
  18317. ]
  18318. ))
  18319. characterMakers.push(() => makeCharacter(
  18320. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18321. {
  18322. looking: {
  18323. height: math.unit(2, "meters"),
  18324. weight: math.unit(300, "kg"),
  18325. name: "Looking",
  18326. image: {
  18327. source: "./media/characters/kash/looking.svg",
  18328. extra: 474 / 344,
  18329. bottom: 0.03
  18330. }
  18331. },
  18332. side: {
  18333. height: math.unit(2, "meters"),
  18334. weight: math.unit(300, "kg"),
  18335. name: "Side",
  18336. image: {
  18337. source: "./media/characters/kash/side.svg",
  18338. extra: 302 / 251,
  18339. bottom: 0.03
  18340. }
  18341. },
  18342. front: {
  18343. height: math.unit(2, "meters"),
  18344. weight: math.unit(300, "kg"),
  18345. name: "Front",
  18346. image: {
  18347. source: "./media/characters/kash/front.svg",
  18348. extra: 495 / 360,
  18349. bottom: 0.015
  18350. }
  18351. },
  18352. },
  18353. [
  18354. {
  18355. name: "Normal",
  18356. height: math.unit(2, "meters"),
  18357. default: true
  18358. },
  18359. {
  18360. name: "Big",
  18361. height: math.unit(3, "meters")
  18362. },
  18363. {
  18364. name: "Large",
  18365. height: math.unit(5, "meters")
  18366. },
  18367. ]
  18368. ))
  18369. characterMakers.push(() => makeCharacter(
  18370. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18371. {
  18372. feeding: {
  18373. height: math.unit(6.7, "feet"),
  18374. weight: math.unit(350, "lb"),
  18375. name: "Feeding",
  18376. image: {
  18377. source: "./media/characters/lalim/feeding.svg",
  18378. }
  18379. },
  18380. },
  18381. [
  18382. {
  18383. name: "Normal",
  18384. height: math.unit(6.7, "feet"),
  18385. default: true
  18386. },
  18387. ]
  18388. ))
  18389. characterMakers.push(() => makeCharacter(
  18390. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18391. {
  18392. front: {
  18393. height: math.unit(9.5, "feet"),
  18394. weight: math.unit(600, "lb"),
  18395. name: "Front",
  18396. image: {
  18397. source: "./media/characters/de'vout/front.svg",
  18398. extra: 1443 / 1328,
  18399. bottom: 0.025
  18400. }
  18401. },
  18402. back: {
  18403. height: math.unit(9.5, "feet"),
  18404. weight: math.unit(600, "lb"),
  18405. name: "Back",
  18406. image: {
  18407. source: "./media/characters/de'vout/back.svg",
  18408. extra: 1443 / 1328
  18409. }
  18410. },
  18411. frontDressed: {
  18412. height: math.unit(9.5, "feet"),
  18413. weight: math.unit(600, "lb"),
  18414. name: "Front (Dressed",
  18415. image: {
  18416. source: "./media/characters/de'vout/front-dressed.svg",
  18417. extra: 1443 / 1328,
  18418. bottom: 0.025
  18419. }
  18420. },
  18421. backDressed: {
  18422. height: math.unit(9.5, "feet"),
  18423. weight: math.unit(600, "lb"),
  18424. name: "Back (Dressed",
  18425. image: {
  18426. source: "./media/characters/de'vout/back-dressed.svg",
  18427. extra: 1443 / 1328
  18428. }
  18429. },
  18430. },
  18431. [
  18432. {
  18433. name: "Normal",
  18434. height: math.unit(9.5, "feet"),
  18435. default: true
  18436. },
  18437. ]
  18438. ))
  18439. characterMakers.push(() => makeCharacter(
  18440. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18441. {
  18442. front: {
  18443. height: math.unit(8, "feet"),
  18444. weight: math.unit(225, "lb"),
  18445. name: "Front",
  18446. image: {
  18447. source: "./media/characters/talana/front.svg",
  18448. extra: 1410 / 1300,
  18449. bottom: 0.015
  18450. }
  18451. },
  18452. frontDressed: {
  18453. height: math.unit(8, "feet"),
  18454. weight: math.unit(225, "lb"),
  18455. name: "Front (Dressed",
  18456. image: {
  18457. source: "./media/characters/talana/front-dressed.svg",
  18458. extra: 1410 / 1300,
  18459. bottom: 0.015
  18460. }
  18461. },
  18462. },
  18463. [
  18464. {
  18465. name: "Normal",
  18466. height: math.unit(8, "feet"),
  18467. default: true
  18468. },
  18469. ]
  18470. ))
  18471. characterMakers.push(() => makeCharacter(
  18472. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18473. {
  18474. side: {
  18475. height: math.unit(7.2, "feet"),
  18476. weight: math.unit(150, "lb"),
  18477. name: "Side",
  18478. image: {
  18479. source: "./media/characters/xeauvok/side.svg",
  18480. extra: 1975 / 1523,
  18481. bottom: 0.07
  18482. }
  18483. },
  18484. },
  18485. [
  18486. {
  18487. name: "Normal",
  18488. height: math.unit(7.2, "feet"),
  18489. default: true
  18490. },
  18491. ]
  18492. ))
  18493. characterMakers.push(() => makeCharacter(
  18494. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18495. {
  18496. side: {
  18497. height: math.unit(10, "feet"),
  18498. weight: math.unit(900, "kg"),
  18499. name: "Side",
  18500. image: {
  18501. source: "./media/characters/zara/side.svg",
  18502. extra: 504 / 498
  18503. }
  18504. },
  18505. },
  18506. [
  18507. {
  18508. name: "Normal",
  18509. height: math.unit(10, "feet"),
  18510. default: true
  18511. },
  18512. ]
  18513. ))
  18514. characterMakers.push(() => makeCharacter(
  18515. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18516. {
  18517. side: {
  18518. height: math.unit(6, "feet"),
  18519. weight: math.unit(150, "lb"),
  18520. name: "Side",
  18521. image: {
  18522. source: "./media/characters/richard-dragon/side.svg",
  18523. extra: 845 / 340,
  18524. bottom: 0.017
  18525. }
  18526. },
  18527. maw: {
  18528. height: math.unit(2.97, "feet"),
  18529. name: "Maw",
  18530. image: {
  18531. source: "./media/characters/richard-dragon/maw.svg"
  18532. }
  18533. },
  18534. },
  18535. [
  18536. ]
  18537. ))
  18538. characterMakers.push(() => makeCharacter(
  18539. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18540. {
  18541. front: {
  18542. height: math.unit(4, "feet"),
  18543. weight: math.unit(100, "lb"),
  18544. name: "Front",
  18545. image: {
  18546. source: "./media/characters/richard-smeargle/front.svg",
  18547. extra: 2952 / 2820,
  18548. bottom: 0.028
  18549. }
  18550. },
  18551. },
  18552. [
  18553. {
  18554. name: "Normal",
  18555. height: math.unit(4, "feet"),
  18556. default: true
  18557. },
  18558. {
  18559. name: "Dynamax",
  18560. height: math.unit(20, "meters")
  18561. },
  18562. ]
  18563. ))
  18564. characterMakers.push(() => makeCharacter(
  18565. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18566. {
  18567. front: {
  18568. height: math.unit(6, "feet"),
  18569. weight: math.unit(110, "lb"),
  18570. name: "Front",
  18571. image: {
  18572. source: "./media/characters/klay/front.svg",
  18573. extra: 962 / 883,
  18574. bottom: 0.04
  18575. }
  18576. },
  18577. back: {
  18578. height: math.unit(6, "feet"),
  18579. weight: math.unit(110, "lb"),
  18580. name: "Back",
  18581. image: {
  18582. source: "./media/characters/klay/back.svg",
  18583. extra: 962 / 883
  18584. }
  18585. },
  18586. beans: {
  18587. height: math.unit(1.15, "feet"),
  18588. name: "Beans",
  18589. image: {
  18590. source: "./media/characters/klay/beans.svg"
  18591. }
  18592. },
  18593. },
  18594. [
  18595. {
  18596. name: "Micro",
  18597. height: math.unit(6, "inches")
  18598. },
  18599. {
  18600. name: "Mini",
  18601. height: math.unit(3, "feet")
  18602. },
  18603. {
  18604. name: "Normal",
  18605. height: math.unit(6, "feet"),
  18606. default: true
  18607. },
  18608. {
  18609. name: "Big",
  18610. height: math.unit(25, "feet")
  18611. },
  18612. {
  18613. name: "Macro",
  18614. height: math.unit(100, "feet")
  18615. },
  18616. {
  18617. name: "Megamacro",
  18618. height: math.unit(400, "feet")
  18619. },
  18620. ]
  18621. ))
  18622. characterMakers.push(() => makeCharacter(
  18623. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18624. {
  18625. front: {
  18626. height: math.unit(6, "feet"),
  18627. weight: math.unit(160, "lb"),
  18628. name: "Front",
  18629. image: {
  18630. source: "./media/characters/marcus/front.svg",
  18631. extra: 734 / 676,
  18632. bottom: 0.03
  18633. }
  18634. },
  18635. },
  18636. [
  18637. {
  18638. name: "Little",
  18639. height: math.unit(6, "feet")
  18640. },
  18641. {
  18642. name: "Normal",
  18643. height: math.unit(110, "feet"),
  18644. default: true
  18645. },
  18646. {
  18647. name: "Macro",
  18648. height: math.unit(250, "feet")
  18649. },
  18650. {
  18651. name: "Megamacro",
  18652. height: math.unit(1000, "feet")
  18653. },
  18654. ]
  18655. ))
  18656. characterMakers.push(() => makeCharacter(
  18657. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18658. {
  18659. front: {
  18660. height: math.unit(7, "feet"),
  18661. weight: math.unit(275, "lb"),
  18662. name: "Front",
  18663. image: {
  18664. source: "./media/characters/claude-delroute/front.svg",
  18665. extra: 902/827,
  18666. bottom: 26/928
  18667. }
  18668. },
  18669. side: {
  18670. height: math.unit(7, "feet"),
  18671. weight: math.unit(275, "lb"),
  18672. name: "Side",
  18673. image: {
  18674. source: "./media/characters/claude-delroute/side.svg",
  18675. extra: 908/853,
  18676. bottom: 16/924
  18677. }
  18678. },
  18679. back: {
  18680. height: math.unit(7, "feet"),
  18681. weight: math.unit(275, "lb"),
  18682. name: "Back",
  18683. image: {
  18684. source: "./media/characters/claude-delroute/back.svg",
  18685. extra: 911/829,
  18686. bottom: 18/929
  18687. }
  18688. },
  18689. maw: {
  18690. height: math.unit(0.6407, "meters"),
  18691. name: "Maw",
  18692. image: {
  18693. source: "./media/characters/claude-delroute/maw.svg"
  18694. }
  18695. },
  18696. },
  18697. [
  18698. {
  18699. name: "Normal",
  18700. height: math.unit(7, "feet"),
  18701. default: true
  18702. },
  18703. {
  18704. name: "Lorge",
  18705. height: math.unit(20, "feet")
  18706. },
  18707. ]
  18708. ))
  18709. characterMakers.push(() => makeCharacter(
  18710. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18711. {
  18712. front: {
  18713. height: math.unit(8 + 4 / 12, "feet"),
  18714. weight: math.unit(600, "lb"),
  18715. name: "Front",
  18716. image: {
  18717. source: "./media/characters/dragonien/front.svg",
  18718. extra: 100 / 94,
  18719. bottom: 3.3 / 103.3445
  18720. }
  18721. },
  18722. back: {
  18723. height: math.unit(8 + 4 / 12, "feet"),
  18724. weight: math.unit(600, "lb"),
  18725. name: "Back",
  18726. image: {
  18727. source: "./media/characters/dragonien/back.svg",
  18728. extra: 776 / 746,
  18729. bottom: 6.4 / 782.0616
  18730. }
  18731. },
  18732. foot: {
  18733. height: math.unit(1.54, "feet"),
  18734. name: "Foot",
  18735. image: {
  18736. source: "./media/characters/dragonien/foot.svg",
  18737. }
  18738. },
  18739. },
  18740. [
  18741. {
  18742. name: "Normal",
  18743. height: math.unit(8 + 4 / 12, "feet"),
  18744. default: true
  18745. },
  18746. {
  18747. name: "Macro",
  18748. height: math.unit(200, "feet")
  18749. },
  18750. {
  18751. name: "Megamacro",
  18752. height: math.unit(1, "mile")
  18753. },
  18754. {
  18755. name: "Gigamacro",
  18756. height: math.unit(1000, "miles")
  18757. },
  18758. ]
  18759. ))
  18760. characterMakers.push(() => makeCharacter(
  18761. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18762. {
  18763. front: {
  18764. height: math.unit(5 + 2 / 12, "feet"),
  18765. weight: math.unit(110, "lb"),
  18766. name: "Front",
  18767. image: {
  18768. source: "./media/characters/desta/front.svg",
  18769. extra: 767 / 726,
  18770. bottom: 11.7 / 779
  18771. }
  18772. },
  18773. back: {
  18774. height: math.unit(5 + 2 / 12, "feet"),
  18775. weight: math.unit(110, "lb"),
  18776. name: "Back",
  18777. image: {
  18778. source: "./media/characters/desta/back.svg",
  18779. extra: 777 / 728,
  18780. bottom: 6 / 784
  18781. }
  18782. },
  18783. frontAlt: {
  18784. height: math.unit(5 + 2 / 12, "feet"),
  18785. weight: math.unit(110, "lb"),
  18786. name: "Front",
  18787. image: {
  18788. source: "./media/characters/desta/front-alt.svg",
  18789. extra: 1482 / 1417
  18790. }
  18791. },
  18792. side: {
  18793. height: math.unit(5 + 2 / 12, "feet"),
  18794. weight: math.unit(110, "lb"),
  18795. name: "Side",
  18796. image: {
  18797. source: "./media/characters/desta/side.svg",
  18798. extra: 2579 / 2491,
  18799. bottom: 0.053
  18800. }
  18801. },
  18802. },
  18803. [
  18804. {
  18805. name: "Micro",
  18806. height: math.unit(6, "inches")
  18807. },
  18808. {
  18809. name: "Normal",
  18810. height: math.unit(5 + 2 / 12, "feet"),
  18811. default: true
  18812. },
  18813. {
  18814. name: "Macro",
  18815. height: math.unit(62, "feet")
  18816. },
  18817. {
  18818. name: "Megamacro",
  18819. height: math.unit(1800, "feet")
  18820. },
  18821. ]
  18822. ))
  18823. characterMakers.push(() => makeCharacter(
  18824. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18825. {
  18826. front: {
  18827. height: math.unit(10, "feet"),
  18828. weight: math.unit(700, "lb"),
  18829. name: "Front",
  18830. image: {
  18831. source: "./media/characters/storm-alystar/front.svg",
  18832. extra: 2112 / 1898,
  18833. bottom: 0.034
  18834. }
  18835. },
  18836. },
  18837. [
  18838. {
  18839. name: "Micro",
  18840. height: math.unit(3.5, "inches")
  18841. },
  18842. {
  18843. name: "Normal",
  18844. height: math.unit(10, "feet"),
  18845. default: true
  18846. },
  18847. {
  18848. name: "Macro",
  18849. height: math.unit(400, "feet")
  18850. },
  18851. {
  18852. name: "Deific",
  18853. height: math.unit(60, "miles")
  18854. },
  18855. ]
  18856. ))
  18857. characterMakers.push(() => makeCharacter(
  18858. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18859. {
  18860. front: {
  18861. height: math.unit(2.35, "meters"),
  18862. weight: math.unit(119, "kg"),
  18863. name: "Front",
  18864. image: {
  18865. source: "./media/characters/ilia/front.svg",
  18866. extra: 1285 / 1255,
  18867. bottom: 0.06
  18868. }
  18869. },
  18870. },
  18871. [
  18872. {
  18873. name: "Normal",
  18874. height: math.unit(2.35, "meters")
  18875. },
  18876. {
  18877. name: "Macro",
  18878. height: math.unit(140, "meters"),
  18879. default: true
  18880. },
  18881. {
  18882. name: "Megamacro",
  18883. height: math.unit(100, "miles")
  18884. },
  18885. ]
  18886. ))
  18887. characterMakers.push(() => makeCharacter(
  18888. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18889. {
  18890. front: {
  18891. height: math.unit(6 + 5 / 12, "feet"),
  18892. weight: math.unit(190, "lb"),
  18893. name: "Front",
  18894. image: {
  18895. source: "./media/characters/kingdead/front.svg",
  18896. extra: 1228 / 1177
  18897. }
  18898. },
  18899. },
  18900. [
  18901. {
  18902. name: "Micro",
  18903. height: math.unit(7, "inches")
  18904. },
  18905. {
  18906. name: "Normal",
  18907. height: math.unit(6 + 5 / 12, "feet")
  18908. },
  18909. {
  18910. name: "Macro",
  18911. height: math.unit(150, "feet"),
  18912. default: true
  18913. },
  18914. {
  18915. name: "Megamacro",
  18916. height: math.unit(200, "miles")
  18917. },
  18918. ]
  18919. ))
  18920. characterMakers.push(() => makeCharacter(
  18921. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18922. {
  18923. front: {
  18924. height: math.unit(8, "feet"),
  18925. weight: math.unit(600, "lb"),
  18926. name: "Front",
  18927. image: {
  18928. source: "./media/characters/kyrehx/front.svg",
  18929. extra: 1195 / 1095,
  18930. bottom: 0.034
  18931. }
  18932. },
  18933. },
  18934. [
  18935. {
  18936. name: "Micro",
  18937. height: math.unit(2, "inches")
  18938. },
  18939. {
  18940. name: "Normal",
  18941. height: math.unit(8, "feet"),
  18942. default: true
  18943. },
  18944. {
  18945. name: "Macro",
  18946. height: math.unit(255, "feet")
  18947. },
  18948. ]
  18949. ))
  18950. characterMakers.push(() => makeCharacter(
  18951. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18952. {
  18953. front: {
  18954. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18955. weight: math.unit(184, "lb"),
  18956. name: "Front",
  18957. image: {
  18958. source: "./media/characters/xang/front.svg",
  18959. extra: 845 / 755
  18960. }
  18961. },
  18962. },
  18963. [
  18964. {
  18965. name: "Normal",
  18966. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18967. default: true
  18968. },
  18969. {
  18970. name: "Macro",
  18971. height: math.unit(0.935 * 146, "feet")
  18972. },
  18973. {
  18974. name: "Megamacro",
  18975. height: math.unit(0.935 * 3, "miles")
  18976. },
  18977. ]
  18978. ))
  18979. characterMakers.push(() => makeCharacter(
  18980. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18981. {
  18982. frontDressed: {
  18983. height: math.unit(5 + 7 / 12, "feet"),
  18984. weight: math.unit(140, "lb"),
  18985. name: "Front (Dressed)",
  18986. image: {
  18987. source: "./media/characters/doc-weardno/front-dressed.svg",
  18988. extra: 263 / 234
  18989. }
  18990. },
  18991. backDressed: {
  18992. height: math.unit(5 + 7 / 12, "feet"),
  18993. weight: math.unit(140, "lb"),
  18994. name: "Back (Dressed)",
  18995. image: {
  18996. source: "./media/characters/doc-weardno/back-dressed.svg",
  18997. extra: 266 / 238
  18998. }
  18999. },
  19000. front: {
  19001. height: math.unit(5 + 7 / 12, "feet"),
  19002. weight: math.unit(140, "lb"),
  19003. name: "Front",
  19004. image: {
  19005. source: "./media/characters/doc-weardno/front.svg",
  19006. extra: 254 / 233
  19007. }
  19008. },
  19009. },
  19010. [
  19011. {
  19012. name: "Micro",
  19013. height: math.unit(3, "inches")
  19014. },
  19015. {
  19016. name: "Normal",
  19017. height: math.unit(5 + 7 / 12, "feet"),
  19018. default: true
  19019. },
  19020. {
  19021. name: "Macro",
  19022. height: math.unit(25, "feet")
  19023. },
  19024. {
  19025. name: "Megamacro",
  19026. height: math.unit(2, "miles")
  19027. },
  19028. ]
  19029. ))
  19030. characterMakers.push(() => makeCharacter(
  19031. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19032. {
  19033. front: {
  19034. height: math.unit(6 + 2 / 12, "feet"),
  19035. weight: math.unit(153, "lb"),
  19036. name: "Front",
  19037. image: {
  19038. source: "./media/characters/seth-whilst/front.svg",
  19039. bottom: 0.07
  19040. }
  19041. },
  19042. },
  19043. [
  19044. {
  19045. name: "Micro",
  19046. height: math.unit(5, "inches")
  19047. },
  19048. {
  19049. name: "Normal",
  19050. height: math.unit(6 + 2 / 12, "feet"),
  19051. default: true
  19052. },
  19053. ]
  19054. ))
  19055. characterMakers.push(() => makeCharacter(
  19056. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19057. {
  19058. front: {
  19059. height: math.unit(3, "inches"),
  19060. weight: math.unit(8, "grams"),
  19061. name: "Front",
  19062. image: {
  19063. source: "./media/characters/pocket-jabari/front.svg",
  19064. extra: 1024 / 974,
  19065. bottom: 0.039
  19066. }
  19067. },
  19068. },
  19069. [
  19070. {
  19071. name: "Minimicro",
  19072. height: math.unit(8, "mm")
  19073. },
  19074. {
  19075. name: "Micro",
  19076. height: math.unit(3, "inches"),
  19077. default: true
  19078. },
  19079. {
  19080. name: "Normal",
  19081. height: math.unit(3, "feet")
  19082. },
  19083. ]
  19084. ))
  19085. characterMakers.push(() => makeCharacter(
  19086. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19087. {
  19088. front: {
  19089. height: math.unit(15, "feet"),
  19090. weight: math.unit(3280, "lb"),
  19091. name: "Front",
  19092. image: {
  19093. source: "./media/characters/sapphy/front.svg",
  19094. extra: 671 / 577,
  19095. bottom: 0.085
  19096. }
  19097. },
  19098. back: {
  19099. height: math.unit(15, "feet"),
  19100. weight: math.unit(3280, "lb"),
  19101. name: "Back",
  19102. image: {
  19103. source: "./media/characters/sapphy/back.svg",
  19104. extra: 631 / 607,
  19105. bottom: 0.045
  19106. }
  19107. },
  19108. },
  19109. [
  19110. {
  19111. name: "Normal",
  19112. height: math.unit(15, "feet")
  19113. },
  19114. {
  19115. name: "Casual Macro",
  19116. height: math.unit(120, "feet")
  19117. },
  19118. {
  19119. name: "Macro",
  19120. height: math.unit(2150, "feet"),
  19121. default: true
  19122. },
  19123. {
  19124. name: "Megamacro",
  19125. height: math.unit(8, "miles")
  19126. },
  19127. {
  19128. name: "Galaxy Mom",
  19129. height: math.unit(6, "megalightyears")
  19130. },
  19131. ]
  19132. ))
  19133. characterMakers.push(() => makeCharacter(
  19134. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19135. {
  19136. front: {
  19137. height: math.unit(6, "feet"),
  19138. weight: math.unit(170, "lb"),
  19139. name: "Front",
  19140. image: {
  19141. source: "./media/characters/kiro/front.svg",
  19142. extra: 1064 / 1012,
  19143. bottom: 0.052
  19144. }
  19145. },
  19146. },
  19147. [
  19148. {
  19149. name: "Micro",
  19150. height: math.unit(6, "inches")
  19151. },
  19152. {
  19153. name: "Normal",
  19154. height: math.unit(6, "feet"),
  19155. default: true
  19156. },
  19157. {
  19158. name: "Macro",
  19159. height: math.unit(72, "feet")
  19160. },
  19161. ]
  19162. ))
  19163. characterMakers.push(() => makeCharacter(
  19164. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19165. {
  19166. front: {
  19167. height: math.unit(5 + 9 / 12, "feet"),
  19168. weight: math.unit(175, "lb"),
  19169. name: "Front",
  19170. image: {
  19171. source: "./media/characters/irishfox/front.svg",
  19172. extra: 1912 / 1680,
  19173. bottom: 0.02
  19174. }
  19175. },
  19176. },
  19177. [
  19178. {
  19179. name: "Nano",
  19180. height: math.unit(1, "mm")
  19181. },
  19182. {
  19183. name: "Micro",
  19184. height: math.unit(2, "inches")
  19185. },
  19186. {
  19187. name: "Normal",
  19188. height: math.unit(5 + 9 / 12, "feet"),
  19189. default: true
  19190. },
  19191. {
  19192. name: "Macro",
  19193. height: math.unit(45, "feet")
  19194. },
  19195. ]
  19196. ))
  19197. characterMakers.push(() => makeCharacter(
  19198. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19199. {
  19200. front: {
  19201. height: math.unit(6 + 1 / 12, "feet"),
  19202. weight: math.unit(75, "lb"),
  19203. name: "Front",
  19204. image: {
  19205. source: "./media/characters/aronai-sieyes/front.svg",
  19206. extra: 1532/1450,
  19207. bottom: 42/1574
  19208. }
  19209. },
  19210. side: {
  19211. height: math.unit(6 + 1 / 12, "feet"),
  19212. weight: math.unit(75, "lb"),
  19213. name: "Side",
  19214. image: {
  19215. source: "./media/characters/aronai-sieyes/side.svg",
  19216. extra: 1422/1365,
  19217. bottom: 148/1570
  19218. }
  19219. },
  19220. back: {
  19221. height: math.unit(6 + 1 / 12, "feet"),
  19222. weight: math.unit(75, "lb"),
  19223. name: "Back",
  19224. image: {
  19225. source: "./media/characters/aronai-sieyes/back.svg",
  19226. extra: 1526/1464,
  19227. bottom: 51/1577
  19228. }
  19229. },
  19230. dressed: {
  19231. height: math.unit(6 + 1 / 12, "feet"),
  19232. weight: math.unit(75, "lb"),
  19233. name: "Dressed",
  19234. image: {
  19235. source: "./media/characters/aronai-sieyes/dressed.svg",
  19236. extra: 1559/1483,
  19237. bottom: 39/1598
  19238. }
  19239. },
  19240. slit: {
  19241. height: math.unit(1.3, "feet"),
  19242. name: "Slit",
  19243. image: {
  19244. source: "./media/characters/aronai-sieyes/slit.svg"
  19245. }
  19246. },
  19247. slitSpread: {
  19248. height: math.unit(0.9, "feet"),
  19249. name: "Slit (Spread)",
  19250. image: {
  19251. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19252. }
  19253. },
  19254. rump: {
  19255. height: math.unit(1.3, "feet"),
  19256. name: "Rump",
  19257. image: {
  19258. source: "./media/characters/aronai-sieyes/rump.svg"
  19259. }
  19260. },
  19261. maw: {
  19262. height: math.unit(1.25, "feet"),
  19263. name: "Maw",
  19264. image: {
  19265. source: "./media/characters/aronai-sieyes/maw.svg"
  19266. }
  19267. },
  19268. feral: {
  19269. height: math.unit(18, "feet"),
  19270. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19271. name: "Feral",
  19272. image: {
  19273. source: "./media/characters/aronai-sieyes/feral.svg",
  19274. extra: 1530 / 1240,
  19275. bottom: 0.035
  19276. }
  19277. },
  19278. },
  19279. [
  19280. {
  19281. name: "Micro",
  19282. height: math.unit(2, "inches")
  19283. },
  19284. {
  19285. name: "Normal",
  19286. height: math.unit(6 + 1 / 12, "feet"),
  19287. default: true
  19288. }
  19289. ]
  19290. ))
  19291. characterMakers.push(() => makeCharacter(
  19292. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19293. {
  19294. front: {
  19295. height: math.unit(12, "feet"),
  19296. weight: math.unit(410, "kg"),
  19297. name: "Front",
  19298. image: {
  19299. source: "./media/characters/xuna/front.svg",
  19300. extra: 2184 / 1980
  19301. }
  19302. },
  19303. side: {
  19304. height: math.unit(12, "feet"),
  19305. weight: math.unit(410, "kg"),
  19306. name: "Side",
  19307. image: {
  19308. source: "./media/characters/xuna/side.svg",
  19309. extra: 2184 / 1980
  19310. }
  19311. },
  19312. back: {
  19313. height: math.unit(12, "feet"),
  19314. weight: math.unit(410, "kg"),
  19315. name: "Back",
  19316. image: {
  19317. source: "./media/characters/xuna/back.svg",
  19318. extra: 2184 / 1980
  19319. }
  19320. },
  19321. },
  19322. [
  19323. {
  19324. name: "Nano glow",
  19325. height: math.unit(10, "nm")
  19326. },
  19327. {
  19328. name: "Micro floof",
  19329. height: math.unit(0.3, "m")
  19330. },
  19331. {
  19332. name: "Huggable softy boi",
  19333. height: math.unit(3.6576, "m"),
  19334. default: true
  19335. },
  19336. {
  19337. name: "Admirable floof",
  19338. height: math.unit(80, "meters")
  19339. },
  19340. {
  19341. name: "Gentle macro",
  19342. height: math.unit(300, "meters")
  19343. },
  19344. {
  19345. name: "Very careful floof",
  19346. height: math.unit(3200, "meters")
  19347. },
  19348. {
  19349. name: "The mega floof",
  19350. height: math.unit(36000, "meters")
  19351. },
  19352. {
  19353. name: "Giga-fur-Wicker",
  19354. height: math.unit(4800000, "meters")
  19355. },
  19356. {
  19357. name: "Licky world",
  19358. height: math.unit(20000000, "meters")
  19359. },
  19360. {
  19361. name: "Floofy cyan sun",
  19362. height: math.unit(1500000000, "meters")
  19363. },
  19364. {
  19365. name: "Milky Wicker",
  19366. height: math.unit(1000000000000000000000, "meters")
  19367. },
  19368. {
  19369. name: "The observing Wicker",
  19370. height: math.unit(999999999999999999999999999, "meters")
  19371. },
  19372. ]
  19373. ))
  19374. characterMakers.push(() => makeCharacter(
  19375. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19376. {
  19377. front: {
  19378. height: math.unit(5 + 9 / 12, "feet"),
  19379. weight: math.unit(150, "lb"),
  19380. name: "Front",
  19381. image: {
  19382. source: "./media/characters/arokha-sieyes/front.svg",
  19383. extra: 1425 / 1284,
  19384. bottom: 0.05
  19385. }
  19386. },
  19387. },
  19388. [
  19389. {
  19390. name: "Normal",
  19391. height: math.unit(5 + 9 / 12, "feet")
  19392. },
  19393. {
  19394. name: "Macro",
  19395. height: math.unit(30, "meters"),
  19396. default: true
  19397. },
  19398. ]
  19399. ))
  19400. characterMakers.push(() => makeCharacter(
  19401. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19402. {
  19403. front: {
  19404. height: math.unit(6, "feet"),
  19405. weight: math.unit(180, "lb"),
  19406. name: "Front",
  19407. image: {
  19408. source: "./media/characters/arokh-sieyes/front.svg",
  19409. extra: 1830 / 1769,
  19410. bottom: 0.01
  19411. }
  19412. },
  19413. },
  19414. [
  19415. {
  19416. name: "Normal",
  19417. height: math.unit(6, "feet")
  19418. },
  19419. {
  19420. name: "Macro",
  19421. height: math.unit(30, "meters"),
  19422. default: true
  19423. },
  19424. ]
  19425. ))
  19426. characterMakers.push(() => makeCharacter(
  19427. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19428. {
  19429. side: {
  19430. height: math.unit(13 + 1 / 12, "feet"),
  19431. weight: math.unit(8.5, "tonnes"),
  19432. name: "Side",
  19433. image: {
  19434. source: "./media/characters/goldeneye/side.svg",
  19435. extra: 1182 / 778,
  19436. bottom: 0.067
  19437. }
  19438. },
  19439. paw: {
  19440. height: math.unit(3.4, "feet"),
  19441. name: "Paw",
  19442. image: {
  19443. source: "./media/characters/goldeneye/paw.svg"
  19444. }
  19445. },
  19446. },
  19447. [
  19448. {
  19449. name: "Normal",
  19450. height: math.unit(13 + 1 / 12, "feet"),
  19451. default: true
  19452. },
  19453. ]
  19454. ))
  19455. characterMakers.push(() => makeCharacter(
  19456. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19457. {
  19458. front: {
  19459. height: math.unit(6 + 1 / 12, "feet"),
  19460. weight: math.unit(210, "lb"),
  19461. name: "Front",
  19462. image: {
  19463. source: "./media/characters/leonardo-lycheborne/front.svg",
  19464. extra: 776/723,
  19465. bottom: 34/810
  19466. }
  19467. },
  19468. side: {
  19469. height: math.unit(6 + 1 / 12, "feet"),
  19470. weight: math.unit(210, "lb"),
  19471. name: "Side",
  19472. image: {
  19473. source: "./media/characters/leonardo-lycheborne/side.svg",
  19474. extra: 780/728,
  19475. bottom: 12/792
  19476. }
  19477. },
  19478. back: {
  19479. height: math.unit(6 + 1 / 12, "feet"),
  19480. weight: math.unit(210, "lb"),
  19481. name: "Back",
  19482. image: {
  19483. source: "./media/characters/leonardo-lycheborne/back.svg",
  19484. extra: 775/721,
  19485. bottom: 17/792
  19486. }
  19487. },
  19488. hand: {
  19489. height: math.unit(1.08, "feet"),
  19490. name: "Hand",
  19491. image: {
  19492. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19493. }
  19494. },
  19495. foot: {
  19496. height: math.unit(1.32, "feet"),
  19497. name: "Foot",
  19498. image: {
  19499. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19500. }
  19501. },
  19502. maw: {
  19503. height: math.unit(1, "feet"),
  19504. name: "Maw",
  19505. image: {
  19506. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19507. }
  19508. },
  19509. were: {
  19510. height: math.unit(20, "feet"),
  19511. weight: math.unit(7800, "lb"),
  19512. name: "Were",
  19513. image: {
  19514. source: "./media/characters/leonardo-lycheborne/were.svg",
  19515. extra: 1224/1165,
  19516. bottom: 72/1296
  19517. }
  19518. },
  19519. feral: {
  19520. height: math.unit(7.5, "feet"),
  19521. weight: math.unit(600, "lb"),
  19522. name: "Feral",
  19523. image: {
  19524. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19525. extra: 797/702,
  19526. bottom: 139/936
  19527. }
  19528. },
  19529. taur: {
  19530. height: math.unit(11, "feet"),
  19531. weight: math.unit(3300, "lb"),
  19532. name: "Taur",
  19533. image: {
  19534. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19535. extra: 1271/1197,
  19536. bottom: 47/1318
  19537. }
  19538. },
  19539. barghest: {
  19540. height: math.unit(11, "feet"),
  19541. weight: math.unit(1300, "lb"),
  19542. name: "Barghest",
  19543. image: {
  19544. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19545. extra: 1291/1204,
  19546. bottom: 37/1328
  19547. }
  19548. },
  19549. dick: {
  19550. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19551. name: "Dick",
  19552. image: {
  19553. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19554. }
  19555. },
  19556. dickWere: {
  19557. height: math.unit((20) / 3.8, "feet"),
  19558. name: "Dick (Were)",
  19559. image: {
  19560. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19561. }
  19562. },
  19563. },
  19564. [
  19565. {
  19566. name: "Normal",
  19567. height: math.unit(6 + 1 / 12, "feet"),
  19568. default: true
  19569. },
  19570. ]
  19571. ))
  19572. characterMakers.push(() => makeCharacter(
  19573. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19574. {
  19575. front: {
  19576. height: math.unit(10, "feet"),
  19577. weight: math.unit(350, "lb"),
  19578. name: "Front",
  19579. image: {
  19580. source: "./media/characters/jet/front.svg",
  19581. extra: 2050 / 1980,
  19582. bottom: 0.013
  19583. }
  19584. },
  19585. back: {
  19586. height: math.unit(10, "feet"),
  19587. weight: math.unit(350, "lb"),
  19588. name: "Back",
  19589. image: {
  19590. source: "./media/characters/jet/back.svg",
  19591. extra: 2050 / 1980,
  19592. bottom: 0.013
  19593. }
  19594. },
  19595. },
  19596. [
  19597. {
  19598. name: "Micro",
  19599. height: math.unit(6, "inches")
  19600. },
  19601. {
  19602. name: "Normal",
  19603. height: math.unit(10, "feet"),
  19604. default: true
  19605. },
  19606. {
  19607. name: "Macro",
  19608. height: math.unit(100, "feet")
  19609. },
  19610. ]
  19611. ))
  19612. characterMakers.push(() => makeCharacter(
  19613. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19614. {
  19615. front: {
  19616. height: math.unit(15, "feet"),
  19617. weight: math.unit(2800, "lb"),
  19618. name: "Front",
  19619. image: {
  19620. source: "./media/characters/tanarath/front.svg",
  19621. extra: 2392 / 2220,
  19622. bottom: 0.03
  19623. }
  19624. },
  19625. back: {
  19626. height: math.unit(15, "feet"),
  19627. weight: math.unit(2800, "lb"),
  19628. name: "Back",
  19629. image: {
  19630. source: "./media/characters/tanarath/back.svg",
  19631. extra: 2392 / 2220,
  19632. bottom: 0.03
  19633. }
  19634. },
  19635. },
  19636. [
  19637. {
  19638. name: "Normal",
  19639. height: math.unit(15, "feet"),
  19640. default: true
  19641. },
  19642. ]
  19643. ))
  19644. characterMakers.push(() => makeCharacter(
  19645. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19646. {
  19647. front: {
  19648. height: math.unit(7 + 1 / 12, "feet"),
  19649. weight: math.unit(175, "lb"),
  19650. name: "Front",
  19651. image: {
  19652. source: "./media/characters/patty-cattybatty/front.svg",
  19653. extra: 908 / 874,
  19654. bottom: 0.025
  19655. }
  19656. },
  19657. },
  19658. [
  19659. {
  19660. name: "Micro",
  19661. height: math.unit(1, "inch")
  19662. },
  19663. {
  19664. name: "Normal",
  19665. height: math.unit(7 + 1 / 12, "feet")
  19666. },
  19667. {
  19668. name: "Mini Macro",
  19669. height: math.unit(155, "feet")
  19670. },
  19671. {
  19672. name: "Macro",
  19673. height: math.unit(1077, "feet")
  19674. },
  19675. {
  19676. name: "Mega Macro",
  19677. height: math.unit(47650, "feet"),
  19678. default: true
  19679. },
  19680. {
  19681. name: "Giga Macro",
  19682. height: math.unit(440, "miles")
  19683. },
  19684. {
  19685. name: "Tera Macro",
  19686. height: math.unit(8700, "miles")
  19687. },
  19688. {
  19689. name: "Planetary Macro",
  19690. height: math.unit(32700, "miles")
  19691. },
  19692. {
  19693. name: "Solar Macro",
  19694. height: math.unit(550000, "miles")
  19695. },
  19696. {
  19697. name: "Celestial Macro",
  19698. height: math.unit(2.5, "AU")
  19699. },
  19700. ]
  19701. ))
  19702. characterMakers.push(() => makeCharacter(
  19703. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19704. {
  19705. front: {
  19706. height: math.unit(4 + 5 / 12, "feet"),
  19707. weight: math.unit(90, "lb"),
  19708. name: "Front",
  19709. image: {
  19710. source: "./media/characters/cappu/front.svg",
  19711. extra: 1247 / 1152,
  19712. bottom: 0.012
  19713. }
  19714. },
  19715. },
  19716. [
  19717. {
  19718. name: "Normal",
  19719. height: math.unit(4 + 5 / 12, "feet"),
  19720. default: true
  19721. },
  19722. ]
  19723. ))
  19724. characterMakers.push(() => makeCharacter(
  19725. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19726. {
  19727. frontDressed: {
  19728. height: math.unit(70, "cm"),
  19729. weight: math.unit(6, "kg"),
  19730. name: "Front (Dressed)",
  19731. image: {
  19732. source: "./media/characters/sebi/front-dressed.svg",
  19733. extra: 713.5 / 686.5,
  19734. bottom: 0.003
  19735. }
  19736. },
  19737. front: {
  19738. height: math.unit(70, "cm"),
  19739. weight: math.unit(5, "kg"),
  19740. name: "Front",
  19741. image: {
  19742. source: "./media/characters/sebi/front.svg",
  19743. extra: 713.5 / 686.5,
  19744. bottom: 0.003
  19745. }
  19746. }
  19747. },
  19748. [
  19749. {
  19750. name: "Normal",
  19751. height: math.unit(70, "cm"),
  19752. default: true
  19753. },
  19754. {
  19755. name: "Macro",
  19756. height: math.unit(8, "meters")
  19757. },
  19758. ]
  19759. ))
  19760. characterMakers.push(() => makeCharacter(
  19761. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19762. {
  19763. front: {
  19764. height: math.unit(6, "feet"),
  19765. weight: math.unit(150, "lb"),
  19766. name: "Front",
  19767. image: {
  19768. source: "./media/characters/typhek/front.svg",
  19769. extra: 1948 / 1929,
  19770. bottom: 0.025
  19771. }
  19772. },
  19773. side: {
  19774. height: math.unit(6, "feet"),
  19775. weight: math.unit(150, "lb"),
  19776. name: "Side",
  19777. image: {
  19778. source: "./media/characters/typhek/side.svg",
  19779. extra: 2034 / 2010,
  19780. bottom: 0.003
  19781. }
  19782. },
  19783. back: {
  19784. height: math.unit(6, "feet"),
  19785. weight: math.unit(150, "lb"),
  19786. name: "Back",
  19787. image: {
  19788. source: "./media/characters/typhek/back.svg",
  19789. extra: 2005 / 1978,
  19790. bottom: 0.004
  19791. }
  19792. },
  19793. palm: {
  19794. height: math.unit(1.2, "feet"),
  19795. name: "Palm",
  19796. image: {
  19797. source: "./media/characters/typhek/palm.svg"
  19798. }
  19799. },
  19800. fist: {
  19801. height: math.unit(1.1, "feet"),
  19802. name: "Fist",
  19803. image: {
  19804. source: "./media/characters/typhek/fist.svg"
  19805. }
  19806. },
  19807. foot: {
  19808. height: math.unit(1.57, "feet"),
  19809. name: "Foot",
  19810. image: {
  19811. source: "./media/characters/typhek/foot.svg"
  19812. }
  19813. },
  19814. sole: {
  19815. height: math.unit(2.05, "feet"),
  19816. name: "Sole",
  19817. image: {
  19818. source: "./media/characters/typhek/sole.svg"
  19819. }
  19820. },
  19821. },
  19822. [
  19823. {
  19824. name: "Macro",
  19825. height: math.unit(40, "stories"),
  19826. default: true
  19827. },
  19828. {
  19829. name: "Megamacro",
  19830. height: math.unit(1, "mile")
  19831. },
  19832. {
  19833. name: "Gigamacro",
  19834. height: math.unit(4000, "solarradii")
  19835. },
  19836. {
  19837. name: "Universal",
  19838. height: math.unit(1.1, "universes")
  19839. }
  19840. ]
  19841. ))
  19842. characterMakers.push(() => makeCharacter(
  19843. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19844. {
  19845. side: {
  19846. height: math.unit(5 + 7 / 12, "feet"),
  19847. weight: math.unit(150, "lb"),
  19848. name: "Side",
  19849. image: {
  19850. source: "./media/characters/kassy/side.svg",
  19851. extra: 1280 / 1225,
  19852. bottom: 0.002
  19853. }
  19854. },
  19855. front: {
  19856. height: math.unit(5 + 7 / 12, "feet"),
  19857. weight: math.unit(150, "lb"),
  19858. name: "Front",
  19859. image: {
  19860. source: "./media/characters/kassy/front.svg",
  19861. extra: 1280 / 1225,
  19862. bottom: 0.025
  19863. }
  19864. },
  19865. back: {
  19866. height: math.unit(5 + 7 / 12, "feet"),
  19867. weight: math.unit(150, "lb"),
  19868. name: "Back",
  19869. image: {
  19870. source: "./media/characters/kassy/back.svg",
  19871. extra: 1280 / 1225,
  19872. bottom: 0.002
  19873. }
  19874. },
  19875. foot: {
  19876. height: math.unit(1.266, "feet"),
  19877. name: "Foot",
  19878. image: {
  19879. source: "./media/characters/kassy/foot.svg"
  19880. }
  19881. },
  19882. },
  19883. [
  19884. {
  19885. name: "Normal",
  19886. height: math.unit(5 + 7 / 12, "feet")
  19887. },
  19888. {
  19889. name: "Macro",
  19890. height: math.unit(137, "feet"),
  19891. default: true
  19892. },
  19893. {
  19894. name: "Megamacro",
  19895. height: math.unit(1, "mile")
  19896. },
  19897. ]
  19898. ))
  19899. characterMakers.push(() => makeCharacter(
  19900. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19901. {
  19902. front: {
  19903. height: math.unit(6 + 1 / 12, "feet"),
  19904. weight: math.unit(200, "lb"),
  19905. name: "Front",
  19906. image: {
  19907. source: "./media/characters/neil/front.svg",
  19908. extra: 1326 / 1250,
  19909. bottom: 0.023
  19910. }
  19911. },
  19912. },
  19913. [
  19914. {
  19915. name: "Normal",
  19916. height: math.unit(6 + 1 / 12, "feet"),
  19917. default: true
  19918. },
  19919. {
  19920. name: "Macro",
  19921. height: math.unit(200, "feet")
  19922. },
  19923. ]
  19924. ))
  19925. characterMakers.push(() => makeCharacter(
  19926. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19927. {
  19928. front: {
  19929. height: math.unit(5 + 9 / 12, "feet"),
  19930. weight: math.unit(190, "lb"),
  19931. name: "Front",
  19932. image: {
  19933. source: "./media/characters/atticus/front.svg",
  19934. extra: 2934 / 2785,
  19935. bottom: 0.025
  19936. }
  19937. },
  19938. },
  19939. [
  19940. {
  19941. name: "Normal",
  19942. height: math.unit(5 + 9 / 12, "feet"),
  19943. default: true
  19944. },
  19945. {
  19946. name: "Macro",
  19947. height: math.unit(180, "feet")
  19948. },
  19949. ]
  19950. ))
  19951. characterMakers.push(() => makeCharacter(
  19952. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19953. {
  19954. side: {
  19955. height: math.unit(9, "feet"),
  19956. weight: math.unit(650, "lb"),
  19957. name: "Side",
  19958. image: {
  19959. source: "./media/characters/milo/side.svg",
  19960. extra: 2644 / 2310,
  19961. bottom: 0.032
  19962. }
  19963. },
  19964. },
  19965. [
  19966. {
  19967. name: "Normal",
  19968. height: math.unit(9, "feet"),
  19969. default: true
  19970. },
  19971. {
  19972. name: "Macro",
  19973. height: math.unit(300, "feet")
  19974. },
  19975. ]
  19976. ))
  19977. characterMakers.push(() => makeCharacter(
  19978. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19979. {
  19980. side: {
  19981. height: math.unit(8, "meters"),
  19982. weight: math.unit(90000, "kg"),
  19983. name: "Side",
  19984. image: {
  19985. source: "./media/characters/ijzer/side.svg",
  19986. extra: 2756 / 1600,
  19987. bottom: 0.01
  19988. }
  19989. },
  19990. },
  19991. [
  19992. {
  19993. name: "Small",
  19994. height: math.unit(3, "meters")
  19995. },
  19996. {
  19997. name: "Normal",
  19998. height: math.unit(8, "meters"),
  19999. default: true
  20000. },
  20001. {
  20002. name: "Normal+",
  20003. height: math.unit(10, "meters")
  20004. },
  20005. {
  20006. name: "Bigger",
  20007. height: math.unit(24, "meters")
  20008. },
  20009. {
  20010. name: "Huge",
  20011. height: math.unit(80, "meters")
  20012. },
  20013. ]
  20014. ))
  20015. characterMakers.push(() => makeCharacter(
  20016. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20017. {
  20018. front: {
  20019. height: math.unit(6 + 2 / 12, "feet"),
  20020. weight: math.unit(153, "lb"),
  20021. name: "Front",
  20022. image: {
  20023. source: "./media/characters/luca-cervicum/front.svg",
  20024. extra: 370 / 327,
  20025. bottom: 0.015
  20026. }
  20027. },
  20028. back: {
  20029. height: math.unit(6 + 2 / 12, "feet"),
  20030. weight: math.unit(153, "lb"),
  20031. name: "Back",
  20032. image: {
  20033. source: "./media/characters/luca-cervicum/back.svg",
  20034. extra: 367 / 333,
  20035. bottom: 0.005
  20036. }
  20037. },
  20038. frontGear: {
  20039. height: math.unit(6 + 2 / 12, "feet"),
  20040. weight: math.unit(173, "lb"),
  20041. name: "Front (Gear)",
  20042. image: {
  20043. source: "./media/characters/luca-cervicum/front-gear.svg",
  20044. extra: 377 / 333,
  20045. bottom: 0.006
  20046. }
  20047. },
  20048. },
  20049. [
  20050. {
  20051. name: "Normal",
  20052. height: math.unit(6 + 2 / 12, "feet"),
  20053. default: true
  20054. },
  20055. ]
  20056. ))
  20057. characterMakers.push(() => makeCharacter(
  20058. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20059. {
  20060. front: {
  20061. height: math.unit(6 + 1 / 12, "feet"),
  20062. weight: math.unit(304, "lb"),
  20063. name: "Front",
  20064. image: {
  20065. source: "./media/characters/oliver/front.svg",
  20066. extra: 157 / 143,
  20067. bottom: 0.08
  20068. }
  20069. },
  20070. },
  20071. [
  20072. {
  20073. name: "Normal",
  20074. height: math.unit(6 + 1 / 12, "feet"),
  20075. default: true
  20076. },
  20077. ]
  20078. ))
  20079. characterMakers.push(() => makeCharacter(
  20080. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20081. {
  20082. front: {
  20083. height: math.unit(5 + 7 / 12, "feet"),
  20084. weight: math.unit(140, "lb"),
  20085. name: "Front",
  20086. image: {
  20087. source: "./media/characters/shane/front.svg",
  20088. extra: 304 / 289,
  20089. bottom: 0.005
  20090. }
  20091. },
  20092. },
  20093. [
  20094. {
  20095. name: "Normal",
  20096. height: math.unit(5 + 7 / 12, "feet"),
  20097. default: true
  20098. },
  20099. ]
  20100. ))
  20101. characterMakers.push(() => makeCharacter(
  20102. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20103. {
  20104. front: {
  20105. height: math.unit(5 + 9 / 12, "feet"),
  20106. weight: math.unit(178, "lb"),
  20107. name: "Front",
  20108. image: {
  20109. source: "./media/characters/shin/front.svg",
  20110. extra: 159 / 151,
  20111. bottom: 0.015
  20112. }
  20113. },
  20114. },
  20115. [
  20116. {
  20117. name: "Normal",
  20118. height: math.unit(5 + 9 / 12, "feet"),
  20119. default: true
  20120. },
  20121. ]
  20122. ))
  20123. characterMakers.push(() => makeCharacter(
  20124. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20125. {
  20126. front: {
  20127. height: math.unit(5 + 10 / 12, "feet"),
  20128. weight: math.unit(168, "lb"),
  20129. name: "Front",
  20130. image: {
  20131. source: "./media/characters/xerxes/front.svg",
  20132. extra: 282 / 260,
  20133. bottom: 0.045
  20134. }
  20135. },
  20136. },
  20137. [
  20138. {
  20139. name: "Normal",
  20140. height: math.unit(5 + 10 / 12, "feet"),
  20141. default: true
  20142. },
  20143. ]
  20144. ))
  20145. characterMakers.push(() => makeCharacter(
  20146. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20147. {
  20148. front: {
  20149. height: math.unit(6 + 7 / 12, "feet"),
  20150. weight: math.unit(208, "lb"),
  20151. name: "Front",
  20152. image: {
  20153. source: "./media/characters/chaska/front.svg",
  20154. extra: 332 / 319,
  20155. bottom: 0.015
  20156. }
  20157. },
  20158. },
  20159. [
  20160. {
  20161. name: "Normal",
  20162. height: math.unit(6 + 7 / 12, "feet"),
  20163. default: true
  20164. },
  20165. ]
  20166. ))
  20167. characterMakers.push(() => makeCharacter(
  20168. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20169. {
  20170. front: {
  20171. height: math.unit(5 + 8 / 12, "feet"),
  20172. weight: math.unit(208, "lb"),
  20173. name: "Front",
  20174. image: {
  20175. source: "./media/characters/enuk/front.svg",
  20176. extra: 437 / 406,
  20177. bottom: 0.02
  20178. }
  20179. },
  20180. },
  20181. [
  20182. {
  20183. name: "Normal",
  20184. height: math.unit(5 + 8 / 12, "feet"),
  20185. default: true
  20186. },
  20187. ]
  20188. ))
  20189. characterMakers.push(() => makeCharacter(
  20190. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20191. {
  20192. front: {
  20193. height: math.unit(5 + 10 / 12, "feet"),
  20194. weight: math.unit(252, "lb"),
  20195. name: "Front",
  20196. image: {
  20197. source: "./media/characters/bruun/front.svg",
  20198. extra: 197 / 187,
  20199. bottom: 0.012
  20200. }
  20201. },
  20202. },
  20203. [
  20204. {
  20205. name: "Normal",
  20206. height: math.unit(5 + 10 / 12, "feet"),
  20207. default: true
  20208. },
  20209. ]
  20210. ))
  20211. characterMakers.push(() => makeCharacter(
  20212. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20213. {
  20214. front: {
  20215. height: math.unit(6 + 10 / 12, "feet"),
  20216. weight: math.unit(255, "lb"),
  20217. name: "Front",
  20218. image: {
  20219. source: "./media/characters/alexeev/front.svg",
  20220. extra: 213 / 200,
  20221. bottom: 0.05
  20222. }
  20223. },
  20224. },
  20225. [
  20226. {
  20227. name: "Normal",
  20228. height: math.unit(6 + 10 / 12, "feet"),
  20229. default: true
  20230. },
  20231. ]
  20232. ))
  20233. characterMakers.push(() => makeCharacter(
  20234. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20235. {
  20236. front: {
  20237. height: math.unit(2 + 8 / 12, "feet"),
  20238. weight: math.unit(22, "lb"),
  20239. name: "Front",
  20240. image: {
  20241. source: "./media/characters/evelyn/front.svg",
  20242. extra: 208 / 180
  20243. }
  20244. },
  20245. },
  20246. [
  20247. {
  20248. name: "Normal",
  20249. height: math.unit(2 + 8 / 12, "feet"),
  20250. default: true
  20251. },
  20252. ]
  20253. ))
  20254. characterMakers.push(() => makeCharacter(
  20255. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20256. {
  20257. front: {
  20258. height: math.unit(5 + 9 / 12, "feet"),
  20259. weight: math.unit(139, "lb"),
  20260. name: "Front",
  20261. image: {
  20262. source: "./media/characters/inca/front.svg",
  20263. extra: 294 / 291,
  20264. bottom: 0.03
  20265. }
  20266. },
  20267. },
  20268. [
  20269. {
  20270. name: "Normal",
  20271. height: math.unit(5 + 9 / 12, "feet"),
  20272. default: true
  20273. },
  20274. ]
  20275. ))
  20276. characterMakers.push(() => makeCharacter(
  20277. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20278. {
  20279. front: {
  20280. height: math.unit(6 + 3 / 12, "feet"),
  20281. weight: math.unit(185, "lb"),
  20282. name: "Front",
  20283. image: {
  20284. source: "./media/characters/mera/front.svg",
  20285. extra: 291 / 277,
  20286. bottom: 0.03
  20287. }
  20288. },
  20289. },
  20290. [
  20291. {
  20292. name: "Normal",
  20293. height: math.unit(6 + 3 / 12, "feet"),
  20294. default: true
  20295. },
  20296. ]
  20297. ))
  20298. characterMakers.push(() => makeCharacter(
  20299. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20300. {
  20301. front: {
  20302. height: math.unit(6 + 7 / 12, "feet"),
  20303. weight: math.unit(160, "lb"),
  20304. name: "Front",
  20305. image: {
  20306. source: "./media/characters/ceres/front.svg",
  20307. extra: 1023 / 950,
  20308. bottom: 0.027
  20309. }
  20310. },
  20311. back: {
  20312. height: math.unit(6 + 7 / 12, "feet"),
  20313. weight: math.unit(160, "lb"),
  20314. name: "Back",
  20315. image: {
  20316. source: "./media/characters/ceres/back.svg",
  20317. extra: 1023 / 950
  20318. }
  20319. },
  20320. },
  20321. [
  20322. {
  20323. name: "Normal",
  20324. height: math.unit(6 + 7 / 12, "feet"),
  20325. default: true
  20326. },
  20327. ]
  20328. ))
  20329. characterMakers.push(() => makeCharacter(
  20330. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20331. {
  20332. front: {
  20333. height: math.unit(5 + 10 / 12, "feet"),
  20334. weight: math.unit(150, "lb"),
  20335. name: "Front",
  20336. image: {
  20337. source: "./media/characters/kris/front.svg",
  20338. extra: 885 / 803,
  20339. bottom: 0.03
  20340. }
  20341. },
  20342. },
  20343. [
  20344. {
  20345. name: "Normal",
  20346. height: math.unit(5 + 10 / 12, "feet"),
  20347. default: true
  20348. },
  20349. ]
  20350. ))
  20351. characterMakers.push(() => makeCharacter(
  20352. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20353. {
  20354. front: {
  20355. height: math.unit(7, "feet"),
  20356. weight: math.unit(120, "kg"),
  20357. name: "Front",
  20358. image: {
  20359. source: "./media/characters/taluthus/front.svg",
  20360. extra: 903 / 833,
  20361. bottom: 0.015
  20362. }
  20363. },
  20364. },
  20365. [
  20366. {
  20367. name: "Normal",
  20368. height: math.unit(7, "feet"),
  20369. default: true
  20370. },
  20371. {
  20372. name: "Macro",
  20373. height: math.unit(300, "feet")
  20374. },
  20375. ]
  20376. ))
  20377. characterMakers.push(() => makeCharacter(
  20378. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20379. {
  20380. front: {
  20381. height: math.unit(5 + 9 / 12, "feet"),
  20382. weight: math.unit(145, "lb"),
  20383. name: "Front",
  20384. image: {
  20385. source: "./media/characters/dawn/front.svg",
  20386. extra: 2094 / 2016,
  20387. bottom: 0.025
  20388. }
  20389. },
  20390. back: {
  20391. height: math.unit(5 + 9 / 12, "feet"),
  20392. weight: math.unit(160, "lb"),
  20393. name: "Back",
  20394. image: {
  20395. source: "./media/characters/dawn/back.svg",
  20396. extra: 2112 / 2080,
  20397. bottom: 0.005
  20398. }
  20399. },
  20400. },
  20401. [
  20402. {
  20403. name: "Normal",
  20404. height: math.unit(6 + 7 / 12, "feet"),
  20405. default: true
  20406. },
  20407. ]
  20408. ))
  20409. characterMakers.push(() => makeCharacter(
  20410. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20411. {
  20412. anthro: {
  20413. height: math.unit(8 + 3 / 12, "feet"),
  20414. weight: math.unit(450, "lb"),
  20415. name: "Anthro",
  20416. image: {
  20417. source: "./media/characters/arador/anthro.svg",
  20418. extra: 1835 / 1718,
  20419. bottom: 0.025
  20420. }
  20421. },
  20422. feral: {
  20423. height: math.unit(4, "feet"),
  20424. weight: math.unit(200, "lb"),
  20425. name: "Feral",
  20426. image: {
  20427. source: "./media/characters/arador/feral.svg",
  20428. extra: 1683 / 1514,
  20429. bottom: 0.07
  20430. }
  20431. },
  20432. },
  20433. [
  20434. {
  20435. name: "Normal",
  20436. height: math.unit(8 + 3 / 12, "feet")
  20437. },
  20438. {
  20439. name: "Macro",
  20440. height: math.unit(82.5, "feet"),
  20441. default: true
  20442. },
  20443. ]
  20444. ))
  20445. characterMakers.push(() => makeCharacter(
  20446. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20447. {
  20448. front: {
  20449. height: math.unit(5 + 10 / 12, "feet"),
  20450. weight: math.unit(125, "lb"),
  20451. name: "Front",
  20452. image: {
  20453. source: "./media/characters/dharsi/front.svg",
  20454. extra: 716 / 630,
  20455. bottom: 0.035
  20456. }
  20457. },
  20458. },
  20459. [
  20460. {
  20461. name: "Nano",
  20462. height: math.unit(100, "nm")
  20463. },
  20464. {
  20465. name: "Micro",
  20466. height: math.unit(2, "inches")
  20467. },
  20468. {
  20469. name: "Normal",
  20470. height: math.unit(5 + 10 / 12, "feet"),
  20471. default: true
  20472. },
  20473. {
  20474. name: "Macro",
  20475. height: math.unit(1000, "feet")
  20476. },
  20477. {
  20478. name: "Megamacro",
  20479. height: math.unit(10, "miles")
  20480. },
  20481. {
  20482. name: "Gigamacro",
  20483. height: math.unit(3000, "miles")
  20484. },
  20485. {
  20486. name: "Teramacro",
  20487. height: math.unit(500000, "miles")
  20488. },
  20489. {
  20490. name: "Teramacro+",
  20491. height: math.unit(30, "galaxies")
  20492. },
  20493. ]
  20494. ))
  20495. characterMakers.push(() => makeCharacter(
  20496. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20497. {
  20498. front: {
  20499. height: math.unit(6, "feet"),
  20500. weight: math.unit(150, "lb"),
  20501. name: "Front",
  20502. image: {
  20503. source: "./media/characters/deathy/front.svg",
  20504. extra: 1552 / 1463,
  20505. bottom: 0.025
  20506. }
  20507. },
  20508. side: {
  20509. height: math.unit(6, "feet"),
  20510. weight: math.unit(150, "lb"),
  20511. name: "Side",
  20512. image: {
  20513. source: "./media/characters/deathy/side.svg",
  20514. extra: 1604 / 1455,
  20515. bottom: 0.025
  20516. }
  20517. },
  20518. back: {
  20519. height: math.unit(6, "feet"),
  20520. weight: math.unit(150, "lb"),
  20521. name: "Back",
  20522. image: {
  20523. source: "./media/characters/deathy/back.svg",
  20524. extra: 1580 / 1463,
  20525. bottom: 0.005
  20526. }
  20527. },
  20528. },
  20529. [
  20530. {
  20531. name: "Micro",
  20532. height: math.unit(5, "millimeters")
  20533. },
  20534. {
  20535. name: "Normal",
  20536. height: math.unit(6 + 5 / 12, "feet"),
  20537. default: true
  20538. },
  20539. ]
  20540. ))
  20541. characterMakers.push(() => makeCharacter(
  20542. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20543. {
  20544. front: {
  20545. height: math.unit(16, "feet"),
  20546. weight: math.unit(4000, "lb"),
  20547. name: "Front",
  20548. image: {
  20549. source: "./media/characters/juniper/front.svg",
  20550. bottom: 0.04
  20551. }
  20552. },
  20553. },
  20554. [
  20555. {
  20556. name: "Normal",
  20557. height: math.unit(16, "feet"),
  20558. default: true
  20559. },
  20560. ]
  20561. ))
  20562. characterMakers.push(() => makeCharacter(
  20563. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20564. {
  20565. front: {
  20566. height: math.unit(6, "feet"),
  20567. weight: math.unit(150, "lb"),
  20568. name: "Front",
  20569. image: {
  20570. source: "./media/characters/hipster/front.svg",
  20571. extra: 1312 / 1209,
  20572. bottom: 0.025
  20573. }
  20574. },
  20575. back: {
  20576. height: math.unit(6, "feet"),
  20577. weight: math.unit(150, "lb"),
  20578. name: "Back",
  20579. image: {
  20580. source: "./media/characters/hipster/back.svg",
  20581. extra: 1281 / 1196,
  20582. bottom: 0.01
  20583. }
  20584. },
  20585. },
  20586. [
  20587. {
  20588. name: "Micro",
  20589. height: math.unit(1, "mm")
  20590. },
  20591. {
  20592. name: "Normal",
  20593. height: math.unit(4, "inches"),
  20594. default: true
  20595. },
  20596. {
  20597. name: "Macro",
  20598. height: math.unit(500, "feet")
  20599. },
  20600. {
  20601. name: "Megamacro",
  20602. height: math.unit(1000, "miles")
  20603. },
  20604. ]
  20605. ))
  20606. characterMakers.push(() => makeCharacter(
  20607. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20608. {
  20609. front: {
  20610. height: math.unit(6, "feet"),
  20611. weight: math.unit(150, "lb"),
  20612. name: "Front",
  20613. image: {
  20614. source: "./media/characters/tendirmuldr/front.svg",
  20615. extra: 1878 / 1772,
  20616. bottom: 0.015
  20617. }
  20618. },
  20619. },
  20620. [
  20621. {
  20622. name: "Megamacro",
  20623. height: math.unit(1500, "miles"),
  20624. default: true
  20625. },
  20626. ]
  20627. ))
  20628. characterMakers.push(() => makeCharacter(
  20629. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20630. {
  20631. front: {
  20632. height: math.unit(14, "feet"),
  20633. weight: math.unit(12000, "lb"),
  20634. name: "Front",
  20635. image: {
  20636. source: "./media/characters/mort/front.svg",
  20637. extra: 365 / 318,
  20638. bottom: 0.01
  20639. }
  20640. },
  20641. side: {
  20642. height: math.unit(14, "feet"),
  20643. weight: math.unit(12000, "lb"),
  20644. name: "Side",
  20645. image: {
  20646. source: "./media/characters/mort/side.svg",
  20647. extra: 365 / 318,
  20648. bottom: 0.052
  20649. },
  20650. default: true
  20651. },
  20652. back: {
  20653. height: math.unit(14, "feet"),
  20654. weight: math.unit(12000, "lb"),
  20655. name: "Back",
  20656. image: {
  20657. source: "./media/characters/mort/back.svg",
  20658. extra: 371 / 332,
  20659. bottom: 0.18
  20660. }
  20661. },
  20662. },
  20663. [
  20664. {
  20665. name: "Normal",
  20666. height: math.unit(14, "feet"),
  20667. default: true
  20668. },
  20669. ]
  20670. ))
  20671. characterMakers.push(() => makeCharacter(
  20672. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20673. {
  20674. front: {
  20675. height: math.unit(8, "feet"),
  20676. weight: math.unit(1, "ton"),
  20677. name: "Front",
  20678. image: {
  20679. source: "./media/characters/lycoa/front.svg",
  20680. extra: 1836/1728,
  20681. bottom: 81/1917
  20682. }
  20683. },
  20684. back: {
  20685. height: math.unit(8, "feet"),
  20686. weight: math.unit(1, "ton"),
  20687. name: "Back",
  20688. image: {
  20689. source: "./media/characters/lycoa/back.svg",
  20690. extra: 1785/1720,
  20691. bottom: 91/1876
  20692. }
  20693. },
  20694. head: {
  20695. height: math.unit(1.6243, "feet"),
  20696. name: "Head",
  20697. image: {
  20698. source: "./media/characters/lycoa/head.svg",
  20699. extra: 1011/782,
  20700. bottom: 0/1011
  20701. }
  20702. },
  20703. tailmaw: {
  20704. height: math.unit(1.9, "feet"),
  20705. name: "Tailmaw",
  20706. image: {
  20707. source: "./media/characters/lycoa/tailmaw.svg"
  20708. }
  20709. },
  20710. tentacles: {
  20711. height: math.unit(2.1, "feet"),
  20712. name: "Tentacles",
  20713. image: {
  20714. source: "./media/characters/lycoa/tentacles.svg"
  20715. }
  20716. },
  20717. dick: {
  20718. height: math.unit(1.73, "feet"),
  20719. name: "Dick",
  20720. image: {
  20721. source: "./media/characters/lycoa/dick.svg"
  20722. }
  20723. },
  20724. },
  20725. [
  20726. {
  20727. name: "Normal",
  20728. height: math.unit(8, "feet"),
  20729. default: true
  20730. },
  20731. {
  20732. name: "Macro",
  20733. height: math.unit(30, "feet")
  20734. },
  20735. ]
  20736. ))
  20737. characterMakers.push(() => makeCharacter(
  20738. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20739. {
  20740. front: {
  20741. height: math.unit(4 + 2 / 12, "feet"),
  20742. weight: math.unit(70, "lb"),
  20743. name: "Front",
  20744. image: {
  20745. source: "./media/characters/naldara/front.svg",
  20746. extra: 1664/1387,
  20747. bottom: 81/1745
  20748. },
  20749. form: "anthro",
  20750. default: true
  20751. },
  20752. naga: {
  20753. height: math.unit(20, "feet"),
  20754. weight: math.unit(15000, "kg"),
  20755. name: "Front",
  20756. image: {
  20757. source: "./media/characters/naldara/naga.svg",
  20758. extra: 1590/1396,
  20759. bottom: 285/1875
  20760. },
  20761. form: "naga",
  20762. default: true
  20763. },
  20764. },
  20765. [
  20766. {
  20767. name: "Normal",
  20768. height: math.unit(4 + 2 / 12, "feet"),
  20769. form: "anthro",
  20770. default: true
  20771. },
  20772. {
  20773. name: "Normal",
  20774. height: math.unit(20, "feet"),
  20775. form: "naga",
  20776. default: true
  20777. },
  20778. ],
  20779. {
  20780. "anthro": {
  20781. name: "Anthro"
  20782. },
  20783. "naga": {
  20784. name: "Naga"
  20785. }
  20786. }
  20787. ))
  20788. characterMakers.push(() => makeCharacter(
  20789. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20790. {
  20791. front: {
  20792. height: math.unit(13 + 7 / 12, "feet"),
  20793. weight: math.unit(1500, "lb"),
  20794. name: "Front",
  20795. image: {
  20796. source: "./media/characters/briar/front.svg",
  20797. extra: 1223/1157,
  20798. bottom: 123/1346
  20799. }
  20800. },
  20801. },
  20802. [
  20803. {
  20804. name: "Normal",
  20805. height: math.unit(13 + 7 / 12, "feet"),
  20806. default: true
  20807. },
  20808. ]
  20809. ))
  20810. characterMakers.push(() => makeCharacter(
  20811. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20812. {
  20813. side: {
  20814. height: math.unit(16, "feet"),
  20815. weight: math.unit(500, "lb"),
  20816. name: "Side",
  20817. image: {
  20818. source: "./media/characters/vanguard/side.svg",
  20819. extra: 1022/914,
  20820. bottom: 30/1052
  20821. }
  20822. },
  20823. sideAlt: {
  20824. height: math.unit(10, "feet"),
  20825. weight: math.unit(500, "lb"),
  20826. name: "Side (Alt)",
  20827. image: {
  20828. source: "./media/characters/vanguard/side-alt.svg",
  20829. extra: 502 / 425,
  20830. bottom: 0.087
  20831. }
  20832. },
  20833. },
  20834. [
  20835. {
  20836. name: "Normal",
  20837. height: math.unit(17.71, "feet"),
  20838. default: true
  20839. },
  20840. ]
  20841. ))
  20842. characterMakers.push(() => makeCharacter(
  20843. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20844. {
  20845. front: {
  20846. height: math.unit(7.5, "feet"),
  20847. weight: math.unit(2, "lb"),
  20848. name: "Front",
  20849. image: {
  20850. source: "./media/characters/artemis/work-safe-front.svg",
  20851. extra: 1192 / 1075,
  20852. bottom: 0.07
  20853. },
  20854. form: "work-safe",
  20855. default: true
  20856. },
  20857. frontNsfw: {
  20858. height: math.unit(7.5, "feet"),
  20859. weight: math.unit(2, "lb"),
  20860. name: "Front",
  20861. image: {
  20862. source: "./media/characters/artemis/calibrating-front.svg",
  20863. extra: 1192 / 1075,
  20864. bottom: 0.07
  20865. },
  20866. form: "calibrating",
  20867. default: true
  20868. },
  20869. frontNsfwer: {
  20870. height: math.unit(7.5, "feet"),
  20871. weight: math.unit(2, "lb"),
  20872. name: "Front",
  20873. image: {
  20874. source: "./media/characters/artemis/oversize-load-front.svg",
  20875. extra: 1192 / 1075,
  20876. bottom: 0.07
  20877. },
  20878. form: "oversize-load",
  20879. default: true
  20880. },
  20881. side: {
  20882. height: math.unit(7.5, "feet"),
  20883. weight: math.unit(2, "lb"),
  20884. name: "Side",
  20885. image: {
  20886. source: "./media/characters/artemis/work-safe-side.svg",
  20887. extra: 1192 / 1075,
  20888. bottom: 0.07
  20889. },
  20890. form: "work-safe"
  20891. },
  20892. sideNsfw: {
  20893. height: math.unit(7.5, "feet"),
  20894. weight: math.unit(2, "lb"),
  20895. name: "Side",
  20896. image: {
  20897. source: "./media/characters/artemis/calibrating-side.svg",
  20898. extra: 1192 / 1075,
  20899. bottom: 0.07
  20900. },
  20901. form: "calibrating"
  20902. },
  20903. sideNsfwer: {
  20904. height: math.unit(7.5, "feet"),
  20905. weight: math.unit(2, "lb"),
  20906. name: "Side",
  20907. image: {
  20908. source: "./media/characters/artemis/oversize-load-side.svg",
  20909. extra: 1192 / 1075,
  20910. bottom: 0.07
  20911. },
  20912. form: "oversize-load"
  20913. },
  20914. maw: {
  20915. height: math.unit(1.1, "feet"),
  20916. name: "Maw",
  20917. image: {
  20918. source: "./media/characters/artemis/maw.svg"
  20919. },
  20920. form: "work-safe"
  20921. },
  20922. stomach: {
  20923. height: math.unit(0.95, "feet"),
  20924. name: "Stomach",
  20925. image: {
  20926. source: "./media/characters/artemis/stomach.svg"
  20927. },
  20928. form: "work-safe"
  20929. },
  20930. dickCanine: {
  20931. height: math.unit(1, "feet"),
  20932. name: "Dick (Canine)",
  20933. image: {
  20934. source: "./media/characters/artemis/dick-canine.svg"
  20935. },
  20936. form: "calibrating"
  20937. },
  20938. dickEquine: {
  20939. height: math.unit(0.85, "feet"),
  20940. name: "Dick (Equine)",
  20941. image: {
  20942. source: "./media/characters/artemis/dick-equine.svg"
  20943. },
  20944. form: "calibrating"
  20945. },
  20946. dickExotic: {
  20947. height: math.unit(0.85, "feet"),
  20948. name: "Dick (Exotic)",
  20949. image: {
  20950. source: "./media/characters/artemis/dick-exotic.svg"
  20951. },
  20952. form: "calibrating"
  20953. },
  20954. dickCanineBigger: {
  20955. height: math.unit(1 * 1.33, "feet"),
  20956. name: "Dick (Canine)",
  20957. image: {
  20958. source: "./media/characters/artemis/dick-canine.svg"
  20959. },
  20960. form: "oversize-load"
  20961. },
  20962. dickEquineBigger: {
  20963. height: math.unit(0.85 * 1.33, "feet"),
  20964. name: "Dick (Equine)",
  20965. image: {
  20966. source: "./media/characters/artemis/dick-equine.svg"
  20967. },
  20968. form: "oversize-load"
  20969. },
  20970. dickExoticBigger: {
  20971. height: math.unit(0.85 * 1.33, "feet"),
  20972. name: "Dick (Exotic)",
  20973. image: {
  20974. source: "./media/characters/artemis/dick-exotic.svg"
  20975. },
  20976. form: "oversize-load"
  20977. },
  20978. },
  20979. [
  20980. {
  20981. name: "Normal",
  20982. height: math.unit(7.5, "feet"),
  20983. form: "work-safe",
  20984. default: true
  20985. },
  20986. {
  20987. name: "Normal",
  20988. height: math.unit(7.5, "feet"),
  20989. form: "calibrating",
  20990. default: true
  20991. },
  20992. {
  20993. name: "Normal",
  20994. height: math.unit(7.5, "feet"),
  20995. form: "oversize-load",
  20996. default: true
  20997. },
  20998. {
  20999. name: "Enlarged",
  21000. height: math.unit(12, "feet"),
  21001. form: "work-safe",
  21002. },
  21003. {
  21004. name: "Enlarged",
  21005. height: math.unit(12, "feet"),
  21006. form: "calibrating",
  21007. },
  21008. {
  21009. name: "Enlarged",
  21010. height: math.unit(12, "feet"),
  21011. form: "oversize-load",
  21012. },
  21013. ],
  21014. {
  21015. "work-safe": {
  21016. name: "Work-Safe",
  21017. default: true
  21018. },
  21019. "calibrating": {
  21020. name: "Calibrating"
  21021. },
  21022. "oversize-load": {
  21023. name: "Oversize Load"
  21024. }
  21025. }
  21026. ))
  21027. characterMakers.push(() => makeCharacter(
  21028. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21029. {
  21030. front: {
  21031. height: math.unit(5 + 3 / 12, "feet"),
  21032. weight: math.unit(160, "lb"),
  21033. name: "Front",
  21034. image: {
  21035. source: "./media/characters/kira/front.svg",
  21036. extra: 906 / 786,
  21037. bottom: 0.01
  21038. }
  21039. },
  21040. back: {
  21041. height: math.unit(5 + 3 / 12, "feet"),
  21042. weight: math.unit(160, "lb"),
  21043. name: "Back",
  21044. image: {
  21045. source: "./media/characters/kira/back.svg",
  21046. extra: 882 / 757,
  21047. bottom: 0.005
  21048. }
  21049. },
  21050. frontDressed: {
  21051. height: math.unit(5 + 3 / 12, "feet"),
  21052. weight: math.unit(160, "lb"),
  21053. name: "Front (Dressed)",
  21054. image: {
  21055. source: "./media/characters/kira/front-dressed.svg",
  21056. extra: 906 / 786,
  21057. bottom: 0.01
  21058. }
  21059. },
  21060. beans: {
  21061. height: math.unit(0.92, "feet"),
  21062. name: "Beans",
  21063. image: {
  21064. source: "./media/characters/kira/beans.svg"
  21065. }
  21066. },
  21067. },
  21068. [
  21069. {
  21070. name: "Normal",
  21071. height: math.unit(5 + 3 / 12, "feet"),
  21072. default: true
  21073. },
  21074. ]
  21075. ))
  21076. characterMakers.push(() => makeCharacter(
  21077. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21078. {
  21079. front: {
  21080. height: math.unit(5 + 4 / 12, "feet"),
  21081. weight: math.unit(145, "lb"),
  21082. name: "Front",
  21083. image: {
  21084. source: "./media/characters/scramble/front.svg",
  21085. extra: 763 / 727,
  21086. bottom: 0.05
  21087. }
  21088. },
  21089. back: {
  21090. height: math.unit(5 + 4 / 12, "feet"),
  21091. weight: math.unit(145, "lb"),
  21092. name: "Back",
  21093. image: {
  21094. source: "./media/characters/scramble/back.svg",
  21095. extra: 826 / 737,
  21096. bottom: 0.002
  21097. }
  21098. },
  21099. },
  21100. [
  21101. {
  21102. name: "Normal",
  21103. height: math.unit(5 + 4 / 12, "feet"),
  21104. default: true
  21105. },
  21106. ]
  21107. ))
  21108. characterMakers.push(() => makeCharacter(
  21109. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21110. {
  21111. side: {
  21112. height: math.unit(6 + 2 / 12, "feet"),
  21113. weight: math.unit(190, "lb"),
  21114. name: "Side",
  21115. image: {
  21116. source: "./media/characters/biscuit/side.svg",
  21117. extra: 858 / 791,
  21118. bottom: 0.044
  21119. }
  21120. },
  21121. },
  21122. [
  21123. {
  21124. name: "Normal",
  21125. height: math.unit(6 + 2 / 12, "feet"),
  21126. default: true
  21127. },
  21128. ]
  21129. ))
  21130. characterMakers.push(() => makeCharacter(
  21131. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21132. {
  21133. front: {
  21134. height: math.unit(5 + 2 / 12, "feet"),
  21135. weight: math.unit(120, "lb"),
  21136. name: "Front",
  21137. image: {
  21138. source: "./media/characters/poffin/front.svg",
  21139. extra: 786 / 680,
  21140. bottom: 0.005
  21141. }
  21142. },
  21143. },
  21144. [
  21145. {
  21146. name: "Normal",
  21147. height: math.unit(5 + 2 / 12, "feet"),
  21148. default: true
  21149. },
  21150. ]
  21151. ))
  21152. characterMakers.push(() => makeCharacter(
  21153. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21154. {
  21155. front: {
  21156. height: math.unit(6 + 3 / 12, "feet"),
  21157. weight: math.unit(519, "lb"),
  21158. name: "Front",
  21159. image: {
  21160. source: "./media/characters/dhari/front.svg",
  21161. extra: 1048 / 946,
  21162. bottom: 0.015
  21163. }
  21164. },
  21165. back: {
  21166. height: math.unit(6 + 3 / 12, "feet"),
  21167. weight: math.unit(519, "lb"),
  21168. name: "Back",
  21169. image: {
  21170. source: "./media/characters/dhari/back.svg",
  21171. extra: 1048 / 931,
  21172. bottom: 0.005
  21173. }
  21174. },
  21175. frontDressed: {
  21176. height: math.unit(6 + 3 / 12, "feet"),
  21177. weight: math.unit(519, "lb"),
  21178. name: "Front (Dressed)",
  21179. image: {
  21180. source: "./media/characters/dhari/front-dressed.svg",
  21181. extra: 1713 / 1546,
  21182. bottom: 0.02
  21183. }
  21184. },
  21185. backDressed: {
  21186. height: math.unit(6 + 3 / 12, "feet"),
  21187. weight: math.unit(519, "lb"),
  21188. name: "Back (Dressed)",
  21189. image: {
  21190. source: "./media/characters/dhari/back-dressed.svg",
  21191. extra: 1699 / 1537,
  21192. bottom: 0.01
  21193. }
  21194. },
  21195. maw: {
  21196. height: math.unit(0.95, "feet"),
  21197. name: "Maw",
  21198. image: {
  21199. source: "./media/characters/dhari/maw.svg"
  21200. }
  21201. },
  21202. wereFront: {
  21203. height: math.unit(12 + 8 / 12, "feet"),
  21204. weight: math.unit(4000, "lb"),
  21205. name: "Front (Were)",
  21206. image: {
  21207. source: "./media/characters/dhari/were-front.svg",
  21208. extra: 1065 / 969,
  21209. bottom: 0.015
  21210. }
  21211. },
  21212. wereBack: {
  21213. height: math.unit(12 + 8 / 12, "feet"),
  21214. weight: math.unit(4000, "lb"),
  21215. name: "Back (Were)",
  21216. image: {
  21217. source: "./media/characters/dhari/were-back.svg",
  21218. extra: 1065 / 969,
  21219. bottom: 0.012
  21220. }
  21221. },
  21222. wereMaw: {
  21223. height: math.unit(0.625, "meters"),
  21224. name: "Maw (Were)",
  21225. image: {
  21226. source: "./media/characters/dhari/were-maw.svg"
  21227. }
  21228. },
  21229. },
  21230. [
  21231. {
  21232. name: "Normal",
  21233. height: math.unit(6 + 3 / 12, "feet"),
  21234. default: true
  21235. },
  21236. ]
  21237. ))
  21238. characterMakers.push(() => makeCharacter(
  21239. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21240. {
  21241. anthro: {
  21242. height: math.unit(5 + 7 / 12, "feet"),
  21243. weight: math.unit(175, "lb"),
  21244. name: "Anthro",
  21245. image: {
  21246. source: "./media/characters/rena-dyne/anthro.svg",
  21247. extra: 1849 / 1785,
  21248. bottom: 0.005
  21249. }
  21250. },
  21251. taur: {
  21252. height: math.unit(15 + 6 / 12, "feet"),
  21253. weight: math.unit(8000, "lb"),
  21254. name: "Taur",
  21255. image: {
  21256. source: "./media/characters/rena-dyne/taur.svg",
  21257. extra: 2315 / 2234,
  21258. bottom: 0.033
  21259. }
  21260. },
  21261. },
  21262. [
  21263. {
  21264. name: "Normal",
  21265. height: math.unit(5 + 7 / 12, "feet"),
  21266. default: true
  21267. },
  21268. ]
  21269. ))
  21270. characterMakers.push(() => makeCharacter(
  21271. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21272. {
  21273. front: {
  21274. height: math.unit(8, "feet"),
  21275. weight: math.unit(600, "lb"),
  21276. name: "Front",
  21277. image: {
  21278. source: "./media/characters/weremeep/front.svg",
  21279. extra: 967 / 862,
  21280. bottom: 0.01
  21281. }
  21282. },
  21283. },
  21284. [
  21285. {
  21286. name: "Normal",
  21287. height: math.unit(8, "feet"),
  21288. default: true
  21289. },
  21290. {
  21291. name: "Lorg",
  21292. height: math.unit(12, "feet")
  21293. },
  21294. {
  21295. name: "Oh Lawd She Comin'",
  21296. height: math.unit(20, "feet")
  21297. },
  21298. ]
  21299. ))
  21300. characterMakers.push(() => makeCharacter(
  21301. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21302. {
  21303. front: {
  21304. height: math.unit(4, "feet"),
  21305. weight: math.unit(90, "lb"),
  21306. name: "Front",
  21307. image: {
  21308. source: "./media/characters/reza/front.svg",
  21309. extra: 1183 / 1111,
  21310. bottom: 0.017
  21311. }
  21312. },
  21313. back: {
  21314. height: math.unit(4, "feet"),
  21315. weight: math.unit(90, "lb"),
  21316. name: "Back",
  21317. image: {
  21318. source: "./media/characters/reza/back.svg",
  21319. extra: 1183 / 1111,
  21320. bottom: 0.01
  21321. }
  21322. },
  21323. drake: {
  21324. height: math.unit(30, "feet"),
  21325. weight: math.unit(246960, "lb"),
  21326. name: "Drake",
  21327. image: {
  21328. source: "./media/characters/reza/drake.svg",
  21329. extra: 2350 / 2024,
  21330. bottom: 60.7 / 2403
  21331. }
  21332. },
  21333. },
  21334. [
  21335. {
  21336. name: "Normal",
  21337. height: math.unit(4, "feet"),
  21338. default: true
  21339. },
  21340. ]
  21341. ))
  21342. characterMakers.push(() => makeCharacter(
  21343. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21344. {
  21345. side: {
  21346. height: math.unit(15, "feet"),
  21347. weight: math.unit(14, "tons"),
  21348. name: "Side",
  21349. image: {
  21350. source: "./media/characters/athea/side.svg",
  21351. extra: 960 / 540,
  21352. bottom: 0.003
  21353. }
  21354. },
  21355. sitting: {
  21356. height: math.unit(6 * 2.85, "feet"),
  21357. weight: math.unit(14, "tons"),
  21358. name: "Sitting",
  21359. image: {
  21360. source: "./media/characters/athea/sitting.svg",
  21361. extra: 621 / 581,
  21362. bottom: 0.075
  21363. }
  21364. },
  21365. maw: {
  21366. height: math.unit(7.59498031496063, "feet"),
  21367. name: "Maw",
  21368. image: {
  21369. source: "./media/characters/athea/maw.svg"
  21370. }
  21371. },
  21372. },
  21373. [
  21374. {
  21375. name: "Lap Cat",
  21376. height: math.unit(2.5, "feet")
  21377. },
  21378. {
  21379. name: "Minimacro",
  21380. height: math.unit(15, "feet"),
  21381. default: true
  21382. },
  21383. {
  21384. name: "Macro",
  21385. height: math.unit(120, "feet")
  21386. },
  21387. {
  21388. name: "Macro+",
  21389. height: math.unit(640, "feet")
  21390. },
  21391. {
  21392. name: "Colossus",
  21393. height: math.unit(2.2, "miles")
  21394. },
  21395. ]
  21396. ))
  21397. characterMakers.push(() => makeCharacter(
  21398. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21399. {
  21400. front: {
  21401. height: math.unit(8 + 8 / 12, "feet"),
  21402. weight: math.unit(130, "kg"),
  21403. name: "Front",
  21404. image: {
  21405. source: "./media/characters/seroko/front.svg",
  21406. extra: 1385 / 1280,
  21407. bottom: 0.025
  21408. }
  21409. },
  21410. back: {
  21411. height: math.unit(8 + 8 / 12, "feet"),
  21412. weight: math.unit(130, "kg"),
  21413. name: "Back",
  21414. image: {
  21415. source: "./media/characters/seroko/back.svg",
  21416. extra: 1369 / 1238,
  21417. bottom: 0.018
  21418. }
  21419. },
  21420. frontDressed: {
  21421. height: math.unit(8 + 8 / 12, "feet"),
  21422. weight: math.unit(130, "kg"),
  21423. name: "Front (Dressed)",
  21424. image: {
  21425. source: "./media/characters/seroko/front-dressed.svg",
  21426. extra: 1366 / 1275,
  21427. bottom: 0.03
  21428. }
  21429. },
  21430. },
  21431. [
  21432. {
  21433. name: "Normal",
  21434. height: math.unit(8 + 8 / 12, "feet"),
  21435. default: true
  21436. },
  21437. ]
  21438. ))
  21439. characterMakers.push(() => makeCharacter(
  21440. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21441. {
  21442. front: {
  21443. height: math.unit(5.5, "feet"),
  21444. weight: math.unit(160, "lb"),
  21445. name: "Front",
  21446. image: {
  21447. source: "./media/characters/quatzi/front.svg",
  21448. extra: 2346 / 2242,
  21449. bottom: 0.015
  21450. }
  21451. },
  21452. },
  21453. [
  21454. {
  21455. name: "Normal",
  21456. height: math.unit(5.5, "feet"),
  21457. default: true
  21458. },
  21459. {
  21460. name: "Big",
  21461. height: math.unit(7.7, "feet")
  21462. },
  21463. ]
  21464. ))
  21465. characterMakers.push(() => makeCharacter(
  21466. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21467. {
  21468. front: {
  21469. height: math.unit(5 + 11 / 12, "feet"),
  21470. weight: math.unit(180, "lb"),
  21471. name: "Front",
  21472. image: {
  21473. source: "./media/characters/sen/front.svg",
  21474. extra: 1321 / 1254,
  21475. bottom: 0.015
  21476. }
  21477. },
  21478. side: {
  21479. height: math.unit(5 + 11 / 12, "feet"),
  21480. weight: math.unit(180, "lb"),
  21481. name: "Side",
  21482. image: {
  21483. source: "./media/characters/sen/side.svg",
  21484. extra: 1321 / 1254,
  21485. bottom: 0.007
  21486. }
  21487. },
  21488. back: {
  21489. height: math.unit(5 + 11 / 12, "feet"),
  21490. weight: math.unit(180, "lb"),
  21491. name: "Back",
  21492. image: {
  21493. source: "./media/characters/sen/back.svg",
  21494. extra: 1321 / 1254
  21495. }
  21496. },
  21497. },
  21498. [
  21499. {
  21500. name: "Normal",
  21501. height: math.unit(5 + 11 / 12, "feet"),
  21502. default: true
  21503. },
  21504. ]
  21505. ))
  21506. characterMakers.push(() => makeCharacter(
  21507. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21508. {
  21509. front: {
  21510. height: math.unit(166.6, "cm"),
  21511. weight: math.unit(66.6, "kg"),
  21512. name: "Front",
  21513. image: {
  21514. source: "./media/characters/fruity/front.svg",
  21515. extra: 1510 / 1386,
  21516. bottom: 0.04
  21517. }
  21518. },
  21519. back: {
  21520. height: math.unit(166.6, "cm"),
  21521. weight: math.unit(66.6, "lb"),
  21522. name: "Back",
  21523. image: {
  21524. source: "./media/characters/fruity/back.svg",
  21525. extra: 1563 / 1435,
  21526. bottom: 0.005
  21527. }
  21528. },
  21529. },
  21530. [
  21531. {
  21532. name: "Normal",
  21533. height: math.unit(166.6, "cm"),
  21534. default: true
  21535. },
  21536. {
  21537. name: "Demonic",
  21538. height: math.unit(166.6, "feet")
  21539. },
  21540. ]
  21541. ))
  21542. characterMakers.push(() => makeCharacter(
  21543. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21544. {
  21545. side: {
  21546. height: math.unit(10, "feet"),
  21547. weight: math.unit(500, "lb"),
  21548. name: "Side",
  21549. image: {
  21550. source: "./media/characters/zost/side.svg",
  21551. extra: 2870/2533,
  21552. bottom: 252/3122
  21553. }
  21554. },
  21555. mawFront: {
  21556. height: math.unit(1.08, "meters"),
  21557. name: "Maw (Front)",
  21558. image: {
  21559. source: "./media/characters/zost/maw-front.svg"
  21560. }
  21561. },
  21562. mawSide: {
  21563. height: math.unit(2.66, "feet"),
  21564. name: "Maw (Side)",
  21565. image: {
  21566. source: "./media/characters/zost/maw-side.svg"
  21567. }
  21568. },
  21569. wingspan: {
  21570. height: math.unit(7.4, "feet"),
  21571. name: "Wingspan",
  21572. image: {
  21573. source: "./media/characters/zost/wingspan.svg"
  21574. }
  21575. },
  21576. },
  21577. [
  21578. {
  21579. name: "Normal",
  21580. height: math.unit(10, "feet"),
  21581. default: true
  21582. },
  21583. ]
  21584. ))
  21585. characterMakers.push(() => makeCharacter(
  21586. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21587. {
  21588. front: {
  21589. height: math.unit(5 + 4 / 12, "feet"),
  21590. weight: math.unit(120, "lb"),
  21591. name: "Front",
  21592. image: {
  21593. source: "./media/characters/luci/front.svg",
  21594. extra: 1985 / 1884,
  21595. bottom: 0.04
  21596. }
  21597. },
  21598. back: {
  21599. height: math.unit(5 + 4 / 12, "feet"),
  21600. weight: math.unit(120, "lb"),
  21601. name: "Back",
  21602. image: {
  21603. source: "./media/characters/luci/back.svg",
  21604. extra: 1892 / 1791,
  21605. bottom: 0.002
  21606. }
  21607. },
  21608. },
  21609. [
  21610. {
  21611. name: "Normal",
  21612. height: math.unit(5 + 4 / 12, "feet"),
  21613. default: true
  21614. },
  21615. ]
  21616. ))
  21617. characterMakers.push(() => makeCharacter(
  21618. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21619. {
  21620. front: {
  21621. height: math.unit(1500, "feet"),
  21622. weight: math.unit(3.8e6, "tons"),
  21623. name: "Front",
  21624. image: {
  21625. source: "./media/characters/2th/front.svg",
  21626. extra: 3489 / 3350,
  21627. bottom: 0.1
  21628. }
  21629. },
  21630. foot: {
  21631. height: math.unit(461, "feet"),
  21632. name: "Foot",
  21633. image: {
  21634. source: "./media/characters/2th/foot.svg"
  21635. }
  21636. },
  21637. },
  21638. [
  21639. {
  21640. name: "\"Micro\"",
  21641. height: math.unit(15 + 7 / 12, "feet")
  21642. },
  21643. {
  21644. name: "Normal",
  21645. height: math.unit(1500, "feet"),
  21646. default: true
  21647. },
  21648. {
  21649. name: "Macro",
  21650. height: math.unit(5000, "feet")
  21651. },
  21652. {
  21653. name: "Megamacro",
  21654. height: math.unit(15, "miles")
  21655. },
  21656. {
  21657. name: "Gigamacro",
  21658. height: math.unit(4000, "miles")
  21659. },
  21660. {
  21661. name: "Galactic",
  21662. height: math.unit(50, "AU")
  21663. },
  21664. ]
  21665. ))
  21666. characterMakers.push(() => makeCharacter(
  21667. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21668. {
  21669. front: {
  21670. height: math.unit(5 + 6 / 12, "feet"),
  21671. weight: math.unit(220, "lb"),
  21672. name: "Front",
  21673. image: {
  21674. source: "./media/characters/amethyst/front.svg",
  21675. extra: 2078 / 2040,
  21676. bottom: 0.045
  21677. }
  21678. },
  21679. back: {
  21680. height: math.unit(5 + 6 / 12, "feet"),
  21681. weight: math.unit(220, "lb"),
  21682. name: "Back",
  21683. image: {
  21684. source: "./media/characters/amethyst/back.svg",
  21685. extra: 2021 / 1989,
  21686. bottom: 0.02
  21687. }
  21688. },
  21689. },
  21690. [
  21691. {
  21692. name: "Normal",
  21693. height: math.unit(5 + 6 / 12, "feet"),
  21694. default: true
  21695. },
  21696. ]
  21697. ))
  21698. characterMakers.push(() => makeCharacter(
  21699. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21700. {
  21701. front: {
  21702. height: math.unit(4 + 11 / 12, "feet"),
  21703. weight: math.unit(120, "lb"),
  21704. name: "Front",
  21705. image: {
  21706. source: "./media/characters/yumi-akiyama/front.svg",
  21707. extra: 1327 / 1235,
  21708. bottom: 0.02
  21709. }
  21710. },
  21711. back: {
  21712. height: math.unit(4 + 11 / 12, "feet"),
  21713. weight: math.unit(120, "lb"),
  21714. name: "Back",
  21715. image: {
  21716. source: "./media/characters/yumi-akiyama/back.svg",
  21717. extra: 1287 / 1245,
  21718. bottom: 0.002
  21719. }
  21720. },
  21721. },
  21722. [
  21723. {
  21724. name: "Galactic",
  21725. height: math.unit(50, "galaxies"),
  21726. default: true
  21727. },
  21728. {
  21729. name: "Universal",
  21730. height: math.unit(100, "universes")
  21731. },
  21732. ]
  21733. ))
  21734. characterMakers.push(() => makeCharacter(
  21735. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21736. {
  21737. front: {
  21738. height: math.unit(8, "feet"),
  21739. weight: math.unit(500, "lb"),
  21740. name: "Front",
  21741. image: {
  21742. source: "./media/characters/rifter-yrmori/front.svg",
  21743. extra: 1180 / 1125,
  21744. bottom: 0.02
  21745. }
  21746. },
  21747. back: {
  21748. height: math.unit(8, "feet"),
  21749. weight: math.unit(500, "lb"),
  21750. name: "Back",
  21751. image: {
  21752. source: "./media/characters/rifter-yrmori/back.svg",
  21753. extra: 1190 / 1145,
  21754. bottom: 0.001
  21755. }
  21756. },
  21757. wings: {
  21758. height: math.unit(7.75, "feet"),
  21759. weight: math.unit(500, "lb"),
  21760. name: "Wings",
  21761. image: {
  21762. source: "./media/characters/rifter-yrmori/wings.svg",
  21763. extra: 1357 / 1285
  21764. }
  21765. },
  21766. maw: {
  21767. height: math.unit(0.8, "feet"),
  21768. name: "Maw",
  21769. image: {
  21770. source: "./media/characters/rifter-yrmori/maw.svg"
  21771. }
  21772. },
  21773. mawfront: {
  21774. height: math.unit(1.45, "feet"),
  21775. name: "Maw (Front)",
  21776. image: {
  21777. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21778. }
  21779. },
  21780. },
  21781. [
  21782. {
  21783. name: "Normal",
  21784. height: math.unit(8, "feet"),
  21785. default: true
  21786. },
  21787. {
  21788. name: "Macro",
  21789. height: math.unit(42, "meters")
  21790. },
  21791. ]
  21792. ))
  21793. characterMakers.push(() => makeCharacter(
  21794. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21795. {
  21796. were: {
  21797. height: math.unit(25 + 6 / 12, "feet"),
  21798. weight: math.unit(10000, "lb"),
  21799. name: "Were",
  21800. image: {
  21801. source: "./media/characters/tahajin/were.svg",
  21802. extra: 801 / 770,
  21803. bottom: 0.042
  21804. }
  21805. },
  21806. aquatic: {
  21807. height: math.unit(6 + 4 / 12, "feet"),
  21808. weight: math.unit(160, "lb"),
  21809. name: "Aquatic",
  21810. image: {
  21811. source: "./media/characters/tahajin/aquatic.svg",
  21812. extra: 572 / 542,
  21813. bottom: 0.04
  21814. }
  21815. },
  21816. chow: {
  21817. height: math.unit(8 + 11 / 12, "feet"),
  21818. weight: math.unit(450, "lb"),
  21819. name: "Chow",
  21820. image: {
  21821. source: "./media/characters/tahajin/chow.svg",
  21822. extra: 660 / 640,
  21823. bottom: 0.015
  21824. }
  21825. },
  21826. demiNaga: {
  21827. height: math.unit(6 + 8 / 12, "feet"),
  21828. weight: math.unit(300, "lb"),
  21829. name: "Demi Naga",
  21830. image: {
  21831. source: "./media/characters/tahajin/demi-naga.svg",
  21832. extra: 643 / 615,
  21833. bottom: 0.1
  21834. }
  21835. },
  21836. data: {
  21837. height: math.unit(5, "inches"),
  21838. weight: math.unit(0.1, "lb"),
  21839. name: "Data",
  21840. image: {
  21841. source: "./media/characters/tahajin/data.svg"
  21842. }
  21843. },
  21844. fluu: {
  21845. height: math.unit(5 + 7 / 12, "feet"),
  21846. weight: math.unit(140, "lb"),
  21847. name: "Fluu",
  21848. image: {
  21849. source: "./media/characters/tahajin/fluu.svg",
  21850. extra: 628 / 592,
  21851. bottom: 0.02
  21852. }
  21853. },
  21854. starWarrior: {
  21855. height: math.unit(4 + 5 / 12, "feet"),
  21856. weight: math.unit(50, "lb"),
  21857. name: "Star Warrior",
  21858. image: {
  21859. source: "./media/characters/tahajin/star-warrior.svg"
  21860. }
  21861. },
  21862. },
  21863. [
  21864. {
  21865. name: "Normal",
  21866. height: math.unit(25 + 6 / 12, "feet"),
  21867. default: true
  21868. },
  21869. ]
  21870. ))
  21871. characterMakers.push(() => makeCharacter(
  21872. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21873. {
  21874. front: {
  21875. height: math.unit(8, "feet"),
  21876. weight: math.unit(350, "lb"),
  21877. name: "Front",
  21878. image: {
  21879. source: "./media/characters/gabira/front.svg",
  21880. extra: 608 / 580,
  21881. bottom: 0.03
  21882. }
  21883. },
  21884. back: {
  21885. height: math.unit(8, "feet"),
  21886. weight: math.unit(350, "lb"),
  21887. name: "Back",
  21888. image: {
  21889. source: "./media/characters/gabira/back.svg",
  21890. extra: 608 / 580,
  21891. bottom: 0.03
  21892. }
  21893. },
  21894. },
  21895. [
  21896. {
  21897. name: "Normal",
  21898. height: math.unit(8, "feet"),
  21899. default: true
  21900. },
  21901. ]
  21902. ))
  21903. characterMakers.push(() => makeCharacter(
  21904. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21905. {
  21906. front: {
  21907. height: math.unit(5 + 3 / 12, "feet"),
  21908. weight: math.unit(137, "lb"),
  21909. name: "Front",
  21910. image: {
  21911. source: "./media/characters/sasha-katraine/front.svg",
  21912. bottom: 0.045
  21913. }
  21914. },
  21915. },
  21916. [
  21917. {
  21918. name: "Micro",
  21919. height: math.unit(5, "inches")
  21920. },
  21921. {
  21922. name: "Normal",
  21923. height: math.unit(5 + 3 / 12, "feet"),
  21924. default: true
  21925. },
  21926. ]
  21927. ))
  21928. characterMakers.push(() => makeCharacter(
  21929. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21930. {
  21931. side: {
  21932. height: math.unit(4, "inches"),
  21933. weight: math.unit(200, "grams"),
  21934. name: "Side",
  21935. image: {
  21936. source: "./media/characters/der/side.svg",
  21937. extra: 719 / 400,
  21938. bottom: 30.6 / 749.9187
  21939. }
  21940. },
  21941. },
  21942. [
  21943. {
  21944. name: "Micro",
  21945. height: math.unit(4, "inches"),
  21946. default: true
  21947. },
  21948. ]
  21949. ))
  21950. characterMakers.push(() => makeCharacter(
  21951. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21952. {
  21953. side: {
  21954. height: math.unit(30, "meters"),
  21955. weight: math.unit(700, "tonnes"),
  21956. name: "Side",
  21957. image: {
  21958. source: "./media/characters/fixerdragon/side.svg",
  21959. extra: (1293.0514 - 116.03) / 1106.86,
  21960. bottom: 116.03 / 1293.0514
  21961. }
  21962. },
  21963. },
  21964. [
  21965. {
  21966. name: "Planck",
  21967. height: math.unit(1.6e-35, "meters")
  21968. },
  21969. {
  21970. name: "Micro",
  21971. height: math.unit(0.4, "meters")
  21972. },
  21973. {
  21974. name: "Normal",
  21975. height: math.unit(30, "meters"),
  21976. default: true
  21977. },
  21978. {
  21979. name: "Megamacro",
  21980. height: math.unit(1.2, "megameters")
  21981. },
  21982. {
  21983. name: "Teramacro",
  21984. height: math.unit(130, "terameters")
  21985. },
  21986. {
  21987. name: "Yottamacro",
  21988. height: math.unit(6200, "yottameters")
  21989. },
  21990. ]
  21991. ));
  21992. characterMakers.push(() => makeCharacter(
  21993. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21994. {
  21995. front: {
  21996. height: math.unit(8, "feet"),
  21997. weight: math.unit(250, "lb"),
  21998. name: "Front",
  21999. image: {
  22000. source: "./media/characters/kite/front.svg",
  22001. extra: 2796 / 2659,
  22002. bottom: 0.002
  22003. }
  22004. },
  22005. },
  22006. [
  22007. {
  22008. name: "Normal",
  22009. height: math.unit(8, "feet"),
  22010. default: true
  22011. },
  22012. {
  22013. name: "Macro",
  22014. height: math.unit(360, "feet")
  22015. },
  22016. {
  22017. name: "Megamacro",
  22018. height: math.unit(1500, "feet")
  22019. },
  22020. ]
  22021. ))
  22022. characterMakers.push(() => makeCharacter(
  22023. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  22024. {
  22025. front: {
  22026. height: math.unit(5 + 11/12, "feet"),
  22027. weight: math.unit(170, "lb"),
  22028. name: "Front",
  22029. image: {
  22030. source: "./media/characters/poojawa-vynar/front.svg",
  22031. extra: 1735/1585,
  22032. bottom: 96/1831
  22033. }
  22034. },
  22035. back: {
  22036. height: math.unit(5 + 11/12, "feet"),
  22037. weight: math.unit(170, "lb"),
  22038. name: "Back",
  22039. image: {
  22040. source: "./media/characters/poojawa-vynar/back.svg",
  22041. extra: 1749/1607,
  22042. bottom: 28/1777
  22043. }
  22044. },
  22045. male: {
  22046. height: math.unit(5 + 11/12, "feet"),
  22047. weight: math.unit(170, "lb"),
  22048. name: "Male",
  22049. image: {
  22050. source: "./media/characters/poojawa-vynar/male.svg",
  22051. extra: 1855/1713,
  22052. bottom: 63/1918
  22053. }
  22054. },
  22055. taur: {
  22056. height: math.unit(5 + 11/12, "feet"),
  22057. weight: math.unit(170, "lb"),
  22058. name: "Taur",
  22059. image: {
  22060. source: "./media/characters/poojawa-vynar/taur.svg",
  22061. extra: 1151/1059,
  22062. bottom: 356/1507
  22063. }
  22064. },
  22065. frontDressed: {
  22066. height: math.unit(5 + 11/12, "feet"),
  22067. weight: math.unit(170, "lb"),
  22068. name: "Front (Dressed)",
  22069. image: {
  22070. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22071. extra: 1735/1585,
  22072. bottom: 96/1831
  22073. }
  22074. },
  22075. backDressed: {
  22076. height: math.unit(5 + 11/12, "feet"),
  22077. weight: math.unit(170, "lb"),
  22078. name: "Back (Dressed)",
  22079. image: {
  22080. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22081. extra: 1749/1607,
  22082. bottom: 28/1777
  22083. }
  22084. },
  22085. maleDressed: {
  22086. height: math.unit(5 + 11/12, "feet"),
  22087. weight: math.unit(170, "lb"),
  22088. name: "Male (Dressed)",
  22089. image: {
  22090. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22091. extra: 1855/1713,
  22092. bottom: 63/1918
  22093. }
  22094. },
  22095. taurDressed: {
  22096. height: math.unit(5 + 11/12, "feet"),
  22097. weight: math.unit(170, "lb"),
  22098. name: "Taur (Dressed)",
  22099. image: {
  22100. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22101. extra: 1151/1059,
  22102. bottom: 356/1507
  22103. }
  22104. },
  22105. maw: {
  22106. height: math.unit(1.46, "feet"),
  22107. name: "Maw",
  22108. image: {
  22109. source: "./media/characters/poojawa-vynar/maw.svg"
  22110. }
  22111. },
  22112. head: {
  22113. height: math.unit(2.34, "feet"),
  22114. name: "Head",
  22115. image: {
  22116. source: "./media/characters/poojawa-vynar/head.svg"
  22117. }
  22118. },
  22119. paw: {
  22120. height: math.unit(1.61, "feet"),
  22121. name: "Paw",
  22122. image: {
  22123. source: "./media/characters/poojawa-vynar/paw.svg"
  22124. }
  22125. },
  22126. pawToering: {
  22127. height: math.unit(1.72, "feet"),
  22128. name: "Paw (Toering)",
  22129. image: {
  22130. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22131. }
  22132. },
  22133. toering: {
  22134. height: math.unit(2.9, "inches"),
  22135. name: "Toering",
  22136. image: {
  22137. source: "./media/characters/poojawa-vynar/toering.svg"
  22138. }
  22139. },
  22140. shaft: {
  22141. height: math.unit(0.625, "feet"),
  22142. name: "Shaft",
  22143. image: {
  22144. source: "./media/characters/poojawa-vynar/shaft.svg"
  22145. }
  22146. },
  22147. spade: {
  22148. height: math.unit(0.42, "feet"),
  22149. name: "Spade",
  22150. image: {
  22151. source: "./media/characters/poojawa-vynar/spade.svg"
  22152. }
  22153. },
  22154. },
  22155. [
  22156. {
  22157. name: "Shortstack",
  22158. height: math.unit(4, "feet")
  22159. },
  22160. {
  22161. name: "Normal",
  22162. height: math.unit(5 + 11 / 12, "feet"),
  22163. default: true
  22164. },
  22165. {
  22166. name: "Tauric",
  22167. height: math.unit(4, "meters")
  22168. },
  22169. ]
  22170. ))
  22171. characterMakers.push(() => makeCharacter(
  22172. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22173. {
  22174. front: {
  22175. height: math.unit(293, "meters"),
  22176. weight: math.unit(70400, "tons"),
  22177. name: "Front",
  22178. image: {
  22179. source: "./media/characters/violette/front.svg",
  22180. extra: 1227 / 1180,
  22181. bottom: 0.005
  22182. }
  22183. },
  22184. back: {
  22185. height: math.unit(293, "meters"),
  22186. weight: math.unit(70400, "tons"),
  22187. name: "Back",
  22188. image: {
  22189. source: "./media/characters/violette/back.svg",
  22190. extra: 1227 / 1180,
  22191. bottom: 0.005
  22192. }
  22193. },
  22194. },
  22195. [
  22196. {
  22197. name: "Macro",
  22198. height: math.unit(293, "meters"),
  22199. default: true
  22200. },
  22201. ]
  22202. ))
  22203. characterMakers.push(() => makeCharacter(
  22204. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22205. {
  22206. front: {
  22207. height: math.unit(1050, "feet"),
  22208. weight: math.unit(200000, "tons"),
  22209. name: "Front",
  22210. image: {
  22211. source: "./media/characters/alessandra/front.svg",
  22212. extra: 960 / 912,
  22213. bottom: 0.06
  22214. }
  22215. },
  22216. },
  22217. [
  22218. {
  22219. name: "Macro",
  22220. height: math.unit(1050, "feet")
  22221. },
  22222. {
  22223. name: "Macro+",
  22224. height: math.unit(900, "meters"),
  22225. default: true
  22226. },
  22227. ]
  22228. ))
  22229. characterMakers.push(() => makeCharacter(
  22230. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22231. {
  22232. front: {
  22233. height: math.unit(5, "feet"),
  22234. weight: math.unit(187, "lb"),
  22235. name: "Front",
  22236. image: {
  22237. source: "./media/characters/person/front.svg",
  22238. extra: 3087 / 2945,
  22239. bottom: 91 / 3181
  22240. }
  22241. },
  22242. },
  22243. [
  22244. {
  22245. name: "Micro",
  22246. height: math.unit(3, "inches")
  22247. },
  22248. {
  22249. name: "Normal",
  22250. height: math.unit(5, "feet"),
  22251. default: true
  22252. },
  22253. {
  22254. name: "Macro",
  22255. height: math.unit(90, "feet")
  22256. },
  22257. {
  22258. name: "Max Size",
  22259. height: math.unit(280, "feet")
  22260. },
  22261. ]
  22262. ))
  22263. characterMakers.push(() => makeCharacter(
  22264. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22265. {
  22266. front: {
  22267. height: math.unit(4.5, "meters"),
  22268. weight: math.unit(3200, "lb"),
  22269. name: "Front",
  22270. image: {
  22271. source: "./media/characters/ty/front.svg",
  22272. extra: 1038 / 960,
  22273. bottom: 31.156 / 1068
  22274. }
  22275. },
  22276. back: {
  22277. height: math.unit(4.5, "meters"),
  22278. weight: math.unit(3200, "lb"),
  22279. name: "Back",
  22280. image: {
  22281. source: "./media/characters/ty/back.svg",
  22282. extra: 1044 / 966,
  22283. bottom: 7.48 / 1049
  22284. }
  22285. },
  22286. },
  22287. [
  22288. {
  22289. name: "Normal",
  22290. height: math.unit(4.5, "meters"),
  22291. default: true
  22292. },
  22293. ]
  22294. ))
  22295. characterMakers.push(() => makeCharacter(
  22296. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22297. {
  22298. front: {
  22299. height: math.unit(5 + 4 / 12, "feet"),
  22300. weight: math.unit(115, "lb"),
  22301. name: "Front",
  22302. image: {
  22303. source: "./media/characters/rocky/front.svg",
  22304. extra: 1012 / 975,
  22305. bottom: 54 / 1066
  22306. }
  22307. },
  22308. },
  22309. [
  22310. {
  22311. name: "Normal",
  22312. height: math.unit(5 + 4 / 12, "feet"),
  22313. default: true
  22314. },
  22315. ]
  22316. ))
  22317. characterMakers.push(() => makeCharacter(
  22318. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22319. {
  22320. upright: {
  22321. height: math.unit(6, "meters"),
  22322. weight: math.unit(4000, "kg"),
  22323. name: "Upright",
  22324. image: {
  22325. source: "./media/characters/ruin/upright.svg",
  22326. extra: 668 / 661,
  22327. bottom: 42 / 799.8396
  22328. }
  22329. },
  22330. },
  22331. [
  22332. {
  22333. name: "Normal",
  22334. height: math.unit(6, "meters"),
  22335. default: true
  22336. },
  22337. ]
  22338. ))
  22339. characterMakers.push(() => makeCharacter(
  22340. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22341. {
  22342. front: {
  22343. height: math.unit(5, "feet"),
  22344. weight: math.unit(106, "lb"),
  22345. name: "Front",
  22346. image: {
  22347. source: "./media/characters/robin/front.svg",
  22348. extra: 862 / 799,
  22349. bottom: 42.4 / 914.8856
  22350. }
  22351. },
  22352. },
  22353. [
  22354. {
  22355. name: "Normal",
  22356. height: math.unit(5, "feet"),
  22357. default: true
  22358. },
  22359. ]
  22360. ))
  22361. characterMakers.push(() => makeCharacter(
  22362. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22363. {
  22364. side: {
  22365. height: math.unit(3, "feet"),
  22366. weight: math.unit(225, "lb"),
  22367. name: "Side",
  22368. image: {
  22369. source: "./media/characters/saian/side.svg",
  22370. extra: 566 / 356,
  22371. bottom: 79.7 / 643
  22372. }
  22373. },
  22374. maw: {
  22375. height: math.unit(2.85, "feet"),
  22376. name: "Maw",
  22377. image: {
  22378. source: "./media/characters/saian/maw.svg"
  22379. }
  22380. },
  22381. },
  22382. [
  22383. {
  22384. name: "Normal",
  22385. height: math.unit(3, "feet"),
  22386. default: true
  22387. },
  22388. ]
  22389. ))
  22390. characterMakers.push(() => makeCharacter(
  22391. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22392. {
  22393. side: {
  22394. height: math.unit(8, "feet"),
  22395. weight: math.unit(300, "lb"),
  22396. name: "Side",
  22397. image: {
  22398. source: "./media/characters/equus-silvermane/side.svg",
  22399. extra: 2176 / 2050,
  22400. bottom: 65.7 / 2245
  22401. }
  22402. },
  22403. front: {
  22404. height: math.unit(8, "feet"),
  22405. weight: math.unit(300, "lb"),
  22406. name: "Front",
  22407. image: {
  22408. source: "./media/characters/equus-silvermane/front.svg",
  22409. extra: 4633 / 4400,
  22410. bottom: 71.3 / 4706.915
  22411. }
  22412. },
  22413. sideStepping: {
  22414. height: math.unit(8, "feet"),
  22415. weight: math.unit(300, "lb"),
  22416. name: "Side (Stepping)",
  22417. image: {
  22418. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22419. extra: 1968 / 1860,
  22420. bottom: 16.4 / 1989
  22421. }
  22422. },
  22423. },
  22424. [
  22425. {
  22426. name: "Normal",
  22427. height: math.unit(8, "feet")
  22428. },
  22429. {
  22430. name: "Minimacro",
  22431. height: math.unit(75, "feet"),
  22432. default: true
  22433. },
  22434. {
  22435. name: "Macro",
  22436. height: math.unit(150, "feet")
  22437. },
  22438. {
  22439. name: "Macro+",
  22440. height: math.unit(1000, "feet")
  22441. },
  22442. {
  22443. name: "Megamacro",
  22444. height: math.unit(1, "mile")
  22445. },
  22446. ]
  22447. ))
  22448. characterMakers.push(() => makeCharacter(
  22449. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22450. {
  22451. side: {
  22452. height: math.unit(20, "feet"),
  22453. weight: math.unit(30000, "kg"),
  22454. name: "Side",
  22455. image: {
  22456. source: "./media/characters/windar/side.svg",
  22457. extra: 1491 / 1248,
  22458. bottom: 82.56 / 1568
  22459. }
  22460. },
  22461. },
  22462. [
  22463. {
  22464. name: "Normal",
  22465. height: math.unit(20, "feet"),
  22466. default: true
  22467. },
  22468. ]
  22469. ))
  22470. characterMakers.push(() => makeCharacter(
  22471. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22472. {
  22473. side: {
  22474. height: math.unit(15.66, "feet"),
  22475. weight: math.unit(150, "lb"),
  22476. name: "Side",
  22477. image: {
  22478. source: "./media/characters/melody/side.svg",
  22479. extra: 1097 / 944,
  22480. bottom: 11.8 / 1109
  22481. }
  22482. },
  22483. sideOutfit: {
  22484. height: math.unit(15.66, "feet"),
  22485. weight: math.unit(150, "lb"),
  22486. name: "Side (Outfit)",
  22487. image: {
  22488. source: "./media/characters/melody/side-outfit.svg",
  22489. extra: 1097 / 944,
  22490. bottom: 11.8 / 1109
  22491. }
  22492. },
  22493. },
  22494. [
  22495. {
  22496. name: "Normal",
  22497. height: math.unit(15.66, "feet"),
  22498. default: true
  22499. },
  22500. ]
  22501. ))
  22502. characterMakers.push(() => makeCharacter(
  22503. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22504. {
  22505. front: {
  22506. height: math.unit(8, "feet"),
  22507. weight: math.unit(325, "lb"),
  22508. name: "Front",
  22509. image: {
  22510. source: "./media/characters/windera/front.svg",
  22511. extra: 3180 / 2845,
  22512. bottom: 178 / 3365
  22513. }
  22514. },
  22515. },
  22516. [
  22517. {
  22518. name: "Normal",
  22519. height: math.unit(8, "feet"),
  22520. default: true
  22521. },
  22522. ]
  22523. ))
  22524. characterMakers.push(() => makeCharacter(
  22525. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22526. {
  22527. front: {
  22528. height: math.unit(28.75, "feet"),
  22529. weight: math.unit(2000, "kg"),
  22530. name: "Front",
  22531. image: {
  22532. source: "./media/characters/sonear/front.svg",
  22533. extra: 1041.1 / 964.9,
  22534. bottom: 53.7 / 1096.6
  22535. }
  22536. },
  22537. },
  22538. [
  22539. {
  22540. name: "Normal",
  22541. height: math.unit(28.75, "feet"),
  22542. default: true
  22543. },
  22544. ]
  22545. ))
  22546. characterMakers.push(() => makeCharacter(
  22547. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22548. {
  22549. side: {
  22550. height: math.unit(25.5, "feet"),
  22551. weight: math.unit(23000, "kg"),
  22552. name: "Side",
  22553. image: {
  22554. source: "./media/characters/kanara/side.svg"
  22555. }
  22556. },
  22557. },
  22558. [
  22559. {
  22560. name: "Normal",
  22561. height: math.unit(25.5, "feet"),
  22562. default: true
  22563. },
  22564. ]
  22565. ))
  22566. characterMakers.push(() => makeCharacter(
  22567. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22568. {
  22569. side: {
  22570. height: math.unit(10, "feet"),
  22571. weight: math.unit(1000, "kg"),
  22572. name: "Side",
  22573. image: {
  22574. source: "./media/characters/ereus/side.svg",
  22575. extra: 1157 / 959,
  22576. bottom: 153 / 1312.5
  22577. }
  22578. },
  22579. },
  22580. [
  22581. {
  22582. name: "Normal",
  22583. height: math.unit(10, "feet"),
  22584. default: true
  22585. },
  22586. ]
  22587. ))
  22588. characterMakers.push(() => makeCharacter(
  22589. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22590. {
  22591. side: {
  22592. height: math.unit(4.5, "feet"),
  22593. weight: math.unit(500, "lb"),
  22594. name: "Side",
  22595. image: {
  22596. source: "./media/characters/e-ter/side.svg",
  22597. extra: 1550 / 1248,
  22598. bottom: 146 / 1694
  22599. }
  22600. },
  22601. },
  22602. [
  22603. {
  22604. name: "Normal",
  22605. height: math.unit(4.5, "feet"),
  22606. default: true
  22607. },
  22608. ]
  22609. ))
  22610. characterMakers.push(() => makeCharacter(
  22611. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22612. {
  22613. side: {
  22614. height: math.unit(9.7, "feet"),
  22615. weight: math.unit(4000, "kg"),
  22616. name: "Side",
  22617. image: {
  22618. source: "./media/characters/yamie/side.svg"
  22619. }
  22620. },
  22621. },
  22622. [
  22623. {
  22624. name: "Normal",
  22625. height: math.unit(9.7, "feet"),
  22626. default: true
  22627. },
  22628. ]
  22629. ))
  22630. characterMakers.push(() => makeCharacter(
  22631. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22632. {
  22633. front: {
  22634. height: math.unit(50, "feet"),
  22635. weight: math.unit(50000, "kg"),
  22636. name: "Front",
  22637. image: {
  22638. source: "./media/characters/anders/front.svg",
  22639. extra: 570 / 539,
  22640. bottom: 14.7 / 586.7
  22641. }
  22642. },
  22643. },
  22644. [
  22645. {
  22646. name: "Large",
  22647. height: math.unit(50, "feet")
  22648. },
  22649. {
  22650. name: "Macro",
  22651. height: math.unit(2000, "feet"),
  22652. default: true
  22653. },
  22654. {
  22655. name: "Megamacro",
  22656. height: math.unit(12, "miles")
  22657. },
  22658. ]
  22659. ))
  22660. characterMakers.push(() => makeCharacter(
  22661. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22662. {
  22663. front: {
  22664. height: math.unit(7 + 2 / 12, "feet"),
  22665. weight: math.unit(300, "lb"),
  22666. name: "Front",
  22667. image: {
  22668. source: "./media/characters/reban/front.svg",
  22669. extra: 1287/1212,
  22670. bottom: 148/1435
  22671. }
  22672. },
  22673. head: {
  22674. height: math.unit(1.95, "feet"),
  22675. name: "Head",
  22676. image: {
  22677. source: "./media/characters/reban/head.svg"
  22678. }
  22679. },
  22680. maw: {
  22681. height: math.unit(0.95, "feet"),
  22682. name: "Maw",
  22683. image: {
  22684. source: "./media/characters/reban/maw.svg"
  22685. }
  22686. },
  22687. foot: {
  22688. height: math.unit(1.65, "feet"),
  22689. name: "Foot",
  22690. image: {
  22691. source: "./media/characters/reban/foot.svg"
  22692. }
  22693. },
  22694. dick: {
  22695. height: math.unit(7 / 5, "feet"),
  22696. name: "Dick",
  22697. image: {
  22698. source: "./media/characters/reban/dick.svg"
  22699. }
  22700. },
  22701. },
  22702. [
  22703. {
  22704. name: "Natural Height",
  22705. height: math.unit(7 + 2 / 12, "feet")
  22706. },
  22707. {
  22708. name: "Macro",
  22709. height: math.unit(500, "feet"),
  22710. default: true
  22711. },
  22712. {
  22713. name: "Canon Height",
  22714. height: math.unit(50, "AU")
  22715. },
  22716. ]
  22717. ))
  22718. characterMakers.push(() => makeCharacter(
  22719. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22720. {
  22721. front: {
  22722. height: math.unit(6, "feet"),
  22723. weight: math.unit(150, "lb"),
  22724. name: "Front",
  22725. image: {
  22726. source: "./media/characters/terrance-keayes/front.svg",
  22727. extra: 1.005,
  22728. bottom: 151 / 1615
  22729. }
  22730. },
  22731. side: {
  22732. height: math.unit(6, "feet"),
  22733. weight: math.unit(150, "lb"),
  22734. name: "Side",
  22735. image: {
  22736. source: "./media/characters/terrance-keayes/side.svg",
  22737. extra: 1.005,
  22738. bottom: 129.4 / 1544
  22739. }
  22740. },
  22741. back: {
  22742. height: math.unit(6, "feet"),
  22743. weight: math.unit(150, "lb"),
  22744. name: "Back",
  22745. image: {
  22746. source: "./media/characters/terrance-keayes/back.svg",
  22747. extra: 1.005,
  22748. bottom: 58.4 / 1557.3
  22749. }
  22750. },
  22751. dick: {
  22752. height: math.unit(6 * 0.208, "feet"),
  22753. name: "Dick",
  22754. image: {
  22755. source: "./media/characters/terrance-keayes/dick.svg"
  22756. }
  22757. },
  22758. },
  22759. [
  22760. {
  22761. name: "Canon Height",
  22762. height: math.unit(35, "miles"),
  22763. default: true
  22764. },
  22765. ]
  22766. ))
  22767. characterMakers.push(() => makeCharacter(
  22768. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22769. {
  22770. front: {
  22771. height: math.unit(6, "feet"),
  22772. weight: math.unit(150, "lb"),
  22773. name: "Front",
  22774. image: {
  22775. source: "./media/characters/ofelia/front.svg",
  22776. extra: 1130/1117,
  22777. bottom: 91/1221
  22778. }
  22779. },
  22780. back: {
  22781. height: math.unit(6, "feet"),
  22782. weight: math.unit(150, "lb"),
  22783. name: "Back",
  22784. image: {
  22785. source: "./media/characters/ofelia/back.svg",
  22786. extra: 1172/1159,
  22787. bottom: 28/1200
  22788. }
  22789. },
  22790. maw: {
  22791. height: math.unit(1, "feet"),
  22792. name: "Maw",
  22793. image: {
  22794. source: "./media/characters/ofelia/maw.svg"
  22795. }
  22796. },
  22797. foot: {
  22798. height: math.unit(1.949, "feet"),
  22799. name: "Foot",
  22800. image: {
  22801. source: "./media/characters/ofelia/foot.svg"
  22802. }
  22803. },
  22804. },
  22805. [
  22806. {
  22807. name: "Canon Height",
  22808. height: math.unit(2000, "miles"),
  22809. default: true
  22810. },
  22811. ]
  22812. ))
  22813. characterMakers.push(() => makeCharacter(
  22814. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22815. {
  22816. front: {
  22817. height: math.unit(6, "feet"),
  22818. weight: math.unit(150, "lb"),
  22819. name: "Front",
  22820. image: {
  22821. source: "./media/characters/samuel/front.svg",
  22822. extra: 265 / 258,
  22823. bottom: 2 / 266.1566
  22824. }
  22825. },
  22826. },
  22827. [
  22828. {
  22829. name: "Macro",
  22830. height: math.unit(100, "feet"),
  22831. default: true
  22832. },
  22833. {
  22834. name: "Full Size",
  22835. height: math.unit(1000, "miles")
  22836. },
  22837. ]
  22838. ))
  22839. characterMakers.push(() => makeCharacter(
  22840. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22841. {
  22842. front: {
  22843. height: math.unit(6, "feet"),
  22844. weight: math.unit(300, "lb"),
  22845. name: "Front",
  22846. image: {
  22847. source: "./media/characters/beishir-kiel/front.svg",
  22848. extra: 569 / 547,
  22849. bottom: 41.9 / 609
  22850. }
  22851. },
  22852. maw: {
  22853. height: math.unit(6 * 0.202, "feet"),
  22854. name: "Maw",
  22855. image: {
  22856. source: "./media/characters/beishir-kiel/maw.svg"
  22857. }
  22858. },
  22859. },
  22860. [
  22861. {
  22862. name: "Macro",
  22863. height: math.unit(300, "feet"),
  22864. default: true
  22865. },
  22866. ]
  22867. ))
  22868. characterMakers.push(() => makeCharacter(
  22869. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22870. {
  22871. front: {
  22872. height: math.unit(5 + 7/12, "feet"),
  22873. weight: math.unit(120, "lb"),
  22874. name: "Front",
  22875. image: {
  22876. source: "./media/characters/logan-grey/front.svg",
  22877. extra: 1836/1738,
  22878. bottom: 108/1944
  22879. }
  22880. },
  22881. back: {
  22882. height: math.unit(5 + 7/12, "feet"),
  22883. weight: math.unit(120, "lb"),
  22884. name: "Back",
  22885. image: {
  22886. source: "./media/characters/logan-grey/back.svg",
  22887. extra: 1880/1794,
  22888. bottom: 24/1904
  22889. }
  22890. },
  22891. frontSfw: {
  22892. height: math.unit(5 + 7/12, "feet"),
  22893. weight: math.unit(120, "lb"),
  22894. name: "Front (SFW)",
  22895. image: {
  22896. source: "./media/characters/logan-grey/front-sfw.svg",
  22897. extra: 1836/1738,
  22898. bottom: 108/1944
  22899. }
  22900. },
  22901. backSfw: {
  22902. height: math.unit(5 + 7/12, "feet"),
  22903. weight: math.unit(120, "lb"),
  22904. name: "Back (SFW)",
  22905. image: {
  22906. source: "./media/characters/logan-grey/back-sfw.svg",
  22907. extra: 1880/1794,
  22908. bottom: 24/1904
  22909. }
  22910. },
  22911. hands: {
  22912. height: math.unit(0.84, "feet"),
  22913. name: "Hands",
  22914. image: {
  22915. source: "./media/characters/logan-grey/hands.svg"
  22916. }
  22917. },
  22918. paws: {
  22919. height: math.unit(0.72, "feet"),
  22920. name: "Paws",
  22921. image: {
  22922. source: "./media/characters/logan-grey/paws.svg"
  22923. }
  22924. },
  22925. cock: {
  22926. height: math.unit(1.45, "feet"),
  22927. name: "Cock",
  22928. image: {
  22929. source: "./media/characters/logan-grey/cock.svg"
  22930. }
  22931. },
  22932. cockAlt: {
  22933. height: math.unit(1.437, "feet"),
  22934. name: "Cock (alt)",
  22935. image: {
  22936. source: "./media/characters/logan-grey/cock-alt.svg"
  22937. }
  22938. },
  22939. },
  22940. [
  22941. {
  22942. name: "Normal",
  22943. height: math.unit(5 + 8 / 12, "feet")
  22944. },
  22945. {
  22946. name: "The 500 Foot Femboy",
  22947. height: math.unit(500, "feet"),
  22948. default: true
  22949. },
  22950. {
  22951. name: "Megmacro",
  22952. height: math.unit(20, "miles")
  22953. },
  22954. ]
  22955. ))
  22956. characterMakers.push(() => makeCharacter(
  22957. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22958. {
  22959. front: {
  22960. height: math.unit(8 + 2 / 12, "feet"),
  22961. weight: math.unit(275, "lb"),
  22962. name: "Front",
  22963. image: {
  22964. source: "./media/characters/draganta/front.svg",
  22965. extra: 1177 / 1135,
  22966. bottom: 33.46 / 1212.1
  22967. }
  22968. },
  22969. },
  22970. [
  22971. {
  22972. name: "Normal",
  22973. height: math.unit(8 + 6 / 12, "feet"),
  22974. default: true
  22975. },
  22976. {
  22977. name: "Macro",
  22978. height: math.unit(150, "feet")
  22979. },
  22980. {
  22981. name: "Megamacro",
  22982. height: math.unit(1000, "miles")
  22983. },
  22984. ]
  22985. ))
  22986. characterMakers.push(() => makeCharacter(
  22987. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22988. {
  22989. front: {
  22990. height: math.unit(1.72, "m"),
  22991. weight: math.unit(80, "lb"),
  22992. name: "Front",
  22993. image: {
  22994. source: "./media/characters/voski/front.svg",
  22995. extra: 2076.22 / 2022.4,
  22996. bottom: 102.7 / 2177.3866
  22997. }
  22998. },
  22999. frontNsfw: {
  23000. height: math.unit(1.72, "m"),
  23001. weight: math.unit(80, "lb"),
  23002. name: "Front (NSFW)",
  23003. image: {
  23004. source: "./media/characters/voski/front-nsfw.svg",
  23005. extra: 2076.22 / 2022.4,
  23006. bottom: 102.7 / 2177.3866
  23007. }
  23008. },
  23009. back: {
  23010. height: math.unit(1.72, "m"),
  23011. weight: math.unit(80, "lb"),
  23012. name: "Back",
  23013. image: {
  23014. source: "./media/characters/voski/back.svg",
  23015. extra: 2104 / 2051,
  23016. bottom: 10.45 / 2113.63
  23017. }
  23018. },
  23019. },
  23020. [
  23021. {
  23022. name: "Normal",
  23023. height: math.unit(1.72, "m")
  23024. },
  23025. {
  23026. name: "Macro",
  23027. height: math.unit(55, "m"),
  23028. default: true
  23029. },
  23030. {
  23031. name: "Macro+",
  23032. height: math.unit(300, "m")
  23033. },
  23034. {
  23035. name: "Macro++",
  23036. height: math.unit(700, "m")
  23037. },
  23038. {
  23039. name: "Macro+++",
  23040. height: math.unit(4500, "m")
  23041. },
  23042. {
  23043. name: "Macro++++",
  23044. height: math.unit(45, "km")
  23045. },
  23046. {
  23047. name: "Macro+++++",
  23048. height: math.unit(1220, "km")
  23049. },
  23050. ]
  23051. ))
  23052. characterMakers.push(() => makeCharacter(
  23053. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23054. {
  23055. front: {
  23056. height: math.unit(2.3, "m"),
  23057. weight: math.unit(304, "kg"),
  23058. name: "Front",
  23059. image: {
  23060. source: "./media/characters/icowom-lee/front.svg",
  23061. extra: 985 / 955,
  23062. bottom: 25.4 / 1012
  23063. }
  23064. },
  23065. fronttentacles: {
  23066. height: math.unit(2.3, "m"),
  23067. weight: math.unit(304, "kg"),
  23068. name: "Front-tentacles",
  23069. image: {
  23070. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23071. extra: 985 / 955,
  23072. bottom: 25.4 / 1012
  23073. }
  23074. },
  23075. back: {
  23076. height: math.unit(2.3, "m"),
  23077. weight: math.unit(304, "kg"),
  23078. name: "Back",
  23079. image: {
  23080. source: "./media/characters/icowom-lee/back.svg",
  23081. extra: 975 / 954,
  23082. bottom: 9.5 / 985
  23083. }
  23084. },
  23085. backtentacles: {
  23086. height: math.unit(2.3, "m"),
  23087. weight: math.unit(304, "kg"),
  23088. name: "Back-tentacles",
  23089. image: {
  23090. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23091. extra: 975 / 954,
  23092. bottom: 9.5 / 985
  23093. }
  23094. },
  23095. frontDressed: {
  23096. height: math.unit(2.3, "m"),
  23097. weight: math.unit(304, "kg"),
  23098. name: "Front (Dressed)",
  23099. image: {
  23100. source: "./media/characters/icowom-lee/front-dressed.svg",
  23101. extra: 3076 / 2933,
  23102. bottom: 51.4 / 3125.1889
  23103. }
  23104. },
  23105. rump: {
  23106. height: math.unit(0.776, "meters"),
  23107. name: "Rump",
  23108. image: {
  23109. source: "./media/characters/icowom-lee/rump.svg"
  23110. }
  23111. },
  23112. genitals: {
  23113. height: math.unit(0.78, "meters"),
  23114. name: "Genitals",
  23115. image: {
  23116. source: "./media/characters/icowom-lee/genitals.svg"
  23117. }
  23118. },
  23119. },
  23120. [
  23121. {
  23122. name: "Normal",
  23123. height: math.unit(2.3, "meters"),
  23124. default: true
  23125. },
  23126. {
  23127. name: "Macro",
  23128. height: math.unit(94, "meters"),
  23129. default: true
  23130. },
  23131. ]
  23132. ))
  23133. characterMakers.push(() => makeCharacter(
  23134. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23135. {
  23136. front: {
  23137. height: math.unit(22, "meters"),
  23138. weight: math.unit(21000, "kg"),
  23139. name: "Front",
  23140. image: {
  23141. source: "./media/characters/shock-diamond/front.svg",
  23142. extra: 2204 / 2053,
  23143. bottom: 65 / 2239.47
  23144. }
  23145. },
  23146. frontNude: {
  23147. height: math.unit(22, "meters"),
  23148. weight: math.unit(21000, "kg"),
  23149. name: "Front (Nude)",
  23150. image: {
  23151. source: "./media/characters/shock-diamond/front-nude.svg",
  23152. extra: 2514 / 2285,
  23153. bottom: 13 / 2527.56
  23154. }
  23155. },
  23156. },
  23157. [
  23158. {
  23159. name: "Normal",
  23160. height: math.unit(3, "meters")
  23161. },
  23162. {
  23163. name: "Macro",
  23164. height: math.unit(22, "meters"),
  23165. default: true
  23166. },
  23167. ]
  23168. ))
  23169. characterMakers.push(() => makeCharacter(
  23170. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23171. {
  23172. front: {
  23173. height: math.unit(5 + 4 / 12, "feet"),
  23174. weight: math.unit(120, "lb"),
  23175. name: "Front",
  23176. image: {
  23177. source: "./media/characters/rory/front.svg",
  23178. extra: 1318/1241,
  23179. bottom: 42/1360
  23180. }
  23181. },
  23182. back: {
  23183. height: math.unit(5 + 4 / 12, "feet"),
  23184. weight: math.unit(120, "lb"),
  23185. name: "Back",
  23186. image: {
  23187. source: "./media/characters/rory/back.svg",
  23188. extra: 1318/1241,
  23189. bottom: 42/1360
  23190. }
  23191. },
  23192. butt: {
  23193. height: math.unit(1.74, "feet"),
  23194. name: "Butt",
  23195. image: {
  23196. source: "./media/characters/rory/butt.svg"
  23197. }
  23198. },
  23199. dick: {
  23200. height: math.unit(1.02, "feet"),
  23201. name: "Dick",
  23202. image: {
  23203. source: "./media/characters/rory/dick.svg"
  23204. }
  23205. },
  23206. paws: {
  23207. height: math.unit(1, "feet"),
  23208. name: "Paws",
  23209. image: {
  23210. source: "./media/characters/rory/paws.svg"
  23211. }
  23212. },
  23213. frontAlt: {
  23214. height: math.unit(5 + 4 / 12, "feet"),
  23215. weight: math.unit(120, "lb"),
  23216. name: "Front (Alt)",
  23217. image: {
  23218. source: "./media/characters/rory/front-alt.svg",
  23219. extra: 589 / 556,
  23220. bottom: 45.7 / 635.76
  23221. }
  23222. },
  23223. frontAltNude: {
  23224. height: math.unit(5 + 4 / 12, "feet"),
  23225. weight: math.unit(120, "lb"),
  23226. name: "Front (Alt, Nude)",
  23227. image: {
  23228. source: "./media/characters/rory/front-alt-nude.svg",
  23229. extra: 589 / 556,
  23230. bottom: 45.7 / 635.76
  23231. }
  23232. },
  23233. side: {
  23234. height: math.unit(5 + 4 / 12, "feet"),
  23235. weight: math.unit(120, "lb"),
  23236. name: "Side",
  23237. image: {
  23238. source: "./media/characters/rory/side.svg",
  23239. extra: 597 / 564,
  23240. bottom: 55 / 653
  23241. }
  23242. },
  23243. backAlt: {
  23244. height: math.unit(5 + 4 / 12, "feet"),
  23245. weight: math.unit(120, "lb"),
  23246. name: "Back (Alt)",
  23247. image: {
  23248. source: "./media/characters/rory/back-alt.svg",
  23249. extra: 620 / 585,
  23250. bottom: 8.86 / 630.43
  23251. }
  23252. },
  23253. dickAlt: {
  23254. height: math.unit(0.86, "feet"),
  23255. name: "Dick (Alt)",
  23256. image: {
  23257. source: "./media/characters/rory/dick-alt.svg"
  23258. }
  23259. },
  23260. },
  23261. [
  23262. {
  23263. name: "Normal",
  23264. height: math.unit(5 + 4 / 12, "feet"),
  23265. default: true
  23266. },
  23267. {
  23268. name: "Macro",
  23269. height: math.unit(100, "feet")
  23270. },
  23271. {
  23272. name: "Macro+",
  23273. height: math.unit(140, "feet")
  23274. },
  23275. {
  23276. name: "Macro++",
  23277. height: math.unit(300, "feet")
  23278. },
  23279. ]
  23280. ))
  23281. characterMakers.push(() => makeCharacter(
  23282. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23283. {
  23284. front: {
  23285. height: math.unit(5 + 9 / 12, "feet"),
  23286. weight: math.unit(190, "lb"),
  23287. name: "Front",
  23288. image: {
  23289. source: "./media/characters/sprisk/front.svg",
  23290. extra: 1225 / 1180,
  23291. bottom: 42.7 / 1266.4
  23292. }
  23293. },
  23294. frontNsfw: {
  23295. height: math.unit(5 + 9 / 12, "feet"),
  23296. weight: math.unit(190, "lb"),
  23297. name: "Front (NSFW)",
  23298. image: {
  23299. source: "./media/characters/sprisk/front-nsfw.svg",
  23300. extra: 1225 / 1180,
  23301. bottom: 42.7 / 1266.4
  23302. }
  23303. },
  23304. back: {
  23305. height: math.unit(5 + 9 / 12, "feet"),
  23306. weight: math.unit(190, "lb"),
  23307. name: "Back",
  23308. image: {
  23309. source: "./media/characters/sprisk/back.svg",
  23310. extra: 1247 / 1200,
  23311. bottom: 5.6 / 1253.04
  23312. }
  23313. },
  23314. },
  23315. [
  23316. {
  23317. name: "Tiny",
  23318. height: math.unit(2, "inches")
  23319. },
  23320. {
  23321. name: "Normal",
  23322. height: math.unit(5 + 9 / 12, "feet"),
  23323. default: true
  23324. },
  23325. {
  23326. name: "Mini Macro",
  23327. height: math.unit(18, "feet")
  23328. },
  23329. {
  23330. name: "Macro",
  23331. height: math.unit(100, "feet")
  23332. },
  23333. {
  23334. name: "MACRO",
  23335. height: math.unit(50, "miles")
  23336. },
  23337. {
  23338. name: "M A C R O",
  23339. height: math.unit(300, "miles")
  23340. },
  23341. ]
  23342. ))
  23343. characterMakers.push(() => makeCharacter(
  23344. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23345. {
  23346. side: {
  23347. height: math.unit(15.6, "meters"),
  23348. weight: math.unit(700000, "kg"),
  23349. name: "Side",
  23350. image: {
  23351. source: "./media/characters/bunsen/side.svg",
  23352. extra: 1644 / 358
  23353. }
  23354. },
  23355. foot: {
  23356. height: math.unit(1.611 * 1644 / 358, "meter"),
  23357. name: "Foot",
  23358. image: {
  23359. source: "./media/characters/bunsen/foot.svg"
  23360. }
  23361. },
  23362. },
  23363. [
  23364. {
  23365. name: "Small",
  23366. height: math.unit(10, "feet")
  23367. },
  23368. {
  23369. name: "Normal",
  23370. height: math.unit(15.6, "meters"),
  23371. default: true
  23372. },
  23373. ]
  23374. ))
  23375. characterMakers.push(() => makeCharacter(
  23376. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23377. {
  23378. front: {
  23379. height: math.unit(4 + 11 / 12, "feet"),
  23380. weight: math.unit(140, "lb"),
  23381. name: "Front",
  23382. image: {
  23383. source: "./media/characters/sesh/front.svg",
  23384. extra: 3420 / 3231,
  23385. bottom: 72 / 3949.5
  23386. }
  23387. },
  23388. },
  23389. [
  23390. {
  23391. name: "Normal",
  23392. height: math.unit(4 + 11 / 12, "feet")
  23393. },
  23394. {
  23395. name: "Grown",
  23396. height: math.unit(15, "feet"),
  23397. default: true
  23398. },
  23399. {
  23400. name: "Macro",
  23401. height: math.unit(1500, "feet")
  23402. },
  23403. {
  23404. name: "Megamacro",
  23405. height: math.unit(30, "miles")
  23406. },
  23407. {
  23408. name: "Continental",
  23409. height: math.unit(3000, "miles")
  23410. },
  23411. {
  23412. name: "Gravity Mass",
  23413. height: math.unit(300000, "miles")
  23414. },
  23415. {
  23416. name: "Planet Buster",
  23417. height: math.unit(30000000, "miles")
  23418. },
  23419. {
  23420. name: "Big",
  23421. height: math.unit(3000000000, "miles")
  23422. },
  23423. ]
  23424. ))
  23425. characterMakers.push(() => makeCharacter(
  23426. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23427. {
  23428. front: {
  23429. height: math.unit(9, "feet"),
  23430. weight: math.unit(350, "lb"),
  23431. name: "Front",
  23432. image: {
  23433. source: "./media/characters/pepper/front.svg",
  23434. extra: 1448 / 1312,
  23435. bottom: 9.4 / 1457.88
  23436. }
  23437. },
  23438. back: {
  23439. height: math.unit(9, "feet"),
  23440. weight: math.unit(350, "lb"),
  23441. name: "Back",
  23442. image: {
  23443. source: "./media/characters/pepper/back.svg",
  23444. extra: 1423 / 1300,
  23445. bottom: 4.6 / 1429
  23446. }
  23447. },
  23448. maw: {
  23449. height: math.unit(0.932, "feet"),
  23450. name: "Maw",
  23451. image: {
  23452. source: "./media/characters/pepper/maw.svg"
  23453. }
  23454. },
  23455. },
  23456. [
  23457. {
  23458. name: "Normal",
  23459. height: math.unit(9, "feet"),
  23460. default: true
  23461. },
  23462. ]
  23463. ))
  23464. characterMakers.push(() => makeCharacter(
  23465. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23466. {
  23467. front: {
  23468. height: math.unit(6, "feet"),
  23469. weight: math.unit(150, "lb"),
  23470. name: "Front",
  23471. image: {
  23472. source: "./media/characters/maelstrom/front.svg",
  23473. extra: 2100 / 1883,
  23474. bottom: 94 / 2196.7
  23475. }
  23476. },
  23477. },
  23478. [
  23479. {
  23480. name: "Less Kaiju",
  23481. height: math.unit(200, "feet")
  23482. },
  23483. {
  23484. name: "Kaiju",
  23485. height: math.unit(400, "feet"),
  23486. default: true
  23487. },
  23488. {
  23489. name: "Kaiju-er",
  23490. height: math.unit(600, "feet")
  23491. },
  23492. ]
  23493. ))
  23494. characterMakers.push(() => makeCharacter(
  23495. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23496. {
  23497. front: {
  23498. height: math.unit(6 + 5 / 12, "feet"),
  23499. weight: math.unit(180, "lb"),
  23500. name: "Front",
  23501. image: {
  23502. source: "./media/characters/lexir/front.svg",
  23503. extra: 180 / 172,
  23504. bottom: 12 / 192
  23505. }
  23506. },
  23507. back: {
  23508. height: math.unit(6 + 5 / 12, "feet"),
  23509. weight: math.unit(180, "lb"),
  23510. name: "Back",
  23511. image: {
  23512. source: "./media/characters/lexir/back.svg",
  23513. extra: 183.84 / 175.5,
  23514. bottom: 3.1 / 187
  23515. }
  23516. },
  23517. },
  23518. [
  23519. {
  23520. name: "Very Smal",
  23521. height: math.unit(1, "nm")
  23522. },
  23523. {
  23524. name: "Normal",
  23525. height: math.unit(6 + 5 / 12, "feet"),
  23526. default: true
  23527. },
  23528. {
  23529. name: "Macro",
  23530. height: math.unit(1, "mile")
  23531. },
  23532. {
  23533. name: "Megamacro",
  23534. height: math.unit(50, "miles")
  23535. },
  23536. ]
  23537. ))
  23538. characterMakers.push(() => makeCharacter(
  23539. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23540. {
  23541. front: {
  23542. height: math.unit(1.5, "meters"),
  23543. weight: math.unit(100, "lb"),
  23544. name: "Front",
  23545. image: {
  23546. source: "./media/characters/maksio/front.svg",
  23547. extra: 1549 / 1531,
  23548. bottom: 123.7 / 1674.5429
  23549. }
  23550. },
  23551. back: {
  23552. height: math.unit(1.5, "meters"),
  23553. weight: math.unit(100, "lb"),
  23554. name: "Back",
  23555. image: {
  23556. source: "./media/characters/maksio/back.svg",
  23557. extra: 1541 / 1509,
  23558. bottom: 97 / 1639
  23559. }
  23560. },
  23561. hand: {
  23562. height: math.unit(0.621, "feet"),
  23563. name: "Hand",
  23564. image: {
  23565. source: "./media/characters/maksio/hand.svg"
  23566. }
  23567. },
  23568. foot: {
  23569. height: math.unit(1.611, "feet"),
  23570. name: "Foot",
  23571. image: {
  23572. source: "./media/characters/maksio/foot.svg"
  23573. }
  23574. },
  23575. },
  23576. [
  23577. {
  23578. name: "Shrunken",
  23579. height: math.unit(10, "cm")
  23580. },
  23581. {
  23582. name: "Normal",
  23583. height: math.unit(150, "cm"),
  23584. default: true
  23585. },
  23586. ]
  23587. ))
  23588. characterMakers.push(() => makeCharacter(
  23589. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23590. {
  23591. front: {
  23592. height: math.unit(100, "feet"),
  23593. name: "Front",
  23594. image: {
  23595. source: "./media/characters/erza-bear/front.svg",
  23596. extra: 2449 / 2390,
  23597. bottom: 46 / 2494
  23598. }
  23599. },
  23600. back: {
  23601. height: math.unit(100, "feet"),
  23602. name: "Back",
  23603. image: {
  23604. source: "./media/characters/erza-bear/back.svg",
  23605. extra: 2489 / 2430,
  23606. bottom: 85.4 / 2480
  23607. }
  23608. },
  23609. tail: {
  23610. height: math.unit(42, "feet"),
  23611. name: "Tail",
  23612. image: {
  23613. source: "./media/characters/erza-bear/tail.svg"
  23614. }
  23615. },
  23616. tongue: {
  23617. height: math.unit(8, "feet"),
  23618. name: "Tongue",
  23619. image: {
  23620. source: "./media/characters/erza-bear/tongue.svg"
  23621. }
  23622. },
  23623. dick: {
  23624. height: math.unit(10.5, "feet"),
  23625. name: "Dick",
  23626. image: {
  23627. source: "./media/characters/erza-bear/dick.svg"
  23628. }
  23629. },
  23630. dickVertical: {
  23631. height: math.unit(16.9, "feet"),
  23632. name: "Dick (Vertical)",
  23633. image: {
  23634. source: "./media/characters/erza-bear/dick-vertical.svg"
  23635. }
  23636. },
  23637. },
  23638. [
  23639. {
  23640. name: "Macro",
  23641. height: math.unit(100, "feet"),
  23642. default: true
  23643. },
  23644. ]
  23645. ))
  23646. characterMakers.push(() => makeCharacter(
  23647. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23648. {
  23649. front: {
  23650. height: math.unit(172, "cm"),
  23651. weight: math.unit(73, "kg"),
  23652. name: "Front",
  23653. image: {
  23654. source: "./media/characters/violet-flor/front.svg",
  23655. extra: 1530 / 1442,
  23656. bottom: 61.9 / 1588.8
  23657. }
  23658. },
  23659. back: {
  23660. height: math.unit(180, "cm"),
  23661. weight: math.unit(73, "kg"),
  23662. name: "Back",
  23663. image: {
  23664. source: "./media/characters/violet-flor/back.svg",
  23665. extra: 1692 / 1630,
  23666. bottom: 20 / 1712
  23667. }
  23668. },
  23669. },
  23670. [
  23671. {
  23672. name: "Normal",
  23673. height: math.unit(172, "cm"),
  23674. default: true
  23675. },
  23676. ]
  23677. ))
  23678. characterMakers.push(() => makeCharacter(
  23679. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23680. {
  23681. front: {
  23682. height: math.unit(6, "feet"),
  23683. weight: math.unit(220, "lb"),
  23684. name: "Front",
  23685. image: {
  23686. source: "./media/characters/lynn-rhea/front.svg",
  23687. extra: 310 / 273
  23688. }
  23689. },
  23690. back: {
  23691. height: math.unit(6, "feet"),
  23692. weight: math.unit(220, "lb"),
  23693. name: "Back",
  23694. image: {
  23695. source: "./media/characters/lynn-rhea/back.svg",
  23696. extra: 310 / 273
  23697. }
  23698. },
  23699. dicks: {
  23700. height: math.unit(0.9, "feet"),
  23701. name: "Dicks",
  23702. image: {
  23703. source: "./media/characters/lynn-rhea/dicks.svg"
  23704. }
  23705. },
  23706. slit: {
  23707. height: math.unit(0.4, "feet"),
  23708. name: "Slit",
  23709. image: {
  23710. source: "./media/characters/lynn-rhea/slit.svg"
  23711. }
  23712. },
  23713. },
  23714. [
  23715. {
  23716. name: "Micro",
  23717. height: math.unit(1, "inch")
  23718. },
  23719. {
  23720. name: "Macro",
  23721. height: math.unit(60, "feet"),
  23722. default: true
  23723. },
  23724. {
  23725. name: "Megamacro",
  23726. height: math.unit(2, "miles")
  23727. },
  23728. {
  23729. name: "Gigamacro",
  23730. height: math.unit(3, "earths")
  23731. },
  23732. {
  23733. name: "Galactic",
  23734. height: math.unit(0.8, "galaxies")
  23735. },
  23736. ]
  23737. ))
  23738. characterMakers.push(() => makeCharacter(
  23739. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23740. {
  23741. front: {
  23742. height: math.unit(1600, "feet"),
  23743. weight: math.unit(85758785169, "kg"),
  23744. name: "Front",
  23745. image: {
  23746. source: "./media/characters/valathos/front.svg",
  23747. extra: 1451 / 1339
  23748. }
  23749. },
  23750. },
  23751. [
  23752. {
  23753. name: "Macro",
  23754. height: math.unit(1600, "feet"),
  23755. default: true
  23756. },
  23757. ]
  23758. ))
  23759. characterMakers.push(() => makeCharacter(
  23760. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23761. {
  23762. front: {
  23763. height: math.unit(7 + 5 / 12, "feet"),
  23764. weight: math.unit(300, "lb"),
  23765. name: "Front",
  23766. image: {
  23767. source: "./media/characters/azula/front.svg",
  23768. extra: 3208 / 2880,
  23769. bottom: 80.2 / 3277
  23770. }
  23771. },
  23772. back: {
  23773. height: math.unit(7 + 5 / 12, "feet"),
  23774. weight: math.unit(300, "lb"),
  23775. name: "Back",
  23776. image: {
  23777. source: "./media/characters/azula/back.svg",
  23778. extra: 3169 / 2822,
  23779. bottom: 150.6 / 3321
  23780. }
  23781. },
  23782. },
  23783. [
  23784. {
  23785. name: "Normal",
  23786. height: math.unit(7 + 5 / 12, "feet"),
  23787. default: true
  23788. },
  23789. {
  23790. name: "Big",
  23791. height: math.unit(20, "feet")
  23792. },
  23793. ]
  23794. ))
  23795. characterMakers.push(() => makeCharacter(
  23796. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23797. {
  23798. front: {
  23799. height: math.unit(5 + 1 / 12, "feet"),
  23800. weight: math.unit(110, "lb"),
  23801. name: "Front",
  23802. image: {
  23803. source: "./media/characters/rupert/front.svg",
  23804. extra: 1549 / 1495,
  23805. bottom: 54.2 / 1604.4
  23806. }
  23807. },
  23808. },
  23809. [
  23810. {
  23811. name: "Normal",
  23812. height: math.unit(5 + 1 / 12, "feet"),
  23813. default: true
  23814. },
  23815. ]
  23816. ))
  23817. characterMakers.push(() => makeCharacter(
  23818. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23819. {
  23820. front: {
  23821. height: math.unit(8 + 4 / 12, "feet"),
  23822. weight: math.unit(350, "lb"),
  23823. name: "Front",
  23824. image: {
  23825. source: "./media/characters/sheera-castellar/front.svg",
  23826. extra: 1957 / 1894,
  23827. bottom: 26.97 / 1975.017
  23828. }
  23829. },
  23830. side: {
  23831. height: math.unit(8 + 4 / 12, "feet"),
  23832. weight: math.unit(350, "lb"),
  23833. name: "Side",
  23834. image: {
  23835. source: "./media/characters/sheera-castellar/side.svg",
  23836. extra: 1957 / 1894
  23837. }
  23838. },
  23839. back: {
  23840. height: math.unit(8 + 4 / 12, "feet"),
  23841. weight: math.unit(350, "lb"),
  23842. name: "Back",
  23843. image: {
  23844. source: "./media/characters/sheera-castellar/back.svg",
  23845. extra: 1957 / 1894
  23846. }
  23847. },
  23848. angled: {
  23849. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23850. weight: math.unit(350, "lb"),
  23851. name: "Angled",
  23852. image: {
  23853. source: "./media/characters/sheera-castellar/angled.svg",
  23854. extra: 1807 / 1707,
  23855. bottom: 68 / 1875
  23856. }
  23857. },
  23858. genitals: {
  23859. height: math.unit(2.2, "feet"),
  23860. name: "Genitals",
  23861. image: {
  23862. source: "./media/characters/sheera-castellar/genitals.svg"
  23863. }
  23864. },
  23865. taur: {
  23866. height: math.unit(10 + 6/12, "feet"),
  23867. name: "Taur",
  23868. image: {
  23869. source: "./media/characters/sheera-castellar/taur.svg",
  23870. extra: 2017/1909,
  23871. bottom: 185/2202
  23872. }
  23873. },
  23874. },
  23875. [
  23876. {
  23877. name: "Normal",
  23878. height: math.unit(8 + 4 / 12, "feet")
  23879. },
  23880. {
  23881. name: "Macro",
  23882. height: math.unit(150, "feet"),
  23883. default: true
  23884. },
  23885. {
  23886. name: "Macro+",
  23887. height: math.unit(800, "feet")
  23888. },
  23889. ]
  23890. ))
  23891. characterMakers.push(() => makeCharacter(
  23892. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23893. {
  23894. front: {
  23895. height: math.unit(6, "feet"),
  23896. weight: math.unit(150, "lb"),
  23897. name: "Front",
  23898. image: {
  23899. source: "./media/characters/jaipur/front.svg",
  23900. extra: 3860 / 3731,
  23901. bottom: 287 / 4140
  23902. }
  23903. },
  23904. back: {
  23905. height: math.unit(6, "feet"),
  23906. weight: math.unit(150, "lb"),
  23907. name: "Back",
  23908. image: {
  23909. source: "./media/characters/jaipur/back.svg",
  23910. extra: 4060 / 3930,
  23911. bottom: 151 / 4200
  23912. }
  23913. },
  23914. },
  23915. [
  23916. {
  23917. name: "Normal",
  23918. height: math.unit(1.85, "meters"),
  23919. default: true
  23920. },
  23921. {
  23922. name: "Macro",
  23923. height: math.unit(150, "meters")
  23924. },
  23925. {
  23926. name: "Macro+",
  23927. height: math.unit(0.5, "miles")
  23928. },
  23929. {
  23930. name: "Macro++",
  23931. height: math.unit(2.5, "miles")
  23932. },
  23933. {
  23934. name: "Macro+++",
  23935. height: math.unit(12, "miles")
  23936. },
  23937. {
  23938. name: "Macro++++",
  23939. height: math.unit(120, "miles")
  23940. },
  23941. {
  23942. name: "Macro+++++",
  23943. height: math.unit(1200, "miles")
  23944. },
  23945. ]
  23946. ))
  23947. characterMakers.push(() => makeCharacter(
  23948. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23949. {
  23950. front: {
  23951. height: math.unit(6, "feet"),
  23952. weight: math.unit(150, "lb"),
  23953. name: "Front",
  23954. image: {
  23955. source: "./media/characters/sheila-wolf/front.svg",
  23956. extra: 1931 / 1808,
  23957. bottom: 29.5 / 1960
  23958. }
  23959. },
  23960. dick: {
  23961. height: math.unit(1.464, "feet"),
  23962. name: "Dick",
  23963. image: {
  23964. source: "./media/characters/sheila-wolf/dick.svg"
  23965. }
  23966. },
  23967. muzzle: {
  23968. height: math.unit(0.513, "feet"),
  23969. name: "Muzzle",
  23970. image: {
  23971. source: "./media/characters/sheila-wolf/muzzle.svg"
  23972. }
  23973. },
  23974. },
  23975. [
  23976. {
  23977. name: "Macro",
  23978. height: math.unit(70, "feet"),
  23979. default: true
  23980. },
  23981. ]
  23982. ))
  23983. characterMakers.push(() => makeCharacter(
  23984. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23985. {
  23986. front: {
  23987. height: math.unit(32, "meters"),
  23988. weight: math.unit(300000, "kg"),
  23989. name: "Front",
  23990. image: {
  23991. source: "./media/characters/almor/front.svg",
  23992. extra: 1408 / 1322,
  23993. bottom: 94.6 / 1506.5
  23994. }
  23995. },
  23996. },
  23997. [
  23998. {
  23999. name: "Macro",
  24000. height: math.unit(32, "meters"),
  24001. default: true
  24002. },
  24003. ]
  24004. ))
  24005. characterMakers.push(() => makeCharacter(
  24006. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24007. {
  24008. front: {
  24009. height: math.unit(7, "feet"),
  24010. weight: math.unit(200, "lb"),
  24011. name: "Front",
  24012. image: {
  24013. source: "./media/characters/silver/front.svg",
  24014. extra: 472.1 / 450.5,
  24015. bottom: 26.5 / 499.424
  24016. }
  24017. },
  24018. },
  24019. [
  24020. {
  24021. name: "Normal",
  24022. height: math.unit(7, "feet"),
  24023. default: true
  24024. },
  24025. {
  24026. name: "Macro",
  24027. height: math.unit(800, "feet")
  24028. },
  24029. {
  24030. name: "Megamacro",
  24031. height: math.unit(250, "miles")
  24032. },
  24033. ]
  24034. ))
  24035. characterMakers.push(() => makeCharacter(
  24036. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24037. {
  24038. front: {
  24039. height: math.unit(6, "feet"),
  24040. weight: math.unit(150, "lb"),
  24041. name: "Front",
  24042. image: {
  24043. source: "./media/characters/pliskin/front.svg",
  24044. extra: 1469 / 1359,
  24045. bottom: 70 / 1540
  24046. }
  24047. },
  24048. },
  24049. [
  24050. {
  24051. name: "Micro",
  24052. height: math.unit(3, "inches")
  24053. },
  24054. {
  24055. name: "Normal",
  24056. height: math.unit(5 + 11 / 12, "feet"),
  24057. default: true
  24058. },
  24059. {
  24060. name: "Macro",
  24061. height: math.unit(120, "feet")
  24062. },
  24063. ]
  24064. ))
  24065. characterMakers.push(() => makeCharacter(
  24066. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24067. {
  24068. front: {
  24069. height: math.unit(6, "feet"),
  24070. weight: math.unit(150, "lb"),
  24071. name: "Front",
  24072. image: {
  24073. source: "./media/characters/sammy/front.svg",
  24074. extra: 1193 / 1089,
  24075. bottom: 30.5 / 1226
  24076. }
  24077. },
  24078. },
  24079. [
  24080. {
  24081. name: "Macro",
  24082. height: math.unit(1700, "feet"),
  24083. default: true
  24084. },
  24085. {
  24086. name: "Examacro",
  24087. height: math.unit(2.5e9, "lightyears")
  24088. },
  24089. ]
  24090. ))
  24091. characterMakers.push(() => makeCharacter(
  24092. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24093. {
  24094. front: {
  24095. height: math.unit(21, "meters"),
  24096. weight: math.unit(12, "tonnes"),
  24097. name: "Front",
  24098. image: {
  24099. source: "./media/characters/kuru/front.svg",
  24100. extra: 4301 / 3785,
  24101. bottom: 371.3 / 4691
  24102. }
  24103. },
  24104. },
  24105. [
  24106. {
  24107. name: "Macro",
  24108. height: math.unit(21, "meters"),
  24109. default: true
  24110. },
  24111. ]
  24112. ))
  24113. characterMakers.push(() => makeCharacter(
  24114. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24115. {
  24116. front: {
  24117. height: math.unit(23, "meters"),
  24118. weight: math.unit(12.2, "tonnes"),
  24119. name: "Front",
  24120. image: {
  24121. source: "./media/characters/rakka/front.svg",
  24122. extra: 4670 / 4169,
  24123. bottom: 301 / 4968.7
  24124. }
  24125. },
  24126. },
  24127. [
  24128. {
  24129. name: "Macro",
  24130. height: math.unit(23, "meters"),
  24131. default: true
  24132. },
  24133. ]
  24134. ))
  24135. characterMakers.push(() => makeCharacter(
  24136. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24137. {
  24138. front: {
  24139. height: math.unit(6, "feet"),
  24140. weight: math.unit(150, "lb"),
  24141. name: "Front",
  24142. image: {
  24143. source: "./media/characters/rhys-feline/front.svg",
  24144. extra: 2488 / 2308,
  24145. bottom: 35.67 / 2519.19
  24146. }
  24147. },
  24148. },
  24149. [
  24150. {
  24151. name: "Really Small",
  24152. height: math.unit(1, "nm")
  24153. },
  24154. {
  24155. name: "Micro",
  24156. height: math.unit(4, "inches")
  24157. },
  24158. {
  24159. name: "Normal",
  24160. height: math.unit(4 + 10 / 12, "feet"),
  24161. default: true
  24162. },
  24163. {
  24164. name: "Macro",
  24165. height: math.unit(100, "feet")
  24166. },
  24167. {
  24168. name: "Megamacto",
  24169. height: math.unit(50, "miles")
  24170. },
  24171. ]
  24172. ))
  24173. characterMakers.push(() => makeCharacter(
  24174. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24175. {
  24176. side: {
  24177. height: math.unit(30, "feet"),
  24178. weight: math.unit(35000, "kg"),
  24179. name: "Side",
  24180. image: {
  24181. source: "./media/characters/alydar/side.svg",
  24182. extra: 234 / 222,
  24183. bottom: 6.5 / 241
  24184. }
  24185. },
  24186. front: {
  24187. height: math.unit(30, "feet"),
  24188. weight: math.unit(35000, "kg"),
  24189. name: "Front",
  24190. image: {
  24191. source: "./media/characters/alydar/front.svg",
  24192. extra: 223.37 / 210.2,
  24193. bottom: 22.3 / 246.76
  24194. }
  24195. },
  24196. top: {
  24197. height: math.unit(64.54, "feet"),
  24198. weight: math.unit(35000, "kg"),
  24199. name: "Top",
  24200. image: {
  24201. source: "./media/characters/alydar/top.svg"
  24202. }
  24203. },
  24204. anthro: {
  24205. height: math.unit(30, "feet"),
  24206. weight: math.unit(9000, "kg"),
  24207. name: "Anthro",
  24208. image: {
  24209. source: "./media/characters/alydar/anthro.svg",
  24210. extra: 432 / 421,
  24211. bottom: 7.18 / 440
  24212. }
  24213. },
  24214. maw: {
  24215. height: math.unit(11.693, "feet"),
  24216. name: "Maw",
  24217. image: {
  24218. source: "./media/characters/alydar/maw.svg"
  24219. }
  24220. },
  24221. head: {
  24222. height: math.unit(11.693, "feet"),
  24223. name: "Head",
  24224. image: {
  24225. source: "./media/characters/alydar/head.svg"
  24226. }
  24227. },
  24228. headAlt: {
  24229. height: math.unit(12.861, "feet"),
  24230. name: "Head (Alt)",
  24231. image: {
  24232. source: "./media/characters/alydar/head-alt.svg"
  24233. }
  24234. },
  24235. wing: {
  24236. height: math.unit(20.712, "feet"),
  24237. name: "Wing",
  24238. image: {
  24239. source: "./media/characters/alydar/wing.svg"
  24240. }
  24241. },
  24242. wingFeather: {
  24243. height: math.unit(9.662, "feet"),
  24244. name: "Wing Feather",
  24245. image: {
  24246. source: "./media/characters/alydar/wing-feather.svg"
  24247. }
  24248. },
  24249. countourFeather: {
  24250. height: math.unit(4.154, "feet"),
  24251. name: "Contour Feather",
  24252. image: {
  24253. source: "./media/characters/alydar/contour-feather.svg"
  24254. }
  24255. },
  24256. },
  24257. [
  24258. {
  24259. name: "Diplomatic",
  24260. height: math.unit(13, "feet"),
  24261. default: true
  24262. },
  24263. {
  24264. name: "Small",
  24265. height: math.unit(30, "feet")
  24266. },
  24267. {
  24268. name: "Normal",
  24269. height: math.unit(95, "feet"),
  24270. default: true
  24271. },
  24272. {
  24273. name: "Large",
  24274. height: math.unit(285, "feet")
  24275. },
  24276. {
  24277. name: "Incomprehensible",
  24278. height: math.unit(450, "megameters")
  24279. },
  24280. ]
  24281. ))
  24282. characterMakers.push(() => makeCharacter(
  24283. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24284. {
  24285. side: {
  24286. height: math.unit(11, "feet"),
  24287. weight: math.unit(1750, "kg"),
  24288. name: "Side",
  24289. image: {
  24290. source: "./media/characters/selicia/side.svg",
  24291. extra: 440 / 396,
  24292. bottom: 24.8 / 465.979
  24293. }
  24294. },
  24295. maw: {
  24296. height: math.unit(4.665, "feet"),
  24297. name: "Maw",
  24298. image: {
  24299. source: "./media/characters/selicia/maw.svg"
  24300. }
  24301. },
  24302. },
  24303. [
  24304. {
  24305. name: "Normal",
  24306. height: math.unit(11, "feet"),
  24307. default: true
  24308. },
  24309. ]
  24310. ))
  24311. characterMakers.push(() => makeCharacter(
  24312. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24313. {
  24314. side: {
  24315. height: math.unit(2 + 6 / 12, "feet"),
  24316. weight: math.unit(30, "lb"),
  24317. name: "Side",
  24318. image: {
  24319. source: "./media/characters/layla/side.svg",
  24320. extra: 244 / 188,
  24321. bottom: 18.2 / 262.1
  24322. }
  24323. },
  24324. back: {
  24325. height: math.unit(2 + 6 / 12, "feet"),
  24326. weight: math.unit(30, "lb"),
  24327. name: "Back",
  24328. image: {
  24329. source: "./media/characters/layla/back.svg",
  24330. extra: 308 / 241.5,
  24331. bottom: 8.9 / 316.8
  24332. }
  24333. },
  24334. cumming: {
  24335. height: math.unit(2 + 6 / 12, "feet"),
  24336. weight: math.unit(30, "lb"),
  24337. name: "Cumming",
  24338. image: {
  24339. source: "./media/characters/layla/cumming.svg",
  24340. extra: 342 / 279,
  24341. bottom: 595 / 938
  24342. }
  24343. },
  24344. dickFlaccid: {
  24345. height: math.unit(2.595, "feet"),
  24346. name: "Flaccid Genitals",
  24347. image: {
  24348. source: "./media/characters/layla/dick-flaccid.svg"
  24349. }
  24350. },
  24351. dickErect: {
  24352. height: math.unit(2.359, "feet"),
  24353. name: "Erect Genitals",
  24354. image: {
  24355. source: "./media/characters/layla/dick-erect.svg"
  24356. }
  24357. },
  24358. dragon: {
  24359. height: math.unit(40, "feet"),
  24360. name: "Dragon",
  24361. image: {
  24362. source: "./media/characters/layla/dragon.svg",
  24363. extra: 610/535,
  24364. bottom: 367/977
  24365. }
  24366. },
  24367. taur: {
  24368. height: math.unit(30, "feet"),
  24369. name: "Taur",
  24370. image: {
  24371. source: "./media/characters/layla/taur.svg",
  24372. extra: 1268/1199,
  24373. bottom: 112/1380
  24374. }
  24375. },
  24376. },
  24377. [
  24378. {
  24379. name: "Micro",
  24380. height: math.unit(1, "inch")
  24381. },
  24382. {
  24383. name: "Small",
  24384. height: math.unit(1, "foot")
  24385. },
  24386. {
  24387. name: "Normal",
  24388. height: math.unit(2 + 6 / 12, "feet"),
  24389. default: true
  24390. },
  24391. {
  24392. name: "Macro",
  24393. height: math.unit(200, "feet")
  24394. },
  24395. {
  24396. name: "Megamacro",
  24397. height: math.unit(1000, "miles")
  24398. },
  24399. {
  24400. name: "Planetary",
  24401. height: math.unit(8000, "miles")
  24402. },
  24403. {
  24404. name: "True Layla",
  24405. height: math.unit(200000 * 7, "multiverses")
  24406. },
  24407. ]
  24408. ))
  24409. characterMakers.push(() => makeCharacter(
  24410. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24411. {
  24412. back: {
  24413. height: math.unit(10.5, "feet"),
  24414. weight: math.unit(800, "lb"),
  24415. name: "Back",
  24416. image: {
  24417. source: "./media/characters/knox/back.svg",
  24418. extra: 1486 / 1089,
  24419. bottom: 107 / 1601.4
  24420. }
  24421. },
  24422. side: {
  24423. height: math.unit(10.5, "feet"),
  24424. weight: math.unit(800, "lb"),
  24425. name: "Side",
  24426. image: {
  24427. source: "./media/characters/knox/side.svg",
  24428. extra: 244 / 218,
  24429. bottom: 14 / 260
  24430. }
  24431. },
  24432. },
  24433. [
  24434. {
  24435. name: "Compact",
  24436. height: math.unit(10.5, "feet"),
  24437. default: true
  24438. },
  24439. {
  24440. name: "Dynamax",
  24441. height: math.unit(210, "feet")
  24442. },
  24443. {
  24444. name: "Full Macro",
  24445. height: math.unit(850, "feet")
  24446. },
  24447. ]
  24448. ))
  24449. characterMakers.push(() => makeCharacter(
  24450. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24451. {
  24452. front: {
  24453. height: math.unit(28, "feet"),
  24454. weight: math.unit(10500, "lb"),
  24455. name: "Front",
  24456. image: {
  24457. source: "./media/characters/kayda/front.svg",
  24458. extra: 1536 / 1428,
  24459. bottom: 68.7 / 1603
  24460. }
  24461. },
  24462. back: {
  24463. height: math.unit(28, "feet"),
  24464. weight: math.unit(10500, "lb"),
  24465. name: "Back",
  24466. image: {
  24467. source: "./media/characters/kayda/back.svg",
  24468. extra: 1557 / 1464,
  24469. bottom: 39.5 / 1597.49
  24470. }
  24471. },
  24472. dick: {
  24473. height: math.unit(3.858, "feet"),
  24474. name: "Dick",
  24475. image: {
  24476. source: "./media/characters/kayda/dick.svg"
  24477. }
  24478. },
  24479. },
  24480. [
  24481. {
  24482. name: "Macro",
  24483. height: math.unit(28, "feet"),
  24484. default: true
  24485. },
  24486. ]
  24487. ))
  24488. characterMakers.push(() => makeCharacter(
  24489. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24490. {
  24491. front: {
  24492. height: math.unit(10 + 11 / 12, "feet"),
  24493. weight: math.unit(1400, "lb"),
  24494. name: "Front",
  24495. image: {
  24496. source: "./media/characters/brian/front.svg",
  24497. extra: 737 / 692,
  24498. bottom: 55.4 / 785
  24499. }
  24500. },
  24501. },
  24502. [
  24503. {
  24504. name: "Normal",
  24505. height: math.unit(10 + 11 / 12, "feet"),
  24506. default: true
  24507. },
  24508. ]
  24509. ))
  24510. characterMakers.push(() => makeCharacter(
  24511. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24512. {
  24513. front: {
  24514. height: math.unit(5 + 8 / 12, "feet"),
  24515. weight: math.unit(140, "lb"),
  24516. name: "Front",
  24517. image: {
  24518. source: "./media/characters/khemri/front.svg",
  24519. extra: 4780 / 4059,
  24520. bottom: 80.1 / 4859.25
  24521. }
  24522. },
  24523. },
  24524. [
  24525. {
  24526. name: "Micro",
  24527. height: math.unit(6, "inches")
  24528. },
  24529. {
  24530. name: "Normal",
  24531. height: math.unit(5 + 8 / 12, "feet"),
  24532. default: true
  24533. },
  24534. ]
  24535. ))
  24536. characterMakers.push(() => makeCharacter(
  24537. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24538. {
  24539. front: {
  24540. height: math.unit(13, "feet"),
  24541. weight: math.unit(1700, "lb"),
  24542. name: "Front",
  24543. image: {
  24544. source: "./media/characters/felix-braveheart/front.svg",
  24545. extra: 1222 / 1157,
  24546. bottom: 53.2 / 1280
  24547. }
  24548. },
  24549. back: {
  24550. height: math.unit(13, "feet"),
  24551. weight: math.unit(1700, "lb"),
  24552. name: "Back",
  24553. image: {
  24554. source: "./media/characters/felix-braveheart/back.svg",
  24555. extra: 1277 / 1203,
  24556. bottom: 50.2 / 1327
  24557. }
  24558. },
  24559. feral: {
  24560. height: math.unit(6, "feet"),
  24561. weight: math.unit(400, "lb"),
  24562. name: "Feral",
  24563. image: {
  24564. source: "./media/characters/felix-braveheart/feral.svg",
  24565. extra: 682 / 625,
  24566. bottom: 6.9 / 688
  24567. }
  24568. },
  24569. },
  24570. [
  24571. {
  24572. name: "Normal",
  24573. height: math.unit(13, "feet"),
  24574. default: true
  24575. },
  24576. ]
  24577. ))
  24578. characterMakers.push(() => makeCharacter(
  24579. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24580. {
  24581. side: {
  24582. height: math.unit(5 + 11 / 12, "feet"),
  24583. weight: math.unit(1400, "lb"),
  24584. name: "Side",
  24585. image: {
  24586. source: "./media/characters/shadow-blade/side.svg",
  24587. extra: 1726 / 1267,
  24588. bottom: 58.4 / 1785
  24589. }
  24590. },
  24591. },
  24592. [
  24593. {
  24594. name: "Normal",
  24595. height: math.unit(5 + 11 / 12, "feet"),
  24596. default: true
  24597. },
  24598. ]
  24599. ))
  24600. characterMakers.push(() => makeCharacter(
  24601. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24602. {
  24603. front: {
  24604. height: math.unit(1 + 6 / 12, "feet"),
  24605. weight: math.unit(25, "lb"),
  24606. name: "Front",
  24607. image: {
  24608. source: "./media/characters/karla-halldor/front.svg",
  24609. extra: 1459 / 1383,
  24610. bottom: 12 / 1472
  24611. }
  24612. },
  24613. },
  24614. [
  24615. {
  24616. name: "Normal",
  24617. height: math.unit(1 + 6 / 12, "feet"),
  24618. default: true
  24619. },
  24620. ]
  24621. ))
  24622. characterMakers.push(() => makeCharacter(
  24623. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24624. {
  24625. front: {
  24626. height: math.unit(6 + 2 / 12, "feet"),
  24627. weight: math.unit(160, "lb"),
  24628. name: "Front",
  24629. image: {
  24630. source: "./media/characters/ariam/front.svg",
  24631. extra: 1073/976,
  24632. bottom: 52/1125
  24633. }
  24634. },
  24635. back: {
  24636. height: math.unit(6 + 2/12, "feet"),
  24637. weight: math.unit(160, "lb"),
  24638. name: "Back",
  24639. image: {
  24640. source: "./media/characters/ariam/back.svg",
  24641. extra: 1103/1023,
  24642. bottom: 9/1112
  24643. }
  24644. },
  24645. dressed: {
  24646. height: math.unit(6 + 2/12, "feet"),
  24647. weight: math.unit(160, "lb"),
  24648. name: "Dressed",
  24649. image: {
  24650. source: "./media/characters/ariam/dressed.svg",
  24651. extra: 1099/1009,
  24652. bottom: 25/1124
  24653. }
  24654. },
  24655. squatting: {
  24656. height: math.unit(4.1, "feet"),
  24657. weight: math.unit(160, "lb"),
  24658. name: "Squatting",
  24659. image: {
  24660. source: "./media/characters/ariam/squatting.svg",
  24661. extra: 2617 / 2112,
  24662. bottom: 61.2 / 2681,
  24663. }
  24664. },
  24665. },
  24666. [
  24667. {
  24668. name: "Normal",
  24669. height: math.unit(6 + 2 / 12, "feet"),
  24670. default: true
  24671. },
  24672. {
  24673. name: "Normal+",
  24674. height: math.unit(4, "meters")
  24675. },
  24676. {
  24677. name: "Macro",
  24678. height: math.unit(50, "meters")
  24679. },
  24680. {
  24681. name: "Macro+",
  24682. height: math.unit(100, "meters")
  24683. },
  24684. {
  24685. name: "Megamacro",
  24686. height: math.unit(20, "km")
  24687. },
  24688. {
  24689. name: "Caretaker",
  24690. height: math.unit(444, "megameters")
  24691. },
  24692. ]
  24693. ))
  24694. characterMakers.push(() => makeCharacter(
  24695. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24696. {
  24697. front: {
  24698. height: math.unit(1.67, "meters"),
  24699. weight: math.unit(140, "lb"),
  24700. name: "Front",
  24701. image: {
  24702. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24703. extra: 438 / 410,
  24704. bottom: 0.75 / 439
  24705. }
  24706. },
  24707. },
  24708. [
  24709. {
  24710. name: "Shrunken",
  24711. height: math.unit(7.6, "cm")
  24712. },
  24713. {
  24714. name: "Human Scale",
  24715. height: math.unit(1.67, "meters")
  24716. },
  24717. {
  24718. name: "Wolxi Scale",
  24719. height: math.unit(36.7, "meters"),
  24720. default: true
  24721. },
  24722. ]
  24723. ))
  24724. characterMakers.push(() => makeCharacter(
  24725. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24726. {
  24727. front: {
  24728. height: math.unit(1.73, "meters"),
  24729. weight: math.unit(240, "lb"),
  24730. name: "Front",
  24731. image: {
  24732. source: "./media/characters/izue-two-mothers/front.svg",
  24733. extra: 469 / 437,
  24734. bottom: 1.24 / 470.6
  24735. }
  24736. },
  24737. },
  24738. [
  24739. {
  24740. name: "Shrunken",
  24741. height: math.unit(7.86, "cm")
  24742. },
  24743. {
  24744. name: "Human Scale",
  24745. height: math.unit(1.73, "meters")
  24746. },
  24747. {
  24748. name: "Wolxi Scale",
  24749. height: math.unit(38, "meters"),
  24750. default: true
  24751. },
  24752. ]
  24753. ))
  24754. characterMakers.push(() => makeCharacter(
  24755. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24756. {
  24757. front: {
  24758. height: math.unit(1.55, "meters"),
  24759. weight: math.unit(120, "lb"),
  24760. name: "Front",
  24761. image: {
  24762. source: "./media/characters/teeku-love-shack/front.svg",
  24763. extra: 387 / 362,
  24764. bottom: 1.51 / 388
  24765. }
  24766. },
  24767. },
  24768. [
  24769. {
  24770. name: "Shrunken",
  24771. height: math.unit(7, "cm")
  24772. },
  24773. {
  24774. name: "Human Scale",
  24775. height: math.unit(1.55, "meters")
  24776. },
  24777. {
  24778. name: "Wolxi Scale",
  24779. height: math.unit(34.1, "meters"),
  24780. default: true
  24781. },
  24782. ]
  24783. ))
  24784. characterMakers.push(() => makeCharacter(
  24785. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24786. {
  24787. front: {
  24788. height: math.unit(1.83, "meters"),
  24789. weight: math.unit(135, "lb"),
  24790. name: "Front",
  24791. image: {
  24792. source: "./media/characters/dejma-the-red/front.svg",
  24793. extra: 480 / 458,
  24794. bottom: 1.8 / 482
  24795. }
  24796. },
  24797. },
  24798. [
  24799. {
  24800. name: "Shrunken",
  24801. height: math.unit(8.3, "cm")
  24802. },
  24803. {
  24804. name: "Human Scale",
  24805. height: math.unit(1.83, "meters")
  24806. },
  24807. {
  24808. name: "Wolxi Scale",
  24809. height: math.unit(40, "meters"),
  24810. default: true
  24811. },
  24812. ]
  24813. ))
  24814. characterMakers.push(() => makeCharacter(
  24815. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24816. {
  24817. front: {
  24818. height: math.unit(1.78, "meters"),
  24819. weight: math.unit(65, "kg"),
  24820. name: "Front",
  24821. image: {
  24822. source: "./media/characters/aki/front.svg",
  24823. extra: 452 / 415
  24824. }
  24825. },
  24826. frontNsfw: {
  24827. height: math.unit(1.78, "meters"),
  24828. weight: math.unit(65, "kg"),
  24829. name: "Front (NSFW)",
  24830. image: {
  24831. source: "./media/characters/aki/front-nsfw.svg",
  24832. extra: 452 / 415
  24833. }
  24834. },
  24835. back: {
  24836. height: math.unit(1.78, "meters"),
  24837. weight: math.unit(65, "kg"),
  24838. name: "Back",
  24839. image: {
  24840. source: "./media/characters/aki/back.svg",
  24841. extra: 452 / 415
  24842. }
  24843. },
  24844. rump: {
  24845. height: math.unit(2.05, "feet"),
  24846. name: "Rump",
  24847. image: {
  24848. source: "./media/characters/aki/rump.svg"
  24849. }
  24850. },
  24851. dick: {
  24852. height: math.unit(0.95, "feet"),
  24853. name: "Dick",
  24854. image: {
  24855. source: "./media/characters/aki/dick.svg"
  24856. }
  24857. },
  24858. },
  24859. [
  24860. {
  24861. name: "Micro",
  24862. height: math.unit(15, "cm")
  24863. },
  24864. {
  24865. name: "Normal",
  24866. height: math.unit(178, "cm"),
  24867. default: true
  24868. },
  24869. {
  24870. name: "Macro",
  24871. height: math.unit(214, "m")
  24872. },
  24873. {
  24874. name: "Macro+",
  24875. height: math.unit(534, "m")
  24876. },
  24877. ]
  24878. ))
  24879. characterMakers.push(() => makeCharacter(
  24880. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24881. {
  24882. front: {
  24883. height: math.unit(5 + 5 / 12, "feet"),
  24884. weight: math.unit(120, "lb"),
  24885. name: "Front",
  24886. image: {
  24887. source: "./media/characters/ari/front.svg",
  24888. extra: 714.5 / 682,
  24889. bottom: 8 / 722.5
  24890. }
  24891. },
  24892. },
  24893. [
  24894. {
  24895. name: "Normal",
  24896. height: math.unit(5 + 5 / 12, "feet")
  24897. },
  24898. {
  24899. name: "Macro",
  24900. height: math.unit(100, "feet"),
  24901. default: true
  24902. },
  24903. {
  24904. name: "Megamacro",
  24905. height: math.unit(100, "miles")
  24906. },
  24907. {
  24908. name: "Gigamacro",
  24909. height: math.unit(80000, "miles")
  24910. },
  24911. ]
  24912. ))
  24913. characterMakers.push(() => makeCharacter(
  24914. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24915. {
  24916. side: {
  24917. height: math.unit(9, "feet"),
  24918. weight: math.unit(400, "kg"),
  24919. name: "Side",
  24920. image: {
  24921. source: "./media/characters/bolt/side.svg",
  24922. extra: 1126 / 896,
  24923. bottom: 60 / 1187.3,
  24924. }
  24925. },
  24926. },
  24927. [
  24928. {
  24929. name: "Micro",
  24930. height: math.unit(5, "inches")
  24931. },
  24932. {
  24933. name: "Normal",
  24934. height: math.unit(9, "feet"),
  24935. default: true
  24936. },
  24937. {
  24938. name: "Macro",
  24939. height: math.unit(700, "feet")
  24940. },
  24941. {
  24942. name: "Max Size",
  24943. height: math.unit(1.52e22, "yottameters")
  24944. },
  24945. ]
  24946. ))
  24947. characterMakers.push(() => makeCharacter(
  24948. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24949. {
  24950. front: {
  24951. height: math.unit(4.3, "meters"),
  24952. weight: math.unit(3, "tons"),
  24953. name: "Front",
  24954. image: {
  24955. source: "./media/characters/draekon-sylviar/front.svg",
  24956. extra: 2072/1512,
  24957. bottom: 74/2146
  24958. }
  24959. },
  24960. back: {
  24961. height: math.unit(4.3, "meters"),
  24962. weight: math.unit(3, "tons"),
  24963. name: "Back",
  24964. image: {
  24965. source: "./media/characters/draekon-sylviar/back.svg",
  24966. extra: 1639/1483,
  24967. bottom: 41/1680
  24968. }
  24969. },
  24970. feral: {
  24971. height: math.unit(1.15, "meters"),
  24972. weight: math.unit(3, "tons"),
  24973. name: "Feral",
  24974. image: {
  24975. source: "./media/characters/draekon-sylviar/feral.svg",
  24976. extra: 1033/395,
  24977. bottom: 130/1163
  24978. }
  24979. },
  24980. maw: {
  24981. height: math.unit(1.3, "meters"),
  24982. name: "Maw",
  24983. image: {
  24984. source: "./media/characters/draekon-sylviar/maw.svg"
  24985. }
  24986. },
  24987. mawSeparated: {
  24988. height: math.unit(1.53, "meters"),
  24989. name: "Separated Maw",
  24990. image: {
  24991. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  24992. }
  24993. },
  24994. tail: {
  24995. height: math.unit(1.15, "meters"),
  24996. name: "Tail",
  24997. image: {
  24998. source: "./media/characters/draekon-sylviar/tail.svg"
  24999. }
  25000. },
  25001. tailDick: {
  25002. height: math.unit(1.15, "meters"),
  25003. name: "Tail (Dick)",
  25004. image: {
  25005. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25006. }
  25007. },
  25008. tailDickSeparated: {
  25009. height: math.unit(1.19, "meters"),
  25010. name: "Tail (Separated Dick)",
  25011. image: {
  25012. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25013. }
  25014. },
  25015. slit: {
  25016. height: math.unit(1, "meters"),
  25017. name: "Slit",
  25018. image: {
  25019. source: "./media/characters/draekon-sylviar/slit.svg"
  25020. }
  25021. },
  25022. dick: {
  25023. height: math.unit(1.15, "meters"),
  25024. name: "Dick",
  25025. image: {
  25026. source: "./media/characters/draekon-sylviar/dick.svg"
  25027. }
  25028. },
  25029. dickSeparated: {
  25030. height: math.unit(1.1, "meters"),
  25031. name: "Separated Dick",
  25032. image: {
  25033. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25034. }
  25035. },
  25036. sheath: {
  25037. height: math.unit(1.15, "meters"),
  25038. name: "Sheath",
  25039. image: {
  25040. source: "./media/characters/draekon-sylviar/sheath.svg"
  25041. }
  25042. },
  25043. },
  25044. [
  25045. {
  25046. name: "Small",
  25047. height: math.unit(4.53 / 2, "meters"),
  25048. default: true
  25049. },
  25050. {
  25051. name: "Normal",
  25052. height: math.unit(4.53, "meters"),
  25053. default: true
  25054. },
  25055. {
  25056. name: "Large",
  25057. height: math.unit(4.53 * 2, "meters"),
  25058. },
  25059. ]
  25060. ))
  25061. characterMakers.push(() => makeCharacter(
  25062. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25063. {
  25064. front: {
  25065. height: math.unit(6 + 2 / 12, "feet"),
  25066. weight: math.unit(180, "lb"),
  25067. name: "Front",
  25068. image: {
  25069. source: "./media/characters/brawler/front.svg",
  25070. extra: 3301 / 3027,
  25071. bottom: 138 / 3439
  25072. }
  25073. },
  25074. },
  25075. [
  25076. {
  25077. name: "Normal",
  25078. height: math.unit(6 + 2 / 12, "feet"),
  25079. default: true
  25080. },
  25081. ]
  25082. ))
  25083. characterMakers.push(() => makeCharacter(
  25084. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25085. {
  25086. front: {
  25087. height: math.unit(11, "feet"),
  25088. weight: math.unit(1000, "lb"),
  25089. name: "Front",
  25090. image: {
  25091. source: "./media/characters/alex/front.svg",
  25092. bottom: 44.5 / 620
  25093. }
  25094. },
  25095. },
  25096. [
  25097. {
  25098. name: "Micro",
  25099. height: math.unit(5, "inches")
  25100. },
  25101. {
  25102. name: "Normal",
  25103. height: math.unit(11, "feet"),
  25104. default: true
  25105. },
  25106. {
  25107. name: "Macro",
  25108. height: math.unit(9.5e9, "feet")
  25109. },
  25110. {
  25111. name: "Max Size",
  25112. height: math.unit(1.4e283, "yottameters")
  25113. },
  25114. ]
  25115. ))
  25116. characterMakers.push(() => makeCharacter(
  25117. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25118. {
  25119. female: {
  25120. height: math.unit(29.9, "m"),
  25121. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25122. name: "Female",
  25123. image: {
  25124. source: "./media/characters/zenari/female.svg",
  25125. extra: 3281.6 / 3217,
  25126. bottom: 72.2 / 3353
  25127. }
  25128. },
  25129. male: {
  25130. height: math.unit(27.7, "m"),
  25131. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25132. name: "Male",
  25133. image: {
  25134. source: "./media/characters/zenari/male.svg",
  25135. extra: 3008 / 2991,
  25136. bottom: 54.6 / 3069
  25137. }
  25138. },
  25139. },
  25140. [
  25141. {
  25142. name: "Macro",
  25143. height: math.unit(29.7, "meters"),
  25144. default: true
  25145. },
  25146. ]
  25147. ))
  25148. characterMakers.push(() => makeCharacter(
  25149. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25150. {
  25151. female: {
  25152. height: math.unit(23.8, "m"),
  25153. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25154. name: "Female",
  25155. image: {
  25156. source: "./media/characters/mactarian/female.svg",
  25157. extra: 2662 / 2569,
  25158. bottom: 73 / 2736
  25159. }
  25160. },
  25161. male: {
  25162. height: math.unit(23.8, "m"),
  25163. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25164. name: "Male",
  25165. image: {
  25166. source: "./media/characters/mactarian/male.svg",
  25167. extra: 2673 / 2600,
  25168. bottom: 76 / 2750
  25169. }
  25170. },
  25171. },
  25172. [
  25173. {
  25174. name: "Macro",
  25175. height: math.unit(23.8, "meters"),
  25176. default: true
  25177. },
  25178. ]
  25179. ))
  25180. characterMakers.push(() => makeCharacter(
  25181. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25182. {
  25183. female: {
  25184. height: math.unit(19.3, "m"),
  25185. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25186. name: "Female",
  25187. image: {
  25188. source: "./media/characters/umok/female.svg",
  25189. extra: 2186 / 2078,
  25190. bottom: 87 / 2277
  25191. }
  25192. },
  25193. male: {
  25194. height: math.unit(19.5, "m"),
  25195. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25196. name: "Male",
  25197. image: {
  25198. source: "./media/characters/umok/male.svg",
  25199. extra: 2233 / 2140,
  25200. bottom: 24.4 / 2258
  25201. }
  25202. },
  25203. },
  25204. [
  25205. {
  25206. name: "Macro",
  25207. height: math.unit(19.3, "meters"),
  25208. default: true
  25209. },
  25210. ]
  25211. ))
  25212. characterMakers.push(() => makeCharacter(
  25213. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25214. {
  25215. female: {
  25216. height: math.unit(26.15, "m"),
  25217. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25218. name: "Female",
  25219. image: {
  25220. source: "./media/characters/joraxian/female.svg",
  25221. extra: 2912 / 2824,
  25222. bottom: 36 / 2956
  25223. }
  25224. },
  25225. male: {
  25226. height: math.unit(25.4, "m"),
  25227. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25228. name: "Male",
  25229. image: {
  25230. source: "./media/characters/joraxian/male.svg",
  25231. extra: 2877 / 2721,
  25232. bottom: 82 / 2967
  25233. }
  25234. },
  25235. },
  25236. [
  25237. {
  25238. name: "Macro",
  25239. height: math.unit(26.15, "meters"),
  25240. default: true
  25241. },
  25242. ]
  25243. ))
  25244. characterMakers.push(() => makeCharacter(
  25245. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25246. {
  25247. female: {
  25248. height: math.unit(21.6, "m"),
  25249. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25250. name: "Female",
  25251. image: {
  25252. source: "./media/characters/sthara/female.svg",
  25253. extra: 2516 / 2347,
  25254. bottom: 21.5 / 2537
  25255. }
  25256. },
  25257. male: {
  25258. height: math.unit(24, "m"),
  25259. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25260. name: "Male",
  25261. image: {
  25262. source: "./media/characters/sthara/male.svg",
  25263. extra: 2732 / 2607,
  25264. bottom: 23 / 2732
  25265. }
  25266. },
  25267. },
  25268. [
  25269. {
  25270. name: "Macro",
  25271. height: math.unit(21.6, "meters"),
  25272. default: true
  25273. },
  25274. ]
  25275. ))
  25276. characterMakers.push(() => makeCharacter(
  25277. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25278. {
  25279. front: {
  25280. height: math.unit(6 + 4 / 12, "feet"),
  25281. weight: math.unit(175, "lb"),
  25282. name: "Front",
  25283. image: {
  25284. source: "./media/characters/luka-bryzant/front.svg",
  25285. extra: 311 / 289,
  25286. bottom: 4 / 315
  25287. }
  25288. },
  25289. back: {
  25290. height: math.unit(6 + 4 / 12, "feet"),
  25291. weight: math.unit(175, "lb"),
  25292. name: "Back",
  25293. image: {
  25294. source: "./media/characters/luka-bryzant/back.svg",
  25295. extra: 311 / 289,
  25296. bottom: 3.8 / 313.7
  25297. }
  25298. },
  25299. },
  25300. [
  25301. {
  25302. name: "Micro",
  25303. height: math.unit(10, "inches")
  25304. },
  25305. {
  25306. name: "Normal",
  25307. height: math.unit(6 + 4 / 12, "feet"),
  25308. default: true
  25309. },
  25310. {
  25311. name: "Large",
  25312. height: math.unit(12, "feet")
  25313. },
  25314. ]
  25315. ))
  25316. characterMakers.push(() => makeCharacter(
  25317. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25318. {
  25319. front: {
  25320. height: math.unit(5 + 7 / 12, "feet"),
  25321. weight: math.unit(185, "lb"),
  25322. name: "Front",
  25323. image: {
  25324. source: "./media/characters/aman-aquila/front.svg",
  25325. extra: 1013 / 976,
  25326. bottom: 45.6 / 1057
  25327. }
  25328. },
  25329. side: {
  25330. height: math.unit(5 + 7 / 12, "feet"),
  25331. weight: math.unit(185, "lb"),
  25332. name: "Side",
  25333. image: {
  25334. source: "./media/characters/aman-aquila/side.svg",
  25335. extra: 1054 / 1011,
  25336. bottom: 15 / 1070
  25337. }
  25338. },
  25339. back: {
  25340. height: math.unit(5 + 7 / 12, "feet"),
  25341. weight: math.unit(185, "lb"),
  25342. name: "Back",
  25343. image: {
  25344. source: "./media/characters/aman-aquila/back.svg",
  25345. extra: 1026 / 970,
  25346. bottom: 12 / 1039
  25347. }
  25348. },
  25349. head: {
  25350. height: math.unit(1.211, "feet"),
  25351. name: "Head",
  25352. image: {
  25353. source: "./media/characters/aman-aquila/head.svg",
  25354. }
  25355. },
  25356. },
  25357. [
  25358. {
  25359. name: "Minimicro",
  25360. height: math.unit(0.057, "inches")
  25361. },
  25362. {
  25363. name: "Micro",
  25364. height: math.unit(7, "inches")
  25365. },
  25366. {
  25367. name: "Mini",
  25368. height: math.unit(3 + 7 / 12, "feet")
  25369. },
  25370. {
  25371. name: "Normal",
  25372. height: math.unit(5 + 7 / 12, "feet"),
  25373. default: true
  25374. },
  25375. {
  25376. name: "Macro",
  25377. height: math.unit(157 + 7 / 12, "feet")
  25378. },
  25379. {
  25380. name: "Megamacro",
  25381. height: math.unit(1557 + 7 / 12, "feet")
  25382. },
  25383. {
  25384. name: "Gigamacro",
  25385. height: math.unit(15557 + 7 / 12, "feet")
  25386. },
  25387. ]
  25388. ))
  25389. characterMakers.push(() => makeCharacter(
  25390. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25391. {
  25392. front: {
  25393. height: math.unit(3 + 2 / 12, "inches"),
  25394. weight: math.unit(0.3, "ounces"),
  25395. name: "Front",
  25396. image: {
  25397. source: "./media/characters/hiphae/front.svg",
  25398. extra: 1931 / 1683,
  25399. bottom: 24 / 1955
  25400. }
  25401. },
  25402. },
  25403. [
  25404. {
  25405. name: "Normal",
  25406. height: math.unit(3 + 1 / 2, "inches"),
  25407. default: true
  25408. },
  25409. ]
  25410. ))
  25411. characterMakers.push(() => makeCharacter(
  25412. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25413. {
  25414. front: {
  25415. height: math.unit(5 + 10 / 12, "feet"),
  25416. weight: math.unit(165, "lb"),
  25417. name: "Front",
  25418. image: {
  25419. source: "./media/characters/nicky/front.svg",
  25420. extra: 3144 / 2886,
  25421. bottom: 45.6 / 3192
  25422. }
  25423. },
  25424. back: {
  25425. height: math.unit(5 + 10 / 12, "feet"),
  25426. weight: math.unit(165, "lb"),
  25427. name: "Back",
  25428. image: {
  25429. source: "./media/characters/nicky/back.svg",
  25430. extra: 3055 / 2804,
  25431. bottom: 28.4 / 3087
  25432. }
  25433. },
  25434. frontclothed: {
  25435. height: math.unit(5 + 10 / 12, "feet"),
  25436. weight: math.unit(165, "lb"),
  25437. name: "Front-clothed",
  25438. image: {
  25439. source: "./media/characters/nicky/front-clothed.svg",
  25440. extra: 3184.9 / 2926.9,
  25441. bottom: 86.5 / 3239.9
  25442. }
  25443. },
  25444. foot: {
  25445. height: math.unit(1.16, "feet"),
  25446. name: "Foot",
  25447. image: {
  25448. source: "./media/characters/nicky/foot.svg"
  25449. }
  25450. },
  25451. feet: {
  25452. height: math.unit(1.34, "feet"),
  25453. name: "Feet",
  25454. image: {
  25455. source: "./media/characters/nicky/feet.svg"
  25456. }
  25457. },
  25458. maw: {
  25459. height: math.unit(0.9, "feet"),
  25460. name: "Maw",
  25461. image: {
  25462. source: "./media/characters/nicky/maw.svg"
  25463. }
  25464. },
  25465. },
  25466. [
  25467. {
  25468. name: "Normal",
  25469. height: math.unit(5 + 10 / 12, "feet"),
  25470. default: true
  25471. },
  25472. {
  25473. name: "Macro",
  25474. height: math.unit(60, "feet")
  25475. },
  25476. {
  25477. name: "Megamacro",
  25478. height: math.unit(1, "mile")
  25479. },
  25480. ]
  25481. ))
  25482. characterMakers.push(() => makeCharacter(
  25483. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25484. {
  25485. side: {
  25486. height: math.unit(10, "feet"),
  25487. weight: math.unit(600, "lb"),
  25488. name: "Side",
  25489. image: {
  25490. source: "./media/characters/blair/side.svg",
  25491. bottom: 16.6 / 475,
  25492. extra: 458 / 431
  25493. }
  25494. },
  25495. },
  25496. [
  25497. {
  25498. name: "Micro",
  25499. height: math.unit(8, "inches")
  25500. },
  25501. {
  25502. name: "Normal",
  25503. height: math.unit(10, "feet"),
  25504. default: true
  25505. },
  25506. {
  25507. name: "Macro",
  25508. height: math.unit(180, "feet")
  25509. },
  25510. ]
  25511. ))
  25512. characterMakers.push(() => makeCharacter(
  25513. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25514. {
  25515. front: {
  25516. height: math.unit(5 + 4 / 12, "feet"),
  25517. weight: math.unit(125, "lb"),
  25518. name: "Front",
  25519. image: {
  25520. source: "./media/characters/fisher/front.svg",
  25521. extra: 444 / 390,
  25522. bottom: 2 / 444.8
  25523. }
  25524. },
  25525. },
  25526. [
  25527. {
  25528. name: "Micro",
  25529. height: math.unit(4, "inches")
  25530. },
  25531. {
  25532. name: "Normal",
  25533. height: math.unit(5 + 4 / 12, "feet"),
  25534. default: true
  25535. },
  25536. {
  25537. name: "Macro",
  25538. height: math.unit(100, "feet")
  25539. },
  25540. ]
  25541. ))
  25542. characterMakers.push(() => makeCharacter(
  25543. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25544. {
  25545. front: {
  25546. height: math.unit(6.71, "feet"),
  25547. weight: math.unit(200, "lb"),
  25548. capacity: math.unit(1000000, "people"),
  25549. name: "Front",
  25550. image: {
  25551. source: "./media/characters/gliss/front.svg",
  25552. extra: 2347 / 2231,
  25553. bottom: 113 / 2462
  25554. }
  25555. },
  25556. hammerspaceSize: {
  25557. height: math.unit(6.71 * 717, "feet"),
  25558. weight: math.unit(200, "lb"),
  25559. capacity: math.unit(1000000, "people"),
  25560. name: "Hammerspace Size",
  25561. image: {
  25562. source: "./media/characters/gliss/front.svg",
  25563. extra: 2347 / 2231,
  25564. bottom: 113 / 2462
  25565. }
  25566. },
  25567. },
  25568. [
  25569. {
  25570. name: "Normal",
  25571. height: math.unit(6.71, "feet"),
  25572. default: true
  25573. },
  25574. ]
  25575. ))
  25576. characterMakers.push(() => makeCharacter(
  25577. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25578. {
  25579. side: {
  25580. height: math.unit(1.44, "m"),
  25581. weight: math.unit(80, "kg"),
  25582. name: "Side",
  25583. image: {
  25584. source: "./media/characters/dune-anderson/side.svg",
  25585. bottom: 49 / 1426
  25586. }
  25587. },
  25588. },
  25589. [
  25590. {
  25591. name: "Wolf-sized",
  25592. height: math.unit(1.44, "meters")
  25593. },
  25594. {
  25595. name: "Normal",
  25596. height: math.unit(5.05, "meters"),
  25597. default: true
  25598. },
  25599. {
  25600. name: "Big",
  25601. height: math.unit(14.4, "meters")
  25602. },
  25603. {
  25604. name: "Huge",
  25605. height: math.unit(144, "meters")
  25606. },
  25607. ]
  25608. ))
  25609. characterMakers.push(() => makeCharacter(
  25610. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25611. {
  25612. front: {
  25613. height: math.unit(7, "feet"),
  25614. weight: math.unit(425, "lb"),
  25615. name: "Front",
  25616. image: {
  25617. source: "./media/characters/hind/front.svg",
  25618. extra: 2091 / 1860,
  25619. bottom: 129 / 2220
  25620. }
  25621. },
  25622. back: {
  25623. height: math.unit(7, "feet"),
  25624. weight: math.unit(425, "lb"),
  25625. name: "Back",
  25626. image: {
  25627. source: "./media/characters/hind/back.svg",
  25628. extra: 2091 / 1860,
  25629. bottom: 24.6 / 2309
  25630. }
  25631. },
  25632. tail: {
  25633. height: math.unit(2.8, "feet"),
  25634. name: "Tail",
  25635. image: {
  25636. source: "./media/characters/hind/tail.svg"
  25637. }
  25638. },
  25639. head: {
  25640. height: math.unit(2.55, "feet"),
  25641. name: "Head",
  25642. image: {
  25643. source: "./media/characters/hind/head.svg"
  25644. }
  25645. },
  25646. },
  25647. [
  25648. {
  25649. name: "XS",
  25650. height: math.unit(0.7, "feet")
  25651. },
  25652. {
  25653. name: "Normal",
  25654. height: math.unit(7, "feet"),
  25655. default: true
  25656. },
  25657. {
  25658. name: "XL",
  25659. height: math.unit(70, "feet")
  25660. },
  25661. ]
  25662. ))
  25663. characterMakers.push(() => makeCharacter(
  25664. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25665. {
  25666. front: {
  25667. height: math.unit(2.1, "meters"),
  25668. weight: math.unit(150, "lb"),
  25669. name: "Front",
  25670. image: {
  25671. source: "./media/characters/tharquench-sizestealer/front.svg",
  25672. extra: 1605/1470,
  25673. bottom: 36/1641
  25674. }
  25675. },
  25676. frontAlt: {
  25677. height: math.unit(2.1, "meters"),
  25678. weight: math.unit(150, "lb"),
  25679. name: "Front (Alt)",
  25680. image: {
  25681. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25682. extra: 2318 / 2063,
  25683. bottom: 93.4 / 2410
  25684. }
  25685. },
  25686. },
  25687. [
  25688. {
  25689. name: "Nano",
  25690. height: math.unit(1, "mm")
  25691. },
  25692. {
  25693. name: "Micro",
  25694. height: math.unit(1, "cm")
  25695. },
  25696. {
  25697. name: "Normal",
  25698. height: math.unit(2.1, "meters"),
  25699. default: true
  25700. },
  25701. ]
  25702. ))
  25703. characterMakers.push(() => makeCharacter(
  25704. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25705. {
  25706. front: {
  25707. height: math.unit(7 + 5 / 12, "feet"),
  25708. weight: math.unit(357, "lb"),
  25709. name: "Front",
  25710. image: {
  25711. source: "./media/characters/solex-draconov/front.svg",
  25712. extra: 1993 / 1865,
  25713. bottom: 117 / 2111
  25714. }
  25715. },
  25716. },
  25717. [
  25718. {
  25719. name: "Natural Height",
  25720. height: math.unit(7 + 5 / 12, "feet"),
  25721. default: true
  25722. },
  25723. {
  25724. name: "Macro",
  25725. height: math.unit(350, "feet")
  25726. },
  25727. {
  25728. name: "Macro+",
  25729. height: math.unit(1000, "feet")
  25730. },
  25731. {
  25732. name: "Megamacro",
  25733. height: math.unit(20, "km")
  25734. },
  25735. {
  25736. name: "Megamacro+",
  25737. height: math.unit(1000, "km")
  25738. },
  25739. {
  25740. name: "Gigamacro",
  25741. height: math.unit(2.5, "Gm")
  25742. },
  25743. {
  25744. name: "Teramacro",
  25745. height: math.unit(15, "Tm")
  25746. },
  25747. {
  25748. name: "Galactic",
  25749. height: math.unit(30, "Zm")
  25750. },
  25751. {
  25752. name: "Universal",
  25753. height: math.unit(21000, "Ym")
  25754. },
  25755. {
  25756. name: "Omniversal",
  25757. height: math.unit(9.861e50, "Ym")
  25758. },
  25759. {
  25760. name: "Existential",
  25761. height: math.unit(1e300, "meters")
  25762. },
  25763. ]
  25764. ))
  25765. characterMakers.push(() => makeCharacter(
  25766. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25767. {
  25768. side: {
  25769. height: math.unit(25, "feet"),
  25770. weight: math.unit(90000, "lb"),
  25771. name: "Side",
  25772. image: {
  25773. source: "./media/characters/mandarax/side.svg",
  25774. extra: 614 / 332,
  25775. bottom: 55 / 630
  25776. }
  25777. },
  25778. head: {
  25779. height: math.unit(11.4, "feet"),
  25780. name: "Head",
  25781. image: {
  25782. source: "./media/characters/mandarax/head.svg"
  25783. }
  25784. },
  25785. belly: {
  25786. height: math.unit(33, "feet"),
  25787. name: "Belly",
  25788. capacity: math.unit(500, "people"),
  25789. image: {
  25790. source: "./media/characters/mandarax/belly.svg"
  25791. }
  25792. },
  25793. dick: {
  25794. height: math.unit(8.46, "feet"),
  25795. name: "Dick",
  25796. image: {
  25797. source: "./media/characters/mandarax/dick.svg"
  25798. }
  25799. },
  25800. top: {
  25801. height: math.unit(28, "meters"),
  25802. name: "Top",
  25803. image: {
  25804. source: "./media/characters/mandarax/top.svg"
  25805. }
  25806. },
  25807. },
  25808. [
  25809. {
  25810. name: "Normal",
  25811. height: math.unit(25, "feet"),
  25812. default: true
  25813. },
  25814. ]
  25815. ))
  25816. characterMakers.push(() => makeCharacter(
  25817. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25818. {
  25819. front: {
  25820. height: math.unit(5, "feet"),
  25821. weight: math.unit(90, "lb"),
  25822. name: "Front",
  25823. image: {
  25824. source: "./media/characters/pixil/front.svg",
  25825. extra: 2000 / 1618,
  25826. bottom: 12.3 / 2011
  25827. }
  25828. },
  25829. },
  25830. [
  25831. {
  25832. name: "Normal",
  25833. height: math.unit(5, "feet"),
  25834. default: true
  25835. },
  25836. {
  25837. name: "Megamacro",
  25838. height: math.unit(10, "miles"),
  25839. },
  25840. ]
  25841. ))
  25842. characterMakers.push(() => makeCharacter(
  25843. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25844. {
  25845. front: {
  25846. height: math.unit(7 + 2 / 12, "feet"),
  25847. weight: math.unit(200, "lb"),
  25848. name: "Front",
  25849. image: {
  25850. source: "./media/characters/angel/front.svg",
  25851. extra: 1830 / 1737,
  25852. bottom: 22.6 / 1854,
  25853. }
  25854. },
  25855. },
  25856. [
  25857. {
  25858. name: "Normal",
  25859. height: math.unit(7 + 2 / 12, "feet"),
  25860. default: true
  25861. },
  25862. {
  25863. name: "Macro",
  25864. height: math.unit(1000, "feet")
  25865. },
  25866. {
  25867. name: "Megamacro",
  25868. height: math.unit(2, "miles")
  25869. },
  25870. {
  25871. name: "Gigamacro",
  25872. height: math.unit(20, "earths")
  25873. },
  25874. ]
  25875. ))
  25876. characterMakers.push(() => makeCharacter(
  25877. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25878. {
  25879. front: {
  25880. height: math.unit(5, "feet"),
  25881. weight: math.unit(180, "lb"),
  25882. name: "Front",
  25883. image: {
  25884. source: "./media/characters/mekana/front.svg",
  25885. extra: 1671 / 1605,
  25886. bottom: 3.5 / 1691
  25887. }
  25888. },
  25889. side: {
  25890. height: math.unit(5, "feet"),
  25891. weight: math.unit(180, "lb"),
  25892. name: "Side",
  25893. image: {
  25894. source: "./media/characters/mekana/side.svg",
  25895. extra: 1671 / 1605,
  25896. bottom: 3.5 / 1691
  25897. }
  25898. },
  25899. back: {
  25900. height: math.unit(5, "feet"),
  25901. weight: math.unit(180, "lb"),
  25902. name: "Back",
  25903. image: {
  25904. source: "./media/characters/mekana/back.svg",
  25905. extra: 1671 / 1605,
  25906. bottom: 3.5 / 1691
  25907. }
  25908. },
  25909. },
  25910. [
  25911. {
  25912. name: "Normal",
  25913. height: math.unit(5, "feet"),
  25914. default: true
  25915. },
  25916. ]
  25917. ))
  25918. characterMakers.push(() => makeCharacter(
  25919. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25920. {
  25921. front: {
  25922. height: math.unit(4 + 6 / 12, "feet"),
  25923. weight: math.unit(80, "lb"),
  25924. name: "Front",
  25925. image: {
  25926. source: "./media/characters/pixie/front.svg",
  25927. extra: 1924 / 1825,
  25928. bottom: 22.4 / 1946
  25929. }
  25930. },
  25931. },
  25932. [
  25933. {
  25934. name: "Normal",
  25935. height: math.unit(4 + 6 / 12, "feet"),
  25936. default: true
  25937. },
  25938. {
  25939. name: "Macro",
  25940. height: math.unit(40, "feet")
  25941. },
  25942. ]
  25943. ))
  25944. characterMakers.push(() => makeCharacter(
  25945. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25946. {
  25947. front: {
  25948. height: math.unit(2.1, "meters"),
  25949. weight: math.unit(200, "lb"),
  25950. name: "Front",
  25951. image: {
  25952. source: "./media/characters/the-lascivious/front.svg",
  25953. extra: 1 / 0.893,
  25954. bottom: 3.5 / 573.7
  25955. }
  25956. },
  25957. },
  25958. [
  25959. {
  25960. name: "Human Scale",
  25961. height: math.unit(2.1, "meters")
  25962. },
  25963. {
  25964. name: "Wolxi Scale",
  25965. height: math.unit(46.2, "m"),
  25966. default: true
  25967. },
  25968. {
  25969. name: "Boinker of Buildings",
  25970. height: math.unit(10, "km")
  25971. },
  25972. {
  25973. name: "Shagger of Skyscrapers",
  25974. height: math.unit(40, "km")
  25975. },
  25976. {
  25977. name: "Banger of Boroughs",
  25978. height: math.unit(4000, "km")
  25979. },
  25980. {
  25981. name: "Screwer of States",
  25982. height: math.unit(100000, "km")
  25983. },
  25984. {
  25985. name: "Pounder of Planets",
  25986. height: math.unit(2000000, "km")
  25987. },
  25988. ]
  25989. ))
  25990. characterMakers.push(() => makeCharacter(
  25991. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25992. {
  25993. front: {
  25994. height: math.unit(6, "feet"),
  25995. weight: math.unit(150, "lb"),
  25996. name: "Front",
  25997. image: {
  25998. source: "./media/characters/aj/front.svg",
  25999. extra: 2039 / 1562,
  26000. bottom: 40 / 2079
  26001. }
  26002. },
  26003. },
  26004. [
  26005. {
  26006. name: "Normal",
  26007. height: math.unit(11 + 6 / 12, "feet"),
  26008. default: true
  26009. },
  26010. {
  26011. name: "Megamacro",
  26012. height: math.unit(60, "megameters")
  26013. },
  26014. ]
  26015. ))
  26016. characterMakers.push(() => makeCharacter(
  26017. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26018. {
  26019. side: {
  26020. height: math.unit(31 + 8 / 12, "feet"),
  26021. weight: math.unit(75000, "kg"),
  26022. name: "Side",
  26023. image: {
  26024. source: "./media/characters/koros/side.svg",
  26025. extra: 1442 / 1297,
  26026. bottom: 122.7 / 1562
  26027. }
  26028. },
  26029. dicksKingsCrown: {
  26030. height: math.unit(6, "feet"),
  26031. name: "Dicks (King's Crown)",
  26032. image: {
  26033. source: "./media/characters/koros/dicks-kings-crown.svg"
  26034. }
  26035. },
  26036. dicksTailSet: {
  26037. height: math.unit(3, "feet"),
  26038. name: "Dicks (Tail Set)",
  26039. image: {
  26040. source: "./media/characters/koros/dicks-tail-set.svg"
  26041. }
  26042. },
  26043. dickCumming: {
  26044. height: math.unit(7.98, "feet"),
  26045. name: "Dick (Cumming)",
  26046. image: {
  26047. source: "./media/characters/koros/dick-cumming.svg"
  26048. }
  26049. },
  26050. dicksBack: {
  26051. height: math.unit(5.9, "feet"),
  26052. name: "Dicks (Back)",
  26053. image: {
  26054. source: "./media/characters/koros/dicks-back.svg"
  26055. }
  26056. },
  26057. dicksFront: {
  26058. height: math.unit(3.72, "feet"),
  26059. name: "Dicks (Front)",
  26060. image: {
  26061. source: "./media/characters/koros/dicks-front.svg"
  26062. }
  26063. },
  26064. dicksPeeking: {
  26065. height: math.unit(3.0, "feet"),
  26066. name: "Dicks (Peeking)",
  26067. image: {
  26068. source: "./media/characters/koros/dicks-peeking.svg"
  26069. }
  26070. },
  26071. eye: {
  26072. height: math.unit(1.7, "feet"),
  26073. name: "Eye",
  26074. image: {
  26075. source: "./media/characters/koros/eye.svg"
  26076. }
  26077. },
  26078. headFront: {
  26079. height: math.unit(11.69, "feet"),
  26080. name: "Head (Front)",
  26081. image: {
  26082. source: "./media/characters/koros/head-front.svg"
  26083. }
  26084. },
  26085. headSide: {
  26086. height: math.unit(14, "feet"),
  26087. name: "Head (Side)",
  26088. image: {
  26089. source: "./media/characters/koros/head-side.svg"
  26090. }
  26091. },
  26092. leg: {
  26093. height: math.unit(17, "feet"),
  26094. name: "Leg",
  26095. image: {
  26096. source: "./media/characters/koros/leg.svg"
  26097. }
  26098. },
  26099. mawSide: {
  26100. height: math.unit(12.8, "feet"),
  26101. name: "Maw (Side)",
  26102. image: {
  26103. source: "./media/characters/koros/maw-side.svg"
  26104. }
  26105. },
  26106. mawSpitting: {
  26107. height: math.unit(17, "feet"),
  26108. name: "Maw (Spitting)",
  26109. image: {
  26110. source: "./media/characters/koros/maw-spitting.svg"
  26111. }
  26112. },
  26113. slit: {
  26114. height: math.unit(2.8, "feet"),
  26115. name: "Slit",
  26116. image: {
  26117. source: "./media/characters/koros/slit.svg"
  26118. }
  26119. },
  26120. stomach: {
  26121. height: math.unit(6.8, "feet"),
  26122. capacity: math.unit(20, "people"),
  26123. name: "Stomach",
  26124. image: {
  26125. source: "./media/characters/koros/stomach.svg"
  26126. }
  26127. },
  26128. wingspanBottom: {
  26129. height: math.unit(114, "feet"),
  26130. name: "Wingspan (Bottom)",
  26131. image: {
  26132. source: "./media/characters/koros/wingspan-bottom.svg"
  26133. }
  26134. },
  26135. wingspanTop: {
  26136. height: math.unit(104, "feet"),
  26137. name: "Wingspan (Top)",
  26138. image: {
  26139. source: "./media/characters/koros/wingspan-top.svg"
  26140. }
  26141. },
  26142. },
  26143. [
  26144. {
  26145. name: "Normal",
  26146. height: math.unit(31 + 8 / 12, "feet"),
  26147. default: true
  26148. },
  26149. ]
  26150. ))
  26151. characterMakers.push(() => makeCharacter(
  26152. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26153. {
  26154. front: {
  26155. height: math.unit(18 + 5 / 12, "feet"),
  26156. weight: math.unit(3750, "kg"),
  26157. name: "Front",
  26158. image: {
  26159. source: "./media/characters/vexx/front.svg",
  26160. extra: 426 / 396,
  26161. bottom: 31.5 / 458
  26162. }
  26163. },
  26164. maw: {
  26165. height: math.unit(6, "feet"),
  26166. name: "Maw",
  26167. image: {
  26168. source: "./media/characters/vexx/maw.svg"
  26169. }
  26170. },
  26171. },
  26172. [
  26173. {
  26174. name: "Normal",
  26175. height: math.unit(18 + 5 / 12, "feet"),
  26176. default: true
  26177. },
  26178. ]
  26179. ))
  26180. characterMakers.push(() => makeCharacter(
  26181. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26182. {
  26183. front: {
  26184. height: math.unit(17 + 6 / 12, "feet"),
  26185. weight: math.unit(150, "lb"),
  26186. name: "Front",
  26187. image: {
  26188. source: "./media/characters/baadra/front.svg",
  26189. extra: 1694/1553,
  26190. bottom: 179/1873
  26191. }
  26192. },
  26193. frontAlt: {
  26194. height: math.unit(17 + 6 / 12, "feet"),
  26195. weight: math.unit(150, "lb"),
  26196. name: "Front (Alt)",
  26197. image: {
  26198. source: "./media/characters/baadra/front-alt.svg",
  26199. extra: 3137 / 2890,
  26200. bottom: 168.4 / 3305
  26201. }
  26202. },
  26203. back: {
  26204. height: math.unit(17 + 6 / 12, "feet"),
  26205. weight: math.unit(150, "lb"),
  26206. name: "Back",
  26207. image: {
  26208. source: "./media/characters/baadra/back.svg",
  26209. extra: 3142 / 2890,
  26210. bottom: 220 / 3371
  26211. }
  26212. },
  26213. head: {
  26214. height: math.unit(5.45, "feet"),
  26215. name: "Head",
  26216. image: {
  26217. source: "./media/characters/baadra/head.svg"
  26218. }
  26219. },
  26220. headAngry: {
  26221. height: math.unit(4.95, "feet"),
  26222. name: "Head (Angry)",
  26223. image: {
  26224. source: "./media/characters/baadra/head-angry.svg"
  26225. }
  26226. },
  26227. headOpen: {
  26228. height: math.unit(6, "feet"),
  26229. name: "Head (Open)",
  26230. image: {
  26231. source: "./media/characters/baadra/head-open.svg"
  26232. }
  26233. },
  26234. },
  26235. [
  26236. {
  26237. name: "Normal",
  26238. height: math.unit(17 + 6 / 12, "feet"),
  26239. default: true
  26240. },
  26241. ]
  26242. ))
  26243. characterMakers.push(() => makeCharacter(
  26244. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26245. {
  26246. front: {
  26247. height: math.unit(7 + 3 / 12, "feet"),
  26248. weight: math.unit(180, "lb"),
  26249. name: "Front",
  26250. image: {
  26251. source: "./media/characters/juri/front.svg",
  26252. extra: 1401 / 1237,
  26253. bottom: 18.5 / 1418
  26254. }
  26255. },
  26256. side: {
  26257. height: math.unit(7 + 3 / 12, "feet"),
  26258. weight: math.unit(180, "lb"),
  26259. name: "Side",
  26260. image: {
  26261. source: "./media/characters/juri/side.svg",
  26262. extra: 1424 / 1242,
  26263. bottom: 18.5 / 1447
  26264. }
  26265. },
  26266. sitting: {
  26267. height: math.unit(6, "feet"),
  26268. weight: math.unit(180, "lb"),
  26269. name: "Sitting",
  26270. image: {
  26271. source: "./media/characters/juri/sitting.svg",
  26272. extra: 1270 / 1143,
  26273. bottom: 100 / 1343
  26274. }
  26275. },
  26276. back: {
  26277. height: math.unit(7 + 3 / 12, "feet"),
  26278. weight: math.unit(180, "lb"),
  26279. name: "Back",
  26280. image: {
  26281. source: "./media/characters/juri/back.svg",
  26282. extra: 1377 / 1240,
  26283. bottom: 23.7 / 1405
  26284. }
  26285. },
  26286. maw: {
  26287. height: math.unit(2.8, "feet"),
  26288. name: "Maw",
  26289. image: {
  26290. source: "./media/characters/juri/maw.svg"
  26291. }
  26292. },
  26293. stomach: {
  26294. height: math.unit(0.89, "feet"),
  26295. capacity: math.unit(4, "liters"),
  26296. name: "Stomach",
  26297. image: {
  26298. source: "./media/characters/juri/stomach.svg"
  26299. }
  26300. },
  26301. },
  26302. [
  26303. {
  26304. name: "Normal",
  26305. height: math.unit(7 + 3 / 12, "feet"),
  26306. default: true
  26307. },
  26308. ]
  26309. ))
  26310. characterMakers.push(() => makeCharacter(
  26311. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26312. {
  26313. fox: {
  26314. height: math.unit(5 + 6 / 12, "feet"),
  26315. weight: math.unit(140, "lb"),
  26316. name: "Fox",
  26317. image: {
  26318. source: "./media/characters/maxene-sita/fox.svg",
  26319. extra: 146 / 138,
  26320. bottom: 2.1 / 148.19
  26321. }
  26322. },
  26323. foxLaying: {
  26324. height: math.unit(1.70, "feet"),
  26325. weight: math.unit(140, "lb"),
  26326. name: "Fox (Laying)",
  26327. image: {
  26328. source: "./media/characters/maxene-sita/fox-laying.svg",
  26329. extra: 910 / 572,
  26330. bottom: 71 / 981
  26331. }
  26332. },
  26333. kitsune: {
  26334. height: math.unit(10, "feet"),
  26335. weight: math.unit(800, "lb"),
  26336. name: "Kitsune",
  26337. image: {
  26338. source: "./media/characters/maxene-sita/kitsune.svg",
  26339. extra: 185 / 176,
  26340. bottom: 4.7 / 189.9
  26341. }
  26342. },
  26343. hellhound: {
  26344. height: math.unit(10, "feet"),
  26345. weight: math.unit(700, "lb"),
  26346. name: "Hellhound",
  26347. image: {
  26348. source: "./media/characters/maxene-sita/hellhound.svg",
  26349. extra: 1600 / 1545,
  26350. bottom: 81 / 1681
  26351. }
  26352. },
  26353. },
  26354. [
  26355. {
  26356. name: "Normal",
  26357. height: math.unit(5 + 6 / 12, "feet"),
  26358. default: true
  26359. },
  26360. ]
  26361. ))
  26362. characterMakers.push(() => makeCharacter(
  26363. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26364. {
  26365. front: {
  26366. height: math.unit(3 + 4 / 12, "feet"),
  26367. weight: math.unit(70, "lb"),
  26368. name: "Front",
  26369. image: {
  26370. source: "./media/characters/maia/front.svg",
  26371. extra: 227 / 219.5,
  26372. bottom: 40 / 267
  26373. }
  26374. },
  26375. back: {
  26376. height: math.unit(3 + 4 / 12, "feet"),
  26377. weight: math.unit(70, "lb"),
  26378. name: "Back",
  26379. image: {
  26380. source: "./media/characters/maia/back.svg",
  26381. extra: 237 / 225
  26382. }
  26383. },
  26384. },
  26385. [
  26386. {
  26387. name: "Normal",
  26388. height: math.unit(3 + 4 / 12, "feet"),
  26389. default: true
  26390. },
  26391. ]
  26392. ))
  26393. characterMakers.push(() => makeCharacter(
  26394. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26395. {
  26396. front: {
  26397. height: math.unit(5 + 10 / 12, "feet"),
  26398. weight: math.unit(197, "lb"),
  26399. name: "Front",
  26400. image: {
  26401. source: "./media/characters/jabaro/front.svg",
  26402. extra: 225 / 216,
  26403. bottom: 5.06 / 230
  26404. }
  26405. },
  26406. back: {
  26407. height: math.unit(5 + 10 / 12, "feet"),
  26408. weight: math.unit(197, "lb"),
  26409. name: "Back",
  26410. image: {
  26411. source: "./media/characters/jabaro/back.svg",
  26412. extra: 225 / 219,
  26413. bottom: 1.9 / 227
  26414. }
  26415. },
  26416. },
  26417. [
  26418. {
  26419. name: "Normal",
  26420. height: math.unit(5 + 10 / 12, "feet"),
  26421. default: true
  26422. },
  26423. ]
  26424. ))
  26425. characterMakers.push(() => makeCharacter(
  26426. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26427. {
  26428. front: {
  26429. height: math.unit(5 + 8 / 12, "feet"),
  26430. weight: math.unit(139, "lb"),
  26431. name: "Front",
  26432. image: {
  26433. source: "./media/characters/risa/front.svg",
  26434. extra: 270 / 260,
  26435. bottom: 11.2 / 282
  26436. }
  26437. },
  26438. back: {
  26439. height: math.unit(5 + 8 / 12, "feet"),
  26440. weight: math.unit(139, "lb"),
  26441. name: "Back",
  26442. image: {
  26443. source: "./media/characters/risa/back.svg",
  26444. extra: 264 / 255,
  26445. bottom: 4 / 268
  26446. }
  26447. },
  26448. },
  26449. [
  26450. {
  26451. name: "Normal",
  26452. height: math.unit(5 + 8 / 12, "feet"),
  26453. default: true
  26454. },
  26455. ]
  26456. ))
  26457. characterMakers.push(() => makeCharacter(
  26458. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26459. {
  26460. front: {
  26461. height: math.unit(2 + 11 / 12, "feet"),
  26462. weight: math.unit(30, "lb"),
  26463. name: "Front",
  26464. image: {
  26465. source: "./media/characters/weatley/front.svg",
  26466. bottom: 10.7 / 414,
  26467. extra: 403.5 / 362
  26468. }
  26469. },
  26470. back: {
  26471. height: math.unit(2 + 11 / 12, "feet"),
  26472. weight: math.unit(30, "lb"),
  26473. name: "Back",
  26474. image: {
  26475. source: "./media/characters/weatley/back.svg",
  26476. bottom: 10.7 / 414,
  26477. extra: 403.5 / 362
  26478. }
  26479. },
  26480. },
  26481. [
  26482. {
  26483. name: "Normal",
  26484. height: math.unit(2 + 11 / 12, "feet"),
  26485. default: true
  26486. },
  26487. ]
  26488. ))
  26489. characterMakers.push(() => makeCharacter(
  26490. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26491. {
  26492. front: {
  26493. height: math.unit(5 + 2 / 12, "feet"),
  26494. weight: math.unit(50, "kg"),
  26495. name: "Front",
  26496. image: {
  26497. source: "./media/characters/mercury-crescent/front.svg",
  26498. extra: 1088 / 1033,
  26499. bottom: 18.9 / 1109
  26500. }
  26501. },
  26502. },
  26503. [
  26504. {
  26505. name: "Normal",
  26506. height: math.unit(5 + 2 / 12, "feet"),
  26507. default: true
  26508. },
  26509. ]
  26510. ))
  26511. characterMakers.push(() => makeCharacter(
  26512. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26513. {
  26514. front: {
  26515. height: math.unit(2, "feet"),
  26516. weight: math.unit(15, "kg"),
  26517. name: "Front",
  26518. image: {
  26519. source: "./media/characters/diamond-jones/front.svg",
  26520. extra: 727/723,
  26521. bottom: 46/773
  26522. }
  26523. },
  26524. },
  26525. [
  26526. {
  26527. name: "Normal",
  26528. height: math.unit(2, "feet"),
  26529. default: true
  26530. },
  26531. ]
  26532. ))
  26533. characterMakers.push(() => makeCharacter(
  26534. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26535. {
  26536. front: {
  26537. height: math.unit(3, "feet"),
  26538. weight: math.unit(30, "kg"),
  26539. name: "Front",
  26540. image: {
  26541. source: "./media/characters/sweet-bit/front.svg",
  26542. extra: 675 / 567,
  26543. bottom: 27.7 / 703
  26544. }
  26545. },
  26546. },
  26547. [
  26548. {
  26549. name: "Normal",
  26550. height: math.unit(3, "feet"),
  26551. default: true
  26552. },
  26553. ]
  26554. ))
  26555. characterMakers.push(() => makeCharacter(
  26556. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26557. {
  26558. side: {
  26559. height: math.unit(9.178, "feet"),
  26560. weight: math.unit(500, "lb"),
  26561. name: "Side",
  26562. image: {
  26563. source: "./media/characters/umbrazen/side.svg",
  26564. extra: 1730 / 1473,
  26565. bottom: 34.6 / 1765
  26566. }
  26567. },
  26568. },
  26569. [
  26570. {
  26571. name: "Normal",
  26572. height: math.unit(9.178, "feet"),
  26573. default: true
  26574. },
  26575. ]
  26576. ))
  26577. characterMakers.push(() => makeCharacter(
  26578. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26579. {
  26580. front: {
  26581. height: math.unit(10, "feet"),
  26582. weight: math.unit(750, "lb"),
  26583. name: "Front",
  26584. image: {
  26585. source: "./media/characters/arlist/front.svg",
  26586. extra: 961 / 778,
  26587. bottom: 6.2 / 986
  26588. }
  26589. },
  26590. },
  26591. [
  26592. {
  26593. name: "Normal",
  26594. height: math.unit(10, "feet"),
  26595. default: true
  26596. },
  26597. ]
  26598. ))
  26599. characterMakers.push(() => makeCharacter(
  26600. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26601. {
  26602. front: {
  26603. height: math.unit(5 + 1 / 12, "feet"),
  26604. weight: math.unit(110, "lb"),
  26605. name: "Front",
  26606. image: {
  26607. source: "./media/characters/aradel/front.svg",
  26608. extra: 324 / 303,
  26609. bottom: 3.6 / 329.4
  26610. }
  26611. },
  26612. },
  26613. [
  26614. {
  26615. name: "Normal",
  26616. height: math.unit(5 + 1 / 12, "feet"),
  26617. default: true
  26618. },
  26619. ]
  26620. ))
  26621. characterMakers.push(() => makeCharacter(
  26622. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26623. {
  26624. front: {
  26625. height: math.unit(3 + 8 / 12, "feet"),
  26626. weight: math.unit(50, "lb"),
  26627. name: "Front",
  26628. image: {
  26629. source: "./media/characters/serryn/front.svg",
  26630. extra: 1792 / 1656,
  26631. bottom: 43.5 / 1840
  26632. }
  26633. },
  26634. },
  26635. [
  26636. {
  26637. name: "Normal",
  26638. height: math.unit(3 + 8 / 12, "feet"),
  26639. default: true
  26640. },
  26641. ]
  26642. ))
  26643. characterMakers.push(() => makeCharacter(
  26644. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26645. {
  26646. front: {
  26647. height: math.unit(7 + 10 / 12, "feet"),
  26648. weight: math.unit(255, "lb"),
  26649. name: "Front",
  26650. image: {
  26651. source: "./media/characters/xavier-thyme/front.svg",
  26652. extra: 3733 / 3642,
  26653. bottom: 131 / 3869
  26654. }
  26655. },
  26656. frontRaven: {
  26657. height: math.unit(7 + 10 / 12, "feet"),
  26658. weight: math.unit(255, "lb"),
  26659. name: "Front (Raven)",
  26660. image: {
  26661. source: "./media/characters/xavier-thyme/front-raven.svg",
  26662. extra: 4385 / 3642,
  26663. bottom: 131 / 4517
  26664. }
  26665. },
  26666. },
  26667. [
  26668. {
  26669. name: "Normal",
  26670. height: math.unit(7 + 10 / 12, "feet"),
  26671. default: true
  26672. },
  26673. ]
  26674. ))
  26675. characterMakers.push(() => makeCharacter(
  26676. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26677. {
  26678. front: {
  26679. height: math.unit(1.6, "m"),
  26680. weight: math.unit(50, "kg"),
  26681. name: "Front",
  26682. image: {
  26683. source: "./media/characters/kiki/front.svg",
  26684. extra: 4682 / 3610,
  26685. bottom: 115 / 4777
  26686. }
  26687. },
  26688. },
  26689. [
  26690. {
  26691. name: "Normal",
  26692. height: math.unit(1.6, "meters"),
  26693. default: true
  26694. },
  26695. ]
  26696. ))
  26697. characterMakers.push(() => makeCharacter(
  26698. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26699. {
  26700. front: {
  26701. height: math.unit(50, "m"),
  26702. weight: math.unit(500, "tonnes"),
  26703. name: "Front",
  26704. image: {
  26705. source: "./media/characters/ryoko/front.svg",
  26706. extra: 4632 / 3926,
  26707. bottom: 193 / 4823
  26708. }
  26709. },
  26710. },
  26711. [
  26712. {
  26713. name: "Normal",
  26714. height: math.unit(50, "meters"),
  26715. default: true
  26716. },
  26717. ]
  26718. ))
  26719. characterMakers.push(() => makeCharacter(
  26720. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26721. {
  26722. front: {
  26723. height: math.unit(30, "m"),
  26724. weight: math.unit(22, "tonnes"),
  26725. name: "Front",
  26726. image: {
  26727. source: "./media/characters/elio/front.svg",
  26728. extra: 4582 / 3720,
  26729. bottom: 236 / 4828
  26730. }
  26731. },
  26732. },
  26733. [
  26734. {
  26735. name: "Normal",
  26736. height: math.unit(30, "meters"),
  26737. default: true
  26738. },
  26739. ]
  26740. ))
  26741. characterMakers.push(() => makeCharacter(
  26742. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26743. {
  26744. front: {
  26745. height: math.unit(6 + 3 / 12, "feet"),
  26746. weight: math.unit(120, "lb"),
  26747. name: "Front",
  26748. image: {
  26749. source: "./media/characters/azura/front.svg",
  26750. extra: 1149 / 1135,
  26751. bottom: 45 / 1194
  26752. }
  26753. },
  26754. frontClothed: {
  26755. height: math.unit(6 + 3 / 12, "feet"),
  26756. weight: math.unit(120, "lb"),
  26757. name: "Front (Clothed)",
  26758. image: {
  26759. source: "./media/characters/azura/front-clothed.svg",
  26760. extra: 1149 / 1135,
  26761. bottom: 45 / 1194
  26762. }
  26763. },
  26764. },
  26765. [
  26766. {
  26767. name: "Normal",
  26768. height: math.unit(6 + 3 / 12, "feet"),
  26769. default: true
  26770. },
  26771. {
  26772. name: "Macro",
  26773. height: math.unit(20 + 6 / 12, "feet")
  26774. },
  26775. {
  26776. name: "Megamacro",
  26777. height: math.unit(12, "miles")
  26778. },
  26779. {
  26780. name: "Gigamacro",
  26781. height: math.unit(10000, "miles")
  26782. },
  26783. {
  26784. name: "Teramacro",
  26785. height: math.unit(900000, "miles")
  26786. },
  26787. ]
  26788. ))
  26789. characterMakers.push(() => makeCharacter(
  26790. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26791. {
  26792. front: {
  26793. height: math.unit(12, "feet"),
  26794. weight: math.unit(1, "ton"),
  26795. capacity: math.unit(660000, "gallons"),
  26796. name: "Front",
  26797. image: {
  26798. source: "./media/characters/zeus/front.svg",
  26799. extra: 5005 / 4717,
  26800. bottom: 363 / 5388
  26801. }
  26802. },
  26803. },
  26804. [
  26805. {
  26806. name: "Normal",
  26807. height: math.unit(12, "feet")
  26808. },
  26809. {
  26810. name: "Preferred Size",
  26811. height: math.unit(0.5, "miles"),
  26812. default: true
  26813. },
  26814. {
  26815. name: "Giga Horse",
  26816. height: math.unit(300, "miles")
  26817. },
  26818. {
  26819. name: "Riding Planets",
  26820. height: math.unit(30, "megameters")
  26821. },
  26822. {
  26823. name: "Cosmic Giant",
  26824. height: math.unit(3, "zettameters")
  26825. },
  26826. {
  26827. name: "Breeding God",
  26828. height: math.unit(9.92e22, "yottameters")
  26829. },
  26830. ]
  26831. ))
  26832. characterMakers.push(() => makeCharacter(
  26833. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26834. {
  26835. side: {
  26836. height: math.unit(9, "feet"),
  26837. weight: math.unit(1500, "kg"),
  26838. name: "Side",
  26839. image: {
  26840. source: "./media/characters/fang/side.svg",
  26841. extra: 924 / 866,
  26842. bottom: 47.5 / 972.3
  26843. }
  26844. },
  26845. },
  26846. [
  26847. {
  26848. name: "Normal",
  26849. height: math.unit(9, "feet"),
  26850. default: true
  26851. },
  26852. {
  26853. name: "Macro",
  26854. height: math.unit(75 + 6 / 12, "feet")
  26855. },
  26856. {
  26857. name: "Teramacro",
  26858. height: math.unit(50000, "miles")
  26859. },
  26860. ]
  26861. ))
  26862. characterMakers.push(() => makeCharacter(
  26863. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26864. {
  26865. front: {
  26866. height: math.unit(10, "feet"),
  26867. weight: math.unit(2, "tons"),
  26868. name: "Front",
  26869. image: {
  26870. source: "./media/characters/rekhit/front.svg",
  26871. extra: 2796 / 2590,
  26872. bottom: 225 / 3022
  26873. }
  26874. },
  26875. },
  26876. [
  26877. {
  26878. name: "Normal",
  26879. height: math.unit(10, "feet"),
  26880. default: true
  26881. },
  26882. {
  26883. name: "Macro",
  26884. height: math.unit(500, "feet")
  26885. },
  26886. ]
  26887. ))
  26888. characterMakers.push(() => makeCharacter(
  26889. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26890. {
  26891. front: {
  26892. height: math.unit(7 + 6.451 / 12, "feet"),
  26893. weight: math.unit(310, "lb"),
  26894. name: "Front",
  26895. image: {
  26896. source: "./media/characters/dahlia-verrick/front.svg",
  26897. extra: 1488 / 1365,
  26898. bottom: 6.2 / 1495
  26899. }
  26900. },
  26901. back: {
  26902. height: math.unit(7 + 6.451 / 12, "feet"),
  26903. weight: math.unit(310, "lb"),
  26904. name: "Back",
  26905. image: {
  26906. source: "./media/characters/dahlia-verrick/back.svg",
  26907. extra: 1472 / 1351,
  26908. bottom: 5.28 / 1477
  26909. }
  26910. },
  26911. frontBusiness: {
  26912. height: math.unit(7 + 6.451 / 12, "feet"),
  26913. weight: math.unit(200, "lb"),
  26914. name: "Front (Business)",
  26915. image: {
  26916. source: "./media/characters/dahlia-verrick/front-business.svg",
  26917. extra: 1478 / 1381,
  26918. bottom: 5.5 / 1484
  26919. }
  26920. },
  26921. frontCasual: {
  26922. height: math.unit(7 + 6.451 / 12, "feet"),
  26923. weight: math.unit(200, "lb"),
  26924. name: "Front (Casual)",
  26925. image: {
  26926. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26927. extra: 1478 / 1381,
  26928. bottom: 5.5 / 1484
  26929. }
  26930. },
  26931. },
  26932. [
  26933. {
  26934. name: "Travel-Sized",
  26935. height: math.unit(7.45, "inches")
  26936. },
  26937. {
  26938. name: "Normal",
  26939. height: math.unit(7 + 6.451 / 12, "feet"),
  26940. default: true
  26941. },
  26942. {
  26943. name: "Hitting the Town",
  26944. height: math.unit(37 + 8 / 12, "feet")
  26945. },
  26946. {
  26947. name: "Stomp in the Suburbs",
  26948. height: math.unit(964 + 9.728 / 12, "feet")
  26949. },
  26950. {
  26951. name: "Sit on the City",
  26952. height: math.unit(61747 + 10.592 / 12, "feet")
  26953. },
  26954. {
  26955. name: "Glomp the Globe",
  26956. height: math.unit(252919327 + 4.832 / 12, "feet")
  26957. },
  26958. ]
  26959. ))
  26960. characterMakers.push(() => makeCharacter(
  26961. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26962. {
  26963. front: {
  26964. height: math.unit(6 + 4 / 12, "feet"),
  26965. weight: math.unit(320, "lb"),
  26966. name: "Front",
  26967. image: {
  26968. source: "./media/characters/balina-mahigan/front.svg",
  26969. extra: 447 / 428,
  26970. bottom: 18 / 466
  26971. }
  26972. },
  26973. back: {
  26974. height: math.unit(6 + 4 / 12, "feet"),
  26975. weight: math.unit(320, "lb"),
  26976. name: "Back",
  26977. image: {
  26978. source: "./media/characters/balina-mahigan/back.svg",
  26979. extra: 445 / 428,
  26980. bottom: 4.07 / 448
  26981. }
  26982. },
  26983. arm: {
  26984. height: math.unit(1.88, "feet"),
  26985. name: "Arm",
  26986. image: {
  26987. source: "./media/characters/balina-mahigan/arm.svg"
  26988. }
  26989. },
  26990. backPort: {
  26991. height: math.unit(0.685, "feet"),
  26992. name: "Back Port",
  26993. image: {
  26994. source: "./media/characters/balina-mahigan/back-port.svg"
  26995. }
  26996. },
  26997. hoofpaw: {
  26998. height: math.unit(1.41, "feet"),
  26999. name: "Hoofpaw",
  27000. image: {
  27001. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27002. }
  27003. },
  27004. leftHandBack: {
  27005. height: math.unit(0.938, "feet"),
  27006. name: "Left Hand (Back)",
  27007. image: {
  27008. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27009. }
  27010. },
  27011. leftHandFront: {
  27012. height: math.unit(0.938, "feet"),
  27013. name: "Left Hand (Front)",
  27014. image: {
  27015. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27016. }
  27017. },
  27018. rightHandBack: {
  27019. height: math.unit(0.95, "feet"),
  27020. name: "Right Hand (Back)",
  27021. image: {
  27022. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27023. }
  27024. },
  27025. rightHandFront: {
  27026. height: math.unit(0.95, "feet"),
  27027. name: "Right Hand (Front)",
  27028. image: {
  27029. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27030. }
  27031. },
  27032. },
  27033. [
  27034. {
  27035. name: "Normal",
  27036. height: math.unit(6 + 4 / 12, "feet"),
  27037. default: true
  27038. },
  27039. ]
  27040. ))
  27041. characterMakers.push(() => makeCharacter(
  27042. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27043. {
  27044. front: {
  27045. height: math.unit(6, "feet"),
  27046. weight: math.unit(320, "lb"),
  27047. name: "Front",
  27048. image: {
  27049. source: "./media/characters/balina-mejeri/front.svg",
  27050. extra: 517 / 488,
  27051. bottom: 44.2 / 561
  27052. }
  27053. },
  27054. },
  27055. [
  27056. {
  27057. name: "Normal",
  27058. height: math.unit(6 + 4 / 12, "feet")
  27059. },
  27060. {
  27061. name: "Business",
  27062. height: math.unit(155, "feet"),
  27063. default: true
  27064. },
  27065. ]
  27066. ))
  27067. characterMakers.push(() => makeCharacter(
  27068. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27069. {
  27070. kneeling: {
  27071. height: math.unit(6 + 4 / 12, "feet"),
  27072. weight: math.unit(300 * 20, "lb"),
  27073. name: "Kneeling",
  27074. image: {
  27075. source: "./media/characters/balbarian/kneeling.svg",
  27076. extra: 922 / 862,
  27077. bottom: 42.4 / 965
  27078. }
  27079. },
  27080. },
  27081. [
  27082. {
  27083. name: "Normal",
  27084. height: math.unit(6 + 4 / 12, "feet")
  27085. },
  27086. {
  27087. name: "Treasured",
  27088. height: math.unit(18 + 9 / 12, "feet"),
  27089. default: true
  27090. },
  27091. {
  27092. name: "Macro",
  27093. height: math.unit(900, "feet")
  27094. },
  27095. ]
  27096. ))
  27097. characterMakers.push(() => makeCharacter(
  27098. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27099. {
  27100. front: {
  27101. height: math.unit(6 + 4 / 12, "feet"),
  27102. weight: math.unit(325, "lb"),
  27103. name: "Front",
  27104. image: {
  27105. source: "./media/characters/balina-amarini/front.svg",
  27106. extra: 415 / 403,
  27107. bottom: 19 / 433.4
  27108. }
  27109. },
  27110. back: {
  27111. height: math.unit(6 + 4 / 12, "feet"),
  27112. weight: math.unit(325, "lb"),
  27113. name: "Back",
  27114. image: {
  27115. source: "./media/characters/balina-amarini/back.svg",
  27116. extra: 415 / 403,
  27117. bottom: 13.5 / 432
  27118. }
  27119. },
  27120. overdrive: {
  27121. height: math.unit(6 + 4 / 12, "feet"),
  27122. weight: math.unit(400, "lb"),
  27123. name: "Overdrive",
  27124. image: {
  27125. source: "./media/characters/balina-amarini/overdrive.svg",
  27126. extra: 269 / 259,
  27127. bottom: 12 / 282
  27128. }
  27129. },
  27130. },
  27131. [
  27132. {
  27133. name: "Boom",
  27134. height: math.unit(9 + 10 / 12, "feet"),
  27135. default: true
  27136. },
  27137. {
  27138. name: "Macro",
  27139. height: math.unit(280, "feet")
  27140. },
  27141. ]
  27142. ))
  27143. characterMakers.push(() => makeCharacter(
  27144. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27145. {
  27146. goddess: {
  27147. height: math.unit(600, "feet"),
  27148. weight: math.unit(2000000, "tons"),
  27149. name: "Goddess",
  27150. image: {
  27151. source: "./media/characters/lady-kubwa/goddess.svg",
  27152. extra: 1240.5 / 1223,
  27153. bottom: 22 / 1263
  27154. }
  27155. },
  27156. goddesser: {
  27157. height: math.unit(900, "feet"),
  27158. weight: math.unit(20000000, "lb"),
  27159. name: "Goddess-er",
  27160. image: {
  27161. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27162. extra: 899 / 888,
  27163. bottom: 12.6 / 912
  27164. }
  27165. },
  27166. },
  27167. [
  27168. {
  27169. name: "Macro",
  27170. height: math.unit(600, "feet"),
  27171. default: true
  27172. },
  27173. {
  27174. name: "Megamacro",
  27175. height: math.unit(250, "miles")
  27176. },
  27177. ]
  27178. ))
  27179. characterMakers.push(() => makeCharacter(
  27180. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27181. {
  27182. front: {
  27183. height: math.unit(7 + 7 / 12, "feet"),
  27184. weight: math.unit(250, "lb"),
  27185. name: "Front",
  27186. image: {
  27187. source: "./media/characters/tala-grovehorn/front.svg",
  27188. extra: 2636 / 2525,
  27189. bottom: 147 / 2781
  27190. }
  27191. },
  27192. back: {
  27193. height: math.unit(7 + 7 / 12, "feet"),
  27194. weight: math.unit(250, "lb"),
  27195. name: "Back",
  27196. image: {
  27197. source: "./media/characters/tala-grovehorn/back.svg",
  27198. extra: 2635 / 2539,
  27199. bottom: 100 / 2732.8
  27200. }
  27201. },
  27202. mouth: {
  27203. height: math.unit(1.15, "feet"),
  27204. name: "Mouth",
  27205. image: {
  27206. source: "./media/characters/tala-grovehorn/mouth.svg"
  27207. }
  27208. },
  27209. dick: {
  27210. height: math.unit(2.36, "feet"),
  27211. name: "Dick",
  27212. image: {
  27213. source: "./media/characters/tala-grovehorn/dick.svg"
  27214. }
  27215. },
  27216. slit: {
  27217. height: math.unit(0.61, "feet"),
  27218. name: "Slit",
  27219. image: {
  27220. source: "./media/characters/tala-grovehorn/slit.svg"
  27221. }
  27222. },
  27223. },
  27224. [
  27225. ]
  27226. ))
  27227. characterMakers.push(() => makeCharacter(
  27228. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27229. {
  27230. front: {
  27231. height: math.unit(7 + 7 / 12, "feet"),
  27232. weight: math.unit(225, "lb"),
  27233. name: "Front",
  27234. image: {
  27235. source: "./media/characters/epona/front.svg",
  27236. extra: 2445 / 2290,
  27237. bottom: 251 / 2696
  27238. }
  27239. },
  27240. back: {
  27241. height: math.unit(7 + 7 / 12, "feet"),
  27242. weight: math.unit(225, "lb"),
  27243. name: "Back",
  27244. image: {
  27245. source: "./media/characters/epona/back.svg",
  27246. extra: 2546 / 2408,
  27247. bottom: 44 / 2589
  27248. }
  27249. },
  27250. genitals: {
  27251. height: math.unit(1.5, "feet"),
  27252. name: "Genitals",
  27253. image: {
  27254. source: "./media/characters/epona/genitals.svg"
  27255. }
  27256. },
  27257. },
  27258. [
  27259. {
  27260. name: "Normal",
  27261. height: math.unit(7 + 7 / 12, "feet"),
  27262. default: true
  27263. },
  27264. ]
  27265. ))
  27266. characterMakers.push(() => makeCharacter(
  27267. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27268. {
  27269. front: {
  27270. height: math.unit(7, "feet"),
  27271. weight: math.unit(518, "lb"),
  27272. name: "Front",
  27273. image: {
  27274. source: "./media/characters/avia-bloodbourn/front.svg",
  27275. extra: 1466 / 1350,
  27276. bottom: 65 / 1527
  27277. }
  27278. },
  27279. },
  27280. [
  27281. ]
  27282. ))
  27283. characterMakers.push(() => makeCharacter(
  27284. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27285. {
  27286. front: {
  27287. height: math.unit(9.35, "feet"),
  27288. weight: math.unit(600, "lb"),
  27289. name: "Front",
  27290. image: {
  27291. source: "./media/characters/amera/front.svg",
  27292. extra: 891 / 818,
  27293. bottom: 30 / 922.7
  27294. }
  27295. },
  27296. back: {
  27297. height: math.unit(9.35, "feet"),
  27298. weight: math.unit(600, "lb"),
  27299. name: "Back",
  27300. image: {
  27301. source: "./media/characters/amera/back.svg",
  27302. extra: 876 / 824,
  27303. bottom: 6.8 / 884
  27304. }
  27305. },
  27306. dick: {
  27307. height: math.unit(2.14, "feet"),
  27308. name: "Dick",
  27309. image: {
  27310. source: "./media/characters/amera/dick.svg"
  27311. }
  27312. },
  27313. },
  27314. [
  27315. {
  27316. name: "Normal",
  27317. height: math.unit(9.35, "feet"),
  27318. default: true
  27319. },
  27320. ]
  27321. ))
  27322. characterMakers.push(() => makeCharacter(
  27323. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27324. {
  27325. kneeling: {
  27326. height: math.unit(3 + 4 / 12, "feet"),
  27327. weight: math.unit(90, "lb"),
  27328. name: "Kneeling",
  27329. image: {
  27330. source: "./media/characters/rosewen/kneeling.svg",
  27331. extra: 1835 / 1571,
  27332. bottom: 27.7 / 1862
  27333. }
  27334. },
  27335. },
  27336. [
  27337. {
  27338. name: "Normal",
  27339. height: math.unit(3 + 4 / 12, "feet"),
  27340. default: true
  27341. },
  27342. ]
  27343. ))
  27344. characterMakers.push(() => makeCharacter(
  27345. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27346. {
  27347. front: {
  27348. height: math.unit(5 + 10 / 12, "feet"),
  27349. weight: math.unit(200, "lb"),
  27350. name: "Front",
  27351. image: {
  27352. source: "./media/characters/sabah/front.svg",
  27353. extra: 849 / 763,
  27354. bottom: 33.9 / 881
  27355. }
  27356. },
  27357. },
  27358. [
  27359. {
  27360. name: "Normal",
  27361. height: math.unit(5 + 10 / 12, "feet"),
  27362. default: true
  27363. },
  27364. ]
  27365. ))
  27366. characterMakers.push(() => makeCharacter(
  27367. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27368. {
  27369. front: {
  27370. height: math.unit(3 + 5 / 12, "feet"),
  27371. weight: math.unit(40, "kg"),
  27372. name: "Front",
  27373. image: {
  27374. source: "./media/characters/purple-flame/front.svg",
  27375. extra: 1577 / 1412,
  27376. bottom: 97 / 1694
  27377. }
  27378. },
  27379. frontDressed: {
  27380. height: math.unit(3 + 5 / 12, "feet"),
  27381. weight: math.unit(40, "kg"),
  27382. name: "Front (Dressed)",
  27383. image: {
  27384. source: "./media/characters/purple-flame/front-dressed.svg",
  27385. extra: 1577 / 1412,
  27386. bottom: 97 / 1694
  27387. }
  27388. },
  27389. headphones: {
  27390. height: math.unit(0.85, "feet"),
  27391. name: "Headphones",
  27392. image: {
  27393. source: "./media/characters/purple-flame/headphones.svg"
  27394. }
  27395. },
  27396. },
  27397. [
  27398. {
  27399. name: "Really Small",
  27400. height: math.unit(5, "cm")
  27401. },
  27402. {
  27403. name: "Micro",
  27404. height: math.unit(1 + 5 / 12, "feet")
  27405. },
  27406. {
  27407. name: "Normal",
  27408. height: math.unit(3 + 5 / 12, "feet"),
  27409. default: true
  27410. },
  27411. {
  27412. name: "Minimacro",
  27413. height: math.unit(125, "feet")
  27414. },
  27415. {
  27416. name: "Macro",
  27417. height: math.unit(0.5, "miles")
  27418. },
  27419. {
  27420. name: "Megamacro",
  27421. height: math.unit(50, "miles")
  27422. },
  27423. {
  27424. name: "Gigantic",
  27425. height: math.unit(750, "miles")
  27426. },
  27427. {
  27428. name: "Planetary",
  27429. height: math.unit(15000, "miles")
  27430. },
  27431. ]
  27432. ))
  27433. characterMakers.push(() => makeCharacter(
  27434. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27435. {
  27436. front: {
  27437. height: math.unit(14, "feet"),
  27438. weight: math.unit(959, "lb"),
  27439. name: "Front",
  27440. image: {
  27441. source: "./media/characters/arsenal/front.svg",
  27442. extra: 2357 / 2157,
  27443. bottom: 93 / 2458
  27444. }
  27445. },
  27446. },
  27447. [
  27448. {
  27449. name: "Normal",
  27450. height: math.unit(14, "feet"),
  27451. default: true
  27452. },
  27453. ]
  27454. ))
  27455. characterMakers.push(() => makeCharacter(
  27456. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27457. {
  27458. front: {
  27459. height: math.unit(6, "feet"),
  27460. weight: math.unit(150, "lb"),
  27461. name: "Front",
  27462. image: {
  27463. source: "./media/characters/adira/front.svg",
  27464. extra: 1078 / 1029,
  27465. bottom: 87 / 1166
  27466. }
  27467. },
  27468. },
  27469. [
  27470. {
  27471. name: "Micro",
  27472. height: math.unit(4, "inches"),
  27473. default: true
  27474. },
  27475. {
  27476. name: "Macro",
  27477. height: math.unit(50, "feet")
  27478. },
  27479. ]
  27480. ))
  27481. characterMakers.push(() => makeCharacter(
  27482. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27483. {
  27484. front: {
  27485. height: math.unit(16, "feet"),
  27486. weight: math.unit(1000, "lb"),
  27487. name: "Front",
  27488. image: {
  27489. source: "./media/characters/grim/front.svg",
  27490. extra: 622 / 614,
  27491. bottom: 18.1 / 642
  27492. }
  27493. },
  27494. back: {
  27495. height: math.unit(16, "feet"),
  27496. weight: math.unit(1000, "lb"),
  27497. name: "Back",
  27498. image: {
  27499. source: "./media/characters/grim/back.svg",
  27500. extra: 610.6 / 602,
  27501. bottom: 40.8 / 652
  27502. }
  27503. },
  27504. hunched: {
  27505. height: math.unit(9.75, "feet"),
  27506. weight: math.unit(1000, "lb"),
  27507. name: "Hunched",
  27508. image: {
  27509. source: "./media/characters/grim/hunched.svg",
  27510. extra: 304 / 297,
  27511. bottom: 35.4 / 394
  27512. }
  27513. },
  27514. },
  27515. [
  27516. {
  27517. name: "Normal",
  27518. height: math.unit(16, "feet"),
  27519. default: true
  27520. },
  27521. ]
  27522. ))
  27523. characterMakers.push(() => makeCharacter(
  27524. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27525. {
  27526. front: {
  27527. height: math.unit(2.3, "meters"),
  27528. weight: math.unit(300, "lb"),
  27529. name: "Front",
  27530. image: {
  27531. source: "./media/characters/sinja/front-sfw.svg",
  27532. extra: 1393 / 1294,
  27533. bottom: 70 / 1463
  27534. }
  27535. },
  27536. frontNsfw: {
  27537. height: math.unit(2.3, "meters"),
  27538. weight: math.unit(300, "lb"),
  27539. name: "Front (NSFW)",
  27540. image: {
  27541. source: "./media/characters/sinja/front-nsfw.svg",
  27542. extra: 1393 / 1294,
  27543. bottom: 70 / 1463
  27544. }
  27545. },
  27546. back: {
  27547. height: math.unit(2.3, "meters"),
  27548. weight: math.unit(300, "lb"),
  27549. name: "Back",
  27550. image: {
  27551. source: "./media/characters/sinja/back.svg",
  27552. extra: 1393 / 1294,
  27553. bottom: 70 / 1463
  27554. }
  27555. },
  27556. head: {
  27557. height: math.unit(1.771, "feet"),
  27558. name: "Head",
  27559. image: {
  27560. source: "./media/characters/sinja/head.svg"
  27561. }
  27562. },
  27563. slit: {
  27564. height: math.unit(0.8, "feet"),
  27565. name: "Slit",
  27566. image: {
  27567. source: "./media/characters/sinja/slit.svg"
  27568. }
  27569. },
  27570. },
  27571. [
  27572. {
  27573. name: "Normal",
  27574. height: math.unit(2.3, "meters")
  27575. },
  27576. {
  27577. name: "Macro",
  27578. height: math.unit(91, "meters"),
  27579. default: true
  27580. },
  27581. {
  27582. name: "Megamacro",
  27583. height: math.unit(91440, "meters")
  27584. },
  27585. {
  27586. name: "Gigamacro",
  27587. height: math.unit(60960000, "meters")
  27588. },
  27589. {
  27590. name: "Teramacro",
  27591. height: math.unit(9144000000, "meters")
  27592. },
  27593. ]
  27594. ))
  27595. characterMakers.push(() => makeCharacter(
  27596. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27597. {
  27598. front: {
  27599. height: math.unit(1.7, "meters"),
  27600. weight: math.unit(130, "lb"),
  27601. name: "Front",
  27602. image: {
  27603. source: "./media/characters/kyu/front.svg",
  27604. extra: 415 / 395,
  27605. bottom: 5 / 420
  27606. }
  27607. },
  27608. head: {
  27609. height: math.unit(1.75, "feet"),
  27610. name: "Head",
  27611. image: {
  27612. source: "./media/characters/kyu/head.svg"
  27613. }
  27614. },
  27615. foot: {
  27616. height: math.unit(0.81, "feet"),
  27617. name: "Foot",
  27618. image: {
  27619. source: "./media/characters/kyu/foot.svg"
  27620. }
  27621. },
  27622. },
  27623. [
  27624. {
  27625. name: "Normal",
  27626. height: math.unit(1.7, "meters")
  27627. },
  27628. {
  27629. name: "Macro",
  27630. height: math.unit(131, "feet"),
  27631. default: true
  27632. },
  27633. {
  27634. name: "Megamacro",
  27635. height: math.unit(91440, "meters")
  27636. },
  27637. {
  27638. name: "Gigamacro",
  27639. height: math.unit(60960000, "meters")
  27640. },
  27641. {
  27642. name: "Teramacro",
  27643. height: math.unit(9144000000, "meters")
  27644. },
  27645. ]
  27646. ))
  27647. characterMakers.push(() => makeCharacter(
  27648. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27649. {
  27650. front: {
  27651. height: math.unit(7 + 1 / 12, "feet"),
  27652. weight: math.unit(250, "lb"),
  27653. name: "Front",
  27654. image: {
  27655. source: "./media/characters/joey/front.svg",
  27656. extra: 1791 / 1537,
  27657. bottom: 28 / 1816
  27658. }
  27659. },
  27660. },
  27661. [
  27662. {
  27663. name: "Micro",
  27664. height: math.unit(3, "inches")
  27665. },
  27666. {
  27667. name: "Normal",
  27668. height: math.unit(7 + 1 / 12, "feet"),
  27669. default: true
  27670. },
  27671. ]
  27672. ))
  27673. characterMakers.push(() => makeCharacter(
  27674. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27675. {
  27676. front: {
  27677. height: math.unit(165, "cm"),
  27678. weight: math.unit(140, "lb"),
  27679. name: "Front",
  27680. image: {
  27681. source: "./media/characters/sam-evans/front.svg",
  27682. extra: 3417 / 3230,
  27683. bottom: 41.3 / 3417
  27684. }
  27685. },
  27686. frontSixTails: {
  27687. height: math.unit(165, "cm"),
  27688. weight: math.unit(140, "lb"),
  27689. name: "Front-six-tails",
  27690. image: {
  27691. source: "./media/characters/sam-evans/front-six-tails.svg",
  27692. extra: 3417 / 3230,
  27693. bottom: 41.3 / 3417
  27694. }
  27695. },
  27696. back: {
  27697. height: math.unit(165, "cm"),
  27698. weight: math.unit(140, "lb"),
  27699. name: "Back",
  27700. image: {
  27701. source: "./media/characters/sam-evans/back.svg",
  27702. extra: 3227 / 3032,
  27703. bottom: 6.8 / 3234
  27704. }
  27705. },
  27706. face: {
  27707. height: math.unit(0.68, "feet"),
  27708. name: "Face",
  27709. image: {
  27710. source: "./media/characters/sam-evans/face.svg"
  27711. }
  27712. },
  27713. },
  27714. [
  27715. {
  27716. name: "Normal",
  27717. height: math.unit(165, "cm"),
  27718. default: true
  27719. },
  27720. {
  27721. name: "Macro",
  27722. height: math.unit(100, "meters")
  27723. },
  27724. {
  27725. name: "Macro+",
  27726. height: math.unit(800, "meters")
  27727. },
  27728. {
  27729. name: "Macro++",
  27730. height: math.unit(3, "km")
  27731. },
  27732. {
  27733. name: "Macro+++",
  27734. height: math.unit(30, "km")
  27735. },
  27736. ]
  27737. ))
  27738. characterMakers.push(() => makeCharacter(
  27739. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27740. {
  27741. front: {
  27742. height: math.unit(10, "feet"),
  27743. weight: math.unit(750, "lb"),
  27744. name: "Front",
  27745. image: {
  27746. source: "./media/characters/juliet-a/front.svg",
  27747. extra: 1766 / 1720,
  27748. bottom: 43 / 1809
  27749. }
  27750. },
  27751. back: {
  27752. height: math.unit(10, "feet"),
  27753. weight: math.unit(750, "lb"),
  27754. name: "Back",
  27755. image: {
  27756. source: "./media/characters/juliet-a/back.svg",
  27757. extra: 1781 / 1734,
  27758. bottom: 35 / 1810,
  27759. }
  27760. },
  27761. },
  27762. [
  27763. {
  27764. name: "Normal",
  27765. height: math.unit(10, "feet"),
  27766. default: true
  27767. },
  27768. {
  27769. name: "Dragon Form",
  27770. height: math.unit(250, "feet")
  27771. },
  27772. {
  27773. name: "Macro",
  27774. height: math.unit(1000, "feet")
  27775. },
  27776. {
  27777. name: "Megamacro",
  27778. height: math.unit(10000, "feet")
  27779. }
  27780. ]
  27781. ))
  27782. characterMakers.push(() => makeCharacter(
  27783. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27784. {
  27785. regular: {
  27786. height: math.unit(7 + 3 / 12, "feet"),
  27787. weight: math.unit(260, "lb"),
  27788. name: "Regular",
  27789. image: {
  27790. source: "./media/characters/wild/regular.svg",
  27791. extra: 97.45 / 92,
  27792. bottom: 6.8 / 104.3
  27793. }
  27794. },
  27795. biggums: {
  27796. height: math.unit(8 + 6 / 12, "feet"),
  27797. weight: math.unit(425, "lb"),
  27798. name: "Biggums",
  27799. image: {
  27800. source: "./media/characters/wild/biggums.svg",
  27801. extra: 97.45 / 92,
  27802. bottom: 7.5 / 132.34
  27803. }
  27804. },
  27805. mawRegular: {
  27806. height: math.unit(1.24, "feet"),
  27807. name: "Maw (Regular)",
  27808. image: {
  27809. source: "./media/characters/wild/maw.svg"
  27810. }
  27811. },
  27812. mawBiggums: {
  27813. height: math.unit(1.47, "feet"),
  27814. name: "Maw (Biggums)",
  27815. image: {
  27816. source: "./media/characters/wild/maw.svg"
  27817. }
  27818. },
  27819. },
  27820. [
  27821. {
  27822. name: "Normal",
  27823. height: math.unit(7 + 3 / 12, "feet"),
  27824. default: true
  27825. },
  27826. ]
  27827. ))
  27828. characterMakers.push(() => makeCharacter(
  27829. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27830. {
  27831. front: {
  27832. height: math.unit(2.5, "meters"),
  27833. weight: math.unit(200, "kg"),
  27834. name: "Front",
  27835. image: {
  27836. source: "./media/characters/vidar/front.svg",
  27837. extra: 2994 / 2795,
  27838. bottom: 56 / 3061
  27839. }
  27840. },
  27841. back: {
  27842. height: math.unit(2.5, "meters"),
  27843. weight: math.unit(200, "kg"),
  27844. name: "Back",
  27845. image: {
  27846. source: "./media/characters/vidar/back.svg",
  27847. extra: 3131 / 2928,
  27848. bottom: 13.5 / 3141.5
  27849. }
  27850. },
  27851. feral: {
  27852. height: math.unit(2.5, "meters"),
  27853. weight: math.unit(2000, "kg"),
  27854. name: "Feral",
  27855. image: {
  27856. source: "./media/characters/vidar/feral.svg",
  27857. extra: 2790 / 1765,
  27858. bottom: 6 / 2796
  27859. }
  27860. },
  27861. },
  27862. [
  27863. {
  27864. name: "Normal",
  27865. height: math.unit(2.5, "meters"),
  27866. default: true
  27867. },
  27868. {
  27869. name: "Macro",
  27870. height: math.unit(100, "meters")
  27871. },
  27872. ]
  27873. ))
  27874. characterMakers.push(() => makeCharacter(
  27875. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27876. {
  27877. front: {
  27878. height: math.unit(5 + 9 / 12, "feet"),
  27879. weight: math.unit(120, "lb"),
  27880. name: "Front",
  27881. image: {
  27882. source: "./media/characters/ash/front.svg",
  27883. extra: 2189 / 1961,
  27884. bottom: 5.2 / 2194
  27885. }
  27886. },
  27887. },
  27888. [
  27889. {
  27890. name: "Normal",
  27891. height: math.unit(5 + 9 / 12, "feet"),
  27892. default: true
  27893. },
  27894. ]
  27895. ))
  27896. characterMakers.push(() => makeCharacter(
  27897. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27898. {
  27899. front: {
  27900. height: math.unit(9, "feet"),
  27901. weight: math.unit(10000, "lb"),
  27902. name: "Front",
  27903. image: {
  27904. source: "./media/characters/gygabite/front.svg",
  27905. bottom: 31.7 / 537.8,
  27906. extra: 505 / 370
  27907. }
  27908. },
  27909. },
  27910. [
  27911. {
  27912. name: "Normal",
  27913. height: math.unit(9, "feet"),
  27914. default: true
  27915. },
  27916. ]
  27917. ))
  27918. characterMakers.push(() => makeCharacter(
  27919. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27920. {
  27921. front: {
  27922. height: math.unit(12, "feet"),
  27923. weight: math.unit(35000, "lb"),
  27924. name: "Front",
  27925. image: {
  27926. source: "./media/characters/p0tat0/front.svg",
  27927. extra: 1065 / 921,
  27928. bottom: 55.7 / 1121.25
  27929. }
  27930. },
  27931. },
  27932. [
  27933. {
  27934. name: "Normal",
  27935. height: math.unit(12, "feet"),
  27936. default: true
  27937. },
  27938. ]
  27939. ))
  27940. characterMakers.push(() => makeCharacter(
  27941. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27942. {
  27943. side: {
  27944. height: math.unit(6.5, "feet"),
  27945. weight: math.unit(800, "lb"),
  27946. name: "Side",
  27947. image: {
  27948. source: "./media/characters/dusk/side.svg",
  27949. extra: 615 / 373,
  27950. bottom: 53 / 664
  27951. }
  27952. },
  27953. sitting: {
  27954. height: math.unit(7, "feet"),
  27955. weight: math.unit(800, "lb"),
  27956. name: "Sitting",
  27957. image: {
  27958. source: "./media/characters/dusk/sitting.svg",
  27959. extra: 753 / 425,
  27960. bottom: 33 / 774
  27961. }
  27962. },
  27963. head: {
  27964. height: math.unit(6.1, "feet"),
  27965. name: "Head",
  27966. image: {
  27967. source: "./media/characters/dusk/head.svg"
  27968. }
  27969. },
  27970. },
  27971. [
  27972. {
  27973. name: "Normal",
  27974. height: math.unit(7, "feet"),
  27975. default: true
  27976. },
  27977. ]
  27978. ))
  27979. characterMakers.push(() => makeCharacter(
  27980. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27981. {
  27982. front: {
  27983. height: math.unit(15, "feet"),
  27984. weight: math.unit(7000, "lb"),
  27985. name: "Front",
  27986. image: {
  27987. source: "./media/characters/jay-direwolf/front.svg",
  27988. extra: 1810 / 1732,
  27989. bottom: 66 / 1892
  27990. }
  27991. },
  27992. },
  27993. [
  27994. {
  27995. name: "Normal",
  27996. height: math.unit(15, "feet"),
  27997. default: true
  27998. },
  27999. ]
  28000. ))
  28001. characterMakers.push(() => makeCharacter(
  28002. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28003. {
  28004. front: {
  28005. height: math.unit(4 + 9 / 12, "feet"),
  28006. weight: math.unit(130, "lb"),
  28007. name: "Front",
  28008. image: {
  28009. source: "./media/characters/anchovie/front.svg",
  28010. extra: 382 / 350,
  28011. bottom: 25 / 409
  28012. }
  28013. },
  28014. back: {
  28015. height: math.unit(4 + 9 / 12, "feet"),
  28016. weight: math.unit(130, "lb"),
  28017. name: "Back",
  28018. image: {
  28019. source: "./media/characters/anchovie/back.svg",
  28020. extra: 385 / 352,
  28021. bottom: 16.6 / 402
  28022. }
  28023. },
  28024. frontDressed: {
  28025. height: math.unit(4 + 9 / 12, "feet"),
  28026. weight: math.unit(130, "lb"),
  28027. name: "Front (Dressed)",
  28028. image: {
  28029. source: "./media/characters/anchovie/front-dressed.svg",
  28030. extra: 382 / 350,
  28031. bottom: 25 / 409
  28032. }
  28033. },
  28034. backDressed: {
  28035. height: math.unit(4 + 9 / 12, "feet"),
  28036. weight: math.unit(130, "lb"),
  28037. name: "Back (Dressed)",
  28038. image: {
  28039. source: "./media/characters/anchovie/back-dressed.svg",
  28040. extra: 385 / 352,
  28041. bottom: 16.6 / 402
  28042. }
  28043. },
  28044. },
  28045. [
  28046. {
  28047. name: "Micro",
  28048. height: math.unit(6.4, "inches")
  28049. },
  28050. {
  28051. name: "Normal",
  28052. height: math.unit(4 + 9 / 12, "feet"),
  28053. default: true
  28054. },
  28055. ]
  28056. ))
  28057. characterMakers.push(() => makeCharacter(
  28058. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28059. {
  28060. front: {
  28061. height: math.unit(2, "meters"),
  28062. weight: math.unit(180, "lb"),
  28063. name: "Front",
  28064. image: {
  28065. source: "./media/characters/acidrenamon/front.svg",
  28066. extra: 987 / 890,
  28067. bottom: 22.8 / 1009
  28068. }
  28069. },
  28070. back: {
  28071. height: math.unit(2, "meters"),
  28072. weight: math.unit(180, "lb"),
  28073. name: "Back",
  28074. image: {
  28075. source: "./media/characters/acidrenamon/back.svg",
  28076. extra: 983 / 891,
  28077. bottom: 8.4 / 992
  28078. }
  28079. },
  28080. head: {
  28081. height: math.unit(1.92, "feet"),
  28082. name: "Head",
  28083. image: {
  28084. source: "./media/characters/acidrenamon/head.svg"
  28085. }
  28086. },
  28087. rump: {
  28088. height: math.unit(1.72, "feet"),
  28089. name: "Rump",
  28090. image: {
  28091. source: "./media/characters/acidrenamon/rump.svg"
  28092. }
  28093. },
  28094. tail: {
  28095. height: math.unit(4.2, "feet"),
  28096. name: "Tail",
  28097. image: {
  28098. source: "./media/characters/acidrenamon/tail.svg"
  28099. }
  28100. },
  28101. },
  28102. [
  28103. {
  28104. name: "Normal",
  28105. height: math.unit(2, "meters"),
  28106. default: true
  28107. },
  28108. {
  28109. name: "Minimacro",
  28110. height: math.unit(7, "meters")
  28111. },
  28112. {
  28113. name: "Macro",
  28114. height: math.unit(200, "meters")
  28115. },
  28116. {
  28117. name: "Gigamacro",
  28118. height: math.unit(0.2, "earths")
  28119. },
  28120. ]
  28121. ))
  28122. characterMakers.push(() => makeCharacter(
  28123. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28124. {
  28125. front: {
  28126. height: math.unit(152, "feet"),
  28127. name: "Front",
  28128. image: {
  28129. source: "./media/characters/kenzie-lee/front.svg",
  28130. extra: 1869/1774,
  28131. bottom: 128/1997
  28132. }
  28133. },
  28134. side: {
  28135. height: math.unit(86, "feet"),
  28136. name: "Side",
  28137. image: {
  28138. source: "./media/characters/kenzie-lee/side.svg",
  28139. extra: 930/815,
  28140. bottom: 177/1107
  28141. }
  28142. },
  28143. paw: {
  28144. height: math.unit(15, "feet"),
  28145. name: "Paw",
  28146. image: {
  28147. source: "./media/characters/kenzie-lee/paw.svg"
  28148. }
  28149. },
  28150. },
  28151. [
  28152. {
  28153. name: "Micro",
  28154. height: math.unit(1.5, "inches")
  28155. },
  28156. {
  28157. name: "Normal",
  28158. height: math.unit(152, "feet"),
  28159. default: true
  28160. },
  28161. {
  28162. name: "Megamacro",
  28163. height: math.unit(7, "miles")
  28164. },
  28165. {
  28166. name: "Gigamacro",
  28167. height: math.unit(8000, "miles")
  28168. },
  28169. ]
  28170. ))
  28171. characterMakers.push(() => makeCharacter(
  28172. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28173. {
  28174. side: {
  28175. height: math.unit(6, "feet"),
  28176. weight: math.unit(150, "lb"),
  28177. name: "Side",
  28178. image: {
  28179. source: "./media/characters/withers/side.svg",
  28180. extra: 1830 / 1728,
  28181. bottom: 96 / 1927
  28182. }
  28183. },
  28184. front: {
  28185. height: math.unit(6, "feet"),
  28186. weight: math.unit(150, "lb"),
  28187. name: "Front",
  28188. image: {
  28189. source: "./media/characters/withers/front.svg",
  28190. extra: 1514 / 1438,
  28191. bottom: 118 / 1632
  28192. }
  28193. },
  28194. },
  28195. [
  28196. {
  28197. name: "Macro",
  28198. height: math.unit(168, "feet"),
  28199. default: true
  28200. },
  28201. {
  28202. name: "Megamacro",
  28203. height: math.unit(15, "miles")
  28204. }
  28205. ]
  28206. ))
  28207. characterMakers.push(() => makeCharacter(
  28208. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28209. {
  28210. front: {
  28211. height: math.unit(6 + 7 / 12, "feet"),
  28212. weight: math.unit(250, "lb"),
  28213. name: "Front",
  28214. image: {
  28215. source: "./media/characters/nemoskii/front.svg",
  28216. extra: 2270 / 1734,
  28217. bottom: 86 / 2354
  28218. }
  28219. },
  28220. back: {
  28221. height: math.unit(6 + 7 / 12, "feet"),
  28222. weight: math.unit(250, "lb"),
  28223. name: "Back",
  28224. image: {
  28225. source: "./media/characters/nemoskii/back.svg",
  28226. extra: 1845 / 1788,
  28227. bottom: 10.5 / 1852
  28228. }
  28229. },
  28230. head: {
  28231. height: math.unit(1.31, "feet"),
  28232. name: "Head",
  28233. image: {
  28234. source: "./media/characters/nemoskii/head.svg"
  28235. }
  28236. },
  28237. },
  28238. [
  28239. {
  28240. name: "Micro",
  28241. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28242. },
  28243. {
  28244. name: "Normal",
  28245. height: math.unit(6 + 7 / 12, "feet"),
  28246. default: true
  28247. },
  28248. {
  28249. name: "Macro",
  28250. height: math.unit((6 + 7 / 12) * 150, "feet")
  28251. },
  28252. {
  28253. name: "Macro+",
  28254. height: math.unit((6 + 7 / 12) * 500, "feet")
  28255. },
  28256. {
  28257. name: "Megamacro",
  28258. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28259. },
  28260. ]
  28261. ))
  28262. characterMakers.push(() => makeCharacter(
  28263. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28264. {
  28265. front: {
  28266. height: math.unit(1, "mile"),
  28267. weight: math.unit(265261.9, "lb"),
  28268. name: "Front",
  28269. image: {
  28270. source: "./media/characters/shui/front.svg",
  28271. extra: 1633 / 1564,
  28272. bottom: 91.5 / 1726
  28273. }
  28274. },
  28275. },
  28276. [
  28277. {
  28278. name: "Macro",
  28279. height: math.unit(1, "mile"),
  28280. default: true
  28281. },
  28282. ]
  28283. ))
  28284. characterMakers.push(() => makeCharacter(
  28285. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28286. {
  28287. front: {
  28288. height: math.unit(12 + 6 / 12, "feet"),
  28289. weight: math.unit(1342, "lb"),
  28290. name: "Front",
  28291. image: {
  28292. source: "./media/characters/arokh-takakura/front.svg",
  28293. extra: 1089 / 1043,
  28294. bottom: 77.4 / 1176.7
  28295. }
  28296. },
  28297. back: {
  28298. height: math.unit(12 + 6 / 12, "feet"),
  28299. weight: math.unit(1342, "lb"),
  28300. name: "Back",
  28301. image: {
  28302. source: "./media/characters/arokh-takakura/back.svg",
  28303. extra: 1046 / 1019,
  28304. bottom: 102 / 1150
  28305. }
  28306. },
  28307. },
  28308. [
  28309. {
  28310. name: "Big",
  28311. height: math.unit(12 + 6 / 12, "feet"),
  28312. default: true
  28313. },
  28314. ]
  28315. ))
  28316. characterMakers.push(() => makeCharacter(
  28317. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28318. {
  28319. front: {
  28320. height: math.unit(5 + 6 / 12, "feet"),
  28321. weight: math.unit(150, "lb"),
  28322. name: "Front",
  28323. image: {
  28324. source: "./media/characters/theo/front.svg",
  28325. extra: 1184 / 1131,
  28326. bottom: 7.4 / 1191
  28327. }
  28328. },
  28329. },
  28330. [
  28331. {
  28332. name: "Micro",
  28333. height: math.unit(5, "inches")
  28334. },
  28335. {
  28336. name: "Normal",
  28337. height: math.unit(5 + 6 / 12, "feet"),
  28338. default: true
  28339. },
  28340. ]
  28341. ))
  28342. characterMakers.push(() => makeCharacter(
  28343. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28344. {
  28345. front: {
  28346. height: math.unit(5 + 9 / 12, "feet"),
  28347. weight: math.unit(130, "lb"),
  28348. name: "Front",
  28349. image: {
  28350. source: "./media/characters/cecelia-swift/front.svg",
  28351. extra: 502 / 484,
  28352. bottom: 23 / 523
  28353. }
  28354. },
  28355. back: {
  28356. height: math.unit(5 + 9 / 12, "feet"),
  28357. weight: math.unit(130, "lb"),
  28358. name: "Back",
  28359. image: {
  28360. source: "./media/characters/cecelia-swift/back.svg",
  28361. extra: 499 / 485,
  28362. bottom: 12 / 511
  28363. }
  28364. },
  28365. head: {
  28366. height: math.unit(0.90, "feet"),
  28367. name: "Head",
  28368. image: {
  28369. source: "./media/characters/cecelia-swift/head.svg"
  28370. }
  28371. },
  28372. rump: {
  28373. height: math.unit(1.75, "feet"),
  28374. name: "Rump",
  28375. image: {
  28376. source: "./media/characters/cecelia-swift/rump.svg"
  28377. }
  28378. },
  28379. },
  28380. [
  28381. {
  28382. name: "Normal",
  28383. height: math.unit(5 + 9 / 12, "feet"),
  28384. default: true
  28385. },
  28386. {
  28387. name: "Big",
  28388. height: math.unit(50, "feet")
  28389. },
  28390. {
  28391. name: "Macro",
  28392. height: math.unit(100, "feet")
  28393. },
  28394. {
  28395. name: "Macro+",
  28396. height: math.unit(500, "feet")
  28397. },
  28398. {
  28399. name: "Macro++",
  28400. height: math.unit(1000, "feet")
  28401. },
  28402. ]
  28403. ))
  28404. characterMakers.push(() => makeCharacter(
  28405. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28406. {
  28407. front: {
  28408. height: math.unit(6, "feet"),
  28409. weight: math.unit(150, "lb"),
  28410. name: "Front",
  28411. image: {
  28412. source: "./media/characters/kaunan/front.svg",
  28413. extra: 2890 / 2523,
  28414. bottom: 49 / 2939
  28415. }
  28416. },
  28417. },
  28418. [
  28419. {
  28420. name: "Macro",
  28421. height: math.unit(150, "feet"),
  28422. default: true
  28423. },
  28424. ]
  28425. ))
  28426. characterMakers.push(() => makeCharacter(
  28427. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28428. {
  28429. front: {
  28430. height: math.unit(175, "cm"),
  28431. weight: math.unit(60, "kg"),
  28432. name: "Front",
  28433. image: {
  28434. source: "./media/characters/fei/front.svg",
  28435. extra: 1873/1723,
  28436. bottom: 53/1926
  28437. }
  28438. },
  28439. },
  28440. [
  28441. {
  28442. name: "Mortal",
  28443. height: math.unit(175, "cm")
  28444. },
  28445. {
  28446. name: "Normal",
  28447. height: math.unit(3500, "m"),
  28448. default: true
  28449. },
  28450. {
  28451. name: "Stroll",
  28452. height: math.unit(17.5, "km")
  28453. },
  28454. {
  28455. name: "Showoff",
  28456. height: math.unit(175, "km")
  28457. },
  28458. ]
  28459. ))
  28460. characterMakers.push(() => makeCharacter(
  28461. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28462. {
  28463. front: {
  28464. height: math.unit(7, "feet"),
  28465. weight: math.unit(1000, "kg"),
  28466. name: "Front",
  28467. image: {
  28468. source: "./media/characters/edrax/front.svg",
  28469. extra: 2838 / 2550,
  28470. bottom: 130 / 2968
  28471. }
  28472. },
  28473. },
  28474. [
  28475. {
  28476. name: "Small",
  28477. height: math.unit(7, "feet")
  28478. },
  28479. {
  28480. name: "Normal",
  28481. height: math.unit(1500, "meters")
  28482. },
  28483. {
  28484. name: "Mega",
  28485. height: math.unit(12000000, "km"),
  28486. default: true
  28487. },
  28488. {
  28489. name: "Megamacro",
  28490. height: math.unit(10600000, "lightyears")
  28491. },
  28492. {
  28493. name: "Hypermacro",
  28494. height: math.unit(256, "yottameters")
  28495. },
  28496. ]
  28497. ))
  28498. characterMakers.push(() => makeCharacter(
  28499. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28500. {
  28501. front: {
  28502. height: math.unit(10, "feet"),
  28503. weight: math.unit(750, "lb"),
  28504. name: "Front",
  28505. image: {
  28506. source: "./media/characters/clove/front.svg",
  28507. extra: 1918/1751,
  28508. bottom: 52/1970
  28509. }
  28510. },
  28511. back: {
  28512. height: math.unit(10, "feet"),
  28513. weight: math.unit(750, "lb"),
  28514. name: "Back",
  28515. image: {
  28516. source: "./media/characters/clove/back.svg",
  28517. extra: 1912/1747,
  28518. bottom: 50/1962
  28519. }
  28520. },
  28521. },
  28522. [
  28523. {
  28524. name: "Normal",
  28525. height: math.unit(10, "feet"),
  28526. default: true
  28527. },
  28528. ]
  28529. ))
  28530. characterMakers.push(() => makeCharacter(
  28531. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28532. {
  28533. front: {
  28534. height: math.unit(4, "feet"),
  28535. weight: math.unit(50, "lb"),
  28536. name: "Front",
  28537. image: {
  28538. source: "./media/characters/alex-rabbit/front.svg",
  28539. extra: 507 / 458,
  28540. bottom: 18.5 / 527
  28541. }
  28542. },
  28543. back: {
  28544. height: math.unit(4, "feet"),
  28545. weight: math.unit(50, "lb"),
  28546. name: "Back",
  28547. image: {
  28548. source: "./media/characters/alex-rabbit/back.svg",
  28549. extra: 502 / 460,
  28550. bottom: 18.9 / 521
  28551. }
  28552. },
  28553. },
  28554. [
  28555. {
  28556. name: "Normal",
  28557. height: math.unit(4, "feet"),
  28558. default: true
  28559. },
  28560. ]
  28561. ))
  28562. characterMakers.push(() => makeCharacter(
  28563. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28564. {
  28565. front: {
  28566. height: math.unit(1 + 3 / 12, "feet"),
  28567. weight: math.unit(80, "lb"),
  28568. name: "Front",
  28569. image: {
  28570. source: "./media/characters/zander-rose/front.svg",
  28571. extra: 916 / 797,
  28572. bottom: 17 / 933
  28573. }
  28574. },
  28575. back: {
  28576. height: math.unit(1 + 3 / 12, "feet"),
  28577. weight: math.unit(80, "lb"),
  28578. name: "Back",
  28579. image: {
  28580. source: "./media/characters/zander-rose/back.svg",
  28581. extra: 903 / 779,
  28582. bottom: 31 / 934
  28583. }
  28584. },
  28585. },
  28586. [
  28587. {
  28588. name: "Normal",
  28589. height: math.unit(1 + 3 / 12, "feet"),
  28590. default: true
  28591. },
  28592. ]
  28593. ))
  28594. characterMakers.push(() => makeCharacter(
  28595. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28596. {
  28597. anthro: {
  28598. height: math.unit(6, "feet"),
  28599. weight: math.unit(150, "lb"),
  28600. name: "Anthro",
  28601. image: {
  28602. source: "./media/characters/razz/anthro.svg",
  28603. extra: 1437 / 1343,
  28604. bottom: 48 / 1485
  28605. }
  28606. },
  28607. feral: {
  28608. height: math.unit(6, "feet"),
  28609. weight: math.unit(150, "lb"),
  28610. name: "Feral",
  28611. image: {
  28612. source: "./media/characters/razz/feral.svg",
  28613. extra: 2569 / 1385,
  28614. bottom: 95 / 2664
  28615. }
  28616. },
  28617. },
  28618. [
  28619. {
  28620. name: "Normal",
  28621. height: math.unit(6, "feet"),
  28622. default: true
  28623. },
  28624. ]
  28625. ))
  28626. characterMakers.push(() => makeCharacter(
  28627. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28628. {
  28629. front: {
  28630. height: math.unit(9 + 4 / 12, "feet"),
  28631. weight: math.unit(500, "lb"),
  28632. name: "Front",
  28633. image: {
  28634. source: "./media/characters/morrigan/front.svg",
  28635. extra: 2707 / 2579,
  28636. bottom: 156 / 2863
  28637. }
  28638. },
  28639. },
  28640. [
  28641. {
  28642. name: "Normal",
  28643. height: math.unit(9 + 4 / 12, "feet"),
  28644. default: true
  28645. },
  28646. ]
  28647. ))
  28648. characterMakers.push(() => makeCharacter(
  28649. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28650. {
  28651. front: {
  28652. height: math.unit(5, "stories"),
  28653. weight: math.unit(4000, "lb"),
  28654. name: "Front",
  28655. image: {
  28656. source: "./media/characters/jenene/front.svg",
  28657. extra: 1780 / 1710,
  28658. bottom: 57 / 1837
  28659. }
  28660. },
  28661. },
  28662. [
  28663. {
  28664. name: "Normal",
  28665. height: math.unit(5, "stories"),
  28666. default: true
  28667. },
  28668. ]
  28669. ))
  28670. characterMakers.push(() => makeCharacter(
  28671. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28672. {
  28673. taurSfw: {
  28674. height: math.unit(10, "meters"),
  28675. weight: math.unit(17500, "kg"),
  28676. name: "Taur",
  28677. image: {
  28678. source: "./media/characters/faey/taur-sfw.svg",
  28679. extra: 1200 / 968,
  28680. bottom: 41 / 1241
  28681. }
  28682. },
  28683. chestmaw: {
  28684. height: math.unit(2.01, "meters"),
  28685. name: "Chestmaw",
  28686. image: {
  28687. source: "./media/characters/faey/chestmaw.svg"
  28688. }
  28689. },
  28690. foot: {
  28691. height: math.unit(2.43, "meters"),
  28692. name: "Foot",
  28693. image: {
  28694. source: "./media/characters/faey/foot.svg"
  28695. }
  28696. },
  28697. jaws: {
  28698. height: math.unit(1.66, "meters"),
  28699. name: "Jaws",
  28700. image: {
  28701. source: "./media/characters/faey/jaws.svg"
  28702. }
  28703. },
  28704. tongues: {
  28705. height: math.unit(2.01, "meters"),
  28706. name: "Tongues",
  28707. image: {
  28708. source: "./media/characters/faey/tongues.svg"
  28709. }
  28710. },
  28711. },
  28712. [
  28713. {
  28714. name: "Small",
  28715. height: math.unit(10, "meters"),
  28716. default: true
  28717. },
  28718. {
  28719. name: "Big",
  28720. height: math.unit(500000, "km")
  28721. },
  28722. ]
  28723. ))
  28724. characterMakers.push(() => makeCharacter(
  28725. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28726. {
  28727. front: {
  28728. height: math.unit(7, "feet"),
  28729. weight: math.unit(275, "lb"),
  28730. name: "Front",
  28731. image: {
  28732. source: "./media/characters/roku/front.svg",
  28733. extra: 903 / 878,
  28734. bottom: 37 / 940
  28735. }
  28736. },
  28737. },
  28738. [
  28739. {
  28740. name: "Normal",
  28741. height: math.unit(7, "feet"),
  28742. default: true
  28743. },
  28744. {
  28745. name: "Macro",
  28746. height: math.unit(500, "feet")
  28747. },
  28748. {
  28749. name: "Megamacro",
  28750. height: math.unit(200, "miles")
  28751. },
  28752. ]
  28753. ))
  28754. characterMakers.push(() => makeCharacter(
  28755. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28756. {
  28757. front: {
  28758. height: math.unit(6 + 2 / 12, "feet"),
  28759. weight: math.unit(150, "lb"),
  28760. name: "Front",
  28761. image: {
  28762. source: "./media/characters/lira/front.svg",
  28763. extra: 1727 / 1605,
  28764. bottom: 26 / 1753
  28765. }
  28766. },
  28767. back: {
  28768. height: math.unit(6 + 2 / 12, "feet"),
  28769. weight: math.unit(150, "lb"),
  28770. name: "Back",
  28771. image: {
  28772. source: "./media/characters/lira/back.svg",
  28773. extra: 1713/1621,
  28774. bottom: 20/1733
  28775. }
  28776. },
  28777. hand: {
  28778. height: math.unit(0.75, "feet"),
  28779. name: "Hand",
  28780. image: {
  28781. source: "./media/characters/lira/hand.svg"
  28782. }
  28783. },
  28784. maw: {
  28785. height: math.unit(0.65, "feet"),
  28786. name: "Maw",
  28787. image: {
  28788. source: "./media/characters/lira/maw.svg"
  28789. }
  28790. },
  28791. pawDigi: {
  28792. height: math.unit(1.6, "feet"),
  28793. name: "Paw Digi",
  28794. image: {
  28795. source: "./media/characters/lira/paw-digi.svg"
  28796. }
  28797. },
  28798. pawPlanti: {
  28799. height: math.unit(1.4, "feet"),
  28800. name: "Paw Planti",
  28801. image: {
  28802. source: "./media/characters/lira/paw-planti.svg"
  28803. }
  28804. },
  28805. },
  28806. [
  28807. {
  28808. name: "Normal",
  28809. height: math.unit(6 + 2 / 12, "feet"),
  28810. default: true
  28811. },
  28812. {
  28813. name: "Macro",
  28814. height: math.unit(100, "feet")
  28815. },
  28816. {
  28817. name: "Macro²",
  28818. height: math.unit(1600, "feet")
  28819. },
  28820. {
  28821. name: "Planetary",
  28822. height: math.unit(20, "earths")
  28823. },
  28824. ]
  28825. ))
  28826. characterMakers.push(() => makeCharacter(
  28827. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28828. {
  28829. front: {
  28830. height: math.unit(6, "feet"),
  28831. weight: math.unit(150, "lb"),
  28832. name: "Front",
  28833. image: {
  28834. source: "./media/characters/hadjet/front.svg",
  28835. extra: 1480 / 1346,
  28836. bottom: 26 / 1506
  28837. }
  28838. },
  28839. frontNsfw: {
  28840. height: math.unit(6, "feet"),
  28841. weight: math.unit(150, "lb"),
  28842. name: "Front (NSFW)",
  28843. image: {
  28844. source: "./media/characters/hadjet/front-nsfw.svg",
  28845. extra: 1440 / 1358,
  28846. bottom: 52 / 1492
  28847. }
  28848. },
  28849. },
  28850. [
  28851. {
  28852. name: "Macro",
  28853. height: math.unit(10, "stories"),
  28854. default: true
  28855. },
  28856. {
  28857. name: "Megamacro",
  28858. height: math.unit(1.5, "miles")
  28859. },
  28860. {
  28861. name: "Megamacro+",
  28862. height: math.unit(5, "miles")
  28863. },
  28864. ]
  28865. ))
  28866. characterMakers.push(() => makeCharacter(
  28867. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28868. {
  28869. side: {
  28870. height: math.unit(106, "feet"),
  28871. weight: math.unit(500, "tonnes"),
  28872. name: "Side",
  28873. image: {
  28874. source: "./media/characters/kodran/side.svg",
  28875. extra: 553 / 480,
  28876. bottom: 33 / 586
  28877. }
  28878. },
  28879. front: {
  28880. height: math.unit(132, "feet"),
  28881. weight: math.unit(500, "tonnes"),
  28882. name: "Front",
  28883. image: {
  28884. source: "./media/characters/kodran/front.svg",
  28885. extra: 667 / 643,
  28886. bottom: 42 / 709
  28887. }
  28888. },
  28889. flying: {
  28890. height: math.unit(350, "feet"),
  28891. weight: math.unit(500, "tonnes"),
  28892. name: "Flying",
  28893. image: {
  28894. source: "./media/characters/kodran/flying.svg"
  28895. }
  28896. },
  28897. foot: {
  28898. height: math.unit(33, "feet"),
  28899. name: "Foot",
  28900. image: {
  28901. source: "./media/characters/kodran/foot.svg"
  28902. }
  28903. },
  28904. footFront: {
  28905. height: math.unit(19, "feet"),
  28906. name: "Foot (Front)",
  28907. image: {
  28908. source: "./media/characters/kodran/foot-front.svg",
  28909. extra: 261 / 261,
  28910. bottom: 91 / 352
  28911. }
  28912. },
  28913. headFront: {
  28914. height: math.unit(53, "feet"),
  28915. name: "Head (Front)",
  28916. image: {
  28917. source: "./media/characters/kodran/head-front.svg"
  28918. }
  28919. },
  28920. headSide: {
  28921. height: math.unit(65, "feet"),
  28922. name: "Head (Side)",
  28923. image: {
  28924. source: "./media/characters/kodran/head-side.svg"
  28925. }
  28926. },
  28927. throat: {
  28928. height: math.unit(79, "feet"),
  28929. name: "Throat",
  28930. image: {
  28931. source: "./media/characters/kodran/throat.svg"
  28932. }
  28933. },
  28934. },
  28935. [
  28936. {
  28937. name: "Large",
  28938. height: math.unit(106, "feet"),
  28939. default: true
  28940. },
  28941. ]
  28942. ))
  28943. characterMakers.push(() => makeCharacter(
  28944. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28945. {
  28946. side: {
  28947. height: math.unit(11, "feet"),
  28948. weight: math.unit(150, "lb"),
  28949. name: "Side",
  28950. image: {
  28951. source: "./media/characters/pyxaron/side.svg",
  28952. extra: 305 / 195,
  28953. bottom: 17 / 322
  28954. }
  28955. },
  28956. },
  28957. [
  28958. {
  28959. name: "Normal",
  28960. height: math.unit(11, "feet"),
  28961. default: true
  28962. },
  28963. ]
  28964. ))
  28965. characterMakers.push(() => makeCharacter(
  28966. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28967. {
  28968. front: {
  28969. height: math.unit(6, "feet"),
  28970. weight: math.unit(150, "lb"),
  28971. name: "Front",
  28972. image: {
  28973. source: "./media/characters/meep/front.svg",
  28974. extra: 88 / 80,
  28975. bottom: 6 / 94
  28976. }
  28977. },
  28978. },
  28979. [
  28980. {
  28981. name: "Fun Sized",
  28982. height: math.unit(2, "inches"),
  28983. default: true
  28984. },
  28985. {
  28986. name: "Friend Sized",
  28987. height: math.unit(8, "inches")
  28988. },
  28989. ]
  28990. ))
  28991. characterMakers.push(() => makeCharacter(
  28992. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28993. {
  28994. front: {
  28995. height: math.unit(15, "feet"),
  28996. weight: math.unit(2500, "lb"),
  28997. name: "Front",
  28998. image: {
  28999. source: "./media/characters/holly-rabbit/front.svg",
  29000. extra: 1433 / 1233,
  29001. bottom: 125 / 1558
  29002. }
  29003. },
  29004. dick: {
  29005. height: math.unit(4.6, "feet"),
  29006. name: "Dick",
  29007. image: {
  29008. source: "./media/characters/holly-rabbit/dick.svg"
  29009. }
  29010. },
  29011. },
  29012. [
  29013. {
  29014. name: "Normal",
  29015. height: math.unit(15, "feet"),
  29016. default: true
  29017. },
  29018. {
  29019. name: "Macro",
  29020. height: math.unit(250, "feet")
  29021. },
  29022. {
  29023. name: "Macro+",
  29024. height: math.unit(2500, "feet")
  29025. },
  29026. ]
  29027. ))
  29028. characterMakers.push(() => makeCharacter(
  29029. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29030. {
  29031. front: {
  29032. height: math.unit(3.02, "meters"),
  29033. weight: math.unit(500, "kg"),
  29034. name: "Front",
  29035. image: {
  29036. source: "./media/characters/drena/front.svg",
  29037. extra: 282 / 243,
  29038. bottom: 8 / 290
  29039. }
  29040. },
  29041. side: {
  29042. height: math.unit(3.02, "meters"),
  29043. weight: math.unit(500, "kg"),
  29044. name: "Side",
  29045. image: {
  29046. source: "./media/characters/drena/side.svg",
  29047. extra: 280 / 245,
  29048. bottom: 10 / 290
  29049. }
  29050. },
  29051. back: {
  29052. height: math.unit(3.02, "meters"),
  29053. weight: math.unit(500, "kg"),
  29054. name: "Back",
  29055. image: {
  29056. source: "./media/characters/drena/back.svg",
  29057. extra: 278 / 243,
  29058. bottom: 2 / 280
  29059. }
  29060. },
  29061. foot: {
  29062. height: math.unit(0.75, "meters"),
  29063. name: "Foot",
  29064. image: {
  29065. source: "./media/characters/drena/foot.svg"
  29066. }
  29067. },
  29068. maw: {
  29069. height: math.unit(0.82, "meters"),
  29070. name: "Maw",
  29071. image: {
  29072. source: "./media/characters/drena/maw.svg"
  29073. }
  29074. },
  29075. rump: {
  29076. height: math.unit(0.93, "meters"),
  29077. name: "Rump",
  29078. image: {
  29079. source: "./media/characters/drena/rump.svg"
  29080. }
  29081. },
  29082. },
  29083. [
  29084. {
  29085. name: "Normal",
  29086. height: math.unit(3.02, "meters"),
  29087. default: true
  29088. },
  29089. ]
  29090. ))
  29091. characterMakers.push(() => makeCharacter(
  29092. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29093. {
  29094. front: {
  29095. height: math.unit(6 + 4 / 12, "feet"),
  29096. weight: math.unit(250, "lb"),
  29097. name: "Front",
  29098. image: {
  29099. source: "./media/characters/remmyzilla/front.svg",
  29100. extra: 4033 / 3588,
  29101. bottom: 123 / 4156
  29102. }
  29103. },
  29104. back: {
  29105. height: math.unit(6 + 4 / 12, "feet"),
  29106. weight: math.unit(250, "lb"),
  29107. name: "Back",
  29108. image: {
  29109. source: "./media/characters/remmyzilla/back.svg",
  29110. extra: 2687 / 2555,
  29111. bottom: 48 / 2735
  29112. }
  29113. },
  29114. paw: {
  29115. height: math.unit(1.73, "feet"),
  29116. name: "Paw",
  29117. image: {
  29118. source: "./media/characters/remmyzilla/paw.svg"
  29119. }
  29120. },
  29121. maw: {
  29122. height: math.unit(1.73, "feet"),
  29123. name: "Maw",
  29124. image: {
  29125. source: "./media/characters/remmyzilla/maw.svg"
  29126. }
  29127. },
  29128. },
  29129. [
  29130. {
  29131. name: "Normal",
  29132. height: math.unit(6 + 4 / 12, "feet")
  29133. },
  29134. {
  29135. name: "Minimacro",
  29136. height: math.unit(12 + 8 / 12, "feet")
  29137. },
  29138. {
  29139. name: "Normal",
  29140. height: math.unit(640, "feet"),
  29141. default: true
  29142. },
  29143. {
  29144. name: "Megamacro",
  29145. height: math.unit(6400, "feet")
  29146. },
  29147. {
  29148. name: "Gigamacro",
  29149. height: math.unit(64000, "miles")
  29150. },
  29151. ]
  29152. ))
  29153. characterMakers.push(() => makeCharacter(
  29154. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29155. {
  29156. front: {
  29157. height: math.unit(2.5, "meters"),
  29158. weight: math.unit(300, "lb"),
  29159. name: "Front",
  29160. image: {
  29161. source: "./media/characters/lawrence/front.svg",
  29162. extra: 357 / 335,
  29163. bottom: 30 / 387
  29164. }
  29165. },
  29166. back: {
  29167. height: math.unit(2.5, "meters"),
  29168. weight: math.unit(300, "lb"),
  29169. name: "Back",
  29170. image: {
  29171. source: "./media/characters/lawrence/back.svg",
  29172. extra: 357 / 338,
  29173. bottom: 16 / 373
  29174. }
  29175. },
  29176. head: {
  29177. height: math.unit(0.9, "meter"),
  29178. name: "Head",
  29179. image: {
  29180. source: "./media/characters/lawrence/head.svg"
  29181. }
  29182. },
  29183. maw: {
  29184. height: math.unit(0.7, "meter"),
  29185. name: "Maw",
  29186. image: {
  29187. source: "./media/characters/lawrence/maw.svg"
  29188. }
  29189. },
  29190. footBottom: {
  29191. height: math.unit(0.5, "meter"),
  29192. name: "Foot (Bottom)",
  29193. image: {
  29194. source: "./media/characters/lawrence/foot-bottom.svg"
  29195. }
  29196. },
  29197. footTop: {
  29198. height: math.unit(0.5, "meter"),
  29199. name: "Foot (Top)",
  29200. image: {
  29201. source: "./media/characters/lawrence/foot-top.svg"
  29202. }
  29203. },
  29204. },
  29205. [
  29206. {
  29207. name: "Normal",
  29208. height: math.unit(2.5, "meters"),
  29209. default: true
  29210. },
  29211. {
  29212. name: "Macro",
  29213. height: math.unit(95, "meters")
  29214. },
  29215. {
  29216. name: "Megamacro",
  29217. height: math.unit(150, "km")
  29218. },
  29219. ]
  29220. ))
  29221. characterMakers.push(() => makeCharacter(
  29222. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  29223. {
  29224. front: {
  29225. height: math.unit(4.2, "meters"),
  29226. name: "Front",
  29227. image: {
  29228. source: "./media/characters/sydney/front.svg",
  29229. extra: 1323 / 1277,
  29230. bottom: 111 / 1434
  29231. }
  29232. },
  29233. },
  29234. [
  29235. {
  29236. name: "Normal",
  29237. height: math.unit(4.2, "meters"),
  29238. default: true
  29239. },
  29240. ]
  29241. ))
  29242. characterMakers.push(() => makeCharacter(
  29243. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29244. {
  29245. back: {
  29246. height: math.unit(201, "feet"),
  29247. name: "Back",
  29248. image: {
  29249. source: "./media/characters/jessica/back.svg",
  29250. extra: 273 / 259,
  29251. bottom: 7 / 280
  29252. }
  29253. },
  29254. },
  29255. [
  29256. {
  29257. name: "Normal",
  29258. height: math.unit(201, "feet"),
  29259. default: true
  29260. },
  29261. {
  29262. name: "Megamacro",
  29263. height: math.unit(8, "miles")
  29264. },
  29265. ]
  29266. ))
  29267. characterMakers.push(() => makeCharacter(
  29268. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29269. {
  29270. side: {
  29271. height: math.unit(5.6, "m"),
  29272. weight: math.unit(8000, "kg"),
  29273. name: "Side",
  29274. image: {
  29275. source: "./media/characters/victoria/side.svg",
  29276. extra: 1542/1229,
  29277. bottom: 124/1666
  29278. }
  29279. },
  29280. maw: {
  29281. height: math.unit(7.14, "feet"),
  29282. name: "Maw",
  29283. image: {
  29284. source: "./media/characters/victoria/maw.svg"
  29285. }
  29286. },
  29287. },
  29288. [
  29289. {
  29290. name: "Normal",
  29291. height: math.unit(5.6, "m"),
  29292. default: true
  29293. },
  29294. ]
  29295. ))
  29296. characterMakers.push(() => makeCharacter(
  29297. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29298. {
  29299. front: {
  29300. height: math.unit(5 + 6 / 12, "feet"),
  29301. name: "Front",
  29302. image: {
  29303. source: "./media/characters/cat/front.svg",
  29304. extra: 1449/1295,
  29305. bottom: 34/1483
  29306. },
  29307. form: "cat",
  29308. default: true
  29309. },
  29310. back: {
  29311. height: math.unit(5 + 6 / 12, "feet"),
  29312. name: "Back",
  29313. image: {
  29314. source: "./media/characters/cat/back.svg",
  29315. extra: 1466/1301,
  29316. bottom: 19/1485
  29317. },
  29318. form: "cat"
  29319. },
  29320. taur: {
  29321. height: math.unit(7, "feet"),
  29322. name: "Taur",
  29323. image: {
  29324. source: "./media/characters/cat/taur.svg",
  29325. extra: 1389/1233,
  29326. bottom: 83/1472
  29327. },
  29328. form: "taur",
  29329. default: true
  29330. },
  29331. lucarioFront: {
  29332. height: math.unit(4, "feet"),
  29333. name: "Lucario (Front)",
  29334. image: {
  29335. source: "./media/characters/cat/lucario-front.svg",
  29336. extra: 1149/1019,
  29337. bottom: 84/1233
  29338. },
  29339. form: "lucario",
  29340. default: true
  29341. },
  29342. lucarioBack: {
  29343. height: math.unit(4, "feet"),
  29344. name: "Lucario (Back)",
  29345. image: {
  29346. source: "./media/characters/cat/lucario-back.svg",
  29347. extra: 1190/1059,
  29348. bottom: 33/1223
  29349. },
  29350. form: "lucario"
  29351. },
  29352. megaLucario: {
  29353. height: math.unit(4, "feet"),
  29354. name: "Mega Lucario",
  29355. image: {
  29356. source: "./media/characters/cat/mega-lucario.svg",
  29357. extra: 1515 / 1319,
  29358. bottom: 63 / 1578
  29359. },
  29360. form: "lucario"
  29361. },
  29362. nickit: {
  29363. height: math.unit(2, "feet"),
  29364. name: "Nickit",
  29365. image: {
  29366. source: "./media/characters/cat/nickit.svg",
  29367. extra: 1980 / 1585,
  29368. bottom: 102 / 2082
  29369. },
  29370. form: "nickit",
  29371. default: true
  29372. },
  29373. lopunnyFront: {
  29374. height: math.unit(5, "feet"),
  29375. name: "Lopunny (Front)",
  29376. image: {
  29377. source: "./media/characters/cat/lopunny-front.svg",
  29378. extra: 1782 / 1469,
  29379. bottom: 38 / 1820
  29380. },
  29381. form: "lopunny",
  29382. default: true
  29383. },
  29384. lopunnyBack: {
  29385. height: math.unit(5, "feet"),
  29386. name: "Lopunny (Back)",
  29387. image: {
  29388. source: "./media/characters/cat/lopunny-back.svg",
  29389. extra: 1660 / 1490,
  29390. bottom: 25 / 1685
  29391. },
  29392. form: "lopunny"
  29393. },
  29394. },
  29395. [
  29396. {
  29397. name: "Really small",
  29398. height: math.unit(1, "nm")
  29399. },
  29400. {
  29401. name: "Micro",
  29402. height: math.unit(5, "inches")
  29403. },
  29404. {
  29405. name: "Normal",
  29406. height: math.unit(5 + 6 / 12, "feet"),
  29407. default: true
  29408. },
  29409. {
  29410. name: "Macro",
  29411. height: math.unit(50, "feet")
  29412. },
  29413. {
  29414. name: "Macro+",
  29415. height: math.unit(150, "feet")
  29416. },
  29417. {
  29418. name: "Megamacro",
  29419. height: math.unit(100, "miles")
  29420. },
  29421. ]
  29422. ))
  29423. characterMakers.push(() => makeCharacter(
  29424. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29425. {
  29426. front: {
  29427. height: math.unit(63.4, "meters"),
  29428. weight: math.unit(3.28349e+6, "kilograms"),
  29429. name: "Front",
  29430. image: {
  29431. source: "./media/characters/kirina-violet/front.svg",
  29432. extra: 2812 / 2725,
  29433. bottom: 0 / 2812
  29434. }
  29435. },
  29436. back: {
  29437. height: math.unit(63.4, "meters"),
  29438. weight: math.unit(3.28349e+6, "kilograms"),
  29439. name: "Back",
  29440. image: {
  29441. source: "./media/characters/kirina-violet/back.svg",
  29442. extra: 2812 / 2725,
  29443. bottom: 0 / 2812
  29444. }
  29445. },
  29446. mouth: {
  29447. height: math.unit(4.35, "meters"),
  29448. name: "Mouth",
  29449. image: {
  29450. source: "./media/characters/kirina-violet/mouth.svg"
  29451. }
  29452. },
  29453. paw: {
  29454. height: math.unit(5.6, "meters"),
  29455. name: "Paw",
  29456. image: {
  29457. source: "./media/characters/kirina-violet/paw.svg"
  29458. }
  29459. },
  29460. tail: {
  29461. height: math.unit(18, "meters"),
  29462. name: "Tail",
  29463. image: {
  29464. source: "./media/characters/kirina-violet/tail.svg"
  29465. }
  29466. },
  29467. },
  29468. [
  29469. {
  29470. name: "Macro",
  29471. height: math.unit(63.4, "meters"),
  29472. default: true
  29473. },
  29474. ]
  29475. ))
  29476. characterMakers.push(() => makeCharacter(
  29477. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29478. {
  29479. front: {
  29480. height: math.unit(75, "feet"),
  29481. name: "Front",
  29482. image: {
  29483. source: "./media/characters/cat-gigachu/front.svg",
  29484. extra: 1239/1027,
  29485. bottom: 32/1271
  29486. }
  29487. },
  29488. back: {
  29489. height: math.unit(75, "feet"),
  29490. name: "Back",
  29491. image: {
  29492. source: "./media/characters/cat-gigachu/back.svg",
  29493. extra: 1229/1030,
  29494. bottom: 9/1238
  29495. }
  29496. },
  29497. },
  29498. [
  29499. {
  29500. name: "Dynamax",
  29501. height: math.unit(75, "feet"),
  29502. default: true
  29503. },
  29504. ]
  29505. ))
  29506. characterMakers.push(() => makeCharacter(
  29507. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29508. {
  29509. front: {
  29510. height: math.unit(6, "feet"),
  29511. weight: math.unit(150, "lb"),
  29512. name: "Front",
  29513. image: {
  29514. source: "./media/characters/sfaiyan/front.svg",
  29515. extra: 999 / 978,
  29516. bottom: 5 / 1004
  29517. }
  29518. },
  29519. },
  29520. [
  29521. {
  29522. name: "Normal",
  29523. height: math.unit(1.82, "meters")
  29524. },
  29525. {
  29526. name: "Giant",
  29527. height: math.unit(2.27, "km"),
  29528. default: true
  29529. },
  29530. ]
  29531. ))
  29532. characterMakers.push(() => makeCharacter(
  29533. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29534. {
  29535. front: {
  29536. height: math.unit(179, "cm"),
  29537. weight: math.unit(100, "kg"),
  29538. name: "Front",
  29539. image: {
  29540. source: "./media/characters/raunehkeli/front.svg",
  29541. extra: 1934 / 1926,
  29542. bottom: 0 / 1934
  29543. }
  29544. },
  29545. },
  29546. [
  29547. {
  29548. name: "Normal",
  29549. height: math.unit(179, "cm")
  29550. },
  29551. {
  29552. name: "Maximum",
  29553. height: math.unit(575, "meters"),
  29554. default: true
  29555. },
  29556. ]
  29557. ))
  29558. characterMakers.push(() => makeCharacter(
  29559. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29560. {
  29561. front: {
  29562. height: math.unit(6, "feet"),
  29563. weight: math.unit(150, "lb"),
  29564. name: "Front",
  29565. image: {
  29566. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29567. extra: 2625 / 2518,
  29568. bottom: 60 / 2685
  29569. }
  29570. },
  29571. },
  29572. [
  29573. {
  29574. name: "Normal",
  29575. height: math.unit(6 + 2 / 12, "feet")
  29576. },
  29577. {
  29578. name: "Macro",
  29579. height: math.unit(1180, "feet"),
  29580. default: true
  29581. },
  29582. ]
  29583. ))
  29584. characterMakers.push(() => makeCharacter(
  29585. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29586. {
  29587. front: {
  29588. height: math.unit(5 + 6 / 12, "feet"),
  29589. weight: math.unit(108, "lb"),
  29590. name: "Front",
  29591. image: {
  29592. source: "./media/characters/lilith-zott/front.svg",
  29593. extra: 2510 / 2238,
  29594. bottom: 100 / 2610
  29595. }
  29596. },
  29597. frontDressed: {
  29598. height: math.unit(5 + 6 / 12, "feet"),
  29599. weight: math.unit(108, "lb"),
  29600. name: "Front (Dressed)",
  29601. image: {
  29602. source: "./media/characters/lilith-zott/front-dressed.svg",
  29603. extra: 2510 / 2238,
  29604. bottom: 100 / 2610
  29605. }
  29606. },
  29607. },
  29608. [
  29609. {
  29610. name: "Normal",
  29611. height: math.unit(5 + 6 / 12, "feet")
  29612. },
  29613. {
  29614. name: "Macro",
  29615. height: math.unit(1030, "feet"),
  29616. default: true
  29617. },
  29618. ]
  29619. ))
  29620. characterMakers.push(() => makeCharacter(
  29621. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29622. {
  29623. front: {
  29624. height: math.unit(6, "feet"),
  29625. weight: math.unit(150, "lb"),
  29626. name: "Front",
  29627. image: {
  29628. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29629. extra: 2567 / 2435,
  29630. bottom: 39 / 2606
  29631. }
  29632. },
  29633. frontSuper: {
  29634. height: math.unit(6, "feet"),
  29635. name: "Front (Super)",
  29636. image: {
  29637. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29638. extra: 2567 / 2435,
  29639. bottom: 39 / 2606
  29640. }
  29641. },
  29642. },
  29643. [
  29644. {
  29645. name: "Normal",
  29646. height: math.unit(5 + 10 / 12, "feet")
  29647. },
  29648. {
  29649. name: "Macro",
  29650. height: math.unit(1100, "feet"),
  29651. default: true
  29652. },
  29653. ]
  29654. ))
  29655. characterMakers.push(() => makeCharacter(
  29656. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29657. {
  29658. front: {
  29659. height: math.unit(100, "miles"),
  29660. name: "Front",
  29661. image: {
  29662. source: "./media/characters/sona/front.svg",
  29663. extra: 2433 / 2201,
  29664. bottom: 53 / 2486
  29665. }
  29666. },
  29667. foot: {
  29668. height: math.unit(16.1, "miles"),
  29669. name: "Foot",
  29670. image: {
  29671. source: "./media/characters/sona/foot.svg"
  29672. }
  29673. },
  29674. },
  29675. [
  29676. {
  29677. name: "Macro",
  29678. height: math.unit(100, "miles"),
  29679. default: true
  29680. },
  29681. ]
  29682. ))
  29683. characterMakers.push(() => makeCharacter(
  29684. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29685. {
  29686. front: {
  29687. height: math.unit(6, "feet"),
  29688. weight: math.unit(150, "lb"),
  29689. name: "Front",
  29690. image: {
  29691. source: "./media/characters/bailey/front.svg",
  29692. extra: 1778 / 1724,
  29693. bottom: 30 / 1808
  29694. }
  29695. },
  29696. },
  29697. [
  29698. {
  29699. name: "Micro",
  29700. height: math.unit(4, "inches")
  29701. },
  29702. {
  29703. name: "Normal",
  29704. height: math.unit(5 + 5 / 12, "feet"),
  29705. default: true
  29706. },
  29707. {
  29708. name: "Macro",
  29709. height: math.unit(250, "feet")
  29710. },
  29711. {
  29712. name: "Megamacro",
  29713. height: math.unit(100, "miles")
  29714. },
  29715. ]
  29716. ))
  29717. characterMakers.push(() => makeCharacter(
  29718. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29719. {
  29720. front: {
  29721. height: math.unit(5 + 2 / 12, "feet"),
  29722. weight: math.unit(120, "lb"),
  29723. name: "Front",
  29724. image: {
  29725. source: "./media/characters/snaps/front.svg",
  29726. extra: 2370 / 2177,
  29727. bottom: 48 / 2418
  29728. }
  29729. },
  29730. back: {
  29731. height: math.unit(5 + 2 / 12, "feet"),
  29732. weight: math.unit(120, "lb"),
  29733. name: "Back",
  29734. image: {
  29735. source: "./media/characters/snaps/back.svg",
  29736. extra: 2408 / 2258,
  29737. bottom: 15 / 2423
  29738. }
  29739. },
  29740. },
  29741. [
  29742. {
  29743. name: "Micro",
  29744. height: math.unit(9, "inches")
  29745. },
  29746. {
  29747. name: "Normal",
  29748. height: math.unit(5 + 2 / 12, "feet"),
  29749. default: true
  29750. },
  29751. {
  29752. name: "Mini Macro",
  29753. height: math.unit(10, "feet")
  29754. },
  29755. ]
  29756. ))
  29757. characterMakers.push(() => makeCharacter(
  29758. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29759. {
  29760. front: {
  29761. height: math.unit(1.8, "meters"),
  29762. weight: math.unit(85, "kg"),
  29763. name: "Front",
  29764. image: {
  29765. source: "./media/characters/azteck/front.svg",
  29766. extra: 2815 / 2625,
  29767. bottom: 89 / 2904
  29768. }
  29769. },
  29770. back: {
  29771. height: math.unit(1.8, "meters"),
  29772. weight: math.unit(85, "kg"),
  29773. name: "Back",
  29774. image: {
  29775. source: "./media/characters/azteck/back.svg",
  29776. extra: 2856 / 2648,
  29777. bottom: 85 / 2941
  29778. }
  29779. },
  29780. frontDressed: {
  29781. height: math.unit(1.8, "meters"),
  29782. weight: math.unit(85, "kg"),
  29783. name: "Front (Dressed)",
  29784. image: {
  29785. source: "./media/characters/azteck/front-dressed.svg",
  29786. extra: 2147 / 2003,
  29787. bottom: 68 / 2215
  29788. }
  29789. },
  29790. head: {
  29791. height: math.unit(0.47, "meters"),
  29792. weight: math.unit(85, "kg"),
  29793. name: "Head",
  29794. image: {
  29795. source: "./media/characters/azteck/head.svg"
  29796. }
  29797. },
  29798. },
  29799. [
  29800. {
  29801. name: "Bite sized",
  29802. height: math.unit(16, "cm")
  29803. },
  29804. {
  29805. name: "Normal",
  29806. height: math.unit(1.8, "meters"),
  29807. default: true
  29808. },
  29809. ]
  29810. ))
  29811. characterMakers.push(() => makeCharacter(
  29812. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29813. {
  29814. front: {
  29815. height: math.unit(6, "feet"),
  29816. weight: math.unit(150, "lb"),
  29817. name: "Front",
  29818. image: {
  29819. source: "./media/characters/pidge/front.svg",
  29820. extra: 620 / 588,
  29821. bottom: 9 / 629
  29822. }
  29823. },
  29824. back: {
  29825. height: math.unit(6, "feet"),
  29826. weight: math.unit(150, "lb"),
  29827. name: "Back",
  29828. image: {
  29829. source: "./media/characters/pidge/back.svg",
  29830. extra: 620 / 588,
  29831. bottom: 9 / 629
  29832. }
  29833. },
  29834. },
  29835. [
  29836. {
  29837. name: "Macro",
  29838. height: math.unit(1, "mile"),
  29839. default: true
  29840. },
  29841. ]
  29842. ))
  29843. characterMakers.push(() => makeCharacter(
  29844. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29845. {
  29846. front: {
  29847. height: math.unit(6, "feet"),
  29848. weight: math.unit(150, "lb"),
  29849. name: "Front",
  29850. image: {
  29851. source: "./media/characters/en/front.svg",
  29852. extra: 1697 / 1563,
  29853. bottom: 103 / 1800
  29854. }
  29855. },
  29856. back: {
  29857. height: math.unit(6, "feet"),
  29858. weight: math.unit(150, "lb"),
  29859. name: "Back",
  29860. image: {
  29861. source: "./media/characters/en/back.svg",
  29862. extra: 1700 / 1570,
  29863. bottom: 51 / 1751
  29864. }
  29865. },
  29866. frontDressed: {
  29867. height: math.unit(6, "feet"),
  29868. weight: math.unit(150, "lb"),
  29869. name: "Front (Dressed)",
  29870. image: {
  29871. source: "./media/characters/en/front-dressed.svg",
  29872. extra: 1697 / 1563,
  29873. bottom: 103 / 1800
  29874. }
  29875. },
  29876. backDressed: {
  29877. height: math.unit(6, "feet"),
  29878. weight: math.unit(150, "lb"),
  29879. name: "Back (Dressed)",
  29880. image: {
  29881. source: "./media/characters/en/back-dressed.svg",
  29882. extra: 1700 / 1570,
  29883. bottom: 51 / 1751
  29884. }
  29885. },
  29886. },
  29887. [
  29888. {
  29889. name: "Macro",
  29890. height: math.unit(210, "feet"),
  29891. default: true
  29892. },
  29893. ]
  29894. ))
  29895. characterMakers.push(() => makeCharacter(
  29896. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29897. {
  29898. front: {
  29899. height: math.unit(6, "feet"),
  29900. weight: math.unit(150, "lb"),
  29901. name: "Front",
  29902. image: {
  29903. source: "./media/characters/haze-orris/front.svg",
  29904. extra: 3975 / 3525,
  29905. bottom: 137 / 4112
  29906. }
  29907. },
  29908. },
  29909. [
  29910. {
  29911. name: "Micro",
  29912. height: math.unit(150, "mm"),
  29913. default: true
  29914. },
  29915. ]
  29916. ))
  29917. characterMakers.push(() => makeCharacter(
  29918. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29919. {
  29920. front: {
  29921. height: math.unit(6, "feet"),
  29922. weight: math.unit(150, "lb"),
  29923. name: "Front",
  29924. image: {
  29925. source: "./media/characters/casselene-yaro/front.svg",
  29926. extra: 4721 / 4541,
  29927. bottom: 82 / 4803
  29928. }
  29929. },
  29930. back: {
  29931. height: math.unit(6, "feet"),
  29932. weight: math.unit(150, "lb"),
  29933. name: "Back",
  29934. image: {
  29935. source: "./media/characters/casselene-yaro/back.svg",
  29936. extra: 4569 / 4377,
  29937. bottom: 69 / 4638
  29938. }
  29939. },
  29940. frontDressed: {
  29941. height: math.unit(6, "feet"),
  29942. weight: math.unit(150, "lb"),
  29943. name: "Front-dressed",
  29944. image: {
  29945. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29946. extra: 4721 / 4541,
  29947. bottom: 82 / 4803
  29948. }
  29949. },
  29950. },
  29951. [
  29952. {
  29953. name: "Macro",
  29954. height: math.unit(190, "feet"),
  29955. default: true
  29956. },
  29957. ]
  29958. ))
  29959. characterMakers.push(() => makeCharacter(
  29960. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29961. {
  29962. front: {
  29963. height: math.unit(6, "feet"),
  29964. weight: math.unit(150, "lb"),
  29965. name: "Front",
  29966. image: {
  29967. source: "./media/characters/myra-rue-delore/front.svg",
  29968. extra: 1340 / 1308,
  29969. bottom: 67 / 1407
  29970. }
  29971. },
  29972. back: {
  29973. height: math.unit(6, "feet"),
  29974. weight: math.unit(150, "lb"),
  29975. name: "Back",
  29976. image: {
  29977. source: "./media/characters/myra-rue-delore/back.svg",
  29978. extra: 1341 / 1310,
  29979. bottom: 40 / 1381
  29980. }
  29981. },
  29982. frontDressed: {
  29983. height: math.unit(6, "feet"),
  29984. weight: math.unit(150, "lb"),
  29985. name: "Front (Dressed)",
  29986. image: {
  29987. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29988. extra: 1340 / 1308,
  29989. bottom: 67 / 1407
  29990. }
  29991. },
  29992. },
  29993. [
  29994. {
  29995. name: "Macro",
  29996. height: math.unit(150, "feet"),
  29997. default: true
  29998. },
  29999. ]
  30000. ))
  30001. characterMakers.push(() => makeCharacter(
  30002. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  30003. {
  30004. front: {
  30005. height: math.unit(10, "feet"),
  30006. weight: math.unit(15015, "lb"),
  30007. name: "Front",
  30008. image: {
  30009. source: "./media/characters/fem!plat/front.svg",
  30010. extra: 2799 / 2604,
  30011. bottom: 149 / 2948
  30012. }
  30013. },
  30014. },
  30015. [
  30016. {
  30017. name: "Normal",
  30018. height: math.unit(10, "feet"),
  30019. default: true
  30020. },
  30021. {
  30022. name: "Macro",
  30023. height: math.unit(100, "feet")
  30024. },
  30025. {
  30026. name: "Megamacro",
  30027. height: math.unit(1000, "feet")
  30028. },
  30029. ]
  30030. ))
  30031. characterMakers.push(() => makeCharacter(
  30032. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30033. {
  30034. front: {
  30035. height: math.unit(15 + 5 / 12, "feet"),
  30036. weight: math.unit(4600, "lb"),
  30037. name: "Front",
  30038. image: {
  30039. source: "./media/characters/neapolitan-ananassa/front.svg",
  30040. extra: 2903 / 2736,
  30041. bottom: 0 / 2903
  30042. }
  30043. },
  30044. side: {
  30045. height: math.unit(15 + 5 / 12, "feet"),
  30046. weight: math.unit(4600, "lb"),
  30047. name: "Side",
  30048. image: {
  30049. source: "./media/characters/neapolitan-ananassa/side.svg",
  30050. extra: 2925 / 2719,
  30051. bottom: 0 / 2925
  30052. }
  30053. },
  30054. back: {
  30055. height: math.unit(15 + 5 / 12, "feet"),
  30056. weight: math.unit(4600, "lb"),
  30057. name: "Back",
  30058. image: {
  30059. source: "./media/characters/neapolitan-ananassa/back.svg",
  30060. extra: 2903 / 2736,
  30061. bottom: 0 / 2903
  30062. }
  30063. },
  30064. },
  30065. [
  30066. {
  30067. name: "Normal",
  30068. height: math.unit(15 + 5 / 12, "feet"),
  30069. default: true
  30070. },
  30071. {
  30072. name: "Post-Millenium",
  30073. height: math.unit(35 + 5 / 12, "feet")
  30074. },
  30075. {
  30076. name: "Post-Era",
  30077. height: math.unit(450 + 5 / 12, "feet")
  30078. },
  30079. ]
  30080. ))
  30081. characterMakers.push(() => makeCharacter(
  30082. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30083. {
  30084. front: {
  30085. height: math.unit(300, "meters"),
  30086. weight: math.unit(125000, "tonnes"),
  30087. name: "Front",
  30088. image: {
  30089. source: "./media/characters/pazuzu/front.svg",
  30090. extra: 877 / 794,
  30091. bottom: 47 / 924
  30092. }
  30093. },
  30094. },
  30095. [
  30096. {
  30097. name: "Macro",
  30098. height: math.unit(300, "meters"),
  30099. default: true
  30100. },
  30101. ]
  30102. ))
  30103. characterMakers.push(() => makeCharacter(
  30104. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30105. {
  30106. side: {
  30107. height: math.unit(10 + 7 / 12, "feet"),
  30108. weight: math.unit(2.5, "tons"),
  30109. name: "Side",
  30110. image: {
  30111. source: "./media/characters/aasha/side.svg",
  30112. extra: 1345 / 1245,
  30113. bottom: 111 / 1456
  30114. }
  30115. },
  30116. back: {
  30117. height: math.unit(10 + 7 / 12, "feet"),
  30118. weight: math.unit(2.5, "tons"),
  30119. name: "Back",
  30120. image: {
  30121. source: "./media/characters/aasha/back.svg",
  30122. extra: 1133 / 1057,
  30123. bottom: 257 / 1390
  30124. }
  30125. },
  30126. },
  30127. [
  30128. {
  30129. name: "Normal",
  30130. height: math.unit(10 + 7 / 12, "feet"),
  30131. default: true
  30132. },
  30133. ]
  30134. ))
  30135. characterMakers.push(() => makeCharacter(
  30136. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30137. {
  30138. front: {
  30139. height: math.unit(6 + 3 / 12, "feet"),
  30140. name: "Front",
  30141. image: {
  30142. source: "./media/characters/nevan/front.svg",
  30143. extra: 704 / 704,
  30144. bottom: 28 / 732
  30145. }
  30146. },
  30147. back: {
  30148. height: math.unit(6 + 3 / 12, "feet"),
  30149. name: "Back",
  30150. image: {
  30151. source: "./media/characters/nevan/back.svg",
  30152. extra: 714 / 714,
  30153. bottom: 21 / 735
  30154. }
  30155. },
  30156. frontFlaccid: {
  30157. height: math.unit(6 + 3 / 12, "feet"),
  30158. name: "Front (Flaccid)",
  30159. image: {
  30160. source: "./media/characters/nevan/front-flaccid.svg",
  30161. extra: 704 / 704,
  30162. bottom: 28 / 732
  30163. }
  30164. },
  30165. frontErect: {
  30166. height: math.unit(6 + 3 / 12, "feet"),
  30167. name: "Front (Erect)",
  30168. image: {
  30169. source: "./media/characters/nevan/front-erect.svg",
  30170. extra: 704 / 704,
  30171. bottom: 28 / 732
  30172. }
  30173. },
  30174. backFlaccid: {
  30175. height: math.unit(6 + 3 / 12, "feet"),
  30176. name: "Back (Flaccid)",
  30177. image: {
  30178. source: "./media/characters/nevan/back-flaccid.svg",
  30179. extra: 714 / 714,
  30180. bottom: 21 / 735
  30181. }
  30182. },
  30183. },
  30184. [
  30185. {
  30186. name: "Normal",
  30187. height: math.unit(6 + 3 / 12, "feet"),
  30188. default: true
  30189. },
  30190. ]
  30191. ))
  30192. characterMakers.push(() => makeCharacter(
  30193. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30194. {
  30195. front: {
  30196. height: math.unit(4, "feet"),
  30197. name: "Front",
  30198. image: {
  30199. source: "./media/characters/arhan/front.svg",
  30200. extra: 3368 / 3133,
  30201. bottom: 0 / 3368
  30202. }
  30203. },
  30204. side: {
  30205. height: math.unit(4, "feet"),
  30206. name: "Side",
  30207. image: {
  30208. source: "./media/characters/arhan/side.svg",
  30209. extra: 3347 / 3105,
  30210. bottom: 0 / 3347
  30211. }
  30212. },
  30213. tongue: {
  30214. height: math.unit(1.42, "feet"),
  30215. name: "Tongue",
  30216. image: {
  30217. source: "./media/characters/arhan/tongue.svg"
  30218. }
  30219. },
  30220. head: {
  30221. height: math.unit(0.85, "feet"),
  30222. name: "Head",
  30223. image: {
  30224. source: "./media/characters/arhan/head.svg"
  30225. }
  30226. },
  30227. },
  30228. [
  30229. {
  30230. name: "Normal",
  30231. height: math.unit(4, "feet"),
  30232. default: true
  30233. },
  30234. ]
  30235. ))
  30236. characterMakers.push(() => makeCharacter(
  30237. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  30238. {
  30239. front: {
  30240. height: math.unit(5 + 7.5 / 12, "feet"),
  30241. weight: math.unit(120, "lb"),
  30242. name: "Front",
  30243. image: {
  30244. source: "./media/characters/digi-duncan/front.svg",
  30245. extra: 330 / 326,
  30246. bottom: 16 / 346
  30247. }
  30248. },
  30249. side: {
  30250. height: math.unit(5 + 7.5 / 12, "feet"),
  30251. weight: math.unit(120, "lb"),
  30252. name: "Side",
  30253. image: {
  30254. source: "./media/characters/digi-duncan/side.svg",
  30255. extra: 341 / 337,
  30256. bottom: 1 / 342
  30257. }
  30258. },
  30259. back: {
  30260. height: math.unit(5 + 7.5 / 12, "feet"),
  30261. weight: math.unit(120, "lb"),
  30262. name: "Back",
  30263. image: {
  30264. source: "./media/characters/digi-duncan/back.svg",
  30265. extra: 330 / 326,
  30266. bottom: 12 / 342
  30267. }
  30268. },
  30269. },
  30270. [
  30271. {
  30272. name: "Speck",
  30273. height: math.unit(0.25, "mm")
  30274. },
  30275. {
  30276. name: "Micro",
  30277. height: math.unit(5, "mm")
  30278. },
  30279. {
  30280. name: "Tiny",
  30281. height: math.unit(0.5, "inches"),
  30282. default: true
  30283. },
  30284. {
  30285. name: "Human",
  30286. height: math.unit(5 + 7.5 / 12, "feet")
  30287. },
  30288. {
  30289. name: "Minigiant",
  30290. height: math.unit(8 + 5.25, "feet")
  30291. },
  30292. {
  30293. name: "Giant",
  30294. height: math.unit(2000, "feet")
  30295. },
  30296. {
  30297. name: "Mega",
  30298. height: math.unit(371.1, "miles")
  30299. },
  30300. ]
  30301. ))
  30302. characterMakers.push(() => makeCharacter(
  30303. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30304. {
  30305. front: {
  30306. height: math.unit(2, "meters"),
  30307. weight: math.unit(350, "kg"),
  30308. name: "Front",
  30309. image: {
  30310. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30311. extra: 898 / 838,
  30312. bottom: 9 / 907
  30313. }
  30314. },
  30315. },
  30316. [
  30317. {
  30318. name: "Micro",
  30319. height: math.unit(8, "meters")
  30320. },
  30321. {
  30322. name: "Normal",
  30323. height: math.unit(50, "meters"),
  30324. default: true
  30325. },
  30326. {
  30327. name: "Macro",
  30328. height: math.unit(500, "meters")
  30329. },
  30330. ]
  30331. ))
  30332. characterMakers.push(() => makeCharacter(
  30333. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30334. {
  30335. front: {
  30336. height: math.unit(6 + 6 / 12, "feet"),
  30337. name: "Front",
  30338. image: {
  30339. source: "./media/characters/khardesh/front.svg",
  30340. extra: 1788/1596,
  30341. bottom: 66/1854
  30342. }
  30343. },
  30344. back: {
  30345. height: math.unit(6 + 6 / 12, "feet"),
  30346. name: "Back",
  30347. image: {
  30348. source: "./media/characters/khardesh/back.svg",
  30349. extra: 1781/1584,
  30350. bottom: 68/1849
  30351. }
  30352. },
  30353. },
  30354. [
  30355. {
  30356. name: "Normal",
  30357. height: math.unit(6 + 6 / 12, "feet"),
  30358. default: true
  30359. },
  30360. {
  30361. name: "Normal+",
  30362. height: math.unit(4, "meters")
  30363. },
  30364. {
  30365. name: "Macro",
  30366. height: math.unit(50, "meters")
  30367. },
  30368. {
  30369. name: "Macro+",
  30370. height: math.unit(100, "meters")
  30371. },
  30372. {
  30373. name: "Megamacro",
  30374. height: math.unit(20, "km")
  30375. },
  30376. ]
  30377. ))
  30378. characterMakers.push(() => makeCharacter(
  30379. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30380. {
  30381. front: {
  30382. height: math.unit(6, "feet"),
  30383. weight: math.unit(150, "lb"),
  30384. name: "Front",
  30385. image: {
  30386. source: "./media/characters/kosho/front.svg",
  30387. extra: 1847 / 1847,
  30388. bottom: 86 / 1933
  30389. }
  30390. },
  30391. },
  30392. [
  30393. {
  30394. name: "Second-stage micro",
  30395. height: math.unit(0.5, "inches")
  30396. },
  30397. {
  30398. name: "First-stage micro",
  30399. height: math.unit(6, "inches")
  30400. },
  30401. {
  30402. name: "Normal",
  30403. height: math.unit(6, "feet"),
  30404. default: true
  30405. },
  30406. {
  30407. name: "First-stage macro",
  30408. height: math.unit(72, "feet")
  30409. },
  30410. {
  30411. name: "Second-stage macro",
  30412. height: math.unit(864, "feet")
  30413. },
  30414. ]
  30415. ))
  30416. characterMakers.push(() => makeCharacter(
  30417. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30418. {
  30419. normal: {
  30420. height: math.unit(4 + 6 / 12, "feet"),
  30421. name: "Normal",
  30422. image: {
  30423. source: "./media/characters/hydra/normal.svg",
  30424. extra: 2833 / 2634,
  30425. bottom: 68 / 2901
  30426. }
  30427. },
  30428. smol: {
  30429. height: math.unit(0.705, "inches"),
  30430. name: "Smol",
  30431. image: {
  30432. source: "./media/characters/hydra/smol.svg",
  30433. extra: 2715 / 2540,
  30434. bottom: 0 / 2715
  30435. }
  30436. },
  30437. },
  30438. [
  30439. {
  30440. name: "Normal",
  30441. height: math.unit(4 + 6 / 12, "feet"),
  30442. default: true
  30443. }
  30444. ]
  30445. ))
  30446. characterMakers.push(() => makeCharacter(
  30447. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30448. {
  30449. front: {
  30450. height: math.unit(0.6, "cm"),
  30451. name: "Front",
  30452. image: {
  30453. source: "./media/characters/daz/front.svg",
  30454. extra: 1682 / 1164,
  30455. bottom: 42 / 1724
  30456. }
  30457. },
  30458. },
  30459. [
  30460. {
  30461. name: "Normal",
  30462. height: math.unit(0.6, "cm"),
  30463. default: true
  30464. },
  30465. ]
  30466. ))
  30467. characterMakers.push(() => makeCharacter(
  30468. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30469. {
  30470. front: {
  30471. height: math.unit(6, "feet"),
  30472. weight: math.unit(235, "lb"),
  30473. name: "Front",
  30474. image: {
  30475. source: "./media/characters/theo-pangolin/front.svg",
  30476. extra: 1996 / 1969,
  30477. bottom: 115 / 2111
  30478. }
  30479. },
  30480. back: {
  30481. height: math.unit(6, "feet"),
  30482. weight: math.unit(235, "lb"),
  30483. name: "Back",
  30484. image: {
  30485. source: "./media/characters/theo-pangolin/back.svg",
  30486. extra: 1979 / 1979,
  30487. bottom: 40 / 2019
  30488. }
  30489. },
  30490. feral: {
  30491. height: math.unit(2, "feet"),
  30492. weight: math.unit(30, "lb"),
  30493. name: "Feral",
  30494. image: {
  30495. source: "./media/characters/theo-pangolin/feral.svg",
  30496. extra: 803 / 791,
  30497. bottom: 181 / 984
  30498. }
  30499. },
  30500. footFive: {
  30501. height: math.unit(1.43, "feet"),
  30502. name: "Foot (Five Toes)",
  30503. image: {
  30504. source: "./media/characters/theo-pangolin/foot-five.svg"
  30505. }
  30506. },
  30507. footFour: {
  30508. height: math.unit(1.43, "feet"),
  30509. name: "Foot (Four Toes)",
  30510. image: {
  30511. source: "./media/characters/theo-pangolin/foot-four.svg"
  30512. }
  30513. },
  30514. handFour: {
  30515. height: math.unit(0.81, "feet"),
  30516. name: "Hand (Four Fingers)",
  30517. image: {
  30518. source: "./media/characters/theo-pangolin/hand-four.svg"
  30519. }
  30520. },
  30521. handThree: {
  30522. height: math.unit(0.81, "feet"),
  30523. name: "Hand (Three Fingers)",
  30524. image: {
  30525. source: "./media/characters/theo-pangolin/hand-three.svg"
  30526. }
  30527. },
  30528. headFront: {
  30529. height: math.unit(1.37, "feet"),
  30530. name: "Head (Front)",
  30531. image: {
  30532. source: "./media/characters/theo-pangolin/head-front.svg"
  30533. }
  30534. },
  30535. headSide: {
  30536. height: math.unit(1.43, "feet"),
  30537. name: "Head (Side)",
  30538. image: {
  30539. source: "./media/characters/theo-pangolin/head-side.svg"
  30540. }
  30541. },
  30542. tongue: {
  30543. height: math.unit(2.29, "feet"),
  30544. name: "Tongue",
  30545. image: {
  30546. source: "./media/characters/theo-pangolin/tongue.svg"
  30547. }
  30548. },
  30549. },
  30550. [
  30551. {
  30552. name: "Normal",
  30553. height: math.unit(6, "feet")
  30554. },
  30555. {
  30556. name: "Macro",
  30557. height: math.unit(400, "feet"),
  30558. default: true
  30559. },
  30560. ]
  30561. ))
  30562. characterMakers.push(() => makeCharacter(
  30563. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30564. {
  30565. front: {
  30566. height: math.unit(6, "inches"),
  30567. weight: math.unit(0.036, "kg"),
  30568. name: "Front",
  30569. image: {
  30570. source: "./media/characters/renée/front.svg",
  30571. extra: 900 / 886,
  30572. bottom: 8 / 908
  30573. }
  30574. },
  30575. },
  30576. [
  30577. {
  30578. name: "Nano",
  30579. height: math.unit(1, "nm")
  30580. },
  30581. {
  30582. name: "Micro",
  30583. height: math.unit(1, "mm")
  30584. },
  30585. {
  30586. name: "Normal",
  30587. height: math.unit(6, "inches")
  30588. },
  30589. {
  30590. name: "Macro",
  30591. height: math.unit(2000, "feet"),
  30592. default: true
  30593. },
  30594. {
  30595. name: "Megamacro",
  30596. height: math.unit(2, "km")
  30597. },
  30598. {
  30599. name: "Gigamacro",
  30600. height: math.unit(2000, "km")
  30601. },
  30602. {
  30603. name: "Teramacro",
  30604. height: math.unit(250000, "km")
  30605. },
  30606. ]
  30607. ))
  30608. characterMakers.push(() => makeCharacter(
  30609. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30610. {
  30611. front: {
  30612. height: math.unit(4, "meters"),
  30613. weight: math.unit(150, "kg"),
  30614. name: "Front",
  30615. image: {
  30616. source: "./media/characters/caledvwlch/front.svg",
  30617. extra: 1760 / 1551,
  30618. bottom: 28 / 1788
  30619. }
  30620. },
  30621. side: {
  30622. height: math.unit(4, "meters"),
  30623. weight: math.unit(150, "kg"),
  30624. name: "Side",
  30625. image: {
  30626. source: "./media/characters/caledvwlch/side.svg",
  30627. extra: 1605 / 1536,
  30628. bottom: 31 / 1636
  30629. }
  30630. },
  30631. back: {
  30632. height: math.unit(4, "meters"),
  30633. weight: math.unit(150, "kg"),
  30634. name: "Back",
  30635. image: {
  30636. source: "./media/characters/caledvwlch/back.svg",
  30637. extra: 1635 / 1565,
  30638. bottom: 27 / 1662
  30639. }
  30640. },
  30641. },
  30642. [
  30643. {
  30644. name: "\"Incognito\"",
  30645. height: math.unit(4, "meters")
  30646. },
  30647. {
  30648. name: "Small rampage",
  30649. height: math.unit(600, "meters")
  30650. },
  30651. {
  30652. name: "Mega",
  30653. height: math.unit(30, "km")
  30654. },
  30655. {
  30656. name: "Home-size",
  30657. height: math.unit(50, "km"),
  30658. default: true
  30659. },
  30660. {
  30661. name: "Giga",
  30662. height: math.unit(300, "km")
  30663. },
  30664. {
  30665. name: "Lounging",
  30666. height: math.unit(11000, "km")
  30667. },
  30668. {
  30669. name: "Planet snacking",
  30670. height: math.unit(2000000, "km")
  30671. },
  30672. ]
  30673. ))
  30674. characterMakers.push(() => makeCharacter(
  30675. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30676. {
  30677. front: {
  30678. height: math.unit(6, "feet"),
  30679. weight: math.unit(215, "lb"),
  30680. name: "Front",
  30681. image: {
  30682. source: "./media/characters/sapphire-svell/front.svg",
  30683. extra: 495 / 455,
  30684. bottom: 20 / 515
  30685. }
  30686. },
  30687. back: {
  30688. height: math.unit(6, "feet"),
  30689. weight: math.unit(216, "lb"),
  30690. name: "Back",
  30691. image: {
  30692. source: "./media/characters/sapphire-svell/back.svg",
  30693. extra: 497 / 477,
  30694. bottom: 7 / 504
  30695. }
  30696. },
  30697. maw: {
  30698. height: math.unit(1.57, "feet"),
  30699. name: "Maw",
  30700. image: {
  30701. source: "./media/characters/sapphire-svell/maw.svg"
  30702. }
  30703. },
  30704. foot: {
  30705. height: math.unit(1.07, "feet"),
  30706. name: "Foot",
  30707. image: {
  30708. source: "./media/characters/sapphire-svell/foot.svg"
  30709. }
  30710. },
  30711. toering: {
  30712. height: math.unit(1.7, "inch"),
  30713. name: "Toering",
  30714. image: {
  30715. source: "./media/characters/sapphire-svell/toering.svg"
  30716. }
  30717. },
  30718. },
  30719. [
  30720. {
  30721. name: "Normal",
  30722. height: math.unit(300, "feet"),
  30723. default: true
  30724. },
  30725. {
  30726. name: "Augmented",
  30727. height: math.unit(1250, "feet")
  30728. },
  30729. {
  30730. name: "Unleashed",
  30731. height: math.unit(3000, "feet")
  30732. },
  30733. ]
  30734. ))
  30735. characterMakers.push(() => makeCharacter(
  30736. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30737. {
  30738. side: {
  30739. height: math.unit(2 + 3 / 12, "feet"),
  30740. weight: math.unit(110, "lb"),
  30741. name: "Side",
  30742. image: {
  30743. source: "./media/characters/glitch-flux/side.svg",
  30744. extra: 997 / 805,
  30745. bottom: 20 / 1017
  30746. }
  30747. },
  30748. },
  30749. [
  30750. {
  30751. name: "Normal",
  30752. height: math.unit(2 + 3 / 12, "feet"),
  30753. default: true
  30754. },
  30755. ]
  30756. ))
  30757. characterMakers.push(() => makeCharacter(
  30758. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30759. {
  30760. front: {
  30761. height: math.unit(4, "meters"),
  30762. name: "Front",
  30763. image: {
  30764. source: "./media/characters/mid/front.svg",
  30765. extra: 507 / 476,
  30766. bottom: 17 / 524
  30767. }
  30768. },
  30769. back: {
  30770. height: math.unit(4, "meters"),
  30771. name: "Back",
  30772. image: {
  30773. source: "./media/characters/mid/back.svg",
  30774. extra: 519 / 487,
  30775. bottom: 7 / 526
  30776. }
  30777. },
  30778. stuck: {
  30779. height: math.unit(2.2, "meters"),
  30780. name: "Stuck",
  30781. image: {
  30782. source: "./media/characters/mid/stuck.svg",
  30783. extra: 1951 / 1869,
  30784. bottom: 88 / 2039
  30785. }
  30786. }
  30787. },
  30788. [
  30789. {
  30790. name: "Normal",
  30791. height: math.unit(4, "meters"),
  30792. default: true
  30793. },
  30794. {
  30795. name: "Big",
  30796. height: math.unit(10, "meters")
  30797. },
  30798. {
  30799. name: "Macro",
  30800. height: math.unit(800, "meters")
  30801. },
  30802. {
  30803. name: "Megamacro",
  30804. height: math.unit(100, "km")
  30805. },
  30806. {
  30807. name: "Overgrown",
  30808. height: math.unit(1, "parsec")
  30809. },
  30810. ]
  30811. ))
  30812. characterMakers.push(() => makeCharacter(
  30813. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30814. {
  30815. front: {
  30816. height: math.unit(2.5, "meters"),
  30817. weight: math.unit(225, "kg"),
  30818. name: "Front",
  30819. image: {
  30820. source: "./media/characters/iris/front.svg",
  30821. extra: 3348 / 3251,
  30822. bottom: 205 / 3553
  30823. }
  30824. },
  30825. maw: {
  30826. height: math.unit(0.56, "meter"),
  30827. name: "Maw",
  30828. image: {
  30829. source: "./media/characters/iris/maw.svg"
  30830. }
  30831. },
  30832. },
  30833. [
  30834. {
  30835. name: "Mewter cat",
  30836. height: math.unit(1.2, "meters")
  30837. },
  30838. {
  30839. name: "Minimacro",
  30840. height: math.unit(2.5, "meters"),
  30841. default: true
  30842. },
  30843. {
  30844. name: "Macro",
  30845. height: math.unit(180, "meters")
  30846. },
  30847. {
  30848. name: "Megamacro",
  30849. height: math.unit(2746, "meters")
  30850. },
  30851. ]
  30852. ))
  30853. characterMakers.push(() => makeCharacter(
  30854. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30855. {
  30856. front: {
  30857. height: math.unit(6, "feet"),
  30858. weight: math.unit(135, "lb"),
  30859. name: "Front",
  30860. image: {
  30861. source: "./media/characters/axel/front.svg",
  30862. extra: 908 / 908,
  30863. bottom: 58 / 966
  30864. }
  30865. },
  30866. side: {
  30867. height: math.unit(6, "feet"),
  30868. weight: math.unit(135, "lb"),
  30869. name: "Side",
  30870. image: {
  30871. source: "./media/characters/axel/side.svg",
  30872. extra: 958 / 958,
  30873. bottom: 11 / 969
  30874. }
  30875. },
  30876. back: {
  30877. height: math.unit(6, "feet"),
  30878. weight: math.unit(135, "lb"),
  30879. name: "Back",
  30880. image: {
  30881. source: "./media/characters/axel/back.svg",
  30882. extra: 887 / 887,
  30883. bottom: 34 / 921
  30884. }
  30885. },
  30886. head: {
  30887. height: math.unit(1.07, "feet"),
  30888. name: "Head",
  30889. image: {
  30890. source: "./media/characters/axel/head.svg"
  30891. }
  30892. },
  30893. beak: {
  30894. height: math.unit(1.4, "feet"),
  30895. name: "Beak",
  30896. image: {
  30897. source: "./media/characters/axel/beak.svg"
  30898. }
  30899. },
  30900. beakSide: {
  30901. height: math.unit(1.4, "feet"),
  30902. name: "Beak Side",
  30903. image: {
  30904. source: "./media/characters/axel/beak-side.svg"
  30905. }
  30906. },
  30907. sheath: {
  30908. height: math.unit(0.5, "feet"),
  30909. name: "Sheath",
  30910. image: {
  30911. source: "./media/characters/axel/sheath.svg"
  30912. }
  30913. },
  30914. dick: {
  30915. height: math.unit(0.98, "feet"),
  30916. name: "Dick",
  30917. image: {
  30918. source: "./media/characters/axel/dick.svg"
  30919. }
  30920. },
  30921. },
  30922. [
  30923. {
  30924. name: "Macro",
  30925. height: math.unit(68, "meters"),
  30926. default: true
  30927. },
  30928. ]
  30929. ))
  30930. characterMakers.push(() => makeCharacter(
  30931. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30932. {
  30933. front: {
  30934. height: math.unit(3.5, "meters"),
  30935. weight: math.unit(1200, "kg"),
  30936. name: "Front",
  30937. image: {
  30938. source: "./media/characters/joanna/front.svg",
  30939. extra: 1596 / 1488,
  30940. bottom: 29 / 1625
  30941. }
  30942. },
  30943. back: {
  30944. height: math.unit(3.5, "meters"),
  30945. weight: math.unit(1200, "kg"),
  30946. name: "Back",
  30947. image: {
  30948. source: "./media/characters/joanna/back.svg",
  30949. extra: 1594 / 1495,
  30950. bottom: 26 / 1620
  30951. }
  30952. },
  30953. frontShorts: {
  30954. height: math.unit(3.5, "meters"),
  30955. weight: math.unit(1200, "kg"),
  30956. name: "Front (Shorts)",
  30957. image: {
  30958. source: "./media/characters/joanna/front-shorts.svg",
  30959. extra: 1596 / 1488,
  30960. bottom: 29 / 1625
  30961. }
  30962. },
  30963. frontBiker: {
  30964. height: math.unit(3.5, "meters"),
  30965. weight: math.unit(1200, "kg"),
  30966. name: "Front (Biker)",
  30967. image: {
  30968. source: "./media/characters/joanna/front-biker.svg",
  30969. extra: 1596 / 1488,
  30970. bottom: 29 / 1625
  30971. }
  30972. },
  30973. backBiker: {
  30974. height: math.unit(3.5, "meters"),
  30975. weight: math.unit(1200, "kg"),
  30976. name: "Back (Biker)",
  30977. image: {
  30978. source: "./media/characters/joanna/back-biker.svg",
  30979. extra: 1594 / 1495,
  30980. bottom: 88 / 1682
  30981. }
  30982. },
  30983. bikeLeft: {
  30984. height: math.unit(2.4, "meters"),
  30985. weight: math.unit(1600, "kg"),
  30986. name: "Bike (Left)",
  30987. image: {
  30988. source: "./media/characters/joanna/bike-left.svg",
  30989. extra: 720 / 720,
  30990. bottom: 8 / 728
  30991. }
  30992. },
  30993. bikeRight: {
  30994. height: math.unit(2.4, "meters"),
  30995. weight: math.unit(1600, "kg"),
  30996. name: "Bike (Right)",
  30997. image: {
  30998. source: "./media/characters/joanna/bike-right.svg",
  30999. extra: 720 / 720,
  31000. bottom: 8 / 728
  31001. }
  31002. },
  31003. },
  31004. [
  31005. {
  31006. name: "Incognito",
  31007. height: math.unit(3.5, "meters")
  31008. },
  31009. {
  31010. name: "Casual Big",
  31011. height: math.unit(200, "meters")
  31012. },
  31013. {
  31014. name: "Macro",
  31015. height: math.unit(600, "meters")
  31016. },
  31017. {
  31018. name: "Original",
  31019. height: math.unit(20, "km"),
  31020. default: true
  31021. },
  31022. {
  31023. name: "Giga",
  31024. height: math.unit(400, "km")
  31025. },
  31026. {
  31027. name: "Lounging",
  31028. height: math.unit(1500, "km")
  31029. },
  31030. {
  31031. name: "Planetary",
  31032. height: math.unit(200000, "km")
  31033. },
  31034. ]
  31035. ))
  31036. characterMakers.push(() => makeCharacter(
  31037. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31038. {
  31039. front: {
  31040. height: math.unit(6, "feet"),
  31041. weight: math.unit(150, "lb"),
  31042. name: "Front",
  31043. image: {
  31044. source: "./media/characters/hugo-sigil/front.svg",
  31045. extra: 522 / 500,
  31046. bottom: 2 / 524
  31047. }
  31048. },
  31049. back: {
  31050. height: math.unit(6, "feet"),
  31051. weight: math.unit(150, "lb"),
  31052. name: "Back",
  31053. image: {
  31054. source: "./media/characters/hugo-sigil/back.svg",
  31055. extra: 519 / 495,
  31056. bottom: 5 / 524
  31057. }
  31058. },
  31059. maw: {
  31060. height: math.unit(1.4, "feet"),
  31061. weight: math.unit(150, "lb"),
  31062. name: "Maw",
  31063. image: {
  31064. source: "./media/characters/hugo-sigil/maw.svg"
  31065. }
  31066. },
  31067. feet: {
  31068. height: math.unit(1.56, "feet"),
  31069. weight: math.unit(150, "lb"),
  31070. name: "Feet",
  31071. image: {
  31072. source: "./media/characters/hugo-sigil/feet.svg",
  31073. extra: 177 / 177,
  31074. bottom: 12 / 189
  31075. }
  31076. },
  31077. },
  31078. [
  31079. {
  31080. name: "Normal",
  31081. height: math.unit(6, "feet")
  31082. },
  31083. {
  31084. name: "Macro",
  31085. height: math.unit(200, "feet"),
  31086. default: true
  31087. },
  31088. ]
  31089. ))
  31090. characterMakers.push(() => makeCharacter(
  31091. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31092. {
  31093. front: {
  31094. height: math.unit(6, "feet"),
  31095. weight: math.unit(150, "lb"),
  31096. name: "Front",
  31097. image: {
  31098. source: "./media/characters/peri/front.svg",
  31099. extra: 2354 / 2233,
  31100. bottom: 49 / 2403
  31101. }
  31102. },
  31103. },
  31104. [
  31105. {
  31106. name: "Really Small",
  31107. height: math.unit(1, "nm")
  31108. },
  31109. {
  31110. name: "Micro",
  31111. height: math.unit(4, "inches")
  31112. },
  31113. {
  31114. name: "Normal",
  31115. height: math.unit(7, "inches"),
  31116. default: true
  31117. },
  31118. {
  31119. name: "Macro",
  31120. height: math.unit(400, "feet")
  31121. },
  31122. {
  31123. name: "Megamacro",
  31124. height: math.unit(100, "miles")
  31125. },
  31126. ]
  31127. ))
  31128. characterMakers.push(() => makeCharacter(
  31129. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31130. {
  31131. frontSlim: {
  31132. height: math.unit(7, "feet"),
  31133. name: "Front (Slim)",
  31134. image: {
  31135. source: "./media/characters/issilora/front-slim.svg",
  31136. extra: 529 / 449,
  31137. bottom: 53 / 582
  31138. }
  31139. },
  31140. sideSlim: {
  31141. height: math.unit(7, "feet"),
  31142. name: "Side (Slim)",
  31143. image: {
  31144. source: "./media/characters/issilora/side-slim.svg",
  31145. extra: 570 / 480,
  31146. bottom: 30 / 600
  31147. }
  31148. },
  31149. backSlim: {
  31150. height: math.unit(7, "feet"),
  31151. name: "Back (Slim)",
  31152. image: {
  31153. source: "./media/characters/issilora/back-slim.svg",
  31154. extra: 537 / 455,
  31155. bottom: 46 / 583
  31156. }
  31157. },
  31158. frontBuff: {
  31159. height: math.unit(7, "feet"),
  31160. name: "Front (Buff)",
  31161. image: {
  31162. source: "./media/characters/issilora/front-buff.svg",
  31163. extra: 2310 / 2035,
  31164. bottom: 335 / 2645
  31165. }
  31166. },
  31167. head: {
  31168. height: math.unit(1.94, "feet"),
  31169. name: "Head",
  31170. image: {
  31171. source: "./media/characters/issilora/head.svg"
  31172. }
  31173. },
  31174. },
  31175. [
  31176. {
  31177. name: "Minimum",
  31178. height: math.unit(7, "feet")
  31179. },
  31180. {
  31181. name: "Comfortable",
  31182. height: math.unit(17, "feet")
  31183. },
  31184. {
  31185. name: "Fun Size",
  31186. height: math.unit(47, "feet")
  31187. },
  31188. {
  31189. name: "Natural Macro",
  31190. height: math.unit(137, "feet"),
  31191. default: true
  31192. },
  31193. {
  31194. name: "Maximum Kaiju",
  31195. height: math.unit(397, "feet")
  31196. },
  31197. ]
  31198. ))
  31199. characterMakers.push(() => makeCharacter(
  31200. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31201. {
  31202. front: {
  31203. height: math.unit(50 + 9/12, "feet"),
  31204. weight: math.unit(32.8, "tons"),
  31205. name: "Front",
  31206. image: {
  31207. source: "./media/characters/irb'iiritaahn/front.svg",
  31208. extra: 1878/1826,
  31209. bottom: 326/2204
  31210. }
  31211. },
  31212. back: {
  31213. height: math.unit(50 + 9/12, "feet"),
  31214. weight: math.unit(32.8, "tons"),
  31215. name: "Back",
  31216. image: {
  31217. source: "./media/characters/irb'iiritaahn/back.svg",
  31218. extra: 2052/2018,
  31219. bottom: 152/2204
  31220. }
  31221. },
  31222. head: {
  31223. height: math.unit(12.86, "feet"),
  31224. name: "Head",
  31225. image: {
  31226. source: "./media/characters/irb'iiritaahn/head.svg"
  31227. }
  31228. },
  31229. maw: {
  31230. height: math.unit(9.66, "feet"),
  31231. name: "Maw",
  31232. image: {
  31233. source: "./media/characters/irb'iiritaahn/maw.svg"
  31234. }
  31235. },
  31236. frontDick: {
  31237. height: math.unit(8.78461, "feet"),
  31238. name: "Front Dick",
  31239. image: {
  31240. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  31241. }
  31242. },
  31243. rearDick: {
  31244. height: math.unit(8.78461, "feet"),
  31245. name: "Rear Dick",
  31246. image: {
  31247. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31248. }
  31249. },
  31250. rearDickUnfolded: {
  31251. height: math.unit(8.78, "feet"),
  31252. name: "Rear Dick (Unfolded)",
  31253. image: {
  31254. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31255. }
  31256. },
  31257. wings: {
  31258. height: math.unit(43, "feet"),
  31259. name: "Wings",
  31260. image: {
  31261. source: "./media/characters/irb'iiritaahn/wings.svg"
  31262. }
  31263. },
  31264. },
  31265. [
  31266. {
  31267. name: "Macro",
  31268. height: math.unit(50 + 9/12, "feet"),
  31269. default: true
  31270. },
  31271. ]
  31272. ))
  31273. characterMakers.push(() => makeCharacter(
  31274. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31275. {
  31276. front: {
  31277. height: math.unit(205, "cm"),
  31278. weight: math.unit(102, "kg"),
  31279. name: "Front",
  31280. image: {
  31281. source: "./media/characters/irbisgreif/front.svg",
  31282. extra: 785/706,
  31283. bottom: 13/798
  31284. }
  31285. },
  31286. back: {
  31287. height: math.unit(205, "cm"),
  31288. weight: math.unit(102, "kg"),
  31289. name: "Back",
  31290. image: {
  31291. source: "./media/characters/irbisgreif/back.svg",
  31292. extra: 713/701,
  31293. bottom: 26/739
  31294. }
  31295. },
  31296. frontDressed: {
  31297. height: math.unit(216, "cm"),
  31298. weight: math.unit(102, "kg"),
  31299. name: "Front-dressed",
  31300. image: {
  31301. source: "./media/characters/irbisgreif/front-dressed.svg",
  31302. extra: 902/776,
  31303. bottom: 14/916
  31304. }
  31305. },
  31306. sideDressed: {
  31307. height: math.unit(195, "cm"),
  31308. weight: math.unit(102, "kg"),
  31309. name: "Side-dressed",
  31310. image: {
  31311. source: "./media/characters/irbisgreif/side-dressed.svg",
  31312. extra: 788/688,
  31313. bottom: 21/809
  31314. }
  31315. },
  31316. backDressed: {
  31317. height: math.unit(216, "cm"),
  31318. weight: math.unit(102, "kg"),
  31319. name: "Back-dressed",
  31320. image: {
  31321. source: "./media/characters/irbisgreif/back-dressed.svg",
  31322. extra: 901/783,
  31323. bottom: 10/911
  31324. }
  31325. },
  31326. dick: {
  31327. height: math.unit(0.49, "feet"),
  31328. name: "Dick",
  31329. image: {
  31330. source: "./media/characters/irbisgreif/dick.svg"
  31331. }
  31332. },
  31333. wingTop: {
  31334. height: math.unit(1.93 , "feet"),
  31335. name: "Wing-top",
  31336. image: {
  31337. source: "./media/characters/irbisgreif/wing-top.svg"
  31338. }
  31339. },
  31340. wingBottom: {
  31341. height: math.unit(1.93 , "feet"),
  31342. name: "Wing-bottom",
  31343. image: {
  31344. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31345. }
  31346. },
  31347. },
  31348. [
  31349. {
  31350. name: "Normal",
  31351. height: math.unit(216, "cm"),
  31352. default: true
  31353. },
  31354. ]
  31355. ))
  31356. characterMakers.push(() => makeCharacter(
  31357. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31358. {
  31359. front: {
  31360. height: math.unit(6, "feet"),
  31361. weight: math.unit(150, "lb"),
  31362. name: "Front",
  31363. image: {
  31364. source: "./media/characters/pride/front.svg",
  31365. extra: 1299/1230,
  31366. bottom: 18/1317
  31367. }
  31368. },
  31369. },
  31370. [
  31371. {
  31372. name: "Normal",
  31373. height: math.unit(7, "feet")
  31374. },
  31375. {
  31376. name: "Mini-macro",
  31377. height: math.unit(11, "feet")
  31378. },
  31379. {
  31380. name: "Macro",
  31381. height: math.unit(15, "meters"),
  31382. default: true
  31383. },
  31384. {
  31385. name: "Macro+",
  31386. height: math.unit(40, "meters")
  31387. },
  31388. ]
  31389. ))
  31390. characterMakers.push(() => makeCharacter(
  31391. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31392. {
  31393. front: {
  31394. height: math.unit(4 + 2 / 12, "feet"),
  31395. weight: math.unit(95, "lb"),
  31396. name: "Front",
  31397. image: {
  31398. source: "./media/characters/vaelophis-nyx/front.svg",
  31399. extra: 2532/2330,
  31400. bottom: 0/2532
  31401. }
  31402. },
  31403. back: {
  31404. height: math.unit(4 + 2 / 12, "feet"),
  31405. weight: math.unit(95, "lb"),
  31406. name: "Back",
  31407. image: {
  31408. source: "./media/characters/vaelophis-nyx/back.svg",
  31409. extra: 2484/2361,
  31410. bottom: 0/2484
  31411. }
  31412. },
  31413. feralSide: {
  31414. height: math.unit(2 + 1/12, "feet"),
  31415. weight: math.unit(20, "lb"),
  31416. name: "Feral (Side)",
  31417. image: {
  31418. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31419. extra: 1721/1581,
  31420. bottom: 70/1791
  31421. }
  31422. },
  31423. feralLazing: {
  31424. height: math.unit(1.08, "feet"),
  31425. weight: math.unit(20, "lb"),
  31426. name: "Feral (Lazing)",
  31427. image: {
  31428. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31429. extra: 822/822,
  31430. bottom: 248/1070
  31431. }
  31432. },
  31433. ear: {
  31434. height: math.unit(0.416, "feet"),
  31435. name: "Ear",
  31436. image: {
  31437. source: "./media/characters/vaelophis-nyx/ear.svg"
  31438. }
  31439. },
  31440. eye: {
  31441. height: math.unit(0.0748, "feet"),
  31442. name: "Eye",
  31443. image: {
  31444. source: "./media/characters/vaelophis-nyx/eye.svg"
  31445. }
  31446. },
  31447. mouth: {
  31448. height: math.unit(0.378, "feet"),
  31449. name: "Mouth",
  31450. image: {
  31451. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31452. }
  31453. },
  31454. spade: {
  31455. height: math.unit(0.55, "feet"),
  31456. name: "Spade",
  31457. image: {
  31458. source: "./media/characters/vaelophis-nyx/spade.svg"
  31459. }
  31460. },
  31461. },
  31462. [
  31463. {
  31464. name: "Normal",
  31465. height: math.unit(4 + 2/12, "feet"),
  31466. default: true
  31467. },
  31468. ]
  31469. ))
  31470. characterMakers.push(() => makeCharacter(
  31471. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31472. {
  31473. front: {
  31474. height: math.unit(7, "feet"),
  31475. weight: math.unit(231, "lb"),
  31476. name: "Front",
  31477. image: {
  31478. source: "./media/characters/flux/front.svg",
  31479. extra: 919/871,
  31480. bottom: 0/919
  31481. }
  31482. },
  31483. back: {
  31484. height: math.unit(7, "feet"),
  31485. weight: math.unit(231, "lb"),
  31486. name: "Back",
  31487. image: {
  31488. source: "./media/characters/flux/back.svg",
  31489. extra: 1040/992,
  31490. bottom: 0/1040
  31491. }
  31492. },
  31493. frontDressed: {
  31494. height: math.unit(7, "feet"),
  31495. weight: math.unit(231, "lb"),
  31496. name: "Front (Dressed)",
  31497. image: {
  31498. source: "./media/characters/flux/front-dressed.svg",
  31499. extra: 919/871,
  31500. bottom: 0/919
  31501. }
  31502. },
  31503. feralSide: {
  31504. height: math.unit(5, "feet"),
  31505. weight: math.unit(150, "lb"),
  31506. name: "Feral (Side)",
  31507. image: {
  31508. source: "./media/characters/flux/feral-side.svg",
  31509. extra: 598/528,
  31510. bottom: 28/626
  31511. }
  31512. },
  31513. head: {
  31514. height: math.unit(1.585, "feet"),
  31515. name: "Head",
  31516. image: {
  31517. source: "./media/characters/flux/head.svg"
  31518. }
  31519. },
  31520. headSide: {
  31521. height: math.unit(1.74, "feet"),
  31522. name: "Head (Side)",
  31523. image: {
  31524. source: "./media/characters/flux/head-side.svg"
  31525. }
  31526. },
  31527. headSideFire: {
  31528. height: math.unit(1.76, "feet"),
  31529. name: "Head (Side, Fire)",
  31530. image: {
  31531. source: "./media/characters/flux/head-side-fire.svg"
  31532. }
  31533. },
  31534. },
  31535. [
  31536. {
  31537. name: "Normal",
  31538. height: math.unit(7, "feet"),
  31539. default: true
  31540. },
  31541. ]
  31542. ))
  31543. characterMakers.push(() => makeCharacter(
  31544. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31545. {
  31546. front: {
  31547. height: math.unit(9, "feet"),
  31548. weight: math.unit(1012, "lb"),
  31549. name: "Front",
  31550. image: {
  31551. source: "./media/characters/ulfra-lupae/front.svg",
  31552. extra: 1083/1011,
  31553. bottom: 67/1150
  31554. }
  31555. },
  31556. },
  31557. [
  31558. {
  31559. name: "Micro",
  31560. height: math.unit(6, "inches")
  31561. },
  31562. {
  31563. name: "Socializing",
  31564. height: math.unit(6 + 5/12, "feet")
  31565. },
  31566. {
  31567. name: "Normal",
  31568. height: math.unit(9, "feet"),
  31569. default: true
  31570. },
  31571. {
  31572. name: "Macro",
  31573. height: math.unit(150, "feet")
  31574. },
  31575. ]
  31576. ))
  31577. characterMakers.push(() => makeCharacter(
  31578. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31579. {
  31580. front: {
  31581. height: math.unit(5 + 2/12, "feet"),
  31582. weight: math.unit(120, "lb"),
  31583. name: "Front",
  31584. image: {
  31585. source: "./media/characters/timber/front.svg",
  31586. extra: 2814/2705,
  31587. bottom: 181/2995
  31588. }
  31589. },
  31590. },
  31591. [
  31592. {
  31593. name: "Normal",
  31594. height: math.unit(5 + 2/12, "feet"),
  31595. default: true
  31596. },
  31597. ]
  31598. ))
  31599. characterMakers.push(() => makeCharacter(
  31600. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31601. {
  31602. front: {
  31603. height: math.unit(5 + 7/12, "feet"),
  31604. weight: math.unit(220, "lb"),
  31605. name: "Front",
  31606. image: {
  31607. source: "./media/characters/nicki/front.svg",
  31608. extra: 453/419,
  31609. bottom: 7/460
  31610. }
  31611. },
  31612. frontAlt: {
  31613. height: math.unit(5 + 7/12, "feet"),
  31614. weight: math.unit(220, "lb"),
  31615. name: "Front-alt",
  31616. image: {
  31617. source: "./media/characters/nicki/front-alt.svg",
  31618. extra: 435/411,
  31619. bottom: 12/447
  31620. }
  31621. },
  31622. back: {
  31623. height: math.unit(5 + 7/12, "feet"),
  31624. weight: math.unit(220, "lb"),
  31625. name: "Back",
  31626. image: {
  31627. source: "./media/characters/nicki/back.svg",
  31628. extra: 440/413,
  31629. bottom: 19/459
  31630. }
  31631. },
  31632. taur: {
  31633. height: math.unit(7 + 6/12, "feet"),
  31634. weight: math.unit(700, "lb"),
  31635. name: "Taur",
  31636. image: {
  31637. source: "./media/characters/nicki/taur.svg",
  31638. extra: 975/773,
  31639. bottom: 0/975
  31640. }
  31641. },
  31642. frontNsfw: {
  31643. height: math.unit(5 + 7/12, "feet"),
  31644. weight: math.unit(220, "lb"),
  31645. name: "Front (NSFW)",
  31646. image: {
  31647. source: "./media/characters/nicki/front-nsfw.svg",
  31648. extra: 453/419,
  31649. bottom: 7/460
  31650. }
  31651. },
  31652. frontNsfwAlt: {
  31653. height: math.unit(5 + 7/12, "feet"),
  31654. weight: math.unit(220, "lb"),
  31655. name: "Front (Alt, NSFW)",
  31656. image: {
  31657. source: "./media/characters/nicki/front-alt-nsfw.svg",
  31658. extra: 435/411,
  31659. bottom: 12/447
  31660. }
  31661. },
  31662. backNsfw: {
  31663. height: math.unit(5 + 7/12, "feet"),
  31664. weight: math.unit(220, "lb"),
  31665. name: "Back (NSFW)",
  31666. image: {
  31667. source: "./media/characters/nicki/back-nsfw.svg",
  31668. extra: 440/413,
  31669. bottom: 19/459
  31670. }
  31671. },
  31672. head: {
  31673. height: math.unit(2.1, "feet"),
  31674. name: "Head",
  31675. image: {
  31676. source: "./media/characters/nicki/head.svg"
  31677. }
  31678. },
  31679. paw: {
  31680. height: math.unit(1.88, "feet"),
  31681. name: "Paw",
  31682. image: {
  31683. source: "./media/characters/nicki/paw.svg"
  31684. }
  31685. },
  31686. },
  31687. [
  31688. {
  31689. name: "Normal",
  31690. height: math.unit(5 + 7/12, "feet"),
  31691. default: true
  31692. },
  31693. ]
  31694. ))
  31695. characterMakers.push(() => makeCharacter(
  31696. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31697. {
  31698. front: {
  31699. height: math.unit(7 + 10/12, "feet"),
  31700. weight: math.unit(3.5, "tons"),
  31701. name: "Front",
  31702. image: {
  31703. source: "./media/characters/lee/front.svg",
  31704. extra: 1773/1615,
  31705. bottom: 86/1859
  31706. }
  31707. },
  31708. hand: {
  31709. height: math.unit(1.78, "feet"),
  31710. name: "Hand",
  31711. image: {
  31712. source: "./media/characters/lee/hand.svg"
  31713. }
  31714. },
  31715. maw: {
  31716. height: math.unit(1.18, "feet"),
  31717. name: "Maw",
  31718. image: {
  31719. source: "./media/characters/lee/maw.svg"
  31720. }
  31721. },
  31722. },
  31723. [
  31724. {
  31725. name: "Normal",
  31726. height: math.unit(7 + 10/12, "feet"),
  31727. default: true
  31728. },
  31729. ]
  31730. ))
  31731. characterMakers.push(() => makeCharacter(
  31732. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31733. {
  31734. front: {
  31735. height: math.unit(9, "feet"),
  31736. name: "Front",
  31737. image: {
  31738. source: "./media/characters/guti/front.svg",
  31739. extra: 4551/4355,
  31740. bottom: 123/4674
  31741. }
  31742. },
  31743. tongue: {
  31744. height: math.unit(1, "feet"),
  31745. name: "Tongue",
  31746. image: {
  31747. source: "./media/characters/guti/tongue.svg"
  31748. }
  31749. },
  31750. paw: {
  31751. height: math.unit(1.18, "feet"),
  31752. name: "Paw",
  31753. image: {
  31754. source: "./media/characters/guti/paw.svg"
  31755. }
  31756. },
  31757. },
  31758. [
  31759. {
  31760. name: "Normal",
  31761. height: math.unit(9, "feet"),
  31762. default: true
  31763. },
  31764. ]
  31765. ))
  31766. characterMakers.push(() => makeCharacter(
  31767. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31768. {
  31769. side: {
  31770. height: math.unit(5, "meters"),
  31771. name: "Side",
  31772. image: {
  31773. source: "./media/characters/vesper/side.svg",
  31774. extra: 1605/1518,
  31775. bottom: 0/1605
  31776. }
  31777. },
  31778. },
  31779. [
  31780. {
  31781. name: "Small",
  31782. height: math.unit(5, "meters")
  31783. },
  31784. {
  31785. name: "Sage",
  31786. height: math.unit(100, "meters"),
  31787. default: true
  31788. },
  31789. {
  31790. name: "Fun Size",
  31791. height: math.unit(600, "meters")
  31792. },
  31793. {
  31794. name: "Goddess",
  31795. height: math.unit(20000, "km")
  31796. },
  31797. {
  31798. name: "Maximum",
  31799. height: math.unit(5, "galaxies")
  31800. },
  31801. ]
  31802. ))
  31803. characterMakers.push(() => makeCharacter(
  31804. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31805. {
  31806. front: {
  31807. height: math.unit(6 + 3/12, "feet"),
  31808. weight: math.unit(190, "lb"),
  31809. name: "Front",
  31810. image: {
  31811. source: "./media/characters/gawain/front.svg",
  31812. extra: 2222/2139,
  31813. bottom: 90/2312
  31814. }
  31815. },
  31816. back: {
  31817. height: math.unit(6 + 3/12, "feet"),
  31818. weight: math.unit(190, "lb"),
  31819. name: "Back",
  31820. image: {
  31821. source: "./media/characters/gawain/back.svg",
  31822. extra: 2199/2111,
  31823. bottom: 73/2272
  31824. }
  31825. },
  31826. },
  31827. [
  31828. {
  31829. name: "Normal",
  31830. height: math.unit(6 + 3/12, "feet"),
  31831. default: true
  31832. },
  31833. ]
  31834. ))
  31835. characterMakers.push(() => makeCharacter(
  31836. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31837. {
  31838. side: {
  31839. height: math.unit(3.5, "meters"),
  31840. weight: math.unit(16000, "lb"),
  31841. name: "Side",
  31842. image: {
  31843. source: "./media/characters/dascalti/side.svg",
  31844. extra: 392/273,
  31845. bottom: 47/439
  31846. }
  31847. },
  31848. breath: {
  31849. height: math.unit(7.4, "feet"),
  31850. name: "Breath",
  31851. image: {
  31852. source: "./media/characters/dascalti/breath.svg"
  31853. }
  31854. },
  31855. fed: {
  31856. height: math.unit(3.6, "meters"),
  31857. weight: math.unit(16000, "lb"),
  31858. name: "Fed",
  31859. image: {
  31860. source: "./media/characters/dascalti/fed.svg",
  31861. extra: 1419/820,
  31862. bottom: 95/1514
  31863. }
  31864. },
  31865. },
  31866. [
  31867. {
  31868. name: "Normal",
  31869. height: math.unit(3.5, "meters"),
  31870. default: true
  31871. },
  31872. ]
  31873. ))
  31874. characterMakers.push(() => makeCharacter(
  31875. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31876. {
  31877. front: {
  31878. height: math.unit(3 + 5/12, "feet"),
  31879. name: "Front",
  31880. image: {
  31881. source: "./media/characters/mauve/front.svg",
  31882. extra: 1126/1033,
  31883. bottom: 65/1191
  31884. }
  31885. },
  31886. side: {
  31887. height: math.unit(3 + 5/12, "feet"),
  31888. name: "Side",
  31889. image: {
  31890. source: "./media/characters/mauve/side.svg",
  31891. extra: 1089/1001,
  31892. bottom: 29/1118
  31893. }
  31894. },
  31895. back: {
  31896. height: math.unit(3 + 5/12, "feet"),
  31897. name: "Back",
  31898. image: {
  31899. source: "./media/characters/mauve/back.svg",
  31900. extra: 1173/1053,
  31901. bottom: 109/1282
  31902. }
  31903. },
  31904. },
  31905. [
  31906. {
  31907. name: "Normal",
  31908. height: math.unit(3 + 5/12, "feet"),
  31909. default: true
  31910. },
  31911. ]
  31912. ))
  31913. characterMakers.push(() => makeCharacter(
  31914. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31915. {
  31916. front: {
  31917. height: math.unit(6 + 3/12, "feet"),
  31918. weight: math.unit(430, "lb"),
  31919. name: "Front",
  31920. image: {
  31921. source: "./media/characters/carlos/front.svg",
  31922. extra: 1964/1913,
  31923. bottom: 70/2034
  31924. }
  31925. },
  31926. },
  31927. [
  31928. {
  31929. name: "Normal",
  31930. height: math.unit(6 + 3/12, "feet"),
  31931. default: true
  31932. },
  31933. ]
  31934. ))
  31935. characterMakers.push(() => makeCharacter(
  31936. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31937. {
  31938. back: {
  31939. height: math.unit(5 + 10/12, "feet"),
  31940. weight: math.unit(200, "lb"),
  31941. name: "Back",
  31942. image: {
  31943. source: "./media/characters/jax/back.svg",
  31944. extra: 764/739,
  31945. bottom: 25/789
  31946. }
  31947. },
  31948. },
  31949. [
  31950. {
  31951. name: "Normal",
  31952. height: math.unit(5 + 10/12, "feet"),
  31953. default: true
  31954. },
  31955. ]
  31956. ))
  31957. characterMakers.push(() => makeCharacter(
  31958. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31959. {
  31960. front: {
  31961. height: math.unit(8, "feet"),
  31962. weight: math.unit(250, "lb"),
  31963. name: "Front",
  31964. image: {
  31965. source: "./media/characters/eikthynir/front.svg",
  31966. extra: 1332/1166,
  31967. bottom: 82/1414
  31968. }
  31969. },
  31970. back: {
  31971. height: math.unit(8, "feet"),
  31972. weight: math.unit(250, "lb"),
  31973. name: "Back",
  31974. image: {
  31975. source: "./media/characters/eikthynir/back.svg",
  31976. extra: 1342/1190,
  31977. bottom: 19/1361
  31978. }
  31979. },
  31980. dick: {
  31981. height: math.unit(2.35, "feet"),
  31982. name: "Dick",
  31983. image: {
  31984. source: "./media/characters/eikthynir/dick.svg"
  31985. }
  31986. },
  31987. },
  31988. [
  31989. {
  31990. name: "Normal",
  31991. height: math.unit(8, "feet"),
  31992. default: true
  31993. },
  31994. ]
  31995. ))
  31996. characterMakers.push(() => makeCharacter(
  31997. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31998. {
  31999. front: {
  32000. height: math.unit(99, "meters"),
  32001. weight: math.unit(13000, "tons"),
  32002. name: "Front",
  32003. image: {
  32004. source: "./media/characters/zlmos/front.svg",
  32005. extra: 2202/1992,
  32006. bottom: 315/2517
  32007. }
  32008. },
  32009. },
  32010. [
  32011. {
  32012. name: "Macro",
  32013. height: math.unit(99, "meters"),
  32014. default: true
  32015. },
  32016. ]
  32017. ))
  32018. characterMakers.push(() => makeCharacter(
  32019. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32020. {
  32021. front: {
  32022. height: math.unit(6 + 5/12, "feet"),
  32023. name: "Front",
  32024. image: {
  32025. source: "./media/characters/purri/front.svg",
  32026. extra: 1698/1610,
  32027. bottom: 32/1730
  32028. }
  32029. },
  32030. frontAlt: {
  32031. height: math.unit(6 + 5/12, "feet"),
  32032. name: "Front (Alt)",
  32033. image: {
  32034. source: "./media/characters/purri/front-alt.svg",
  32035. extra: 450/420,
  32036. bottom: 26/476
  32037. }
  32038. },
  32039. boots: {
  32040. height: math.unit(5.5, "feet"),
  32041. name: "Boots",
  32042. image: {
  32043. source: "./media/characters/purri/boots.svg",
  32044. extra: 905/853,
  32045. bottom: 18/923
  32046. }
  32047. },
  32048. lying: {
  32049. height: math.unit(2, "feet"),
  32050. name: "Lying",
  32051. image: {
  32052. source: "./media/characters/purri/lying.svg",
  32053. extra: 940/843,
  32054. bottom: 146/1086
  32055. }
  32056. },
  32057. devious: {
  32058. height: math.unit(1.77, "feet"),
  32059. name: "Devious",
  32060. image: {
  32061. source: "./media/characters/purri/devious.svg",
  32062. extra: 1440/1155,
  32063. bottom: 147/1587
  32064. }
  32065. },
  32066. bean: {
  32067. height: math.unit(1.94, "feet"),
  32068. name: "Bean",
  32069. image: {
  32070. source: "./media/characters/purri/bean.svg"
  32071. }
  32072. },
  32073. },
  32074. [
  32075. {
  32076. name: "Micro",
  32077. height: math.unit(1, "mm")
  32078. },
  32079. {
  32080. name: "Normal",
  32081. height: math.unit(6 + 5/12, "feet"),
  32082. default: true
  32083. },
  32084. {
  32085. name: "Macro :3c",
  32086. height: math.unit(2, "miles")
  32087. },
  32088. ]
  32089. ))
  32090. characterMakers.push(() => makeCharacter(
  32091. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32092. {
  32093. front: {
  32094. height: math.unit(6 + 2/12, "feet"),
  32095. weight: math.unit(250, "lb"),
  32096. name: "Front",
  32097. image: {
  32098. source: "./media/characters/moonlight/front.svg",
  32099. extra: 1044/908,
  32100. bottom: 56/1100
  32101. }
  32102. },
  32103. feral: {
  32104. height: math.unit(3 + 1/12, "feet"),
  32105. weight: math.unit(50, "kg"),
  32106. name: "Feral",
  32107. image: {
  32108. source: "./media/characters/moonlight/feral.svg",
  32109. extra: 3705/2791,
  32110. bottom: 145/3850
  32111. }
  32112. },
  32113. paw: {
  32114. height: math.unit(1, "feet"),
  32115. name: "Paw",
  32116. image: {
  32117. source: "./media/characters/moonlight/paw.svg"
  32118. }
  32119. },
  32120. paws: {
  32121. height: math.unit(0.98, "feet"),
  32122. name: "Paws",
  32123. image: {
  32124. source: "./media/characters/moonlight/paws.svg",
  32125. extra: 939/939,
  32126. bottom: 50/989
  32127. }
  32128. },
  32129. mouth: {
  32130. height: math.unit(0.48, "feet"),
  32131. name: "Mouth",
  32132. image: {
  32133. source: "./media/characters/moonlight/mouth.svg"
  32134. }
  32135. },
  32136. dick: {
  32137. height: math.unit(1.46, "feet"),
  32138. name: "Dick",
  32139. image: {
  32140. source: "./media/characters/moonlight/dick.svg"
  32141. }
  32142. },
  32143. },
  32144. [
  32145. {
  32146. name: "Normal",
  32147. height: math.unit(6 + 2/12, "feet"),
  32148. default: true
  32149. },
  32150. {
  32151. name: "Macro",
  32152. height: math.unit(300, "feet")
  32153. },
  32154. {
  32155. name: "Macro+",
  32156. height: math.unit(1, "mile")
  32157. },
  32158. {
  32159. name: "Mt. Moon",
  32160. height: math.unit(5, "miles")
  32161. },
  32162. {
  32163. name: "Megamacro",
  32164. height: math.unit(15, "miles")
  32165. },
  32166. ]
  32167. ))
  32168. characterMakers.push(() => makeCharacter(
  32169. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32170. {
  32171. back: {
  32172. height: math.unit(6, "feet"),
  32173. weight: math.unit(150, "lb"),
  32174. name: "Back",
  32175. image: {
  32176. source: "./media/characters/sylen/back.svg",
  32177. extra: 1335/1273,
  32178. bottom: 107/1442
  32179. }
  32180. },
  32181. },
  32182. [
  32183. {
  32184. name: "Normal",
  32185. height: math.unit(5 + 5/12, "feet")
  32186. },
  32187. {
  32188. name: "Megamacro",
  32189. height: math.unit(3, "miles"),
  32190. default: true
  32191. },
  32192. ]
  32193. ))
  32194. characterMakers.push(() => makeCharacter(
  32195. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32196. {
  32197. front: {
  32198. height: math.unit(6, "feet"),
  32199. weight: math.unit(190, "lb"),
  32200. name: "Front",
  32201. image: {
  32202. source: "./media/characters/huttser/front.svg",
  32203. extra: 1152/1058,
  32204. bottom: 23/1175
  32205. }
  32206. },
  32207. side: {
  32208. height: math.unit(6, "feet"),
  32209. weight: math.unit(190, "lb"),
  32210. name: "Side",
  32211. image: {
  32212. source: "./media/characters/huttser/side.svg",
  32213. extra: 1174/1065,
  32214. bottom: 18/1192
  32215. }
  32216. },
  32217. back: {
  32218. height: math.unit(6, "feet"),
  32219. weight: math.unit(190, "lb"),
  32220. name: "Back",
  32221. image: {
  32222. source: "./media/characters/huttser/back.svg",
  32223. extra: 1158/1056,
  32224. bottom: 12/1170
  32225. }
  32226. },
  32227. },
  32228. [
  32229. ]
  32230. ))
  32231. characterMakers.push(() => makeCharacter(
  32232. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  32233. {
  32234. side: {
  32235. height: math.unit(12 + 9/12, "feet"),
  32236. weight: math.unit(15000, "lb"),
  32237. name: "Side",
  32238. image: {
  32239. source: "./media/characters/faan/side.svg",
  32240. extra: 2747/2697,
  32241. bottom: 0/2747
  32242. }
  32243. },
  32244. front: {
  32245. height: math.unit(12 + 9/12, "feet"),
  32246. weight: math.unit(15000, "lb"),
  32247. name: "Front",
  32248. image: {
  32249. source: "./media/characters/faan/front.svg",
  32250. extra: 607/571,
  32251. bottom: 24/631
  32252. }
  32253. },
  32254. head: {
  32255. height: math.unit(2.85, "feet"),
  32256. name: "Head",
  32257. image: {
  32258. source: "./media/characters/faan/head.svg"
  32259. }
  32260. },
  32261. headAlt: {
  32262. height: math.unit(3.13, "feet"),
  32263. name: "Head-alt",
  32264. image: {
  32265. source: "./media/characters/faan/head-alt.svg"
  32266. }
  32267. },
  32268. },
  32269. [
  32270. {
  32271. name: "Normal",
  32272. height: math.unit(12 + 9/12, "feet"),
  32273. default: true
  32274. },
  32275. ]
  32276. ))
  32277. characterMakers.push(() => makeCharacter(
  32278. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32279. {
  32280. front: {
  32281. height: math.unit(6, "feet"),
  32282. weight: math.unit(300, "lb"),
  32283. name: "Front",
  32284. image: {
  32285. source: "./media/characters/tanio/front.svg",
  32286. extra: 711/673,
  32287. bottom: 25/736
  32288. }
  32289. },
  32290. },
  32291. [
  32292. {
  32293. name: "Normal",
  32294. height: math.unit(6, "feet"),
  32295. default: true
  32296. },
  32297. ]
  32298. ))
  32299. characterMakers.push(() => makeCharacter(
  32300. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32301. {
  32302. front: {
  32303. height: math.unit(3, "inches"),
  32304. name: "Front",
  32305. image: {
  32306. source: "./media/characters/noboru/front.svg",
  32307. extra: 1039/932,
  32308. bottom: 18/1057
  32309. }
  32310. },
  32311. },
  32312. [
  32313. {
  32314. name: "Micro",
  32315. height: math.unit(3, "inches"),
  32316. default: true
  32317. },
  32318. ]
  32319. ))
  32320. characterMakers.push(() => makeCharacter(
  32321. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32322. {
  32323. front: {
  32324. height: math.unit(1.85, "meters"),
  32325. weight: math.unit(80, "kg"),
  32326. name: "Front",
  32327. image: {
  32328. source: "./media/characters/daniel-barrett/front.svg",
  32329. extra: 355/337,
  32330. bottom: 9/364
  32331. }
  32332. },
  32333. },
  32334. [
  32335. {
  32336. name: "Pico",
  32337. height: math.unit(0.0433, "mm")
  32338. },
  32339. {
  32340. name: "Nano",
  32341. height: math.unit(1.5, "mm")
  32342. },
  32343. {
  32344. name: "Micro",
  32345. height: math.unit(5.3, "cm"),
  32346. default: true
  32347. },
  32348. {
  32349. name: "Normal",
  32350. height: math.unit(1.85, "meters")
  32351. },
  32352. {
  32353. name: "Macro",
  32354. height: math.unit(64.7, "meters")
  32355. },
  32356. {
  32357. name: "Megamacro",
  32358. height: math.unit(2.26, "km")
  32359. },
  32360. {
  32361. name: "Gigamacro",
  32362. height: math.unit(79, "km")
  32363. },
  32364. {
  32365. name: "Teramacro",
  32366. height: math.unit(2765, "km")
  32367. },
  32368. {
  32369. name: "Petamacro",
  32370. height: math.unit(96678, "km")
  32371. },
  32372. ]
  32373. ))
  32374. characterMakers.push(() => makeCharacter(
  32375. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32376. {
  32377. front: {
  32378. height: math.unit(30, "meters"),
  32379. weight: math.unit(400, "tons"),
  32380. name: "Front",
  32381. image: {
  32382. source: "./media/characters/zeel/front.svg",
  32383. extra: 2599/2599,
  32384. bottom: 226/2825
  32385. }
  32386. },
  32387. },
  32388. [
  32389. {
  32390. name: "Macro",
  32391. height: math.unit(30, "meters"),
  32392. default: true
  32393. },
  32394. ]
  32395. ))
  32396. characterMakers.push(() => makeCharacter(
  32397. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32398. {
  32399. front: {
  32400. height: math.unit(6 + 7/12, "feet"),
  32401. weight: math.unit(210, "lb"),
  32402. name: "Front",
  32403. image: {
  32404. source: "./media/characters/tarn/front.svg",
  32405. extra: 3517/3220,
  32406. bottom: 91/3608
  32407. }
  32408. },
  32409. back: {
  32410. height: math.unit(6 + 7/12, "feet"),
  32411. weight: math.unit(210, "lb"),
  32412. name: "Back",
  32413. image: {
  32414. source: "./media/characters/tarn/back.svg",
  32415. extra: 3566/3241,
  32416. bottom: 34/3600
  32417. }
  32418. },
  32419. dick: {
  32420. height: math.unit(1.65, "feet"),
  32421. name: "Dick",
  32422. image: {
  32423. source: "./media/characters/tarn/dick.svg"
  32424. }
  32425. },
  32426. paw: {
  32427. height: math.unit(1.80, "feet"),
  32428. name: "Paw",
  32429. image: {
  32430. source: "./media/characters/tarn/paw.svg"
  32431. }
  32432. },
  32433. tongue: {
  32434. height: math.unit(0.97, "feet"),
  32435. name: "Tongue",
  32436. image: {
  32437. source: "./media/characters/tarn/tongue.svg"
  32438. }
  32439. },
  32440. },
  32441. [
  32442. {
  32443. name: "Micro",
  32444. height: math.unit(4, "inches")
  32445. },
  32446. {
  32447. name: "Normal",
  32448. height: math.unit(6 + 7/12, "feet"),
  32449. default: true
  32450. },
  32451. {
  32452. name: "Macro",
  32453. height: math.unit(300, "feet")
  32454. },
  32455. ]
  32456. ))
  32457. characterMakers.push(() => makeCharacter(
  32458. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32459. {
  32460. front: {
  32461. height: math.unit(5 + 7/12, "feet"),
  32462. weight: math.unit(80, "kg"),
  32463. name: "Front",
  32464. image: {
  32465. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32466. extra: 3023/2865,
  32467. bottom: 33/3056
  32468. }
  32469. },
  32470. back: {
  32471. height: math.unit(5 + 7/12, "feet"),
  32472. weight: math.unit(80, "kg"),
  32473. name: "Back",
  32474. image: {
  32475. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32476. extra: 3020/2886,
  32477. bottom: 30/3050
  32478. }
  32479. },
  32480. dick: {
  32481. height: math.unit(0.98, "feet"),
  32482. name: "Dick",
  32483. image: {
  32484. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32485. }
  32486. },
  32487. anatomy: {
  32488. height: math.unit(2.86, "feet"),
  32489. name: "Anatomy",
  32490. image: {
  32491. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32492. }
  32493. },
  32494. },
  32495. [
  32496. {
  32497. name: "Really Small",
  32498. height: math.unit(2, "inches")
  32499. },
  32500. {
  32501. name: "Micro",
  32502. height: math.unit(5.583, "inches")
  32503. },
  32504. {
  32505. name: "Normal",
  32506. height: math.unit(5 + 7/12, "feet"),
  32507. default: true
  32508. },
  32509. {
  32510. name: "Macro",
  32511. height: math.unit(67, "feet")
  32512. },
  32513. {
  32514. name: "Megamacro",
  32515. height: math.unit(134, "feet")
  32516. },
  32517. ]
  32518. ))
  32519. characterMakers.push(() => makeCharacter(
  32520. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32521. {
  32522. front: {
  32523. height: math.unit(9, "feet"),
  32524. weight: math.unit(120, "lb"),
  32525. name: "Front",
  32526. image: {
  32527. source: "./media/characters/sally/front.svg",
  32528. extra: 1506/1349,
  32529. bottom: 66/1572
  32530. }
  32531. },
  32532. },
  32533. [
  32534. {
  32535. name: "Normal",
  32536. height: math.unit(9, "feet"),
  32537. default: true
  32538. },
  32539. ]
  32540. ))
  32541. characterMakers.push(() => makeCharacter(
  32542. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32543. {
  32544. front: {
  32545. height: math.unit(8, "feet"),
  32546. weight: math.unit(900, "lb"),
  32547. name: "Front",
  32548. image: {
  32549. source: "./media/characters/owen/front.svg",
  32550. extra: 1761/1657,
  32551. bottom: 74/1835
  32552. }
  32553. },
  32554. side: {
  32555. height: math.unit(8, "feet"),
  32556. weight: math.unit(900, "lb"),
  32557. name: "Side",
  32558. image: {
  32559. source: "./media/characters/owen/side.svg",
  32560. extra: 1797/1734,
  32561. bottom: 30/1827
  32562. }
  32563. },
  32564. back: {
  32565. height: math.unit(8, "feet"),
  32566. weight: math.unit(900, "lb"),
  32567. name: "Back",
  32568. image: {
  32569. source: "./media/characters/owen/back.svg",
  32570. extra: 1796/1706,
  32571. bottom: 59/1855
  32572. }
  32573. },
  32574. maw: {
  32575. height: math.unit(1.76, "feet"),
  32576. name: "Maw",
  32577. image: {
  32578. source: "./media/characters/owen/maw.svg"
  32579. }
  32580. },
  32581. },
  32582. [
  32583. {
  32584. name: "Normal",
  32585. height: math.unit(8, "feet"),
  32586. default: true
  32587. },
  32588. ]
  32589. ))
  32590. characterMakers.push(() => makeCharacter(
  32591. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32592. {
  32593. front: {
  32594. height: math.unit(4, "feet"),
  32595. weight: math.unit(400, "lb"),
  32596. name: "Front",
  32597. image: {
  32598. source: "./media/characters/ryth/front.svg",
  32599. extra: 1920/1748,
  32600. bottom: 42/1962
  32601. }
  32602. },
  32603. back: {
  32604. height: math.unit(4, "feet"),
  32605. weight: math.unit(400, "lb"),
  32606. name: "Back",
  32607. image: {
  32608. source: "./media/characters/ryth/back.svg",
  32609. extra: 1897/1690,
  32610. bottom: 89/1986
  32611. }
  32612. },
  32613. mouth: {
  32614. height: math.unit(1.39, "feet"),
  32615. name: "Mouth",
  32616. image: {
  32617. source: "./media/characters/ryth/mouth.svg"
  32618. }
  32619. },
  32620. tailmaw: {
  32621. height: math.unit(1.23, "feet"),
  32622. name: "Tailmaw",
  32623. image: {
  32624. source: "./media/characters/ryth/tailmaw.svg"
  32625. }
  32626. },
  32627. goia: {
  32628. height: math.unit(4, "meters"),
  32629. weight: math.unit(10800, "lb"),
  32630. name: "Goia",
  32631. image: {
  32632. source: "./media/characters/ryth/goia.svg",
  32633. extra: 745/640,
  32634. bottom: 107/852
  32635. }
  32636. },
  32637. goiaFront: {
  32638. height: math.unit(4, "meters"),
  32639. weight: math.unit(10800, "lb"),
  32640. name: "Goia (Front)",
  32641. image: {
  32642. source: "./media/characters/ryth/goia-front.svg",
  32643. extra: 750/586,
  32644. bottom: 114/864
  32645. }
  32646. },
  32647. goiaMaw: {
  32648. height: math.unit(5.55, "feet"),
  32649. name: "Goia Maw",
  32650. image: {
  32651. source: "./media/characters/ryth/goia-maw.svg"
  32652. }
  32653. },
  32654. goiaForepaw: {
  32655. height: math.unit(3.5, "feet"),
  32656. name: "Goia Forepaw",
  32657. image: {
  32658. source: "./media/characters/ryth/goia-forepaw.svg"
  32659. }
  32660. },
  32661. goiaHindpaw: {
  32662. height: math.unit(5.55, "feet"),
  32663. name: "Goia Hindpaw",
  32664. image: {
  32665. source: "./media/characters/ryth/goia-hindpaw.svg"
  32666. }
  32667. },
  32668. },
  32669. [
  32670. {
  32671. name: "Normal",
  32672. height: math.unit(4, "feet"),
  32673. default: true
  32674. },
  32675. ]
  32676. ))
  32677. characterMakers.push(() => makeCharacter(
  32678. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32679. {
  32680. front: {
  32681. height: math.unit(7, "feet"),
  32682. weight: math.unit(180, "lb"),
  32683. name: "Front",
  32684. image: {
  32685. source: "./media/characters/necrolance/front.svg",
  32686. extra: 1062/947,
  32687. bottom: 41/1103
  32688. }
  32689. },
  32690. back: {
  32691. height: math.unit(7, "feet"),
  32692. weight: math.unit(180, "lb"),
  32693. name: "Back",
  32694. image: {
  32695. source: "./media/characters/necrolance/back.svg",
  32696. extra: 1045/984,
  32697. bottom: 14/1059
  32698. }
  32699. },
  32700. wing: {
  32701. height: math.unit(2.67, "feet"),
  32702. name: "Wing",
  32703. image: {
  32704. source: "./media/characters/necrolance/wing.svg"
  32705. }
  32706. },
  32707. },
  32708. [
  32709. {
  32710. name: "Normal",
  32711. height: math.unit(7, "feet"),
  32712. default: true
  32713. },
  32714. ]
  32715. ))
  32716. characterMakers.push(() => makeCharacter(
  32717. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32718. {
  32719. front: {
  32720. height: math.unit(76, "meters"),
  32721. weight: math.unit(30000, "tons"),
  32722. name: "Front",
  32723. image: {
  32724. source: "./media/characters/tyler/front.svg",
  32725. extra: 1640/1640,
  32726. bottom: 114/1754
  32727. }
  32728. },
  32729. },
  32730. [
  32731. {
  32732. name: "Macro",
  32733. height: math.unit(76, "meters"),
  32734. default: true
  32735. },
  32736. ]
  32737. ))
  32738. characterMakers.push(() => makeCharacter(
  32739. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32740. {
  32741. front: {
  32742. height: math.unit(4 + 11/12, "feet"),
  32743. weight: math.unit(132, "lb"),
  32744. name: "Front",
  32745. image: {
  32746. source: "./media/characters/icey/front.svg",
  32747. extra: 2750/2550,
  32748. bottom: 33/2783
  32749. }
  32750. },
  32751. back: {
  32752. height: math.unit(4 + 11/12, "feet"),
  32753. weight: math.unit(132, "lb"),
  32754. name: "Back",
  32755. image: {
  32756. source: "./media/characters/icey/back.svg",
  32757. extra: 2624/2481,
  32758. bottom: 35/2659
  32759. }
  32760. },
  32761. },
  32762. [
  32763. {
  32764. name: "Normal",
  32765. height: math.unit(4 + 11/12, "feet"),
  32766. default: true
  32767. },
  32768. ]
  32769. ))
  32770. characterMakers.push(() => makeCharacter(
  32771. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32772. {
  32773. front: {
  32774. height: math.unit(100, "feet"),
  32775. weight: math.unit(0, "lb"),
  32776. name: "Front",
  32777. image: {
  32778. source: "./media/characters/smile/front.svg",
  32779. extra: 2983/2912,
  32780. bottom: 162/3145
  32781. }
  32782. },
  32783. back: {
  32784. height: math.unit(100, "feet"),
  32785. weight: math.unit(0, "lb"),
  32786. name: "Back",
  32787. image: {
  32788. source: "./media/characters/smile/back.svg",
  32789. extra: 3143/3031,
  32790. bottom: 91/3234
  32791. }
  32792. },
  32793. head: {
  32794. height: math.unit(26.3, "feet"),
  32795. weight: math.unit(0, "lb"),
  32796. name: "Head",
  32797. image: {
  32798. source: "./media/characters/smile/head.svg"
  32799. }
  32800. },
  32801. collar: {
  32802. height: math.unit(5.3, "feet"),
  32803. weight: math.unit(0, "lb"),
  32804. name: "Collar",
  32805. image: {
  32806. source: "./media/characters/smile/collar.svg"
  32807. }
  32808. },
  32809. },
  32810. [
  32811. {
  32812. name: "Macro",
  32813. height: math.unit(100, "feet"),
  32814. default: true
  32815. },
  32816. ]
  32817. ))
  32818. characterMakers.push(() => makeCharacter(
  32819. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32820. {
  32821. dragon: {
  32822. height: math.unit(26, "feet"),
  32823. weight: math.unit(36, "tons"),
  32824. name: "Dragon",
  32825. image: {
  32826. source: "./media/characters/arimphae/dragon.svg",
  32827. extra: 1574/983,
  32828. bottom: 357/1931
  32829. }
  32830. },
  32831. drake: {
  32832. height: math.unit(9, "feet"),
  32833. weight: math.unit(1.5, "tons"),
  32834. name: "Drake",
  32835. image: {
  32836. source: "./media/characters/arimphae/drake.svg",
  32837. extra: 1120/925,
  32838. bottom: 435/1555
  32839. }
  32840. },
  32841. },
  32842. [
  32843. {
  32844. name: "Small",
  32845. height: math.unit(26*5/9, "feet")
  32846. },
  32847. {
  32848. name: "Normal",
  32849. height: math.unit(26, "feet"),
  32850. default: true
  32851. },
  32852. ]
  32853. ))
  32854. characterMakers.push(() => makeCharacter(
  32855. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32856. {
  32857. front: {
  32858. height: math.unit(8 + 9/12, "feet"),
  32859. name: "Front",
  32860. image: {
  32861. source: "./media/characters/xander/front.svg",
  32862. extra: 1237/974,
  32863. bottom: 94/1331
  32864. }
  32865. },
  32866. },
  32867. [
  32868. {
  32869. name: "Normal",
  32870. height: math.unit(8 + 9/12, "feet"),
  32871. default: true
  32872. },
  32873. {
  32874. name: "Gaze Grabber",
  32875. height: math.unit(13 + 8/12, "feet")
  32876. },
  32877. {
  32878. name: "Jaw Dropper",
  32879. height: math.unit(27, "feet")
  32880. },
  32881. {
  32882. name: "Show Stopper",
  32883. height: math.unit(136, "feet")
  32884. },
  32885. {
  32886. name: "Superstar",
  32887. height: math.unit(1.9e6, "miles")
  32888. },
  32889. ]
  32890. ))
  32891. characterMakers.push(() => makeCharacter(
  32892. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32893. {
  32894. side: {
  32895. height: math.unit(2100, "feet"),
  32896. name: "Side",
  32897. image: {
  32898. source: "./media/characters/osiris/side.svg",
  32899. extra: 1105/939,
  32900. bottom: 167/1272
  32901. }
  32902. },
  32903. },
  32904. [
  32905. {
  32906. name: "Macro",
  32907. height: math.unit(2100, "feet"),
  32908. default: true
  32909. },
  32910. ]
  32911. ))
  32912. characterMakers.push(() => makeCharacter(
  32913. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32914. {
  32915. front: {
  32916. height: math.unit(6 + 8/12, "feet"),
  32917. weight: math.unit(225, "lb"),
  32918. name: "Front",
  32919. image: {
  32920. source: "./media/characters/rhys-londe/front.svg",
  32921. extra: 2258/2141,
  32922. bottom: 188/2446
  32923. }
  32924. },
  32925. back: {
  32926. height: math.unit(6 + 8/12, "feet"),
  32927. weight: math.unit(225, "lb"),
  32928. name: "Back",
  32929. image: {
  32930. source: "./media/characters/rhys-londe/back.svg",
  32931. extra: 2237/2137,
  32932. bottom: 63/2300
  32933. }
  32934. },
  32935. frontNsfw: {
  32936. height: math.unit(6 + 8/12, "feet"),
  32937. weight: math.unit(225, "lb"),
  32938. name: "Front (NSFW)",
  32939. image: {
  32940. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32941. extra: 2258/2141,
  32942. bottom: 188/2446
  32943. }
  32944. },
  32945. backNsfw: {
  32946. height: math.unit(6 + 8/12, "feet"),
  32947. weight: math.unit(225, "lb"),
  32948. name: "Back (NSFW)",
  32949. image: {
  32950. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32951. extra: 2237/2137,
  32952. bottom: 63/2300
  32953. }
  32954. },
  32955. dick: {
  32956. height: math.unit(30, "inches"),
  32957. name: "Dick",
  32958. image: {
  32959. source: "./media/characters/rhys-londe/dick.svg"
  32960. }
  32961. },
  32962. maw: {
  32963. height: math.unit(1.6, "feet"),
  32964. name: "Maw",
  32965. image: {
  32966. source: "./media/characters/rhys-londe/maw.svg"
  32967. }
  32968. },
  32969. },
  32970. [
  32971. {
  32972. name: "Normal",
  32973. height: math.unit(6 + 8/12, "feet"),
  32974. default: true
  32975. },
  32976. ]
  32977. ))
  32978. characterMakers.push(() => makeCharacter(
  32979. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32980. {
  32981. front: {
  32982. height: math.unit(3 + 10/12, "feet"),
  32983. weight: math.unit(90, "lb"),
  32984. name: "Front",
  32985. image: {
  32986. source: "./media/characters/taivas-ensim/front.svg",
  32987. extra: 1327/1216,
  32988. bottom: 96/1423
  32989. }
  32990. },
  32991. back: {
  32992. height: math.unit(3 + 10/12, "feet"),
  32993. weight: math.unit(90, "lb"),
  32994. name: "Back",
  32995. image: {
  32996. source: "./media/characters/taivas-ensim/back.svg",
  32997. extra: 1355/1247,
  32998. bottom: 11/1366
  32999. }
  33000. },
  33001. frontNsfw: {
  33002. height: math.unit(3 + 10/12, "feet"),
  33003. weight: math.unit(90, "lb"),
  33004. name: "Front (NSFW)",
  33005. image: {
  33006. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33007. extra: 1327/1216,
  33008. bottom: 96/1423
  33009. }
  33010. },
  33011. backNsfw: {
  33012. height: math.unit(3 + 10/12, "feet"),
  33013. weight: math.unit(90, "lb"),
  33014. name: "Back (NSFW)",
  33015. image: {
  33016. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33017. extra: 1355/1247,
  33018. bottom: 11/1366
  33019. }
  33020. },
  33021. },
  33022. [
  33023. {
  33024. name: "Normal",
  33025. height: math.unit(3 + 10/12, "feet"),
  33026. default: true
  33027. },
  33028. ]
  33029. ))
  33030. characterMakers.push(() => makeCharacter(
  33031. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33032. {
  33033. front: {
  33034. height: math.unit(9 + 6/12, "feet"),
  33035. weight: math.unit(940, "lb"),
  33036. name: "Front",
  33037. image: {
  33038. source: "./media/characters/byliss/front.svg",
  33039. extra: 1327/1290,
  33040. bottom: 82/1409
  33041. }
  33042. },
  33043. back: {
  33044. height: math.unit(9 + 6/12, "feet"),
  33045. weight: math.unit(940, "lb"),
  33046. name: "Back",
  33047. image: {
  33048. source: "./media/characters/byliss/back.svg",
  33049. extra: 1376/1349,
  33050. bottom: 9/1385
  33051. }
  33052. },
  33053. frontNsfw: {
  33054. height: math.unit(9 + 6/12, "feet"),
  33055. weight: math.unit(940, "lb"),
  33056. name: "Front (NSFW)",
  33057. image: {
  33058. source: "./media/characters/byliss/front-nsfw.svg",
  33059. extra: 1327/1290,
  33060. bottom: 82/1409
  33061. }
  33062. },
  33063. backNsfw: {
  33064. height: math.unit(9 + 6/12, "feet"),
  33065. weight: math.unit(940, "lb"),
  33066. name: "Back (NSFW)",
  33067. image: {
  33068. source: "./media/characters/byliss/back-nsfw.svg",
  33069. extra: 1376/1349,
  33070. bottom: 9/1385
  33071. }
  33072. },
  33073. },
  33074. [
  33075. {
  33076. name: "Normal",
  33077. height: math.unit(9 + 6/12, "feet"),
  33078. default: true
  33079. },
  33080. ]
  33081. ))
  33082. characterMakers.push(() => makeCharacter(
  33083. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33084. {
  33085. front: {
  33086. height: math.unit(5 + 2/12, "feet"),
  33087. weight: math.unit(200, "lb"),
  33088. name: "Front",
  33089. image: {
  33090. source: "./media/characters/noraly/front.svg",
  33091. extra: 4985/4773,
  33092. bottom: 150/5135
  33093. }
  33094. },
  33095. full: {
  33096. height: math.unit(5 + 2/12, "feet"),
  33097. weight: math.unit(164, "lb"),
  33098. name: "Full",
  33099. image: {
  33100. source: "./media/characters/noraly/full.svg",
  33101. extra: 1114/1059,
  33102. bottom: 35/1149
  33103. }
  33104. },
  33105. fuller: {
  33106. height: math.unit(5 + 2/12, "feet"),
  33107. weight: math.unit(230, "lb"),
  33108. name: "Fuller",
  33109. image: {
  33110. source: "./media/characters/noraly/fuller.svg",
  33111. extra: 1114/1059,
  33112. bottom: 35/1149
  33113. }
  33114. },
  33115. fullest: {
  33116. height: math.unit(5 + 2/12, "feet"),
  33117. weight: math.unit(300, "lb"),
  33118. name: "Fullest",
  33119. image: {
  33120. source: "./media/characters/noraly/fullest.svg",
  33121. extra: 1114/1059,
  33122. bottom: 35/1149
  33123. }
  33124. },
  33125. },
  33126. [
  33127. {
  33128. name: "Normal",
  33129. height: math.unit(5 + 2/12, "feet"),
  33130. default: true
  33131. },
  33132. ]
  33133. ))
  33134. characterMakers.push(() => makeCharacter(
  33135. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33136. {
  33137. front: {
  33138. height: math.unit(5 + 2/12, "feet"),
  33139. weight: math.unit(210, "lb"),
  33140. name: "Front",
  33141. image: {
  33142. source: "./media/characters/pera/front.svg",
  33143. extra: 1560/1531,
  33144. bottom: 165/1725
  33145. }
  33146. },
  33147. back: {
  33148. height: math.unit(5 + 2/12, "feet"),
  33149. weight: math.unit(210, "lb"),
  33150. name: "Back",
  33151. image: {
  33152. source: "./media/characters/pera/back.svg",
  33153. extra: 1523/1493,
  33154. bottom: 152/1675
  33155. }
  33156. },
  33157. dick: {
  33158. height: math.unit(2.4, "feet"),
  33159. name: "Dick",
  33160. image: {
  33161. source: "./media/characters/pera/dick.svg"
  33162. }
  33163. },
  33164. },
  33165. [
  33166. {
  33167. name: "Normal",
  33168. height: math.unit(5 + 2/12, "feet"),
  33169. default: true
  33170. },
  33171. ]
  33172. ))
  33173. characterMakers.push(() => makeCharacter(
  33174. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33175. {
  33176. front: {
  33177. height: math.unit(12, "feet"),
  33178. weight: math.unit(3200, "lb"),
  33179. name: "Front",
  33180. image: {
  33181. source: "./media/characters/julian/front.svg",
  33182. extra: 2962/2701,
  33183. bottom: 184/3146
  33184. }
  33185. },
  33186. maw: {
  33187. height: math.unit(5.35, "feet"),
  33188. name: "Maw",
  33189. image: {
  33190. source: "./media/characters/julian/maw.svg"
  33191. }
  33192. },
  33193. paw: {
  33194. height: math.unit(3.07, "feet"),
  33195. name: "Paw",
  33196. image: {
  33197. source: "./media/characters/julian/paw.svg"
  33198. }
  33199. },
  33200. },
  33201. [
  33202. {
  33203. name: "Default",
  33204. height: math.unit(12, "feet"),
  33205. default: true
  33206. },
  33207. {
  33208. name: "Big",
  33209. height: math.unit(50, "feet")
  33210. },
  33211. {
  33212. name: "Really Big",
  33213. height: math.unit(1, "mile")
  33214. },
  33215. {
  33216. name: "Extremely Big",
  33217. height: math.unit(100, "miles")
  33218. },
  33219. {
  33220. name: "Planet Hugger",
  33221. height: math.unit(200, "megameters")
  33222. },
  33223. {
  33224. name: "Unreasonably Big",
  33225. height: math.unit(1e300, "meters")
  33226. },
  33227. ]
  33228. ))
  33229. characterMakers.push(() => makeCharacter(
  33230. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33231. {
  33232. solgooleo: {
  33233. height: math.unit(4, "meters"),
  33234. weight: math.unit(6000*1.5, "kg"),
  33235. volume: math.unit(6000, "liters"),
  33236. name: "Solgooleo",
  33237. image: {
  33238. source: "./media/characters/pi/solgooleo.svg",
  33239. extra: 388/331,
  33240. bottom: 29/417
  33241. }
  33242. },
  33243. },
  33244. [
  33245. {
  33246. name: "Normal",
  33247. height: math.unit(4, "meters"),
  33248. default: true
  33249. },
  33250. ]
  33251. ))
  33252. characterMakers.push(() => makeCharacter(
  33253. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33254. {
  33255. front: {
  33256. height: math.unit(8, "feet"),
  33257. weight: math.unit(4, "tons"),
  33258. name: "Front",
  33259. image: {
  33260. source: "./media/characters/shaun/front.svg",
  33261. extra: 503/495,
  33262. bottom: 20/523
  33263. }
  33264. },
  33265. back: {
  33266. height: math.unit(8, "feet"),
  33267. weight: math.unit(4, "tons"),
  33268. name: "Back",
  33269. image: {
  33270. source: "./media/characters/shaun/back.svg",
  33271. extra: 487/480,
  33272. bottom: 20/507
  33273. }
  33274. },
  33275. },
  33276. [
  33277. {
  33278. name: "Lorg",
  33279. height: math.unit(8, "feet"),
  33280. default: true
  33281. },
  33282. ]
  33283. ))
  33284. characterMakers.push(() => makeCharacter(
  33285. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33286. {
  33287. frontAnthro: {
  33288. height: math.unit(7, "feet"),
  33289. name: "Front",
  33290. image: {
  33291. source: "./media/characters/sini/front-anthro.svg",
  33292. extra: 726/678,
  33293. bottom: 35/761
  33294. },
  33295. form: "anthro",
  33296. default: true
  33297. },
  33298. backAnthro: {
  33299. height: math.unit(7, "feet"),
  33300. name: "Back",
  33301. image: {
  33302. source: "./media/characters/sini/back-anthro.svg",
  33303. extra: 743/701,
  33304. bottom: 12/755
  33305. },
  33306. form: "anthro",
  33307. },
  33308. frontAnthroNsfw: {
  33309. height: math.unit(7, "feet"),
  33310. name: "Front (NSFW)",
  33311. image: {
  33312. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33313. extra: 726/678,
  33314. bottom: 35/761
  33315. },
  33316. form: "anthro"
  33317. },
  33318. backAnthroNsfw: {
  33319. height: math.unit(7, "feet"),
  33320. name: "Back (NSFW)",
  33321. image: {
  33322. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33323. extra: 743/701,
  33324. bottom: 12/755
  33325. },
  33326. form: "anthro",
  33327. },
  33328. mawAnthro: {
  33329. height: math.unit(2.14, "feet"),
  33330. name: "Maw",
  33331. image: {
  33332. source: "./media/characters/sini/maw-anthro.svg"
  33333. },
  33334. form: "anthro"
  33335. },
  33336. dick: {
  33337. height: math.unit(1.45, "feet"),
  33338. name: "Dick",
  33339. image: {
  33340. source: "./media/characters/sini/dick-anthro.svg"
  33341. },
  33342. form: "anthro"
  33343. },
  33344. feral: {
  33345. height: math.unit(16, "feet"),
  33346. name: "Feral",
  33347. image: {
  33348. source: "./media/characters/sini/feral.svg",
  33349. extra: 814/605,
  33350. bottom: 11/825
  33351. },
  33352. form: "feral",
  33353. default: true
  33354. },
  33355. feralNsfw: {
  33356. height: math.unit(16, "feet"),
  33357. name: "Feral (NSFW)",
  33358. image: {
  33359. source: "./media/characters/sini/feral-nsfw.svg",
  33360. extra: 814/605,
  33361. bottom: 11/825
  33362. },
  33363. form: "feral"
  33364. },
  33365. mawFeral: {
  33366. height: math.unit(5.66, "feet"),
  33367. name: "Maw",
  33368. image: {
  33369. source: "./media/characters/sini/maw-feral.svg"
  33370. },
  33371. form: "feral",
  33372. },
  33373. pawFeral: {
  33374. height: math.unit(5.17, "feet"),
  33375. name: "Paw",
  33376. image: {
  33377. source: "./media/characters/sini/paw-feral.svg"
  33378. },
  33379. form: "feral",
  33380. },
  33381. rumpFeral: {
  33382. height: math.unit(13.11, "feet"),
  33383. name: "Rump",
  33384. image: {
  33385. source: "./media/characters/sini/rump-feral.svg"
  33386. },
  33387. form: "feral",
  33388. },
  33389. dickFeral: {
  33390. height: math.unit(1, "feet"),
  33391. name: "Dick",
  33392. image: {
  33393. source: "./media/characters/sini/dick-feral.svg"
  33394. },
  33395. form: "feral",
  33396. },
  33397. eyeFeral: {
  33398. height: math.unit(1.23, "feet"),
  33399. name: "Eye",
  33400. image: {
  33401. source: "./media/characters/sini/eye-feral.svg"
  33402. },
  33403. form: "feral",
  33404. },
  33405. },
  33406. [
  33407. {
  33408. name: "Normal",
  33409. height: math.unit(7, "feet"),
  33410. default: true,
  33411. form: "anthro"
  33412. },
  33413. {
  33414. name: "Normal",
  33415. height: math.unit(16, "feet"),
  33416. default: true,
  33417. form: "feral"
  33418. },
  33419. ],
  33420. {
  33421. "anthro": {
  33422. name: "Anthro",
  33423. default: true
  33424. },
  33425. "feral": {
  33426. name: "Feral",
  33427. }
  33428. }
  33429. ))
  33430. characterMakers.push(() => makeCharacter(
  33431. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33432. {
  33433. side: {
  33434. height: math.unit(13, "meters"),
  33435. weight: math.unit(9072, "kg"),
  33436. name: "Side",
  33437. image: {
  33438. source: "./media/characters/raylldo/side.svg",
  33439. extra: 403/344,
  33440. bottom: 42/445
  33441. }
  33442. },
  33443. leaping: {
  33444. height: math.unit(12.3, "meters"),
  33445. weight: math.unit(9072, "kg"),
  33446. name: "Leaping",
  33447. image: {
  33448. source: "./media/characters/raylldo/leaping.svg",
  33449. extra: 470/249,
  33450. bottom: 13/483
  33451. }
  33452. },
  33453. flying: {
  33454. height: math.unit(18, "meters"),
  33455. weight: math.unit(9072, "kg"),
  33456. name: "Flying",
  33457. image: {
  33458. source: "./media/characters/raylldo/flying.svg"
  33459. }
  33460. },
  33461. head: {
  33462. height: math.unit(5.85, "meters"),
  33463. name: "Head",
  33464. image: {
  33465. source: "./media/characters/raylldo/head.svg"
  33466. }
  33467. },
  33468. maw: {
  33469. height: math.unit(5.32, "meters"),
  33470. name: "Maw",
  33471. image: {
  33472. source: "./media/characters/raylldo/maw.svg"
  33473. }
  33474. },
  33475. eye: {
  33476. height: math.unit(0.54, "meters"),
  33477. name: "Eye",
  33478. image: {
  33479. source: "./media/characters/raylldo/eye.svg"
  33480. }
  33481. },
  33482. },
  33483. [
  33484. {
  33485. name: "Normal",
  33486. height: math.unit(13, "meters"),
  33487. default: true
  33488. },
  33489. ]
  33490. ))
  33491. characterMakers.push(() => makeCharacter(
  33492. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33493. {
  33494. anthroFront: {
  33495. height: math.unit(9, "feet"),
  33496. weight: math.unit(600, "lb"),
  33497. name: "Anthro (Front)",
  33498. image: {
  33499. source: "./media/characters/glint/anthro-front.svg",
  33500. extra: 1097/1018,
  33501. bottom: 28/1125
  33502. }
  33503. },
  33504. anthroBack: {
  33505. height: math.unit(9, "feet"),
  33506. weight: math.unit(600, "lb"),
  33507. name: "Anthro (Back)",
  33508. image: {
  33509. source: "./media/characters/glint/anthro-back.svg",
  33510. extra: 1154/997,
  33511. bottom: 36/1190
  33512. }
  33513. },
  33514. feral: {
  33515. height: math.unit(11, "feet"),
  33516. weight: math.unit(50000, "lb"),
  33517. name: "Feral",
  33518. image: {
  33519. source: "./media/characters/glint/feral.svg",
  33520. extra: 3035/1585,
  33521. bottom: 1169/4204
  33522. }
  33523. },
  33524. dickAnthro: {
  33525. height: math.unit(0.7, "meters"),
  33526. name: "Dick (Anthro)",
  33527. image: {
  33528. source: "./media/characters/glint/dick-anthro.svg"
  33529. }
  33530. },
  33531. dickFeral: {
  33532. height: math.unit(2.65, "meters"),
  33533. name: "Dick (Feral)",
  33534. image: {
  33535. source: "./media/characters/glint/dick-feral.svg"
  33536. }
  33537. },
  33538. slitHidden: {
  33539. height: math.unit(5.85, "meters"),
  33540. name: "Slit (Hidden)",
  33541. image: {
  33542. source: "./media/characters/glint/slit-hidden.svg"
  33543. }
  33544. },
  33545. slitErect: {
  33546. height: math.unit(5.85, "meters"),
  33547. name: "Slit (Erect)",
  33548. image: {
  33549. source: "./media/characters/glint/slit-erect.svg"
  33550. }
  33551. },
  33552. mawAnthro: {
  33553. height: math.unit(0.63, "meters"),
  33554. name: "Maw (Anthro)",
  33555. image: {
  33556. source: "./media/characters/glint/maw.svg"
  33557. }
  33558. },
  33559. mawFeral: {
  33560. height: math.unit(2.89, "meters"),
  33561. name: "Maw (Feral)",
  33562. image: {
  33563. source: "./media/characters/glint/maw.svg"
  33564. }
  33565. },
  33566. },
  33567. [
  33568. {
  33569. name: "Normal",
  33570. height: math.unit(9, "feet"),
  33571. default: true
  33572. },
  33573. ]
  33574. ))
  33575. characterMakers.push(() => makeCharacter(
  33576. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33577. {
  33578. side: {
  33579. height: math.unit(15, "feet"),
  33580. weight: math.unit(5000, "kg"),
  33581. name: "Side",
  33582. image: {
  33583. source: "./media/characters/kairne/side.svg",
  33584. extra: 979/811,
  33585. bottom: 13/992
  33586. }
  33587. },
  33588. front: {
  33589. height: math.unit(15, "feet"),
  33590. weight: math.unit(5000, "kg"),
  33591. name: "Front",
  33592. image: {
  33593. source: "./media/characters/kairne/front.svg",
  33594. extra: 908/814,
  33595. bottom: 26/934
  33596. }
  33597. },
  33598. sideNsfw: {
  33599. height: math.unit(15, "feet"),
  33600. weight: math.unit(5000, "kg"),
  33601. name: "Side (NSFW)",
  33602. image: {
  33603. source: "./media/characters/kairne/side-nsfw.svg",
  33604. extra: 979/811,
  33605. bottom: 13/992
  33606. }
  33607. },
  33608. frontNsfw: {
  33609. height: math.unit(15, "feet"),
  33610. weight: math.unit(5000, "kg"),
  33611. name: "Front (NSFW)",
  33612. image: {
  33613. source: "./media/characters/kairne/front-nsfw.svg",
  33614. extra: 908/814,
  33615. bottom: 26/934
  33616. }
  33617. },
  33618. dickCaged: {
  33619. height: math.unit(0.65, "meters"),
  33620. name: "Dick-caged",
  33621. image: {
  33622. source: "./media/characters/kairne/dick-caged.svg"
  33623. }
  33624. },
  33625. dick: {
  33626. height: math.unit(0.79, "meters"),
  33627. name: "Dick",
  33628. image: {
  33629. source: "./media/characters/kairne/dick.svg"
  33630. }
  33631. },
  33632. genitals: {
  33633. height: math.unit(1.29, "meters"),
  33634. name: "Genitals",
  33635. image: {
  33636. source: "./media/characters/kairne/genitals.svg"
  33637. }
  33638. },
  33639. maw: {
  33640. height: math.unit(1.73, "meters"),
  33641. name: "Maw",
  33642. image: {
  33643. source: "./media/characters/kairne/maw.svg"
  33644. }
  33645. },
  33646. },
  33647. [
  33648. {
  33649. name: "Normal",
  33650. height: math.unit(15, "feet"),
  33651. default: true
  33652. },
  33653. ]
  33654. ))
  33655. characterMakers.push(() => makeCharacter(
  33656. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33657. {
  33658. front: {
  33659. height: math.unit(5 + 8/12, "feet"),
  33660. weight: math.unit(139, "lb"),
  33661. name: "Front",
  33662. image: {
  33663. source: "./media/characters/biscuit-jackal/front.svg",
  33664. extra: 2106/1961,
  33665. bottom: 58/2164
  33666. }
  33667. },
  33668. back: {
  33669. height: math.unit(5 + 8/12, "feet"),
  33670. weight: math.unit(139, "lb"),
  33671. name: "Back",
  33672. image: {
  33673. source: "./media/characters/biscuit-jackal/back.svg",
  33674. extra: 2132/1976,
  33675. bottom: 57/2189
  33676. }
  33677. },
  33678. werejackal: {
  33679. height: math.unit(6 + 3/12, "feet"),
  33680. weight: math.unit(188, "lb"),
  33681. name: "Werejackal",
  33682. image: {
  33683. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33684. extra: 2373/2178,
  33685. bottom: 53/2426
  33686. }
  33687. },
  33688. },
  33689. [
  33690. {
  33691. name: "Normal",
  33692. height: math.unit(5 + 8/12, "feet"),
  33693. default: true
  33694. },
  33695. ]
  33696. ))
  33697. characterMakers.push(() => makeCharacter(
  33698. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33699. {
  33700. front: {
  33701. height: math.unit(140, "cm"),
  33702. weight: math.unit(45, "kg"),
  33703. name: "Front",
  33704. image: {
  33705. source: "./media/characters/tayra-white/front.svg",
  33706. extra: 2229/2192,
  33707. bottom: 75/2304
  33708. }
  33709. },
  33710. },
  33711. [
  33712. {
  33713. name: "Normal",
  33714. height: math.unit(140, "cm"),
  33715. default: true
  33716. },
  33717. ]
  33718. ))
  33719. characterMakers.push(() => makeCharacter(
  33720. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  33721. {
  33722. front: {
  33723. height: math.unit(4 + 5/12, "feet"),
  33724. name: "Front",
  33725. image: {
  33726. source: "./media/characters/scoop/front.svg",
  33727. extra: 1257/1136,
  33728. bottom: 69/1326
  33729. }
  33730. },
  33731. back: {
  33732. height: math.unit(4 + 5/12, "feet"),
  33733. name: "Back",
  33734. image: {
  33735. source: "./media/characters/scoop/back.svg",
  33736. extra: 1321/1152,
  33737. bottom: 32/1353
  33738. }
  33739. },
  33740. maw: {
  33741. height: math.unit(0.68, "feet"),
  33742. name: "Maw",
  33743. image: {
  33744. source: "./media/characters/scoop/maw.svg"
  33745. }
  33746. },
  33747. },
  33748. [
  33749. {
  33750. name: "Really Small",
  33751. height: math.unit(1, "mm")
  33752. },
  33753. {
  33754. name: "Micro",
  33755. height: math.unit(1, "inch")
  33756. },
  33757. {
  33758. name: "Normal",
  33759. height: math.unit(4 + 5/12, "feet"),
  33760. default: true
  33761. },
  33762. {
  33763. name: "Macro",
  33764. height: math.unit(200, "feet")
  33765. },
  33766. {
  33767. name: "Megamacro",
  33768. height: math.unit(3240, "feet")
  33769. },
  33770. {
  33771. name: "Teramacro",
  33772. height: math.unit(2500, "miles")
  33773. },
  33774. ]
  33775. ))
  33776. characterMakers.push(() => makeCharacter(
  33777. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  33778. {
  33779. front: {
  33780. height: math.unit(15 + 7/12, "feet"),
  33781. name: "Front",
  33782. image: {
  33783. source: "./media/characters/saphinara/front.svg",
  33784. extra: 604/546,
  33785. bottom: 19/623
  33786. }
  33787. },
  33788. side: {
  33789. height: math.unit(15 + 7/12, "feet"),
  33790. name: "Side",
  33791. image: {
  33792. source: "./media/characters/saphinara/side.svg",
  33793. extra: 605/547,
  33794. bottom: 6/611
  33795. }
  33796. },
  33797. back: {
  33798. height: math.unit(15 + 7/12, "feet"),
  33799. name: "Back",
  33800. image: {
  33801. source: "./media/characters/saphinara/back.svg",
  33802. extra: 591/531,
  33803. bottom: 13/604
  33804. }
  33805. },
  33806. frontTail: {
  33807. height: math.unit(15 + 7/12, "feet"),
  33808. name: "Front (Full Tail)",
  33809. image: {
  33810. source: "./media/characters/saphinara/front-tail.svg",
  33811. extra: 748/547,
  33812. bottom: 66/814
  33813. }
  33814. },
  33815. },
  33816. [
  33817. {
  33818. name: "Normal",
  33819. height: math.unit(15 + 7/12, "feet"),
  33820. default: true
  33821. },
  33822. {
  33823. name: "Angry",
  33824. height: math.unit(30 + 6/12, "feet")
  33825. },
  33826. {
  33827. name: "Enraged",
  33828. height: math.unit(102 + 1/12, "feet")
  33829. },
  33830. ]
  33831. ))
  33832. characterMakers.push(() => makeCharacter(
  33833. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  33834. {
  33835. front: {
  33836. height: math.unit(6 + 8/12, "feet"),
  33837. weight: math.unit(300, "lb"),
  33838. name: "Front",
  33839. image: {
  33840. source: "./media/characters/jrain/front.svg",
  33841. extra: 3039/2865,
  33842. bottom: 399/3438
  33843. }
  33844. },
  33845. back: {
  33846. height: math.unit(6 + 8/12, "feet"),
  33847. weight: math.unit(300, "lb"),
  33848. name: "Back",
  33849. image: {
  33850. source: "./media/characters/jrain/back.svg",
  33851. extra: 3089/2938,
  33852. bottom: 172/3261
  33853. }
  33854. },
  33855. head: {
  33856. height: math.unit(2.14, "feet"),
  33857. name: "Head",
  33858. image: {
  33859. source: "./media/characters/jrain/head.svg"
  33860. }
  33861. },
  33862. maw: {
  33863. height: math.unit(1.77, "feet"),
  33864. name: "Maw",
  33865. image: {
  33866. source: "./media/characters/jrain/maw.svg"
  33867. }
  33868. },
  33869. leftHand: {
  33870. height: math.unit(1.1, "feet"),
  33871. name: "Left Hand",
  33872. image: {
  33873. source: "./media/characters/jrain/left-hand.svg"
  33874. }
  33875. },
  33876. rightHand: {
  33877. height: math.unit(1.1, "feet"),
  33878. name: "Right Hand",
  33879. image: {
  33880. source: "./media/characters/jrain/right-hand.svg"
  33881. }
  33882. },
  33883. eye: {
  33884. height: math.unit(0.35, "feet"),
  33885. name: "Eye",
  33886. image: {
  33887. source: "./media/characters/jrain/eye.svg"
  33888. }
  33889. },
  33890. },
  33891. [
  33892. {
  33893. name: "Normal",
  33894. height: math.unit(6 + 8/12, "feet"),
  33895. default: true
  33896. },
  33897. {
  33898. name: "Casually Large",
  33899. height: math.unit(25, "feet")
  33900. },
  33901. {
  33902. name: "Giant",
  33903. height: math.unit(100, "feet")
  33904. },
  33905. {
  33906. name: "Kaiju",
  33907. height: math.unit(300, "feet")
  33908. },
  33909. ]
  33910. ))
  33911. characterMakers.push(() => makeCharacter(
  33912. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33913. {
  33914. dragon: {
  33915. height: math.unit(5, "meters"),
  33916. name: "Dragon",
  33917. image: {
  33918. source: "./media/characters/sabrina/dragon.svg",
  33919. extra: 3670 / 2365,
  33920. bottom: 333 / 4003
  33921. }
  33922. },
  33923. gryphon: {
  33924. height: math.unit(3, "meters"),
  33925. name: "Gryphon",
  33926. image: {
  33927. source: "./media/characters/sabrina/gryphon.svg",
  33928. extra: 1576 / 945,
  33929. bottom: 71 / 1647
  33930. }
  33931. },
  33932. snake: {
  33933. height: math.unit(12, "meters"),
  33934. name: "Snake",
  33935. image: {
  33936. source: "./media/characters/sabrina/snake.svg",
  33937. extra: 1758 / 1320,
  33938. bottom: 186 / 1944
  33939. }
  33940. },
  33941. collar: {
  33942. height: math.unit(1.86, "meters"),
  33943. name: "Collar",
  33944. image: {
  33945. source: "./media/characters/sabrina/collar.svg"
  33946. }
  33947. },
  33948. eye: {
  33949. height: math.unit(0.53, "meters"),
  33950. name: "Eye",
  33951. image: {
  33952. source: "./media/characters/sabrina/eye.svg"
  33953. }
  33954. },
  33955. foot: {
  33956. height: math.unit(1.86, "meters"),
  33957. name: "Foot",
  33958. image: {
  33959. source: "./media/characters/sabrina/foot.svg"
  33960. }
  33961. },
  33962. hand: {
  33963. height: math.unit(1.32, "meters"),
  33964. name: "Hand",
  33965. image: {
  33966. source: "./media/characters/sabrina/hand.svg"
  33967. }
  33968. },
  33969. head: {
  33970. height: math.unit(2.44, "meters"),
  33971. name: "Head",
  33972. image: {
  33973. source: "./media/characters/sabrina/head.svg"
  33974. }
  33975. },
  33976. headAngry: {
  33977. height: math.unit(2.44, "meters"),
  33978. name: "Head (Angry))",
  33979. image: {
  33980. source: "./media/characters/sabrina/head-angry.svg"
  33981. }
  33982. },
  33983. maw: {
  33984. height: math.unit(1.65, "meters"),
  33985. name: "Maw",
  33986. image: {
  33987. source: "./media/characters/sabrina/maw.svg"
  33988. }
  33989. },
  33990. spikes: {
  33991. height: math.unit(1.69, "meters"),
  33992. name: "Spikes",
  33993. image: {
  33994. source: "./media/characters/sabrina/spikes.svg"
  33995. }
  33996. },
  33997. stomach: {
  33998. height: math.unit(1.15, "meters"),
  33999. name: "Stomach",
  34000. image: {
  34001. source: "./media/characters/sabrina/stomach.svg"
  34002. }
  34003. },
  34004. tongue: {
  34005. height: math.unit(1.27, "meters"),
  34006. name: "Tongue",
  34007. image: {
  34008. source: "./media/characters/sabrina/tongue.svg"
  34009. }
  34010. },
  34011. wingDorsal: {
  34012. height: math.unit(4.85, "meters"),
  34013. name: "Wing (Dorsal)",
  34014. image: {
  34015. source: "./media/characters/sabrina/wing-dorsal.svg"
  34016. }
  34017. },
  34018. wingVentral: {
  34019. height: math.unit(4.85, "meters"),
  34020. name: "Wing (Ventral)",
  34021. image: {
  34022. source: "./media/characters/sabrina/wing-ventral.svg"
  34023. }
  34024. },
  34025. },
  34026. [
  34027. {
  34028. name: "Normal",
  34029. height: math.unit(5, "meters"),
  34030. default: true
  34031. },
  34032. ]
  34033. ))
  34034. characterMakers.push(() => makeCharacter(
  34035. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  34036. {
  34037. frontMaid: {
  34038. height: math.unit(5 + 5/12, "feet"),
  34039. weight: math.unit(130, "lb"),
  34040. name: "Front (Maid)",
  34041. image: {
  34042. source: "./media/characters/midnight-tales/front-maid.svg",
  34043. extra: 489/454,
  34044. bottom: 61/550
  34045. }
  34046. },
  34047. frontFormal: {
  34048. height: math.unit(5 + 5/12, "feet"),
  34049. weight: math.unit(130, "lb"),
  34050. name: "Front (Formal)",
  34051. image: {
  34052. source: "./media/characters/midnight-tales/front-formal.svg",
  34053. extra: 489/454,
  34054. bottom: 61/550
  34055. }
  34056. },
  34057. back: {
  34058. height: math.unit(5 + 5/12, "feet"),
  34059. weight: math.unit(130, "lb"),
  34060. name: "Back",
  34061. image: {
  34062. source: "./media/characters/midnight-tales/back.svg",
  34063. extra: 498/456,
  34064. bottom: 33/531
  34065. }
  34066. },
  34067. frontBeast: {
  34068. height: math.unit(40, "feet"),
  34069. weight: math.unit(64000, "lb"),
  34070. name: "Front (Beast)",
  34071. image: {
  34072. source: "./media/characters/midnight-tales/front-beast.svg",
  34073. extra: 927/860,
  34074. bottom: 53/980
  34075. }
  34076. },
  34077. backBeast: {
  34078. height: math.unit(40, "feet"),
  34079. weight: math.unit(64000, "lb"),
  34080. name: "Back (Beast)",
  34081. image: {
  34082. source: "./media/characters/midnight-tales/back-beast.svg",
  34083. extra: 929/855,
  34084. bottom: 16/945
  34085. }
  34086. },
  34087. footBeast: {
  34088. height: math.unit(6.7, "feet"),
  34089. name: "Foot (Beast)",
  34090. image: {
  34091. source: "./media/characters/midnight-tales/foot-beast.svg"
  34092. }
  34093. },
  34094. headBeast: {
  34095. height: math.unit(8, "feet"),
  34096. name: "Head (Beast)",
  34097. image: {
  34098. source: "./media/characters/midnight-tales/head-beast.svg"
  34099. }
  34100. },
  34101. },
  34102. [
  34103. {
  34104. name: "Normal",
  34105. height: math.unit(5 + 5 / 12, "feet"),
  34106. default: true
  34107. },
  34108. {
  34109. name: "Macro",
  34110. height: math.unit(25, "feet")
  34111. },
  34112. ]
  34113. ))
  34114. characterMakers.push(() => makeCharacter(
  34115. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  34116. {
  34117. front: {
  34118. height: math.unit(5 + 10/12, "feet"),
  34119. name: "Front",
  34120. image: {
  34121. source: "./media/characters/argon/front.svg",
  34122. extra: 2009/1935,
  34123. bottom: 118/2127
  34124. }
  34125. },
  34126. back: {
  34127. height: math.unit(5 + 10/12, "feet"),
  34128. name: "Back",
  34129. image: {
  34130. source: "./media/characters/argon/back.svg",
  34131. extra: 2047/1992,
  34132. bottom: 20/2067
  34133. }
  34134. },
  34135. frontDressed: {
  34136. height: math.unit(5 + 10/12, "feet"),
  34137. name: "Front (Dressed)",
  34138. image: {
  34139. source: "./media/characters/argon/front-dressed.svg",
  34140. extra: 2009/1935,
  34141. bottom: 118/2127
  34142. }
  34143. },
  34144. },
  34145. [
  34146. {
  34147. name: "Normal",
  34148. height: math.unit(5 + 10/12, "feet"),
  34149. default: true
  34150. },
  34151. ]
  34152. ))
  34153. characterMakers.push(() => makeCharacter(
  34154. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  34155. {
  34156. front: {
  34157. height: math.unit(8 + 6/12, "feet"),
  34158. weight: math.unit(1150, "lb"),
  34159. name: "Front",
  34160. image: {
  34161. source: "./media/characters/kichi/front.svg",
  34162. extra: 1267/1164,
  34163. bottom: 61/1328
  34164. }
  34165. },
  34166. back: {
  34167. height: math.unit(8 + 6/12, "feet"),
  34168. weight: math.unit(1150, "lb"),
  34169. name: "Back",
  34170. image: {
  34171. source: "./media/characters/kichi/back.svg",
  34172. extra: 1273/1166,
  34173. bottom: 33/1306
  34174. }
  34175. },
  34176. },
  34177. [
  34178. {
  34179. name: "Normal",
  34180. height: math.unit(8 + 6/12, "feet"),
  34181. default: true
  34182. },
  34183. ]
  34184. ))
  34185. characterMakers.push(() => makeCharacter(
  34186. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  34187. {
  34188. front: {
  34189. height: math.unit(6, "feet"),
  34190. weight: math.unit(210, "lb"),
  34191. name: "Front",
  34192. image: {
  34193. source: "./media/characters/manetel-greyscale/front.svg",
  34194. extra: 350/312,
  34195. bottom: 8/358
  34196. }
  34197. },
  34198. },
  34199. [
  34200. {
  34201. name: "Micro",
  34202. height: math.unit(2, "inches")
  34203. },
  34204. {
  34205. name: "Normal",
  34206. height: math.unit(6, "feet"),
  34207. default: true
  34208. },
  34209. {
  34210. name: "Minimacro",
  34211. height: math.unit(17, "feet")
  34212. },
  34213. {
  34214. name: "Macro",
  34215. height: math.unit(117, "feet")
  34216. },
  34217. ]
  34218. ))
  34219. characterMakers.push(() => makeCharacter(
  34220. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  34221. {
  34222. side: {
  34223. height: math.unit(5 + 1/12, "feet"),
  34224. weight: math.unit(418, "lb"),
  34225. name: "Side",
  34226. image: {
  34227. source: "./media/characters/softpurr/side.svg",
  34228. extra: 1993/1945,
  34229. bottom: 134/2127
  34230. }
  34231. },
  34232. front: {
  34233. height: math.unit(5 + 1/12, "feet"),
  34234. weight: math.unit(418, "lb"),
  34235. name: "Front",
  34236. image: {
  34237. source: "./media/characters/softpurr/front.svg",
  34238. extra: 1950/1856,
  34239. bottom: 174/2124
  34240. }
  34241. },
  34242. paw: {
  34243. height: math.unit(1, "feet"),
  34244. name: "Paw",
  34245. image: {
  34246. source: "./media/characters/softpurr/paw.svg"
  34247. }
  34248. },
  34249. },
  34250. [
  34251. {
  34252. name: "Normal",
  34253. height: math.unit(5 + 1/12, "feet"),
  34254. default: true
  34255. },
  34256. ]
  34257. ))
  34258. characterMakers.push(() => makeCharacter(
  34259. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  34260. {
  34261. front: {
  34262. height: math.unit(260, "meters"),
  34263. name: "Front",
  34264. image: {
  34265. source: "./media/characters/anahita/front.svg",
  34266. extra: 665/635,
  34267. bottom: 89/754
  34268. }
  34269. },
  34270. },
  34271. [
  34272. {
  34273. name: "Macro",
  34274. height: math.unit(260, "meters"),
  34275. default: true
  34276. },
  34277. ]
  34278. ))
  34279. characterMakers.push(() => makeCharacter(
  34280. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  34281. {
  34282. front: {
  34283. height: math.unit(4 + 10/12, "feet"),
  34284. weight: math.unit(160, "lb"),
  34285. name: "Front",
  34286. image: {
  34287. source: "./media/characters/chip-mouse/front.svg",
  34288. extra: 3528/3408,
  34289. bottom: 0/3528
  34290. }
  34291. },
  34292. frontNsfw: {
  34293. height: math.unit(4 + 10/12, "feet"),
  34294. weight: math.unit(160, "lb"),
  34295. name: "Front (NSFW)",
  34296. image: {
  34297. source: "./media/characters/chip-mouse/front-nsfw.svg",
  34298. extra: 3528/3408,
  34299. bottom: 0/3528
  34300. }
  34301. },
  34302. },
  34303. [
  34304. {
  34305. name: "Normal",
  34306. height: math.unit(4 + 10/12, "feet"),
  34307. default: true
  34308. },
  34309. ]
  34310. ))
  34311. characterMakers.push(() => makeCharacter(
  34312. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  34313. {
  34314. side: {
  34315. height: math.unit(10, "feet"),
  34316. weight: math.unit(14000, "lb"),
  34317. name: "Side",
  34318. image: {
  34319. source: "./media/characters/kremm/side.svg",
  34320. extra: 1390/1053,
  34321. bottom: 90/1480
  34322. }
  34323. },
  34324. gut: {
  34325. height: math.unit(5.8, "feet"),
  34326. name: "Gut",
  34327. image: {
  34328. source: "./media/characters/kremm/gut.svg"
  34329. }
  34330. },
  34331. ass: {
  34332. height: math.unit(6.1, "feet"),
  34333. name: "Ass",
  34334. image: {
  34335. source: "./media/characters/kremm/ass.svg"
  34336. }
  34337. },
  34338. jaws: {
  34339. height: math.unit(2.2, "feet"),
  34340. name: "Jaws",
  34341. image: {
  34342. source: "./media/characters/kremm/jaws.svg"
  34343. }
  34344. },
  34345. dick: {
  34346. height: math.unit(4.26, "feet"),
  34347. name: "Dick",
  34348. image: {
  34349. source: "./media/characters/kremm/dick.svg"
  34350. }
  34351. },
  34352. },
  34353. [
  34354. {
  34355. name: "Normal",
  34356. height: math.unit(10, "feet"),
  34357. default: true
  34358. },
  34359. ]
  34360. ))
  34361. characterMakers.push(() => makeCharacter(
  34362. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  34363. {
  34364. front: {
  34365. height: math.unit(30, "stories"),
  34366. name: "Front",
  34367. image: {
  34368. source: "./media/characters/kai/front.svg",
  34369. extra: 1892/1718,
  34370. bottom: 162/2054
  34371. }
  34372. },
  34373. },
  34374. [
  34375. {
  34376. name: "Macro",
  34377. height: math.unit(30, "stories"),
  34378. default: true
  34379. },
  34380. ]
  34381. ))
  34382. characterMakers.push(() => makeCharacter(
  34383. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  34384. {
  34385. front: {
  34386. height: math.unit(6 + 4/12, "feet"),
  34387. weight: math.unit(145, "lb"),
  34388. name: "Front",
  34389. image: {
  34390. source: "./media/characters/sykes/front.svg",
  34391. extra: 1321 / 1187,
  34392. bottom: 66 / 1387
  34393. }
  34394. },
  34395. back: {
  34396. height: math.unit(6 + 4/12, "feet"),
  34397. weight: math.unit(145, "lb"),
  34398. name: "Back",
  34399. image: {
  34400. source: "./media/characters/sykes/back.svg",
  34401. extra: 1326/1181,
  34402. bottom: 31/1357
  34403. }
  34404. },
  34405. handBack: {
  34406. height: math.unit(0.9, "feet"),
  34407. name: "Hand (Back)",
  34408. image: {
  34409. source: "./media/characters/sykes/hand-back.svg"
  34410. }
  34411. },
  34412. handFront: {
  34413. height: math.unit(0.839, "feet"),
  34414. name: "Hand (Front)",
  34415. image: {
  34416. source: "./media/characters/sykes/hand-front.svg"
  34417. }
  34418. },
  34419. leftFoot: {
  34420. height: math.unit(1.2, "feet"),
  34421. name: "Foot (Left)",
  34422. image: {
  34423. source: "./media/characters/sykes/foot-left.svg"
  34424. }
  34425. },
  34426. rightFoot: {
  34427. height: math.unit(1.2, "feet"),
  34428. name: "Foot (Right)",
  34429. image: {
  34430. source: "./media/characters/sykes/foot-right.svg"
  34431. }
  34432. },
  34433. maw: {
  34434. height: math.unit(1.93, "feet"),
  34435. name: "Maw",
  34436. image: {
  34437. source: "./media/characters/sykes/maw.svg"
  34438. }
  34439. },
  34440. teeth: {
  34441. height: math.unit(0.51, "feet"),
  34442. name: "Teeth",
  34443. image: {
  34444. source: "./media/characters/sykes/teeth.svg"
  34445. }
  34446. },
  34447. tongue: {
  34448. height: math.unit(2.13, "feet"),
  34449. name: "Tongue",
  34450. image: {
  34451. source: "./media/characters/sykes/tongue.svg"
  34452. }
  34453. },
  34454. uvula: {
  34455. height: math.unit(0.16, "feet"),
  34456. name: "Uvula",
  34457. image: {
  34458. source: "./media/characters/sykes/uvula.svg"
  34459. }
  34460. },
  34461. collar: {
  34462. height: math.unit(0.287, "feet"),
  34463. name: "Collar",
  34464. image: {
  34465. source: "./media/characters/sykes/collar.svg"
  34466. }
  34467. },
  34468. },
  34469. [
  34470. {
  34471. name: "Shrunken",
  34472. height: math.unit(5, "inches")
  34473. },
  34474. {
  34475. name: "Normal",
  34476. height: math.unit(6 + 4 / 12, "feet"),
  34477. default: true
  34478. },
  34479. {
  34480. name: "Big",
  34481. height: math.unit(15, "feet")
  34482. },
  34483. ]
  34484. ))
  34485. characterMakers.push(() => makeCharacter(
  34486. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  34487. {
  34488. front: {
  34489. height: math.unit(5 + 8/12, "feet"),
  34490. weight: math.unit(190, "lb"),
  34491. name: "Front",
  34492. image: {
  34493. source: "./media/characters/oven-otter/front.svg",
  34494. extra: 1809/1740,
  34495. bottom: 181/1990
  34496. }
  34497. },
  34498. back: {
  34499. height: math.unit(5 + 8/12, "feet"),
  34500. weight: math.unit(190, "lb"),
  34501. name: "Back",
  34502. image: {
  34503. source: "./media/characters/oven-otter/back.svg",
  34504. extra: 1709/1635,
  34505. bottom: 118/1827
  34506. }
  34507. },
  34508. hand: {
  34509. height: math.unit(1.07, "feet"),
  34510. name: "Hand",
  34511. image: {
  34512. source: "./media/characters/oven-otter/hand.svg"
  34513. }
  34514. },
  34515. beans: {
  34516. height: math.unit(1.74, "feet"),
  34517. name: "Beans",
  34518. image: {
  34519. source: "./media/characters/oven-otter/beans.svg"
  34520. }
  34521. },
  34522. },
  34523. [
  34524. {
  34525. name: "Micro",
  34526. height: math.unit(0.5, "inches")
  34527. },
  34528. {
  34529. name: "Normal",
  34530. height: math.unit(5 + 8/12, "feet"),
  34531. default: true
  34532. },
  34533. {
  34534. name: "Macro",
  34535. height: math.unit(250, "feet")
  34536. },
  34537. {
  34538. name: "Really High",
  34539. height: math.unit(420, "feet")
  34540. },
  34541. ]
  34542. ))
  34543. characterMakers.push(() => makeCharacter(
  34544. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  34545. {
  34546. front: {
  34547. height: math.unit(5, "meters"),
  34548. weight: math.unit(292000000000000, "kg"),
  34549. name: "Front",
  34550. image: {
  34551. source: "./media/characters/devourer/front.svg",
  34552. extra: 1800/1733,
  34553. bottom: 211/2011
  34554. }
  34555. },
  34556. maw: {
  34557. height: math.unit(1.1, "meter"),
  34558. name: "Maw",
  34559. image: {
  34560. source: "./media/characters/devourer/maw.svg"
  34561. }
  34562. },
  34563. },
  34564. [
  34565. {
  34566. name: "Small",
  34567. height: math.unit(3, "meters")
  34568. },
  34569. {
  34570. name: "Large",
  34571. height: math.unit(5, "meters"),
  34572. default: true
  34573. },
  34574. ]
  34575. ))
  34576. characterMakers.push(() => makeCharacter(
  34577. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  34578. {
  34579. front: {
  34580. height: math.unit(6, "feet"),
  34581. weight: math.unit(400, "lb"),
  34582. name: "Front",
  34583. image: {
  34584. source: "./media/characters/ellarby/front.svg",
  34585. extra: 1909/1763,
  34586. bottom: 80/1989
  34587. }
  34588. },
  34589. back: {
  34590. height: math.unit(6, "feet"),
  34591. weight: math.unit(400, "lb"),
  34592. name: "Back",
  34593. image: {
  34594. source: "./media/characters/ellarby/back.svg",
  34595. extra: 1914/1784,
  34596. bottom: 172/2086
  34597. }
  34598. },
  34599. },
  34600. [
  34601. {
  34602. name: "Mischief",
  34603. height: math.unit(18, "inches")
  34604. },
  34605. {
  34606. name: "Trouble",
  34607. height: math.unit(12, "feet")
  34608. },
  34609. {
  34610. name: "Havoc",
  34611. height: math.unit(200, "feet"),
  34612. default: true
  34613. },
  34614. {
  34615. name: "Pandemonium",
  34616. height: math.unit(1, "mile")
  34617. },
  34618. {
  34619. name: "Catastrophe",
  34620. height: math.unit(100, "miles")
  34621. },
  34622. ]
  34623. ))
  34624. characterMakers.push(() => makeCharacter(
  34625. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  34626. {
  34627. front: {
  34628. height: math.unit(4.7, "meters"),
  34629. weight: math.unit(6500, "kg"),
  34630. name: "Front",
  34631. image: {
  34632. source: "./media/characters/vex/front.svg",
  34633. extra: 1288/1140,
  34634. bottom: 100/1388
  34635. }
  34636. },
  34637. },
  34638. [
  34639. {
  34640. name: "Normal",
  34641. height: math.unit(4.7, "meters"),
  34642. default: true
  34643. },
  34644. ]
  34645. ))
  34646. characterMakers.push(() => makeCharacter(
  34647. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  34648. {
  34649. normal: {
  34650. height: math.unit(6, "feet"),
  34651. weight: math.unit(350, "lb"),
  34652. name: "Normal",
  34653. image: {
  34654. source: "./media/characters/teshy/normal.svg",
  34655. extra: 1795/1735,
  34656. bottom: 16/1811
  34657. }
  34658. },
  34659. monsterFront: {
  34660. height: math.unit(12, "feet"),
  34661. weight: math.unit(4700, "lb"),
  34662. name: "Monster (Front)",
  34663. image: {
  34664. source: "./media/characters/teshy/monster-front.svg",
  34665. extra: 2042/2034,
  34666. bottom: 128/2170
  34667. }
  34668. },
  34669. monsterSide: {
  34670. height: math.unit(12, "feet"),
  34671. weight: math.unit(4700, "lb"),
  34672. name: "Monster (Side)",
  34673. image: {
  34674. source: "./media/characters/teshy/monster-side.svg",
  34675. extra: 2067/2056,
  34676. bottom: 70/2137
  34677. }
  34678. },
  34679. monsterBack: {
  34680. height: math.unit(12, "feet"),
  34681. weight: math.unit(4700, "lb"),
  34682. name: "Monster (Back)",
  34683. image: {
  34684. source: "./media/characters/teshy/monster-back.svg",
  34685. extra: 1921/1914,
  34686. bottom: 171/2092
  34687. }
  34688. },
  34689. },
  34690. [
  34691. {
  34692. name: "Normal",
  34693. height: math.unit(6, "feet"),
  34694. default: true
  34695. },
  34696. ]
  34697. ))
  34698. characterMakers.push(() => makeCharacter(
  34699. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  34700. {
  34701. front: {
  34702. height: math.unit(6, "feet"),
  34703. name: "Front",
  34704. image: {
  34705. source: "./media/characters/ramey/front.svg",
  34706. extra: 790/787,
  34707. bottom: 27/817
  34708. }
  34709. },
  34710. },
  34711. [
  34712. {
  34713. name: "Normal",
  34714. height: math.unit(6, "feet"),
  34715. default: true
  34716. },
  34717. ]
  34718. ))
  34719. characterMakers.push(() => makeCharacter(
  34720. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  34721. {
  34722. front: {
  34723. height: math.unit(5 + 5/12, "feet"),
  34724. weight: math.unit(120, "lb"),
  34725. name: "Front",
  34726. image: {
  34727. source: "./media/characters/phirae/front.svg",
  34728. extra: 2491/2436,
  34729. bottom: 38/2529
  34730. }
  34731. },
  34732. },
  34733. [
  34734. {
  34735. name: "Normal",
  34736. height: math.unit(5 + 5/12, "feet"),
  34737. default: true
  34738. },
  34739. ]
  34740. ))
  34741. characterMakers.push(() => makeCharacter(
  34742. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  34743. {
  34744. front: {
  34745. height: math.unit(5 + 3/12, "feet"),
  34746. name: "Front",
  34747. image: {
  34748. source: "./media/characters/stagglas/front.svg",
  34749. extra: 962/882,
  34750. bottom: 53/1015
  34751. }
  34752. },
  34753. feral: {
  34754. height: math.unit(335, "cm"),
  34755. name: "Feral",
  34756. image: {
  34757. source: "./media/characters/stagglas/feral.svg",
  34758. extra: 1732/1090,
  34759. bottom: 48/1780
  34760. }
  34761. },
  34762. },
  34763. [
  34764. {
  34765. name: "Normal",
  34766. height: math.unit(5 + 3/12, "feet"),
  34767. default: true
  34768. },
  34769. ]
  34770. ))
  34771. characterMakers.push(() => makeCharacter(
  34772. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  34773. {
  34774. front: {
  34775. height: math.unit(5 + 4/12, "feet"),
  34776. weight: math.unit(145, "lb"),
  34777. name: "Front",
  34778. image: {
  34779. source: "./media/characters/starra/front.svg",
  34780. extra: 1790/1691,
  34781. bottom: 91/1881
  34782. }
  34783. },
  34784. },
  34785. [
  34786. {
  34787. name: "Normal",
  34788. height: math.unit(5 + 4/12, "feet"),
  34789. default: true
  34790. },
  34791. ]
  34792. ))
  34793. characterMakers.push(() => makeCharacter(
  34794. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  34795. {
  34796. front: {
  34797. height: math.unit(2.2, "meters"),
  34798. name: "Front",
  34799. image: {
  34800. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  34801. extra: 1194/1005,
  34802. bottom: 25/1219
  34803. }
  34804. },
  34805. },
  34806. [
  34807. {
  34808. name: "Normal",
  34809. height: math.unit(2.2, "meters"),
  34810. default: true
  34811. },
  34812. ]
  34813. ))
  34814. characterMakers.push(() => makeCharacter(
  34815. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  34816. {
  34817. side: {
  34818. height: math.unit(8 + 2/12, "feet"),
  34819. weight: math.unit(1240, "lb"),
  34820. name: "Side",
  34821. image: {
  34822. source: "./media/characters/mika-valentine/side.svg",
  34823. extra: 2670/2501,
  34824. bottom: 250/2920
  34825. }
  34826. },
  34827. },
  34828. [
  34829. {
  34830. name: "Normal",
  34831. height: math.unit(8 + 2/12, "feet"),
  34832. default: true
  34833. },
  34834. ]
  34835. ))
  34836. characterMakers.push(() => makeCharacter(
  34837. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  34838. {
  34839. front: {
  34840. height: math.unit(7 + 2/12, "feet"),
  34841. name: "Front",
  34842. image: {
  34843. source: "./media/characters/xoltol/front.svg",
  34844. extra: 2212/2124,
  34845. bottom: 84/2296
  34846. }
  34847. },
  34848. side: {
  34849. height: math.unit(7 + 2/12, "feet"),
  34850. name: "Side",
  34851. image: {
  34852. source: "./media/characters/xoltol/side.svg",
  34853. extra: 2273/2197,
  34854. bottom: 26/2299
  34855. }
  34856. },
  34857. hand: {
  34858. height: math.unit(2.5, "feet"),
  34859. name: "Hand",
  34860. image: {
  34861. source: "./media/characters/xoltol/hand.svg"
  34862. }
  34863. },
  34864. },
  34865. [
  34866. {
  34867. name: "Small-ish",
  34868. height: math.unit(5 + 11/12, "feet")
  34869. },
  34870. {
  34871. name: "Normal",
  34872. height: math.unit(7 + 2/12, "feet")
  34873. },
  34874. {
  34875. name: "\"Macro\"",
  34876. height: math.unit(14 + 9/12, "feet"),
  34877. default: true
  34878. },
  34879. {
  34880. name: "Alternate Height",
  34881. height: math.unit(20, "feet")
  34882. },
  34883. {
  34884. name: "Actually Macro",
  34885. height: math.unit(100, "feet")
  34886. },
  34887. ]
  34888. ))
  34889. characterMakers.push(() => makeCharacter(
  34890. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  34891. {
  34892. front: {
  34893. height: math.unit(5 + 2/12, "feet"),
  34894. name: "Front",
  34895. image: {
  34896. source: "./media/characters/kotetsu-redwood/front.svg",
  34897. extra: 1053/942,
  34898. bottom: 60/1113
  34899. }
  34900. },
  34901. },
  34902. [
  34903. {
  34904. name: "Normal",
  34905. height: math.unit(5 + 2/12, "feet"),
  34906. default: true
  34907. },
  34908. ]
  34909. ))
  34910. characterMakers.push(() => makeCharacter(
  34911. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34912. {
  34913. front: {
  34914. height: math.unit(2.4, "meters"),
  34915. weight: math.unit(125, "kg"),
  34916. name: "Front",
  34917. image: {
  34918. source: "./media/characters/lilith/front.svg",
  34919. extra: 1590/1513,
  34920. bottom: 203/1793
  34921. }
  34922. },
  34923. },
  34924. [
  34925. {
  34926. name: "Humanoid",
  34927. height: math.unit(2.4, "meters")
  34928. },
  34929. {
  34930. name: "Normal",
  34931. height: math.unit(6, "meters"),
  34932. default: true
  34933. },
  34934. {
  34935. name: "Largest",
  34936. height: math.unit(55, "meters")
  34937. },
  34938. ]
  34939. ))
  34940. characterMakers.push(() => makeCharacter(
  34941. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34942. {
  34943. front: {
  34944. height: math.unit(8 + 4/12, "feet"),
  34945. weight: math.unit(535, "lb"),
  34946. name: "Front",
  34947. image: {
  34948. source: "./media/characters/beh'kah-bolger/front.svg",
  34949. extra: 1660/1603,
  34950. bottom: 37/1697
  34951. }
  34952. },
  34953. },
  34954. [
  34955. {
  34956. name: "Normal",
  34957. height: math.unit(8 + 4/12, "feet"),
  34958. default: true
  34959. },
  34960. {
  34961. name: "Kaiju",
  34962. height: math.unit(250, "feet")
  34963. },
  34964. {
  34965. name: "Still Growing",
  34966. height: math.unit(10, "miles")
  34967. },
  34968. {
  34969. name: "Continental",
  34970. height: math.unit(5000, "miles")
  34971. },
  34972. {
  34973. name: "Final Form",
  34974. height: math.unit(2500000, "miles")
  34975. },
  34976. ]
  34977. ))
  34978. characterMakers.push(() => makeCharacter(
  34979. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34980. {
  34981. front: {
  34982. height: math.unit(7 + 2/12, "feet"),
  34983. weight: math.unit(230, "kg"),
  34984. name: "Front",
  34985. image: {
  34986. source: "./media/characters/tatyana-milewska/front.svg",
  34987. extra: 1199/1150,
  34988. bottom: 86/1285
  34989. }
  34990. },
  34991. },
  34992. [
  34993. {
  34994. name: "Normal",
  34995. height: math.unit(7 + 2/12, "feet"),
  34996. default: true
  34997. },
  34998. {
  34999. name: "Big",
  35000. height: math.unit(12, "feet")
  35001. },
  35002. {
  35003. name: "Minimacro",
  35004. height: math.unit(20, "feet")
  35005. },
  35006. {
  35007. name: "Macro",
  35008. height: math.unit(120, "feet")
  35009. },
  35010. ]
  35011. ))
  35012. characterMakers.push(() => makeCharacter(
  35013. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  35014. {
  35015. front: {
  35016. height: math.unit(7 + 8/12, "feet"),
  35017. weight: math.unit(152, "kg"),
  35018. name: "Front",
  35019. image: {
  35020. source: "./media/characters/helen-arri/front.svg",
  35021. extra: 440/423,
  35022. bottom: 14/454
  35023. }
  35024. },
  35025. back: {
  35026. height: math.unit(7 + 8/12, "feet"),
  35027. weight: math.unit(152, "kg"),
  35028. name: "Back",
  35029. image: {
  35030. source: "./media/characters/helen-arri/back.svg",
  35031. extra: 443/426,
  35032. bottom: 8/451
  35033. }
  35034. },
  35035. },
  35036. [
  35037. {
  35038. name: "Normal",
  35039. height: math.unit(7 + 8/12, "feet"),
  35040. default: true
  35041. },
  35042. {
  35043. name: "Big",
  35044. height: math.unit(14, "feet")
  35045. },
  35046. {
  35047. name: "Minimacro",
  35048. height: math.unit(24, "feet")
  35049. },
  35050. {
  35051. name: "Macro",
  35052. height: math.unit(140, "feet")
  35053. },
  35054. ]
  35055. ))
  35056. characterMakers.push(() => makeCharacter(
  35057. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  35058. {
  35059. front: {
  35060. height: math.unit(6, "meters"),
  35061. name: "Front",
  35062. image: {
  35063. source: "./media/characters/ehanu-rehu/front.svg",
  35064. extra: 1800/1800,
  35065. bottom: 59/1859
  35066. }
  35067. },
  35068. },
  35069. [
  35070. {
  35071. name: "Normal",
  35072. height: math.unit(6, "meters"),
  35073. default: true
  35074. },
  35075. ]
  35076. ))
  35077. characterMakers.push(() => makeCharacter(
  35078. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  35079. {
  35080. front: {
  35081. height: math.unit(7 + 3/12, "feet"),
  35082. name: "Front",
  35083. image: {
  35084. source: "./media/characters/renholder/front.svg",
  35085. extra: 3096/2960,
  35086. bottom: 250/3346
  35087. }
  35088. },
  35089. },
  35090. [
  35091. {
  35092. name: "Normal Bat",
  35093. height: math.unit(7 + 3/12, "feet"),
  35094. default: true
  35095. },
  35096. {
  35097. name: "Slightly Tall Bat",
  35098. height: math.unit(100, "feet")
  35099. },
  35100. {
  35101. name: "Big Bat",
  35102. height: math.unit(1000, "feet")
  35103. },
  35104. {
  35105. name: "City-Sized Bat",
  35106. height: math.unit(200000, "feet")
  35107. },
  35108. {
  35109. name: "Bigger Bat",
  35110. height: math.unit(10000, "miles")
  35111. },
  35112. {
  35113. name: "Solar Sized Bat",
  35114. height: math.unit(100, "AU")
  35115. },
  35116. {
  35117. name: "Galactic Bat",
  35118. height: math.unit(200000, "lightyears")
  35119. },
  35120. {
  35121. name: "Universally Known Bat",
  35122. height: math.unit(1, "universe")
  35123. },
  35124. ]
  35125. ))
  35126. characterMakers.push(() => makeCharacter(
  35127. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  35128. {
  35129. front: {
  35130. height: math.unit(6 + 11/12, "feet"),
  35131. weight: math.unit(250, "lb"),
  35132. name: "Front",
  35133. image: {
  35134. source: "./media/characters/cookiecat/front.svg",
  35135. extra: 893/827,
  35136. bottom: 14/907
  35137. }
  35138. },
  35139. },
  35140. [
  35141. {
  35142. name: "Micro",
  35143. height: math.unit(3, "inches")
  35144. },
  35145. {
  35146. name: "Normal",
  35147. height: math.unit(6 + 11/12, "feet"),
  35148. default: true
  35149. },
  35150. {
  35151. name: "Macro",
  35152. height: math.unit(100, "feet")
  35153. },
  35154. {
  35155. name: "Macro+",
  35156. height: math.unit(404, "feet")
  35157. },
  35158. {
  35159. name: "Megamacro",
  35160. height: math.unit(165, "miles")
  35161. },
  35162. {
  35163. name: "Planetary",
  35164. height: math.unit(4600, "miles")
  35165. },
  35166. ]
  35167. ))
  35168. characterMakers.push(() => makeCharacter(
  35169. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  35170. {
  35171. front: {
  35172. height: math.unit(10 + 3/12, "feet"),
  35173. weight: math.unit(1500, "lb"),
  35174. name: "Front",
  35175. image: {
  35176. source: "./media/characters/tux-kusanagi/front.svg",
  35177. extra: 944/840,
  35178. bottom: 39/983
  35179. }
  35180. },
  35181. back: {
  35182. height: math.unit(10 + 3/12, "feet"),
  35183. weight: math.unit(1500, "lb"),
  35184. name: "Back",
  35185. image: {
  35186. source: "./media/characters/tux-kusanagi/back.svg",
  35187. extra: 941/842,
  35188. bottom: 28/969
  35189. }
  35190. },
  35191. rump: {
  35192. height: math.unit(5.25, "feet"),
  35193. name: "Rump",
  35194. image: {
  35195. source: "./media/characters/tux-kusanagi/rump.svg"
  35196. }
  35197. },
  35198. beak: {
  35199. height: math.unit(1.54, "feet"),
  35200. name: "Beak",
  35201. image: {
  35202. source: "./media/characters/tux-kusanagi/beak.svg"
  35203. }
  35204. },
  35205. },
  35206. [
  35207. {
  35208. name: "Normal",
  35209. height: math.unit(10 + 3/12, "feet"),
  35210. default: true
  35211. },
  35212. ]
  35213. ))
  35214. characterMakers.push(() => makeCharacter(
  35215. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  35216. {
  35217. front: {
  35218. height: math.unit(58, "feet"),
  35219. weight: math.unit(200, "tons"),
  35220. name: "Front",
  35221. image: {
  35222. source: "./media/characters/uzarmazari/front.svg",
  35223. extra: 1575/1455,
  35224. bottom: 152/1727
  35225. }
  35226. },
  35227. back: {
  35228. height: math.unit(58, "feet"),
  35229. weight: math.unit(200, "tons"),
  35230. name: "Back",
  35231. image: {
  35232. source: "./media/characters/uzarmazari/back.svg",
  35233. extra: 1585/1510,
  35234. bottom: 157/1742
  35235. }
  35236. },
  35237. head: {
  35238. height: math.unit(26, "feet"),
  35239. name: "Head",
  35240. image: {
  35241. source: "./media/characters/uzarmazari/head.svg"
  35242. }
  35243. },
  35244. },
  35245. [
  35246. {
  35247. name: "Normal",
  35248. height: math.unit(58, "feet"),
  35249. default: true
  35250. },
  35251. ]
  35252. ))
  35253. characterMakers.push(() => makeCharacter(
  35254. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  35255. {
  35256. side: {
  35257. height: math.unit(15, "feet"),
  35258. name: "Side",
  35259. image: {
  35260. source: "./media/characters/akitu/side.svg",
  35261. extra: 1421/1321,
  35262. bottom: 157/1578
  35263. }
  35264. },
  35265. front: {
  35266. height: math.unit(15, "feet"),
  35267. name: "Front",
  35268. image: {
  35269. source: "./media/characters/akitu/front.svg",
  35270. extra: 1435/1326,
  35271. bottom: 232/1667
  35272. }
  35273. },
  35274. },
  35275. [
  35276. {
  35277. name: "Normal",
  35278. height: math.unit(15, "feet"),
  35279. default: true
  35280. },
  35281. ]
  35282. ))
  35283. characterMakers.push(() => makeCharacter(
  35284. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  35285. {
  35286. front: {
  35287. height: math.unit(10 + 8/12, "feet"),
  35288. name: "Front",
  35289. image: {
  35290. source: "./media/characters/azalie-croixland/front.svg",
  35291. extra: 1972/1856,
  35292. bottom: 31/2003
  35293. }
  35294. },
  35295. },
  35296. [
  35297. {
  35298. name: "Original Height",
  35299. height: math.unit(5 + 4/12, "feet")
  35300. },
  35301. {
  35302. name: "Normal Height",
  35303. height: math.unit(10 + 8/12, "feet"),
  35304. default: true
  35305. },
  35306. ]
  35307. ))
  35308. characterMakers.push(() => makeCharacter(
  35309. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  35310. {
  35311. side: {
  35312. height: math.unit(7 + 1/12, "feet"),
  35313. weight: math.unit(245, "lb"),
  35314. name: "Side",
  35315. image: {
  35316. source: "./media/characters/kavus-kazian/side.svg",
  35317. extra: 349/342,
  35318. bottom: 15/364
  35319. }
  35320. },
  35321. },
  35322. [
  35323. {
  35324. name: "Normal",
  35325. height: math.unit(7 + 1/12, "feet"),
  35326. default: true
  35327. },
  35328. ]
  35329. ))
  35330. characterMakers.push(() => makeCharacter(
  35331. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  35332. {
  35333. normalFront: {
  35334. height: math.unit(5 + 11/12, "feet"),
  35335. name: "Front",
  35336. image: {
  35337. source: "./media/characters/moonlight-rose/normal-front.svg",
  35338. extra: 1980/1825,
  35339. bottom: 18/1998
  35340. },
  35341. form: "normal",
  35342. default: true
  35343. },
  35344. normalBack: {
  35345. height: math.unit(5 + 11/12, "feet"),
  35346. name: "Back",
  35347. image: {
  35348. source: "./media/characters/moonlight-rose/normal-back.svg",
  35349. extra: 2010/1839,
  35350. bottom: 10/2020
  35351. },
  35352. form: "normal"
  35353. },
  35354. demonFront: {
  35355. height: math.unit(1.5, "earths"),
  35356. name: "Front",
  35357. image: {
  35358. source: "./media/characters/moonlight-rose/demon.svg",
  35359. extra: 1400/1294,
  35360. bottom: 45/1445
  35361. },
  35362. form: "demon",
  35363. default: true
  35364. },
  35365. terraFront: {
  35366. height: math.unit(1.5, "earths"),
  35367. name: "Front",
  35368. image: {
  35369. source: "./media/characters/moonlight-rose/terra.svg"
  35370. },
  35371. form: "terra",
  35372. default: true
  35373. },
  35374. jupiterFront: {
  35375. height: math.unit(69911*2, "km"),
  35376. name: "Front",
  35377. image: {
  35378. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  35379. extra: 1367/1286,
  35380. bottom: 55/1422
  35381. },
  35382. form: "jupiter",
  35383. default: true
  35384. },
  35385. neptuneFront: {
  35386. height: math.unit(24622*2, "feet"),
  35387. name: "Front",
  35388. image: {
  35389. source: "./media/characters/moonlight-rose/neptune-front.svg",
  35390. extra: 1851/1712,
  35391. bottom: 0/1851
  35392. },
  35393. form: "neptune",
  35394. default: true
  35395. },
  35396. },
  35397. [
  35398. {
  35399. name: "\"Natural\" Height",
  35400. height: math.unit(5 + 11/12, "feet"),
  35401. form: "normal"
  35402. },
  35403. {
  35404. name: "Smallest comfortable size",
  35405. height: math.unit(40, "meters"),
  35406. form: "normal"
  35407. },
  35408. {
  35409. name: "Common size",
  35410. height: math.unit(50, "km"),
  35411. form: "normal",
  35412. default: true
  35413. },
  35414. {
  35415. name: "Normal",
  35416. height: math.unit(1.5, "earths"),
  35417. form: "demon",
  35418. default: true
  35419. },
  35420. {
  35421. name: "Universal",
  35422. height: math.unit(15, "universes"),
  35423. form: "demon"
  35424. },
  35425. {
  35426. name: "Earth",
  35427. height: math.unit(1.5, "earths"),
  35428. form: "terra",
  35429. default: true
  35430. },
  35431. {
  35432. name: "Super Earth",
  35433. height: math.unit(67.5, "earths"),
  35434. form: "terra"
  35435. },
  35436. {
  35437. name: "Doesn't fit in a solar system...",
  35438. height: math.unit(1, "galaxy"),
  35439. form: "terra"
  35440. },
  35441. {
  35442. name: "Saturn",
  35443. height: math.unit(58232*2, "km"),
  35444. form: "jupiter"
  35445. },
  35446. {
  35447. name: "Jupiter",
  35448. height: math.unit(69911*2, "km"),
  35449. form: "jupiter",
  35450. default: true
  35451. },
  35452. {
  35453. name: "HD 100546 b",
  35454. height: math.unit(482938, "km"),
  35455. form: "jupiter"
  35456. },
  35457. {
  35458. name: "Enceladus",
  35459. height: math.unit(513*2, "km"),
  35460. form: "neptune"
  35461. },
  35462. {
  35463. name: "Europe",
  35464. height: math.unit(1560*2, "km"),
  35465. form: "neptune"
  35466. },
  35467. {
  35468. name: "Neptune",
  35469. height: math.unit(24622*2, "km"),
  35470. form: "neptune",
  35471. default: true
  35472. },
  35473. {
  35474. name: "CoRoT-9b",
  35475. height: math.unit(75067*2, "km"),
  35476. form: "neptune"
  35477. },
  35478. ],
  35479. {
  35480. "normal": {
  35481. name: "Normal",
  35482. default: true
  35483. },
  35484. "demon": {
  35485. name: "Demon"
  35486. },
  35487. "terra": {
  35488. name: "Terra"
  35489. },
  35490. "jupiter": {
  35491. name: "Jupiter"
  35492. },
  35493. "neptune": {
  35494. name: "Neptune"
  35495. }
  35496. }
  35497. ))
  35498. characterMakers.push(() => makeCharacter(
  35499. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  35500. {
  35501. front: {
  35502. height: math.unit(16, "feet"),
  35503. weight: math.unit(610, "kg"),
  35504. name: "Front",
  35505. image: {
  35506. source: "./media/characters/huckle/front.svg",
  35507. extra: 1731/1625,
  35508. bottom: 33/1764
  35509. }
  35510. },
  35511. back: {
  35512. height: math.unit(16, "feet"),
  35513. weight: math.unit(610, "kg"),
  35514. name: "Back",
  35515. image: {
  35516. source: "./media/characters/huckle/back.svg",
  35517. extra: 1738/1651,
  35518. bottom: 37/1775
  35519. }
  35520. },
  35521. laughing: {
  35522. height: math.unit(3.75, "feet"),
  35523. name: "Laughing",
  35524. image: {
  35525. source: "./media/characters/huckle/laughing.svg"
  35526. }
  35527. },
  35528. angry: {
  35529. height: math.unit(4.15, "feet"),
  35530. name: "Angry",
  35531. image: {
  35532. source: "./media/characters/huckle/angry.svg"
  35533. }
  35534. },
  35535. },
  35536. [
  35537. {
  35538. name: "Normal",
  35539. height: math.unit(16, "feet"),
  35540. default: true
  35541. },
  35542. {
  35543. name: "Mini Macro",
  35544. height: math.unit(463, "feet")
  35545. },
  35546. {
  35547. name: "Macro",
  35548. height: math.unit(1680, "meters")
  35549. },
  35550. {
  35551. name: "Mega Macro",
  35552. height: math.unit(175, "km")
  35553. },
  35554. {
  35555. name: "Terra Macro",
  35556. height: math.unit(32, "gigameters")
  35557. },
  35558. {
  35559. name: "Multiverse+",
  35560. height: math.unit(2.56e23, "yottameters")
  35561. },
  35562. ]
  35563. ))
  35564. characterMakers.push(() => makeCharacter(
  35565. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  35566. {
  35567. front: {
  35568. height: math.unit(6 + 9/12, "feet"),
  35569. weight: math.unit(280, "lb"),
  35570. name: "Front",
  35571. image: {
  35572. source: "./media/characters/candy/front.svg",
  35573. extra: 234/217,
  35574. bottom: 11/245
  35575. }
  35576. },
  35577. },
  35578. [
  35579. {
  35580. name: "Really Small",
  35581. height: math.unit(0.1, "nm")
  35582. },
  35583. {
  35584. name: "Micro",
  35585. height: math.unit(2, "inches")
  35586. },
  35587. {
  35588. name: "Normal",
  35589. height: math.unit(6 + 9/12, "feet"),
  35590. default: true
  35591. },
  35592. {
  35593. name: "Small Macro",
  35594. height: math.unit(69, "feet")
  35595. },
  35596. {
  35597. name: "Macro",
  35598. height: math.unit(160, "feet")
  35599. },
  35600. {
  35601. name: "Megamacro",
  35602. height: math.unit(22000, "miles")
  35603. },
  35604. {
  35605. name: "Gigamacro",
  35606. height: math.unit(50000, "miles")
  35607. },
  35608. ]
  35609. ))
  35610. characterMakers.push(() => makeCharacter(
  35611. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  35612. {
  35613. front: {
  35614. height: math.unit(4, "feet"),
  35615. weight: math.unit(90, "lb"),
  35616. name: "Front",
  35617. image: {
  35618. source: "./media/characters/joey-mcdonald/front.svg",
  35619. extra: 1059/852,
  35620. bottom: 33/1092
  35621. }
  35622. },
  35623. back: {
  35624. height: math.unit(4, "feet"),
  35625. weight: math.unit(90, "lb"),
  35626. name: "Back",
  35627. image: {
  35628. source: "./media/characters/joey-mcdonald/back.svg",
  35629. extra: 1077/879,
  35630. bottom: 5/1082
  35631. }
  35632. },
  35633. frontKobold: {
  35634. height: math.unit(4, "feet"),
  35635. weight: math.unit(100, "lb"),
  35636. name: "Front-kobold",
  35637. image: {
  35638. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  35639. extra: 1480/1367,
  35640. bottom: 0/1480
  35641. }
  35642. },
  35643. backKobold: {
  35644. height: math.unit(4, "feet"),
  35645. weight: math.unit(100, "lb"),
  35646. name: "Back-kobold",
  35647. image: {
  35648. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  35649. extra: 1449/1361,
  35650. bottom: 0/1449
  35651. }
  35652. },
  35653. },
  35654. [
  35655. {
  35656. name: "Normal",
  35657. height: math.unit(4, "feet"),
  35658. default: true
  35659. },
  35660. ]
  35661. ))
  35662. characterMakers.push(() => makeCharacter(
  35663. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  35664. {
  35665. front: {
  35666. height: math.unit(12 + 6/12, "feet"),
  35667. name: "Front",
  35668. image: {
  35669. source: "./media/characters/kass-lockheed/front.svg",
  35670. extra: 354/343,
  35671. bottom: 9/363
  35672. }
  35673. },
  35674. back: {
  35675. height: math.unit(12 + 6/12, "feet"),
  35676. name: "Back",
  35677. image: {
  35678. source: "./media/characters/kass-lockheed/back.svg",
  35679. extra: 364/352,
  35680. bottom: 3/367
  35681. }
  35682. },
  35683. dick: {
  35684. height: math.unit(3.12, "feet"),
  35685. name: "Dick",
  35686. image: {
  35687. source: "./media/characters/kass-lockheed/dick.svg"
  35688. }
  35689. },
  35690. head: {
  35691. height: math.unit(2.6, "feet"),
  35692. name: "Head",
  35693. image: {
  35694. source: "./media/characters/kass-lockheed/head.svg"
  35695. }
  35696. },
  35697. bleh: {
  35698. height: math.unit(2.85, "feet"),
  35699. name: "Bleh",
  35700. image: {
  35701. source: "./media/characters/kass-lockheed/bleh.svg"
  35702. }
  35703. },
  35704. smug: {
  35705. height: math.unit(2.85, "feet"),
  35706. name: "Smug",
  35707. image: {
  35708. source: "./media/characters/kass-lockheed/smug.svg"
  35709. }
  35710. },
  35711. },
  35712. [
  35713. {
  35714. name: "Normal",
  35715. height: math.unit(12 + 6/12, "feet"),
  35716. default: true
  35717. },
  35718. ]
  35719. ))
  35720. characterMakers.push(() => makeCharacter(
  35721. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  35722. {
  35723. front: {
  35724. height: math.unit(6 + 2/12, "feet"),
  35725. name: "Front",
  35726. image: {
  35727. source: "./media/characters/taylor/front.svg",
  35728. extra: 639/495,
  35729. bottom: 12/651
  35730. }
  35731. },
  35732. },
  35733. [
  35734. {
  35735. name: "Normal",
  35736. height: math.unit(6 + 2/12, "feet"),
  35737. default: true
  35738. },
  35739. {
  35740. name: "Big",
  35741. height: math.unit(15, "feet")
  35742. },
  35743. {
  35744. name: "Lorg",
  35745. height: math.unit(80, "feet")
  35746. },
  35747. {
  35748. name: "Too Lorg",
  35749. height: math.unit(120, "feet")
  35750. },
  35751. ]
  35752. ))
  35753. characterMakers.push(() => makeCharacter(
  35754. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  35755. {
  35756. front: {
  35757. height: math.unit(15, "feet"),
  35758. name: "Front",
  35759. image: {
  35760. source: "./media/characters/kaizer/front.svg",
  35761. extra: 1612/1436,
  35762. bottom: 43/1655
  35763. }
  35764. },
  35765. },
  35766. [
  35767. {
  35768. name: "Normal",
  35769. height: math.unit(15, "feet"),
  35770. default: true
  35771. },
  35772. ]
  35773. ))
  35774. characterMakers.push(() => makeCharacter(
  35775. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  35776. {
  35777. front: {
  35778. height: math.unit(2, "feet"),
  35779. weight: math.unit(30, "lb"),
  35780. name: "Front",
  35781. image: {
  35782. source: "./media/characters/sandy/front.svg",
  35783. extra: 1439/1307,
  35784. bottom: 194/1633
  35785. }
  35786. },
  35787. },
  35788. [
  35789. {
  35790. name: "Normal",
  35791. height: math.unit(2, "feet"),
  35792. default: true
  35793. },
  35794. ]
  35795. ))
  35796. characterMakers.push(() => makeCharacter(
  35797. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  35798. {
  35799. front: {
  35800. height: math.unit(3, "feet"),
  35801. name: "Front",
  35802. image: {
  35803. source: "./media/characters/mellvi/front.svg",
  35804. extra: 1831/1630,
  35805. bottom: 58/1889
  35806. }
  35807. },
  35808. },
  35809. [
  35810. {
  35811. name: "Normal",
  35812. height: math.unit(3, "feet"),
  35813. default: true
  35814. },
  35815. ]
  35816. ))
  35817. characterMakers.push(() => makeCharacter(
  35818. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  35819. {
  35820. front: {
  35821. height: math.unit(5 + 11/12, "feet"),
  35822. weight: math.unit(200, "lb"),
  35823. name: "Front",
  35824. image: {
  35825. source: "./media/characters/shirou/front.svg",
  35826. extra: 2491/2383,
  35827. bottom: 189/2680
  35828. }
  35829. },
  35830. back: {
  35831. height: math.unit(5 + 11/12, "feet"),
  35832. weight: math.unit(200, "lb"),
  35833. name: "Back",
  35834. image: {
  35835. source: "./media/characters/shirou/back.svg",
  35836. extra: 2554/2450,
  35837. bottom: 76/2630
  35838. }
  35839. },
  35840. },
  35841. [
  35842. {
  35843. name: "Normal",
  35844. height: math.unit(5 + 11/12, "feet"),
  35845. default: true
  35846. },
  35847. ]
  35848. ))
  35849. characterMakers.push(() => makeCharacter(
  35850. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  35851. {
  35852. front: {
  35853. height: math.unit(6 + 3/12, "feet"),
  35854. weight: math.unit(177, "lb"),
  35855. name: "Front",
  35856. image: {
  35857. source: "./media/characters/noryu/front.svg",
  35858. extra: 973/885,
  35859. bottom: 10/983
  35860. }
  35861. },
  35862. },
  35863. [
  35864. {
  35865. name: "Normal",
  35866. height: math.unit(6 + 3/12, "feet"),
  35867. default: true
  35868. },
  35869. ]
  35870. ))
  35871. characterMakers.push(() => makeCharacter(
  35872. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  35873. {
  35874. front: {
  35875. height: math.unit(5 + 6/12, "feet"),
  35876. weight: math.unit(170, "lb"),
  35877. name: "Front",
  35878. image: {
  35879. source: "./media/characters/mevolas-rubenido/front.svg",
  35880. extra: 2109/1901,
  35881. bottom: 96/2205
  35882. }
  35883. },
  35884. },
  35885. [
  35886. {
  35887. name: "Normal",
  35888. height: math.unit(5 + 6/12, "feet"),
  35889. default: true
  35890. },
  35891. ]
  35892. ))
  35893. characterMakers.push(() => makeCharacter(
  35894. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  35895. {
  35896. front: {
  35897. height: math.unit(100, "feet"),
  35898. name: "Front",
  35899. image: {
  35900. source: "./media/characters/dee/front.svg",
  35901. extra: 2153/2036,
  35902. bottom: 59/2212
  35903. }
  35904. },
  35905. back: {
  35906. height: math.unit(100, "feet"),
  35907. name: "Back",
  35908. image: {
  35909. source: "./media/characters/dee/back.svg",
  35910. extra: 2183/2058,
  35911. bottom: 75/2258
  35912. }
  35913. },
  35914. foot: {
  35915. height: math.unit(19.43, "feet"),
  35916. name: "Foot",
  35917. image: {
  35918. source: "./media/characters/dee/foot.svg"
  35919. }
  35920. },
  35921. hoof: {
  35922. height: math.unit(20.6, "feet"),
  35923. name: "Hoof",
  35924. image: {
  35925. source: "./media/characters/dee/hoof.svg"
  35926. }
  35927. },
  35928. },
  35929. [
  35930. {
  35931. name: "Macro",
  35932. height: math.unit(100, "feet"),
  35933. default: true
  35934. },
  35935. ]
  35936. ))
  35937. characterMakers.push(() => makeCharacter(
  35938. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  35939. {
  35940. front: {
  35941. height: math.unit(5 + 6/12, "feet"),
  35942. name: "Front",
  35943. image: {
  35944. source: "./media/characters/teh/front.svg",
  35945. extra: 1002/847,
  35946. bottom: 62/1064
  35947. }
  35948. },
  35949. },
  35950. [
  35951. {
  35952. name: "Normal",
  35953. height: math.unit(5 + 6/12, "feet"),
  35954. default: true
  35955. },
  35956. ]
  35957. ))
  35958. characterMakers.push(() => makeCharacter(
  35959. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  35960. {
  35961. side: {
  35962. height: math.unit(6 + 1/12, "feet"),
  35963. weight: math.unit(204, "lb"),
  35964. name: "Side",
  35965. image: {
  35966. source: "./media/characters/quicksilver-ayukoti/side.svg",
  35967. extra: 974/775,
  35968. bottom: 169/1143
  35969. }
  35970. },
  35971. sitting: {
  35972. height: math.unit(6 + 2/12, "feet"),
  35973. weight: math.unit(204, "lb"),
  35974. name: "Sitting",
  35975. image: {
  35976. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  35977. extra: 1175/964,
  35978. bottom: 378/1553
  35979. }
  35980. },
  35981. },
  35982. [
  35983. {
  35984. name: "Normal",
  35985. height: math.unit(6 + 1/12, "feet"),
  35986. default: true
  35987. },
  35988. ]
  35989. ))
  35990. characterMakers.push(() => makeCharacter(
  35991. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  35992. {
  35993. front: {
  35994. height: math.unit(6, "inches"),
  35995. name: "Front",
  35996. image: {
  35997. source: "./media/characters/tululi/front.svg",
  35998. extra: 1997/1876,
  35999. bottom: 20/2017
  36000. }
  36001. },
  36002. },
  36003. [
  36004. {
  36005. name: "Normal",
  36006. height: math.unit(6, "inches"),
  36007. default: true
  36008. },
  36009. ]
  36010. ))
  36011. characterMakers.push(() => makeCharacter(
  36012. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  36013. {
  36014. front: {
  36015. height: math.unit(4 + 1/12, "feet"),
  36016. name: "Front",
  36017. image: {
  36018. source: "./media/characters/star/front.svg",
  36019. extra: 1493/1189,
  36020. bottom: 48/1541
  36021. }
  36022. },
  36023. },
  36024. [
  36025. {
  36026. name: "Normal",
  36027. height: math.unit(4 + 1/12, "feet"),
  36028. default: true
  36029. },
  36030. ]
  36031. ))
  36032. characterMakers.push(() => makeCharacter(
  36033. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  36034. {
  36035. front: {
  36036. height: math.unit(6 + 3/12, "feet"),
  36037. name: "Front",
  36038. image: {
  36039. source: "./media/characters/comet/front.svg",
  36040. extra: 1681/1462,
  36041. bottom: 26/1707
  36042. }
  36043. },
  36044. },
  36045. [
  36046. {
  36047. name: "Normal",
  36048. height: math.unit(6 + 3/12, "feet"),
  36049. default: true
  36050. },
  36051. ]
  36052. ))
  36053. characterMakers.push(() => makeCharacter(
  36054. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  36055. {
  36056. front: {
  36057. height: math.unit(950, "feet"),
  36058. name: "Front",
  36059. image: {
  36060. source: "./media/characters/vortex/front.svg",
  36061. extra: 1497/1434,
  36062. bottom: 56/1553
  36063. }
  36064. },
  36065. maw: {
  36066. height: math.unit(285, "feet"),
  36067. name: "Maw",
  36068. image: {
  36069. source: "./media/characters/vortex/maw.svg"
  36070. }
  36071. },
  36072. },
  36073. [
  36074. {
  36075. name: "Macro",
  36076. height: math.unit(950, "feet"),
  36077. default: true
  36078. },
  36079. ]
  36080. ))
  36081. characterMakers.push(() => makeCharacter(
  36082. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  36083. {
  36084. front: {
  36085. height: math.unit(600, "feet"),
  36086. weight: math.unit(0.02, "grams"),
  36087. name: "Front",
  36088. image: {
  36089. source: "./media/characters/doodle/front.svg",
  36090. extra: 1578/1413,
  36091. bottom: 37/1615
  36092. }
  36093. },
  36094. },
  36095. [
  36096. {
  36097. name: "Macro",
  36098. height: math.unit(600, "feet"),
  36099. default: true
  36100. },
  36101. ]
  36102. ))
  36103. characterMakers.push(() => makeCharacter(
  36104. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  36105. {
  36106. front: {
  36107. height: math.unit(6 + 6/12, "feet"),
  36108. name: "Front",
  36109. image: {
  36110. source: "./media/characters/jai/front.svg",
  36111. extra: 1645/1534,
  36112. bottom: 115/1760
  36113. }
  36114. },
  36115. },
  36116. [
  36117. {
  36118. name: "Normal",
  36119. height: math.unit(6 + 6/12, "feet"),
  36120. default: true
  36121. },
  36122. ]
  36123. ))
  36124. characterMakers.push(() => makeCharacter(
  36125. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  36126. {
  36127. front: {
  36128. height: math.unit(6 + 8/12, "feet"),
  36129. name: "Front",
  36130. image: {
  36131. source: "./media/characters/pixel/front.svg",
  36132. extra: 1900/1735,
  36133. bottom: 63/1963
  36134. }
  36135. },
  36136. },
  36137. [
  36138. {
  36139. name: "Normal",
  36140. height: math.unit(6 + 8/12, "feet"),
  36141. default: true
  36142. },
  36143. ]
  36144. ))
  36145. characterMakers.push(() => makeCharacter(
  36146. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  36147. {
  36148. back: {
  36149. height: math.unit(4 + 1/12, "feet"),
  36150. weight: math.unit(75, "lb"),
  36151. name: "Back",
  36152. image: {
  36153. source: "./media/characters/rhett/back.svg",
  36154. extra: 930/878,
  36155. bottom: 25/955
  36156. }
  36157. },
  36158. front: {
  36159. height: math.unit(4 + 1/12, "feet"),
  36160. weight: math.unit(75, "lb"),
  36161. name: "Front",
  36162. image: {
  36163. source: "./media/characters/rhett/front.svg",
  36164. extra: 1682/1586,
  36165. bottom: 92/1774
  36166. }
  36167. },
  36168. },
  36169. [
  36170. {
  36171. name: "Micro",
  36172. height: math.unit(8, "inches")
  36173. },
  36174. {
  36175. name: "Tiny",
  36176. height: math.unit(2, "feet")
  36177. },
  36178. {
  36179. name: "Normal",
  36180. height: math.unit(4 + 1/12, "feet"),
  36181. default: true
  36182. },
  36183. ]
  36184. ))
  36185. characterMakers.push(() => makeCharacter(
  36186. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  36187. {
  36188. front: {
  36189. height: math.unit(3 + 3/12, "feet"),
  36190. name: "Front",
  36191. image: {
  36192. source: "./media/characters/penny/front.svg",
  36193. extra: 1406/1311,
  36194. bottom: 26/1432
  36195. }
  36196. },
  36197. },
  36198. [
  36199. {
  36200. name: "Normal",
  36201. height: math.unit(3 + 3/12, "feet"),
  36202. default: true
  36203. },
  36204. ]
  36205. ))
  36206. characterMakers.push(() => makeCharacter(
  36207. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  36208. {
  36209. front: {
  36210. height: math.unit(4 + 11/12, "feet"),
  36211. name: "Front",
  36212. image: {
  36213. source: "./media/characters/monty/front.svg",
  36214. extra: 1479/1209,
  36215. bottom: 0/1479
  36216. }
  36217. },
  36218. },
  36219. [
  36220. {
  36221. name: "Normal",
  36222. height: math.unit(4 + 11/12, "feet"),
  36223. default: true
  36224. },
  36225. ]
  36226. ))
  36227. characterMakers.push(() => makeCharacter(
  36228. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  36229. {
  36230. front: {
  36231. height: math.unit(8 + 4/12, "feet"),
  36232. name: "Front",
  36233. image: {
  36234. source: "./media/characters/sterling/front.svg",
  36235. extra: 1420/1236,
  36236. bottom: 27/1447
  36237. }
  36238. },
  36239. },
  36240. [
  36241. {
  36242. name: "Normal",
  36243. height: math.unit(8 + 4/12, "feet"),
  36244. default: true
  36245. },
  36246. ]
  36247. ))
  36248. characterMakers.push(() => makeCharacter(
  36249. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  36250. {
  36251. front: {
  36252. height: math.unit(15, "feet"),
  36253. name: "Front",
  36254. image: {
  36255. source: "./media/characters/marble/front.svg",
  36256. extra: 973/937,
  36257. bottom: 32/1005
  36258. }
  36259. },
  36260. },
  36261. [
  36262. {
  36263. name: "Normal",
  36264. height: math.unit(15, "feet"),
  36265. default: true
  36266. },
  36267. ]
  36268. ))
  36269. characterMakers.push(() => makeCharacter(
  36270. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  36271. {
  36272. front: {
  36273. height: math.unit(3, "inches"),
  36274. name: "Front",
  36275. image: {
  36276. source: "./media/characters/powder/front.svg",
  36277. extra: 1504/1334,
  36278. bottom: 518/2022
  36279. }
  36280. },
  36281. },
  36282. [
  36283. {
  36284. name: "Normal",
  36285. height: math.unit(3, "inches"),
  36286. default: true
  36287. },
  36288. ]
  36289. ))
  36290. characterMakers.push(() => makeCharacter(
  36291. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  36292. {
  36293. front: {
  36294. height: math.unit(4 + 5/12, "feet"),
  36295. name: "Front",
  36296. image: {
  36297. source: "./media/characters/joey-raccoon/front.svg",
  36298. extra: 1273/1197,
  36299. bottom: 0/1273
  36300. }
  36301. },
  36302. },
  36303. [
  36304. {
  36305. name: "Normal",
  36306. height: math.unit(4 + 5/12, "feet"),
  36307. default: true
  36308. },
  36309. ]
  36310. ))
  36311. characterMakers.push(() => makeCharacter(
  36312. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  36313. {
  36314. front: {
  36315. height: math.unit(8 + 4/12, "feet"),
  36316. name: "Front",
  36317. image: {
  36318. source: "./media/characters/vick/front.svg",
  36319. extra: 2187/2118,
  36320. bottom: 47/2234
  36321. }
  36322. },
  36323. },
  36324. [
  36325. {
  36326. name: "Normal",
  36327. height: math.unit(8 + 4/12, "feet"),
  36328. default: true
  36329. },
  36330. ]
  36331. ))
  36332. characterMakers.push(() => makeCharacter(
  36333. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  36334. {
  36335. front: {
  36336. height: math.unit(5 + 5/12, "feet"),
  36337. name: "Front",
  36338. image: {
  36339. source: "./media/characters/mitsy/front.svg",
  36340. extra: 1842/1695,
  36341. bottom: 0/1842
  36342. }
  36343. },
  36344. },
  36345. [
  36346. {
  36347. name: "Normal",
  36348. height: math.unit(5 + 5/12, "feet"),
  36349. default: true
  36350. },
  36351. ]
  36352. ))
  36353. characterMakers.push(() => makeCharacter(
  36354. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  36355. {
  36356. front: {
  36357. height: math.unit(6 + 3/12, "feet"),
  36358. name: "Front",
  36359. image: {
  36360. source: "./media/characters/silvy/front.svg",
  36361. extra: 1995/1836,
  36362. bottom: 225/2220
  36363. }
  36364. },
  36365. },
  36366. [
  36367. {
  36368. name: "Normal",
  36369. height: math.unit(6 + 3/12, "feet"),
  36370. default: true
  36371. },
  36372. ]
  36373. ))
  36374. characterMakers.push(() => makeCharacter(
  36375. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  36376. {
  36377. front: {
  36378. height: math.unit(3 + 8/12, "feet"),
  36379. name: "Front",
  36380. image: {
  36381. source: "./media/characters/rodney/front.svg",
  36382. extra: 1956/1747,
  36383. bottom: 31/1987
  36384. }
  36385. },
  36386. frontDressed: {
  36387. height: math.unit(2.9, "feet"),
  36388. name: "Front (Dressed)",
  36389. image: {
  36390. source: "./media/characters/rodney/front-dressed.svg",
  36391. extra: 1382/1241,
  36392. bottom: 385/1767
  36393. }
  36394. },
  36395. },
  36396. [
  36397. {
  36398. name: "Normal",
  36399. height: math.unit(3 + 8/12, "feet"),
  36400. default: true
  36401. },
  36402. ]
  36403. ))
  36404. characterMakers.push(() => makeCharacter(
  36405. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  36406. {
  36407. front: {
  36408. height: math.unit(5 + 9/12, "feet"),
  36409. weight: math.unit(194, "lbs"),
  36410. name: "Front",
  36411. image: {
  36412. source: "./media/characters/zakail-sudekai/front.svg",
  36413. extra: 2696/2533,
  36414. bottom: 248/2944
  36415. }
  36416. },
  36417. maw: {
  36418. height: math.unit(1.35, "feet"),
  36419. name: "Maw",
  36420. image: {
  36421. source: "./media/characters/zakail-sudekai/maw.svg"
  36422. }
  36423. },
  36424. },
  36425. [
  36426. {
  36427. name: "Normal",
  36428. height: math.unit(5 + 9/12, "feet"),
  36429. default: true
  36430. },
  36431. ]
  36432. ))
  36433. characterMakers.push(() => makeCharacter(
  36434. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  36435. {
  36436. front: {
  36437. height: math.unit(8 + 4/12, "feet"),
  36438. weight: math.unit(1200, "lb"),
  36439. name: "Front",
  36440. image: {
  36441. source: "./media/characters/eleanor/front.svg",
  36442. extra: 1226/1192,
  36443. bottom: 52/1278
  36444. }
  36445. },
  36446. back: {
  36447. height: math.unit(8 + 4/12, "feet"),
  36448. weight: math.unit(1200, "lb"),
  36449. name: "Back",
  36450. image: {
  36451. source: "./media/characters/eleanor/back.svg",
  36452. extra: 1242/1184,
  36453. bottom: 60/1302
  36454. }
  36455. },
  36456. head: {
  36457. height: math.unit(2.62, "feet"),
  36458. name: "Head",
  36459. image: {
  36460. source: "./media/characters/eleanor/head.svg"
  36461. }
  36462. },
  36463. },
  36464. [
  36465. {
  36466. name: "Normal",
  36467. height: math.unit(8 + 4/12, "feet"),
  36468. default: true
  36469. },
  36470. ]
  36471. ))
  36472. characterMakers.push(() => makeCharacter(
  36473. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  36474. {
  36475. front: {
  36476. height: math.unit(8 + 4/12, "feet"),
  36477. weight: math.unit(750, "lb"),
  36478. name: "Front",
  36479. image: {
  36480. source: "./media/characters/tanya/front.svg",
  36481. extra: 1749/1615,
  36482. bottom: 33/1782
  36483. }
  36484. },
  36485. },
  36486. [
  36487. {
  36488. name: "Normal",
  36489. height: math.unit(8 + 4/12, "feet"),
  36490. default: true
  36491. },
  36492. ]
  36493. ))
  36494. characterMakers.push(() => makeCharacter(
  36495. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  36496. {
  36497. front: {
  36498. height: math.unit(5, "feet"),
  36499. weight: math.unit(225, "lb"),
  36500. name: "Front",
  36501. image: {
  36502. source: "./media/characters/cindy/front.svg",
  36503. extra: 1320/1250,
  36504. bottom: 42/1362
  36505. }
  36506. },
  36507. frontDressed: {
  36508. height: math.unit(5, "feet"),
  36509. weight: math.unit(225, "lb"),
  36510. name: "Front (Dressed)",
  36511. image: {
  36512. source: "./media/characters/cindy/front-dressed.svg",
  36513. extra: 1320/1250,
  36514. bottom: 42/1362
  36515. }
  36516. },
  36517. back: {
  36518. height: math.unit(5, "feet"),
  36519. weight: math.unit(225, "lb"),
  36520. name: "Back",
  36521. image: {
  36522. source: "./media/characters/cindy/back.svg",
  36523. extra: 1384/1346,
  36524. bottom: 14/1398
  36525. }
  36526. },
  36527. },
  36528. [
  36529. {
  36530. name: "Normal",
  36531. height: math.unit(5, "feet"),
  36532. default: true
  36533. },
  36534. ]
  36535. ))
  36536. characterMakers.push(() => makeCharacter(
  36537. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  36538. {
  36539. front: {
  36540. height: math.unit(6 + 9/12, "feet"),
  36541. weight: math.unit(440, "lb"),
  36542. name: "Front",
  36543. image: {
  36544. source: "./media/characters/wilbur-owen/front.svg",
  36545. extra: 1575/1448,
  36546. bottom: 72/1647
  36547. }
  36548. },
  36549. back: {
  36550. height: math.unit(6 + 9/12, "feet"),
  36551. weight: math.unit(440, "lb"),
  36552. name: "Back",
  36553. image: {
  36554. source: "./media/characters/wilbur-owen/back.svg",
  36555. extra: 1578/1445,
  36556. bottom: 36/1614
  36557. }
  36558. },
  36559. },
  36560. [
  36561. {
  36562. name: "Normal",
  36563. height: math.unit(6 + 9/12, "feet"),
  36564. default: true
  36565. },
  36566. ]
  36567. ))
  36568. characterMakers.push(() => makeCharacter(
  36569. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  36570. {
  36571. front: {
  36572. height: math.unit(6 + 5/12, "feet"),
  36573. weight: math.unit(650, "lb"),
  36574. name: "Front",
  36575. image: {
  36576. source: "./media/characters/keegan/front.svg",
  36577. extra: 2387/2198,
  36578. bottom: 33/2420
  36579. }
  36580. },
  36581. side: {
  36582. height: math.unit(6 + 5/12, "feet"),
  36583. weight: math.unit(650, "lb"),
  36584. name: "Side",
  36585. image: {
  36586. source: "./media/characters/keegan/side.svg",
  36587. extra: 2390/2202,
  36588. bottom: 47/2437
  36589. }
  36590. },
  36591. back: {
  36592. height: math.unit(6 + 5/12, "feet"),
  36593. weight: math.unit(650, "lb"),
  36594. name: "Back",
  36595. image: {
  36596. source: "./media/characters/keegan/back.svg",
  36597. extra: 2418/2268,
  36598. bottom: 15/2433
  36599. }
  36600. },
  36601. frontSfw: {
  36602. height: math.unit(6 + 5/12, "feet"),
  36603. weight: math.unit(650, "lb"),
  36604. name: "Front (SFW)",
  36605. image: {
  36606. source: "./media/characters/keegan/front-sfw.svg",
  36607. extra: 2387/2198,
  36608. bottom: 33/2420
  36609. }
  36610. },
  36611. beans: {
  36612. height: math.unit(1.85, "feet"),
  36613. name: "Beans",
  36614. image: {
  36615. source: "./media/characters/keegan/beans.svg"
  36616. }
  36617. },
  36618. },
  36619. [
  36620. {
  36621. name: "Normal",
  36622. height: math.unit(6 + 5/12, "feet"),
  36623. default: true
  36624. },
  36625. ]
  36626. ))
  36627. characterMakers.push(() => makeCharacter(
  36628. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  36629. {
  36630. front: {
  36631. height: math.unit(9, "feet"),
  36632. name: "Front",
  36633. image: {
  36634. source: "./media/characters/colton/front.svg",
  36635. extra: 1589/1326,
  36636. bottom: 139/1728
  36637. }
  36638. },
  36639. },
  36640. [
  36641. {
  36642. name: "Normal",
  36643. height: math.unit(9, "feet"),
  36644. default: true
  36645. },
  36646. ]
  36647. ))
  36648. characterMakers.push(() => makeCharacter(
  36649. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  36650. {
  36651. front: {
  36652. height: math.unit(2 + 9/12, "feet"),
  36653. name: "Front",
  36654. image: {
  36655. source: "./media/characters/bora/front.svg",
  36656. extra: 1265/1250,
  36657. bottom: 24/1289
  36658. }
  36659. },
  36660. },
  36661. [
  36662. {
  36663. name: "Normal",
  36664. height: math.unit(2 + 9/12, "feet"),
  36665. default: true
  36666. },
  36667. ]
  36668. ))
  36669. characterMakers.push(() => makeCharacter(
  36670. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  36671. {
  36672. front: {
  36673. height: math.unit(8, "feet"),
  36674. name: "Front",
  36675. image: {
  36676. source: "./media/characters/myu-myu/front.svg",
  36677. extra: 1949/1857,
  36678. bottom: 90/2039
  36679. }
  36680. },
  36681. },
  36682. [
  36683. {
  36684. name: "Normal",
  36685. height: math.unit(8, "feet"),
  36686. default: true
  36687. },
  36688. {
  36689. name: "Big",
  36690. height: math.unit(15, "feet")
  36691. },
  36692. {
  36693. name: "BIG",
  36694. height: math.unit(25, "feet")
  36695. },
  36696. ]
  36697. ))
  36698. characterMakers.push(() => makeCharacter(
  36699. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  36700. {
  36701. side: {
  36702. height: math.unit(7 + 5/12, "feet"),
  36703. weight: math.unit(2800, "lb"),
  36704. name: "Side",
  36705. image: {
  36706. source: "./media/characters/haloren/side.svg",
  36707. extra: 1793/409,
  36708. bottom: 59/1852
  36709. }
  36710. },
  36711. frontPaw: {
  36712. height: math.unit(2.36, "feet"),
  36713. name: "Front paw",
  36714. image: {
  36715. source: "./media/characters/haloren/front-paw.svg"
  36716. }
  36717. },
  36718. hindPaw: {
  36719. height: math.unit(3.18, "feet"),
  36720. name: "Hind paw",
  36721. image: {
  36722. source: "./media/characters/haloren/hind-paw.svg"
  36723. }
  36724. },
  36725. maw: {
  36726. height: math.unit(5.05, "feet"),
  36727. name: "Maw",
  36728. image: {
  36729. source: "./media/characters/haloren/maw.svg"
  36730. }
  36731. },
  36732. dick: {
  36733. height: math.unit(2.90, "feet"),
  36734. name: "Dick",
  36735. image: {
  36736. source: "./media/characters/haloren/dick.svg"
  36737. }
  36738. },
  36739. },
  36740. [
  36741. {
  36742. name: "Normal",
  36743. height: math.unit(7 + 5/12, "feet"),
  36744. default: true
  36745. },
  36746. {
  36747. name: "Enhanced",
  36748. height: math.unit(14 + 3/12, "feet")
  36749. },
  36750. ]
  36751. ))
  36752. characterMakers.push(() => makeCharacter(
  36753. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  36754. {
  36755. front: {
  36756. height: math.unit(171, "cm"),
  36757. name: "Front",
  36758. image: {
  36759. source: "./media/characters/kimmy/front.svg",
  36760. extra: 1491/1435,
  36761. bottom: 53/1544
  36762. }
  36763. },
  36764. },
  36765. [
  36766. {
  36767. name: "Small",
  36768. height: math.unit(9, "cm")
  36769. },
  36770. {
  36771. name: "Normal",
  36772. height: math.unit(171, "cm"),
  36773. default: true
  36774. },
  36775. ]
  36776. ))
  36777. characterMakers.push(() => makeCharacter(
  36778. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  36779. {
  36780. front: {
  36781. height: math.unit(8, "feet"),
  36782. weight: math.unit(300, "lb"),
  36783. name: "Front",
  36784. image: {
  36785. source: "./media/characters/galeboomer/front.svg",
  36786. extra: 4651/4415,
  36787. bottom: 162/4813
  36788. }
  36789. },
  36790. back: {
  36791. height: math.unit(8, "feet"),
  36792. weight: math.unit(300, "lb"),
  36793. name: "Back",
  36794. image: {
  36795. source: "./media/characters/galeboomer/back.svg",
  36796. extra: 4544/4314,
  36797. bottom: 16/4560
  36798. }
  36799. },
  36800. frontAlt: {
  36801. height: math.unit(8, "feet"),
  36802. weight: math.unit(300, "lb"),
  36803. name: "Front (Alt)",
  36804. image: {
  36805. source: "./media/characters/galeboomer/front-alt.svg",
  36806. extra: 4458/4228,
  36807. bottom: 68/4526
  36808. }
  36809. },
  36810. maw: {
  36811. height: math.unit(1.2, "feet"),
  36812. name: "Maw",
  36813. image: {
  36814. source: "./media/characters/galeboomer/maw.svg"
  36815. }
  36816. },
  36817. },
  36818. [
  36819. {
  36820. name: "Normal",
  36821. height: math.unit(8, "feet"),
  36822. default: true
  36823. },
  36824. ]
  36825. ))
  36826. characterMakers.push(() => makeCharacter(
  36827. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  36828. {
  36829. front: {
  36830. height: math.unit(5 + 9/12, "feet"),
  36831. weight: math.unit(120, "lb"),
  36832. name: "Front",
  36833. image: {
  36834. source: "./media/characters/chyr/front.svg",
  36835. extra: 1323/1254,
  36836. bottom: 63/1386
  36837. }
  36838. },
  36839. back: {
  36840. height: math.unit(5 + 9/12, "feet"),
  36841. weight: math.unit(120, "lb"),
  36842. name: "Back",
  36843. image: {
  36844. source: "./media/characters/chyr/back.svg",
  36845. extra: 1323/1252,
  36846. bottom: 48/1371
  36847. }
  36848. },
  36849. },
  36850. [
  36851. {
  36852. name: "Normal",
  36853. height: math.unit(5 + 9/12, "feet"),
  36854. default: true
  36855. },
  36856. ]
  36857. ))
  36858. characterMakers.push(() => makeCharacter(
  36859. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  36860. {
  36861. front: {
  36862. height: math.unit(7, "feet"),
  36863. weight: math.unit(310, "lb"),
  36864. name: "Front",
  36865. image: {
  36866. source: "./media/characters/solarus/front.svg",
  36867. extra: 2415/2021,
  36868. bottom: 103/2518
  36869. }
  36870. },
  36871. back: {
  36872. height: math.unit(7, "feet"),
  36873. weight: math.unit(310, "lb"),
  36874. name: "Back",
  36875. image: {
  36876. source: "./media/characters/solarus/back.svg",
  36877. extra: 2463/2089,
  36878. bottom: 79/2542
  36879. }
  36880. },
  36881. },
  36882. [
  36883. {
  36884. name: "Normal",
  36885. height: math.unit(7, "feet"),
  36886. default: true
  36887. },
  36888. ]
  36889. ))
  36890. characterMakers.push(() => makeCharacter(
  36891. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  36892. {
  36893. front: {
  36894. height: math.unit(16, "feet"),
  36895. name: "Front",
  36896. image: {
  36897. source: "./media/characters/mutsuju-koizaemon/front.svg",
  36898. extra: 1844/1780,
  36899. bottom: 58/1902
  36900. }
  36901. },
  36902. winterCoat: {
  36903. height: math.unit(16, "feet"),
  36904. name: "Winter Coat",
  36905. image: {
  36906. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  36907. extra: 1807/1775,
  36908. bottom: 69/1876
  36909. }
  36910. },
  36911. },
  36912. [
  36913. {
  36914. name: "Normal",
  36915. height: math.unit(16, "feet"),
  36916. default: true
  36917. },
  36918. {
  36919. name: "Chicago Size",
  36920. height: math.unit(560, "feet")
  36921. },
  36922. ]
  36923. ))
  36924. characterMakers.push(() => makeCharacter(
  36925. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  36926. {
  36927. front: {
  36928. height: math.unit(11 + 6/12, "feet"),
  36929. weight: math.unit(1366, "lb"),
  36930. name: "Front",
  36931. image: {
  36932. source: "./media/characters/lexor/front.svg",
  36933. extra: 1560/1481,
  36934. bottom: 211/1771
  36935. }
  36936. },
  36937. back: {
  36938. height: math.unit(11 + 6/12, "feet"),
  36939. weight: math.unit(1366, "lb"),
  36940. name: "Back",
  36941. image: {
  36942. source: "./media/characters/lexor/back.svg",
  36943. extra: 1614/1533,
  36944. bottom: 76/1690
  36945. }
  36946. },
  36947. maw: {
  36948. height: math.unit(3, "feet"),
  36949. name: "Maw",
  36950. image: {
  36951. source: "./media/characters/lexor/maw.svg"
  36952. }
  36953. },
  36954. dick: {
  36955. height: math.unit(2.59, "feet"),
  36956. name: "Dick",
  36957. image: {
  36958. source: "./media/characters/lexor/dick.svg"
  36959. }
  36960. },
  36961. },
  36962. [
  36963. {
  36964. name: "Normal",
  36965. height: math.unit(11 + 6/12, "feet"),
  36966. default: true
  36967. },
  36968. ]
  36969. ))
  36970. characterMakers.push(() => makeCharacter(
  36971. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  36972. {
  36973. front: {
  36974. height: math.unit(5 + 8/12, "feet"),
  36975. name: "Front",
  36976. image: {
  36977. source: "./media/characters/magnum/front.svg",
  36978. extra: 942/855,
  36979. bottom: 26/968
  36980. }
  36981. },
  36982. },
  36983. [
  36984. {
  36985. name: "Normal",
  36986. height: math.unit(5 + 8/12, "feet"),
  36987. default: true
  36988. },
  36989. ]
  36990. ))
  36991. characterMakers.push(() => makeCharacter(
  36992. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  36993. {
  36994. front: {
  36995. height: math.unit(18 + 4/12, "feet"),
  36996. weight: math.unit(1500, "kg"),
  36997. name: "Front",
  36998. image: {
  36999. source: "./media/characters/solas-sharpsman/front.svg",
  37000. extra: 1698/1589,
  37001. bottom: 0/1698
  37002. }
  37003. },
  37004. },
  37005. [
  37006. {
  37007. name: "Normal",
  37008. height: math.unit(18 + 4/12, "feet"),
  37009. default: true
  37010. },
  37011. ]
  37012. ))
  37013. characterMakers.push(() => makeCharacter(
  37014. { name: "October", species: ["tiger"], tags: ["anthro"] },
  37015. {
  37016. front: {
  37017. height: math.unit(5 + 5/12, "feet"),
  37018. weight: math.unit(180, "lb"),
  37019. name: "Front",
  37020. image: {
  37021. source: "./media/characters/october/front.svg",
  37022. extra: 1800/1650,
  37023. bottom: 0/1800
  37024. }
  37025. },
  37026. frontNsfw: {
  37027. height: math.unit(5 + 5/12, "feet"),
  37028. weight: math.unit(180, "lb"),
  37029. name: "Front (NSFW)",
  37030. image: {
  37031. source: "./media/characters/october/front-nsfw.svg",
  37032. extra: 1392/1307,
  37033. bottom: 42/1434
  37034. }
  37035. },
  37036. },
  37037. [
  37038. {
  37039. name: "Normal",
  37040. height: math.unit(5 + 5/12, "feet"),
  37041. default: true
  37042. },
  37043. ]
  37044. ))
  37045. characterMakers.push(() => makeCharacter(
  37046. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  37047. {
  37048. front: {
  37049. height: math.unit(8 + 6/12, "feet"),
  37050. name: "Front",
  37051. image: {
  37052. source: "./media/characters/essynkardi/front.svg",
  37053. extra: 1914/1846,
  37054. bottom: 22/1936
  37055. }
  37056. },
  37057. },
  37058. [
  37059. {
  37060. name: "Normal",
  37061. height: math.unit(8 + 6/12, "feet"),
  37062. default: true
  37063. },
  37064. ]
  37065. ))
  37066. characterMakers.push(() => makeCharacter(
  37067. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  37068. {
  37069. front: {
  37070. height: math.unit(6 + 6/12, "feet"),
  37071. weight: math.unit(7, "lb"),
  37072. name: "Front",
  37073. image: {
  37074. source: "./media/characters/icky/front.svg",
  37075. extra: 813/782,
  37076. bottom: 66/879
  37077. }
  37078. },
  37079. back: {
  37080. height: math.unit(6 + 6/12, "feet"),
  37081. weight: math.unit(7, "lb"),
  37082. name: "Back",
  37083. image: {
  37084. source: "./media/characters/icky/back.svg",
  37085. extra: 754/735,
  37086. bottom: 56/810
  37087. }
  37088. },
  37089. },
  37090. [
  37091. {
  37092. name: "Normal",
  37093. height: math.unit(6 + 6/12, "feet"),
  37094. default: true
  37095. },
  37096. ]
  37097. ))
  37098. characterMakers.push(() => makeCharacter(
  37099. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  37100. {
  37101. front: {
  37102. height: math.unit(15, "feet"),
  37103. name: "Front",
  37104. image: {
  37105. source: "./media/characters/rojas/front.svg",
  37106. extra: 1462/1408,
  37107. bottom: 95/1557
  37108. }
  37109. },
  37110. back: {
  37111. height: math.unit(15, "feet"),
  37112. name: "Back",
  37113. image: {
  37114. source: "./media/characters/rojas/back.svg",
  37115. extra: 1023/954,
  37116. bottom: 28/1051
  37117. }
  37118. },
  37119. },
  37120. [
  37121. {
  37122. name: "Normal",
  37123. height: math.unit(15, "feet"),
  37124. default: true
  37125. },
  37126. ]
  37127. ))
  37128. characterMakers.push(() => makeCharacter(
  37129. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  37130. {
  37131. frontHuman: {
  37132. height: math.unit(5 + 7/12, "feet"),
  37133. name: "Front (Human)",
  37134. image: {
  37135. source: "./media/characters/alek-dryagan/front-human.svg",
  37136. extra: 1687/1667,
  37137. bottom: 69/1756
  37138. }
  37139. },
  37140. backHuman: {
  37141. height: math.unit(5 + 7/12, "feet"),
  37142. name: "Back (Human)",
  37143. image: {
  37144. source: "./media/characters/alek-dryagan/back-human.svg",
  37145. extra: 1670/1649,
  37146. bottom: 65/1735
  37147. }
  37148. },
  37149. frontDemi: {
  37150. height: math.unit(65, "feet"),
  37151. name: "Front (Demi)",
  37152. image: {
  37153. source: "./media/characters/alek-dryagan/front-demi.svg",
  37154. extra: 1669/1642,
  37155. bottom: 49/1718
  37156. }
  37157. },
  37158. backDemi: {
  37159. height: math.unit(65, "feet"),
  37160. name: "Back (Demi)",
  37161. image: {
  37162. source: "./media/characters/alek-dryagan/back-demi.svg",
  37163. extra: 1658/1637,
  37164. bottom: 40/1698
  37165. }
  37166. },
  37167. mawHuman: {
  37168. height: math.unit(0.3, "feet"),
  37169. name: "Maw (Human)",
  37170. image: {
  37171. source: "./media/characters/alek-dryagan/maw-human.svg"
  37172. }
  37173. },
  37174. mawDemi: {
  37175. height: math.unit(3.8, "feet"),
  37176. name: "Maw (Demi)",
  37177. image: {
  37178. source: "./media/characters/alek-dryagan/maw-demi.svg"
  37179. }
  37180. },
  37181. },
  37182. [
  37183. {
  37184. name: "Normal",
  37185. height: math.unit(5 + 7/12, "feet"),
  37186. default: true
  37187. },
  37188. ]
  37189. ))
  37190. characterMakers.push(() => makeCharacter(
  37191. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  37192. {
  37193. frontHuman: {
  37194. height: math.unit(5 + 2/12, "feet"),
  37195. name: "Front (Human)",
  37196. image: {
  37197. source: "./media/characters/gen/front-human.svg",
  37198. extra: 1627/1538,
  37199. bottom: 71/1698
  37200. }
  37201. },
  37202. backHuman: {
  37203. height: math.unit(5 + 2/12, "feet"),
  37204. name: "Back (Human)",
  37205. image: {
  37206. source: "./media/characters/gen/back-human.svg",
  37207. extra: 1638/1548,
  37208. bottom: 69/1707
  37209. }
  37210. },
  37211. frontDemi: {
  37212. height: math.unit(5 + 2/12, "feet"),
  37213. name: "Front (Demi)",
  37214. image: {
  37215. source: "./media/characters/gen/front-demi.svg",
  37216. extra: 1627/1538,
  37217. bottom: 71/1698
  37218. }
  37219. },
  37220. backDemi: {
  37221. height: math.unit(5 + 2/12, "feet"),
  37222. name: "Back (Demi)",
  37223. image: {
  37224. source: "./media/characters/gen/back-demi.svg",
  37225. extra: 1638/1548,
  37226. bottom: 69/1707
  37227. }
  37228. },
  37229. },
  37230. [
  37231. {
  37232. name: "Normal",
  37233. height: math.unit(5 + 2/12, "feet"),
  37234. default: true
  37235. },
  37236. ]
  37237. ))
  37238. characterMakers.push(() => makeCharacter(
  37239. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  37240. {
  37241. frontImp: {
  37242. height: math.unit(1 + 11/12, "feet"),
  37243. name: "Front (Imp)",
  37244. image: {
  37245. source: "./media/characters/max-kobold/front-imp.svg",
  37246. extra: 1238/1134,
  37247. bottom: 81/1319
  37248. }
  37249. },
  37250. backImp: {
  37251. height: math.unit(1 + 11/12, "feet"),
  37252. name: "Back (Imp)",
  37253. image: {
  37254. source: "./media/characters/max-kobold/back-imp.svg",
  37255. extra: 1334/1175,
  37256. bottom: 34/1368
  37257. }
  37258. },
  37259. frontDemi: {
  37260. height: math.unit(5 + 9/12, "feet"),
  37261. name: "Front (Demi)",
  37262. image: {
  37263. source: "./media/characters/max-kobold/front-demi.svg",
  37264. extra: 1715/1685,
  37265. bottom: 54/1769
  37266. }
  37267. },
  37268. backDemi: {
  37269. height: math.unit(5 + 9/12, "feet"),
  37270. name: "Back (Demi)",
  37271. image: {
  37272. source: "./media/characters/max-kobold/back-demi.svg",
  37273. extra: 1752/1729,
  37274. bottom: 41/1793
  37275. }
  37276. },
  37277. handImp: {
  37278. height: math.unit(0.45, "feet"),
  37279. name: "Hand (Imp)",
  37280. image: {
  37281. source: "./media/characters/max-kobold/hand.svg"
  37282. }
  37283. },
  37284. pawImp: {
  37285. height: math.unit(0.46, "feet"),
  37286. name: "Paw (Imp)",
  37287. image: {
  37288. source: "./media/characters/max-kobold/paw.svg"
  37289. }
  37290. },
  37291. handDemi: {
  37292. height: math.unit(0.80, "feet"),
  37293. name: "Hand (Demi)",
  37294. image: {
  37295. source: "./media/characters/max-kobold/hand.svg"
  37296. }
  37297. },
  37298. pawDemi: {
  37299. height: math.unit(1.1, "feet"),
  37300. name: "Paw (Demi)",
  37301. image: {
  37302. source: "./media/characters/max-kobold/paw.svg"
  37303. }
  37304. },
  37305. headImp: {
  37306. height: math.unit(1.33, "feet"),
  37307. name: "Head (Imp)",
  37308. image: {
  37309. source: "./media/characters/max-kobold/head-imp.svg"
  37310. }
  37311. },
  37312. mawImp: {
  37313. height: math.unit(0.75, "feet"),
  37314. name: "Maw (Imp)",
  37315. image: {
  37316. source: "./media/characters/max-kobold/maw-imp.svg"
  37317. }
  37318. },
  37319. mawDemi: {
  37320. height: math.unit(0.42, "feet"),
  37321. name: "Maw (Demi)",
  37322. image: {
  37323. source: "./media/characters/max-kobold/maw-demi.svg"
  37324. }
  37325. },
  37326. },
  37327. [
  37328. {
  37329. name: "Normal",
  37330. height: math.unit(1 + 11/12, "feet"),
  37331. default: true
  37332. },
  37333. ]
  37334. ))
  37335. characterMakers.push(() => makeCharacter(
  37336. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  37337. {
  37338. front: {
  37339. height: math.unit(7 + 5/12, "feet"),
  37340. name: "Front",
  37341. image: {
  37342. source: "./media/characters/carbon/front.svg",
  37343. extra: 1754/1689,
  37344. bottom: 65/1819
  37345. }
  37346. },
  37347. back: {
  37348. height: math.unit(7 + 5/12, "feet"),
  37349. name: "Back",
  37350. image: {
  37351. source: "./media/characters/carbon/back.svg",
  37352. extra: 1762/1695,
  37353. bottom: 24/1786
  37354. }
  37355. },
  37356. frontGigantamax: {
  37357. height: math.unit(150, "feet"),
  37358. name: "Front (Gigantamax)",
  37359. image: {
  37360. source: "./media/characters/carbon/front-gigantamax.svg",
  37361. extra: 1826/1669,
  37362. bottom: 59/1885
  37363. }
  37364. },
  37365. backGigantamax: {
  37366. height: math.unit(150, "feet"),
  37367. name: "Back (Gigantamax)",
  37368. image: {
  37369. source: "./media/characters/carbon/back-gigantamax.svg",
  37370. extra: 1796/1653,
  37371. bottom: 53/1849
  37372. }
  37373. },
  37374. maw: {
  37375. height: math.unit(0.48, "feet"),
  37376. name: "Maw",
  37377. image: {
  37378. source: "./media/characters/carbon/maw.svg"
  37379. }
  37380. },
  37381. mawGigantamax: {
  37382. height: math.unit(7.5, "feet"),
  37383. name: "Maw (Gigantamax)",
  37384. image: {
  37385. source: "./media/characters/carbon/maw-gigantamax.svg"
  37386. }
  37387. },
  37388. },
  37389. [
  37390. {
  37391. name: "Normal",
  37392. height: math.unit(7 + 5/12, "feet"),
  37393. default: true
  37394. },
  37395. ]
  37396. ))
  37397. characterMakers.push(() => makeCharacter(
  37398. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  37399. {
  37400. front: {
  37401. height: math.unit(6, "feet"),
  37402. name: "Front",
  37403. image: {
  37404. source: "./media/characters/maverick/front.svg",
  37405. extra: 1672/1661,
  37406. bottom: 85/1757
  37407. }
  37408. },
  37409. back: {
  37410. height: math.unit(6, "feet"),
  37411. name: "Back",
  37412. image: {
  37413. source: "./media/characters/maverick/back.svg",
  37414. extra: 1642/1631,
  37415. bottom: 38/1680
  37416. }
  37417. },
  37418. },
  37419. [
  37420. {
  37421. name: "Normal",
  37422. height: math.unit(6, "feet"),
  37423. default: true
  37424. },
  37425. ]
  37426. ))
  37427. characterMakers.push(() => makeCharacter(
  37428. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  37429. {
  37430. front: {
  37431. height: math.unit(15, "feet"),
  37432. weight: math.unit(615, "lb"),
  37433. name: "Front",
  37434. image: {
  37435. source: "./media/characters/grockle/front.svg",
  37436. extra: 1535/1427,
  37437. bottom: 56/1591
  37438. }
  37439. },
  37440. },
  37441. [
  37442. {
  37443. name: "Normal",
  37444. height: math.unit(15, "feet"),
  37445. default: true
  37446. },
  37447. {
  37448. name: "Large",
  37449. height: math.unit(150, "feet")
  37450. },
  37451. {
  37452. name: "Macro",
  37453. height: math.unit(1876, "feet")
  37454. },
  37455. {
  37456. name: "Mega Macro",
  37457. height: math.unit(121940, "feet")
  37458. },
  37459. {
  37460. name: "Giga Macro",
  37461. height: math.unit(750, "km")
  37462. },
  37463. {
  37464. name: "Tera Macro",
  37465. height: math.unit(750000, "km")
  37466. },
  37467. {
  37468. name: "Galactic",
  37469. height: math.unit(1.4e5, "km")
  37470. },
  37471. {
  37472. name: "Godlike",
  37473. height: math.unit(9.8e280, "galaxies")
  37474. },
  37475. ]
  37476. ))
  37477. characterMakers.push(() => makeCharacter(
  37478. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  37479. {
  37480. front: {
  37481. height: math.unit(11, "meters"),
  37482. weight: math.unit(20, "tonnes"),
  37483. name: "Front",
  37484. image: {
  37485. source: "./media/characters/alistair/front.svg",
  37486. extra: 1265/1009,
  37487. bottom: 93/1358
  37488. }
  37489. },
  37490. },
  37491. [
  37492. {
  37493. name: "Normal",
  37494. height: math.unit(11, "meters"),
  37495. default: true
  37496. },
  37497. ]
  37498. ))
  37499. characterMakers.push(() => makeCharacter(
  37500. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  37501. {
  37502. front: {
  37503. height: math.unit(5 + 8/12, "feet"),
  37504. name: "Front",
  37505. image: {
  37506. source: "./media/characters/haruka/front.svg",
  37507. extra: 2012/1952,
  37508. bottom: 0/2012
  37509. }
  37510. },
  37511. },
  37512. [
  37513. {
  37514. name: "Normal",
  37515. height: math.unit(5 + 8/12, "feet"),
  37516. default: true
  37517. },
  37518. ]
  37519. ))
  37520. characterMakers.push(() => makeCharacter(
  37521. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  37522. {
  37523. back: {
  37524. height: math.unit(9, "feet"),
  37525. name: "Back",
  37526. image: {
  37527. source: "./media/characters/vivian-sylveon/back.svg",
  37528. extra: 1853/1714,
  37529. bottom: 0/1853
  37530. }
  37531. },
  37532. },
  37533. [
  37534. {
  37535. name: "Normal",
  37536. height: math.unit(9, "feet"),
  37537. default: true
  37538. },
  37539. {
  37540. name: "Macro",
  37541. height: math.unit(500, "feet")
  37542. },
  37543. {
  37544. name: "Megamacro",
  37545. height: math.unit(600, "miles")
  37546. },
  37547. {
  37548. name: "Gigamacro",
  37549. height: math.unit(30000, "miles")
  37550. },
  37551. ]
  37552. ))
  37553. characterMakers.push(() => makeCharacter(
  37554. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  37555. {
  37556. anthro: {
  37557. height: math.unit(5 + 10/12, "feet"),
  37558. weight: math.unit(100, "lb"),
  37559. name: "Anthro",
  37560. image: {
  37561. source: "./media/characters/daiki/anthro.svg",
  37562. extra: 1115/1027,
  37563. bottom: 69/1184
  37564. }
  37565. },
  37566. feral: {
  37567. height: math.unit(200, "feet"),
  37568. name: "Feral",
  37569. image: {
  37570. source: "./media/characters/daiki/feral.svg",
  37571. extra: 1256/313,
  37572. bottom: 39/1295
  37573. }
  37574. },
  37575. feralHead: {
  37576. height: math.unit(171, "feet"),
  37577. name: "Feral Head",
  37578. image: {
  37579. source: "./media/characters/daiki/feral-head.svg"
  37580. }
  37581. },
  37582. manaDragon: {
  37583. height: math.unit(170, "meters"),
  37584. name: "Mana-dragon",
  37585. image: {
  37586. source: "./media/characters/daiki/mana-dragon.svg",
  37587. extra: 763/420,
  37588. bottom: 97/860
  37589. }
  37590. },
  37591. },
  37592. [
  37593. {
  37594. name: "Normal",
  37595. height: math.unit(5 + 10/12, "feet"),
  37596. default: true
  37597. },
  37598. ]
  37599. ))
  37600. characterMakers.push(() => makeCharacter(
  37601. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  37602. {
  37603. fullyEquippedFront: {
  37604. height: math.unit(3 + 1/12, "feet"),
  37605. weight: math.unit(24, "lb"),
  37606. name: "Fully Equipped (Front)",
  37607. image: {
  37608. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  37609. extra: 687/605,
  37610. bottom: 18/705
  37611. }
  37612. },
  37613. fullyEquippedBack: {
  37614. height: math.unit(3 + 1/12, "feet"),
  37615. weight: math.unit(24, "lb"),
  37616. name: "Fully Equipped (Back)",
  37617. image: {
  37618. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  37619. extra: 689/590,
  37620. bottom: 18/707
  37621. }
  37622. },
  37623. dailyWear: {
  37624. height: math.unit(3 + 1/12, "feet"),
  37625. weight: math.unit(24, "lb"),
  37626. name: "Daily Wear",
  37627. image: {
  37628. source: "./media/characters/tea-spot/daily-wear.svg",
  37629. extra: 701/620,
  37630. bottom: 21/722
  37631. }
  37632. },
  37633. maidWork: {
  37634. height: math.unit(3 + 1/12, "feet"),
  37635. weight: math.unit(24, "lb"),
  37636. name: "Maid Work",
  37637. image: {
  37638. source: "./media/characters/tea-spot/maid-work.svg",
  37639. extra: 693/609,
  37640. bottom: 15/708
  37641. }
  37642. },
  37643. },
  37644. [
  37645. {
  37646. name: "Normal",
  37647. height: math.unit(3 + 1/12, "feet"),
  37648. default: true
  37649. },
  37650. ]
  37651. ))
  37652. characterMakers.push(() => makeCharacter(
  37653. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  37654. {
  37655. front: {
  37656. height: math.unit(175, "cm"),
  37657. weight: math.unit(75, "kg"),
  37658. name: "Front",
  37659. image: {
  37660. source: "./media/characters/chee/front.svg",
  37661. extra: 1796/1740,
  37662. bottom: 40/1836
  37663. }
  37664. },
  37665. },
  37666. [
  37667. {
  37668. name: "Micro-Micro",
  37669. height: math.unit(1, "nm")
  37670. },
  37671. {
  37672. name: "Micro-erst",
  37673. height: math.unit(1, "micrometer")
  37674. },
  37675. {
  37676. name: "Micro-er",
  37677. height: math.unit(1, "cm")
  37678. },
  37679. {
  37680. name: "Normal",
  37681. height: math.unit(175, "cm"),
  37682. default: true
  37683. },
  37684. {
  37685. name: "Macro",
  37686. height: math.unit(100, "m")
  37687. },
  37688. {
  37689. name: "Macro-er",
  37690. height: math.unit(1, "km")
  37691. },
  37692. {
  37693. name: "Macro-erst",
  37694. height: math.unit(10, "km")
  37695. },
  37696. {
  37697. name: "Macro-Macro",
  37698. height: math.unit(100, "km")
  37699. },
  37700. ]
  37701. ))
  37702. characterMakers.push(() => makeCharacter(
  37703. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  37704. {
  37705. front: {
  37706. height: math.unit(11 + 9/12, "feet"),
  37707. weight: math.unit(935, "lb"),
  37708. name: "Front",
  37709. image: {
  37710. source: "./media/characters/kingsley/front.svg",
  37711. extra: 1803/1674,
  37712. bottom: 127/1930
  37713. }
  37714. },
  37715. frontNude: {
  37716. height: math.unit(11 + 9/12, "feet"),
  37717. weight: math.unit(935, "lb"),
  37718. name: "Front (Nude)",
  37719. image: {
  37720. source: "./media/characters/kingsley/front-nude.svg",
  37721. extra: 1803/1674,
  37722. bottom: 127/1930
  37723. }
  37724. },
  37725. },
  37726. [
  37727. {
  37728. name: "Normal",
  37729. height: math.unit(11 + 9/12, "feet"),
  37730. default: true
  37731. },
  37732. ]
  37733. ))
  37734. characterMakers.push(() => makeCharacter(
  37735. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  37736. {
  37737. side: {
  37738. height: math.unit(9, "feet"),
  37739. name: "Side",
  37740. image: {
  37741. source: "./media/characters/rymel/side.svg",
  37742. extra: 792/469,
  37743. bottom: 121/913
  37744. }
  37745. },
  37746. maw: {
  37747. height: math.unit(2.4, "meters"),
  37748. name: "Maw",
  37749. image: {
  37750. source: "./media/characters/rymel/maw.svg"
  37751. }
  37752. },
  37753. },
  37754. [
  37755. {
  37756. name: "House Drake",
  37757. height: math.unit(2, "feet")
  37758. },
  37759. {
  37760. name: "Reduced",
  37761. height: math.unit(4.5, "feet")
  37762. },
  37763. {
  37764. name: "Normal",
  37765. height: math.unit(9, "feet"),
  37766. default: true
  37767. },
  37768. ]
  37769. ))
  37770. characterMakers.push(() => makeCharacter(
  37771. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  37772. {
  37773. front: {
  37774. height: math.unit(1.74, "meters"),
  37775. weight: math.unit(55, "kg"),
  37776. name: "Front",
  37777. image: {
  37778. source: "./media/characters/rubus/front.svg",
  37779. extra: 1894/1742,
  37780. bottom: 44/1938
  37781. }
  37782. },
  37783. },
  37784. [
  37785. {
  37786. name: "Normal",
  37787. height: math.unit(1.74, "meters"),
  37788. default: true
  37789. },
  37790. ]
  37791. ))
  37792. characterMakers.push(() => makeCharacter(
  37793. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  37794. {
  37795. front: {
  37796. height: math.unit(5 + 2/12, "feet"),
  37797. weight: math.unit(112, "lb"),
  37798. name: "Front",
  37799. image: {
  37800. source: "./media/characters/cassie-kingston/front.svg",
  37801. extra: 1438/1390,
  37802. bottom: 47/1485
  37803. }
  37804. },
  37805. },
  37806. [
  37807. {
  37808. name: "Normal",
  37809. height: math.unit(5 + 2/12, "feet"),
  37810. default: true
  37811. },
  37812. {
  37813. name: "Macro",
  37814. height: math.unit(128, "feet")
  37815. },
  37816. {
  37817. name: "Megamacro",
  37818. height: math.unit(2.56, "miles")
  37819. },
  37820. ]
  37821. ))
  37822. characterMakers.push(() => makeCharacter(
  37823. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  37824. {
  37825. front: {
  37826. height: math.unit(7, "feet"),
  37827. name: "Front",
  37828. image: {
  37829. source: "./media/characters/fox/front.svg",
  37830. extra: 1798/1703,
  37831. bottom: 55/1853
  37832. }
  37833. },
  37834. back: {
  37835. height: math.unit(7, "feet"),
  37836. name: "Back",
  37837. image: {
  37838. source: "./media/characters/fox/back.svg",
  37839. extra: 1748/1649,
  37840. bottom: 32/1780
  37841. }
  37842. },
  37843. head: {
  37844. height: math.unit(1.95, "feet"),
  37845. name: "Head",
  37846. image: {
  37847. source: "./media/characters/fox/head.svg"
  37848. }
  37849. },
  37850. dick: {
  37851. height: math.unit(1.33, "feet"),
  37852. name: "Dick",
  37853. image: {
  37854. source: "./media/characters/fox/dick.svg"
  37855. }
  37856. },
  37857. foot: {
  37858. height: math.unit(1, "feet"),
  37859. name: "Foot",
  37860. image: {
  37861. source: "./media/characters/fox/foot.svg"
  37862. }
  37863. },
  37864. paw: {
  37865. height: math.unit(0.92, "feet"),
  37866. name: "Paw",
  37867. image: {
  37868. source: "./media/characters/fox/paw.svg"
  37869. }
  37870. },
  37871. },
  37872. [
  37873. {
  37874. name: "Small",
  37875. height: math.unit(3, "inches")
  37876. },
  37877. {
  37878. name: "\"Realistic\"",
  37879. height: math.unit(7, "feet")
  37880. },
  37881. {
  37882. name: "Normal",
  37883. height: math.unit(150, "feet"),
  37884. default: true
  37885. },
  37886. {
  37887. name: "BIG",
  37888. height: math.unit(1200, "feet")
  37889. },
  37890. {
  37891. name: "👀",
  37892. height: math.unit(5, "miles")
  37893. },
  37894. {
  37895. name: "👀👀👀",
  37896. height: math.unit(64, "miles")
  37897. },
  37898. ]
  37899. ))
  37900. characterMakers.push(() => makeCharacter(
  37901. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  37902. {
  37903. front: {
  37904. height: math.unit(625, "feet"),
  37905. name: "Front",
  37906. image: {
  37907. source: "./media/characters/asonja-rossa/front.svg",
  37908. extra: 1833/1686,
  37909. bottom: 24/1857
  37910. }
  37911. },
  37912. back: {
  37913. height: math.unit(625, "feet"),
  37914. name: "Back",
  37915. image: {
  37916. source: "./media/characters/asonja-rossa/back.svg",
  37917. extra: 1852/1753,
  37918. bottom: 26/1878
  37919. }
  37920. },
  37921. },
  37922. [
  37923. {
  37924. name: "Macro",
  37925. height: math.unit(625, "feet"),
  37926. default: true
  37927. },
  37928. ]
  37929. ))
  37930. characterMakers.push(() => makeCharacter(
  37931. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  37932. {
  37933. side: {
  37934. height: math.unit(8, "feet"),
  37935. name: "Side",
  37936. image: {
  37937. source: "./media/characters/rezukii/side.svg",
  37938. extra: 979/542,
  37939. bottom: 87/1066
  37940. }
  37941. },
  37942. sitting: {
  37943. height: math.unit(14.6, "feet"),
  37944. name: "Sitting",
  37945. image: {
  37946. source: "./media/characters/rezukii/sitting.svg",
  37947. extra: 1023/813,
  37948. bottom: 45/1068
  37949. }
  37950. },
  37951. },
  37952. [
  37953. {
  37954. name: "Tiny",
  37955. height: math.unit(2, "feet")
  37956. },
  37957. {
  37958. name: "Smol",
  37959. height: math.unit(4, "feet")
  37960. },
  37961. {
  37962. name: "Normal",
  37963. height: math.unit(8, "feet"),
  37964. default: true
  37965. },
  37966. {
  37967. name: "Big",
  37968. height: math.unit(12, "feet")
  37969. },
  37970. {
  37971. name: "Macro",
  37972. height: math.unit(30, "feet")
  37973. },
  37974. ]
  37975. ))
  37976. characterMakers.push(() => makeCharacter(
  37977. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  37978. {
  37979. front: {
  37980. height: math.unit(14, "feet"),
  37981. weight: math.unit(9.5, "tonnes"),
  37982. name: "Front",
  37983. image: {
  37984. source: "./media/characters/dawnheart/front.svg",
  37985. extra: 2792/2675,
  37986. bottom: 64/2856
  37987. }
  37988. },
  37989. },
  37990. [
  37991. {
  37992. name: "Normal",
  37993. height: math.unit(14, "feet"),
  37994. default: true
  37995. },
  37996. ]
  37997. ))
  37998. characterMakers.push(() => makeCharacter(
  37999. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  38000. {
  38001. front: {
  38002. height: math.unit(1.7, "m"),
  38003. name: "Front",
  38004. image: {
  38005. source: "./media/characters/gladi/front.svg",
  38006. extra: 1460/1362,
  38007. bottom: 19/1479
  38008. }
  38009. },
  38010. back: {
  38011. height: math.unit(1.7, "m"),
  38012. name: "Back",
  38013. image: {
  38014. source: "./media/characters/gladi/back.svg",
  38015. extra: 1459/1357,
  38016. bottom: 12/1471
  38017. }
  38018. },
  38019. feral: {
  38020. height: math.unit(2.05, "m"),
  38021. name: "Feral",
  38022. image: {
  38023. source: "./media/characters/gladi/feral.svg",
  38024. extra: 821/557,
  38025. bottom: 91/912
  38026. }
  38027. },
  38028. },
  38029. [
  38030. {
  38031. name: "Shortest",
  38032. height: math.unit(70, "cm")
  38033. },
  38034. {
  38035. name: "Normal",
  38036. height: math.unit(1.7, "m")
  38037. },
  38038. {
  38039. name: "Macro",
  38040. height: math.unit(10, "m"),
  38041. default: true
  38042. },
  38043. {
  38044. name: "Tallest",
  38045. height: math.unit(200, "m")
  38046. },
  38047. ]
  38048. ))
  38049. characterMakers.push(() => makeCharacter(
  38050. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  38051. {
  38052. front: {
  38053. height: math.unit(5 + 7/12, "feet"),
  38054. weight: math.unit(2, "tons"),
  38055. name: "Front",
  38056. image: {
  38057. source: "./media/characters/erdno/front.svg",
  38058. extra: 1234/1129,
  38059. bottom: 35/1269
  38060. }
  38061. },
  38062. angled: {
  38063. height: math.unit(5 + 7/12, "feet"),
  38064. weight: math.unit(2, "tons"),
  38065. name: "Angled",
  38066. image: {
  38067. source: "./media/characters/erdno/angled.svg",
  38068. extra: 1185/1139,
  38069. bottom: 36/1221
  38070. }
  38071. },
  38072. side: {
  38073. height: math.unit(5 + 7/12, "feet"),
  38074. weight: math.unit(2, "tons"),
  38075. name: "Side",
  38076. image: {
  38077. source: "./media/characters/erdno/side.svg",
  38078. extra: 1191/1144,
  38079. bottom: 40/1231
  38080. }
  38081. },
  38082. back: {
  38083. height: math.unit(5 + 7/12, "feet"),
  38084. weight: math.unit(2, "tons"),
  38085. name: "Back",
  38086. image: {
  38087. source: "./media/characters/erdno/back.svg",
  38088. extra: 1202/1146,
  38089. bottom: 17/1219
  38090. }
  38091. },
  38092. frontNsfw: {
  38093. height: math.unit(5 + 7/12, "feet"),
  38094. weight: math.unit(2, "tons"),
  38095. name: "Front (NSFW)",
  38096. image: {
  38097. source: "./media/characters/erdno/front-nsfw.svg",
  38098. extra: 1234/1129,
  38099. bottom: 35/1269
  38100. }
  38101. },
  38102. angledNsfw: {
  38103. height: math.unit(5 + 7/12, "feet"),
  38104. weight: math.unit(2, "tons"),
  38105. name: "Angled (NSFW)",
  38106. image: {
  38107. source: "./media/characters/erdno/angled-nsfw.svg",
  38108. extra: 1185/1139,
  38109. bottom: 36/1221
  38110. }
  38111. },
  38112. sideNsfw: {
  38113. height: math.unit(5 + 7/12, "feet"),
  38114. weight: math.unit(2, "tons"),
  38115. name: "Side (NSFW)",
  38116. image: {
  38117. source: "./media/characters/erdno/side-nsfw.svg",
  38118. extra: 1191/1144,
  38119. bottom: 40/1231
  38120. }
  38121. },
  38122. backNsfw: {
  38123. height: math.unit(5 + 7/12, "feet"),
  38124. weight: math.unit(2, "tons"),
  38125. name: "Back (NSFW)",
  38126. image: {
  38127. source: "./media/characters/erdno/back-nsfw.svg",
  38128. extra: 1202/1146,
  38129. bottom: 17/1219
  38130. }
  38131. },
  38132. frontHyper: {
  38133. height: math.unit(5 + 7/12, "feet"),
  38134. weight: math.unit(2, "tons"),
  38135. name: "Front (Hyper)",
  38136. image: {
  38137. source: "./media/characters/erdno/front-hyper.svg",
  38138. extra: 1298/1136,
  38139. bottom: 35/1333
  38140. }
  38141. },
  38142. },
  38143. [
  38144. {
  38145. name: "Normal",
  38146. height: math.unit(5 + 7/12, "feet"),
  38147. default: true
  38148. },
  38149. {
  38150. name: "Big",
  38151. height: math.unit(5.7, "meters")
  38152. },
  38153. {
  38154. name: "Macro",
  38155. height: math.unit(5.7, "kilometers")
  38156. },
  38157. {
  38158. name: "Megamacro",
  38159. height: math.unit(5.7, "earths")
  38160. },
  38161. ]
  38162. ))
  38163. characterMakers.push(() => makeCharacter(
  38164. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  38165. {
  38166. front: {
  38167. height: math.unit(5 + 10/12, "feet"),
  38168. weight: math.unit(150, "lb"),
  38169. name: "Front",
  38170. image: {
  38171. source: "./media/characters/jamie/front.svg",
  38172. extra: 1908/1768,
  38173. bottom: 19/1927
  38174. }
  38175. },
  38176. },
  38177. [
  38178. {
  38179. name: "Minimum",
  38180. height: math.unit(2, "cm")
  38181. },
  38182. {
  38183. name: "Micro",
  38184. height: math.unit(3, "inches")
  38185. },
  38186. {
  38187. name: "Normal",
  38188. height: math.unit(5 + 10/12, "feet"),
  38189. default: true
  38190. },
  38191. {
  38192. name: "Macro",
  38193. height: math.unit(150, "feet")
  38194. },
  38195. {
  38196. name: "Megamacro",
  38197. height: math.unit(10000, "m")
  38198. },
  38199. ]
  38200. ))
  38201. characterMakers.push(() => makeCharacter(
  38202. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  38203. {
  38204. front: {
  38205. height: math.unit(2, "meters"),
  38206. weight: math.unit(100, "kg"),
  38207. name: "Front",
  38208. image: {
  38209. source: "./media/characters/shiron/front.svg",
  38210. extra: 2103/1985,
  38211. bottom: 98/2201
  38212. }
  38213. },
  38214. back: {
  38215. height: math.unit(2, "meters"),
  38216. weight: math.unit(100, "kg"),
  38217. name: "Back",
  38218. image: {
  38219. source: "./media/characters/shiron/back.svg",
  38220. extra: 2110/2015,
  38221. bottom: 89/2199
  38222. }
  38223. },
  38224. hand: {
  38225. height: math.unit(0.96, "feet"),
  38226. name: "Hand",
  38227. image: {
  38228. source: "./media/characters/shiron/hand.svg"
  38229. }
  38230. },
  38231. foot: {
  38232. height: math.unit(1.464, "feet"),
  38233. name: "Foot",
  38234. image: {
  38235. source: "./media/characters/shiron/foot.svg"
  38236. }
  38237. },
  38238. },
  38239. [
  38240. {
  38241. name: "Normal",
  38242. height: math.unit(2, "meters")
  38243. },
  38244. {
  38245. name: "Macro",
  38246. height: math.unit(500, "meters"),
  38247. default: true
  38248. },
  38249. {
  38250. name: "Megamacro",
  38251. height: math.unit(20, "km")
  38252. },
  38253. ]
  38254. ))
  38255. characterMakers.push(() => makeCharacter(
  38256. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  38257. {
  38258. front: {
  38259. height: math.unit(6, "feet"),
  38260. name: "Front",
  38261. image: {
  38262. source: "./media/characters/sam/front.svg",
  38263. extra: 849/826,
  38264. bottom: 19/868
  38265. }
  38266. },
  38267. },
  38268. [
  38269. {
  38270. name: "Normal",
  38271. height: math.unit(6, "feet"),
  38272. default: true
  38273. },
  38274. ]
  38275. ))
  38276. characterMakers.push(() => makeCharacter(
  38277. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  38278. {
  38279. front: {
  38280. height: math.unit(8 + 4/12, "feet"),
  38281. weight: math.unit(122, "kg"),
  38282. name: "Front",
  38283. image: {
  38284. source: "./media/characters/namori-kurogawa/front.svg",
  38285. extra: 1894/1576,
  38286. bottom: 34/1928
  38287. }
  38288. },
  38289. },
  38290. [
  38291. {
  38292. name: "Normal",
  38293. height: math.unit(8 + 4/12, "feet"),
  38294. default: true
  38295. },
  38296. ]
  38297. ))
  38298. characterMakers.push(() => makeCharacter(
  38299. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  38300. {
  38301. front: {
  38302. height: math.unit(9, "feet"),
  38303. weight: math.unit(621, "lb"),
  38304. name: "Front",
  38305. image: {
  38306. source: "./media/characters/unmru/front.svg",
  38307. extra: 1853/1747,
  38308. bottom: 73/1926
  38309. }
  38310. },
  38311. side: {
  38312. height: math.unit(9, "feet"),
  38313. weight: math.unit(621, "lb"),
  38314. name: "Side",
  38315. image: {
  38316. source: "./media/characters/unmru/side.svg",
  38317. extra: 1781/1671,
  38318. bottom: 127/1908
  38319. }
  38320. },
  38321. back: {
  38322. height: math.unit(9, "feet"),
  38323. weight: math.unit(621, "lb"),
  38324. name: "Back",
  38325. image: {
  38326. source: "./media/characters/unmru/back.svg",
  38327. extra: 1894/1765,
  38328. bottom: 75/1969
  38329. }
  38330. },
  38331. dick: {
  38332. height: math.unit(3, "feet"),
  38333. weight: math.unit(35, "lb"),
  38334. name: "Dick",
  38335. image: {
  38336. source: "./media/characters/unmru/dick.svg"
  38337. }
  38338. },
  38339. },
  38340. [
  38341. {
  38342. name: "Normal",
  38343. height: math.unit(9, "feet")
  38344. },
  38345. {
  38346. name: "Natural",
  38347. height: math.unit(27, "feet"),
  38348. default: true
  38349. },
  38350. {
  38351. name: "Giant",
  38352. height: math.unit(90, "feet")
  38353. },
  38354. {
  38355. name: "Kaiju",
  38356. height: math.unit(270, "feet")
  38357. },
  38358. {
  38359. name: "Macro",
  38360. height: math.unit(900, "feet")
  38361. },
  38362. {
  38363. name: "Macro+",
  38364. height: math.unit(2700, "feet")
  38365. },
  38366. {
  38367. name: "Megamacro",
  38368. height: math.unit(9000, "feet")
  38369. },
  38370. {
  38371. name: "City-Crushing",
  38372. height: math.unit(27000, "feet")
  38373. },
  38374. {
  38375. name: "Mountain-Mashing",
  38376. height: math.unit(90000, "feet")
  38377. },
  38378. {
  38379. name: "Earth-Eclipsing",
  38380. height: math.unit(2.7e8, "feet")
  38381. },
  38382. {
  38383. name: "Sol-Swallowing",
  38384. height: math.unit(9e10, "feet")
  38385. },
  38386. {
  38387. name: "Majoris-Munching",
  38388. height: math.unit(2.7e13, "feet")
  38389. },
  38390. ]
  38391. ))
  38392. characterMakers.push(() => makeCharacter(
  38393. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  38394. {
  38395. front: {
  38396. height: math.unit(1, "inch"),
  38397. name: "Front",
  38398. image: {
  38399. source: "./media/characters/squeaks-mouse/front.svg",
  38400. extra: 352/308,
  38401. bottom: 25/377
  38402. }
  38403. },
  38404. },
  38405. [
  38406. {
  38407. name: "Micro",
  38408. height: math.unit(1, "inch"),
  38409. default: true
  38410. },
  38411. ]
  38412. ))
  38413. characterMakers.push(() => makeCharacter(
  38414. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  38415. {
  38416. side: {
  38417. height: math.unit(35, "feet"),
  38418. name: "Side",
  38419. image: {
  38420. source: "./media/characters/sayko/side.svg",
  38421. extra: 1697/1021,
  38422. bottom: 82/1779
  38423. }
  38424. },
  38425. head: {
  38426. height: math.unit(16, "feet"),
  38427. name: "Head",
  38428. image: {
  38429. source: "./media/characters/sayko/head.svg"
  38430. }
  38431. },
  38432. forepaw: {
  38433. height: math.unit(7.85, "feet"),
  38434. name: "Forepaw",
  38435. image: {
  38436. source: "./media/characters/sayko/forepaw.svg"
  38437. }
  38438. },
  38439. hindpaw: {
  38440. height: math.unit(8.8, "feet"),
  38441. name: "Hindpaw",
  38442. image: {
  38443. source: "./media/characters/sayko/hindpaw.svg"
  38444. }
  38445. },
  38446. },
  38447. [
  38448. {
  38449. name: "Normal",
  38450. height: math.unit(35, "feet"),
  38451. default: true
  38452. },
  38453. {
  38454. name: "Colossus",
  38455. height: math.unit(100, "meters")
  38456. },
  38457. {
  38458. name: "\"Small\" Deity",
  38459. height: math.unit(1, "km")
  38460. },
  38461. {
  38462. name: "\"Large\" Deity",
  38463. height: math.unit(15, "km")
  38464. },
  38465. ]
  38466. ))
  38467. characterMakers.push(() => makeCharacter(
  38468. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  38469. {
  38470. front: {
  38471. height: math.unit(6, "feet"),
  38472. weight: math.unit(250, "lb"),
  38473. name: "Front",
  38474. image: {
  38475. source: "./media/characters/mukiro/front.svg",
  38476. extra: 1368/1310,
  38477. bottom: 34/1402
  38478. }
  38479. },
  38480. },
  38481. [
  38482. {
  38483. name: "Normal",
  38484. height: math.unit(6, "feet"),
  38485. default: true
  38486. },
  38487. ]
  38488. ))
  38489. characterMakers.push(() => makeCharacter(
  38490. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  38491. {
  38492. front: {
  38493. height: math.unit(12 + 4/12, "feet"),
  38494. name: "Front",
  38495. image: {
  38496. source: "./media/characters/zeph-the-tiger-god/front.svg",
  38497. extra: 1346/1311,
  38498. bottom: 65/1411
  38499. }
  38500. },
  38501. },
  38502. [
  38503. {
  38504. name: "Base",
  38505. height: math.unit(12 + 4/12, "feet"),
  38506. default: true
  38507. },
  38508. {
  38509. name: "Macro",
  38510. height: math.unit(150, "feet")
  38511. },
  38512. {
  38513. name: "Mega",
  38514. height: math.unit(2, "miles")
  38515. },
  38516. {
  38517. name: "Demi God",
  38518. height: math.unit(4, "AU")
  38519. },
  38520. {
  38521. name: "God Size",
  38522. height: math.unit(1, "universe")
  38523. },
  38524. ]
  38525. ))
  38526. characterMakers.push(() => makeCharacter(
  38527. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  38528. {
  38529. front: {
  38530. height: math.unit(3 + 3/12, "feet"),
  38531. weight: math.unit(88, "lb"),
  38532. name: "Front",
  38533. image: {
  38534. source: "./media/characters/trey/front.svg",
  38535. extra: 1815/1509,
  38536. bottom: 60/1875
  38537. }
  38538. },
  38539. },
  38540. [
  38541. {
  38542. name: "Normal",
  38543. height: math.unit(3 + 3/12, "feet"),
  38544. default: true
  38545. },
  38546. ]
  38547. ))
  38548. characterMakers.push(() => makeCharacter(
  38549. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  38550. {
  38551. front: {
  38552. height: math.unit(4, "meters"),
  38553. name: "Front",
  38554. image: {
  38555. source: "./media/characters/adelonda/front.svg",
  38556. extra: 1077/982,
  38557. bottom: 39/1116
  38558. }
  38559. },
  38560. back: {
  38561. height: math.unit(4, "meters"),
  38562. name: "Back",
  38563. image: {
  38564. source: "./media/characters/adelonda/back.svg",
  38565. extra: 1105/1003,
  38566. bottom: 25/1130
  38567. }
  38568. },
  38569. feral: {
  38570. height: math.unit(40/1.5, "meters"),
  38571. name: "Feral",
  38572. image: {
  38573. source: "./media/characters/adelonda/feral.svg",
  38574. extra: 597/271,
  38575. bottom: 387/984
  38576. }
  38577. },
  38578. },
  38579. [
  38580. {
  38581. name: "Normal",
  38582. height: math.unit(4, "meters"),
  38583. default: true
  38584. },
  38585. ]
  38586. ))
  38587. characterMakers.push(() => makeCharacter(
  38588. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  38589. {
  38590. front: {
  38591. height: math.unit(8 + 4/12, "feet"),
  38592. weight: math.unit(670, "lb"),
  38593. name: "Front",
  38594. image: {
  38595. source: "./media/characters/acadiel/front.svg",
  38596. extra: 1901/1595,
  38597. bottom: 142/2043
  38598. }
  38599. },
  38600. },
  38601. [
  38602. {
  38603. name: "Normal",
  38604. height: math.unit(8 + 4/12, "feet"),
  38605. default: true
  38606. },
  38607. {
  38608. name: "Macro",
  38609. height: math.unit(200, "feet")
  38610. },
  38611. ]
  38612. ))
  38613. characterMakers.push(() => makeCharacter(
  38614. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  38615. {
  38616. front: {
  38617. height: math.unit(6 + 2/12, "feet"),
  38618. weight: math.unit(185, "lb"),
  38619. name: "Front",
  38620. image: {
  38621. source: "./media/characters/kayne-ein/front.svg",
  38622. extra: 1780/1560,
  38623. bottom: 81/1861
  38624. }
  38625. },
  38626. },
  38627. [
  38628. {
  38629. name: "Normal",
  38630. height: math.unit(6 + 2/12, "feet"),
  38631. default: true
  38632. },
  38633. {
  38634. name: "Transformation Stage",
  38635. height: math.unit(15, "feet")
  38636. },
  38637. {
  38638. name: "Macro",
  38639. height: math.unit(150, "feet")
  38640. },
  38641. {
  38642. name: "Earth's Shadow",
  38643. height: math.unit(6200, "miles")
  38644. },
  38645. {
  38646. name: "Universal Demon",
  38647. height: math.unit(28e9, "parsecs")
  38648. },
  38649. {
  38650. name: "Multiverse God",
  38651. height: math.unit(3, "multiverses")
  38652. },
  38653. ]
  38654. ))
  38655. characterMakers.push(() => makeCharacter(
  38656. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  38657. {
  38658. front: {
  38659. height: math.unit(5 + 5/12, "feet"),
  38660. name: "Front",
  38661. image: {
  38662. source: "./media/characters/fawn/front.svg",
  38663. extra: 1873/1731,
  38664. bottom: 95/1968
  38665. }
  38666. },
  38667. back: {
  38668. height: math.unit(5 + 5/12, "feet"),
  38669. name: "Back",
  38670. image: {
  38671. source: "./media/characters/fawn/back.svg",
  38672. extra: 1813/1700,
  38673. bottom: 14/1827
  38674. }
  38675. },
  38676. hoof: {
  38677. height: math.unit(1.45, "feet"),
  38678. name: "Hoof",
  38679. image: {
  38680. source: "./media/characters/fawn/hoof.svg"
  38681. }
  38682. },
  38683. },
  38684. [
  38685. {
  38686. name: "Normal",
  38687. height: math.unit(5 + 5/12, "feet"),
  38688. default: true
  38689. },
  38690. ]
  38691. ))
  38692. characterMakers.push(() => makeCharacter(
  38693. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  38694. {
  38695. front: {
  38696. height: math.unit(2 + 5/12, "feet"),
  38697. name: "Front",
  38698. image: {
  38699. source: "./media/characters/orion/front.svg",
  38700. extra: 1366/1304,
  38701. bottom: 43/1409
  38702. }
  38703. },
  38704. paw: {
  38705. height: math.unit(0.52, "feet"),
  38706. name: "Paw",
  38707. image: {
  38708. source: "./media/characters/orion/paw.svg"
  38709. }
  38710. },
  38711. },
  38712. [
  38713. {
  38714. name: "Normal",
  38715. height: math.unit(2 + 5/12, "feet"),
  38716. default: true
  38717. },
  38718. ]
  38719. ))
  38720. characterMakers.push(() => makeCharacter(
  38721. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  38722. {
  38723. front: {
  38724. height: math.unit(5 + 10/12, "feet"),
  38725. name: "Front",
  38726. image: {
  38727. source: "./media/characters/vera/front.svg",
  38728. extra: 1680/1575,
  38729. bottom: 49/1729
  38730. }
  38731. },
  38732. back: {
  38733. height: math.unit(5 + 10/12, "feet"),
  38734. name: "Back",
  38735. image: {
  38736. source: "./media/characters/vera/back.svg",
  38737. extra: 1700/1588,
  38738. bottom: 18/1718
  38739. }
  38740. },
  38741. arcanine: {
  38742. height: math.unit(6 + 8/12, "feet"),
  38743. name: "Arcanine",
  38744. image: {
  38745. source: "./media/characters/vera/arcanine.svg",
  38746. extra: 1590/1511,
  38747. bottom: 71/1661
  38748. }
  38749. },
  38750. maw: {
  38751. height: math.unit(0.82, "feet"),
  38752. name: "Maw",
  38753. image: {
  38754. source: "./media/characters/vera/maw.svg"
  38755. }
  38756. },
  38757. mawArcanine: {
  38758. height: math.unit(0.97, "feet"),
  38759. name: "Maw (Arcanine)",
  38760. image: {
  38761. source: "./media/characters/vera/maw-arcanine.svg"
  38762. }
  38763. },
  38764. paw: {
  38765. height: math.unit(0.75, "feet"),
  38766. name: "Paw",
  38767. image: {
  38768. source: "./media/characters/vera/paw.svg"
  38769. }
  38770. },
  38771. pawprint: {
  38772. height: math.unit(0.52, "feet"),
  38773. name: "Pawprint",
  38774. image: {
  38775. source: "./media/characters/vera/pawprint.svg"
  38776. }
  38777. },
  38778. },
  38779. [
  38780. {
  38781. name: "Normal",
  38782. height: math.unit(5 + 10/12, "feet"),
  38783. default: true
  38784. },
  38785. {
  38786. name: "Macro",
  38787. height: math.unit(75, "feet")
  38788. },
  38789. ]
  38790. ))
  38791. characterMakers.push(() => makeCharacter(
  38792. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  38793. {
  38794. front: {
  38795. height: math.unit(4, "feet"),
  38796. weight: math.unit(40, "lb"),
  38797. name: "Front",
  38798. image: {
  38799. source: "./media/characters/orvan-rabbit/front.svg",
  38800. extra: 1896/1642,
  38801. bottom: 29/1925
  38802. }
  38803. },
  38804. },
  38805. [
  38806. {
  38807. name: "Normal",
  38808. height: math.unit(4, "feet"),
  38809. default: true
  38810. },
  38811. ]
  38812. ))
  38813. characterMakers.push(() => makeCharacter(
  38814. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  38815. {
  38816. front: {
  38817. height: math.unit(6, "feet"),
  38818. weight: math.unit(168, "lb"),
  38819. name: "Front",
  38820. image: {
  38821. source: "./media/characters/lisa/front.svg",
  38822. extra: 2065/1867,
  38823. bottom: 46/2111
  38824. }
  38825. },
  38826. back: {
  38827. height: math.unit(6, "feet"),
  38828. weight: math.unit(168, "lb"),
  38829. name: "Back",
  38830. image: {
  38831. source: "./media/characters/lisa/back.svg",
  38832. extra: 1982/1838,
  38833. bottom: 29/2011
  38834. }
  38835. },
  38836. maw: {
  38837. height: math.unit(0.81, "feet"),
  38838. name: "Maw",
  38839. image: {
  38840. source: "./media/characters/lisa/maw.svg"
  38841. }
  38842. },
  38843. paw: {
  38844. height: math.unit(0.9, "feet"),
  38845. name: "Paw",
  38846. image: {
  38847. source: "./media/characters/lisa/paw.svg"
  38848. }
  38849. },
  38850. caribousune: {
  38851. height: math.unit(7 + 2/12, "feet"),
  38852. weight: math.unit(268, "lb"),
  38853. name: "Caribousune",
  38854. image: {
  38855. source: "./media/characters/lisa/caribousune.svg",
  38856. extra: 1843/1633,
  38857. bottom: 29/1872
  38858. }
  38859. },
  38860. frontCaribousune: {
  38861. height: math.unit(7 + 2/12, "feet"),
  38862. weight: math.unit(268, "lb"),
  38863. name: "Front (Caribousune)",
  38864. image: {
  38865. source: "./media/characters/lisa/front-caribousune.svg",
  38866. extra: 1818/1638,
  38867. bottom: 52/1870
  38868. }
  38869. },
  38870. sideCaribousune: {
  38871. height: math.unit(7 + 2/12, "feet"),
  38872. weight: math.unit(268, "lb"),
  38873. name: "Side (Caribousune)",
  38874. image: {
  38875. source: "./media/characters/lisa/side-caribousune.svg",
  38876. extra: 1851/1635,
  38877. bottom: 16/1867
  38878. }
  38879. },
  38880. backCaribousune: {
  38881. height: math.unit(7 + 2/12, "feet"),
  38882. weight: math.unit(268, "lb"),
  38883. name: "Back (Caribousune)",
  38884. image: {
  38885. source: "./media/characters/lisa/back-caribousune.svg",
  38886. extra: 1801/1604,
  38887. bottom: 44/1845
  38888. }
  38889. },
  38890. caribou: {
  38891. height: math.unit(7 + 2/12, "feet"),
  38892. weight: math.unit(268, "lb"),
  38893. name: "Caribou",
  38894. image: {
  38895. source: "./media/characters/lisa/caribou.svg",
  38896. extra: 1843/1633,
  38897. bottom: 29/1872
  38898. }
  38899. },
  38900. frontCaribou: {
  38901. height: math.unit(7 + 2/12, "feet"),
  38902. weight: math.unit(268, "lb"),
  38903. name: "Front (Caribou)",
  38904. image: {
  38905. source: "./media/characters/lisa/front-caribou.svg",
  38906. extra: 1818/1638,
  38907. bottom: 52/1870
  38908. }
  38909. },
  38910. sideCaribou: {
  38911. height: math.unit(7 + 2/12, "feet"),
  38912. weight: math.unit(268, "lb"),
  38913. name: "Side (Caribou)",
  38914. image: {
  38915. source: "./media/characters/lisa/side-caribou.svg",
  38916. extra: 1851/1635,
  38917. bottom: 16/1867
  38918. }
  38919. },
  38920. backCaribou: {
  38921. height: math.unit(7 + 2/12, "feet"),
  38922. weight: math.unit(268, "lb"),
  38923. name: "Back (Caribou)",
  38924. image: {
  38925. source: "./media/characters/lisa/back-caribou.svg",
  38926. extra: 1801/1604,
  38927. bottom: 44/1845
  38928. }
  38929. },
  38930. mawCaribou: {
  38931. height: math.unit(1.45, "feet"),
  38932. name: "Maw (Caribou)",
  38933. image: {
  38934. source: "./media/characters/lisa/maw-caribou.svg"
  38935. }
  38936. },
  38937. mawCaribousune: {
  38938. height: math.unit(1.45, "feet"),
  38939. name: "Maw (Caribousune)",
  38940. image: {
  38941. source: "./media/characters/lisa/maw-caribousune.svg"
  38942. }
  38943. },
  38944. pawCaribousune: {
  38945. height: math.unit(1.61, "feet"),
  38946. name: "Paw (Caribou)",
  38947. image: {
  38948. source: "./media/characters/lisa/paw-caribousune.svg"
  38949. }
  38950. },
  38951. },
  38952. [
  38953. {
  38954. name: "Normal",
  38955. height: math.unit(6, "feet")
  38956. },
  38957. {
  38958. name: "God Size",
  38959. height: math.unit(72, "feet"),
  38960. default: true
  38961. },
  38962. {
  38963. name: "Towering",
  38964. height: math.unit(288, "feet")
  38965. },
  38966. {
  38967. name: "City Size",
  38968. height: math.unit(48384, "feet")
  38969. },
  38970. {
  38971. name: "Continental",
  38972. height: math.unit(4200, "miles")
  38973. },
  38974. {
  38975. name: "Planet Eater",
  38976. height: math.unit(42, "earths")
  38977. },
  38978. {
  38979. name: "Star Swallower",
  38980. height: math.unit(42, "solarradii")
  38981. },
  38982. {
  38983. name: "System Swallower",
  38984. height: math.unit(84000, "AU")
  38985. },
  38986. {
  38987. name: "Galaxy Gobbler",
  38988. height: math.unit(42, "galaxies")
  38989. },
  38990. {
  38991. name: "Universe Devourer",
  38992. height: math.unit(42, "universes")
  38993. },
  38994. {
  38995. name: "Multiverse Muncher",
  38996. height: math.unit(42, "multiverses")
  38997. },
  38998. ]
  38999. ))
  39000. characterMakers.push(() => makeCharacter(
  39001. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  39002. {
  39003. front: {
  39004. height: math.unit(36, "feet"),
  39005. name: "Front",
  39006. image: {
  39007. source: "./media/characters/shadow-rat/front.svg",
  39008. extra: 1845/1758,
  39009. bottom: 83/1928
  39010. }
  39011. },
  39012. },
  39013. [
  39014. {
  39015. name: "Macro",
  39016. height: math.unit(36, "feet"),
  39017. default: true
  39018. },
  39019. ]
  39020. ))
  39021. characterMakers.push(() => makeCharacter(
  39022. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  39023. {
  39024. side: {
  39025. height: math.unit(8, "feet"),
  39026. weight: math.unit(2630, "lb"),
  39027. name: "Side",
  39028. image: {
  39029. source: "./media/characters/torallia/side.svg",
  39030. extra: 2164/2021,
  39031. bottom: 371/2535
  39032. }
  39033. },
  39034. },
  39035. [
  39036. {
  39037. name: "Mortal Interaction",
  39038. height: math.unit(8, "feet")
  39039. },
  39040. {
  39041. name: "Natural",
  39042. height: math.unit(24, "feet"),
  39043. default: true
  39044. },
  39045. {
  39046. name: "Giant",
  39047. height: math.unit(80, "feet")
  39048. },
  39049. {
  39050. name: "Kaiju",
  39051. height: math.unit(240, "feet")
  39052. },
  39053. {
  39054. name: "Macro",
  39055. height: math.unit(800, "feet")
  39056. },
  39057. {
  39058. name: "Macro+",
  39059. height: math.unit(2400, "feet")
  39060. },
  39061. {
  39062. name: "Macro++",
  39063. height: math.unit(8000, "feet")
  39064. },
  39065. {
  39066. name: "City-Crushing",
  39067. height: math.unit(24000, "feet")
  39068. },
  39069. {
  39070. name: "Mountain-Mashing",
  39071. height: math.unit(80000, "feet")
  39072. },
  39073. {
  39074. name: "District Demolisher",
  39075. height: math.unit(240000, "feet")
  39076. },
  39077. {
  39078. name: "Tri-County Terror",
  39079. height: math.unit(800000, "feet")
  39080. },
  39081. {
  39082. name: "State Smasher",
  39083. height: math.unit(2.4e6, "feet")
  39084. },
  39085. {
  39086. name: "Nation Nemesis",
  39087. height: math.unit(8e6, "feet")
  39088. },
  39089. {
  39090. name: "Continent Cracker",
  39091. height: math.unit(2.4e7, "feet")
  39092. },
  39093. {
  39094. name: "Planet-Pillaging",
  39095. height: math.unit(8e7, "feet")
  39096. },
  39097. {
  39098. name: "Earth-Eclipsing",
  39099. height: math.unit(2.4e8, "feet")
  39100. },
  39101. {
  39102. name: "Jovian-Jostling",
  39103. height: math.unit(8e8, "feet")
  39104. },
  39105. {
  39106. name: "Gas Giant Gulper",
  39107. height: math.unit(2.4e9, "feet")
  39108. },
  39109. {
  39110. name: "Astral Annihilator",
  39111. height: math.unit(8e9, "feet")
  39112. },
  39113. {
  39114. name: "Celestial Conqueror",
  39115. height: math.unit(2.4e10, "feet")
  39116. },
  39117. {
  39118. name: "Sol-Swallowing",
  39119. height: math.unit(8e10, "feet")
  39120. },
  39121. {
  39122. name: "Hunter of the Heavens",
  39123. height: math.unit(2.4e13, "feet")
  39124. },
  39125. ]
  39126. ))
  39127. characterMakers.push(() => makeCharacter(
  39128. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  39129. {
  39130. front: {
  39131. height: math.unit(6 + 8/12, "feet"),
  39132. name: "Front",
  39133. image: {
  39134. source: "./media/characters/rebecca-pawlson/front.svg",
  39135. extra: 1737/1596,
  39136. bottom: 107/1844
  39137. }
  39138. },
  39139. back: {
  39140. height: math.unit(6 + 8/12, "feet"),
  39141. name: "Back",
  39142. image: {
  39143. source: "./media/characters/rebecca-pawlson/back.svg",
  39144. extra: 1702/1523,
  39145. bottom: 86/1788
  39146. }
  39147. },
  39148. },
  39149. [
  39150. {
  39151. name: "Normal",
  39152. height: math.unit(6 + 8/12, "feet")
  39153. },
  39154. {
  39155. name: "Mini Macro",
  39156. height: math.unit(10, "feet"),
  39157. default: true
  39158. },
  39159. {
  39160. name: "Macro",
  39161. height: math.unit(100, "feet")
  39162. },
  39163. {
  39164. name: "Mega Macro",
  39165. height: math.unit(2500, "feet")
  39166. },
  39167. {
  39168. name: "Giga Macro",
  39169. height: math.unit(50, "miles")
  39170. },
  39171. ]
  39172. ))
  39173. characterMakers.push(() => makeCharacter(
  39174. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  39175. {
  39176. front: {
  39177. height: math.unit(7 + 6/12, "feet"),
  39178. weight: math.unit(600, "lb"),
  39179. name: "Front",
  39180. image: {
  39181. source: "./media/characters/moxie-nova/front.svg",
  39182. extra: 1734/1652,
  39183. bottom: 41/1775
  39184. }
  39185. },
  39186. },
  39187. [
  39188. {
  39189. name: "Normal",
  39190. height: math.unit(7 + 6/12, "feet"),
  39191. default: true
  39192. },
  39193. ]
  39194. ))
  39195. characterMakers.push(() => makeCharacter(
  39196. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  39197. {
  39198. goat: {
  39199. height: math.unit(4, "feet"),
  39200. weight: math.unit(180, "lb"),
  39201. name: "Goat",
  39202. image: {
  39203. source: "./media/characters/tiffany/goat.svg",
  39204. extra: 1845/1595,
  39205. bottom: 106/1951
  39206. }
  39207. },
  39208. front: {
  39209. height: math.unit(5, "feet"),
  39210. weight: math.unit(150, "lb"),
  39211. name: "Foxcoon",
  39212. image: {
  39213. source: "./media/characters/tiffany/foxcoon.svg",
  39214. extra: 1941/1845,
  39215. bottom: 58/1999
  39216. }
  39217. },
  39218. },
  39219. [
  39220. {
  39221. name: "Normal",
  39222. height: math.unit(5, "feet"),
  39223. default: true
  39224. },
  39225. ]
  39226. ))
  39227. characterMakers.push(() => makeCharacter(
  39228. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  39229. {
  39230. front: {
  39231. height: math.unit(8, "feet"),
  39232. weight: math.unit(300, "lb"),
  39233. name: "Front",
  39234. image: {
  39235. source: "./media/characters/raxinath/front.svg",
  39236. extra: 1407/1309,
  39237. bottom: 39/1446
  39238. }
  39239. },
  39240. back: {
  39241. height: math.unit(8, "feet"),
  39242. weight: math.unit(300, "lb"),
  39243. name: "Back",
  39244. image: {
  39245. source: "./media/characters/raxinath/back.svg",
  39246. extra: 1405/1315,
  39247. bottom: 9/1414
  39248. }
  39249. },
  39250. },
  39251. [
  39252. {
  39253. name: "Speck",
  39254. height: math.unit(0.5, "nm")
  39255. },
  39256. {
  39257. name: "Micro",
  39258. height: math.unit(3, "inches")
  39259. },
  39260. {
  39261. name: "Kobold",
  39262. height: math.unit(3, "feet")
  39263. },
  39264. {
  39265. name: "Normal",
  39266. height: math.unit(8, "feet"),
  39267. default: true
  39268. },
  39269. {
  39270. name: "Giant",
  39271. height: math.unit(50, "feet")
  39272. },
  39273. {
  39274. name: "Macro",
  39275. height: math.unit(1000, "feet")
  39276. },
  39277. {
  39278. name: "Megamacro",
  39279. height: math.unit(1, "mile")
  39280. },
  39281. ]
  39282. ))
  39283. characterMakers.push(() => makeCharacter(
  39284. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  39285. {
  39286. front: {
  39287. height: math.unit(10, "feet"),
  39288. weight: math.unit(1442, "lb"),
  39289. name: "Front",
  39290. image: {
  39291. source: "./media/characters/mal-dragon/front.svg",
  39292. extra: 1515/1444,
  39293. bottom: 113/1628
  39294. }
  39295. },
  39296. back: {
  39297. height: math.unit(10, "feet"),
  39298. weight: math.unit(1442, "lb"),
  39299. name: "Back",
  39300. image: {
  39301. source: "./media/characters/mal-dragon/back.svg",
  39302. extra: 1527/1434,
  39303. bottom: 25/1552
  39304. }
  39305. },
  39306. },
  39307. [
  39308. {
  39309. name: "Mortal Interaction",
  39310. height: math.unit(10, "feet"),
  39311. default: true
  39312. },
  39313. {
  39314. name: "Large",
  39315. height: math.unit(30, "feet")
  39316. },
  39317. {
  39318. name: "Kaiju",
  39319. height: math.unit(300, "feet")
  39320. },
  39321. {
  39322. name: "Megamacro",
  39323. height: math.unit(10000, "feet")
  39324. },
  39325. {
  39326. name: "Continent Cracker",
  39327. height: math.unit(30000000, "feet")
  39328. },
  39329. {
  39330. name: "Sol-Swallowing",
  39331. height: math.unit(1e11, "feet")
  39332. },
  39333. {
  39334. name: "Light Universal",
  39335. height: math.unit(5, "universes")
  39336. },
  39337. {
  39338. name: "Universe Atoms",
  39339. height: math.unit(1.829e9, "universes")
  39340. },
  39341. {
  39342. name: "Light Multiversal",
  39343. height: math.unit(5, "multiverses")
  39344. },
  39345. {
  39346. name: "Multiverse Atoms",
  39347. height: math.unit(1.829e9, "multiverses")
  39348. },
  39349. {
  39350. name: "Fabric of Time",
  39351. height: math.unit(1e262, "multiverses")
  39352. },
  39353. ]
  39354. ))
  39355. characterMakers.push(() => makeCharacter(
  39356. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  39357. {
  39358. front: {
  39359. height: math.unit(9, "feet"),
  39360. weight: math.unit(1050, "lb"),
  39361. name: "Front",
  39362. image: {
  39363. source: "./media/characters/tabitha/front.svg",
  39364. extra: 2083/1994,
  39365. bottom: 68/2151
  39366. }
  39367. },
  39368. },
  39369. [
  39370. {
  39371. name: "Baseline",
  39372. height: math.unit(9, "feet"),
  39373. default: true
  39374. },
  39375. {
  39376. name: "Giant",
  39377. height: math.unit(90, "feet")
  39378. },
  39379. {
  39380. name: "Macro",
  39381. height: math.unit(900, "feet")
  39382. },
  39383. {
  39384. name: "Megamacro",
  39385. height: math.unit(9000, "feet")
  39386. },
  39387. {
  39388. name: "City-Crushing",
  39389. height: math.unit(27000, "feet")
  39390. },
  39391. {
  39392. name: "Mountain-Mashing",
  39393. height: math.unit(90000, "feet")
  39394. },
  39395. {
  39396. name: "Nation Nemesis",
  39397. height: math.unit(9e6, "feet")
  39398. },
  39399. {
  39400. name: "Continent Cracker",
  39401. height: math.unit(27e6, "feet")
  39402. },
  39403. {
  39404. name: "Earth-Eclipsing",
  39405. height: math.unit(2.7e8, "feet")
  39406. },
  39407. {
  39408. name: "Gas Giant Gulper",
  39409. height: math.unit(2.7e9, "feet")
  39410. },
  39411. {
  39412. name: "Sol-Swallowing",
  39413. height: math.unit(9e10, "feet")
  39414. },
  39415. {
  39416. name: "Galaxy Gulper",
  39417. height: math.unit(9, "galaxies")
  39418. },
  39419. {
  39420. name: "Cosmos Churner",
  39421. height: math.unit(9, "universes")
  39422. },
  39423. ]
  39424. ))
  39425. characterMakers.push(() => makeCharacter(
  39426. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  39427. {
  39428. front: {
  39429. height: math.unit(160, "cm"),
  39430. weight: math.unit(55, "kg"),
  39431. name: "Front",
  39432. image: {
  39433. source: "./media/characters/tow/front.svg",
  39434. extra: 1751/1722,
  39435. bottom: 74/1825
  39436. }
  39437. },
  39438. },
  39439. [
  39440. {
  39441. name: "Norm",
  39442. height: math.unit(160, "cm")
  39443. },
  39444. {
  39445. name: "Casual",
  39446. height: math.unit(3200, "m"),
  39447. default: true
  39448. },
  39449. {
  39450. name: "Show-Off",
  39451. height: math.unit(160, "km")
  39452. },
  39453. ]
  39454. ))
  39455. characterMakers.push(() => makeCharacter(
  39456. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  39457. {
  39458. front: {
  39459. height: math.unit(7 + 11/12, "feet"),
  39460. weight: math.unit(342.8, "lb"),
  39461. name: "Front",
  39462. image: {
  39463. source: "./media/characters/vivian-orca-dragon/front.svg",
  39464. extra: 1890/1865,
  39465. bottom: 28/1918
  39466. }
  39467. },
  39468. },
  39469. [
  39470. {
  39471. name: "Micro",
  39472. height: math.unit(5, "inches")
  39473. },
  39474. {
  39475. name: "Normal",
  39476. height: math.unit(7 + 11/12, "feet"),
  39477. default: true
  39478. },
  39479. {
  39480. name: "Macro",
  39481. height: math.unit(395 + 7/12, "feet")
  39482. },
  39483. ]
  39484. ))
  39485. characterMakers.push(() => makeCharacter(
  39486. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  39487. {
  39488. side: {
  39489. height: math.unit(10, "feet"),
  39490. weight: math.unit(1442, "lb"),
  39491. name: "Side",
  39492. image: {
  39493. source: "./media/characters/lotherakon/side.svg",
  39494. extra: 1604/1497,
  39495. bottom: 89/1693
  39496. }
  39497. },
  39498. },
  39499. [
  39500. {
  39501. name: "Mortal Interaction",
  39502. height: math.unit(10, "feet")
  39503. },
  39504. {
  39505. name: "Large",
  39506. height: math.unit(30, "feet"),
  39507. default: true
  39508. },
  39509. {
  39510. name: "Giant",
  39511. height: math.unit(100, "feet")
  39512. },
  39513. {
  39514. name: "Kaiju",
  39515. height: math.unit(300, "feet")
  39516. },
  39517. {
  39518. name: "Macro",
  39519. height: math.unit(1000, "feet")
  39520. },
  39521. {
  39522. name: "Macro+",
  39523. height: math.unit(3000, "feet")
  39524. },
  39525. {
  39526. name: "Megamacro",
  39527. height: math.unit(10000, "feet")
  39528. },
  39529. {
  39530. name: "City-Crushing",
  39531. height: math.unit(30000, "feet")
  39532. },
  39533. {
  39534. name: "Continent Cracker",
  39535. height: math.unit(30e6, "feet")
  39536. },
  39537. {
  39538. name: "Earth Eclipsing",
  39539. height: math.unit(3e8, "feet")
  39540. },
  39541. {
  39542. name: "Gas Giant Gulper",
  39543. height: math.unit(3e9, "feet")
  39544. },
  39545. {
  39546. name: "Sol-Swallowing",
  39547. height: math.unit(1e11, "feet")
  39548. },
  39549. {
  39550. name: "System Swallower",
  39551. height: math.unit(3e14, "feet")
  39552. },
  39553. {
  39554. name: "Galaxy Gulper",
  39555. height: math.unit(10, "galaxies")
  39556. },
  39557. {
  39558. name: "Light Universal",
  39559. height: math.unit(5, "universes")
  39560. },
  39561. {
  39562. name: "Universe Palm",
  39563. height: math.unit(20, "universes")
  39564. },
  39565. {
  39566. name: "Light Multiversal",
  39567. height: math.unit(5, "multiverses")
  39568. },
  39569. {
  39570. name: "Multiverse Palm",
  39571. height: math.unit(20, "multiverses")
  39572. },
  39573. {
  39574. name: "Inferno Incarnate",
  39575. height: math.unit(1e7, "multiverses")
  39576. },
  39577. ]
  39578. ))
  39579. characterMakers.push(() => makeCharacter(
  39580. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  39581. {
  39582. front: {
  39583. height: math.unit(8, "feet"),
  39584. weight: math.unit(1200, "lb"),
  39585. name: "Front",
  39586. image: {
  39587. source: "./media/characters/malithee/front.svg",
  39588. extra: 1675/1640,
  39589. bottom: 162/1837
  39590. }
  39591. },
  39592. },
  39593. [
  39594. {
  39595. name: "Mortal Interaction",
  39596. height: math.unit(8, "feet"),
  39597. default: true
  39598. },
  39599. {
  39600. name: "Large",
  39601. height: math.unit(24, "feet")
  39602. },
  39603. {
  39604. name: "Kaiju",
  39605. height: math.unit(240, "feet")
  39606. },
  39607. {
  39608. name: "Megamacro",
  39609. height: math.unit(8000, "feet")
  39610. },
  39611. {
  39612. name: "Continent Cracker",
  39613. height: math.unit(24e6, "feet")
  39614. },
  39615. {
  39616. name: "Earth-Eclipsing",
  39617. height: math.unit(2.4e8, "feet")
  39618. },
  39619. {
  39620. name: "Sol-Swallowing",
  39621. height: math.unit(8e10, "feet")
  39622. },
  39623. {
  39624. name: "Galaxy Gulper",
  39625. height: math.unit(8, "galaxies")
  39626. },
  39627. {
  39628. name: "Light Universal",
  39629. height: math.unit(4, "universes")
  39630. },
  39631. {
  39632. name: "Universe Atoms",
  39633. height: math.unit(1.829e9, "universes")
  39634. },
  39635. {
  39636. name: "Light Multiversal",
  39637. height: math.unit(4, "multiverses")
  39638. },
  39639. {
  39640. name: "Multiverse Atoms",
  39641. height: math.unit(1.829e9, "multiverses")
  39642. },
  39643. {
  39644. name: "Nigh-Omnipresence",
  39645. height: math.unit(8e261, "multiverses")
  39646. },
  39647. ]
  39648. ))
  39649. characterMakers.push(() => makeCharacter(
  39650. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  39651. {
  39652. front: {
  39653. height: math.unit(10, "feet"),
  39654. weight: math.unit(1500, "lb"),
  39655. name: "Front",
  39656. image: {
  39657. source: "./media/characters/miles-thestia/front.svg",
  39658. extra: 1812/1727,
  39659. bottom: 86/1898
  39660. }
  39661. },
  39662. back: {
  39663. height: math.unit(10, "feet"),
  39664. weight: math.unit(1500, "lb"),
  39665. name: "Back",
  39666. image: {
  39667. source: "./media/characters/miles-thestia/back.svg",
  39668. extra: 1799/1690,
  39669. bottom: 47/1846
  39670. }
  39671. },
  39672. frontNsfw: {
  39673. height: math.unit(10, "feet"),
  39674. weight: math.unit(1500, "lb"),
  39675. name: "Front (NSFW)",
  39676. image: {
  39677. source: "./media/characters/miles-thestia/front-nsfw.svg",
  39678. extra: 1812/1727,
  39679. bottom: 86/1898
  39680. }
  39681. },
  39682. },
  39683. [
  39684. {
  39685. name: "Mini-Macro",
  39686. height: math.unit(10, "feet"),
  39687. default: true
  39688. },
  39689. ]
  39690. ))
  39691. characterMakers.push(() => makeCharacter(
  39692. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  39693. {
  39694. front: {
  39695. height: math.unit(25, "feet"),
  39696. name: "Front",
  39697. image: {
  39698. source: "./media/characters/titan-s-wulf/front.svg",
  39699. extra: 1560/1484,
  39700. bottom: 76/1636
  39701. }
  39702. },
  39703. },
  39704. [
  39705. {
  39706. name: "Smallest",
  39707. height: math.unit(25, "feet"),
  39708. default: true
  39709. },
  39710. {
  39711. name: "Normal",
  39712. height: math.unit(200, "feet")
  39713. },
  39714. {
  39715. name: "Macro",
  39716. height: math.unit(200000, "feet")
  39717. },
  39718. {
  39719. name: "Multiversal Original",
  39720. height: math.unit(10000, "multiverses")
  39721. },
  39722. ]
  39723. ))
  39724. characterMakers.push(() => makeCharacter(
  39725. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  39726. {
  39727. front: {
  39728. height: math.unit(8, "feet"),
  39729. weight: math.unit(553, "lb"),
  39730. name: "Front",
  39731. image: {
  39732. source: "./media/characters/tawendeh/front.svg",
  39733. extra: 2365/2268,
  39734. bottom: 83/2448
  39735. }
  39736. },
  39737. frontClothed: {
  39738. height: math.unit(8, "feet"),
  39739. weight: math.unit(553, "lb"),
  39740. name: "Front (Clothed)",
  39741. image: {
  39742. source: "./media/characters/tawendeh/front-clothed.svg",
  39743. extra: 2365/2268,
  39744. bottom: 83/2448
  39745. }
  39746. },
  39747. back: {
  39748. height: math.unit(8, "feet"),
  39749. weight: math.unit(553, "lb"),
  39750. name: "Back",
  39751. image: {
  39752. source: "./media/characters/tawendeh/back.svg",
  39753. extra: 2397/2294,
  39754. bottom: 42/2439
  39755. }
  39756. },
  39757. },
  39758. [
  39759. {
  39760. name: "Mortal Interaction",
  39761. height: math.unit(8, "feet"),
  39762. default: true
  39763. },
  39764. {
  39765. name: "Giant",
  39766. height: math.unit(80, "feet")
  39767. },
  39768. {
  39769. name: "Macro",
  39770. height: math.unit(800, "feet")
  39771. },
  39772. {
  39773. name: "Megamacro",
  39774. height: math.unit(8000, "feet")
  39775. },
  39776. {
  39777. name: "City-Crushing",
  39778. height: math.unit(24000, "feet")
  39779. },
  39780. {
  39781. name: "Mountain-Mashing",
  39782. height: math.unit(80000, "feet")
  39783. },
  39784. {
  39785. name: "Nation Nemesis",
  39786. height: math.unit(8e6, "feet")
  39787. },
  39788. {
  39789. name: "Continent Cracker",
  39790. height: math.unit(24e6, "feet")
  39791. },
  39792. {
  39793. name: "Earth-Eclipsing",
  39794. height: math.unit(2.4e8, "feet")
  39795. },
  39796. {
  39797. name: "Gas Giant Gulper",
  39798. height: math.unit(2.4e9, "feet")
  39799. },
  39800. {
  39801. name: "Sol-Swallowing",
  39802. height: math.unit(8e10, "feet")
  39803. },
  39804. {
  39805. name: "Galaxy Gulper",
  39806. height: math.unit(8, "galaxies")
  39807. },
  39808. {
  39809. name: "Cosmos Churner",
  39810. height: math.unit(8, "universes")
  39811. },
  39812. {
  39813. name: "Omnipotent Otter",
  39814. height: math.unit(80, "universes")
  39815. },
  39816. ]
  39817. ))
  39818. characterMakers.push(() => makeCharacter(
  39819. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  39820. {
  39821. front: {
  39822. height: math.unit(2.6, "meters"),
  39823. weight: math.unit(900, "kg"),
  39824. name: "Front",
  39825. image: {
  39826. source: "./media/characters/neesha/front.svg",
  39827. extra: 1803/1653,
  39828. bottom: 128/1931
  39829. }
  39830. },
  39831. },
  39832. [
  39833. {
  39834. name: "Normal",
  39835. height: math.unit(2.6, "meters"),
  39836. default: true
  39837. },
  39838. {
  39839. name: "Macro",
  39840. height: math.unit(50, "meters")
  39841. },
  39842. ]
  39843. ))
  39844. characterMakers.push(() => makeCharacter(
  39845. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  39846. {
  39847. front: {
  39848. height: math.unit(5, "feet"),
  39849. weight: math.unit(185, "lb"),
  39850. name: "Front",
  39851. image: {
  39852. source: "./media/characters/kyera/front.svg",
  39853. extra: 1875/1790,
  39854. bottom: 96/1971
  39855. }
  39856. },
  39857. },
  39858. [
  39859. {
  39860. name: "Normal",
  39861. height: math.unit(5, "feet"),
  39862. default: true
  39863. },
  39864. ]
  39865. ))
  39866. characterMakers.push(() => makeCharacter(
  39867. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  39868. {
  39869. front: {
  39870. height: math.unit(7 + 6/12, "feet"),
  39871. weight: math.unit(540, "lb"),
  39872. name: "Front",
  39873. image: {
  39874. source: "./media/characters/yuko/front.svg",
  39875. extra: 1282/1222,
  39876. bottom: 101/1383
  39877. }
  39878. },
  39879. frontClothed: {
  39880. height: math.unit(7 + 6/12, "feet"),
  39881. weight: math.unit(540, "lb"),
  39882. name: "Front (Clothed)",
  39883. image: {
  39884. source: "./media/characters/yuko/front-clothed.svg",
  39885. extra: 1282/1222,
  39886. bottom: 101/1383
  39887. }
  39888. },
  39889. },
  39890. [
  39891. {
  39892. name: "Normal",
  39893. height: math.unit(7 + 6/12, "feet"),
  39894. default: true
  39895. },
  39896. {
  39897. name: "Macro",
  39898. height: math.unit(26 + 9/12, "feet")
  39899. },
  39900. {
  39901. name: "Megamacro",
  39902. height: math.unit(300, "feet")
  39903. },
  39904. {
  39905. name: "Gigamacro",
  39906. height: math.unit(5000, "feet")
  39907. },
  39908. {
  39909. name: "Planetary",
  39910. height: math.unit(10000, "miles")
  39911. },
  39912. ]
  39913. ))
  39914. characterMakers.push(() => makeCharacter(
  39915. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  39916. {
  39917. front: {
  39918. height: math.unit(8 + 2/12, "feet"),
  39919. weight: math.unit(600, "lb"),
  39920. name: "Front",
  39921. image: {
  39922. source: "./media/characters/deam-nitrel/front.svg",
  39923. extra: 1308/1234,
  39924. bottom: 125/1433
  39925. }
  39926. },
  39927. },
  39928. [
  39929. {
  39930. name: "Normal",
  39931. height: math.unit(8 + 2/12, "feet"),
  39932. default: true
  39933. },
  39934. ]
  39935. ))
  39936. characterMakers.push(() => makeCharacter(
  39937. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  39938. {
  39939. front: {
  39940. height: math.unit(6.1, "feet"),
  39941. weight: math.unit(180, "lb"),
  39942. name: "Front",
  39943. image: {
  39944. source: "./media/characters/skyress/front.svg",
  39945. extra: 1045/915,
  39946. bottom: 28/1073
  39947. }
  39948. },
  39949. maw: {
  39950. height: math.unit(1, "feet"),
  39951. name: "Maw",
  39952. image: {
  39953. source: "./media/characters/skyress/maw.svg"
  39954. }
  39955. },
  39956. },
  39957. [
  39958. {
  39959. name: "Normal",
  39960. height: math.unit(6.1, "feet"),
  39961. default: true
  39962. },
  39963. {
  39964. name: "Macro",
  39965. height: math.unit(200, "feet")
  39966. },
  39967. ]
  39968. ))
  39969. characterMakers.push(() => makeCharacter(
  39970. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  39971. {
  39972. front: {
  39973. height: math.unit(4 + 2/12, "feet"),
  39974. weight: math.unit(40, "kg"),
  39975. name: "Front",
  39976. image: {
  39977. source: "./media/characters/amethyst-jones/front.svg",
  39978. extra: 1220/1150,
  39979. bottom: 101/1321
  39980. }
  39981. },
  39982. },
  39983. [
  39984. {
  39985. name: "Normal",
  39986. height: math.unit(4 + 2/12, "feet"),
  39987. default: true
  39988. },
  39989. ]
  39990. ))
  39991. characterMakers.push(() => makeCharacter(
  39992. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  39993. {
  39994. front: {
  39995. height: math.unit(1.7, "m"),
  39996. weight: math.unit(135, "lb"),
  39997. name: "Front",
  39998. image: {
  39999. source: "./media/characters/jade/front.svg",
  40000. extra: 1818/1767,
  40001. bottom: 32/1850
  40002. }
  40003. },
  40004. back: {
  40005. height: math.unit(1.7, "m"),
  40006. weight: math.unit(135, "lb"),
  40007. name: "Back",
  40008. image: {
  40009. source: "./media/characters/jade/back.svg",
  40010. extra: 1869/1809,
  40011. bottom: 35/1904
  40012. }
  40013. },
  40014. hand: {
  40015. height: math.unit(0.24, "m"),
  40016. name: "Hand",
  40017. image: {
  40018. source: "./media/characters/jade/hand.svg"
  40019. }
  40020. },
  40021. foot: {
  40022. height: math.unit(0.263, "m"),
  40023. name: "Foot",
  40024. image: {
  40025. source: "./media/characters/jade/foot.svg"
  40026. }
  40027. },
  40028. dick: {
  40029. height: math.unit(0.47, "m"),
  40030. name: "Dick",
  40031. image: {
  40032. source: "./media/characters/jade/dick.svg"
  40033. }
  40034. },
  40035. },
  40036. [
  40037. {
  40038. name: "Micro",
  40039. height: math.unit(22, "cm")
  40040. },
  40041. {
  40042. name: "Normal",
  40043. height: math.unit(1.7, "m"),
  40044. default: true
  40045. },
  40046. {
  40047. name: "Macro",
  40048. height: math.unit(152, "m")
  40049. },
  40050. ]
  40051. ))
  40052. characterMakers.push(() => makeCharacter(
  40053. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  40054. {
  40055. front: {
  40056. height: math.unit(100, "miles"),
  40057. weight: math.unit(20000, "tons"),
  40058. name: "Front",
  40059. image: {
  40060. source: "./media/characters/cookie/front.svg",
  40061. extra: 1125/1070,
  40062. bottom: 30/1155
  40063. }
  40064. },
  40065. },
  40066. [
  40067. {
  40068. name: "Big",
  40069. height: math.unit(50, "feet")
  40070. },
  40071. {
  40072. name: "Macro",
  40073. height: math.unit(100, "miles"),
  40074. default: true
  40075. },
  40076. {
  40077. name: "Megamacro",
  40078. height: math.unit(90000, "miles")
  40079. },
  40080. ]
  40081. ))
  40082. characterMakers.push(() => makeCharacter(
  40083. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  40084. {
  40085. front: {
  40086. height: math.unit(6, "feet"),
  40087. weight: math.unit(145, "lb"),
  40088. name: "Front",
  40089. image: {
  40090. source: "./media/characters/farzian/front.svg",
  40091. extra: 1902/1693,
  40092. bottom: 108/2010
  40093. }
  40094. },
  40095. },
  40096. [
  40097. {
  40098. name: "Macro",
  40099. height: math.unit(500, "feet"),
  40100. default: true
  40101. },
  40102. ]
  40103. ))
  40104. characterMakers.push(() => makeCharacter(
  40105. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  40106. {
  40107. front: {
  40108. height: math.unit(3 + 6/12, "feet"),
  40109. weight: math.unit(50, "lb"),
  40110. name: "Front",
  40111. image: {
  40112. source: "./media/characters/kimberly-tilson/front.svg",
  40113. extra: 1400/1322,
  40114. bottom: 36/1436
  40115. }
  40116. },
  40117. back: {
  40118. height: math.unit(3 + 6/12, "feet"),
  40119. weight: math.unit(50, "lb"),
  40120. name: "Back",
  40121. image: {
  40122. source: "./media/characters/kimberly-tilson/back.svg",
  40123. extra: 1370/1307,
  40124. bottom: 20/1390
  40125. }
  40126. },
  40127. },
  40128. [
  40129. {
  40130. name: "Normal",
  40131. height: math.unit(3 + 6/12, "feet"),
  40132. default: true
  40133. },
  40134. ]
  40135. ))
  40136. characterMakers.push(() => makeCharacter(
  40137. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  40138. {
  40139. front: {
  40140. height: math.unit(1148, "feet"),
  40141. weight: math.unit(34057, "lb"),
  40142. name: "Front",
  40143. image: {
  40144. source: "./media/characters/harthos/front.svg",
  40145. extra: 1391/1339,
  40146. bottom: 13/1404
  40147. }
  40148. },
  40149. },
  40150. [
  40151. {
  40152. name: "Macro",
  40153. height: math.unit(1148, "feet"),
  40154. default: true
  40155. },
  40156. ]
  40157. ))
  40158. characterMakers.push(() => makeCharacter(
  40159. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  40160. {
  40161. front: {
  40162. height: math.unit(15, "feet"),
  40163. name: "Front",
  40164. image: {
  40165. source: "./media/characters/hypatia/front.svg",
  40166. extra: 1653/1591,
  40167. bottom: 79/1732
  40168. }
  40169. },
  40170. },
  40171. [
  40172. {
  40173. name: "Normal",
  40174. height: math.unit(15, "feet")
  40175. },
  40176. {
  40177. name: "Small",
  40178. height: math.unit(300, "feet")
  40179. },
  40180. {
  40181. name: "Macro",
  40182. height: math.unit(2500, "feet"),
  40183. default: true
  40184. },
  40185. {
  40186. name: "Mega Macro",
  40187. height: math.unit(1500, "miles")
  40188. },
  40189. {
  40190. name: "Giga Macro",
  40191. height: math.unit(1.5e6, "miles")
  40192. },
  40193. ]
  40194. ))
  40195. characterMakers.push(() => makeCharacter(
  40196. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  40197. {
  40198. front: {
  40199. height: math.unit(6, "feet"),
  40200. weight: math.unit(200, "lb"),
  40201. name: "Front",
  40202. image: {
  40203. source: "./media/characters/wulver/front.svg",
  40204. extra: 1724/1632,
  40205. bottom: 130/1854
  40206. }
  40207. },
  40208. frontNsfw: {
  40209. height: math.unit(6, "feet"),
  40210. weight: math.unit(200, "lb"),
  40211. name: "Front (NSFW)",
  40212. image: {
  40213. source: "./media/characters/wulver/front-nsfw.svg",
  40214. extra: 1724/1632,
  40215. bottom: 130/1854
  40216. }
  40217. },
  40218. },
  40219. [
  40220. {
  40221. name: "Human-Sized",
  40222. height: math.unit(6, "feet")
  40223. },
  40224. {
  40225. name: "Normal",
  40226. height: math.unit(4, "meters"),
  40227. default: true
  40228. },
  40229. {
  40230. name: "Large",
  40231. height: math.unit(6, "m")
  40232. },
  40233. ]
  40234. ))
  40235. characterMakers.push(() => makeCharacter(
  40236. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  40237. {
  40238. front: {
  40239. height: math.unit(7, "feet"),
  40240. name: "Front",
  40241. image: {
  40242. source: "./media/characters/maru/front.svg",
  40243. extra: 1595/1570,
  40244. bottom: 0/1595
  40245. }
  40246. },
  40247. },
  40248. [
  40249. {
  40250. name: "Normal",
  40251. height: math.unit(7, "feet"),
  40252. default: true
  40253. },
  40254. {
  40255. name: "Macro",
  40256. height: math.unit(700, "feet")
  40257. },
  40258. {
  40259. name: "Mega Macro",
  40260. height: math.unit(25, "miles")
  40261. },
  40262. ]
  40263. ))
  40264. characterMakers.push(() => makeCharacter(
  40265. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  40266. {
  40267. front: {
  40268. height: math.unit(6, "feet"),
  40269. weight: math.unit(170, "lb"),
  40270. name: "Front",
  40271. image: {
  40272. source: "./media/characters/xenon/front.svg",
  40273. extra: 1376/1305,
  40274. bottom: 56/1432
  40275. }
  40276. },
  40277. back: {
  40278. height: math.unit(6, "feet"),
  40279. weight: math.unit(170, "lb"),
  40280. name: "Back",
  40281. image: {
  40282. source: "./media/characters/xenon/back.svg",
  40283. extra: 1328/1259,
  40284. bottom: 95/1423
  40285. }
  40286. },
  40287. maw: {
  40288. height: math.unit(0.52, "feet"),
  40289. name: "Maw",
  40290. image: {
  40291. source: "./media/characters/xenon/maw.svg"
  40292. }
  40293. },
  40294. hand: {
  40295. height: math.unit(0.82, "feet"),
  40296. name: "Hand",
  40297. image: {
  40298. source: "./media/characters/xenon/hand.svg"
  40299. }
  40300. },
  40301. foot: {
  40302. height: math.unit(1.13, "feet"),
  40303. name: "Foot",
  40304. image: {
  40305. source: "./media/characters/xenon/foot.svg"
  40306. }
  40307. },
  40308. },
  40309. [
  40310. {
  40311. name: "Micro",
  40312. height: math.unit(0.8, "inches")
  40313. },
  40314. {
  40315. name: "Normal",
  40316. height: math.unit(6, "feet")
  40317. },
  40318. {
  40319. name: "Macro",
  40320. height: math.unit(50, "feet"),
  40321. default: true
  40322. },
  40323. {
  40324. name: "Macro+",
  40325. height: math.unit(250, "feet")
  40326. },
  40327. {
  40328. name: "Megamacro",
  40329. height: math.unit(1500, "feet")
  40330. },
  40331. ]
  40332. ))
  40333. characterMakers.push(() => makeCharacter(
  40334. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  40335. {
  40336. front: {
  40337. height: math.unit(7 + 5/12, "feet"),
  40338. name: "Front",
  40339. image: {
  40340. source: "./media/characters/zane/front.svg",
  40341. extra: 1260/1203,
  40342. bottom: 94/1354
  40343. }
  40344. },
  40345. back: {
  40346. height: math.unit(5.05, "feet"),
  40347. name: "Back",
  40348. image: {
  40349. source: "./media/characters/zane/back.svg",
  40350. extra: 893/829,
  40351. bottom: 30/923
  40352. }
  40353. },
  40354. werewolf: {
  40355. height: math.unit(11, "feet"),
  40356. name: "Werewolf",
  40357. image: {
  40358. source: "./media/characters/zane/werewolf.svg",
  40359. extra: 1383/1323,
  40360. bottom: 89/1472
  40361. }
  40362. },
  40363. foot: {
  40364. height: math.unit(1.46, "feet"),
  40365. name: "Foot",
  40366. image: {
  40367. source: "./media/characters/zane/foot.svg"
  40368. }
  40369. },
  40370. footFront: {
  40371. height: math.unit(0.784, "feet"),
  40372. name: "Foot (Front)",
  40373. image: {
  40374. source: "./media/characters/zane/foot-front.svg"
  40375. }
  40376. },
  40377. dick: {
  40378. height: math.unit(1.95, "feet"),
  40379. name: "Dick",
  40380. image: {
  40381. source: "./media/characters/zane/dick.svg"
  40382. }
  40383. },
  40384. dickWerewolf: {
  40385. height: math.unit(3.77, "feet"),
  40386. name: "Dick (Werewolf)",
  40387. image: {
  40388. source: "./media/characters/zane/dick.svg"
  40389. }
  40390. },
  40391. },
  40392. [
  40393. {
  40394. name: "Normal",
  40395. height: math.unit(7 + 5/12, "feet"),
  40396. default: true
  40397. },
  40398. ]
  40399. ))
  40400. characterMakers.push(() => makeCharacter(
  40401. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  40402. {
  40403. front: {
  40404. height: math.unit(6 + 2/12, "feet"),
  40405. weight: math.unit(284, "lb"),
  40406. name: "Front",
  40407. image: {
  40408. source: "./media/characters/benni-desparque/front.svg",
  40409. extra: 1353/1126,
  40410. bottom: 69/1422
  40411. }
  40412. },
  40413. },
  40414. [
  40415. {
  40416. name: "Civilian",
  40417. height: math.unit(6 + 2/12, "feet")
  40418. },
  40419. {
  40420. name: "Normal",
  40421. height: math.unit(98, "feet"),
  40422. default: true
  40423. },
  40424. {
  40425. name: "Kaiju Fighter",
  40426. height: math.unit(268, "feet")
  40427. },
  40428. ]
  40429. ))
  40430. characterMakers.push(() => makeCharacter(
  40431. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  40432. {
  40433. front: {
  40434. height: math.unit(5, "feet"),
  40435. weight: math.unit(105, "lb"),
  40436. name: "Front",
  40437. image: {
  40438. source: "./media/characters/maxine/front.svg",
  40439. extra: 1386/1250,
  40440. bottom: 71/1457
  40441. }
  40442. },
  40443. },
  40444. [
  40445. {
  40446. name: "Normal",
  40447. height: math.unit(5, "feet"),
  40448. default: true
  40449. },
  40450. ]
  40451. ))
  40452. characterMakers.push(() => makeCharacter(
  40453. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  40454. {
  40455. front: {
  40456. height: math.unit(11 + 7/12, "feet"),
  40457. weight: math.unit(9576, "lb"),
  40458. name: "Front",
  40459. image: {
  40460. source: "./media/characters/scaly/front.svg",
  40461. extra: 888/867,
  40462. bottom: 36/924
  40463. }
  40464. },
  40465. },
  40466. [
  40467. {
  40468. name: "Normal",
  40469. height: math.unit(11 + 7/12, "feet"),
  40470. default: true
  40471. },
  40472. ]
  40473. ))
  40474. characterMakers.push(() => makeCharacter(
  40475. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  40476. {
  40477. front: {
  40478. height: math.unit(6 + 3/12, "feet"),
  40479. name: "Front",
  40480. image: {
  40481. source: "./media/characters/saelria/front.svg",
  40482. extra: 1243/1138,
  40483. bottom: 46/1289
  40484. }
  40485. },
  40486. },
  40487. [
  40488. {
  40489. name: "Micro",
  40490. height: math.unit(6, "inches"),
  40491. },
  40492. {
  40493. name: "Normal",
  40494. height: math.unit(6 + 3/12, "feet"),
  40495. default: true
  40496. },
  40497. {
  40498. name: "Macro",
  40499. height: math.unit(25, "feet")
  40500. },
  40501. ]
  40502. ))
  40503. characterMakers.push(() => makeCharacter(
  40504. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  40505. {
  40506. front: {
  40507. height: math.unit(80, "meters"),
  40508. weight: math.unit(7000, "tonnes"),
  40509. name: "Front",
  40510. image: {
  40511. source: "./media/characters/tef/front.svg",
  40512. extra: 2036/1991,
  40513. bottom: 54/2090
  40514. }
  40515. },
  40516. back: {
  40517. height: math.unit(80, "meters"),
  40518. weight: math.unit(7000, "tonnes"),
  40519. name: "Back",
  40520. image: {
  40521. source: "./media/characters/tef/back.svg",
  40522. extra: 2036/1991,
  40523. bottom: 54/2090
  40524. }
  40525. },
  40526. },
  40527. [
  40528. {
  40529. name: "Macro",
  40530. height: math.unit(80, "meters"),
  40531. default: true
  40532. },
  40533. ]
  40534. ))
  40535. characterMakers.push(() => makeCharacter(
  40536. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  40537. {
  40538. front: {
  40539. height: math.unit(13, "feet"),
  40540. weight: math.unit(6, "tons"),
  40541. name: "Front",
  40542. image: {
  40543. source: "./media/characters/rover/front.svg",
  40544. extra: 1233/1156,
  40545. bottom: 50/1283
  40546. }
  40547. },
  40548. back: {
  40549. height: math.unit(13, "feet"),
  40550. weight: math.unit(6, "tons"),
  40551. name: "Back",
  40552. image: {
  40553. source: "./media/characters/rover/back.svg",
  40554. extra: 1327/1258,
  40555. bottom: 39/1366
  40556. }
  40557. },
  40558. },
  40559. [
  40560. {
  40561. name: "Normal",
  40562. height: math.unit(13, "feet"),
  40563. default: true
  40564. },
  40565. {
  40566. name: "Macro",
  40567. height: math.unit(1300, "feet")
  40568. },
  40569. {
  40570. name: "Megamacro",
  40571. height: math.unit(1300, "miles")
  40572. },
  40573. {
  40574. name: "Gigamacro",
  40575. height: math.unit(1300000, "miles")
  40576. },
  40577. ]
  40578. ))
  40579. characterMakers.push(() => makeCharacter(
  40580. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  40581. {
  40582. front: {
  40583. height: math.unit(6, "feet"),
  40584. weight: math.unit(150, "lb"),
  40585. name: "Front",
  40586. image: {
  40587. source: "./media/characters/ariz/front.svg",
  40588. extra: 1401/1346,
  40589. bottom: 5/1406
  40590. }
  40591. },
  40592. },
  40593. [
  40594. {
  40595. name: "Normal",
  40596. height: math.unit(10, "feet"),
  40597. default: true
  40598. },
  40599. ]
  40600. ))
  40601. characterMakers.push(() => makeCharacter(
  40602. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  40603. {
  40604. front: {
  40605. height: math.unit(6, "feet"),
  40606. weight: math.unit(140, "lb"),
  40607. name: "Front",
  40608. image: {
  40609. source: "./media/characters/sigrun/front.svg",
  40610. extra: 1418/1359,
  40611. bottom: 27/1445
  40612. }
  40613. },
  40614. },
  40615. [
  40616. {
  40617. name: "Macro",
  40618. height: math.unit(35, "feet"),
  40619. default: true
  40620. },
  40621. ]
  40622. ))
  40623. characterMakers.push(() => makeCharacter(
  40624. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  40625. {
  40626. front: {
  40627. height: math.unit(6, "feet"),
  40628. weight: math.unit(150, "lb"),
  40629. name: "Front",
  40630. image: {
  40631. source: "./media/characters/numin/front.svg",
  40632. extra: 1433/1388,
  40633. bottom: 12/1445
  40634. }
  40635. },
  40636. },
  40637. [
  40638. {
  40639. name: "Macro",
  40640. height: math.unit(21.5, "km"),
  40641. default: true
  40642. },
  40643. ]
  40644. ))
  40645. characterMakers.push(() => makeCharacter(
  40646. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  40647. {
  40648. front: {
  40649. height: math.unit(6, "feet"),
  40650. weight: math.unit(463, "lb"),
  40651. name: "Front",
  40652. image: {
  40653. source: "./media/characters/melwa/front.svg",
  40654. extra: 1307/1248,
  40655. bottom: 93/1400
  40656. }
  40657. },
  40658. },
  40659. [
  40660. {
  40661. name: "Macro",
  40662. height: math.unit(50, "meters"),
  40663. default: true
  40664. },
  40665. ]
  40666. ))
  40667. characterMakers.push(() => makeCharacter(
  40668. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  40669. {
  40670. front: {
  40671. height: math.unit(325, "feet"),
  40672. name: "Front",
  40673. image: {
  40674. source: "./media/characters/zorkaiju/front.svg",
  40675. extra: 1955/1814,
  40676. bottom: 40/1995
  40677. }
  40678. },
  40679. frontExtended: {
  40680. height: math.unit(325, "feet"),
  40681. name: "Front (Extended)",
  40682. image: {
  40683. source: "./media/characters/zorkaiju/front-extended.svg",
  40684. extra: 1955/1814,
  40685. bottom: 40/1995
  40686. }
  40687. },
  40688. side: {
  40689. height: math.unit(325, "feet"),
  40690. name: "Side",
  40691. image: {
  40692. source: "./media/characters/zorkaiju/side.svg",
  40693. extra: 1495/1396,
  40694. bottom: 17/1512
  40695. }
  40696. },
  40697. sideExtended: {
  40698. height: math.unit(325, "feet"),
  40699. name: "Side (Extended)",
  40700. image: {
  40701. source: "./media/characters/zorkaiju/side-extended.svg",
  40702. extra: 1495/1396,
  40703. bottom: 17/1512
  40704. }
  40705. },
  40706. back: {
  40707. height: math.unit(325, "feet"),
  40708. name: "Back",
  40709. image: {
  40710. source: "./media/characters/zorkaiju/back.svg",
  40711. extra: 1959/1821,
  40712. bottom: 31/1990
  40713. }
  40714. },
  40715. backExtended: {
  40716. height: math.unit(325, "feet"),
  40717. name: "Back (Extended)",
  40718. image: {
  40719. source: "./media/characters/zorkaiju/back-extended.svg",
  40720. extra: 1959/1821,
  40721. bottom: 31/1990
  40722. }
  40723. },
  40724. hand: {
  40725. height: math.unit(58.4, "feet"),
  40726. name: "Hand",
  40727. image: {
  40728. source: "./media/characters/zorkaiju/hand.svg"
  40729. }
  40730. },
  40731. handExtended: {
  40732. height: math.unit(61.4, "feet"),
  40733. name: "Hand (Extended)",
  40734. image: {
  40735. source: "./media/characters/zorkaiju/hand-extended.svg"
  40736. }
  40737. },
  40738. foot: {
  40739. height: math.unit(95, "feet"),
  40740. name: "Foot",
  40741. image: {
  40742. source: "./media/characters/zorkaiju/foot.svg"
  40743. }
  40744. },
  40745. leftArm: {
  40746. height: math.unit(59, "feet"),
  40747. name: "Left Arm",
  40748. image: {
  40749. source: "./media/characters/zorkaiju/left-arm.svg"
  40750. }
  40751. },
  40752. rightArm: {
  40753. height: math.unit(59, "feet"),
  40754. name: "Right Arm",
  40755. image: {
  40756. source: "./media/characters/zorkaiju/right-arm.svg"
  40757. }
  40758. },
  40759. tail: {
  40760. height: math.unit(104, "feet"),
  40761. name: "Tail",
  40762. image: {
  40763. source: "./media/characters/zorkaiju/tail.svg"
  40764. }
  40765. },
  40766. tailExtended: {
  40767. height: math.unit(104, "feet"),
  40768. name: "Tail (Extended)",
  40769. image: {
  40770. source: "./media/characters/zorkaiju/tail-extended.svg"
  40771. }
  40772. },
  40773. tailBottom: {
  40774. height: math.unit(104, "feet"),
  40775. name: "Tail Bottom",
  40776. image: {
  40777. source: "./media/characters/zorkaiju/tail-bottom.svg"
  40778. }
  40779. },
  40780. crystal: {
  40781. height: math.unit(27.54, "feet"),
  40782. name: "Crystal",
  40783. image: {
  40784. source: "./media/characters/zorkaiju/crystal.svg"
  40785. }
  40786. },
  40787. },
  40788. [
  40789. {
  40790. name: "Kaiju",
  40791. height: math.unit(325, "feet"),
  40792. default: true
  40793. },
  40794. ]
  40795. ))
  40796. characterMakers.push(() => makeCharacter(
  40797. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  40798. {
  40799. front: {
  40800. height: math.unit(6 + 1/12, "feet"),
  40801. weight: math.unit(115, "lb"),
  40802. name: "Front",
  40803. image: {
  40804. source: "./media/characters/bailey-belfry/front.svg",
  40805. extra: 1240/1121,
  40806. bottom: 101/1341
  40807. }
  40808. },
  40809. },
  40810. [
  40811. {
  40812. name: "Normal",
  40813. height: math.unit(6 + 1/12, "feet"),
  40814. default: true
  40815. },
  40816. ]
  40817. ))
  40818. characterMakers.push(() => makeCharacter(
  40819. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  40820. {
  40821. side: {
  40822. height: math.unit(4, "meters"),
  40823. weight: math.unit(250, "kg"),
  40824. name: "Side",
  40825. image: {
  40826. source: "./media/characters/blacky/side.svg",
  40827. extra: 1027/919,
  40828. bottom: 43/1070
  40829. }
  40830. },
  40831. maw: {
  40832. height: math.unit(1, "meters"),
  40833. name: "Maw",
  40834. image: {
  40835. source: "./media/characters/blacky/maw.svg"
  40836. }
  40837. },
  40838. paw: {
  40839. height: math.unit(1, "meters"),
  40840. name: "Paw",
  40841. image: {
  40842. source: "./media/characters/blacky/paw.svg"
  40843. }
  40844. },
  40845. },
  40846. [
  40847. {
  40848. name: "Normal",
  40849. height: math.unit(4, "meters"),
  40850. default: true
  40851. },
  40852. ]
  40853. ))
  40854. characterMakers.push(() => makeCharacter(
  40855. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  40856. {
  40857. front: {
  40858. height: math.unit(170, "cm"),
  40859. weight: math.unit(66, "kg"),
  40860. name: "Front",
  40861. image: {
  40862. source: "./media/characters/thux-ei/front.svg",
  40863. extra: 1109/1011,
  40864. bottom: 8/1117
  40865. }
  40866. },
  40867. },
  40868. [
  40869. {
  40870. name: "Normal",
  40871. height: math.unit(170, "cm"),
  40872. default: true
  40873. },
  40874. ]
  40875. ))
  40876. characterMakers.push(() => makeCharacter(
  40877. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  40878. {
  40879. front: {
  40880. height: math.unit(5, "feet"),
  40881. weight: math.unit(120, "lb"),
  40882. name: "Front",
  40883. image: {
  40884. source: "./media/characters/roxanne-voltaire/front.svg",
  40885. extra: 1901/1779,
  40886. bottom: 53/1954
  40887. }
  40888. },
  40889. },
  40890. [
  40891. {
  40892. name: "Normal",
  40893. height: math.unit(5, "feet"),
  40894. default: true
  40895. },
  40896. {
  40897. name: "Giant",
  40898. height: math.unit(50, "feet")
  40899. },
  40900. {
  40901. name: "Titan",
  40902. height: math.unit(500, "feet")
  40903. },
  40904. {
  40905. name: "Macro",
  40906. height: math.unit(5000, "feet")
  40907. },
  40908. {
  40909. name: "Megamacro",
  40910. height: math.unit(50000, "feet")
  40911. },
  40912. {
  40913. name: "Gigamacro",
  40914. height: math.unit(500000, "feet")
  40915. },
  40916. {
  40917. name: "Teramacro",
  40918. height: math.unit(5e6, "feet")
  40919. },
  40920. ]
  40921. ))
  40922. characterMakers.push(() => makeCharacter(
  40923. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  40924. {
  40925. front: {
  40926. height: math.unit(6 + 2/12, "feet"),
  40927. name: "Front",
  40928. image: {
  40929. source: "./media/characters/squeaks/front.svg",
  40930. extra: 1823/1768,
  40931. bottom: 138/1961
  40932. }
  40933. },
  40934. },
  40935. [
  40936. {
  40937. name: "Micro",
  40938. height: math.unit(0.5, "inches")
  40939. },
  40940. {
  40941. name: "Normal",
  40942. height: math.unit(6 + 2/12, "feet"),
  40943. default: true
  40944. },
  40945. {
  40946. name: "Macro",
  40947. height: math.unit(600, "feet")
  40948. },
  40949. ]
  40950. ))
  40951. characterMakers.push(() => makeCharacter(
  40952. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  40953. {
  40954. front: {
  40955. height: math.unit(1.72, "meters"),
  40956. name: "Front",
  40957. image: {
  40958. source: "./media/characters/archinger/front.svg",
  40959. extra: 1861/1675,
  40960. bottom: 125/1986
  40961. }
  40962. },
  40963. back: {
  40964. height: math.unit(1.72, "meters"),
  40965. name: "Back",
  40966. image: {
  40967. source: "./media/characters/archinger/back.svg",
  40968. extra: 1844/1701,
  40969. bottom: 104/1948
  40970. }
  40971. },
  40972. cock: {
  40973. height: math.unit(0.59, "feet"),
  40974. name: "Cock",
  40975. image: {
  40976. source: "./media/characters/archinger/cock.svg"
  40977. }
  40978. },
  40979. },
  40980. [
  40981. {
  40982. name: "Normal",
  40983. height: math.unit(1.72, "meters"),
  40984. default: true
  40985. },
  40986. {
  40987. name: "Macro",
  40988. height: math.unit(84, "meters")
  40989. },
  40990. {
  40991. name: "Macro+",
  40992. height: math.unit(112, "meters")
  40993. },
  40994. {
  40995. name: "Macro++",
  40996. height: math.unit(960, "meters")
  40997. },
  40998. {
  40999. name: "Macro+++",
  41000. height: math.unit(4, "km")
  41001. },
  41002. {
  41003. name: "Macro++++",
  41004. height: math.unit(48, "km")
  41005. },
  41006. {
  41007. name: "Macro+++++",
  41008. height: math.unit(4500, "km")
  41009. },
  41010. ]
  41011. ))
  41012. characterMakers.push(() => makeCharacter(
  41013. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  41014. {
  41015. front: {
  41016. height: math.unit(5 + 5/12, "feet"),
  41017. name: "Front",
  41018. image: {
  41019. source: "./media/characters/alsnapz/front.svg",
  41020. extra: 1157/1065,
  41021. bottom: 42/1199
  41022. }
  41023. },
  41024. },
  41025. [
  41026. {
  41027. name: "Normal",
  41028. height: math.unit(5 + 5/12, "feet"),
  41029. default: true
  41030. },
  41031. ]
  41032. ))
  41033. characterMakers.push(() => makeCharacter(
  41034. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  41035. {
  41036. side: {
  41037. height: math.unit(3.2, "earths"),
  41038. name: "Side",
  41039. image: {
  41040. source: "./media/characters/mag/side.svg",
  41041. extra: 1331/1008,
  41042. bottom: 52/1383
  41043. }
  41044. },
  41045. wing: {
  41046. height: math.unit(1.94, "earths"),
  41047. name: "Wing",
  41048. image: {
  41049. source: "./media/characters/mag/wing.svg"
  41050. }
  41051. },
  41052. dick: {
  41053. height: math.unit(1.8, "earths"),
  41054. name: "Dick",
  41055. image: {
  41056. source: "./media/characters/mag/dick.svg"
  41057. }
  41058. },
  41059. ass: {
  41060. height: math.unit(1.33, "earths"),
  41061. name: "Ass",
  41062. image: {
  41063. source: "./media/characters/mag/ass.svg"
  41064. }
  41065. },
  41066. head: {
  41067. height: math.unit(1.1, "earths"),
  41068. name: "Head",
  41069. image: {
  41070. source: "./media/characters/mag/head.svg"
  41071. }
  41072. },
  41073. maw: {
  41074. height: math.unit(1.62, "earths"),
  41075. name: "Maw",
  41076. image: {
  41077. source: "./media/characters/mag/maw.svg"
  41078. }
  41079. },
  41080. },
  41081. [
  41082. {
  41083. name: "Small",
  41084. height: math.unit(162, "feet")
  41085. },
  41086. {
  41087. name: "Normal",
  41088. height: math.unit(3.2, "earths"),
  41089. default: true
  41090. },
  41091. ]
  41092. ))
  41093. characterMakers.push(() => makeCharacter(
  41094. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  41095. {
  41096. front: {
  41097. height: math.unit(512, "feet"),
  41098. weight: math.unit(63509, "tonnes"),
  41099. name: "Front",
  41100. image: {
  41101. source: "./media/characters/vorrel-harroc/front.svg",
  41102. extra: 1075/1063,
  41103. bottom: 62/1137
  41104. }
  41105. },
  41106. },
  41107. [
  41108. {
  41109. name: "Normal",
  41110. height: math.unit(10, "feet")
  41111. },
  41112. {
  41113. name: "Macro",
  41114. height: math.unit(512, "feet"),
  41115. default: true
  41116. },
  41117. {
  41118. name: "Megamacro",
  41119. height: math.unit(256, "miles")
  41120. },
  41121. {
  41122. name: "Gigamacro",
  41123. height: math.unit(4096, "miles")
  41124. },
  41125. ]
  41126. ))
  41127. characterMakers.push(() => makeCharacter(
  41128. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  41129. {
  41130. side: {
  41131. height: math.unit(50, "feet"),
  41132. name: "Side",
  41133. image: {
  41134. source: "./media/characters/froimar/side.svg",
  41135. extra: 855/638,
  41136. bottom: 99/954
  41137. }
  41138. },
  41139. },
  41140. [
  41141. {
  41142. name: "Macro",
  41143. height: math.unit(50, "feet"),
  41144. default: true
  41145. },
  41146. ]
  41147. ))
  41148. characterMakers.push(() => makeCharacter(
  41149. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  41150. {
  41151. front: {
  41152. height: math.unit(210, "miles"),
  41153. name: "Front",
  41154. image: {
  41155. source: "./media/characters/timothy/front.svg",
  41156. extra: 1007/943,
  41157. bottom: 62/1069
  41158. }
  41159. },
  41160. frontSkirt: {
  41161. height: math.unit(210, "miles"),
  41162. name: "Front (Skirt)",
  41163. image: {
  41164. source: "./media/characters/timothy/front-skirt.svg",
  41165. extra: 1007/943,
  41166. bottom: 62/1069
  41167. }
  41168. },
  41169. frontCoat: {
  41170. height: math.unit(210, "miles"),
  41171. name: "Front (Coat)",
  41172. image: {
  41173. source: "./media/characters/timothy/front-coat.svg",
  41174. extra: 1007/943,
  41175. bottom: 62/1069
  41176. }
  41177. },
  41178. },
  41179. [
  41180. {
  41181. name: "Macro",
  41182. height: math.unit(210, "miles"),
  41183. default: true
  41184. },
  41185. {
  41186. name: "Megamacro",
  41187. height: math.unit(210000, "miles")
  41188. },
  41189. ]
  41190. ))
  41191. characterMakers.push(() => makeCharacter(
  41192. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  41193. {
  41194. front: {
  41195. height: math.unit(188, "feet"),
  41196. name: "Front",
  41197. image: {
  41198. source: "./media/characters/pyotr/front.svg",
  41199. extra: 1912/1826,
  41200. bottom: 18/1930
  41201. }
  41202. },
  41203. },
  41204. [
  41205. {
  41206. name: "Macro",
  41207. height: math.unit(188, "feet"),
  41208. default: true
  41209. },
  41210. {
  41211. name: "Megamacro",
  41212. height: math.unit(8, "miles")
  41213. },
  41214. ]
  41215. ))
  41216. characterMakers.push(() => makeCharacter(
  41217. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  41218. {
  41219. side: {
  41220. height: math.unit(10, "feet"),
  41221. weight: math.unit(4500, "lb"),
  41222. name: "Side",
  41223. image: {
  41224. source: "./media/characters/ackart/side.svg",
  41225. extra: 1776/1668,
  41226. bottom: 116/1892
  41227. }
  41228. },
  41229. },
  41230. [
  41231. {
  41232. name: "Normal",
  41233. height: math.unit(10, "feet"),
  41234. default: true
  41235. },
  41236. ]
  41237. ))
  41238. characterMakers.push(() => makeCharacter(
  41239. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  41240. {
  41241. side: {
  41242. height: math.unit(21, "feet"),
  41243. name: "Side",
  41244. image: {
  41245. source: "./media/characters/nolow/side.svg",
  41246. extra: 1484/1434,
  41247. bottom: 85/1569
  41248. }
  41249. },
  41250. sideErect: {
  41251. height: math.unit(21, "feet"),
  41252. name: "Side-erect",
  41253. image: {
  41254. source: "./media/characters/nolow/side-erect.svg",
  41255. extra: 1484/1434,
  41256. bottom: 85/1569
  41257. }
  41258. },
  41259. },
  41260. [
  41261. {
  41262. name: "Regular",
  41263. height: math.unit(12, "feet")
  41264. },
  41265. {
  41266. name: "Big Chee",
  41267. height: math.unit(21, "feet"),
  41268. default: true
  41269. },
  41270. ]
  41271. ))
  41272. characterMakers.push(() => makeCharacter(
  41273. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  41274. {
  41275. front: {
  41276. height: math.unit(7, "feet"),
  41277. weight: math.unit(250, "lb"),
  41278. name: "Front",
  41279. image: {
  41280. source: "./media/characters/nines/front.svg",
  41281. extra: 1741/1607,
  41282. bottom: 41/1782
  41283. }
  41284. },
  41285. side: {
  41286. height: math.unit(7, "feet"),
  41287. weight: math.unit(250, "lb"),
  41288. name: "Side",
  41289. image: {
  41290. source: "./media/characters/nines/side.svg",
  41291. extra: 1854/1735,
  41292. bottom: 93/1947
  41293. }
  41294. },
  41295. back: {
  41296. height: math.unit(7, "feet"),
  41297. weight: math.unit(250, "lb"),
  41298. name: "Back",
  41299. image: {
  41300. source: "./media/characters/nines/back.svg",
  41301. extra: 1748/1615,
  41302. bottom: 20/1768
  41303. }
  41304. },
  41305. },
  41306. [
  41307. {
  41308. name: "Megamacro",
  41309. height: math.unit(99, "km"),
  41310. default: true
  41311. },
  41312. ]
  41313. ))
  41314. characterMakers.push(() => makeCharacter(
  41315. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  41316. {
  41317. front: {
  41318. height: math.unit(5 + 10/12, "feet"),
  41319. weight: math.unit(210, "lb"),
  41320. name: "Front",
  41321. image: {
  41322. source: "./media/characters/zenith/front.svg",
  41323. extra: 1531/1452,
  41324. bottom: 198/1729
  41325. }
  41326. },
  41327. back: {
  41328. height: math.unit(5 + 10/12, "feet"),
  41329. weight: math.unit(210, "lb"),
  41330. name: "Back",
  41331. image: {
  41332. source: "./media/characters/zenith/back.svg",
  41333. extra: 1571/1487,
  41334. bottom: 75/1646
  41335. }
  41336. },
  41337. },
  41338. [
  41339. {
  41340. name: "Normal",
  41341. height: math.unit(5 + 10/12, "feet"),
  41342. default: true
  41343. }
  41344. ]
  41345. ))
  41346. characterMakers.push(() => makeCharacter(
  41347. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  41348. {
  41349. front: {
  41350. height: math.unit(4, "feet"),
  41351. weight: math.unit(60, "lb"),
  41352. name: "Front",
  41353. image: {
  41354. source: "./media/characters/jasper/front.svg",
  41355. extra: 1450/1379,
  41356. bottom: 19/1469
  41357. }
  41358. },
  41359. },
  41360. [
  41361. {
  41362. name: "Normal",
  41363. height: math.unit(4, "feet"),
  41364. default: true
  41365. },
  41366. ]
  41367. ))
  41368. characterMakers.push(() => makeCharacter(
  41369. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  41370. {
  41371. front: {
  41372. height: math.unit(6 + 5/12, "feet"),
  41373. weight: math.unit(290, "lb"),
  41374. name: "Front",
  41375. image: {
  41376. source: "./media/characters/tiberius-thyben/front.svg",
  41377. extra: 757/739,
  41378. bottom: 39/796
  41379. }
  41380. },
  41381. },
  41382. [
  41383. {
  41384. name: "Micro",
  41385. height: math.unit(1.5, "inches")
  41386. },
  41387. {
  41388. name: "Normal",
  41389. height: math.unit(6 + 5/12, "feet"),
  41390. default: true
  41391. },
  41392. {
  41393. name: "Macro",
  41394. height: math.unit(300, "feet")
  41395. },
  41396. ]
  41397. ))
  41398. characterMakers.push(() => makeCharacter(
  41399. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  41400. {
  41401. front: {
  41402. height: math.unit(5 + 6/12, "feet"),
  41403. weight: math.unit(60, "kg"),
  41404. name: "Front",
  41405. image: {
  41406. source: "./media/characters/sabre/front.svg",
  41407. extra: 738/671,
  41408. bottom: 27/765
  41409. }
  41410. },
  41411. },
  41412. [
  41413. {
  41414. name: "Teeny",
  41415. height: math.unit(2, "inches")
  41416. },
  41417. {
  41418. name: "Smol",
  41419. height: math.unit(8, "inches")
  41420. },
  41421. {
  41422. name: "Normal",
  41423. height: math.unit(5 + 6/12, "feet"),
  41424. default: true
  41425. },
  41426. {
  41427. name: "Mini-Macro",
  41428. height: math.unit(15, "feet")
  41429. },
  41430. {
  41431. name: "Macro",
  41432. height: math.unit(50, "feet")
  41433. },
  41434. ]
  41435. ))
  41436. characterMakers.push(() => makeCharacter(
  41437. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  41438. {
  41439. front: {
  41440. height: math.unit(6 + 4/12, "feet"),
  41441. weight: math.unit(170, "lb"),
  41442. name: "Front",
  41443. image: {
  41444. source: "./media/characters/charlie/front.svg",
  41445. extra: 1348/1228,
  41446. bottom: 15/1363
  41447. }
  41448. },
  41449. },
  41450. [
  41451. {
  41452. name: "Macro",
  41453. height: math.unit(1700, "meters"),
  41454. default: true
  41455. },
  41456. {
  41457. name: "MegaMacro",
  41458. height: math.unit(20400, "meters")
  41459. },
  41460. ]
  41461. ))
  41462. characterMakers.push(() => makeCharacter(
  41463. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  41464. {
  41465. front: {
  41466. height: math.unit(6 + 3/12, "feet"),
  41467. weight: math.unit(185, "lb"),
  41468. name: "Front",
  41469. image: {
  41470. source: "./media/characters/susan-grant/front.svg",
  41471. extra: 1351/1327,
  41472. bottom: 26/1377
  41473. }
  41474. },
  41475. },
  41476. [
  41477. {
  41478. name: "Normal",
  41479. height: math.unit(6 + 3/12, "feet"),
  41480. default: true
  41481. },
  41482. {
  41483. name: "Macro",
  41484. height: math.unit(225, "feet")
  41485. },
  41486. {
  41487. name: "Macro+",
  41488. height: math.unit(900, "feet")
  41489. },
  41490. {
  41491. name: "MegaMacro",
  41492. height: math.unit(14400, "feet")
  41493. },
  41494. ]
  41495. ))
  41496. characterMakers.push(() => makeCharacter(
  41497. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  41498. {
  41499. front: {
  41500. height: math.unit(5 + 4/12, "feet"),
  41501. weight: math.unit(110, "lb"),
  41502. name: "Front",
  41503. image: {
  41504. source: "./media/characters/axel-isanov/front.svg",
  41505. extra: 1096/1065,
  41506. bottom: 13/1109
  41507. }
  41508. },
  41509. },
  41510. [
  41511. {
  41512. name: "Normal",
  41513. height: math.unit(5 + 4/12, "feet"),
  41514. default: true
  41515. },
  41516. ]
  41517. ))
  41518. characterMakers.push(() => makeCharacter(
  41519. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  41520. {
  41521. front: {
  41522. height: math.unit(9, "feet"),
  41523. weight: math.unit(467, "lb"),
  41524. name: "Front",
  41525. image: {
  41526. source: "./media/characters/necahual/front.svg",
  41527. extra: 920/873,
  41528. bottom: 26/946
  41529. }
  41530. },
  41531. back: {
  41532. height: math.unit(9, "feet"),
  41533. weight: math.unit(467, "lb"),
  41534. name: "Back",
  41535. image: {
  41536. source: "./media/characters/necahual/back.svg",
  41537. extra: 930/884,
  41538. bottom: 16/946
  41539. }
  41540. },
  41541. frontUnderwear: {
  41542. height: math.unit(9, "feet"),
  41543. weight: math.unit(467, "lb"),
  41544. name: "Front (Underwear)",
  41545. image: {
  41546. source: "./media/characters/necahual/front-underwear.svg",
  41547. extra: 920/873,
  41548. bottom: 26/946
  41549. }
  41550. },
  41551. frontDressed: {
  41552. height: math.unit(9, "feet"),
  41553. weight: math.unit(467, "lb"),
  41554. name: "Front (Dressed)",
  41555. image: {
  41556. source: "./media/characters/necahual/front-dressed.svg",
  41557. extra: 920/873,
  41558. bottom: 26/946
  41559. }
  41560. },
  41561. },
  41562. [
  41563. {
  41564. name: "Comprsesed",
  41565. height: math.unit(9, "feet")
  41566. },
  41567. {
  41568. name: "Natural",
  41569. height: math.unit(15, "feet"),
  41570. default: true
  41571. },
  41572. {
  41573. name: "Boosted",
  41574. height: math.unit(50, "feet")
  41575. },
  41576. {
  41577. name: "Boosted+",
  41578. height: math.unit(150, "feet")
  41579. },
  41580. {
  41581. name: "Max",
  41582. height: math.unit(500, "feet")
  41583. },
  41584. ]
  41585. ))
  41586. characterMakers.push(() => makeCharacter(
  41587. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  41588. {
  41589. front: {
  41590. height: math.unit(22 + 1/12, "feet"),
  41591. weight: math.unit(3200, "lb"),
  41592. name: "Front",
  41593. image: {
  41594. source: "./media/characters/theo-acacia/front.svg",
  41595. extra: 1796/1741,
  41596. bottom: 83/1879
  41597. }
  41598. },
  41599. frontUnderwear: {
  41600. height: math.unit(22 + 1/12, "feet"),
  41601. weight: math.unit(3200, "lb"),
  41602. name: "Front (Underwear)",
  41603. image: {
  41604. source: "./media/characters/theo-acacia/front-underwear.svg",
  41605. extra: 1796/1741,
  41606. bottom: 83/1879
  41607. }
  41608. },
  41609. frontNude: {
  41610. height: math.unit(22 + 1/12, "feet"),
  41611. weight: math.unit(3200, "lb"),
  41612. name: "Front (Nude)",
  41613. image: {
  41614. source: "./media/characters/theo-acacia/front-nude.svg",
  41615. extra: 1796/1741,
  41616. bottom: 83/1879
  41617. }
  41618. },
  41619. },
  41620. [
  41621. {
  41622. name: "Normal",
  41623. height: math.unit(22 + 1/12, "feet"),
  41624. default: true
  41625. },
  41626. ]
  41627. ))
  41628. characterMakers.push(() => makeCharacter(
  41629. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41630. {
  41631. front: {
  41632. height: math.unit(20, "feet"),
  41633. name: "Front",
  41634. image: {
  41635. source: "./media/characters/astra/front.svg",
  41636. extra: 1850/1714,
  41637. bottom: 106/1956
  41638. }
  41639. },
  41640. frontUndressed: {
  41641. height: math.unit(20, "feet"),
  41642. name: "Front (Undressed)",
  41643. image: {
  41644. source: "./media/characters/astra/front-undressed.svg",
  41645. extra: 1926/1749,
  41646. bottom: 0/1926
  41647. }
  41648. },
  41649. hand: {
  41650. height: math.unit(1.53, "feet"),
  41651. name: "Hand",
  41652. image: {
  41653. source: "./media/characters/astra/hand.svg"
  41654. }
  41655. },
  41656. paw: {
  41657. height: math.unit(1.53, "feet"),
  41658. name: "Paw",
  41659. image: {
  41660. source: "./media/characters/astra/paw.svg"
  41661. }
  41662. },
  41663. },
  41664. [
  41665. {
  41666. name: "Smallest",
  41667. height: math.unit(20, "feet")
  41668. },
  41669. {
  41670. name: "Normal",
  41671. height: math.unit(1e9, "miles"),
  41672. default: true
  41673. },
  41674. {
  41675. name: "Larger",
  41676. height: math.unit(5, "multiverses")
  41677. },
  41678. {
  41679. name: "Largest",
  41680. height: math.unit(1e9, "multiverses")
  41681. },
  41682. ]
  41683. ))
  41684. characterMakers.push(() => makeCharacter(
  41685. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41686. {
  41687. front: {
  41688. height: math.unit(8, "feet"),
  41689. name: "Front",
  41690. image: {
  41691. source: "./media/characters/breanna/front.svg",
  41692. extra: 1912/1632,
  41693. bottom: 33/1945
  41694. }
  41695. },
  41696. },
  41697. [
  41698. {
  41699. name: "Smallest",
  41700. height: math.unit(8, "feet")
  41701. },
  41702. {
  41703. name: "Normal",
  41704. height: math.unit(1, "mile"),
  41705. default: true
  41706. },
  41707. {
  41708. name: "Maximum",
  41709. height: math.unit(1500000000000, "lightyears")
  41710. },
  41711. ]
  41712. ))
  41713. characterMakers.push(() => makeCharacter(
  41714. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  41715. {
  41716. front: {
  41717. height: math.unit(5 + 11/12, "feet"),
  41718. weight: math.unit(155, "lb"),
  41719. name: "Front",
  41720. image: {
  41721. source: "./media/characters/cai/front.svg",
  41722. extra: 1823/1702,
  41723. bottom: 32/1855
  41724. }
  41725. },
  41726. back: {
  41727. height: math.unit(5 + 11/12, "feet"),
  41728. weight: math.unit(155, "lb"),
  41729. name: "Back",
  41730. image: {
  41731. source: "./media/characters/cai/back.svg",
  41732. extra: 1809/1708,
  41733. bottom: 31/1840
  41734. }
  41735. },
  41736. },
  41737. [
  41738. {
  41739. name: "Normal",
  41740. height: math.unit(5 + 11/12, "feet"),
  41741. default: true
  41742. },
  41743. {
  41744. name: "Big",
  41745. height: math.unit(15, "feet")
  41746. },
  41747. {
  41748. name: "Macro",
  41749. height: math.unit(200, "feet")
  41750. },
  41751. ]
  41752. ))
  41753. characterMakers.push(() => makeCharacter(
  41754. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  41755. {
  41756. front: {
  41757. height: math.unit(5 + 6/12, "feet"),
  41758. weight: math.unit(160, "lb"),
  41759. name: "Front",
  41760. image: {
  41761. source: "./media/characters/zanna-virtuedòttir/front.svg",
  41762. extra: 1227/1174,
  41763. bottom: 37/1264
  41764. }
  41765. },
  41766. },
  41767. [
  41768. {
  41769. name: "Macro",
  41770. height: math.unit(444, "meters"),
  41771. default: true
  41772. },
  41773. ]
  41774. ))
  41775. characterMakers.push(() => makeCharacter(
  41776. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  41777. {
  41778. front: {
  41779. height: math.unit(18 + 7/12, "feet"),
  41780. name: "Front",
  41781. image: {
  41782. source: "./media/characters/rex/front.svg",
  41783. extra: 1941/1807,
  41784. bottom: 66/2007
  41785. }
  41786. },
  41787. back: {
  41788. height: math.unit(18 + 7/12, "feet"),
  41789. name: "Back",
  41790. image: {
  41791. source: "./media/characters/rex/back.svg",
  41792. extra: 1937/1822,
  41793. bottom: 42/1979
  41794. }
  41795. },
  41796. boot: {
  41797. height: math.unit(3.45, "feet"),
  41798. name: "Boot",
  41799. image: {
  41800. source: "./media/characters/rex/boot.svg"
  41801. }
  41802. },
  41803. paw: {
  41804. height: math.unit(4.17, "feet"),
  41805. name: "Paw",
  41806. image: {
  41807. source: "./media/characters/rex/paw.svg"
  41808. }
  41809. },
  41810. head: {
  41811. height: math.unit(6.728, "feet"),
  41812. name: "Head",
  41813. image: {
  41814. source: "./media/characters/rex/head.svg"
  41815. }
  41816. },
  41817. },
  41818. [
  41819. {
  41820. name: "Nano",
  41821. height: math.unit(18 + 7/12, "feet")
  41822. },
  41823. {
  41824. name: "Micro",
  41825. height: math.unit(1.5, "megameters")
  41826. },
  41827. {
  41828. name: "Normal",
  41829. height: math.unit(440, "megameters"),
  41830. default: true
  41831. },
  41832. {
  41833. name: "Macro",
  41834. height: math.unit(2.5, "gigameters")
  41835. },
  41836. {
  41837. name: "Gigamacro",
  41838. height: math.unit(2, "galaxies")
  41839. },
  41840. ]
  41841. ))
  41842. characterMakers.push(() => makeCharacter(
  41843. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  41844. {
  41845. side: {
  41846. height: math.unit(32, "feet"),
  41847. weight: math.unit(250000, "lb"),
  41848. name: "Side",
  41849. image: {
  41850. source: "./media/characters/silverwing/side.svg",
  41851. extra: 1100/1019,
  41852. bottom: 204/1304
  41853. }
  41854. },
  41855. },
  41856. [
  41857. {
  41858. name: "Normal",
  41859. height: math.unit(32, "feet"),
  41860. default: true
  41861. },
  41862. ]
  41863. ))
  41864. characterMakers.push(() => makeCharacter(
  41865. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  41866. {
  41867. front: {
  41868. height: math.unit(6 + 6/12, "feet"),
  41869. weight: math.unit(350, "lb"),
  41870. name: "Front",
  41871. image: {
  41872. source: "./media/characters/tristan-hawthorne/front.svg",
  41873. extra: 1159/1124,
  41874. bottom: 37/1196
  41875. },
  41876. form: "labrador",
  41877. default: true
  41878. },
  41879. skunkFront: {
  41880. height: math.unit(4 + 6/12, "feet"),
  41881. weight: math.unit(120, "lb"),
  41882. name: "Front",
  41883. image: {
  41884. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  41885. extra: 1609/1551,
  41886. bottom: 169/1778
  41887. },
  41888. form: "skunk",
  41889. default: true
  41890. },
  41891. },
  41892. [
  41893. {
  41894. name: "Normal",
  41895. height: math.unit(6 + 6/12, "feet"),
  41896. form: "labrador",
  41897. default: true
  41898. },
  41899. {
  41900. name: "Normal",
  41901. height: math.unit(4 + 6/12, "feet"),
  41902. form: "skunk",
  41903. default: true
  41904. },
  41905. ],
  41906. {
  41907. "labrador": {
  41908. name: "Labrador",
  41909. default: true
  41910. },
  41911. "skunk": {
  41912. name: "Skunk"
  41913. }
  41914. }
  41915. ))
  41916. characterMakers.push(() => makeCharacter(
  41917. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  41918. {
  41919. front: {
  41920. height: math.unit(5 + 11/12, "feet"),
  41921. weight: math.unit(190, "lb"),
  41922. name: "Front",
  41923. image: {
  41924. source: "./media/characters/mizu/front.svg",
  41925. extra: 1988/1788,
  41926. bottom: 14/2002
  41927. }
  41928. },
  41929. },
  41930. [
  41931. {
  41932. name: "Normal",
  41933. height: math.unit(5 + 11/12, "feet"),
  41934. default: true
  41935. },
  41936. ]
  41937. ))
  41938. characterMakers.push(() => makeCharacter(
  41939. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  41940. {
  41941. front: {
  41942. height: math.unit(1.7, "feet"),
  41943. weight: math.unit(50, "lb"),
  41944. name: "Front",
  41945. image: {
  41946. source: "./media/characters/dechroma/front.svg",
  41947. extra: 1095/859,
  41948. bottom: 64/1159
  41949. }
  41950. },
  41951. },
  41952. [
  41953. {
  41954. name: "Normal",
  41955. height: math.unit(1.7, "feet"),
  41956. default: true
  41957. },
  41958. ]
  41959. ))
  41960. characterMakers.push(() => makeCharacter(
  41961. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  41962. {
  41963. side: {
  41964. height: math.unit(30, "feet"),
  41965. name: "Side",
  41966. image: {
  41967. source: "./media/characters/veluren-thanazel/side.svg",
  41968. extra: 1611/633,
  41969. bottom: 118/1729
  41970. }
  41971. },
  41972. front: {
  41973. height: math.unit(30, "feet"),
  41974. name: "Front",
  41975. image: {
  41976. source: "./media/characters/veluren-thanazel/front.svg",
  41977. extra: 1486/636,
  41978. bottom: 238/1724
  41979. }
  41980. },
  41981. head: {
  41982. height: math.unit(21.4, "feet"),
  41983. name: "Head",
  41984. image: {
  41985. source: "./media/characters/veluren-thanazel/head.svg"
  41986. }
  41987. },
  41988. genitals: {
  41989. height: math.unit(19.4, "feet"),
  41990. name: "Genitals",
  41991. image: {
  41992. source: "./media/characters/veluren-thanazel/genitals.svg"
  41993. }
  41994. },
  41995. },
  41996. [
  41997. {
  41998. name: "Social",
  41999. height: math.unit(6, "feet")
  42000. },
  42001. {
  42002. name: "Play",
  42003. height: math.unit(12, "feet")
  42004. },
  42005. {
  42006. name: "True",
  42007. height: math.unit(30, "feet"),
  42008. default: true
  42009. },
  42010. ]
  42011. ))
  42012. characterMakers.push(() => makeCharacter(
  42013. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  42014. {
  42015. front: {
  42016. height: math.unit(7 + 6/12, "feet"),
  42017. weight: math.unit(500, "kg"),
  42018. name: "Front",
  42019. image: {
  42020. source: "./media/characters/arcturas/front.svg",
  42021. extra: 1700/1500,
  42022. bottom: 145/1845
  42023. }
  42024. },
  42025. },
  42026. [
  42027. {
  42028. name: "Normal",
  42029. height: math.unit(7 + 6/12, "feet"),
  42030. default: true
  42031. },
  42032. ]
  42033. ))
  42034. characterMakers.push(() => makeCharacter(
  42035. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  42036. {
  42037. side: {
  42038. height: math.unit(6, "feet"),
  42039. weight: math.unit(2, "tons"),
  42040. name: "Side",
  42041. image: {
  42042. source: "./media/characters/vitaen/side.svg",
  42043. extra: 1157/617,
  42044. bottom: 122/1279
  42045. }
  42046. },
  42047. },
  42048. [
  42049. {
  42050. name: "Normal",
  42051. height: math.unit(6, "feet"),
  42052. default: true
  42053. },
  42054. ]
  42055. ))
  42056. characterMakers.push(() => makeCharacter(
  42057. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  42058. {
  42059. front: {
  42060. height: math.unit(19, "feet"),
  42061. name: "Front",
  42062. image: {
  42063. source: "./media/characters/fia-dreamweaver/front.svg",
  42064. extra: 1630/1504,
  42065. bottom: 25/1655
  42066. }
  42067. },
  42068. },
  42069. [
  42070. {
  42071. name: "Normal",
  42072. height: math.unit(19, "feet"),
  42073. default: true
  42074. },
  42075. ]
  42076. ))
  42077. characterMakers.push(() => makeCharacter(
  42078. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  42079. {
  42080. front: {
  42081. height: math.unit(5 + 4/12, "feet"),
  42082. name: "Front",
  42083. image: {
  42084. source: "./media/characters/artan/front.svg",
  42085. extra: 1618/1535,
  42086. bottom: 46/1664
  42087. }
  42088. },
  42089. back: {
  42090. height: math.unit(5 + 4/12, "feet"),
  42091. name: "Back",
  42092. image: {
  42093. source: "./media/characters/artan/back.svg",
  42094. extra: 1618/1543,
  42095. bottom: 31/1649
  42096. }
  42097. },
  42098. },
  42099. [
  42100. {
  42101. name: "Normal",
  42102. height: math.unit(5 + 4/12, "feet"),
  42103. default: true
  42104. },
  42105. ]
  42106. ))
  42107. characterMakers.push(() => makeCharacter(
  42108. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  42109. {
  42110. side: {
  42111. height: math.unit(182, "cm"),
  42112. weight: math.unit(1000, "lb"),
  42113. name: "Side",
  42114. image: {
  42115. source: "./media/characters/silver-dragon/side.svg",
  42116. extra: 710/287,
  42117. bottom: 88/798
  42118. }
  42119. },
  42120. },
  42121. [
  42122. {
  42123. name: "Normal",
  42124. height: math.unit(182, "cm"),
  42125. default: true
  42126. },
  42127. ]
  42128. ))
  42129. characterMakers.push(() => makeCharacter(
  42130. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  42131. {
  42132. side: {
  42133. height: math.unit(6 + 6/12, "feet"),
  42134. weight: math.unit(1.5, "tons"),
  42135. name: "Side",
  42136. image: {
  42137. source: "./media/characters/zephyr/side.svg",
  42138. extra: 1433/586,
  42139. bottom: 109/1542
  42140. }
  42141. },
  42142. },
  42143. [
  42144. {
  42145. name: "Normal",
  42146. height: math.unit(6 + 6/12, "feet"),
  42147. default: true
  42148. },
  42149. ]
  42150. ))
  42151. characterMakers.push(() => makeCharacter(
  42152. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  42153. {
  42154. side: {
  42155. height: math.unit(1, "feet"),
  42156. name: "Side",
  42157. image: {
  42158. source: "./media/characters/vixye/side.svg",
  42159. extra: 632/541,
  42160. bottom: 0/632
  42161. }
  42162. },
  42163. },
  42164. [
  42165. {
  42166. name: "Normal",
  42167. height: math.unit(1, "feet"),
  42168. default: true
  42169. },
  42170. {
  42171. name: "True",
  42172. height: math.unit(1e15, "multiverses")
  42173. },
  42174. ]
  42175. ))
  42176. characterMakers.push(() => makeCharacter(
  42177. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  42178. {
  42179. front: {
  42180. height: math.unit(8 + 2/12, "feet"),
  42181. weight: math.unit(650, "lb"),
  42182. name: "Front",
  42183. image: {
  42184. source: "./media/characters/darla-mac-lochlainn/front.svg",
  42185. extra: 1174/1137,
  42186. bottom: 82/1256
  42187. }
  42188. },
  42189. back: {
  42190. height: math.unit(8 + 2/12, "feet"),
  42191. weight: math.unit(650, "lb"),
  42192. name: "Back",
  42193. image: {
  42194. source: "./media/characters/darla-mac-lochlainn/back.svg",
  42195. extra: 1204/1157,
  42196. bottom: 46/1250
  42197. }
  42198. },
  42199. },
  42200. [
  42201. {
  42202. name: "Wildform",
  42203. height: math.unit(8 + 2/12, "feet"),
  42204. default: true
  42205. },
  42206. ]
  42207. ))
  42208. characterMakers.push(() => makeCharacter(
  42209. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  42210. {
  42211. front: {
  42212. height: math.unit(18, "feet"),
  42213. name: "Front",
  42214. image: {
  42215. source: "./media/characters/cyphin/front.svg",
  42216. extra: 970/886,
  42217. bottom: 42/1012
  42218. }
  42219. },
  42220. back: {
  42221. height: math.unit(18, "feet"),
  42222. name: "Back",
  42223. image: {
  42224. source: "./media/characters/cyphin/back.svg",
  42225. extra: 1009/894,
  42226. bottom: 24/1033
  42227. }
  42228. },
  42229. head: {
  42230. height: math.unit(5.05, "feet"),
  42231. name: "Head",
  42232. image: {
  42233. source: "./media/characters/cyphin/head.svg"
  42234. }
  42235. },
  42236. tailbud: {
  42237. height: math.unit(5, "feet"),
  42238. name: "Tailbud",
  42239. image: {
  42240. source: "./media/characters/cyphin/tailbud.svg"
  42241. }
  42242. },
  42243. },
  42244. [
  42245. ]
  42246. ))
  42247. characterMakers.push(() => makeCharacter(
  42248. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  42249. {
  42250. side: {
  42251. height: math.unit(10, "feet"),
  42252. weight: math.unit(6, "tons"),
  42253. name: "Side",
  42254. image: {
  42255. source: "./media/characters/raijin/side.svg",
  42256. extra: 1529/613,
  42257. bottom: 337/1866
  42258. }
  42259. },
  42260. },
  42261. [
  42262. {
  42263. name: "Normal",
  42264. height: math.unit(10, "feet"),
  42265. default: true
  42266. },
  42267. ]
  42268. ))
  42269. characterMakers.push(() => makeCharacter(
  42270. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  42271. {
  42272. side: {
  42273. height: math.unit(9, "feet"),
  42274. name: "Side",
  42275. image: {
  42276. source: "./media/characters/nilghais/side.svg",
  42277. extra: 1047/744,
  42278. bottom: 91/1138
  42279. }
  42280. },
  42281. head: {
  42282. height: math.unit(3.14, "feet"),
  42283. name: "Head",
  42284. image: {
  42285. source: "./media/characters/nilghais/head.svg"
  42286. }
  42287. },
  42288. mouth: {
  42289. height: math.unit(4.6, "feet"),
  42290. name: "Mouth",
  42291. image: {
  42292. source: "./media/characters/nilghais/mouth.svg"
  42293. }
  42294. },
  42295. wings: {
  42296. height: math.unit(24, "feet"),
  42297. name: "Wings",
  42298. image: {
  42299. source: "./media/characters/nilghais/wings.svg"
  42300. }
  42301. },
  42302. ass: {
  42303. height: math.unit(6.12, "feet"),
  42304. name: "Ass",
  42305. image: {
  42306. source: "./media/characters/nilghais/ass.svg"
  42307. }
  42308. },
  42309. },
  42310. [
  42311. {
  42312. name: "Normal",
  42313. height: math.unit(9, "feet"),
  42314. default: true
  42315. },
  42316. ]
  42317. ))
  42318. characterMakers.push(() => makeCharacter(
  42319. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  42320. {
  42321. regular: {
  42322. height: math.unit(16 + 2/12, "feet"),
  42323. weight: math.unit(2300, "lb"),
  42324. name: "Regular",
  42325. image: {
  42326. source: "./media/characters/zolgar/regular.svg",
  42327. extra: 1246/1004,
  42328. bottom: 124/1370
  42329. }
  42330. },
  42331. boxers: {
  42332. height: math.unit(16 + 2/12, "feet"),
  42333. weight: math.unit(2300, "lb"),
  42334. name: "Boxers",
  42335. image: {
  42336. source: "./media/characters/zolgar/boxers.svg",
  42337. extra: 1246/1004,
  42338. bottom: 124/1370
  42339. }
  42340. },
  42341. armored: {
  42342. height: math.unit(16 + 2/12, "feet"),
  42343. weight: math.unit(2300, "lb"),
  42344. name: "Armored",
  42345. image: {
  42346. source: "./media/characters/zolgar/armored.svg",
  42347. extra: 1246/1004,
  42348. bottom: 124/1370
  42349. }
  42350. },
  42351. goth: {
  42352. height: math.unit(16 + 2/12, "feet"),
  42353. weight: math.unit(2300, "lb"),
  42354. name: "Goth",
  42355. image: {
  42356. source: "./media/characters/zolgar/goth.svg",
  42357. extra: 1246/1004,
  42358. bottom: 124/1370
  42359. }
  42360. },
  42361. },
  42362. [
  42363. {
  42364. name: "Shrunken Down",
  42365. height: math.unit(9 + 2/12, "feet")
  42366. },
  42367. {
  42368. name: "Normal",
  42369. height: math.unit(16 + 2/12, "feet"),
  42370. default: true
  42371. },
  42372. ]
  42373. ))
  42374. characterMakers.push(() => makeCharacter(
  42375. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  42376. {
  42377. front: {
  42378. height: math.unit(6, "feet"),
  42379. weight: math.unit(168, "lb"),
  42380. name: "Front",
  42381. image: {
  42382. source: "./media/characters/luca/front.svg",
  42383. extra: 841/667,
  42384. bottom: 102/943
  42385. }
  42386. },
  42387. },
  42388. [
  42389. {
  42390. name: "Normal",
  42391. height: math.unit(6, "feet"),
  42392. default: true
  42393. },
  42394. ]
  42395. ))
  42396. characterMakers.push(() => makeCharacter(
  42397. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  42398. {
  42399. side: {
  42400. height: math.unit(7 + 3/12, "feet"),
  42401. weight: math.unit(312, "lb"),
  42402. name: "Side",
  42403. image: {
  42404. source: "./media/characters/zezo/side.svg",
  42405. extra: 1192/1067,
  42406. bottom: 63/1255
  42407. }
  42408. },
  42409. },
  42410. [
  42411. {
  42412. name: "Normal",
  42413. height: math.unit(7 + 3/12, "feet"),
  42414. default: true
  42415. },
  42416. ]
  42417. ))
  42418. characterMakers.push(() => makeCharacter(
  42419. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  42420. {
  42421. front: {
  42422. height: math.unit(5 + 5/12, "feet"),
  42423. weight: math.unit(170, "lb"),
  42424. name: "Front",
  42425. image: {
  42426. source: "./media/characters/mayso/front.svg",
  42427. extra: 1215/1108,
  42428. bottom: 16/1231
  42429. }
  42430. },
  42431. },
  42432. [
  42433. {
  42434. name: "Normal",
  42435. height: math.unit(5 + 5/12, "feet"),
  42436. default: true
  42437. },
  42438. ]
  42439. ))
  42440. characterMakers.push(() => makeCharacter(
  42441. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  42442. {
  42443. front: {
  42444. height: math.unit(4 + 3/12, "feet"),
  42445. weight: math.unit(80, "lb"),
  42446. name: "Front",
  42447. image: {
  42448. source: "./media/characters/hess/front.svg",
  42449. extra: 1200/1123,
  42450. bottom: 16/1216
  42451. }
  42452. },
  42453. },
  42454. [
  42455. {
  42456. name: "Normal",
  42457. height: math.unit(4 + 3/12, "feet"),
  42458. default: true
  42459. },
  42460. ]
  42461. ))
  42462. characterMakers.push(() => makeCharacter(
  42463. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  42464. {
  42465. front: {
  42466. height: math.unit(1.9, "meters"),
  42467. name: "Front",
  42468. image: {
  42469. source: "./media/characters/ashgar/front.svg",
  42470. extra: 1177/1146,
  42471. bottom: 99/1276
  42472. }
  42473. },
  42474. back: {
  42475. height: math.unit(1.9, "meters"),
  42476. name: "Back",
  42477. image: {
  42478. source: "./media/characters/ashgar/back.svg",
  42479. extra: 1201/1183,
  42480. bottom: 53/1254
  42481. }
  42482. },
  42483. feral: {
  42484. height: math.unit(1.4, "meters"),
  42485. name: "Feral",
  42486. image: {
  42487. source: "./media/characters/ashgar/feral.svg",
  42488. extra: 370/345,
  42489. bottom: 45/415
  42490. }
  42491. },
  42492. },
  42493. [
  42494. {
  42495. name: "Normal",
  42496. height: math.unit(1.9, "meters"),
  42497. default: true
  42498. },
  42499. ]
  42500. ))
  42501. characterMakers.push(() => makeCharacter(
  42502. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  42503. {
  42504. regular: {
  42505. height: math.unit(6, "feet"),
  42506. weight: math.unit(220, "lb"),
  42507. name: "Regular",
  42508. image: {
  42509. source: "./media/characters/phillip/regular.svg",
  42510. extra: 1373/1277,
  42511. bottom: 75/1448
  42512. }
  42513. },
  42514. dressed: {
  42515. height: math.unit(6, "feet"),
  42516. weight: math.unit(220, "lb"),
  42517. name: "Dressed",
  42518. image: {
  42519. source: "./media/characters/phillip/dressed.svg",
  42520. extra: 1373/1277,
  42521. bottom: 75/1448
  42522. }
  42523. },
  42524. paw: {
  42525. height: math.unit(1.44, "feet"),
  42526. name: "Paw",
  42527. image: {
  42528. source: "./media/characters/phillip/paw.svg"
  42529. }
  42530. },
  42531. },
  42532. [
  42533. {
  42534. name: "Normal",
  42535. height: math.unit(6, "feet"),
  42536. default: true
  42537. },
  42538. ]
  42539. ))
  42540. characterMakers.push(() => makeCharacter(
  42541. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  42542. {
  42543. side: {
  42544. height: math.unit(42, "feet"),
  42545. name: "Side",
  42546. image: {
  42547. source: "./media/characters/uvula/side.svg",
  42548. extra: 683/586,
  42549. bottom: 60/743
  42550. }
  42551. },
  42552. front: {
  42553. height: math.unit(42, "feet"),
  42554. name: "Front",
  42555. image: {
  42556. source: "./media/characters/uvula/front.svg",
  42557. extra: 705/613,
  42558. bottom: 54/759
  42559. }
  42560. },
  42561. maw: {
  42562. height: math.unit(23.5, "feet"),
  42563. name: "Maw",
  42564. image: {
  42565. source: "./media/characters/uvula/maw.svg"
  42566. }
  42567. },
  42568. },
  42569. [
  42570. {
  42571. name: "Original Size",
  42572. height: math.unit(14, "inches")
  42573. },
  42574. {
  42575. name: "Human Size",
  42576. height: math.unit(6, "feet")
  42577. },
  42578. {
  42579. name: "Big",
  42580. height: math.unit(42, "feet"),
  42581. default: true
  42582. },
  42583. {
  42584. name: "Bigger",
  42585. height: math.unit(100, "feet")
  42586. },
  42587. ]
  42588. ))
  42589. characterMakers.push(() => makeCharacter(
  42590. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  42591. {
  42592. front: {
  42593. height: math.unit(5 + 11/12, "feet"),
  42594. name: "Front",
  42595. image: {
  42596. source: "./media/characters/lannah/front.svg",
  42597. extra: 1208/1113,
  42598. bottom: 97/1305
  42599. }
  42600. },
  42601. },
  42602. [
  42603. {
  42604. name: "Normal",
  42605. height: math.unit(5 + 11/12, "feet"),
  42606. default: true
  42607. },
  42608. ]
  42609. ))
  42610. characterMakers.push(() => makeCharacter(
  42611. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  42612. {
  42613. front: {
  42614. height: math.unit(6 + 3/12, "feet"),
  42615. weight: math.unit(3.5, "tons"),
  42616. name: "Front",
  42617. image: {
  42618. source: "./media/characters/emberflame/front.svg",
  42619. extra: 1198/672,
  42620. bottom: 82/1280
  42621. }
  42622. },
  42623. side: {
  42624. height: math.unit(6 + 3/12, "feet"),
  42625. weight: math.unit(3.5, "tons"),
  42626. name: "Side",
  42627. image: {
  42628. source: "./media/characters/emberflame/side.svg",
  42629. extra: 938/527,
  42630. bottom: 56/994
  42631. }
  42632. },
  42633. },
  42634. [
  42635. {
  42636. name: "Normal",
  42637. height: math.unit(6 + 3/12, "feet"),
  42638. default: true
  42639. },
  42640. ]
  42641. ))
  42642. characterMakers.push(() => makeCharacter(
  42643. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  42644. {
  42645. side: {
  42646. height: math.unit(17.5, "feet"),
  42647. weight: math.unit(35, "tons"),
  42648. name: "Side",
  42649. image: {
  42650. source: "./media/characters/sophie-ambrose/side.svg",
  42651. extra: 1573/1242,
  42652. bottom: 71/1644
  42653. }
  42654. },
  42655. maw: {
  42656. height: math.unit(7.4, "feet"),
  42657. name: "Maw",
  42658. image: {
  42659. source: "./media/characters/sophie-ambrose/maw.svg"
  42660. }
  42661. },
  42662. },
  42663. [
  42664. {
  42665. name: "Normal",
  42666. height: math.unit(17.5, "feet"),
  42667. default: true
  42668. },
  42669. ]
  42670. ))
  42671. characterMakers.push(() => makeCharacter(
  42672. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  42673. {
  42674. front: {
  42675. height: math.unit(280, "feet"),
  42676. weight: math.unit(550, "tons"),
  42677. name: "Front",
  42678. image: {
  42679. source: "./media/characters/king-mugi/front.svg",
  42680. extra: 1102/947,
  42681. bottom: 104/1206
  42682. }
  42683. },
  42684. },
  42685. [
  42686. {
  42687. name: "King Mugi",
  42688. height: math.unit(280, "feet"),
  42689. default: true
  42690. },
  42691. ]
  42692. ))
  42693. characterMakers.push(() => makeCharacter(
  42694. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  42695. {
  42696. front: {
  42697. height: math.unit(64, "meters"),
  42698. name: "Front",
  42699. image: {
  42700. source: "./media/characters/nova-fox/front.svg",
  42701. extra: 1310/1246,
  42702. bottom: 65/1375
  42703. }
  42704. },
  42705. },
  42706. [
  42707. {
  42708. name: "Macro",
  42709. height: math.unit(64, "meters"),
  42710. default: true
  42711. },
  42712. ]
  42713. ))
  42714. characterMakers.push(() => makeCharacter(
  42715. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  42716. {
  42717. front: {
  42718. height: math.unit(6 + 3/12, "feet"),
  42719. weight: math.unit(170, "lb"),
  42720. name: "Front",
  42721. image: {
  42722. source: "./media/characters/sam-bat/front.svg",
  42723. extra: 1601/1411,
  42724. bottom: 125/1726
  42725. }
  42726. },
  42727. back: {
  42728. height: math.unit(6 + 3/12, "feet"),
  42729. weight: math.unit(170, "lb"),
  42730. name: "Back",
  42731. image: {
  42732. source: "./media/characters/sam-bat/back.svg",
  42733. extra: 1577/1405,
  42734. bottom: 58/1635
  42735. }
  42736. },
  42737. },
  42738. [
  42739. {
  42740. name: "Normal",
  42741. height: math.unit(6 + 3/12, "feet"),
  42742. default: true
  42743. },
  42744. ]
  42745. ))
  42746. characterMakers.push(() => makeCharacter(
  42747. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  42748. {
  42749. front: {
  42750. height: math.unit(59, "feet"),
  42751. weight: math.unit(40000, "lb"),
  42752. name: "Front",
  42753. image: {
  42754. source: "./media/characters/inari/front.svg",
  42755. extra: 1884/1350,
  42756. bottom: 95/1979
  42757. }
  42758. },
  42759. },
  42760. [
  42761. {
  42762. name: "Gigantamax",
  42763. height: math.unit(59, "feet"),
  42764. default: true
  42765. },
  42766. ]
  42767. ))
  42768. characterMakers.push(() => makeCharacter(
  42769. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  42770. {
  42771. front: {
  42772. height: math.unit(5 + 8/12, "feet"),
  42773. name: "Front",
  42774. image: {
  42775. source: "./media/characters/elizabeth/front.svg",
  42776. extra: 1395/1298,
  42777. bottom: 54/1449
  42778. }
  42779. },
  42780. mouth: {
  42781. height: math.unit(1.97, "feet"),
  42782. name: "Mouth",
  42783. image: {
  42784. source: "./media/characters/elizabeth/mouth.svg"
  42785. }
  42786. },
  42787. foot: {
  42788. height: math.unit(1.17, "feet"),
  42789. name: "Foot",
  42790. image: {
  42791. source: "./media/characters/elizabeth/foot.svg"
  42792. }
  42793. },
  42794. },
  42795. [
  42796. {
  42797. name: "Normal",
  42798. height: math.unit(5 + 8/12, "feet"),
  42799. default: true
  42800. },
  42801. {
  42802. name: "Minimacro",
  42803. height: math.unit(18, "feet")
  42804. },
  42805. {
  42806. name: "Macro",
  42807. height: math.unit(180, "feet")
  42808. },
  42809. ]
  42810. ))
  42811. characterMakers.push(() => makeCharacter(
  42812. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  42813. {
  42814. front: {
  42815. height: math.unit(5 + 2/12, "feet"),
  42816. name: "Front",
  42817. image: {
  42818. source: "./media/characters/october-gossamer/front.svg",
  42819. extra: 505/454,
  42820. bottom: 7/512
  42821. }
  42822. },
  42823. back: {
  42824. height: math.unit(5 + 2/12, "feet"),
  42825. name: "Back",
  42826. image: {
  42827. source: "./media/characters/october-gossamer/back.svg",
  42828. extra: 501/454,
  42829. bottom: 11/512
  42830. }
  42831. },
  42832. },
  42833. [
  42834. {
  42835. name: "Normal",
  42836. height: math.unit(5 + 2/12, "feet"),
  42837. default: true
  42838. },
  42839. ]
  42840. ))
  42841. characterMakers.push(() => makeCharacter(
  42842. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  42843. {
  42844. front: {
  42845. height: math.unit(5, "feet"),
  42846. name: "Front",
  42847. image: {
  42848. source: "./media/characters/epiglottis/front.svg",
  42849. extra: 923/849,
  42850. bottom: 17/940
  42851. }
  42852. },
  42853. },
  42854. [
  42855. {
  42856. name: "Original Size",
  42857. height: math.unit(10, "inches")
  42858. },
  42859. {
  42860. name: "Human Size",
  42861. height: math.unit(5, "feet"),
  42862. default: true
  42863. },
  42864. {
  42865. name: "Big",
  42866. height: math.unit(25, "feet")
  42867. },
  42868. {
  42869. name: "Bigger",
  42870. height: math.unit(50, "feet")
  42871. },
  42872. {
  42873. name: "oh lawd",
  42874. height: math.unit(75, "feet")
  42875. },
  42876. ]
  42877. ))
  42878. characterMakers.push(() => makeCharacter(
  42879. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  42880. {
  42881. front: {
  42882. height: math.unit(2 + 4/12, "feet"),
  42883. weight: math.unit(60, "lb"),
  42884. name: "Front",
  42885. image: {
  42886. source: "./media/characters/lerm/front.svg",
  42887. extra: 796/790,
  42888. bottom: 79/875
  42889. }
  42890. },
  42891. },
  42892. [
  42893. {
  42894. name: "Normal",
  42895. height: math.unit(2 + 4/12, "feet"),
  42896. default: true
  42897. },
  42898. ]
  42899. ))
  42900. characterMakers.push(() => makeCharacter(
  42901. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  42902. {
  42903. front: {
  42904. height: math.unit(5.5, "feet"),
  42905. weight: math.unit(130, "lb"),
  42906. name: "Front",
  42907. image: {
  42908. source: "./media/characters/xena-nebadon/front.svg",
  42909. extra: 1828/1730,
  42910. bottom: 79/1907
  42911. }
  42912. },
  42913. },
  42914. [
  42915. {
  42916. name: "Tiny Puppy",
  42917. height: math.unit(3, "inches")
  42918. },
  42919. {
  42920. name: "Normal",
  42921. height: math.unit(5.5, "feet"),
  42922. default: true
  42923. },
  42924. {
  42925. name: "Lotta Lady",
  42926. height: math.unit(12, "feet")
  42927. },
  42928. {
  42929. name: "Pretty Big",
  42930. height: math.unit(100, "feet")
  42931. },
  42932. {
  42933. name: "Big",
  42934. height: math.unit(500, "feet")
  42935. },
  42936. {
  42937. name: "Skyscraper Toys",
  42938. height: math.unit(2500, "feet")
  42939. },
  42940. {
  42941. name: "Plane Catcher",
  42942. height: math.unit(8, "miles")
  42943. },
  42944. {
  42945. name: "Planet Toys",
  42946. height: math.unit(15, "earths")
  42947. },
  42948. {
  42949. name: "Stardust",
  42950. height: math.unit(0.25, "galaxies")
  42951. },
  42952. {
  42953. name: "Snacks",
  42954. height: math.unit(70, "universes")
  42955. },
  42956. ]
  42957. ))
  42958. characterMakers.push(() => makeCharacter(
  42959. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  42960. {
  42961. front: {
  42962. height: math.unit(1.6, "meters"),
  42963. weight: math.unit(60, "kg"),
  42964. name: "Front",
  42965. image: {
  42966. source: "./media/characters/bounty/front.svg",
  42967. extra: 1426/1308,
  42968. bottom: 15/1441
  42969. }
  42970. },
  42971. back: {
  42972. height: math.unit(1.6, "meters"),
  42973. weight: math.unit(60, "kg"),
  42974. name: "Back",
  42975. image: {
  42976. source: "./media/characters/bounty/back.svg",
  42977. extra: 1417/1307,
  42978. bottom: 8/1425
  42979. }
  42980. },
  42981. },
  42982. [
  42983. {
  42984. name: "Normal",
  42985. height: math.unit(1.6, "meters"),
  42986. default: true
  42987. },
  42988. {
  42989. name: "Macro",
  42990. height: math.unit(300, "meters")
  42991. },
  42992. ]
  42993. ))
  42994. characterMakers.push(() => makeCharacter(
  42995. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  42996. {
  42997. front: {
  42998. height: math.unit(2 + 8/12, "feet"),
  42999. weight: math.unit(15, "lb"),
  43000. name: "Front",
  43001. image: {
  43002. source: "./media/characters/mochi/front.svg",
  43003. extra: 1022/852,
  43004. bottom: 435/1457
  43005. }
  43006. },
  43007. back: {
  43008. height: math.unit(2 + 8/12, "feet"),
  43009. weight: math.unit(15, "lb"),
  43010. name: "Back",
  43011. image: {
  43012. source: "./media/characters/mochi/back.svg",
  43013. extra: 1335/1119,
  43014. bottom: 39/1374
  43015. }
  43016. },
  43017. bird: {
  43018. height: math.unit(2 + 8/12, "feet"),
  43019. weight: math.unit(15, "lb"),
  43020. name: "Bird",
  43021. image: {
  43022. source: "./media/characters/mochi/bird.svg",
  43023. extra: 1251/1113,
  43024. bottom: 178/1429
  43025. }
  43026. },
  43027. kaiju: {
  43028. height: math.unit(154, "feet"),
  43029. weight: math.unit(1e7, "lb"),
  43030. name: "Kaiju",
  43031. image: {
  43032. source: "./media/characters/mochi/kaiju.svg",
  43033. extra: 460/324,
  43034. bottom: 40/500
  43035. }
  43036. },
  43037. head: {
  43038. height: math.unit(1.21, "feet"),
  43039. name: "Head",
  43040. image: {
  43041. source: "./media/characters/mochi/head.svg"
  43042. }
  43043. },
  43044. alternateTail: {
  43045. height: math.unit(2 + 8/12, "feet"),
  43046. weight: math.unit(45, "lb"),
  43047. name: "Alternate Tail",
  43048. image: {
  43049. source: "./media/characters/mochi/alternate-tail.svg",
  43050. extra: 139/76,
  43051. bottom: 45/184
  43052. }
  43053. },
  43054. },
  43055. [
  43056. {
  43057. name: "Micro",
  43058. height: math.unit(2, "inches")
  43059. },
  43060. {
  43061. name: "Normal",
  43062. height: math.unit(2 + 8/12, "feet"),
  43063. default: true
  43064. },
  43065. {
  43066. name: "Macro",
  43067. height: math.unit(106, "feet")
  43068. },
  43069. ]
  43070. ))
  43071. characterMakers.push(() => makeCharacter(
  43072. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  43073. {
  43074. front: {
  43075. height: math.unit(5.67, "feet"),
  43076. weight: math.unit(135, "lb"),
  43077. name: "Front",
  43078. image: {
  43079. source: "./media/characters/sarel/front.svg",
  43080. extra: 865/788,
  43081. bottom: 97/962
  43082. }
  43083. },
  43084. back: {
  43085. height: math.unit(5.67, "feet"),
  43086. weight: math.unit(135, "lb"),
  43087. name: "Back",
  43088. image: {
  43089. source: "./media/characters/sarel/back.svg",
  43090. extra: 857/777,
  43091. bottom: 32/889
  43092. }
  43093. },
  43094. chozoan: {
  43095. height: math.unit(5.67, "feet"),
  43096. weight: math.unit(135, "lb"),
  43097. name: "Chozoan",
  43098. image: {
  43099. source: "./media/characters/sarel/chozoan.svg",
  43100. extra: 865/788,
  43101. bottom: 97/962
  43102. }
  43103. },
  43104. current: {
  43105. height: math.unit(5.67, "feet"),
  43106. weight: math.unit(135, "lb"),
  43107. name: "Current",
  43108. image: {
  43109. source: "./media/characters/sarel/current.svg",
  43110. extra: 865/788,
  43111. bottom: 97/962
  43112. }
  43113. },
  43114. head: {
  43115. height: math.unit(1.77, "feet"),
  43116. name: "Head",
  43117. image: {
  43118. source: "./media/characters/sarel/head.svg"
  43119. }
  43120. },
  43121. claws: {
  43122. height: math.unit(1.8, "feet"),
  43123. name: "Claws",
  43124. image: {
  43125. source: "./media/characters/sarel/claws.svg"
  43126. }
  43127. },
  43128. clawsAlt: {
  43129. height: math.unit(1.8, "feet"),
  43130. name: "Claws-alt",
  43131. image: {
  43132. source: "./media/characters/sarel/claws-alt.svg"
  43133. }
  43134. },
  43135. },
  43136. [
  43137. {
  43138. name: "Normal",
  43139. height: math.unit(5.67, "feet"),
  43140. default: true
  43141. },
  43142. ]
  43143. ))
  43144. characterMakers.push(() => makeCharacter(
  43145. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  43146. {
  43147. front: {
  43148. height: math.unit(5500, "feet"),
  43149. name: "Front",
  43150. image: {
  43151. source: "./media/characters/alyonia/front.svg",
  43152. extra: 1200/1135,
  43153. bottom: 29/1229
  43154. }
  43155. },
  43156. back: {
  43157. height: math.unit(5500, "feet"),
  43158. name: "Back",
  43159. image: {
  43160. source: "./media/characters/alyonia/back.svg",
  43161. extra: 1205/1138,
  43162. bottom: 10/1215
  43163. }
  43164. },
  43165. },
  43166. [
  43167. {
  43168. name: "Small",
  43169. height: math.unit(10, "feet")
  43170. },
  43171. {
  43172. name: "Macro",
  43173. height: math.unit(500, "feet")
  43174. },
  43175. {
  43176. name: "Mega Macro",
  43177. height: math.unit(5500, "feet"),
  43178. default: true
  43179. },
  43180. {
  43181. name: "Mega Macro+",
  43182. height: math.unit(500000, "feet")
  43183. },
  43184. {
  43185. name: "Giga Macro",
  43186. height: math.unit(3000, "miles")
  43187. },
  43188. {
  43189. name: "Tera Macro",
  43190. height: math.unit(2.8e6, "miles")
  43191. },
  43192. {
  43193. name: "Galactic",
  43194. height: math.unit(120000, "lightyears")
  43195. },
  43196. ]
  43197. ))
  43198. characterMakers.push(() => makeCharacter(
  43199. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  43200. {
  43201. werewolf: {
  43202. height: math.unit(8, "feet"),
  43203. weight: math.unit(425, "lb"),
  43204. name: "Werewolf",
  43205. image: {
  43206. source: "./media/characters/autumn/werewolf.svg",
  43207. extra: 2154/2031,
  43208. bottom: 160/2314
  43209. }
  43210. },
  43211. human: {
  43212. height: math.unit(5 + 8/12, "feet"),
  43213. weight: math.unit(150, "lb"),
  43214. name: "Human",
  43215. image: {
  43216. source: "./media/characters/autumn/human.svg",
  43217. extra: 1200/1149,
  43218. bottom: 30/1230
  43219. }
  43220. },
  43221. },
  43222. [
  43223. {
  43224. name: "Normal",
  43225. height: math.unit(8, "feet"),
  43226. default: true
  43227. },
  43228. ]
  43229. ))
  43230. characterMakers.push(() => makeCharacter(
  43231. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  43232. {
  43233. front: {
  43234. height: math.unit(8 + 5/12, "feet"),
  43235. weight: math.unit(825, "lb"),
  43236. name: "Front",
  43237. image: {
  43238. source: "./media/characters/cobalt-charizard/front.svg",
  43239. extra: 1268/1155,
  43240. bottom: 122/1390
  43241. }
  43242. },
  43243. side: {
  43244. height: math.unit(8 + 5/12, "feet"),
  43245. weight: math.unit(825, "lb"),
  43246. name: "Side",
  43247. image: {
  43248. source: "./media/characters/cobalt-charizard/side.svg",
  43249. extra: 1348/1257,
  43250. bottom: 58/1406
  43251. }
  43252. },
  43253. gMax: {
  43254. height: math.unit(134 + 11/12, "feet"),
  43255. name: "G-Max",
  43256. image: {
  43257. source: "./media/characters/cobalt-charizard/g-max.svg",
  43258. extra: 1835/1541,
  43259. bottom: 151/1986
  43260. }
  43261. },
  43262. },
  43263. [
  43264. {
  43265. name: "Normal",
  43266. height: math.unit(8 + 5/12, "feet"),
  43267. default: true
  43268. },
  43269. ]
  43270. ))
  43271. characterMakers.push(() => makeCharacter(
  43272. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  43273. {
  43274. front: {
  43275. height: math.unit(6 + 3/12, "feet"),
  43276. weight: math.unit(210, "lb"),
  43277. name: "Front",
  43278. image: {
  43279. source: "./media/characters/stella/front.svg",
  43280. extra: 3549/3335,
  43281. bottom: 51/3600
  43282. }
  43283. },
  43284. },
  43285. [
  43286. {
  43287. name: "Normal",
  43288. height: math.unit(6 + 3/12, "feet"),
  43289. default: true
  43290. },
  43291. ]
  43292. ))
  43293. characterMakers.push(() => makeCharacter(
  43294. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  43295. {
  43296. front: {
  43297. height: math.unit(5, "feet"),
  43298. weight: math.unit(90, "lb"),
  43299. name: "Front",
  43300. image: {
  43301. source: "./media/characters/riley-bishop/front.svg",
  43302. extra: 1450/1428,
  43303. bottom: 152/1602
  43304. }
  43305. },
  43306. },
  43307. [
  43308. {
  43309. name: "Normal",
  43310. height: math.unit(5, "feet"),
  43311. default: true
  43312. },
  43313. ]
  43314. ))
  43315. characterMakers.push(() => makeCharacter(
  43316. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  43317. {
  43318. side: {
  43319. height: math.unit(8 + 2/12, "feet"),
  43320. weight: math.unit(500, "kg"),
  43321. name: "Side",
  43322. image: {
  43323. source: "./media/characters/theo-arcanine/side.svg",
  43324. extra: 1342/1074,
  43325. bottom: 111/1453
  43326. }
  43327. },
  43328. },
  43329. [
  43330. {
  43331. name: "Normal",
  43332. height: math.unit(8 + 2/12, "feet"),
  43333. default: true
  43334. },
  43335. ]
  43336. ))
  43337. characterMakers.push(() => makeCharacter(
  43338. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  43339. {
  43340. front: {
  43341. height: math.unit(4, "feet"),
  43342. name: "Front",
  43343. image: {
  43344. source: "./media/characters/kali/front.svg",
  43345. extra: 1921/1357,
  43346. bottom: 70/1991
  43347. }
  43348. },
  43349. },
  43350. [
  43351. {
  43352. name: "Normal",
  43353. height: math.unit(4, "feet"),
  43354. default: true
  43355. },
  43356. {
  43357. name: "Macro",
  43358. height: math.unit(32, "meters")
  43359. },
  43360. {
  43361. name: "Macro+",
  43362. height: math.unit(150, "meters")
  43363. },
  43364. {
  43365. name: "Megamacro",
  43366. height: math.unit(7500, "meters")
  43367. },
  43368. {
  43369. name: "Megamacro+",
  43370. height: math.unit(80, "kilometers")
  43371. },
  43372. ]
  43373. ))
  43374. characterMakers.push(() => makeCharacter(
  43375. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  43376. {
  43377. side: {
  43378. height: math.unit(5 + 11/12, "feet"),
  43379. weight: math.unit(236, "lb"),
  43380. name: "Side",
  43381. image: {
  43382. source: "./media/characters/gapp/side.svg",
  43383. extra: 775/340,
  43384. bottom: 58/833
  43385. }
  43386. },
  43387. mouth: {
  43388. height: math.unit(2.98, "feet"),
  43389. name: "Mouth",
  43390. image: {
  43391. source: "./media/characters/gapp/mouth.svg"
  43392. }
  43393. },
  43394. },
  43395. [
  43396. {
  43397. name: "Normal",
  43398. height: math.unit(5 + 1/12, "feet"),
  43399. default: true
  43400. },
  43401. ]
  43402. ))
  43403. characterMakers.push(() => makeCharacter(
  43404. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  43405. {
  43406. front: {
  43407. height: math.unit(6, "feet"),
  43408. name: "Front",
  43409. image: {
  43410. source: "./media/characters/persephone/front.svg",
  43411. extra: 1895/1717,
  43412. bottom: 96/1991
  43413. }
  43414. },
  43415. back: {
  43416. height: math.unit(6, "feet"),
  43417. name: "Back",
  43418. image: {
  43419. source: "./media/characters/persephone/back.svg",
  43420. extra: 1868/1679,
  43421. bottom: 26/1894
  43422. }
  43423. },
  43424. casual: {
  43425. height: math.unit(6, "feet"),
  43426. name: "Casual",
  43427. image: {
  43428. source: "./media/characters/persephone/casual.svg",
  43429. extra: 1713/1541,
  43430. bottom: 76/1789
  43431. }
  43432. },
  43433. },
  43434. [
  43435. {
  43436. name: "Human Size",
  43437. height: math.unit(6, "feet")
  43438. },
  43439. {
  43440. name: "Big Steppy",
  43441. height: math.unit(600, "meters"),
  43442. default: true
  43443. },
  43444. {
  43445. name: "Galaxy Brain",
  43446. height: math.unit(1, "zettameter")
  43447. },
  43448. ]
  43449. ))
  43450. characterMakers.push(() => makeCharacter(
  43451. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  43452. {
  43453. front: {
  43454. height: math.unit(1.85, "meters"),
  43455. name: "Front",
  43456. image: {
  43457. source: "./media/characters/riley-foxthing/front.svg",
  43458. extra: 1495/1354,
  43459. bottom: 122/1617
  43460. }
  43461. },
  43462. frontAlt: {
  43463. height: math.unit(1.85, "meters"),
  43464. name: "Front (Alt)",
  43465. image: {
  43466. source: "./media/characters/riley-foxthing/front-alt.svg",
  43467. extra: 1572/1389,
  43468. bottom: 116/1688
  43469. }
  43470. },
  43471. },
  43472. [
  43473. {
  43474. name: "Normal Sized",
  43475. height: math.unit(1.85, "meters"),
  43476. default: true
  43477. },
  43478. {
  43479. name: "Quite Sizable",
  43480. height: math.unit(5, "meters")
  43481. },
  43482. {
  43483. name: "Rather Large",
  43484. height: math.unit(20, "meters")
  43485. },
  43486. {
  43487. name: "Macro",
  43488. height: math.unit(450, "meters")
  43489. },
  43490. {
  43491. name: "Giga",
  43492. height: math.unit(5, "km")
  43493. },
  43494. ]
  43495. ))
  43496. characterMakers.push(() => makeCharacter(
  43497. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  43498. {
  43499. front: {
  43500. height: math.unit(6, "feet"),
  43501. weight: math.unit(200, "lb"),
  43502. name: "Front",
  43503. image: {
  43504. source: "./media/characters/blizzard/front.svg",
  43505. extra: 1136/990,
  43506. bottom: 136/1272
  43507. }
  43508. },
  43509. back: {
  43510. height: math.unit(6, "feet"),
  43511. weight: math.unit(200, "lb"),
  43512. name: "Back",
  43513. image: {
  43514. source: "./media/characters/blizzard/back.svg",
  43515. extra: 1175/1034,
  43516. bottom: 97/1272
  43517. }
  43518. },
  43519. sitting: {
  43520. height: math.unit(3.725, "feet"),
  43521. weight: math.unit(200, "lb"),
  43522. name: "Sitting",
  43523. image: {
  43524. source: "./media/characters/blizzard/sitting.svg",
  43525. extra: 581/485,
  43526. bottom: 90/671
  43527. }
  43528. },
  43529. frontWizard: {
  43530. height: math.unit(7.9, "feet"),
  43531. weight: math.unit(200, "lb"),
  43532. name: "Front (Wizard)",
  43533. image: {
  43534. source: "./media/characters/blizzard/front-wizard.svg"
  43535. }
  43536. },
  43537. backWizard: {
  43538. height: math.unit(7.9, "feet"),
  43539. weight: math.unit(200, "lb"),
  43540. name: "Back (Wizard)",
  43541. image: {
  43542. source: "./media/characters/blizzard/back-wizard.svg"
  43543. }
  43544. },
  43545. frontNsfw: {
  43546. height: math.unit(6, "feet"),
  43547. weight: math.unit(200, "lb"),
  43548. name: "Front (NSFW)",
  43549. image: {
  43550. source: "./media/characters/blizzard/front-nsfw.svg",
  43551. extra: 1136/990,
  43552. bottom: 136/1272
  43553. }
  43554. },
  43555. backNsfw: {
  43556. height: math.unit(6, "feet"),
  43557. weight: math.unit(200, "lb"),
  43558. name: "Back (NSFW)",
  43559. image: {
  43560. source: "./media/characters/blizzard/back-nsfw.svg",
  43561. extra: 1175/1034,
  43562. bottom: 97/1272
  43563. }
  43564. },
  43565. sittingNsfw: {
  43566. height: math.unit(3.725, "feet"),
  43567. weight: math.unit(200, "lb"),
  43568. name: "Sitting (NSFW)",
  43569. image: {
  43570. source: "./media/characters/blizzard/sitting-nsfw.svg",
  43571. extra: 581/485,
  43572. bottom: 90/671
  43573. }
  43574. },
  43575. wizardFrontNsfw: {
  43576. height: math.unit(7.9, "feet"),
  43577. weight: math.unit(200, "lb"),
  43578. name: "Wizard (Front, NSFW)",
  43579. image: {
  43580. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  43581. }
  43582. },
  43583. },
  43584. [
  43585. {
  43586. name: "Normal",
  43587. height: math.unit(6, "feet"),
  43588. default: true
  43589. },
  43590. ]
  43591. ))
  43592. characterMakers.push(() => makeCharacter(
  43593. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  43594. {
  43595. front: {
  43596. height: math.unit(5 + 2/12, "feet"),
  43597. name: "Front",
  43598. image: {
  43599. source: "./media/characters/lumi/front.svg",
  43600. extra: 1328/1268,
  43601. bottom: 103/1431
  43602. }
  43603. },
  43604. back: {
  43605. height: math.unit(5 + 2/12, "feet"),
  43606. name: "Back",
  43607. image: {
  43608. source: "./media/characters/lumi/back.svg",
  43609. extra: 1381/1327,
  43610. bottom: 43/1424
  43611. }
  43612. },
  43613. },
  43614. [
  43615. {
  43616. name: "Normal",
  43617. height: math.unit(5 + 2/12, "feet"),
  43618. default: true
  43619. },
  43620. ]
  43621. ))
  43622. characterMakers.push(() => makeCharacter(
  43623. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  43624. {
  43625. front: {
  43626. height: math.unit(5 + 9/12, "feet"),
  43627. name: "Front",
  43628. image: {
  43629. source: "./media/characters/aliya-cotton/front.svg",
  43630. extra: 577/564,
  43631. bottom: 29/606
  43632. }
  43633. },
  43634. },
  43635. [
  43636. {
  43637. name: "Normal",
  43638. height: math.unit(5 + 9/12, "feet"),
  43639. default: true
  43640. },
  43641. ]
  43642. ))
  43643. characterMakers.push(() => makeCharacter(
  43644. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  43645. {
  43646. front: {
  43647. height: math.unit(2.7, "meters"),
  43648. weight: math.unit(25000, "lb"),
  43649. name: "Front",
  43650. image: {
  43651. source: "./media/characters/noah-luxray/front.svg",
  43652. extra: 1644/825,
  43653. bottom: 339/1983
  43654. }
  43655. },
  43656. side: {
  43657. height: math.unit(2.97, "meters"),
  43658. weight: math.unit(25000, "lb"),
  43659. name: "Side",
  43660. image: {
  43661. source: "./media/characters/noah-luxray/side.svg",
  43662. extra: 1319/650,
  43663. bottom: 163/1482
  43664. }
  43665. },
  43666. dick: {
  43667. height: math.unit(7.4, "feet"),
  43668. weight: math.unit(2500, "lb"),
  43669. name: "Dick",
  43670. image: {
  43671. source: "./media/characters/noah-luxray/dick.svg"
  43672. }
  43673. },
  43674. dickAlt: {
  43675. height: math.unit(10.83, "feet"),
  43676. weight: math.unit(2500, "lb"),
  43677. name: "Dick-alt",
  43678. image: {
  43679. source: "./media/characters/noah-luxray/dick-alt.svg"
  43680. }
  43681. },
  43682. },
  43683. [
  43684. {
  43685. name: "BIG",
  43686. height: math.unit(2.7, "meters"),
  43687. default: true
  43688. },
  43689. ]
  43690. ))
  43691. characterMakers.push(() => makeCharacter(
  43692. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  43693. {
  43694. standing: {
  43695. height: math.unit(183, "cm"),
  43696. weight: math.unit(68, "kg"),
  43697. name: "Standing",
  43698. image: {
  43699. source: "./media/characters/arion/standing.svg",
  43700. extra: 1869/1807,
  43701. bottom: 93/1962
  43702. }
  43703. },
  43704. reclining: {
  43705. height: math.unit(70.5, "cm"),
  43706. weight: math.unit(68, "lb"),
  43707. name: "Reclining",
  43708. image: {
  43709. source: "./media/characters/arion/reclining.svg",
  43710. extra: 937/870,
  43711. bottom: 63/1000
  43712. }
  43713. },
  43714. },
  43715. [
  43716. {
  43717. name: "Colossus Size, Low",
  43718. height: math.unit(33, "meters"),
  43719. default: true
  43720. },
  43721. {
  43722. name: "Colossus Size, Mid",
  43723. height: math.unit(52, "meters")
  43724. },
  43725. {
  43726. name: "Colossus Size, High",
  43727. height: math.unit(60, "meters")
  43728. },
  43729. {
  43730. name: "Titan Size, Low",
  43731. height: math.unit(91, "meters"),
  43732. },
  43733. {
  43734. name: "Titan Size, Mid",
  43735. height: math.unit(122, "meters")
  43736. },
  43737. {
  43738. name: "Titan Size, High",
  43739. height: math.unit(162, "meters")
  43740. },
  43741. ]
  43742. ))
  43743. characterMakers.push(() => makeCharacter(
  43744. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  43745. {
  43746. front: {
  43747. height: math.unit(53, "meters"),
  43748. name: "Front",
  43749. image: {
  43750. source: "./media/characters/stellar-marbey/front.svg",
  43751. extra: 1913/1805,
  43752. bottom: 92/2005
  43753. }
  43754. },
  43755. back: {
  43756. height: math.unit(53, "meters"),
  43757. name: "Back",
  43758. image: {
  43759. source: "./media/characters/stellar-marbey/back.svg",
  43760. extra: 1960/1851,
  43761. bottom: 28/1988
  43762. }
  43763. },
  43764. mouth: {
  43765. height: math.unit(3.5, "meters"),
  43766. name: "Mouth",
  43767. image: {
  43768. source: "./media/characters/stellar-marbey/mouth.svg"
  43769. }
  43770. },
  43771. },
  43772. [
  43773. {
  43774. name: "Macro",
  43775. height: math.unit(53, "meters"),
  43776. default: true
  43777. },
  43778. ]
  43779. ))
  43780. characterMakers.push(() => makeCharacter(
  43781. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  43782. {
  43783. front: {
  43784. height: math.unit(8 + 1/12, "feet"),
  43785. weight: math.unit(233, "lb"),
  43786. name: "Front",
  43787. image: {
  43788. source: "./media/characters/matsu/front.svg",
  43789. extra: 832/772,
  43790. bottom: 40/872
  43791. }
  43792. },
  43793. back: {
  43794. height: math.unit(8 + 1/12, "feet"),
  43795. weight: math.unit(233, "lb"),
  43796. name: "Back",
  43797. image: {
  43798. source: "./media/characters/matsu/back.svg",
  43799. extra: 839/780,
  43800. bottom: 47/886
  43801. }
  43802. },
  43803. },
  43804. [
  43805. {
  43806. name: "Normal",
  43807. height: math.unit(8 + 1/12, "feet"),
  43808. default: true
  43809. },
  43810. ]
  43811. ))
  43812. characterMakers.push(() => makeCharacter(
  43813. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  43814. {
  43815. front: {
  43816. height: math.unit(4, "feet"),
  43817. weight: math.unit(148, "lb"),
  43818. name: "Front",
  43819. image: {
  43820. source: "./media/characters/thiz/front.svg",
  43821. extra: 1913/1748,
  43822. bottom: 62/1975
  43823. }
  43824. },
  43825. },
  43826. [
  43827. {
  43828. name: "Normal",
  43829. height: math.unit(4, "feet"),
  43830. default: true
  43831. },
  43832. ]
  43833. ))
  43834. characterMakers.push(() => makeCharacter(
  43835. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  43836. {
  43837. front: {
  43838. height: math.unit(7 + 6/12, "feet"),
  43839. weight: math.unit(267, "lb"),
  43840. name: "Front",
  43841. image: {
  43842. source: "./media/characters/marcel/front.svg",
  43843. extra: 1221/1096,
  43844. bottom: 76/1297
  43845. }
  43846. },
  43847. },
  43848. [
  43849. {
  43850. name: "Normal",
  43851. height: math.unit(7 + 6/12, "feet"),
  43852. default: true
  43853. },
  43854. ]
  43855. ))
  43856. characterMakers.push(() => makeCharacter(
  43857. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  43858. {
  43859. side: {
  43860. height: math.unit(42, "meters"),
  43861. name: "Side",
  43862. image: {
  43863. source: "./media/characters/flake/side.svg",
  43864. extra: 1525/1306,
  43865. bottom: 209/1734
  43866. }
  43867. },
  43868. },
  43869. [
  43870. {
  43871. name: "Normal",
  43872. height: math.unit(42, "meters"),
  43873. default: true
  43874. },
  43875. ]
  43876. ))
  43877. characterMakers.push(() => makeCharacter(
  43878. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  43879. {
  43880. dressed: {
  43881. height: math.unit(6 + 4/12, "feet"),
  43882. weight: math.unit(520, "lb"),
  43883. name: "Dressed",
  43884. image: {
  43885. source: "./media/characters/someonne/dressed.svg",
  43886. extra: 1020/1010,
  43887. bottom: 178/1198
  43888. }
  43889. },
  43890. undressed: {
  43891. height: math.unit(6 + 4/12, "feet"),
  43892. weight: math.unit(520, "lb"),
  43893. name: "Undressed",
  43894. image: {
  43895. source: "./media/characters/someonne/undressed.svg",
  43896. extra: 1019/1014,
  43897. bottom: 169/1188
  43898. }
  43899. },
  43900. },
  43901. [
  43902. {
  43903. name: "Normal",
  43904. height: math.unit(6 + 4/12, "feet"),
  43905. default: true
  43906. },
  43907. ]
  43908. ))
  43909. characterMakers.push(() => makeCharacter(
  43910. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  43911. {
  43912. front: {
  43913. height: math.unit(3, "feet"),
  43914. weight: math.unit(30, "lb"),
  43915. name: "Front",
  43916. image: {
  43917. source: "./media/characters/till/front.svg",
  43918. extra: 892/823,
  43919. bottom: 55/947
  43920. }
  43921. },
  43922. },
  43923. [
  43924. {
  43925. name: "Normal",
  43926. height: math.unit(3, "feet"),
  43927. default: true
  43928. },
  43929. ]
  43930. ))
  43931. characterMakers.push(() => makeCharacter(
  43932. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  43933. {
  43934. front: {
  43935. height: math.unit(9 + 8/12, "feet"),
  43936. weight: math.unit(800, "lb"),
  43937. name: "Front",
  43938. image: {
  43939. source: "./media/characters/sydney-heki/front.svg",
  43940. extra: 1360/1300,
  43941. bottom: 22/1382
  43942. }
  43943. },
  43944. back: {
  43945. height: math.unit(9 + 8/12, "feet"),
  43946. weight: math.unit(800, "lb"),
  43947. name: "Back",
  43948. image: {
  43949. source: "./media/characters/sydney-heki/back.svg",
  43950. extra: 1356/1293,
  43951. bottom: 12/1368
  43952. }
  43953. },
  43954. frontDressed: {
  43955. height: math.unit(9 + 8/12, "feet"),
  43956. weight: math.unit(800, "lb"),
  43957. name: "Front-dressed",
  43958. image: {
  43959. source: "./media/characters/sydney-heki/front-dressed.svg",
  43960. extra: 1360/1300,
  43961. bottom: 22/1382
  43962. }
  43963. },
  43964. },
  43965. [
  43966. {
  43967. name: "Normal",
  43968. height: math.unit(9 + 8/12, "feet"),
  43969. default: true
  43970. },
  43971. {
  43972. name: "Macro",
  43973. height: math.unit(500, "feet")
  43974. },
  43975. {
  43976. name: "Megamacro",
  43977. height: math.unit(3.6, "miles")
  43978. },
  43979. ]
  43980. ))
  43981. characterMakers.push(() => makeCharacter(
  43982. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  43983. {
  43984. front: {
  43985. height: math.unit(200, "cm"),
  43986. weight: math.unit(250, "lb"),
  43987. name: "Front",
  43988. image: {
  43989. source: "./media/characters/fowler-karlsson/front.svg",
  43990. extra: 897/845,
  43991. bottom: 123/1020
  43992. }
  43993. },
  43994. back: {
  43995. height: math.unit(200, "cm"),
  43996. weight: math.unit(250, "lb"),
  43997. name: "Back",
  43998. image: {
  43999. source: "./media/characters/fowler-karlsson/back.svg",
  44000. extra: 999/944,
  44001. bottom: 26/1025
  44002. }
  44003. },
  44004. dick: {
  44005. height: math.unit(1.92, "feet"),
  44006. weight: math.unit(150, "lb"),
  44007. name: "Dick",
  44008. image: {
  44009. source: "./media/characters/fowler-karlsson/dick.svg"
  44010. }
  44011. },
  44012. },
  44013. [
  44014. {
  44015. name: "Normal",
  44016. height: math.unit(200, "cm"),
  44017. default: true
  44018. },
  44019. {
  44020. name: "Smaller Macro",
  44021. height: math.unit(90, "m")
  44022. },
  44023. {
  44024. name: "Macro",
  44025. height: math.unit(150, "m")
  44026. },
  44027. {
  44028. name: "Bigger Macro",
  44029. height: math.unit(300, "m")
  44030. },
  44031. ]
  44032. ))
  44033. characterMakers.push(() => makeCharacter(
  44034. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  44035. {
  44036. side: {
  44037. height: math.unit(8 + 2/12, "feet"),
  44038. weight: math.unit(1, "tonne"),
  44039. name: "Side",
  44040. image: {
  44041. source: "./media/characters/rylide/side.svg",
  44042. extra: 1318/1034,
  44043. bottom: 106/1424
  44044. }
  44045. },
  44046. sitting: {
  44047. height: math.unit(303, "cm"),
  44048. weight: math.unit(1, "tonne"),
  44049. name: "Sitting",
  44050. image: {
  44051. source: "./media/characters/rylide/sitting.svg",
  44052. extra: 1303/1103,
  44053. bottom: 36/1339
  44054. }
  44055. },
  44056. },
  44057. [
  44058. {
  44059. name: "Normal",
  44060. height: math.unit(8 + 2/12, "feet"),
  44061. default: true
  44062. },
  44063. ]
  44064. ))
  44065. characterMakers.push(() => makeCharacter(
  44066. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  44067. {
  44068. front: {
  44069. height: math.unit(5 + 10/12, "feet"),
  44070. weight: math.unit(160, "lb"),
  44071. name: "Front",
  44072. image: {
  44073. source: "./media/characters/pudask/front.svg",
  44074. extra: 1616/1590,
  44075. bottom: 161/1777
  44076. }
  44077. },
  44078. },
  44079. [
  44080. {
  44081. name: "Ferret Height",
  44082. height: math.unit(2 + 5/12, "feet")
  44083. },
  44084. {
  44085. name: "Canon Height",
  44086. height: math.unit(5 + 10/12, "feet"),
  44087. default: true
  44088. },
  44089. ]
  44090. ))
  44091. characterMakers.push(() => makeCharacter(
  44092. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  44093. {
  44094. front: {
  44095. height: math.unit(3 + 6/12, "feet"),
  44096. weight: math.unit(60, "lb"),
  44097. name: "Front",
  44098. image: {
  44099. source: "./media/characters/ramita/front.svg",
  44100. extra: 1402/1232,
  44101. bottom: 62/1464
  44102. }
  44103. },
  44104. dressed: {
  44105. height: math.unit(3 + 6/12, "feet"),
  44106. weight: math.unit(60, "lb"),
  44107. name: "Dressed",
  44108. image: {
  44109. source: "./media/characters/ramita/dressed.svg",
  44110. extra: 1534/1249,
  44111. bottom: 50/1584
  44112. }
  44113. },
  44114. },
  44115. [
  44116. {
  44117. name: "Normal",
  44118. height: math.unit(3 + 6/12, "feet"),
  44119. default: true
  44120. },
  44121. ]
  44122. ))
  44123. characterMakers.push(() => makeCharacter(
  44124. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  44125. {
  44126. front: {
  44127. height: math.unit(8, "feet"),
  44128. name: "Front",
  44129. image: {
  44130. source: "./media/characters/ark/front.svg",
  44131. extra: 772/693,
  44132. bottom: 45/817
  44133. }
  44134. },
  44135. },
  44136. [
  44137. {
  44138. name: "Normal",
  44139. height: math.unit(8, "feet"),
  44140. default: true
  44141. },
  44142. ]
  44143. ))
  44144. characterMakers.push(() => makeCharacter(
  44145. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  44146. {
  44147. front: {
  44148. height: math.unit(6, "feet"),
  44149. weight: math.unit(250, "lb"),
  44150. volume: math.unit(5/8, "gallons"),
  44151. name: "Front",
  44152. image: {
  44153. source: "./media/characters/ludwig-horn/front.svg",
  44154. extra: 1782/1635,
  44155. bottom: 96/1878
  44156. }
  44157. },
  44158. back: {
  44159. height: math.unit(6, "feet"),
  44160. weight: math.unit(250, "lb"),
  44161. volume: math.unit(5/8, "gallons"),
  44162. name: "Back",
  44163. image: {
  44164. source: "./media/characters/ludwig-horn/back.svg",
  44165. extra: 1874/1729,
  44166. bottom: 27/1901
  44167. }
  44168. },
  44169. dick: {
  44170. height: math.unit(1.05, "feet"),
  44171. weight: math.unit(15, "lb"),
  44172. volume: math.unit(5/8, "gallons"),
  44173. name: "Dick",
  44174. image: {
  44175. source: "./media/characters/ludwig-horn/dick.svg"
  44176. }
  44177. },
  44178. },
  44179. [
  44180. {
  44181. name: "Small",
  44182. height: math.unit(6, "feet")
  44183. },
  44184. {
  44185. name: "Typical",
  44186. height: math.unit(12, "feet"),
  44187. default: true
  44188. },
  44189. {
  44190. name: "Building",
  44191. height: math.unit(80, "feet")
  44192. },
  44193. {
  44194. name: "Town",
  44195. height: math.unit(800, "feet")
  44196. },
  44197. {
  44198. name: "Kingdom",
  44199. height: math.unit(80000, "feet")
  44200. },
  44201. {
  44202. name: "Planet",
  44203. height: math.unit(8000000, "feet")
  44204. },
  44205. {
  44206. name: "Universe",
  44207. height: math.unit(8000000000, "feet")
  44208. },
  44209. {
  44210. name: "Transcended",
  44211. height: math.unit(8e27, "feet")
  44212. },
  44213. ]
  44214. ))
  44215. characterMakers.push(() => makeCharacter(
  44216. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  44217. {
  44218. front: {
  44219. height: math.unit(5, "feet"),
  44220. weight: math.unit(50, "kg"),
  44221. name: "Front",
  44222. image: {
  44223. source: "./media/characters/biot-avery/front.svg",
  44224. extra: 1295/1232,
  44225. bottom: 86/1381
  44226. }
  44227. },
  44228. },
  44229. [
  44230. {
  44231. name: "Normal",
  44232. height: math.unit(5, "feet"),
  44233. default: true
  44234. },
  44235. ]
  44236. ))
  44237. characterMakers.push(() => makeCharacter(
  44238. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  44239. {
  44240. front: {
  44241. height: math.unit(6, "feet"),
  44242. name: "Front",
  44243. image: {
  44244. source: "./media/characters/kitsune-kiro/front.svg",
  44245. extra: 1270/1158,
  44246. bottom: 42/1312
  44247. }
  44248. },
  44249. frontAlt: {
  44250. height: math.unit(6, "feet"),
  44251. name: "Front-alt",
  44252. image: {
  44253. source: "./media/characters/kitsune-kiro/front-alt.svg",
  44254. extra: 1130/1081,
  44255. bottom: 36/1166
  44256. }
  44257. },
  44258. },
  44259. [
  44260. {
  44261. name: "Smol",
  44262. height: math.unit(3, "feet")
  44263. },
  44264. {
  44265. name: "Normal",
  44266. height: math.unit(6, "feet"),
  44267. default: true
  44268. },
  44269. ]
  44270. ))
  44271. characterMakers.push(() => makeCharacter(
  44272. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  44273. {
  44274. front: {
  44275. height: math.unit(6, "feet"),
  44276. weight: math.unit(125, "lb"),
  44277. name: "Front",
  44278. image: {
  44279. source: "./media/characters/jack-thatcher/front.svg",
  44280. extra: 1474/1370,
  44281. bottom: 26/1500
  44282. }
  44283. },
  44284. back: {
  44285. height: math.unit(6, "feet"),
  44286. weight: math.unit(125, "lb"),
  44287. name: "Back",
  44288. image: {
  44289. source: "./media/characters/jack-thatcher/back.svg",
  44290. extra: 1489/1384,
  44291. bottom: 18/1507
  44292. }
  44293. },
  44294. },
  44295. [
  44296. {
  44297. name: "Normal",
  44298. height: math.unit(6, "feet"),
  44299. default: true
  44300. },
  44301. {
  44302. name: "Macro",
  44303. height: math.unit(75, "feet")
  44304. },
  44305. {
  44306. name: "Macro-er",
  44307. height: math.unit(250, "feet")
  44308. },
  44309. ]
  44310. ))
  44311. characterMakers.push(() => makeCharacter(
  44312. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  44313. {
  44314. front: {
  44315. height: math.unit(7, "feet"),
  44316. weight: math.unit(110, "kg"),
  44317. name: "Front",
  44318. image: {
  44319. source: "./media/characters/max-hyper/front.svg",
  44320. extra: 1969/1881,
  44321. bottom: 49/2018
  44322. }
  44323. },
  44324. },
  44325. [
  44326. {
  44327. name: "Normal",
  44328. height: math.unit(7, "feet"),
  44329. default: true
  44330. },
  44331. ]
  44332. ))
  44333. characterMakers.push(() => makeCharacter(
  44334. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  44335. {
  44336. front: {
  44337. height: math.unit(5 + 5/12, "feet"),
  44338. weight: math.unit(160, "lb"),
  44339. name: "Front",
  44340. image: {
  44341. source: "./media/characters/spook/front.svg",
  44342. extra: 794/791,
  44343. bottom: 54/848
  44344. }
  44345. },
  44346. back: {
  44347. height: math.unit(5 + 5/12, "feet"),
  44348. weight: math.unit(160, "lb"),
  44349. name: "Back",
  44350. image: {
  44351. source: "./media/characters/spook/back.svg",
  44352. extra: 812/798,
  44353. bottom: 32/844
  44354. }
  44355. },
  44356. },
  44357. [
  44358. {
  44359. name: "Normal",
  44360. height: math.unit(5 + 5/12, "feet"),
  44361. default: true
  44362. },
  44363. ]
  44364. ))
  44365. characterMakers.push(() => makeCharacter(
  44366. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  44367. {
  44368. front: {
  44369. height: math.unit(18, "feet"),
  44370. name: "Front",
  44371. image: {
  44372. source: "./media/characters/xeaduulix/front.svg",
  44373. extra: 1380/1166,
  44374. bottom: 110/1490
  44375. }
  44376. },
  44377. back: {
  44378. height: math.unit(18, "feet"),
  44379. name: "Back",
  44380. image: {
  44381. source: "./media/characters/xeaduulix/back.svg",
  44382. extra: 1592/1170,
  44383. bottom: 128/1720
  44384. }
  44385. },
  44386. frontNsfw: {
  44387. height: math.unit(18, "feet"),
  44388. name: "Front (NSFW)",
  44389. image: {
  44390. source: "./media/characters/xeaduulix/front-nsfw.svg",
  44391. extra: 1380/1166,
  44392. bottom: 110/1490
  44393. }
  44394. },
  44395. backNsfw: {
  44396. height: math.unit(18, "feet"),
  44397. name: "Back (NSFW)",
  44398. image: {
  44399. source: "./media/characters/xeaduulix/back-nsfw.svg",
  44400. extra: 1592/1170,
  44401. bottom: 128/1720
  44402. }
  44403. },
  44404. },
  44405. [
  44406. {
  44407. name: "Normal",
  44408. height: math.unit(18, "feet"),
  44409. default: true
  44410. },
  44411. ]
  44412. ))
  44413. characterMakers.push(() => makeCharacter(
  44414. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  44415. {
  44416. spreadWings: {
  44417. height: math.unit(20, "feet"),
  44418. name: "Spread Wings",
  44419. image: {
  44420. source: "./media/characters/fledge/spread-wings.svg",
  44421. extra: 693/635,
  44422. bottom: 26/719
  44423. }
  44424. },
  44425. front: {
  44426. height: math.unit(20, "feet"),
  44427. name: "Front",
  44428. image: {
  44429. source: "./media/characters/fledge/front.svg",
  44430. extra: 684/637,
  44431. bottom: 18/702
  44432. }
  44433. },
  44434. frontAlt: {
  44435. height: math.unit(20, "feet"),
  44436. name: "Front (Alt)",
  44437. image: {
  44438. source: "./media/characters/fledge/front-alt.svg",
  44439. extra: 708/664,
  44440. bottom: 13/721
  44441. }
  44442. },
  44443. back: {
  44444. height: math.unit(20, "feet"),
  44445. name: "Back",
  44446. image: {
  44447. source: "./media/characters/fledge/back.svg",
  44448. extra: 718/634,
  44449. bottom: 22/740
  44450. }
  44451. },
  44452. head: {
  44453. height: math.unit(5.55, "feet"),
  44454. name: "Head",
  44455. image: {
  44456. source: "./media/characters/fledge/head.svg"
  44457. }
  44458. },
  44459. headAlt: {
  44460. height: math.unit(5.1, "feet"),
  44461. name: "Head (Alt)",
  44462. image: {
  44463. source: "./media/characters/fledge/head-alt.svg"
  44464. }
  44465. },
  44466. },
  44467. [
  44468. {
  44469. name: "Small",
  44470. height: math.unit(6 + 2/12, "feet")
  44471. },
  44472. {
  44473. name: "Big",
  44474. height: math.unit(20, "feet"),
  44475. default: true
  44476. },
  44477. {
  44478. name: "Giant",
  44479. height: math.unit(100, "feet")
  44480. },
  44481. {
  44482. name: "Macro",
  44483. height: math.unit(200, "feet")
  44484. },
  44485. ]
  44486. ))
  44487. characterMakers.push(() => makeCharacter(
  44488. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  44489. {
  44490. front: {
  44491. height: math.unit(1, "meter"),
  44492. name: "Front",
  44493. image: {
  44494. source: "./media/characters/atlas-morenai/front.svg",
  44495. extra: 1275/1043,
  44496. bottom: 19/1294
  44497. }
  44498. },
  44499. back: {
  44500. height: math.unit(1, "meter"),
  44501. name: "Back",
  44502. image: {
  44503. source: "./media/characters/atlas-morenai/back.svg",
  44504. extra: 1141/1001,
  44505. bottom: 25/1166
  44506. }
  44507. },
  44508. },
  44509. [
  44510. {
  44511. name: "Normal",
  44512. height: math.unit(1, "meter"),
  44513. default: true
  44514. },
  44515. {
  44516. name: "Magic-Infused",
  44517. height: math.unit(5, "meters")
  44518. },
  44519. ]
  44520. ))
  44521. characterMakers.push(() => makeCharacter(
  44522. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  44523. {
  44524. front: {
  44525. height: math.unit(5, "meters"),
  44526. name: "Front",
  44527. image: {
  44528. source: "./media/characters/cintia/front.svg",
  44529. extra: 1312/1228,
  44530. bottom: 38/1350
  44531. }
  44532. },
  44533. back: {
  44534. height: math.unit(5, "meters"),
  44535. name: "Back",
  44536. image: {
  44537. source: "./media/characters/cintia/back.svg",
  44538. extra: 1260/1166,
  44539. bottom: 98/1358
  44540. }
  44541. },
  44542. frontDick: {
  44543. height: math.unit(5, "meters"),
  44544. name: "Front (Dick)",
  44545. image: {
  44546. source: "./media/characters/cintia/front-dick.svg",
  44547. extra: 1312/1228,
  44548. bottom: 38/1350
  44549. }
  44550. },
  44551. backDick: {
  44552. height: math.unit(5, "meters"),
  44553. name: "Back (Dick)",
  44554. image: {
  44555. source: "./media/characters/cintia/back-dick.svg",
  44556. extra: 1260/1166,
  44557. bottom: 98/1358
  44558. }
  44559. },
  44560. bust: {
  44561. height: math.unit(1.97, "meters"),
  44562. name: "Bust",
  44563. image: {
  44564. source: "./media/characters/cintia/bust.svg",
  44565. extra: 617/565,
  44566. bottom: 0/617
  44567. }
  44568. },
  44569. },
  44570. [
  44571. {
  44572. name: "Normal",
  44573. height: math.unit(5, "meters"),
  44574. default: true
  44575. },
  44576. ]
  44577. ))
  44578. characterMakers.push(() => makeCharacter(
  44579. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  44580. {
  44581. side: {
  44582. height: math.unit(100, "feet"),
  44583. name: "Side",
  44584. image: {
  44585. source: "./media/characters/denora/side.svg",
  44586. extra: 875/803,
  44587. bottom: 9/884
  44588. }
  44589. },
  44590. },
  44591. [
  44592. {
  44593. name: "Standard",
  44594. height: math.unit(100, "feet"),
  44595. default: true
  44596. },
  44597. {
  44598. name: "Grand",
  44599. height: math.unit(1000, "feet")
  44600. },
  44601. {
  44602. name: "Conquering",
  44603. height: math.unit(10000, "feet")
  44604. },
  44605. ]
  44606. ))
  44607. characterMakers.push(() => makeCharacter(
  44608. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  44609. {
  44610. dressed: {
  44611. height: math.unit(8 + 5/12, "feet"),
  44612. weight: math.unit(700, "lb"),
  44613. name: "Dressed",
  44614. image: {
  44615. source: "./media/characters/kiva/dressed.svg",
  44616. extra: 1102/1055,
  44617. bottom: 60/1162
  44618. }
  44619. },
  44620. nude: {
  44621. height: math.unit(8 + 5/12, "feet"),
  44622. weight: math.unit(700, "lb"),
  44623. name: "Nude",
  44624. image: {
  44625. source: "./media/characters/kiva/nude.svg",
  44626. extra: 1102/1055,
  44627. bottom: 60/1162
  44628. }
  44629. },
  44630. },
  44631. [
  44632. {
  44633. name: "Base Height",
  44634. height: math.unit(8 + 5/12, "feet"),
  44635. default: true
  44636. },
  44637. {
  44638. name: "Macro",
  44639. height: math.unit(100, "feet")
  44640. },
  44641. {
  44642. name: "Max",
  44643. height: math.unit(3280, "feet")
  44644. },
  44645. ]
  44646. ))
  44647. characterMakers.push(() => makeCharacter(
  44648. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  44649. {
  44650. front: {
  44651. height: math.unit(6 + 8/12, "feet"),
  44652. weight: math.unit(250, "lb"),
  44653. name: "Front",
  44654. image: {
  44655. source: "./media/characters/ztragon/front.svg",
  44656. extra: 1825/1684,
  44657. bottom: 98/1923
  44658. }
  44659. },
  44660. },
  44661. [
  44662. {
  44663. name: "Normal",
  44664. height: math.unit(6 + 8/12, "feet"),
  44665. default: true
  44666. },
  44667. {
  44668. name: "Macro",
  44669. height: math.unit(80, "feet")
  44670. },
  44671. ]
  44672. ))
  44673. characterMakers.push(() => makeCharacter(
  44674. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  44675. {
  44676. front: {
  44677. height: math.unit(10.4, "feet"),
  44678. weight: math.unit(2, "tons"),
  44679. name: "Front",
  44680. image: {
  44681. source: "./media/characters/yesenia/front.svg",
  44682. extra: 1479/1474,
  44683. bottom: 233/1712
  44684. }
  44685. },
  44686. },
  44687. [
  44688. {
  44689. name: "Normal",
  44690. height: math.unit(10.4, "feet"),
  44691. default: true
  44692. },
  44693. ]
  44694. ))
  44695. characterMakers.push(() => makeCharacter(
  44696. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  44697. {
  44698. normal: {
  44699. height: math.unit(6 + 1/12, "feet"),
  44700. weight: math.unit(180, "lb"),
  44701. name: "Normal",
  44702. image: {
  44703. source: "./media/characters/leanne-lycheborne/normal.svg",
  44704. extra: 1748/1660,
  44705. bottom: 98/1846
  44706. }
  44707. },
  44708. were: {
  44709. height: math.unit(12, "feet"),
  44710. weight: math.unit(1600, "lb"),
  44711. name: "Were",
  44712. image: {
  44713. source: "./media/characters/leanne-lycheborne/were.svg",
  44714. extra: 1485/1432,
  44715. bottom: 66/1551
  44716. }
  44717. },
  44718. },
  44719. [
  44720. {
  44721. name: "Normal",
  44722. height: math.unit(6 + 1/12, "feet"),
  44723. default: true
  44724. },
  44725. ]
  44726. ))
  44727. characterMakers.push(() => makeCharacter(
  44728. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  44729. {
  44730. side: {
  44731. height: math.unit(13, "feet"),
  44732. name: "Side",
  44733. image: {
  44734. source: "./media/characters/kira-tyler/side.svg",
  44735. extra: 693/393,
  44736. bottom: 58/751
  44737. }
  44738. },
  44739. },
  44740. [
  44741. {
  44742. name: "Normal",
  44743. height: math.unit(13, "feet"),
  44744. default: true
  44745. },
  44746. ]
  44747. ))
  44748. characterMakers.push(() => makeCharacter(
  44749. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  44750. {
  44751. front: {
  44752. height: math.unit(10.3, "feet"),
  44753. weight: math.unit(150, "lb"),
  44754. name: "Front",
  44755. image: {
  44756. source: "./media/characters/blaze/front.svg",
  44757. extra: 1378/1286,
  44758. bottom: 172/1550
  44759. }
  44760. },
  44761. },
  44762. [
  44763. {
  44764. name: "Normal",
  44765. height: math.unit(10.3, "feet"),
  44766. default: true
  44767. },
  44768. ]
  44769. ))
  44770. characterMakers.push(() => makeCharacter(
  44771. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  44772. {
  44773. side: {
  44774. height: math.unit(2, "meters"),
  44775. weight: math.unit(400, "kg"),
  44776. name: "Side",
  44777. image: {
  44778. source: "./media/characters/anu/side.svg",
  44779. extra: 506/394,
  44780. bottom: 18/524
  44781. }
  44782. },
  44783. },
  44784. [
  44785. {
  44786. name: "Humanoid",
  44787. height: math.unit(2, "meters")
  44788. },
  44789. {
  44790. name: "Normal",
  44791. height: math.unit(5, "meters"),
  44792. default: true
  44793. },
  44794. ]
  44795. ))
  44796. characterMakers.push(() => makeCharacter(
  44797. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  44798. {
  44799. front: {
  44800. height: math.unit(5 + 5/12, "feet"),
  44801. weight: math.unit(170, "lb"),
  44802. name: "Front",
  44803. image: {
  44804. source: "./media/characters/synx-the-lynx/front.svg",
  44805. extra: 1893/1745,
  44806. bottom: 17/1910
  44807. }
  44808. },
  44809. side: {
  44810. height: math.unit(5 + 5/12, "feet"),
  44811. weight: math.unit(170, "lb"),
  44812. name: "Side",
  44813. image: {
  44814. source: "./media/characters/synx-the-lynx/side.svg",
  44815. extra: 1884/1740,
  44816. bottom: 39/1923
  44817. }
  44818. },
  44819. back: {
  44820. height: math.unit(5 + 5/12, "feet"),
  44821. weight: math.unit(170, "lb"),
  44822. name: "Back",
  44823. image: {
  44824. source: "./media/characters/synx-the-lynx/back.svg",
  44825. extra: 1903/1755,
  44826. bottom: 14/1917
  44827. }
  44828. },
  44829. },
  44830. [
  44831. {
  44832. name: "Normal",
  44833. height: math.unit(5 + 5/12, "feet"),
  44834. default: true
  44835. },
  44836. ]
  44837. ))
  44838. characterMakers.push(() => makeCharacter(
  44839. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  44840. {
  44841. back: {
  44842. height: math.unit(15, "feet"),
  44843. name: "Back",
  44844. image: {
  44845. source: "./media/characters/nadezda-fex/back.svg",
  44846. extra: 1695/1481,
  44847. bottom: 25/1720
  44848. }
  44849. },
  44850. },
  44851. [
  44852. {
  44853. name: "Normal",
  44854. height: math.unit(15, "feet"),
  44855. default: true
  44856. },
  44857. {
  44858. name: "Macro",
  44859. height: math.unit(2.5, "miles")
  44860. },
  44861. {
  44862. name: "Goddess",
  44863. height: math.unit(2, "multiverses")
  44864. },
  44865. ]
  44866. ))
  44867. characterMakers.push(() => makeCharacter(
  44868. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  44869. {
  44870. front: {
  44871. height: math.unit(216, "cm"),
  44872. name: "Front",
  44873. image: {
  44874. source: "./media/characters/lev/front.svg",
  44875. extra: 1728/1670,
  44876. bottom: 82/1810
  44877. }
  44878. },
  44879. back: {
  44880. height: math.unit(216, "cm"),
  44881. name: "Back",
  44882. image: {
  44883. source: "./media/characters/lev/back.svg",
  44884. extra: 1738/1675,
  44885. bottom: 24/1762
  44886. }
  44887. },
  44888. dressed: {
  44889. height: math.unit(216, "cm"),
  44890. name: "Dressed",
  44891. image: {
  44892. source: "./media/characters/lev/dressed.svg",
  44893. extra: 1397/1351,
  44894. bottom: 73/1470
  44895. }
  44896. },
  44897. head: {
  44898. height: math.unit(0.51, "meter"),
  44899. name: "Head",
  44900. image: {
  44901. source: "./media/characters/lev/head.svg"
  44902. }
  44903. },
  44904. },
  44905. [
  44906. {
  44907. name: "Normal",
  44908. height: math.unit(216, "cm"),
  44909. default: true
  44910. },
  44911. {
  44912. name: "Relatively Macro",
  44913. height: math.unit(80, "meters")
  44914. },
  44915. {
  44916. name: "Megamacro",
  44917. height: math.unit(21600, "meters")
  44918. },
  44919. {
  44920. name: "Megamacro+",
  44921. height: math.unit(64800, "meters")
  44922. },
  44923. ]
  44924. ))
  44925. characterMakers.push(() => makeCharacter(
  44926. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  44927. {
  44928. front: {
  44929. height: math.unit(2, "meters"),
  44930. weight: math.unit(80, "kg"),
  44931. name: "Front",
  44932. image: {
  44933. source: "./media/characters/moka/front.svg",
  44934. extra: 1337/1255,
  44935. bottom: 58/1395
  44936. }
  44937. },
  44938. },
  44939. [
  44940. {
  44941. name: "Micro",
  44942. height: math.unit(15, "cm")
  44943. },
  44944. {
  44945. name: "Normal",
  44946. height: math.unit(2, "meters"),
  44947. default: true
  44948. },
  44949. {
  44950. name: "Macro",
  44951. height: math.unit(20, "meters"),
  44952. },
  44953. ]
  44954. ))
  44955. characterMakers.push(() => makeCharacter(
  44956. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  44957. {
  44958. front: {
  44959. height: math.unit(9, "feet"),
  44960. weight: math.unit(240, "lb"),
  44961. name: "Front",
  44962. image: {
  44963. source: "./media/characters/kuzco/front.svg",
  44964. extra: 1593/1487,
  44965. bottom: 32/1625
  44966. }
  44967. },
  44968. side: {
  44969. height: math.unit(9, "feet"),
  44970. weight: math.unit(240, "lb"),
  44971. name: "Side",
  44972. image: {
  44973. source: "./media/characters/kuzco/side.svg",
  44974. extra: 1575/1485,
  44975. bottom: 30/1605
  44976. }
  44977. },
  44978. back: {
  44979. height: math.unit(9, "feet"),
  44980. weight: math.unit(240, "lb"),
  44981. name: "Back",
  44982. image: {
  44983. source: "./media/characters/kuzco/back.svg",
  44984. extra: 1603/1514,
  44985. bottom: 14/1617
  44986. }
  44987. },
  44988. },
  44989. [
  44990. {
  44991. name: "Normal",
  44992. height: math.unit(9, "feet"),
  44993. default: true
  44994. },
  44995. ]
  44996. ))
  44997. characterMakers.push(() => makeCharacter(
  44998. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  44999. {
  45000. side: {
  45001. height: math.unit(2, "meters"),
  45002. weight: math.unit(300, "kg"),
  45003. name: "Side",
  45004. image: {
  45005. source: "./media/characters/ceruleus/side.svg",
  45006. extra: 1068/974,
  45007. bottom: 126/1194
  45008. }
  45009. },
  45010. },
  45011. [
  45012. {
  45013. name: "Normal",
  45014. height: math.unit(16, "meters"),
  45015. default: true
  45016. },
  45017. ]
  45018. ))
  45019. characterMakers.push(() => makeCharacter(
  45020. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  45021. {
  45022. front: {
  45023. height: math.unit(9, "feet"),
  45024. weight: math.unit(500, "kg"),
  45025. name: "Front",
  45026. image: {
  45027. source: "./media/characters/acouya/front.svg",
  45028. extra: 1660/1473,
  45029. bottom: 28/1688
  45030. }
  45031. },
  45032. },
  45033. [
  45034. {
  45035. name: "Normal",
  45036. height: math.unit(9, "feet"),
  45037. default: true
  45038. },
  45039. ]
  45040. ))
  45041. characterMakers.push(() => makeCharacter(
  45042. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  45043. {
  45044. front: {
  45045. height: math.unit(5 + 6/12, "feet"),
  45046. weight: math.unit(195, "lb"),
  45047. name: "Front",
  45048. image: {
  45049. source: "./media/characters/vant/front.svg",
  45050. extra: 1396/1320,
  45051. bottom: 20/1416
  45052. }
  45053. },
  45054. back: {
  45055. height: math.unit(5 + 6/12, "feet"),
  45056. weight: math.unit(195, "lb"),
  45057. name: "Back",
  45058. image: {
  45059. source: "./media/characters/vant/back.svg",
  45060. extra: 1396/1320,
  45061. bottom: 20/1416
  45062. }
  45063. },
  45064. maw: {
  45065. height: math.unit(0.75, "feet"),
  45066. name: "Maw",
  45067. image: {
  45068. source: "./media/characters/vant/maw.svg"
  45069. }
  45070. },
  45071. paw: {
  45072. height: math.unit(1.07, "feet"),
  45073. name: "Paw",
  45074. image: {
  45075. source: "./media/characters/vant/paw.svg"
  45076. }
  45077. },
  45078. },
  45079. [
  45080. {
  45081. name: "Micro",
  45082. height: math.unit(0.25, "inches")
  45083. },
  45084. {
  45085. name: "Normal",
  45086. height: math.unit(5 + 6/12, "feet"),
  45087. default: true
  45088. },
  45089. {
  45090. name: "Macro",
  45091. height: math.unit(75, "feet")
  45092. },
  45093. ]
  45094. ))
  45095. characterMakers.push(() => makeCharacter(
  45096. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  45097. {
  45098. front: {
  45099. height: math.unit(30, "meters"),
  45100. weight: math.unit(363, "tons"),
  45101. name: "Front",
  45102. image: {
  45103. source: "./media/characters/ahra/front.svg",
  45104. extra: 1914/1814,
  45105. bottom: 46/1960
  45106. }
  45107. },
  45108. },
  45109. [
  45110. {
  45111. name: "Macro",
  45112. height: math.unit(30, "meters"),
  45113. default: true
  45114. },
  45115. ]
  45116. ))
  45117. characterMakers.push(() => makeCharacter(
  45118. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  45119. {
  45120. undressed: {
  45121. height: math.unit(2, "m"),
  45122. weight: math.unit(250, "kg"),
  45123. name: "Undressed",
  45124. image: {
  45125. source: "./media/characters/coriander/undressed.svg",
  45126. extra: 1757/1606,
  45127. bottom: 107/1864
  45128. }
  45129. },
  45130. dressed: {
  45131. height: math.unit(2, "m"),
  45132. weight: math.unit(250, "kg"),
  45133. name: "Dressed",
  45134. image: {
  45135. source: "./media/characters/coriander/dressed.svg",
  45136. extra: 1757/1606,
  45137. bottom: 107/1864
  45138. }
  45139. },
  45140. },
  45141. [
  45142. {
  45143. name: "Normal",
  45144. height: math.unit(4, "meters"),
  45145. default: true
  45146. },
  45147. {
  45148. name: "XL",
  45149. height: math.unit(6, "meters")
  45150. },
  45151. {
  45152. name: "XXL",
  45153. height: math.unit(8, "meters")
  45154. },
  45155. ]
  45156. ))
  45157. characterMakers.push(() => makeCharacter(
  45158. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  45159. {
  45160. front: {
  45161. height: math.unit(6, "feet"),
  45162. name: "Front",
  45163. image: {
  45164. source: "./media/characters/syrinx/front.svg",
  45165. extra: 1557/1259,
  45166. bottom: 171/1728
  45167. }
  45168. },
  45169. },
  45170. [
  45171. {
  45172. name: "Normal",
  45173. height: math.unit(6 + 3/12, "feet"),
  45174. default: true
  45175. },
  45176. ]
  45177. ))
  45178. characterMakers.push(() => makeCharacter(
  45179. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  45180. {
  45181. front: {
  45182. height: math.unit(11 + 6/12, "feet"),
  45183. weight: math.unit(1.5, "tons"),
  45184. name: "Front",
  45185. image: {
  45186. source: "./media/characters/bor/front.svg",
  45187. extra: 1189/1109,
  45188. bottom: 170/1359
  45189. }
  45190. },
  45191. },
  45192. [
  45193. {
  45194. name: "Normal",
  45195. height: math.unit(11 + 6/12, "feet"),
  45196. default: true
  45197. },
  45198. {
  45199. name: "Macro",
  45200. height: math.unit(32 + 9/12, "feet")
  45201. },
  45202. ]
  45203. ))
  45204. characterMakers.push(() => makeCharacter(
  45205. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  45206. {
  45207. anthro: {
  45208. height: math.unit(9, "feet"),
  45209. weight: math.unit(2076, "lb"),
  45210. name: "Anthro",
  45211. image: {
  45212. source: "./media/characters/abacus/anthro.svg",
  45213. extra: 1540/1494,
  45214. bottom: 233/1773
  45215. }
  45216. },
  45217. pigeon: {
  45218. height: math.unit(1, "feet"),
  45219. name: "Pigeon",
  45220. image: {
  45221. source: "./media/characters/abacus/pigeon.svg",
  45222. extra: 528/525,
  45223. bottom: 46/574
  45224. }
  45225. },
  45226. },
  45227. [
  45228. {
  45229. name: "Normal",
  45230. height: math.unit(9, "feet"),
  45231. default: true
  45232. },
  45233. ]
  45234. ))
  45235. characterMakers.push(() => makeCharacter(
  45236. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  45237. {
  45238. side: {
  45239. height: math.unit(6, "feet"),
  45240. name: "Side",
  45241. image: {
  45242. source: "./media/characters/delkhan/side.svg",
  45243. extra: 1884/1786,
  45244. bottom: 308/2192
  45245. }
  45246. },
  45247. head: {
  45248. height: math.unit(3.38, "feet"),
  45249. name: "Head",
  45250. image: {
  45251. source: "./media/characters/delkhan/head.svg"
  45252. }
  45253. },
  45254. },
  45255. [
  45256. {
  45257. name: "Normal",
  45258. height: math.unit(72, "feet"),
  45259. default: true
  45260. },
  45261. {
  45262. name: "Giant",
  45263. height: math.unit(172, "feet")
  45264. },
  45265. ]
  45266. ))
  45267. characterMakers.push(() => makeCharacter(
  45268. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  45269. {
  45270. standing: {
  45271. height: math.unit(6, "feet"),
  45272. name: "Standing",
  45273. image: {
  45274. source: "./media/characters/euchidat/standing.svg",
  45275. extra: 1612/1553,
  45276. bottom: 116/1728
  45277. }
  45278. },
  45279. leaning: {
  45280. height: math.unit(6, "feet"),
  45281. name: "Leaning",
  45282. image: {
  45283. source: "./media/characters/euchidat/leaning.svg",
  45284. extra: 1719/1674,
  45285. bottom: 27/1746
  45286. }
  45287. },
  45288. },
  45289. [
  45290. {
  45291. name: "Normal",
  45292. height: math.unit(175, "feet"),
  45293. default: true
  45294. },
  45295. {
  45296. name: "Megamacro",
  45297. height: math.unit(190, "miles")
  45298. },
  45299. {
  45300. name: "Gigamacro",
  45301. height: math.unit(190000, "miles")
  45302. },
  45303. ]
  45304. ))
  45305. characterMakers.push(() => makeCharacter(
  45306. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  45307. {
  45308. front: {
  45309. height: math.unit(6, "feet"),
  45310. weight: math.unit(150, "lb"),
  45311. name: "Front",
  45312. image: {
  45313. source: "./media/characters/rebecca-stack/front.svg",
  45314. extra: 1256/1201,
  45315. bottom: 18/1274
  45316. }
  45317. },
  45318. },
  45319. [
  45320. {
  45321. name: "Normal",
  45322. height: math.unit(5 + 8/12, "feet"),
  45323. default: true
  45324. },
  45325. {
  45326. name: "Demolitionist",
  45327. height: math.unit(200, "feet")
  45328. },
  45329. {
  45330. name: "Out of Control",
  45331. height: math.unit(2, "miles")
  45332. },
  45333. {
  45334. name: "Giga",
  45335. height: math.unit(7200, "miles")
  45336. },
  45337. ]
  45338. ))
  45339. characterMakers.push(() => makeCharacter(
  45340. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  45341. {
  45342. front: {
  45343. height: math.unit(6, "feet"),
  45344. weight: math.unit(150, "lb"),
  45345. name: "Front",
  45346. image: {
  45347. source: "./media/characters/jenny-cartwright/front.svg",
  45348. extra: 1384/1376,
  45349. bottom: 58/1442
  45350. }
  45351. },
  45352. },
  45353. [
  45354. {
  45355. name: "Normal",
  45356. height: math.unit(6 + 7/12, "feet"),
  45357. default: true
  45358. },
  45359. {
  45360. name: "Librarian",
  45361. height: math.unit(55, "feet")
  45362. },
  45363. {
  45364. name: "Sightseer",
  45365. height: math.unit(50, "miles")
  45366. },
  45367. {
  45368. name: "Giga",
  45369. height: math.unit(30000, "miles")
  45370. },
  45371. ]
  45372. ))
  45373. characterMakers.push(() => makeCharacter(
  45374. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  45375. {
  45376. nude: {
  45377. height: math.unit(8, "feet"),
  45378. weight: math.unit(225, "lb"),
  45379. name: "Nude",
  45380. image: {
  45381. source: "./media/characters/marvy/nude.svg",
  45382. extra: 1900/1683,
  45383. bottom: 89/1989
  45384. }
  45385. },
  45386. dressed: {
  45387. height: math.unit(8, "feet"),
  45388. weight: math.unit(225, "lb"),
  45389. name: "Dressed",
  45390. image: {
  45391. source: "./media/characters/marvy/dressed.svg",
  45392. extra: 1900/1683,
  45393. bottom: 89/1989
  45394. }
  45395. },
  45396. head: {
  45397. height: math.unit(2.85, "feet"),
  45398. name: "Head",
  45399. image: {
  45400. source: "./media/characters/marvy/head.svg"
  45401. }
  45402. },
  45403. },
  45404. [
  45405. {
  45406. name: "Normal",
  45407. height: math.unit(8, "feet"),
  45408. default: true
  45409. },
  45410. ]
  45411. ))
  45412. characterMakers.push(() => makeCharacter(
  45413. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  45414. {
  45415. front: {
  45416. height: math.unit(8, "feet"),
  45417. weight: math.unit(250, "lb"),
  45418. name: "Front",
  45419. image: {
  45420. source: "./media/characters/leah/front.svg",
  45421. extra: 1257/1149,
  45422. bottom: 109/1366
  45423. }
  45424. },
  45425. },
  45426. [
  45427. {
  45428. name: "Normal",
  45429. height: math.unit(8, "feet"),
  45430. default: true
  45431. },
  45432. {
  45433. name: "Minimacro",
  45434. height: math.unit(40, "feet")
  45435. },
  45436. {
  45437. name: "Macro",
  45438. height: math.unit(124, "feet")
  45439. },
  45440. {
  45441. name: "Megamacro",
  45442. height: math.unit(850, "feet")
  45443. },
  45444. ]
  45445. ))
  45446. characterMakers.push(() => makeCharacter(
  45447. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  45448. {
  45449. side: {
  45450. height: math.unit(13 + 6/12, "feet"),
  45451. weight: math.unit(3200, "lb"),
  45452. name: "Side",
  45453. image: {
  45454. source: "./media/characters/alvir/side.svg",
  45455. extra: 896/589,
  45456. bottom: 26/922
  45457. }
  45458. },
  45459. },
  45460. [
  45461. {
  45462. name: "Normal",
  45463. height: math.unit(13 + 6/12, "feet"),
  45464. default: true
  45465. },
  45466. ]
  45467. ))
  45468. characterMakers.push(() => makeCharacter(
  45469. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  45470. {
  45471. front: {
  45472. height: math.unit(5 + 4/12, "feet"),
  45473. weight: math.unit(236, "lb"),
  45474. name: "Front",
  45475. image: {
  45476. source: "./media/characters/zaina-khalil/front.svg",
  45477. extra: 1533/1485,
  45478. bottom: 94/1627
  45479. }
  45480. },
  45481. side: {
  45482. height: math.unit(5 + 4/12, "feet"),
  45483. weight: math.unit(236, "lb"),
  45484. name: "Side",
  45485. image: {
  45486. source: "./media/characters/zaina-khalil/side.svg",
  45487. extra: 1537/1498,
  45488. bottom: 66/1603
  45489. }
  45490. },
  45491. back: {
  45492. height: math.unit(5 + 4/12, "feet"),
  45493. weight: math.unit(236, "lb"),
  45494. name: "Back",
  45495. image: {
  45496. source: "./media/characters/zaina-khalil/back.svg",
  45497. extra: 1546/1494,
  45498. bottom: 89/1635
  45499. }
  45500. },
  45501. },
  45502. [
  45503. {
  45504. name: "Normal",
  45505. height: math.unit(5 + 4/12, "feet"),
  45506. default: true
  45507. },
  45508. ]
  45509. ))
  45510. characterMakers.push(() => makeCharacter(
  45511. { name: "Terry", species: ["husky"], tags: ["taur"] },
  45512. {
  45513. side: {
  45514. height: math.unit(12, "feet"),
  45515. weight: math.unit(4000, "lb"),
  45516. name: "Side",
  45517. image: {
  45518. source: "./media/characters/terry/side.svg",
  45519. extra: 1518/1439,
  45520. bottom: 149/1667
  45521. }
  45522. },
  45523. },
  45524. [
  45525. {
  45526. name: "Normal",
  45527. height: math.unit(12, "feet"),
  45528. default: true
  45529. },
  45530. ]
  45531. ))
  45532. characterMakers.push(() => makeCharacter(
  45533. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  45534. {
  45535. front: {
  45536. height: math.unit(12, "feet"),
  45537. weight: math.unit(1500, "lb"),
  45538. name: "Front",
  45539. image: {
  45540. source: "./media/characters/kahea/front.svg",
  45541. extra: 1722/1617,
  45542. bottom: 179/1901
  45543. }
  45544. },
  45545. },
  45546. [
  45547. {
  45548. name: "Normal",
  45549. height: math.unit(12, "feet"),
  45550. default: true
  45551. },
  45552. ]
  45553. ))
  45554. characterMakers.push(() => makeCharacter(
  45555. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  45556. {
  45557. demonFront: {
  45558. height: math.unit(36, "feet"),
  45559. name: "Front",
  45560. image: {
  45561. source: "./media/characters/alex-xuria/demon-front.svg",
  45562. extra: 1705/1673,
  45563. bottom: 198/1903
  45564. },
  45565. form: "demon",
  45566. default: true
  45567. },
  45568. demonBack: {
  45569. height: math.unit(36, "feet"),
  45570. name: "Back",
  45571. image: {
  45572. source: "./media/characters/alex-xuria/demon-back.svg",
  45573. extra: 1725/1693,
  45574. bottom: 70/1795
  45575. },
  45576. form: "demon"
  45577. },
  45578. demonHead: {
  45579. height: math.unit(2.14, "meters"),
  45580. name: "Head",
  45581. image: {
  45582. source: "./media/characters/alex-xuria/demon-head.svg"
  45583. },
  45584. form: "demon"
  45585. },
  45586. demonHand: {
  45587. height: math.unit(1.61, "meters"),
  45588. name: "Hand",
  45589. image: {
  45590. source: "./media/characters/alex-xuria/demon-hand.svg"
  45591. },
  45592. form: "demon"
  45593. },
  45594. demonPaw: {
  45595. height: math.unit(1.35, "meters"),
  45596. name: "Paw",
  45597. image: {
  45598. source: "./media/characters/alex-xuria/demon-paw.svg"
  45599. },
  45600. form: "demon"
  45601. },
  45602. demonFoot: {
  45603. height: math.unit(2.2, "meters"),
  45604. name: "Foot",
  45605. image: {
  45606. source: "./media/characters/alex-xuria/demon-foot.svg"
  45607. },
  45608. form: "demon"
  45609. },
  45610. demonCock: {
  45611. height: math.unit(1.74, "meters"),
  45612. name: "Cock",
  45613. image: {
  45614. source: "./media/characters/alex-xuria/demon-cock.svg"
  45615. },
  45616. form: "demon"
  45617. },
  45618. demonTailClosed: {
  45619. height: math.unit(1.47, "meters"),
  45620. name: "Tail (Closed)",
  45621. image: {
  45622. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  45623. },
  45624. form: "demon"
  45625. },
  45626. demonTailOpen: {
  45627. height: math.unit(2.85, "meters"),
  45628. name: "Tail (Open)",
  45629. image: {
  45630. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  45631. },
  45632. form: "demon"
  45633. },
  45634. incubusFront: {
  45635. height: math.unit(12, "feet"),
  45636. name: "Front",
  45637. image: {
  45638. source: "./media/characters/alex-xuria/incubus-front.svg",
  45639. extra: 1754/1677,
  45640. bottom: 125/1879
  45641. },
  45642. form: "incubus",
  45643. default: true
  45644. },
  45645. incubusBack: {
  45646. height: math.unit(12, "feet"),
  45647. name: "Back",
  45648. image: {
  45649. source: "./media/characters/alex-xuria/incubus-back.svg",
  45650. extra: 1702/1647,
  45651. bottom: 30/1732
  45652. },
  45653. form: "incubus"
  45654. },
  45655. incubusHead: {
  45656. height: math.unit(3.45, "feet"),
  45657. name: "Head",
  45658. image: {
  45659. source: "./media/characters/alex-xuria/incubus-head.svg"
  45660. },
  45661. form: "incubus"
  45662. },
  45663. rabbitFront: {
  45664. height: math.unit(6, "feet"),
  45665. name: "Front",
  45666. image: {
  45667. source: "./media/characters/alex-xuria/rabbit-front.svg",
  45668. extra: 1369/1349,
  45669. bottom: 45/1414
  45670. },
  45671. form: "rabbit",
  45672. default: true
  45673. },
  45674. rabbitSide: {
  45675. height: math.unit(6, "feet"),
  45676. name: "Side",
  45677. image: {
  45678. source: "./media/characters/alex-xuria/rabbit-side.svg",
  45679. extra: 1370/1356,
  45680. bottom: 37/1407
  45681. },
  45682. form: "rabbit"
  45683. },
  45684. rabbitBack: {
  45685. height: math.unit(6, "feet"),
  45686. name: "Back",
  45687. image: {
  45688. source: "./media/characters/alex-xuria/rabbit-back.svg",
  45689. extra: 1375/1358,
  45690. bottom: 43/1418
  45691. },
  45692. form: "rabbit"
  45693. },
  45694. },
  45695. [
  45696. {
  45697. name: "Normal",
  45698. height: math.unit(6, "feet"),
  45699. default: true,
  45700. form: "rabbit"
  45701. },
  45702. {
  45703. name: "Incubus",
  45704. height: math.unit(12, "feet"),
  45705. default: true,
  45706. form: "incubus"
  45707. },
  45708. {
  45709. name: "Demon",
  45710. height: math.unit(36, "feet"),
  45711. default: true,
  45712. form: "demon"
  45713. }
  45714. ],
  45715. {
  45716. "demon": {
  45717. name: "Demon",
  45718. default: true
  45719. },
  45720. "incubus": {
  45721. name: "Incubus",
  45722. },
  45723. "rabbit": {
  45724. name: "Rabbit"
  45725. }
  45726. }
  45727. ))
  45728. characterMakers.push(() => makeCharacter(
  45729. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  45730. {
  45731. front: {
  45732. height: math.unit(7 + 5/12, "feet"),
  45733. weight: math.unit(510, "lb"),
  45734. name: "Front",
  45735. image: {
  45736. source: "./media/characters/syrup/front.svg",
  45737. extra: 932/916,
  45738. bottom: 26/958
  45739. }
  45740. },
  45741. },
  45742. [
  45743. {
  45744. name: "Normal",
  45745. height: math.unit(7 + 5/12, "feet"),
  45746. default: true
  45747. },
  45748. {
  45749. name: "Big",
  45750. height: math.unit(50, "feet")
  45751. },
  45752. {
  45753. name: "Macro",
  45754. height: math.unit(300, "feet")
  45755. },
  45756. {
  45757. name: "Megamacro",
  45758. height: math.unit(1, "mile")
  45759. },
  45760. ]
  45761. ))
  45762. characterMakers.push(() => makeCharacter(
  45763. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  45764. {
  45765. front: {
  45766. height: math.unit(6 + 9/12, "feet"),
  45767. name: "Front",
  45768. image: {
  45769. source: "./media/characters/zeimne/front.svg",
  45770. extra: 1969/1806,
  45771. bottom: 53/2022
  45772. }
  45773. },
  45774. },
  45775. [
  45776. {
  45777. name: "Normal",
  45778. height: math.unit(6 + 9/12, "feet"),
  45779. default: true
  45780. },
  45781. {
  45782. name: "Giant",
  45783. height: math.unit(550, "feet")
  45784. },
  45785. {
  45786. name: "Mega",
  45787. height: math.unit(3, "miles")
  45788. },
  45789. {
  45790. name: "Giga",
  45791. height: math.unit(250, "miles")
  45792. },
  45793. {
  45794. name: "Tera",
  45795. height: math.unit(1, "AU")
  45796. },
  45797. ]
  45798. ))
  45799. characterMakers.push(() => makeCharacter(
  45800. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  45801. {
  45802. front: {
  45803. height: math.unit(5 + 2/12, "feet"),
  45804. name: "Front",
  45805. image: {
  45806. source: "./media/characters/grar/front.svg",
  45807. extra: 1331/1119,
  45808. bottom: 60/1391
  45809. }
  45810. },
  45811. back: {
  45812. height: math.unit(5 + 2/12, "feet"),
  45813. name: "Back",
  45814. image: {
  45815. source: "./media/characters/grar/back.svg",
  45816. extra: 1385/1169,
  45817. bottom: 23/1408
  45818. }
  45819. },
  45820. },
  45821. [
  45822. {
  45823. name: "Normal",
  45824. height: math.unit(5 + 2/12, "feet"),
  45825. default: true
  45826. },
  45827. ]
  45828. ))
  45829. characterMakers.push(() => makeCharacter(
  45830. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  45831. {
  45832. front: {
  45833. height: math.unit(13 + 7/12, "feet"),
  45834. weight: math.unit(2200, "lb"),
  45835. name: "Front",
  45836. image: {
  45837. source: "./media/characters/endraya/front.svg",
  45838. extra: 1289/1215,
  45839. bottom: 50/1339
  45840. }
  45841. },
  45842. nude: {
  45843. height: math.unit(13 + 7/12, "feet"),
  45844. weight: math.unit(2200, "lb"),
  45845. name: "Nude",
  45846. image: {
  45847. source: "./media/characters/endraya/nude.svg",
  45848. extra: 1247/1171,
  45849. bottom: 40/1287
  45850. }
  45851. },
  45852. head: {
  45853. height: math.unit(2.6, "feet"),
  45854. name: "Head",
  45855. image: {
  45856. source: "./media/characters/endraya/head.svg"
  45857. }
  45858. },
  45859. slit: {
  45860. height: math.unit(3.4, "feet"),
  45861. name: "Slit",
  45862. image: {
  45863. source: "./media/characters/endraya/slit.svg"
  45864. }
  45865. },
  45866. },
  45867. [
  45868. {
  45869. name: "Normal",
  45870. height: math.unit(13 + 7/12, "feet"),
  45871. default: true
  45872. },
  45873. {
  45874. name: "Macro",
  45875. height: math.unit(200, "feet")
  45876. },
  45877. ]
  45878. ))
  45879. characterMakers.push(() => makeCharacter(
  45880. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  45881. {
  45882. front: {
  45883. height: math.unit(412, "meters"),
  45884. name: "Front",
  45885. image: {
  45886. source: "./media/characters/rodryana/front.svg",
  45887. extra: 2002/1921,
  45888. bottom: 53/2055
  45889. }
  45890. },
  45891. back: {
  45892. height: math.unit(412, "meters"),
  45893. name: "Back",
  45894. image: {
  45895. source: "./media/characters/rodryana/back.svg",
  45896. extra: 1993/1926,
  45897. bottom: 48/2041
  45898. }
  45899. },
  45900. maw: {
  45901. height: math.unit(45, "meters"),
  45902. name: "Maw",
  45903. image: {
  45904. source: "./media/characters/rodryana/maw.svg"
  45905. }
  45906. },
  45907. slit: {
  45908. height: math.unit(72, "meters"),
  45909. name: "Slit",
  45910. image: {
  45911. source: "./media/characters/rodryana/slit.svg"
  45912. }
  45913. },
  45914. },
  45915. [
  45916. {
  45917. name: "Macro",
  45918. height: math.unit(412, "meters"),
  45919. default: true
  45920. },
  45921. ]
  45922. ))
  45923. characterMakers.push(() => makeCharacter(
  45924. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  45925. {
  45926. front: {
  45927. height: math.unit(6, "feet"),
  45928. weight: math.unit(1000, "lb"),
  45929. name: "Front",
  45930. image: {
  45931. source: "./media/characters/asaya/front.svg",
  45932. extra: 1460/1200,
  45933. bottom: 71/1531
  45934. }
  45935. },
  45936. },
  45937. [
  45938. {
  45939. name: "Normal",
  45940. height: math.unit(8, "km"),
  45941. default: true
  45942. },
  45943. ]
  45944. ))
  45945. characterMakers.push(() => makeCharacter(
  45946. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  45947. {
  45948. front: {
  45949. height: math.unit(3.5, "meters"),
  45950. name: "Front",
  45951. image: {
  45952. source: "./media/characters/sarzu-and-israz/front.svg",
  45953. extra: 1570/1558,
  45954. bottom: 150/1720
  45955. },
  45956. },
  45957. back: {
  45958. height: math.unit(3.5, "meters"),
  45959. name: "Back",
  45960. image: {
  45961. source: "./media/characters/sarzu-and-israz/back.svg",
  45962. extra: 1523/1509,
  45963. bottom: 132/1655
  45964. },
  45965. },
  45966. frontFemale: {
  45967. height: math.unit(3.5, "meters"),
  45968. name: "Front (Female)",
  45969. image: {
  45970. source: "./media/characters/sarzu-and-israz/front-female.svg",
  45971. extra: 1570/1558,
  45972. bottom: 150/1720
  45973. },
  45974. },
  45975. frontHerm: {
  45976. height: math.unit(3.5, "meters"),
  45977. name: "Front (Herm)",
  45978. image: {
  45979. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  45980. extra: 1570/1558,
  45981. bottom: 150/1720
  45982. },
  45983. },
  45984. },
  45985. [
  45986. {
  45987. name: "Normal",
  45988. height: math.unit(3.5, "meters"),
  45989. default: true,
  45990. },
  45991. {
  45992. name: "Macro",
  45993. height: math.unit(65.5, "meters"),
  45994. },
  45995. ],
  45996. ))
  45997. characterMakers.push(() => makeCharacter(
  45998. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  45999. {
  46000. front: {
  46001. height: math.unit(6, "feet"),
  46002. weight: math.unit(250, "lb"),
  46003. name: "Front",
  46004. image: {
  46005. source: "./media/characters/zenimma/front.svg",
  46006. extra: 1346/1320,
  46007. bottom: 58/1404
  46008. }
  46009. },
  46010. back: {
  46011. height: math.unit(6, "feet"),
  46012. weight: math.unit(250, "lb"),
  46013. name: "Back",
  46014. image: {
  46015. source: "./media/characters/zenimma/back.svg",
  46016. extra: 1324/1308,
  46017. bottom: 44/1368
  46018. }
  46019. },
  46020. dick: {
  46021. height: math.unit(1.44, "feet"),
  46022. name: "Dick",
  46023. image: {
  46024. source: "./media/characters/zenimma/dick.svg"
  46025. }
  46026. },
  46027. },
  46028. [
  46029. {
  46030. name: "Canon Height",
  46031. height: math.unit(66, "miles"),
  46032. default: true
  46033. },
  46034. ]
  46035. ))
  46036. characterMakers.push(() => makeCharacter(
  46037. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  46038. {
  46039. nude: {
  46040. height: math.unit(6, "feet"),
  46041. weight: math.unit(150, "lb"),
  46042. name: "Nude",
  46043. image: {
  46044. source: "./media/characters/shavon/nude.svg",
  46045. extra: 1242/1096,
  46046. bottom: 98/1340
  46047. }
  46048. },
  46049. dressed: {
  46050. height: math.unit(6, "feet"),
  46051. weight: math.unit(150, "lb"),
  46052. name: "Dressed",
  46053. image: {
  46054. source: "./media/characters/shavon/dressed.svg",
  46055. extra: 1242/1096,
  46056. bottom: 98/1340
  46057. }
  46058. },
  46059. },
  46060. [
  46061. {
  46062. name: "Macro",
  46063. height: math.unit(255, "feet"),
  46064. default: true
  46065. },
  46066. ]
  46067. ))
  46068. characterMakers.push(() => makeCharacter(
  46069. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  46070. {
  46071. front: {
  46072. height: math.unit(6, "feet"),
  46073. name: "Front",
  46074. image: {
  46075. source: "./media/characters/steph/front.svg",
  46076. extra: 1430/1330,
  46077. bottom: 54/1484
  46078. }
  46079. },
  46080. },
  46081. [
  46082. {
  46083. name: "Normal",
  46084. height: math.unit(6, "feet"),
  46085. default: true
  46086. },
  46087. ]
  46088. ))
  46089. characterMakers.push(() => makeCharacter(
  46090. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  46091. {
  46092. front: {
  46093. height: math.unit(9, "feet"),
  46094. weight: math.unit(400, "lb"),
  46095. name: "Front",
  46096. image: {
  46097. source: "./media/characters/kil'aman/front.svg",
  46098. extra: 1210/1159,
  46099. bottom: 109/1319
  46100. }
  46101. },
  46102. head: {
  46103. height: math.unit(2.14, "feet"),
  46104. name: "Head",
  46105. image: {
  46106. source: "./media/characters/kil'aman/head.svg"
  46107. }
  46108. },
  46109. maw: {
  46110. height: math.unit(1.21, "feet"),
  46111. name: "Maw",
  46112. image: {
  46113. source: "./media/characters/kil'aman/maw.svg"
  46114. }
  46115. },
  46116. foot: {
  46117. height: math.unit(1.7, "feet"),
  46118. name: "Foot",
  46119. image: {
  46120. source: "./media/characters/kil'aman/foot.svg"
  46121. }
  46122. },
  46123. dick: {
  46124. height: math.unit(2.1, "feet"),
  46125. name: "Dick",
  46126. image: {
  46127. source: "./media/characters/kil'aman/dick.svg"
  46128. }
  46129. },
  46130. },
  46131. [
  46132. {
  46133. name: "Normal",
  46134. height: math.unit(9, "feet")
  46135. },
  46136. {
  46137. name: "Canon Height",
  46138. height: math.unit(10, "miles"),
  46139. default: true
  46140. },
  46141. {
  46142. name: "Maximum",
  46143. height: math.unit(6e9, "miles")
  46144. },
  46145. ]
  46146. ))
  46147. characterMakers.push(() => makeCharacter(
  46148. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  46149. {
  46150. front: {
  46151. height: math.unit(90, "feet"),
  46152. weight: math.unit(675000, "lb"),
  46153. name: "Front",
  46154. image: {
  46155. source: "./media/characters/qadan/front.svg",
  46156. extra: 1012/1004,
  46157. bottom: 78/1090
  46158. }
  46159. },
  46160. back: {
  46161. height: math.unit(90, "feet"),
  46162. weight: math.unit(675000, "lb"),
  46163. name: "Back",
  46164. image: {
  46165. source: "./media/characters/qadan/back.svg",
  46166. extra: 1042/1031,
  46167. bottom: 55/1097
  46168. }
  46169. },
  46170. armored: {
  46171. height: math.unit(90, "feet"),
  46172. weight: math.unit(675000, "lb"),
  46173. name: "Armored",
  46174. image: {
  46175. source: "./media/characters/qadan/armored.svg",
  46176. extra: 1047/1037,
  46177. bottom: 48/1095
  46178. }
  46179. },
  46180. },
  46181. [
  46182. {
  46183. name: "Normal",
  46184. height: math.unit(90, "feet"),
  46185. default: true
  46186. },
  46187. ]
  46188. ))
  46189. characterMakers.push(() => makeCharacter(
  46190. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  46191. {
  46192. front: {
  46193. height: math.unit(6, "feet"),
  46194. weight: math.unit(225, "lb"),
  46195. name: "Front",
  46196. image: {
  46197. source: "./media/characters/brooke/front.svg",
  46198. extra: 1050/1010,
  46199. bottom: 66/1116
  46200. }
  46201. },
  46202. back: {
  46203. height: math.unit(6, "feet"),
  46204. weight: math.unit(225, "lb"),
  46205. name: "Back",
  46206. image: {
  46207. source: "./media/characters/brooke/back.svg",
  46208. extra: 1053/1013,
  46209. bottom: 41/1094
  46210. }
  46211. },
  46212. dressed: {
  46213. height: math.unit(6, "feet"),
  46214. weight: math.unit(225, "lb"),
  46215. name: "Dressed",
  46216. image: {
  46217. source: "./media/characters/brooke/dressed.svg",
  46218. extra: 1050/1010,
  46219. bottom: 66/1116
  46220. }
  46221. },
  46222. },
  46223. [
  46224. {
  46225. name: "Canon Height",
  46226. height: math.unit(500, "miles"),
  46227. default: true
  46228. },
  46229. ]
  46230. ))
  46231. characterMakers.push(() => makeCharacter(
  46232. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  46233. {
  46234. front: {
  46235. height: math.unit(6 + 2/12, "feet"),
  46236. weight: math.unit(210, "lb"),
  46237. name: "Front",
  46238. image: {
  46239. source: "./media/characters/wubs/front.svg",
  46240. extra: 1345/1325,
  46241. bottom: 70/1415
  46242. }
  46243. },
  46244. back: {
  46245. height: math.unit(6 + 2/12, "feet"),
  46246. weight: math.unit(210, "lb"),
  46247. name: "Back",
  46248. image: {
  46249. source: "./media/characters/wubs/back.svg",
  46250. extra: 1296/1275,
  46251. bottom: 58/1354
  46252. }
  46253. },
  46254. },
  46255. [
  46256. {
  46257. name: "Normal",
  46258. height: math.unit(6 + 2/12, "feet"),
  46259. default: true
  46260. },
  46261. {
  46262. name: "Macro",
  46263. height: math.unit(1000, "feet")
  46264. },
  46265. {
  46266. name: "Megamacro",
  46267. height: math.unit(1, "mile")
  46268. },
  46269. ]
  46270. ))
  46271. characterMakers.push(() => makeCharacter(
  46272. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  46273. {
  46274. front: {
  46275. height: math.unit(4, "feet"),
  46276. weight: math.unit(120, "lb"),
  46277. name: "Front",
  46278. image: {
  46279. source: "./media/characters/blue/front.svg",
  46280. extra: 1636/1525,
  46281. bottom: 43/1679
  46282. }
  46283. },
  46284. back: {
  46285. height: math.unit(4, "feet"),
  46286. weight: math.unit(120, "lb"),
  46287. name: "Back",
  46288. image: {
  46289. source: "./media/characters/blue/back.svg",
  46290. extra: 1660/1560,
  46291. bottom: 57/1717
  46292. }
  46293. },
  46294. paws: {
  46295. height: math.unit(0.826, "feet"),
  46296. name: "Paws",
  46297. image: {
  46298. source: "./media/characters/blue/paws.svg"
  46299. }
  46300. },
  46301. },
  46302. [
  46303. {
  46304. name: "Micro",
  46305. height: math.unit(3, "inches")
  46306. },
  46307. {
  46308. name: "Normal",
  46309. height: math.unit(4, "feet"),
  46310. default: true
  46311. },
  46312. {
  46313. name: "Femenine Form",
  46314. height: math.unit(14, "feet")
  46315. },
  46316. {
  46317. name: "Werebat Form",
  46318. height: math.unit(18, "feet")
  46319. },
  46320. ]
  46321. ))
  46322. characterMakers.push(() => makeCharacter(
  46323. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  46324. {
  46325. female: {
  46326. height: math.unit(7 + 4/12, "feet"),
  46327. weight: math.unit(243, "lb"),
  46328. name: "Female",
  46329. image: {
  46330. source: "./media/characters/kaya/female.svg",
  46331. extra: 975/898,
  46332. bottom: 34/1009
  46333. }
  46334. },
  46335. herm: {
  46336. height: math.unit(7 + 4/12, "feet"),
  46337. weight: math.unit(243, "lb"),
  46338. name: "Herm",
  46339. image: {
  46340. source: "./media/characters/kaya/herm.svg",
  46341. extra: 975/898,
  46342. bottom: 34/1009
  46343. }
  46344. },
  46345. },
  46346. [
  46347. {
  46348. name: "Normal",
  46349. height: math.unit(7 + 4/12, "feet"),
  46350. default: true
  46351. },
  46352. ]
  46353. ))
  46354. characterMakers.push(() => makeCharacter(
  46355. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  46356. {
  46357. female: {
  46358. height: math.unit(9 + 4/12, "feet"),
  46359. weight: math.unit(398, "lb"),
  46360. name: "Female",
  46361. image: {
  46362. source: "./media/characters/kassandra/female.svg",
  46363. extra: 908/839,
  46364. bottom: 61/969
  46365. }
  46366. },
  46367. intersex: {
  46368. height: math.unit(9 + 4/12, "feet"),
  46369. weight: math.unit(398, "lb"),
  46370. name: "Intersex",
  46371. image: {
  46372. source: "./media/characters/kassandra/intersex.svg",
  46373. extra: 908/839,
  46374. bottom: 61/969
  46375. }
  46376. },
  46377. },
  46378. [
  46379. {
  46380. name: "Normal",
  46381. height: math.unit(9 + 4/12, "feet"),
  46382. default: true
  46383. },
  46384. ]
  46385. ))
  46386. characterMakers.push(() => makeCharacter(
  46387. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  46388. {
  46389. front: {
  46390. height: math.unit(3, "meters"),
  46391. name: "Front",
  46392. image: {
  46393. source: "./media/characters/amy/front.svg",
  46394. extra: 1380/1343,
  46395. bottom: 70/1450
  46396. }
  46397. },
  46398. back: {
  46399. height: math.unit(3, "meters"),
  46400. name: "Back",
  46401. image: {
  46402. source: "./media/characters/amy/back.svg",
  46403. extra: 1380/1347,
  46404. bottom: 66/1446
  46405. }
  46406. },
  46407. },
  46408. [
  46409. {
  46410. name: "Normal",
  46411. height: math.unit(3, "meters"),
  46412. default: true
  46413. },
  46414. ]
  46415. ))
  46416. characterMakers.push(() => makeCharacter(
  46417. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  46418. {
  46419. side: {
  46420. height: math.unit(47, "cm"),
  46421. weight: math.unit(10.8, "kg"),
  46422. name: "Side",
  46423. image: {
  46424. source: "./media/characters/alphaschakal/side.svg",
  46425. extra: 1058/568,
  46426. bottom: 62/1120
  46427. }
  46428. },
  46429. back: {
  46430. height: math.unit(78, "cm"),
  46431. weight: math.unit(10.8, "kg"),
  46432. name: "Back",
  46433. image: {
  46434. source: "./media/characters/alphaschakal/back.svg",
  46435. extra: 1102/942,
  46436. bottom: 185/1287
  46437. }
  46438. },
  46439. head: {
  46440. height: math.unit(28, "cm"),
  46441. name: "Head",
  46442. image: {
  46443. source: "./media/characters/alphaschakal/head.svg",
  46444. extra: 696/508,
  46445. bottom: 0/696
  46446. }
  46447. },
  46448. paw: {
  46449. height: math.unit(16, "cm"),
  46450. name: "Paw",
  46451. image: {
  46452. source: "./media/characters/alphaschakal/paw.svg"
  46453. }
  46454. },
  46455. },
  46456. [
  46457. {
  46458. name: "Normal",
  46459. height: math.unit(47, "cm"),
  46460. default: true
  46461. },
  46462. {
  46463. name: "Macro",
  46464. height: math.unit(340, "cm")
  46465. },
  46466. ]
  46467. ))
  46468. characterMakers.push(() => makeCharacter(
  46469. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  46470. {
  46471. front: {
  46472. height: math.unit(36, "earths"),
  46473. name: "Front",
  46474. image: {
  46475. source: "./media/characters/ecobyss/front.svg",
  46476. extra: 1282/1215,
  46477. bottom: 11/1293
  46478. }
  46479. },
  46480. back: {
  46481. height: math.unit(36, "earths"),
  46482. name: "Back",
  46483. image: {
  46484. source: "./media/characters/ecobyss/back.svg",
  46485. extra: 1291/1222,
  46486. bottom: 8/1299
  46487. }
  46488. },
  46489. },
  46490. [
  46491. {
  46492. name: "Normal",
  46493. height: math.unit(36, "earths"),
  46494. default: true
  46495. },
  46496. ]
  46497. ))
  46498. characterMakers.push(() => makeCharacter(
  46499. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  46500. {
  46501. front: {
  46502. height: math.unit(12, "feet"),
  46503. name: "Front",
  46504. image: {
  46505. source: "./media/characters/vasuk/front.svg",
  46506. extra: 1326/1207,
  46507. bottom: 64/1390
  46508. }
  46509. },
  46510. },
  46511. [
  46512. {
  46513. name: "Normal",
  46514. height: math.unit(12, "feet"),
  46515. default: true
  46516. },
  46517. ]
  46518. ))
  46519. characterMakers.push(() => makeCharacter(
  46520. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  46521. {
  46522. side: {
  46523. height: math.unit(100, "feet"),
  46524. name: "Side",
  46525. image: {
  46526. source: "./media/characters/linneaus/side.svg",
  46527. extra: 987/807,
  46528. bottom: 47/1034
  46529. }
  46530. },
  46531. },
  46532. [
  46533. {
  46534. name: "Macro",
  46535. height: math.unit(100, "feet"),
  46536. default: true
  46537. },
  46538. ]
  46539. ))
  46540. characterMakers.push(() => makeCharacter(
  46541. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  46542. {
  46543. front: {
  46544. height: math.unit(8, "feet"),
  46545. weight: math.unit(1200, "lb"),
  46546. name: "Front",
  46547. image: {
  46548. source: "./media/characters/nyterious-daligdig/front.svg",
  46549. extra: 1284/1094,
  46550. bottom: 84/1368
  46551. }
  46552. },
  46553. back: {
  46554. height: math.unit(8, "feet"),
  46555. weight: math.unit(1200, "lb"),
  46556. name: "Back",
  46557. image: {
  46558. source: "./media/characters/nyterious-daligdig/back.svg",
  46559. extra: 1301/1121,
  46560. bottom: 129/1430
  46561. }
  46562. },
  46563. mouth: {
  46564. height: math.unit(1.464, "feet"),
  46565. name: "Mouth",
  46566. image: {
  46567. source: "./media/characters/nyterious-daligdig/mouth.svg"
  46568. }
  46569. },
  46570. },
  46571. [
  46572. {
  46573. name: "Small",
  46574. height: math.unit(8, "feet"),
  46575. default: true
  46576. },
  46577. {
  46578. name: "Normal",
  46579. height: math.unit(15, "feet")
  46580. },
  46581. {
  46582. name: "Macro",
  46583. height: math.unit(90, "feet")
  46584. },
  46585. ]
  46586. ))
  46587. characterMakers.push(() => makeCharacter(
  46588. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  46589. {
  46590. front: {
  46591. height: math.unit(7 + 4/12, "feet"),
  46592. weight: math.unit(252, "lb"),
  46593. name: "Front",
  46594. image: {
  46595. source: "./media/characters/bandel/front.svg",
  46596. extra: 1946/1775,
  46597. bottom: 26/1972
  46598. }
  46599. },
  46600. back: {
  46601. height: math.unit(7 + 4/12, "feet"),
  46602. weight: math.unit(252, "lb"),
  46603. name: "Back",
  46604. image: {
  46605. source: "./media/characters/bandel/back.svg",
  46606. extra: 1940/1770,
  46607. bottom: 25/1965
  46608. }
  46609. },
  46610. maw: {
  46611. height: math.unit(2.15, "feet"),
  46612. name: "Maw",
  46613. image: {
  46614. source: "./media/characters/bandel/maw.svg"
  46615. }
  46616. },
  46617. stomach: {
  46618. height: math.unit(1.95, "feet"),
  46619. name: "Stomach",
  46620. image: {
  46621. source: "./media/characters/bandel/stomach.svg"
  46622. }
  46623. },
  46624. },
  46625. [
  46626. {
  46627. name: "Normal",
  46628. height: math.unit(7 + 4/12, "feet"),
  46629. default: true
  46630. },
  46631. ]
  46632. ))
  46633. characterMakers.push(() => makeCharacter(
  46634. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  46635. {
  46636. front: {
  46637. height: math.unit(10 + 5/12, "feet"),
  46638. weight: math.unit(773.5, "kg"),
  46639. name: "Front",
  46640. image: {
  46641. source: "./media/characters/zed/front.svg",
  46642. extra: 987/941,
  46643. bottom: 52/1039
  46644. }
  46645. },
  46646. },
  46647. [
  46648. {
  46649. name: "Short",
  46650. height: math.unit(5 + 4/12, "feet")
  46651. },
  46652. {
  46653. name: "Average",
  46654. height: math.unit(10 + 5/12, "feet"),
  46655. default: true
  46656. },
  46657. {
  46658. name: "Mini-Macro",
  46659. height: math.unit(24 + 9/12, "feet")
  46660. },
  46661. {
  46662. name: "Macro",
  46663. height: math.unit(249, "feet")
  46664. },
  46665. {
  46666. name: "Mega-Macro",
  46667. height: math.unit(12490, "feet")
  46668. },
  46669. {
  46670. name: "Giga-Macro",
  46671. height: math.unit(24.9, "miles")
  46672. },
  46673. {
  46674. name: "Tera-Macro",
  46675. height: math.unit(24900, "miles")
  46676. },
  46677. {
  46678. name: "Cosmic Scale",
  46679. height: math.unit(38.9, "lightyears")
  46680. },
  46681. {
  46682. name: "Universal Scale",
  46683. height: math.unit(138e12, "lightyears")
  46684. },
  46685. ]
  46686. ))
  46687. characterMakers.push(() => makeCharacter(
  46688. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  46689. {
  46690. front: {
  46691. height: math.unit(1561, "inches"),
  46692. name: "Front",
  46693. image: {
  46694. source: "./media/characters/ivan/front.svg",
  46695. extra: 1126/1071,
  46696. bottom: 26/1152
  46697. }
  46698. },
  46699. back: {
  46700. height: math.unit(1561, "inches"),
  46701. name: "Back",
  46702. image: {
  46703. source: "./media/characters/ivan/back.svg",
  46704. extra: 1134/1079,
  46705. bottom: 30/1164
  46706. }
  46707. },
  46708. },
  46709. [
  46710. {
  46711. name: "Normal",
  46712. height: math.unit(1561, "inches"),
  46713. default: true
  46714. },
  46715. ]
  46716. ))
  46717. characterMakers.push(() => makeCharacter(
  46718. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  46719. {
  46720. front: {
  46721. height: math.unit(5 + 7/12, "feet"),
  46722. weight: math.unit(150, "lb"),
  46723. name: "Front",
  46724. image: {
  46725. source: "./media/characters/robin-arctic-hare/front.svg",
  46726. extra: 1148/974,
  46727. bottom: 20/1168
  46728. }
  46729. },
  46730. },
  46731. [
  46732. {
  46733. name: "Normal",
  46734. height: math.unit(5 + 7/12, "feet"),
  46735. default: true
  46736. },
  46737. ]
  46738. ))
  46739. characterMakers.push(() => makeCharacter(
  46740. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  46741. {
  46742. side: {
  46743. height: math.unit(5, "feet"),
  46744. name: "Side",
  46745. image: {
  46746. source: "./media/characters/birch/side.svg",
  46747. extra: 985/796,
  46748. bottom: 111/1096
  46749. }
  46750. },
  46751. },
  46752. [
  46753. {
  46754. name: "Normal",
  46755. height: math.unit(5, "feet"),
  46756. default: true
  46757. },
  46758. ]
  46759. ))
  46760. characterMakers.push(() => makeCharacter(
  46761. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  46762. {
  46763. front: {
  46764. height: math.unit(4, "feet"),
  46765. name: "Front",
  46766. image: {
  46767. source: "./media/characters/rasp/front.svg",
  46768. extra: 561/478,
  46769. bottom: 74/635
  46770. }
  46771. },
  46772. },
  46773. [
  46774. {
  46775. name: "Normal",
  46776. height: math.unit(4, "feet"),
  46777. default: true
  46778. },
  46779. ]
  46780. ))
  46781. characterMakers.push(() => makeCharacter(
  46782. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  46783. {
  46784. front: {
  46785. height: math.unit(4 + 6/12, "feet"),
  46786. name: "Front",
  46787. image: {
  46788. source: "./media/characters/agatha/front.svg",
  46789. extra: 947/933,
  46790. bottom: 42/989
  46791. }
  46792. },
  46793. back: {
  46794. height: math.unit(4 + 6/12, "feet"),
  46795. name: "Back",
  46796. image: {
  46797. source: "./media/characters/agatha/back.svg",
  46798. extra: 935/922,
  46799. bottom: 48/983
  46800. }
  46801. },
  46802. },
  46803. [
  46804. {
  46805. name: "Normal",
  46806. height: math.unit(4 + 6 /12, "feet"),
  46807. default: true
  46808. },
  46809. {
  46810. name: "Max Size",
  46811. height: math.unit(500, "feet")
  46812. },
  46813. ]
  46814. ))
  46815. characterMakers.push(() => makeCharacter(
  46816. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  46817. {
  46818. side: {
  46819. height: math.unit(30, "feet"),
  46820. name: "Side",
  46821. image: {
  46822. source: "./media/characters/roggy/side.svg",
  46823. extra: 909/643,
  46824. bottom: 63/972
  46825. }
  46826. },
  46827. lounging: {
  46828. height: math.unit(20, "feet"),
  46829. name: "Lounging",
  46830. image: {
  46831. source: "./media/characters/roggy/lounging.svg",
  46832. extra: 643/479,
  46833. bottom: 145/788
  46834. }
  46835. },
  46836. handpaw: {
  46837. height: math.unit(13.1, "feet"),
  46838. name: "Handpaw",
  46839. image: {
  46840. source: "./media/characters/roggy/handpaw.svg"
  46841. }
  46842. },
  46843. footpaw: {
  46844. height: math.unit(15.8, "feet"),
  46845. name: "Footpaw",
  46846. image: {
  46847. source: "./media/characters/roggy/footpaw.svg"
  46848. }
  46849. },
  46850. },
  46851. [
  46852. {
  46853. name: "Menacing",
  46854. height: math.unit(30, "feet"),
  46855. default: true
  46856. },
  46857. ]
  46858. ))
  46859. characterMakers.push(() => makeCharacter(
  46860. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  46861. {
  46862. front: {
  46863. height: math.unit(5 + 7/12, "feet"),
  46864. weight: math.unit(135, "lb"),
  46865. name: "Front",
  46866. image: {
  46867. source: "./media/characters/naomi/front.svg",
  46868. extra: 1209/1154,
  46869. bottom: 129/1338
  46870. }
  46871. },
  46872. back: {
  46873. height: math.unit(5 + 7/12, "feet"),
  46874. weight: math.unit(135, "lb"),
  46875. name: "Back",
  46876. image: {
  46877. source: "./media/characters/naomi/back.svg",
  46878. extra: 1252/1190,
  46879. bottom: 23/1275
  46880. }
  46881. },
  46882. },
  46883. [
  46884. {
  46885. name: "Normal",
  46886. height: math.unit(5 + 7 /12, "feet"),
  46887. default: true
  46888. },
  46889. ]
  46890. ))
  46891. characterMakers.push(() => makeCharacter(
  46892. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  46893. {
  46894. side: {
  46895. height: math.unit(35, "meters"),
  46896. name: "Side",
  46897. image: {
  46898. source: "./media/characters/kimpi/side.svg",
  46899. extra: 419/382,
  46900. bottom: 63/482
  46901. }
  46902. },
  46903. hand: {
  46904. height: math.unit(8.96, "meters"),
  46905. name: "Hand",
  46906. image: {
  46907. source: "./media/characters/kimpi/hand.svg"
  46908. }
  46909. },
  46910. },
  46911. [
  46912. {
  46913. name: "Normal",
  46914. height: math.unit(35, "meters"),
  46915. default: true
  46916. },
  46917. ]
  46918. ))
  46919. characterMakers.push(() => makeCharacter(
  46920. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  46921. {
  46922. front: {
  46923. height: math.unit(4 + 4/12, "feet"),
  46924. name: "Front",
  46925. image: {
  46926. source: "./media/characters/pepper-purrloin/front.svg",
  46927. extra: 1141/1024,
  46928. bottom: 21/1162
  46929. }
  46930. },
  46931. },
  46932. [
  46933. {
  46934. name: "Normal",
  46935. height: math.unit(4 + 4/12, "feet"),
  46936. default: true
  46937. },
  46938. ]
  46939. ))
  46940. characterMakers.push(() => makeCharacter(
  46941. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  46942. {
  46943. front: {
  46944. height: math.unit(6 + 2/12, "feet"),
  46945. name: "Front",
  46946. image: {
  46947. source: "./media/characters/raphael/front.svg",
  46948. extra: 1101/962,
  46949. bottom: 59/1160
  46950. }
  46951. },
  46952. },
  46953. [
  46954. {
  46955. name: "Normal",
  46956. height: math.unit(6 + 2/12, "feet"),
  46957. default: true
  46958. },
  46959. ]
  46960. ))
  46961. characterMakers.push(() => makeCharacter(
  46962. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  46963. {
  46964. front: {
  46965. height: math.unit(6, "feet"),
  46966. weight: math.unit(150, "lb"),
  46967. name: "Front",
  46968. image: {
  46969. source: "./media/characters/victor-williams/front.svg",
  46970. extra: 1894/1825,
  46971. bottom: 67/1961
  46972. }
  46973. },
  46974. },
  46975. [
  46976. {
  46977. name: "Normal",
  46978. height: math.unit(6, "feet"),
  46979. default: true
  46980. },
  46981. ]
  46982. ))
  46983. characterMakers.push(() => makeCharacter(
  46984. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  46985. {
  46986. front: {
  46987. height: math.unit(5 + 8/12, "feet"),
  46988. weight: math.unit(150, "lb"),
  46989. name: "Front",
  46990. image: {
  46991. source: "./media/characters/rachel/front.svg",
  46992. extra: 1902/1787,
  46993. bottom: 46/1948
  46994. }
  46995. },
  46996. },
  46997. [
  46998. {
  46999. name: "Base Height",
  47000. height: math.unit(5 + 8/12, "feet"),
  47001. default: true
  47002. },
  47003. {
  47004. name: "Macro",
  47005. height: math.unit(200, "feet")
  47006. },
  47007. {
  47008. name: "Mega Macro",
  47009. height: math.unit(1, "mile")
  47010. },
  47011. {
  47012. name: "Giga Macro",
  47013. height: math.unit(1500, "miles")
  47014. },
  47015. {
  47016. name: "Tera Macro",
  47017. height: math.unit(8000, "miles")
  47018. },
  47019. {
  47020. name: "Tera Macro+",
  47021. height: math.unit(2e5, "miles")
  47022. },
  47023. ]
  47024. ))
  47025. characterMakers.push(() => makeCharacter(
  47026. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  47027. {
  47028. front: {
  47029. height: math.unit(6.5, "feet"),
  47030. name: "Front",
  47031. image: {
  47032. source: "./media/characters/svetlana-rozovskaya/front.svg",
  47033. extra: 860/819,
  47034. bottom: 307/1167
  47035. }
  47036. },
  47037. back: {
  47038. height: math.unit(6.5, "feet"),
  47039. name: "Back",
  47040. image: {
  47041. source: "./media/characters/svetlana-rozovskaya/back.svg",
  47042. extra: 880/837,
  47043. bottom: 395/1275
  47044. }
  47045. },
  47046. sleeping: {
  47047. height: math.unit(2.79, "feet"),
  47048. name: "Sleeping",
  47049. image: {
  47050. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  47051. extra: 465/383,
  47052. bottom: 263/728
  47053. }
  47054. },
  47055. maw: {
  47056. height: math.unit(2.52, "feet"),
  47057. name: "Maw",
  47058. image: {
  47059. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  47060. }
  47061. },
  47062. },
  47063. [
  47064. {
  47065. name: "Normal",
  47066. height: math.unit(6.5, "feet"),
  47067. default: true
  47068. },
  47069. ]
  47070. ))
  47071. characterMakers.push(() => makeCharacter(
  47072. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  47073. {
  47074. front: {
  47075. height: math.unit(5, "feet"),
  47076. name: "Front",
  47077. image: {
  47078. source: "./media/characters/nova-nerium/front.svg",
  47079. extra: 1548/1392,
  47080. bottom: 374/1922
  47081. }
  47082. },
  47083. back: {
  47084. height: math.unit(5, "feet"),
  47085. name: "Back",
  47086. image: {
  47087. source: "./media/characters/nova-nerium/back.svg",
  47088. extra: 1658/1468,
  47089. bottom: 257/1915
  47090. }
  47091. },
  47092. },
  47093. [
  47094. {
  47095. name: "Normal",
  47096. height: math.unit(5, "feet"),
  47097. default: true
  47098. },
  47099. ]
  47100. ))
  47101. characterMakers.push(() => makeCharacter(
  47102. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  47103. {
  47104. front: {
  47105. height: math.unit(5 + 4/12, "feet"),
  47106. name: "Front",
  47107. image: {
  47108. source: "./media/characters/ashe-pyriph/front.svg",
  47109. extra: 1935/1747,
  47110. bottom: 60/1995
  47111. }
  47112. },
  47113. },
  47114. [
  47115. {
  47116. name: "Normal",
  47117. height: math.unit(5 + 4/12, "feet"),
  47118. default: true
  47119. },
  47120. ]
  47121. ))
  47122. //characters
  47123. function makeCharacters() {
  47124. const results = [];
  47125. characterMakers.forEach(character => {
  47126. results.push(character());
  47127. });
  47128. return results;
  47129. }