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

47543 строки
1.2 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.energyNeed) {
  46. views[key].attributes.capacity = {
  47. name: "Food Intake",
  48. power: 3,
  49. type: "energy",
  50. base: value.energyNeed
  51. }
  52. }
  53. });
  54. return createEntityMaker(info, views, defaultSizes, forms);
  55. }
  56. const speciesData = {
  57. animal: {
  58. name: "Animal"
  59. },
  60. dog: {
  61. name: "Dog",
  62. parents: [
  63. "canine"
  64. ]
  65. },
  66. canine: {
  67. name: "Canine",
  68. parents: [
  69. "mammal"
  70. ]
  71. },
  72. crux: {
  73. name: "Crux",
  74. parents: [
  75. "mammal"
  76. ]
  77. },
  78. mammal: {
  79. name: "Mammal",
  80. parents: [
  81. "animal"
  82. ]
  83. },
  84. "rough-collie": {
  85. name: "Rough Collie",
  86. parents: [
  87. "dog"
  88. ]
  89. },
  90. dragon: {
  91. name: "Dragon",
  92. parents: [
  93. "reptile"
  94. ]
  95. },
  96. reptile: {
  97. name: "Reptile",
  98. parents: [
  99. "animal"
  100. ]
  101. },
  102. woodpecker: {
  103. name: "Woodpecker",
  104. parents: [
  105. "avian"
  106. ]
  107. },
  108. avian: {
  109. name: "Avian",
  110. parents: [
  111. "animal"
  112. ]
  113. },
  114. kitsune: {
  115. name: "Kitsune",
  116. parents: [
  117. "fox"
  118. ]
  119. },
  120. fox: {
  121. name: "Fox",
  122. parents: [
  123. "mammal"
  124. ]
  125. },
  126. pokemon: {
  127. name: "Pokemon"
  128. },
  129. tiger: {
  130. name: "Tiger",
  131. parents: [
  132. "cat"
  133. ]
  134. },
  135. cat: {
  136. name: "Cat",
  137. parents: [
  138. "feliform"
  139. ]
  140. },
  141. "blue-jay": {
  142. name: "Blue Jay",
  143. parents: [
  144. "avian"
  145. ]
  146. },
  147. wolf: {
  148. name: "Wolf",
  149. parents: [
  150. "mammal"
  151. ]
  152. },
  153. coyote: {
  154. name: "Coyote",
  155. parents: [
  156. "mammal"
  157. ]
  158. },
  159. raccoon: {
  160. name: "Raccoon",
  161. parents: [
  162. "mammal"
  163. ]
  164. },
  165. weasel: {
  166. name: "Weasel",
  167. parents: [
  168. "mustelid"
  169. ]
  170. },
  171. "red-panda": {
  172. name: "Red Panda",
  173. parents: [
  174. "mammal"
  175. ]
  176. },
  177. dolphin: {
  178. name: "Dolphin",
  179. parents: [
  180. "mammal"
  181. ]
  182. },
  183. "african-wild-dog": {
  184. name: "African Wild Dog",
  185. parents: [
  186. "canine"
  187. ]
  188. },
  189. "hyena": {
  190. name: "Hyena",
  191. parents: [
  192. "feliform"
  193. ]
  194. },
  195. "carbuncle": {
  196. name: "Carbuncle",
  197. parents: [
  198. "animal"
  199. ]
  200. },
  201. bat: {
  202. name: "Bat",
  203. parents: [
  204. "mammal"
  205. ]
  206. },
  207. "leaf-nosed-bat": {
  208. name: "Leaf-Nosed Bat",
  209. parents: [
  210. "bat"
  211. ]
  212. },
  213. "fish": {
  214. name: "Fish",
  215. parents: [
  216. "animal"
  217. ]
  218. },
  219. "ram": {
  220. name: "Ram",
  221. parents: [
  222. "mammal"
  223. ]
  224. },
  225. "demon": {
  226. name: "Demon",
  227. parents: [
  228. "supernatural"
  229. ]
  230. },
  231. "cougar": {
  232. name: "Cougar",
  233. parents: [
  234. "cat"
  235. ]
  236. },
  237. "goat": {
  238. name: "Goat",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "lion": {
  244. name: "Lion",
  245. parents: [
  246. "cat"
  247. ]
  248. },
  249. "harpy-eager": {
  250. name: "Harpy Eagle",
  251. parents: [
  252. "avian"
  253. ]
  254. },
  255. "deer": {
  256. name: "Deer",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "phoenix": {
  262. name: "Phoenix",
  263. parents: [
  264. "avian"
  265. ]
  266. },
  267. "aeromorph": {
  268. name: "Aeromorph",
  269. parents: [
  270. "machine"
  271. ]
  272. },
  273. "machine": {
  274. name: "Machine",
  275. },
  276. "android": {
  277. name: "Android",
  278. parents: [
  279. "machine"
  280. ]
  281. },
  282. "jackal": {
  283. name: "Jackal",
  284. parents: [
  285. "canine"
  286. ]
  287. },
  288. "corvid": {
  289. name: "Corvid",
  290. parents: [
  291. "avian"
  292. ]
  293. },
  294. "pharaoh-hound": {
  295. name: "Pharaoh Hound",
  296. parents: [
  297. "dog"
  298. ]
  299. },
  300. "skunk": {
  301. name: "Skunk",
  302. parents: [
  303. "mammal"
  304. ]
  305. },
  306. "shark": {
  307. name: "Shark",
  308. parents: [
  309. "fish"
  310. ]
  311. },
  312. "black-panther": {
  313. name: "Black Panther",
  314. parents: [
  315. "cat"
  316. ]
  317. },
  318. "umbra": {
  319. name: "Umbra",
  320. parents: [
  321. "animal"
  322. ]
  323. },
  324. "raven": {
  325. name: "Raven",
  326. parents: [
  327. "corvid"
  328. ]
  329. },
  330. "snow-leopard": {
  331. name: "Snow Leopard",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "barbary-lion": {
  337. name: "Barbary Lion",
  338. parents: [
  339. "lion"
  340. ]
  341. },
  342. "dra'gal": {
  343. name: "Dra'Gal",
  344. parents: [
  345. "mammal"
  346. ]
  347. },
  348. "german-shepherd": {
  349. name: "German Shepherd",
  350. parents: [
  351. "dog"
  352. ]
  353. },
  354. "bayleef": {
  355. name: "Bayleef",
  356. parents: [
  357. "pokemon"
  358. ]
  359. },
  360. "mouse": {
  361. name: "Mouse",
  362. parents: [
  363. "rodent"
  364. ]
  365. },
  366. "rat": {
  367. name: "Rat",
  368. parents: [
  369. "mammal"
  370. ]
  371. },
  372. "hoshiko-beast": {
  373. name: "Hoshiko Beast",
  374. parents: ["animal"]
  375. },
  376. "snow-jugani": {
  377. name: "Snow Jugani",
  378. parents: ["cat"]
  379. },
  380. "patamon": {
  381. name: "Patamon",
  382. parents: ["digimon"]
  383. },
  384. "digimon": {
  385. name: "Digimon",
  386. },
  387. "jugani": {
  388. name: "Jugani",
  389. parents: ["cat"]
  390. },
  391. "luxray": {
  392. name: "Luxray",
  393. parents: ["pokemon"]
  394. },
  395. "mech": {
  396. name: "Mech",
  397. parents: ["machine"]
  398. },
  399. "zoid": {
  400. name: "Zoid",
  401. parents: ["mech"]
  402. },
  403. "monster": {
  404. name: "Monster",
  405. parents: ["animal"]
  406. },
  407. "foo-dog": {
  408. name: "Foo Dog",
  409. parents: ["mammal"]
  410. },
  411. "elephant": {
  412. name: "Elephant",
  413. parents: ["mammal"]
  414. },
  415. "eagle": {
  416. name: "Eagle",
  417. parents: ["avian"]
  418. },
  419. "cow": {
  420. name: "Cow",
  421. parents: ["mammal"]
  422. },
  423. "crocodile": {
  424. name: "Crocodile",
  425. parents: ["reptile"]
  426. },
  427. "borzoi": {
  428. name: "Borzoi",
  429. parents: ["dog"]
  430. },
  431. "snake": {
  432. name: "Snake",
  433. parents: ["reptile"]
  434. },
  435. "horned-bush-viper": {
  436. name: "Horned Bush Viper",
  437. parents: ["snake"]
  438. },
  439. "cobra": {
  440. name: "Cobra",
  441. parents: ["snake"]
  442. },
  443. "harpy-eagle": {
  444. name: "Harpy Eagle",
  445. parents: ["eagle"]
  446. },
  447. "raptor": {
  448. name: "Raptor",
  449. parents: ["dinosaur"]
  450. },
  451. "dinosaur": {
  452. name: "Dinosaur",
  453. parents: ["reptile"]
  454. },
  455. "veilhound": {
  456. name: "Veilhound",
  457. parents: ["hellhound"]
  458. },
  459. "hellhound": {
  460. name: "Hellhound",
  461. parents: ["canine", "demon"]
  462. },
  463. "insect": {
  464. name: "Insect",
  465. parents: ["animal"]
  466. },
  467. "beetle": {
  468. name: "Beetle",
  469. parents: ["insect"]
  470. },
  471. "moth": {
  472. name: "Moth",
  473. parents: ["insect"]
  474. },
  475. "eastern-dragon": {
  476. name: "Eastern Dragon",
  477. parents: ["dragon"]
  478. },
  479. "jaguar": {
  480. name: "Jaguar",
  481. parents: ["cat"]
  482. },
  483. "horse": {
  484. name: "Horse",
  485. parents: ["mammal"]
  486. },
  487. "sergal": {
  488. name: "Sergal",
  489. parents: ["mammal"]
  490. },
  491. "gryphon": {
  492. name: "Gryphon",
  493. parents: ["lion", "eagle"]
  494. },
  495. "robot": {
  496. name: "Robot",
  497. parents: ["machine"]
  498. },
  499. "medihound": {
  500. name: "Medihound",
  501. parents: ["robot", "dog"]
  502. },
  503. "sylveon": {
  504. name: "Sylveon",
  505. parents: ["pokemon"]
  506. },
  507. "catgirl": {
  508. name: "Catgirl",
  509. parents: ["mammal"]
  510. },
  511. "cowgirl": {
  512. name: "Cowgirl",
  513. parents: ["mammal"]
  514. },
  515. "pony": {
  516. name: "Pony",
  517. parents: ["horse"]
  518. },
  519. "rabbit": {
  520. name: "Rabbit",
  521. parents: ["mammal"]
  522. },
  523. "fennec-fox": {
  524. name: "Fennec Fox",
  525. parents: ["fox"]
  526. },
  527. "azodian": {
  528. name: "Azodian",
  529. parents: ["mouse"]
  530. },
  531. "shiba-inu": {
  532. name: "Shiba Inu",
  533. parents: ["dog"]
  534. },
  535. "changeling": {
  536. name: "Changeling",
  537. parents: ["insect"]
  538. },
  539. "cheetah": {
  540. name: "Cheetah",
  541. parents: ["cat"]
  542. },
  543. "golden-jackal": {
  544. name: "Golden Jackal",
  545. parents: ["jackal"]
  546. },
  547. "manectric": {
  548. name: "Manectric",
  549. parents: ["pokemon"]
  550. },
  551. "rat": {
  552. name: "Rat",
  553. parents: ["rodent"]
  554. },
  555. "rodent": {
  556. name: "Rodent",
  557. parents: ["mammal"]
  558. },
  559. "octocoon": {
  560. name: "Octocoon",
  561. parents: ["raccoon", "octopus"]
  562. },
  563. "octopus": {
  564. name: "Octopus",
  565. parents: ["fish"]
  566. },
  567. "werewolf": {
  568. name: "Werewolf",
  569. parents: ["wolf", "werebeast"]
  570. },
  571. "werebeast": {
  572. name: "Werebeast",
  573. parents: ["monster"]
  574. },
  575. "meerkat": {
  576. name: "Meerkat",
  577. parents: ["mammal"]
  578. },
  579. "human": {
  580. name: "Human",
  581. parents: ["mammal"]
  582. },
  583. "geth": {
  584. name: "Geth",
  585. parents: ["android"]
  586. },
  587. "husky": {
  588. name: "Husky",
  589. parents: ["dog"]
  590. },
  591. "long-eared-bat": {
  592. name: "Long Eared Bat",
  593. parents: ["bat"]
  594. },
  595. "lizard": {
  596. name: "Lizard",
  597. parents: ["reptile"]
  598. },
  599. "salamander": {
  600. name: "Salamander",
  601. parents: ["lizard"]
  602. },
  603. "chameleon": {
  604. name: "Chameleon",
  605. parents: ["lizard"]
  606. },
  607. "gecko": {
  608. name: "Gecko",
  609. parents: ["lizard"]
  610. },
  611. "kobold": {
  612. name: "Kobold",
  613. parents: ["reptile"]
  614. },
  615. "charizard": {
  616. name: "Charizard",
  617. parents: ["pokemon"]
  618. },
  619. "lugia": {
  620. name: "Lugia",
  621. parents: ["pokemon"]
  622. },
  623. "cerberus": {
  624. name: "Cerberus",
  625. parents: ["dog"]
  626. },
  627. "tyrantrum": {
  628. name: "Tyrantrum",
  629. parents: ["pokemon"]
  630. },
  631. "lemur": {
  632. name: "Lemur",
  633. parents: ["mammal"]
  634. },
  635. "kelpie": {
  636. name: "Kelpie",
  637. parents: ["horse", "monster"]
  638. },
  639. "labrador": {
  640. name: "Labrador",
  641. parents: ["dog"]
  642. },
  643. "sylveon": {
  644. name: "Sylveon",
  645. parents: ["eeveelution"]
  646. },
  647. "eeveelution": {
  648. name: "Eeveelution",
  649. parents: ["pokemon"]
  650. },
  651. "polar-bear": {
  652. name: "Polar Bear",
  653. parents: ["bear"]
  654. },
  655. "bear": {
  656. name: "Bear",
  657. parents: ["mammal"]
  658. },
  659. "absol": {
  660. name: "Absol",
  661. parents: ["pokemon"]
  662. },
  663. "wolver": {
  664. name: "Wolver",
  665. parents: ["mammal"]
  666. },
  667. "rottweiler": {
  668. name: "Rottweiler",
  669. parents: ["dog"]
  670. },
  671. "zebra": {
  672. name: "Zebra",
  673. parents: ["horse"]
  674. },
  675. "yoshi": {
  676. name: "Yoshi",
  677. parents: ["lizard"]
  678. },
  679. "lynx": {
  680. name: "Lynx",
  681. parents: ["cat"]
  682. },
  683. "unknown": {
  684. name: "Unknown",
  685. parents: []
  686. },
  687. "thylacine": {
  688. name: "Thylacine",
  689. parents: ["mammal"]
  690. },
  691. "gabumon": {
  692. name: "Gabumon",
  693. parents: ["digimon"]
  694. },
  695. "border-collie": {
  696. name: "Border Collie",
  697. parents: ["dog"]
  698. },
  699. "imp": {
  700. name: "Imp",
  701. parents: ["demon"]
  702. },
  703. "kangaroo": {
  704. name: "Kangaroo",
  705. parents: ["marsupial"]
  706. },
  707. "renamon": {
  708. name: "Renamon",
  709. parents: ["digimon"]
  710. },
  711. "candy-orca-dragon": {
  712. name: "Candy Orca Dragon",
  713. parents: ["fish", "dragon", "candy"]
  714. },
  715. "sabertooth-tiger": {
  716. name: "Sabertooth Tiger",
  717. parents: ["cat"]
  718. },
  719. "espurr": {
  720. name: "Espurr",
  721. parents: ["pokemon"]
  722. },
  723. "otter": {
  724. name: "Otter",
  725. parents: ["mustelid"]
  726. },
  727. "elemental": {
  728. name: "Elemental",
  729. parents: ["mammal"]
  730. },
  731. "mew": {
  732. name: "Mew",
  733. parents: ["pokemon"]
  734. },
  735. "goodra": {
  736. name: "Goodra",
  737. parents: ["pokemon"]
  738. },
  739. "fairy": {
  740. name: "Fairy",
  741. parents: ["magical"]
  742. },
  743. "typhlosion": {
  744. name: "Typhlosion",
  745. parents: ["pokemon"]
  746. },
  747. "magical": {
  748. name: "Magical",
  749. parents: []
  750. },
  751. "xenomorph": {
  752. name: "Xenomorph",
  753. parents: ["monster", "alien"]
  754. },
  755. "charr": {
  756. name: "Charr",
  757. parents: ["cat"]
  758. },
  759. "siberian-husky": {
  760. name: "Siberian Husky",
  761. parents: ["husky"]
  762. },
  763. "alligator": {
  764. name: "Alligator",
  765. parents: ["reptile"]
  766. },
  767. "bernese-mountain-dog": {
  768. name: "Bernese Mountain Dog",
  769. parents: ["dog"]
  770. },
  771. "reshiram": {
  772. name: "Reshiram",
  773. parents: ["pokemon"]
  774. },
  775. "grizzly-bear": {
  776. name: "Grizzly Bear",
  777. parents: ["bear"]
  778. },
  779. "water-monitor": {
  780. name: "Water Monitor",
  781. parents: ["lizard"]
  782. },
  783. "banchofossa": {
  784. name: "Banchofossa",
  785. parents: ["mammal"]
  786. },
  787. "kirin": {
  788. name: "Kirin",
  789. parents: ["monster"]
  790. },
  791. "quilava": {
  792. name: "Quilava",
  793. parents: ["pokemon"]
  794. },
  795. "seviper": {
  796. name: "Seviper",
  797. parents: ["pokemon"]
  798. },
  799. "flying-fox": {
  800. name: "Flying Fox",
  801. parents: ["bat"]
  802. },
  803. "keynain": {
  804. name: "Keynain",
  805. parents: ["avian"]
  806. },
  807. "lucario": {
  808. name: "Lucario",
  809. parents: ["pokemon"]
  810. },
  811. "siamese-cat": {
  812. name: "Siamese Cat",
  813. parents: ["cat"]
  814. },
  815. "spider": {
  816. name: "Spider",
  817. parents: ["insect"]
  818. },
  819. "samurott": {
  820. name: "Samurott",
  821. parents: ["pokemon"]
  822. },
  823. "megalodon": {
  824. name: "Megalodon",
  825. parents: ["shark"]
  826. },
  827. "unicorn": {
  828. name: "Unicorn",
  829. parents: ["horse"]
  830. },
  831. "greninja": {
  832. name: "Greninja",
  833. parents: ["pokemon"]
  834. },
  835. "water-dragon": {
  836. name: "Water Dragon",
  837. parents: ["dragon"]
  838. },
  839. "cross-fox": {
  840. name: "Cross Fox",
  841. parents: ["fox"]
  842. },
  843. "synth": {
  844. name: "Synth",
  845. parents: ["machine"]
  846. },
  847. "construct": {
  848. name: "Construct",
  849. parents: []
  850. },
  851. "mexican-wolf": {
  852. name: "Mexican Wolf",
  853. parents: ["wolf"]
  854. },
  855. "leopard": {
  856. name: "Leopard",
  857. parents: ["cat"]
  858. },
  859. "pig": {
  860. name: "Pig",
  861. parents: ["mammal"]
  862. },
  863. "ampharos": {
  864. name: "Ampharos",
  865. parents: ["pokemon"]
  866. },
  867. "orca": {
  868. name: "Orca",
  869. parents: ["fish"]
  870. },
  871. "lycanroc": {
  872. name: "Lycanroc",
  873. parents: ["pokemon"]
  874. },
  875. "surkanu": {
  876. name: "Surkanu",
  877. parents: ["monster"]
  878. },
  879. "seal": {
  880. name: "Seal",
  881. parents: ["mammal"]
  882. },
  883. "keldeo": {
  884. name: "Keldeo",
  885. parents: ["pokemon"]
  886. },
  887. "great-dane": {
  888. name: "Great Dane",
  889. parents: ["dog"]
  890. },
  891. "black-backed-jackal": {
  892. name: "Black Backed Jackal",
  893. parents: ["jackal"]
  894. },
  895. "sheep": {
  896. name: "Sheep",
  897. parents: ["mammal"]
  898. },
  899. "leopard-seal": {
  900. name: "Leopard Seal",
  901. parents: ["seal"]
  902. },
  903. "zoroark": {
  904. name: "Zoroark",
  905. parents: ["pokemon"]
  906. },
  907. "maned-wolf": {
  908. name: "Maned Wolf",
  909. parents: ["canine"]
  910. },
  911. "dracha": {
  912. name: "Dracha",
  913. parents: ["dragon"]
  914. },
  915. "wolxi": {
  916. name: "Wolxi",
  917. parents: ["mammal", "alien"]
  918. },
  919. "dratini": {
  920. name: "Dratini",
  921. parents: ["pokemon", "dragon"]
  922. },
  923. "skaven": {
  924. name: "Skaven",
  925. parents: ["rat"]
  926. },
  927. "mongoose": {
  928. name: "Mongoose",
  929. parents: ["mammal"]
  930. },
  931. "lopunny": {
  932. name: "Lopunny",
  933. parents: ["pokemon", "rabbit"]
  934. },
  935. "feraligatr": {
  936. name: "Feraligatr",
  937. parents: ["pokemon", "alligator"]
  938. },
  939. "houndoom": {
  940. name: "Houndoom",
  941. parents: ["pokemon", "dog"]
  942. },
  943. "protogen": {
  944. name: "Protogen",
  945. parents: ["machine"]
  946. },
  947. "saint-bernard": {
  948. name: "Saint Bernard",
  949. parents: ["dog"]
  950. },
  951. "crow": {
  952. name: "Crow",
  953. parents: ["corvid"]
  954. },
  955. "delphox": {
  956. name: "Delphox",
  957. parents: ["pokemon", "fox"]
  958. },
  959. "moose": {
  960. name: "Moose",
  961. parents: ["mammal"]
  962. },
  963. "joraxian": {
  964. name: "Joraxian",
  965. parents: ["monster", "canine", "demon"]
  966. },
  967. "nimbat": {
  968. name: "Nimbat",
  969. parents: ["mammal"]
  970. },
  971. "aardwolf": {
  972. name: "Aardwolf",
  973. parents: ["canine"]
  974. },
  975. "fluudrani": {
  976. name: "Fluudrani",
  977. parents: ["animal"]
  978. },
  979. "arcanine": {
  980. name: "Arcanine",
  981. parents: ["pokemon", "dog"]
  982. },
  983. "inteleon": {
  984. name: "Inteleon",
  985. parents: ["pokemon", "fish"]
  986. },
  987. "ninetales": {
  988. name: "Ninetales",
  989. parents: ["pokemon", "kitsune"]
  990. },
  991. "tigrex": {
  992. name: "Tigrex",
  993. parents: ["tiger"]
  994. },
  995. "zorua": {
  996. name: "Zorua",
  997. parents: ["pokemon", "fox"]
  998. },
  999. "vulpix": {
  1000. name: "Vulpix",
  1001. parents: ["pokemon", "fox"]
  1002. },
  1003. "barghest": {
  1004. name: "Barghest",
  1005. parents: ["monster"]
  1006. },
  1007. "gray-wolf": {
  1008. name: "Gray Wolf",
  1009. parents: ["wolf"]
  1010. },
  1011. "ruppells-fox": {
  1012. name: "Rüppell's Fox",
  1013. parents: ["fox"]
  1014. },
  1015. "bull-terrier": {
  1016. name: "Bull Terrier",
  1017. parents: ["dog"]
  1018. },
  1019. "european-honey-buzzard": {
  1020. name: "European Honey Buzzard",
  1021. parents: ["avian"]
  1022. },
  1023. "t-rex": {
  1024. name: "Tyrannosaurus Rex",
  1025. parents: ["dinosaur"]
  1026. },
  1027. "mactarian": {
  1028. name: "Mactarian",
  1029. parents: ["shark", "monster"]
  1030. },
  1031. "mewtwo-y": {
  1032. name: "Mewtwo Y",
  1033. parents: ["mewtwo"]
  1034. },
  1035. "mewtwo": {
  1036. name: "Mewtwo",
  1037. parents: ["pokemon"]
  1038. },
  1039. "mew": {
  1040. name: "Mew",
  1041. parents: ["pokemon"]
  1042. },
  1043. "eevee": {
  1044. name: "Eevee",
  1045. parents: ["eeveelution"]
  1046. },
  1047. "mienshao": {
  1048. name: "Mienshao",
  1049. parents: ["pokemon"]
  1050. },
  1051. "sugar-glider": {
  1052. name: "Sugar Glider",
  1053. parents: ["opossum"]
  1054. },
  1055. "spectral-bat": {
  1056. name: "Spectral Bat",
  1057. parents: ["bat"]
  1058. },
  1059. "scolipede": {
  1060. name: "Scolipede",
  1061. parents: ["pokemon", "insect"]
  1062. },
  1063. "jackalope": {
  1064. name: "Jackalope",
  1065. parents: ["rabbit", "antelope"]
  1066. },
  1067. "caracal": {
  1068. name: "Caracal",
  1069. parents: ["cat"]
  1070. },
  1071. "stoat": {
  1072. name: "Stoat",
  1073. parents: ["mammal"]
  1074. },
  1075. "african-golden-cat": {
  1076. name: "African Golden Cat",
  1077. parents: ["cat"]
  1078. },
  1079. "gigantosaurus": {
  1080. name: "Gigantosaurus",
  1081. parents: ["dinosaur"]
  1082. },
  1083. "zorgoia": {
  1084. name: "Zorgoia",
  1085. parents: ["mammal"]
  1086. },
  1087. "monitor-lizard": {
  1088. name: "Monitor Lizard",
  1089. parents: ["lizard"]
  1090. },
  1091. "ziralkia": {
  1092. name: "Ziralkia",
  1093. parents: ["mammal"]
  1094. },
  1095. "kiiasi": {
  1096. name: "Kiiasi",
  1097. parents: ["animal"]
  1098. },
  1099. "synx": {
  1100. name: "Synx",
  1101. parents: ["monster"]
  1102. },
  1103. "panther": {
  1104. name: "Panther",
  1105. parents: ["cat"]
  1106. },
  1107. "azumarill": {
  1108. name: "Azumarill",
  1109. parents: ["pokemon"]
  1110. },
  1111. "river-snaptail": {
  1112. name: "River Snaptail",
  1113. parents: ["otter", "crocodile"]
  1114. },
  1115. "great-blue-heron": {
  1116. name: "Great Blue Heron",
  1117. parents: ["avian"]
  1118. },
  1119. "smeargle": {
  1120. name: "Smeargle",
  1121. parents: ["pokemon"]
  1122. },
  1123. "vendeilen": {
  1124. name: "Vendeilen",
  1125. parents: ["monster"]
  1126. },
  1127. "ventura": {
  1128. name: "Ventura",
  1129. parents: ["canine"]
  1130. },
  1131. "clouded-leopard": {
  1132. name: "Clouded Leopard",
  1133. parents: ["leopard"]
  1134. },
  1135. "argonian": {
  1136. name: "Argonian",
  1137. parents: ["lizard"]
  1138. },
  1139. "salazzle": {
  1140. name: "Salazzle",
  1141. parents: ["pokemon", "lizard"]
  1142. },
  1143. "je-stoff-drachen": {
  1144. name: "Je-Stoff Drachen",
  1145. parents: ["dragon"]
  1146. },
  1147. "finnish-spitz-dog": {
  1148. name: "Finnish Spitz Dog",
  1149. parents: ["dog"]
  1150. },
  1151. "gray-fox": {
  1152. name: "Gray Fox",
  1153. parents: ["fox"]
  1154. },
  1155. "opossum": {
  1156. name: "Opossum",
  1157. parents: ["mammal"]
  1158. },
  1159. "antelope": {
  1160. name: "Antelope",
  1161. parents: ["mammal"]
  1162. },
  1163. "weavile": {
  1164. name: "Weavile",
  1165. parents: ["pokemon"]
  1166. },
  1167. "pikachu": {
  1168. name: "Pikachu",
  1169. parents: ["pokemon", "mouse"]
  1170. },
  1171. "grovyle": {
  1172. name: "Grovyle",
  1173. parents: ["pokemon", "plant"]
  1174. },
  1175. "sthara": {
  1176. name: "Sthara",
  1177. parents: ["snow-leopard", "reptile"]
  1178. },
  1179. "star-warrior": {
  1180. name: "Star Warrior",
  1181. parents: ["magical"]
  1182. },
  1183. "dragonoid": {
  1184. name: "Dragonoid",
  1185. parents: ["dragon"]
  1186. },
  1187. "suicune": {
  1188. name: "Suicune",
  1189. parents: ["pokemon"]
  1190. },
  1191. "vole": {
  1192. name: "Vole",
  1193. parents: ["mammal"]
  1194. },
  1195. "blaziken": {
  1196. name: "Blaziken",
  1197. parents: ["pokemon", "avian"]
  1198. },
  1199. "buizel": {
  1200. name: "Buizel",
  1201. parents: ["pokemon", "fish"]
  1202. },
  1203. "floatzel": {
  1204. name: "Floatzel",
  1205. parents: ["pokemon", "fish"]
  1206. },
  1207. "umok": {
  1208. name: "Umok",
  1209. parents: ["avian"]
  1210. },
  1211. "sea-monster": {
  1212. name: "Sea Monster",
  1213. parents: ["monster", "fish"]
  1214. },
  1215. "egyptian-vulture": {
  1216. name: "Egyptian Vulture",
  1217. parents: ["avian"]
  1218. },
  1219. "doberman": {
  1220. name: "Doberman",
  1221. parents: ["dog"]
  1222. },
  1223. "zangoose": {
  1224. name: "Zangoose",
  1225. parents: ["pokemon", "mongoose"]
  1226. },
  1227. "mongoose": {
  1228. name: "Mongoose",
  1229. parents: ["mammal"]
  1230. },
  1231. "wickerbeast": {
  1232. name: "Wickerbeast",
  1233. parents: ["monster"]
  1234. },
  1235. "zenari": {
  1236. name: "Zenari",
  1237. parents: ["lizard"]
  1238. },
  1239. "plant": {
  1240. name: "Plant",
  1241. parents: []
  1242. },
  1243. "raskatox": {
  1244. name: "Raskatox",
  1245. parents: ["raccoon", "skunk", "cat", "fox"]
  1246. },
  1247. "mikromare": {
  1248. name: "mikromare",
  1249. parents: ["alien"]
  1250. },
  1251. "alien": {
  1252. name: "Alien",
  1253. parents: ["animal"]
  1254. },
  1255. "deity": {
  1256. name: "Deity",
  1257. parents: []
  1258. },
  1259. "skarlan": {
  1260. name: "Skarlan",
  1261. parents: ["slug", "dragon"]
  1262. },
  1263. "slug": {
  1264. name: "Slug",
  1265. parents: ["mollusk"]
  1266. },
  1267. "mollusk": {
  1268. name: "Mollusk",
  1269. parents: ["animal"]
  1270. },
  1271. "chimera": {
  1272. name: "Chimera",
  1273. parents: ["monster"]
  1274. },
  1275. "gestalt": {
  1276. name: "Gestalt",
  1277. parents: ["construct"]
  1278. },
  1279. "mimic": {
  1280. name: "Mimic",
  1281. parents: ["monster"]
  1282. },
  1283. "calico-rat": {
  1284. name: "Calico Rat",
  1285. parents: ["rat"]
  1286. },
  1287. "panda": {
  1288. name: "Panda",
  1289. parents: ["mammal"]
  1290. },
  1291. "oni": {
  1292. name: "Oni",
  1293. parents: ["monster"]
  1294. },
  1295. "pegasus": {
  1296. name: "Pegasus",
  1297. parents: ["horse"]
  1298. },
  1299. "vulpera": {
  1300. name: "Vulpera",
  1301. parents: ["fennec-fox"]
  1302. },
  1303. "ceratosaurus": {
  1304. name: "Ceratosaurus",
  1305. parents: ["dinosaur"]
  1306. },
  1307. "nykur": {
  1308. name: "Nykur",
  1309. parents: ["horse", "monster"]
  1310. },
  1311. "giraffe": {
  1312. name: "Giraffe",
  1313. parents: ["mammal"]
  1314. },
  1315. "tauren": {
  1316. name: "Tauren",
  1317. parents: ["cow"]
  1318. },
  1319. "draconi": {
  1320. name: "Draconi",
  1321. parents: ["alien", "cat", "cyborg"]
  1322. },
  1323. "dire-wolf": {
  1324. name: "Dire Wolf",
  1325. parents: ["wolf"]
  1326. },
  1327. "ferromorph": {
  1328. name: "Ferromorph",
  1329. parents: ["construct"]
  1330. },
  1331. "meowth": {
  1332. name: "Meowth",
  1333. parents: ["cat", "pokemon"]
  1334. },
  1335. "pavodragon": {
  1336. name: "Pavodragon",
  1337. parents: ["dragon"]
  1338. },
  1339. "aaltranae": {
  1340. name: "Aaltranae",
  1341. parents: ["dragon"]
  1342. },
  1343. "cyborg": {
  1344. name: "Cyborg",
  1345. parents: ["machine"]
  1346. },
  1347. "draptor": {
  1348. name: "Draptor",
  1349. parents: ["dragon"]
  1350. },
  1351. "candy": {
  1352. name: "Candy",
  1353. parents: []
  1354. },
  1355. "drenath": {
  1356. name: "Drenath",
  1357. parents: ["dragon", "snake", "rabbit"]
  1358. },
  1359. "coyju": {
  1360. name: "Coyju",
  1361. parents: ["coyote", "kaiju"]
  1362. },
  1363. "kaiju": {
  1364. name: "Kaiju",
  1365. parents: ["monster"]
  1366. },
  1367. "nickit": {
  1368. name: "Nickit",
  1369. parents: ["pokemon", "cat"]
  1370. },
  1371. "lopunny": {
  1372. name: "Lopunny",
  1373. parents: ["pokemon", "rabbit"]
  1374. },
  1375. "korean-jindo-dog": {
  1376. name: "Korean Jindo Dog",
  1377. parents: ["dog"]
  1378. },
  1379. "naga": {
  1380. name: "Naga",
  1381. parents: ["snake", "monster"]
  1382. },
  1383. "undead": {
  1384. name: "Undead",
  1385. parents: ["monster"]
  1386. },
  1387. "whale": {
  1388. name: "Whale",
  1389. parents: ["fish"]
  1390. },
  1391. "gelato-bee": {
  1392. name: "Gelato Bee",
  1393. parents: ["bee"]
  1394. },
  1395. "bee": {
  1396. name: "Bee",
  1397. parents: ["insect"]
  1398. },
  1399. "gardevoir": {
  1400. name: "Gardevoir",
  1401. parents: ["pokemon"]
  1402. },
  1403. "ant": {
  1404. name: "Ant",
  1405. parents: ["insect"]
  1406. },
  1407. "frog": {
  1408. name: "Frog",
  1409. parents: ["amphibian"]
  1410. },
  1411. "amphibian": {
  1412. name: "Amphibian",
  1413. parents: ["animal"]
  1414. },
  1415. "pangolin": {
  1416. name: "Pangolin",
  1417. parents: ["mammal"]
  1418. },
  1419. "uragi'viidorn": {
  1420. name: "Uragi'viidorn",
  1421. parents: ["avian", "bear"]
  1422. },
  1423. "gryphdelphais": {
  1424. name: "Gryphdelphais",
  1425. parents: ["dolphin", "gryphon"]
  1426. },
  1427. "plush": {
  1428. name: "Plush",
  1429. parents: ["construct"]
  1430. },
  1431. "draiger": {
  1432. name: "Draiger",
  1433. parents: ["dragon","tiger"]
  1434. },
  1435. "foxsky": {
  1436. name: "Foxsky",
  1437. parents: ["fox", "husky"]
  1438. },
  1439. "umbreon": {
  1440. name: "Umbreon",
  1441. parents: ["eeveelution"]
  1442. },
  1443. "slime-dragon": {
  1444. name: "Slime Dragon",
  1445. parents: ["dragon", "goo"]
  1446. },
  1447. "enderman": {
  1448. name: "Enderman",
  1449. parents: ["monster"]
  1450. },
  1451. "gremlin": {
  1452. name: "Gremlin",
  1453. parents: ["monster"]
  1454. },
  1455. "dragonsune": {
  1456. name: "Dragonsune",
  1457. parents: ["dragon", "kitsune"]
  1458. },
  1459. "ghost": {
  1460. name: "Ghost",
  1461. parents: ["supernatural"]
  1462. },
  1463. "false-vampire-bat": {
  1464. name: "False Vampire Bat",
  1465. parents: ["bat"]
  1466. },
  1467. "succubus": {
  1468. name: "Succubus",
  1469. parents: ["demon"]
  1470. },
  1471. "mia": {
  1472. name: "Mia",
  1473. parents: ["canine"]
  1474. },
  1475. "rainbow": {
  1476. name: "Rainbow",
  1477. parents: ["monster"]
  1478. },
  1479. "solgaleo": {
  1480. name: "Solgaleo",
  1481. parents: ["pokemon"]
  1482. },
  1483. "lucent-nargacuga": {
  1484. name: "Lucent Nargacuga",
  1485. parents: ["monster-hunter"]
  1486. },
  1487. "monster-hunter": {
  1488. name: "Monster Hunter",
  1489. parents: ["monster"]
  1490. },
  1491. "leviathan": {
  1492. "name": "Leviathan",
  1493. "url": "sea-monster"
  1494. },
  1495. "bull": {
  1496. name: "Bull",
  1497. parents: ["mammal"]
  1498. },
  1499. "tanuki": {
  1500. name: "Tanuki",
  1501. parents: ["monster"]
  1502. },
  1503. "chakat": {
  1504. name: "Chakat",
  1505. parents: ["cat"]
  1506. },
  1507. "hydra": {
  1508. name: "Hydra",
  1509. parents: ["monster"]
  1510. },
  1511. "zigzagoon": {
  1512. name: "Zigzagoon",
  1513. parents: ["raccoon", "pokemon"]
  1514. },
  1515. "vulture": {
  1516. name: "Vulture",
  1517. parents: ["avian"]
  1518. },
  1519. "eastern-dragon": {
  1520. name: "Eastern Dragon",
  1521. parents: ["dragon"]
  1522. },
  1523. "gryffon": {
  1524. name: "Gryffon",
  1525. parents: ["phoenix", "red-panda"]
  1526. },
  1527. "amtsvane": {
  1528. name: "Amtsvane",
  1529. parents: ["reptile"]
  1530. },
  1531. "kigavi": {
  1532. name: "Kigavi",
  1533. parents: ["avian"]
  1534. },
  1535. "turian": {
  1536. name: "Turian",
  1537. parents: ["avian"]
  1538. },
  1539. "zeraora": {
  1540. name: "Zeraora",
  1541. parents: ["pokemon"]
  1542. },
  1543. "sandshrew": {
  1544. name: "Sandshrew",
  1545. parents: ["pokemon", "pangolin"]
  1546. },
  1547. "valais-blacknose-sheep": {
  1548. name: "Valais Blacknose Sheep",
  1549. parents: ["sheep"]
  1550. },
  1551. "novaleit": {
  1552. name: "Novaleit",
  1553. parents: ["mammal"]
  1554. },
  1555. "dunnoh": {
  1556. name: "Dunnoh",
  1557. parents: ["mammal"]
  1558. },
  1559. "lunaral-dragon": {
  1560. name: "Lunaral Dragon",
  1561. parents: ["dragon"]
  1562. },
  1563. "arctic-wolf": {
  1564. name: "Arctic Wolf",
  1565. parents: ["wolf"]
  1566. },
  1567. "donkey": {
  1568. name: "Donkey",
  1569. parents: ["horse"]
  1570. },
  1571. "chinchilla": {
  1572. name: "Chinchilla",
  1573. parents: ["rodent"]
  1574. },
  1575. "felkin": {
  1576. name: "Felkin",
  1577. parents: ["dragon"]
  1578. },
  1579. "tykeriel": {
  1580. name: "Tykeriel",
  1581. parents: ["avian"]
  1582. },
  1583. "folf": {
  1584. name: "Folf",
  1585. parents: ["fox", "wolf"]
  1586. },
  1587. "pooltoy": {
  1588. name: "Pooltoy",
  1589. parents: ["construct"]
  1590. },
  1591. "demi": {
  1592. name: "Demi",
  1593. parents: ["human"]
  1594. },
  1595. "stegosaurus": {
  1596. name: "Stegosaurus",
  1597. parents: ["dinosaur"]
  1598. },
  1599. "computer-virus": {
  1600. name: "Computer Virus",
  1601. parents: ["program"]
  1602. },
  1603. "program": {
  1604. name: "Program",
  1605. parents: ["construct"]
  1606. },
  1607. "space-springhare": {
  1608. name: "Space Springhare",
  1609. parents: ["rabbit"]
  1610. },
  1611. "river-drake": {
  1612. name: "River Drake",
  1613. parents: ["dragon"]
  1614. },
  1615. "djinn": {
  1616. "name": "Djinn",
  1617. "url": "supernatural"
  1618. },
  1619. "supernatural": {
  1620. name: "Supernatural",
  1621. parents: ["monster"]
  1622. },
  1623. "grasshopper-mouse": {
  1624. name: "Grasshopper Mouse",
  1625. parents: ["mouse"]
  1626. },
  1627. "somali-cat": {
  1628. name: "Somali Cat",
  1629. parents: ["cat"]
  1630. },
  1631. "minccino": {
  1632. name: "Minccino",
  1633. parents: ["pokemon", "chinchilla"]
  1634. },
  1635. "pine-marten": {
  1636. name: "Pine Marten",
  1637. parents: ["marten"]
  1638. },
  1639. "marten": {
  1640. name: "Marten",
  1641. parents: ["mustelid"]
  1642. },
  1643. "mustelid": {
  1644. name: "Mustelid",
  1645. parents: ["mammal"]
  1646. },
  1647. "caribou": {
  1648. name: "Caribou",
  1649. parents: ["deer"]
  1650. },
  1651. "gnoll": {
  1652. name: "Gnoll",
  1653. parents: ["hyena", "monster"]
  1654. },
  1655. "peacekeeper": {
  1656. name: "Peacekeeper",
  1657. parents: ["human"]
  1658. },
  1659. "river-otter": {
  1660. name: "River Otter",
  1661. parents: ["otter"]
  1662. },
  1663. "dhole": {
  1664. name: "Dhole",
  1665. parents: ["canine"]
  1666. },
  1667. "springbok": {
  1668. name: "Springbok",
  1669. parents: ["antelope"]
  1670. },
  1671. "marsupial": {
  1672. name: "Marsupial",
  1673. parents: ["mammal"]
  1674. },
  1675. "townsend-big-eared-bat": {
  1676. name: "Townsend Big-eared Bat",
  1677. parents: ["bat"]
  1678. },
  1679. "squirrel": {
  1680. name: "Squirrel",
  1681. parents: ["rodent"]
  1682. },
  1683. "magpie": {
  1684. name: "Magpie",
  1685. parents: ["corvid"]
  1686. },
  1687. "civet": {
  1688. name: "Civet",
  1689. parents: ["feliform"]
  1690. },
  1691. "feliform": {
  1692. name: "Feliform",
  1693. parents: ["mammal"]
  1694. },
  1695. "tiefling": {
  1696. name: "Tiefling",
  1697. parents: ["devil"]
  1698. },
  1699. "devil": {
  1700. name: "Devil",
  1701. parents: ["supernatural"]
  1702. },
  1703. "sika-deer": {
  1704. name: "Sika Deer",
  1705. parents: ["deer"]
  1706. },
  1707. "vaporeon": {
  1708. name: "Vaporeon",
  1709. parents: ["eeveelution"]
  1710. },
  1711. "leafeon": {
  1712. name: "Leafeon",
  1713. parents: ["eeveelution"]
  1714. },
  1715. "jolteon": {
  1716. name: "Jolteon",
  1717. parents: ["eeveelution"]
  1718. },
  1719. "spireborn": {
  1720. name: "Spireborn",
  1721. parents: ["zorgoia"]
  1722. },
  1723. "vampire": {
  1724. name: "Vampire",
  1725. parents: ["monster"]
  1726. },
  1727. "extraplanar": {
  1728. name: "Extraplanar",
  1729. parents: []
  1730. },
  1731. "goo": {
  1732. name: "Goo",
  1733. parents: []
  1734. },
  1735. "skink": {
  1736. name: "Skink",
  1737. parents: ["lizard"]
  1738. },
  1739. "bat-eared-fox": {
  1740. name: "Bat-eared Fox",
  1741. parents: ["fox"]
  1742. },
  1743. "belted-kingfisher": {
  1744. name: "Belted Kingfisher",
  1745. parents: ["avian"]
  1746. },
  1747. "omnifalcon": {
  1748. name: "Omnifalcon",
  1749. parents: ["gryphon", "falcon", "harpy-eagle"]
  1750. },
  1751. "falcon": {
  1752. name: "Falcon",
  1753. parents: ["avian"]
  1754. },
  1755. "avali": {
  1756. name: "Avali",
  1757. parents: ["avian", "alien"]
  1758. },
  1759. "arctic-fox": {
  1760. name: "Arctic Fox",
  1761. parents: ["fox"]
  1762. },
  1763. "snow-tiger": {
  1764. name: "Snow Tiger",
  1765. parents: ["tiger"]
  1766. },
  1767. "marble-fox": {
  1768. name: "Marble Fox",
  1769. parents: ["fox"]
  1770. },
  1771. "king-wickerbeast": {
  1772. name: "King Wickerbeast",
  1773. parents: ["wickerbeast"]
  1774. },
  1775. "wickerbeast": {
  1776. name: "Wickerbeast",
  1777. parents: ["mammal"]
  1778. },
  1779. "european-polecat": {
  1780. name: "European Polecat",
  1781. parents: ["mustelid"]
  1782. },
  1783. "teshari": {
  1784. name: "Teshari",
  1785. parents: ["avian", "raptor"]
  1786. },
  1787. "alicorn": {
  1788. name: "Alicorn",
  1789. parents: ["horse"]
  1790. },
  1791. "atlas-moth": {
  1792. name: "Atlas Moth",
  1793. parents: ["moth"]
  1794. },
  1795. "owlbear": {
  1796. name: "Owlbear",
  1797. parents: ["owl", "bear", "monster"]
  1798. },
  1799. "owl": {
  1800. name: "Owl",
  1801. parents: ["avian"]
  1802. },
  1803. "silvertongue": {
  1804. name: "Silvertongue",
  1805. parents: ["reptile"]
  1806. },
  1807. "ahuizotl": {
  1808. name: "Ahuizotl",
  1809. parents: ["monster"]
  1810. },
  1811. "ender-dragon": {
  1812. name: "Ender Dragon",
  1813. parents: ["dragon"]
  1814. },
  1815. "bruhathkayosaurus": {
  1816. name: "Bruhathkayosaurus",
  1817. parents: ["sauropod"]
  1818. },
  1819. "sauropod": {
  1820. name: "Sauropod",
  1821. parents: ["dinosaur"]
  1822. },
  1823. "black-sable-antelope": {
  1824. name: "Black Sable Antelope",
  1825. parents: ["antelope"]
  1826. },
  1827. "slime": {
  1828. name: "Slime",
  1829. parents: ["goo"]
  1830. },
  1831. "utahraptor": {
  1832. name: "Utahraptor",
  1833. parents: ["raptor"]
  1834. },
  1835. "indian-giant-squirrel": {
  1836. name: "Indian Giant Squirrel",
  1837. parents: ["squirrel"]
  1838. },
  1839. "golden-retriever": {
  1840. name: "Golden Retriever",
  1841. parents: ["dog"]
  1842. },
  1843. "triceratops": {
  1844. name: "Triceratops",
  1845. parents: ["dinosaur"]
  1846. },
  1847. "drake": {
  1848. name: "Drake",
  1849. parents: ["dragon"]
  1850. },
  1851. }
  1852. //species
  1853. function getSpeciesInfo(speciesList) {
  1854. let result = new Set();
  1855. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1856. result.add(entry)
  1857. });
  1858. return Array.from(result);
  1859. };
  1860. function getSpeciesInfoHelper(species) {
  1861. if (!speciesData[species]) {
  1862. console.warn(species + " doesn't exist");
  1863. return [];
  1864. }
  1865. if (speciesData[species].parents) {
  1866. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1867. } else {
  1868. return [species];
  1869. }
  1870. }
  1871. characterMakers.push(() => makeCharacter(
  1872. {
  1873. name: "Fen",
  1874. species: ["crux"],
  1875. description: {
  1876. title: "Bio",
  1877. text: "Very furry. Sheds on everything."
  1878. },
  1879. tags: [
  1880. "anthro",
  1881. "goo"
  1882. ]
  1883. },
  1884. {
  1885. front: {
  1886. height: math.unit(12, "feet"),
  1887. weight: math.unit(2400, "lb"),
  1888. name: "Front",
  1889. image: {
  1890. source: "./media/characters/fen/front.svg",
  1891. extra: 1804/1562,
  1892. bottom: 205/2009
  1893. }
  1894. },
  1895. diving: {
  1896. height: math.unit(4.9, "meters"),
  1897. weight: math.unit(2400, "lb"),
  1898. name: "Diving",
  1899. image: {
  1900. source: "./media/characters/fen/diving.svg"
  1901. }
  1902. },
  1903. goo: {
  1904. height: math.unit(12, "feet"),
  1905. weight: math.unit(3000, "lb"),
  1906. capacity: math.unit(6, "people"),
  1907. name: "Goo",
  1908. image: {
  1909. source: "./media/characters/fen/goo.svg",
  1910. extra: 1307/1071,
  1911. bottom: 134/1441
  1912. }
  1913. },
  1914. maw: {
  1915. height: math.unit(5.03, "feet"),
  1916. name: "Maw",
  1917. image: {
  1918. source: "./media/characters/fen/maw.svg"
  1919. }
  1920. },
  1921. gooCeiling: {
  1922. height: math.unit(6.6, "feet"),
  1923. weight: math.unit(3000, "lb"),
  1924. capacity: math.unit(6, "people"),
  1925. name: "Goo (Ceiling)",
  1926. image: {
  1927. source: "./media/characters/fen/goo-ceiling.svg"
  1928. }
  1929. },
  1930. back: {
  1931. height: math.unit(12, "feet"),
  1932. weight: math.unit(2400, "lb"),
  1933. name: "Back",
  1934. image: {
  1935. source: "./media/characters/fen/back.svg",
  1936. },
  1937. info: {
  1938. description: {
  1939. mode: "append",
  1940. text: "\n\nHe is not currently looking at you."
  1941. }
  1942. }
  1943. },
  1944. full: {
  1945. height: math.unit(1.6, "meter"),
  1946. weight: math.unit(3200, "lb"),
  1947. name: "Full",
  1948. image: {
  1949. source: "./media/characters/fen/full.svg",
  1950. extra: 1133/859,
  1951. bottom: 145/1278
  1952. },
  1953. info: {
  1954. description: {
  1955. mode: "append",
  1956. text: "\n\nMunch."
  1957. }
  1958. }
  1959. },
  1960. gooLounging: {
  1961. height: math.unit(4.53, "feet"),
  1962. weight: math.unit(3000, "lb"),
  1963. capacity: math.unit(6, "people"),
  1964. name: "Goo (Lounging)",
  1965. image: {
  1966. source: "./media/characters/fen/goo.svg",
  1967. bottom: 116 / 613
  1968. }
  1969. },
  1970. lounging: {
  1971. height: math.unit(10.52, "feet"),
  1972. weight: math.unit(2400, "lb"),
  1973. name: "Lounging",
  1974. image: {
  1975. source: "./media/characters/fen/lounging.svg"
  1976. }
  1977. },
  1978. },
  1979. [
  1980. {
  1981. name: "Small",
  1982. height: math.unit(2.2428, "meter")
  1983. },
  1984. {
  1985. name: "Normal",
  1986. height: math.unit(12, "feet"),
  1987. default: true,
  1988. },
  1989. {
  1990. name: "Big",
  1991. height: math.unit(20, "feet")
  1992. },
  1993. {
  1994. name: "Minimacro",
  1995. height: math.unit(40, "feet"),
  1996. info: {
  1997. description: {
  1998. mode: "append",
  1999. text: "\n\nTOO DAMN BIG"
  2000. }
  2001. }
  2002. },
  2003. {
  2004. name: "Macro",
  2005. height: math.unit(100, "feet"),
  2006. info: {
  2007. description: {
  2008. mode: "append",
  2009. text: "\n\nTOO DAMN BIG"
  2010. }
  2011. }
  2012. },
  2013. {
  2014. name: "Megamacro",
  2015. height: math.unit(2, "miles")
  2016. },
  2017. {
  2018. name: "Gigamacro",
  2019. height: math.unit(10, "earths")
  2020. },
  2021. ]
  2022. ))
  2023. characterMakers.push(() => makeCharacter(
  2024. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2025. {
  2026. front: {
  2027. height: math.unit(183, "cm"),
  2028. weight: math.unit(80, "kg"),
  2029. name: "Front",
  2030. image: {
  2031. source: "./media/characters/sofia-fluttertail/front.svg",
  2032. bottom: 0.01,
  2033. extra: 2154 / 2081
  2034. }
  2035. },
  2036. frontAlt: {
  2037. height: math.unit(183, "cm"),
  2038. weight: math.unit(80, "kg"),
  2039. name: "Front (alt)",
  2040. image: {
  2041. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2042. }
  2043. },
  2044. back: {
  2045. height: math.unit(183, "cm"),
  2046. weight: math.unit(80, "kg"),
  2047. name: "Back",
  2048. image: {
  2049. source: "./media/characters/sofia-fluttertail/back.svg"
  2050. }
  2051. },
  2052. kneeling: {
  2053. height: math.unit(125, "cm"),
  2054. weight: math.unit(80, "kg"),
  2055. name: "Kneeling",
  2056. image: {
  2057. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2058. extra: 1033 / 977,
  2059. bottom: 23.7 / 1057
  2060. }
  2061. },
  2062. maw: {
  2063. height: math.unit(183 / 5, "cm"),
  2064. name: "Maw",
  2065. image: {
  2066. source: "./media/characters/sofia-fluttertail/maw.svg"
  2067. }
  2068. },
  2069. mawcloseup: {
  2070. height: math.unit(183 / 5 * 0.41, "cm"),
  2071. name: "Maw (Closeup)",
  2072. image: {
  2073. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2074. }
  2075. },
  2076. paws: {
  2077. height: math.unit(1.17, "feet"),
  2078. name: "Paws",
  2079. image: {
  2080. source: "./media/characters/sofia-fluttertail/paws.svg",
  2081. extra: 851 / 851,
  2082. bottom: 17 / 868
  2083. }
  2084. },
  2085. },
  2086. [
  2087. {
  2088. name: "Normal",
  2089. height: math.unit(1.83, "meter")
  2090. },
  2091. {
  2092. name: "Size Thief",
  2093. height: math.unit(18, "feet")
  2094. },
  2095. {
  2096. name: "50 Foot Collie",
  2097. height: math.unit(50, "feet")
  2098. },
  2099. {
  2100. name: "Macro",
  2101. height: math.unit(96, "feet"),
  2102. default: true
  2103. },
  2104. {
  2105. name: "Megamerger",
  2106. height: math.unit(650, "feet")
  2107. },
  2108. ]
  2109. ))
  2110. characterMakers.push(() => makeCharacter(
  2111. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2112. {
  2113. front: {
  2114. height: math.unit(7, "feet"),
  2115. weight: math.unit(100, "kg"),
  2116. name: "Front",
  2117. image: {
  2118. source: "./media/characters/march/front.svg",
  2119. extra: 1992/1851,
  2120. bottom: 39/2031
  2121. }
  2122. },
  2123. foot: {
  2124. height: math.unit(0.9, "feet"),
  2125. name: "Foot",
  2126. image: {
  2127. source: "./media/characters/march/foot.svg"
  2128. }
  2129. },
  2130. },
  2131. [
  2132. {
  2133. name: "Normal",
  2134. height: math.unit(7.9, "feet")
  2135. },
  2136. {
  2137. name: "Macro",
  2138. height: math.unit(220, "meters")
  2139. },
  2140. {
  2141. name: "Megamacro",
  2142. height: math.unit(2.98, "km"),
  2143. default: true
  2144. },
  2145. {
  2146. name: "Gigamacro",
  2147. height: math.unit(15963, "km")
  2148. },
  2149. {
  2150. name: "Teramacro",
  2151. height: math.unit(2980000000, "km")
  2152. },
  2153. {
  2154. name: "Examacro",
  2155. height: math.unit(250, "parsecs")
  2156. },
  2157. ]
  2158. ))
  2159. characterMakers.push(() => makeCharacter(
  2160. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2161. {
  2162. front: {
  2163. height: math.unit(6, "feet"),
  2164. weight: math.unit(60, "kg"),
  2165. name: "Front",
  2166. image: {
  2167. source: "./media/characters/noir/front.svg",
  2168. extra: 1,
  2169. bottom: 0.032
  2170. }
  2171. },
  2172. },
  2173. [
  2174. {
  2175. name: "Normal",
  2176. height: math.unit(6.6, "feet")
  2177. },
  2178. {
  2179. name: "Macro",
  2180. height: math.unit(500, "feet")
  2181. },
  2182. {
  2183. name: "Megamacro",
  2184. height: math.unit(2.5, "km"),
  2185. default: true
  2186. },
  2187. {
  2188. name: "Gigamacro",
  2189. height: math.unit(22500, "km")
  2190. },
  2191. {
  2192. name: "Teramacro",
  2193. height: math.unit(2500000000, "km")
  2194. },
  2195. {
  2196. name: "Examacro",
  2197. height: math.unit(200, "parsecs")
  2198. },
  2199. ]
  2200. ))
  2201. characterMakers.push(() => makeCharacter(
  2202. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2203. {
  2204. front: {
  2205. height: math.unit(7, "feet"),
  2206. weight: math.unit(100, "kg"),
  2207. name: "Front",
  2208. image: {
  2209. source: "./media/characters/okuri/front.svg",
  2210. extra: 1,
  2211. bottom: 0.037
  2212. }
  2213. },
  2214. back: {
  2215. height: math.unit(7, "feet"),
  2216. weight: math.unit(100, "kg"),
  2217. name: "Back",
  2218. image: {
  2219. source: "./media/characters/okuri/back.svg",
  2220. extra: 1,
  2221. bottom: 0.007
  2222. }
  2223. },
  2224. },
  2225. [
  2226. {
  2227. name: "Megamacro",
  2228. height: math.unit(100, "miles"),
  2229. default: true
  2230. },
  2231. ]
  2232. ))
  2233. characterMakers.push(() => makeCharacter(
  2234. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2235. {
  2236. front: {
  2237. height: math.unit(7, "feet"),
  2238. weight: math.unit(100, "kg"),
  2239. name: "Front",
  2240. image: {
  2241. source: "./media/characters/manny/front.svg",
  2242. extra: 1,
  2243. bottom: 0.06
  2244. }
  2245. },
  2246. back: {
  2247. height: math.unit(7, "feet"),
  2248. weight: math.unit(100, "kg"),
  2249. name: "Back",
  2250. image: {
  2251. source: "./media/characters/manny/back.svg",
  2252. extra: 1,
  2253. bottom: 0.014
  2254. }
  2255. },
  2256. },
  2257. [
  2258. {
  2259. name: "Normal",
  2260. height: math.unit(7, "feet"),
  2261. },
  2262. {
  2263. name: "Macro",
  2264. height: math.unit(78, "feet"),
  2265. default: true
  2266. },
  2267. {
  2268. name: "Macro+",
  2269. height: math.unit(300, "meters")
  2270. },
  2271. {
  2272. name: "Macro++",
  2273. height: math.unit(2400, "meters")
  2274. },
  2275. {
  2276. name: "Megamacro",
  2277. height: math.unit(5167, "meters")
  2278. },
  2279. {
  2280. name: "Gigamacro",
  2281. height: math.unit(41769, "miles")
  2282. },
  2283. ]
  2284. ))
  2285. characterMakers.push(() => makeCharacter(
  2286. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2287. {
  2288. front: {
  2289. height: math.unit(7, "feet"),
  2290. weight: math.unit(100, "kg"),
  2291. name: "Front",
  2292. image: {
  2293. source: "./media/characters/adake/front-1.svg"
  2294. }
  2295. },
  2296. frontAlt: {
  2297. height: math.unit(7, "feet"),
  2298. weight: math.unit(100, "kg"),
  2299. name: "Front (Alt)",
  2300. image: {
  2301. source: "./media/characters/adake/front-2.svg",
  2302. extra: 1,
  2303. bottom: 0.01
  2304. }
  2305. },
  2306. back: {
  2307. height: math.unit(7, "feet"),
  2308. weight: math.unit(100, "kg"),
  2309. name: "Back",
  2310. image: {
  2311. source: "./media/characters/adake/back.svg",
  2312. }
  2313. },
  2314. kneel: {
  2315. height: math.unit(5.385, "feet"),
  2316. weight: math.unit(100, "kg"),
  2317. name: "Kneeling",
  2318. image: {
  2319. source: "./media/characters/adake/kneel.svg",
  2320. bottom: 0.052
  2321. }
  2322. },
  2323. },
  2324. [
  2325. {
  2326. name: "Normal",
  2327. height: math.unit(7, "feet"),
  2328. },
  2329. {
  2330. name: "Macro",
  2331. height: math.unit(78, "feet"),
  2332. default: true
  2333. },
  2334. {
  2335. name: "Macro+",
  2336. height: math.unit(300, "meters")
  2337. },
  2338. {
  2339. name: "Macro++",
  2340. height: math.unit(2400, "meters")
  2341. },
  2342. {
  2343. name: "Megamacro",
  2344. height: math.unit(5167, "meters")
  2345. },
  2346. {
  2347. name: "Gigamacro",
  2348. height: math.unit(41769, "miles")
  2349. },
  2350. ]
  2351. ))
  2352. characterMakers.push(() => makeCharacter(
  2353. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2354. {
  2355. front: {
  2356. height: math.unit(1.65, "meters"),
  2357. weight: math.unit(50, "kg"),
  2358. name: "Front",
  2359. image: {
  2360. source: "./media/characters/elijah/front.svg",
  2361. extra: 858 / 830,
  2362. bottom: 95.5 / 953.8559
  2363. }
  2364. },
  2365. back: {
  2366. height: math.unit(1.65, "meters"),
  2367. weight: math.unit(50, "kg"),
  2368. name: "Back",
  2369. image: {
  2370. source: "./media/characters/elijah/back.svg",
  2371. extra: 895 / 850,
  2372. bottom: 5.3 / 897.956
  2373. }
  2374. },
  2375. frontNsfw: {
  2376. height: math.unit(1.65, "meters"),
  2377. weight: math.unit(50, "kg"),
  2378. name: "Front (NSFW)",
  2379. image: {
  2380. source: "./media/characters/elijah/front-nsfw.svg",
  2381. extra: 858 / 830,
  2382. bottom: 95.5 / 953.8559
  2383. }
  2384. },
  2385. backNsfw: {
  2386. height: math.unit(1.65, "meters"),
  2387. weight: math.unit(50, "kg"),
  2388. name: "Back (NSFW)",
  2389. image: {
  2390. source: "./media/characters/elijah/back-nsfw.svg",
  2391. extra: 895 / 850,
  2392. bottom: 5.3 / 897.956
  2393. }
  2394. },
  2395. dick: {
  2396. height: math.unit(1, "feet"),
  2397. name: "Dick",
  2398. image: {
  2399. source: "./media/characters/elijah/dick.svg"
  2400. }
  2401. },
  2402. beakOpen: {
  2403. height: math.unit(1.25, "feet"),
  2404. name: "Beak (Open)",
  2405. image: {
  2406. source: "./media/characters/elijah/beak-open.svg"
  2407. }
  2408. },
  2409. beakShut: {
  2410. height: math.unit(1.25, "feet"),
  2411. name: "Beak (Shut)",
  2412. image: {
  2413. source: "./media/characters/elijah/beak-shut.svg"
  2414. }
  2415. },
  2416. footFlexing: {
  2417. height: math.unit(1.61, "feet"),
  2418. name: "Foot (Flexing)",
  2419. image: {
  2420. source: "./media/characters/elijah/foot-flexing.svg"
  2421. }
  2422. },
  2423. footStepping: {
  2424. height: math.unit(1.44, "feet"),
  2425. name: "Foot (Stepping)",
  2426. image: {
  2427. source: "./media/characters/elijah/foot-stepping.svg"
  2428. }
  2429. },
  2430. plantigradeLeg: {
  2431. height: math.unit(2.34, "feet"),
  2432. name: "Plantigrade Leg",
  2433. image: {
  2434. source: "./media/characters/elijah/plantigrade-leg.svg"
  2435. }
  2436. },
  2437. plantigradeFootLeft: {
  2438. height: math.unit(0.9, "feet"),
  2439. name: "Plantigrade Foot (Left)",
  2440. image: {
  2441. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2442. }
  2443. },
  2444. plantigradeFootRight: {
  2445. height: math.unit(0.9, "feet"),
  2446. name: "Plantigrade Foot (Right)",
  2447. image: {
  2448. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2449. }
  2450. },
  2451. },
  2452. [
  2453. {
  2454. name: "Normal",
  2455. height: math.unit(1.65, "meters")
  2456. },
  2457. {
  2458. name: "Macro",
  2459. height: math.unit(55, "meters"),
  2460. default: true
  2461. },
  2462. {
  2463. name: "Macro+",
  2464. height: math.unit(105, "meters")
  2465. },
  2466. ]
  2467. ))
  2468. characterMakers.push(() => makeCharacter(
  2469. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2470. {
  2471. front: {
  2472. height: math.unit(7 + 2/12, "feet"),
  2473. weight: math.unit(320, "kg"),
  2474. name: "Front",
  2475. image: {
  2476. source: "./media/characters/rai/front.svg",
  2477. extra: 1802/1696,
  2478. bottom: 68/1870
  2479. }
  2480. },
  2481. frontDressed: {
  2482. height: math.unit(7 + 2/12, "feet"),
  2483. weight: math.unit(320, "kg"),
  2484. name: "Front (Dressed)",
  2485. image: {
  2486. source: "./media/characters/rai/front-dressed.svg",
  2487. extra: 1802/1696,
  2488. bottom: 68/1870
  2489. }
  2490. },
  2491. side: {
  2492. height: math.unit(7 + 2/12, "feet"),
  2493. weight: math.unit(320, "kg"),
  2494. name: "Side",
  2495. image: {
  2496. source: "./media/characters/rai/side.svg",
  2497. extra: 1789/1710,
  2498. bottom: 115/1904
  2499. }
  2500. },
  2501. back: {
  2502. height: math.unit(7 + 2/12, "feet"),
  2503. weight: math.unit(320, "kg"),
  2504. name: "Back",
  2505. image: {
  2506. source: "./media/characters/rai/back.svg",
  2507. extra: 1770/1707,
  2508. bottom: 28/1798
  2509. }
  2510. },
  2511. feral: {
  2512. height: math.unit(9.5, "feet"),
  2513. weight: math.unit(640, "kg"),
  2514. name: "Feral",
  2515. image: {
  2516. source: "./media/characters/rai/feral.svg",
  2517. extra: 945/553,
  2518. bottom: 176/1121
  2519. }
  2520. },
  2521. dragon: {
  2522. height: math.unit(23, "feet"),
  2523. weight: math.unit(50000, "lb"),
  2524. name: "Dragon",
  2525. image: {
  2526. source: "./media/characters/rai/dragon.svg",
  2527. extra: 2498 / 2030,
  2528. bottom: 85.2 / 2584
  2529. }
  2530. },
  2531. maw: {
  2532. height: math.unit(1.69, "feet"),
  2533. name: "Maw",
  2534. image: {
  2535. source: "./media/characters/rai/maw.svg"
  2536. }
  2537. },
  2538. },
  2539. [
  2540. {
  2541. name: "Normal",
  2542. height: math.unit(7 + 2/12, "feet")
  2543. },
  2544. {
  2545. name: "Big",
  2546. height: math.unit(11, "feet")
  2547. },
  2548. {
  2549. name: "Macro",
  2550. height: math.unit(302, "feet"),
  2551. default: true
  2552. },
  2553. ]
  2554. ))
  2555. characterMakers.push(() => makeCharacter(
  2556. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2557. {
  2558. frontDressed: {
  2559. height: math.unit(216, "feet"),
  2560. weight: math.unit(7000000, "lb"),
  2561. name: "Front (Dressed)",
  2562. image: {
  2563. source: "./media/characters/jazzy/front-dressed.svg",
  2564. extra: 2738 / 2651,
  2565. bottom: 41.8 / 2786
  2566. }
  2567. },
  2568. backDressed: {
  2569. height: math.unit(216, "feet"),
  2570. weight: math.unit(7000000, "lb"),
  2571. name: "Back (Dressed)",
  2572. image: {
  2573. source: "./media/characters/jazzy/back-dressed.svg",
  2574. extra: 2775 / 2673,
  2575. bottom: 36.8 / 2817
  2576. }
  2577. },
  2578. front: {
  2579. height: math.unit(216, "feet"),
  2580. weight: math.unit(7000000, "lb"),
  2581. name: "Front",
  2582. image: {
  2583. source: "./media/characters/jazzy/front.svg",
  2584. extra: 2738 / 2651,
  2585. bottom: 41.8 / 2786
  2586. }
  2587. },
  2588. back: {
  2589. height: math.unit(216, "feet"),
  2590. weight: math.unit(7000000, "lb"),
  2591. name: "Back",
  2592. image: {
  2593. source: "./media/characters/jazzy/back.svg",
  2594. extra: 2775 / 2673,
  2595. bottom: 36.8 / 2817
  2596. }
  2597. },
  2598. maw: {
  2599. height: math.unit(20, "feet"),
  2600. name: "Maw",
  2601. image: {
  2602. source: "./media/characters/jazzy/maw.svg"
  2603. }
  2604. },
  2605. paws: {
  2606. height: math.unit(27.5, "feet"),
  2607. name: "Paws",
  2608. image: {
  2609. source: "./media/characters/jazzy/paws.svg"
  2610. }
  2611. },
  2612. eye: {
  2613. height: math.unit(4.4, "feet"),
  2614. name: "Eye",
  2615. image: {
  2616. source: "./media/characters/jazzy/eye.svg"
  2617. }
  2618. },
  2619. droneOffense: {
  2620. height: math.unit(9.5, "inches"),
  2621. name: "Drone (Offense)",
  2622. image: {
  2623. source: "./media/characters/jazzy/drone-offense.svg"
  2624. }
  2625. },
  2626. droneRecon: {
  2627. height: math.unit(9.5, "inches"),
  2628. name: "Drone (Recon)",
  2629. image: {
  2630. source: "./media/characters/jazzy/drone-recon.svg"
  2631. }
  2632. },
  2633. droneDefense: {
  2634. height: math.unit(9.5, "inches"),
  2635. name: "Drone (Defense)",
  2636. image: {
  2637. source: "./media/characters/jazzy/drone-defense.svg"
  2638. }
  2639. },
  2640. },
  2641. [
  2642. {
  2643. name: "Macro",
  2644. height: math.unit(216, "feet"),
  2645. default: true
  2646. },
  2647. ]
  2648. ))
  2649. characterMakers.push(() => makeCharacter(
  2650. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2651. {
  2652. front: {
  2653. height: math.unit(9 + 6/12, "feet"),
  2654. weight: math.unit(700, "lb"),
  2655. name: "Front",
  2656. image: {
  2657. source: "./media/characters/flamm/front.svg",
  2658. extra: 1751/1632,
  2659. bottom: 46/1797
  2660. }
  2661. },
  2662. buff: {
  2663. height: math.unit(9 + 6/12, "feet"),
  2664. weight: math.unit(950, "lb"),
  2665. name: "Buff",
  2666. image: {
  2667. source: "./media/characters/flamm/buff.svg",
  2668. extra: 3018/2874,
  2669. bottom: 221/3239
  2670. }
  2671. },
  2672. },
  2673. [
  2674. {
  2675. name: "Normal",
  2676. height: math.unit(9.5, "feet")
  2677. },
  2678. {
  2679. name: "Macro",
  2680. height: math.unit(200, "feet"),
  2681. default: true
  2682. },
  2683. ]
  2684. ))
  2685. characterMakers.push(() => makeCharacter(
  2686. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2687. {
  2688. front: {
  2689. height: math.unit(5 + 3/12, "feet"),
  2690. weight: math.unit(60, "kg"),
  2691. name: "Front",
  2692. image: {
  2693. source: "./media/characters/zephiro/front.svg",
  2694. extra: 2309 / 2162,
  2695. bottom: 0.069
  2696. }
  2697. },
  2698. side: {
  2699. height: math.unit(5 + 3/12, "feet"),
  2700. weight: math.unit(60, "kg"),
  2701. name: "Side",
  2702. image: {
  2703. source: "./media/characters/zephiro/side.svg",
  2704. extra: 2403 / 2279,
  2705. bottom: 0.015
  2706. }
  2707. },
  2708. back: {
  2709. height: math.unit(5 + 3/12, "feet"),
  2710. weight: math.unit(60, "kg"),
  2711. name: "Back",
  2712. image: {
  2713. source: "./media/characters/zephiro/back.svg",
  2714. extra: 2373 / 2244,
  2715. bottom: 0.013
  2716. }
  2717. },
  2718. hand: {
  2719. height: math.unit(0.68, "feet"),
  2720. name: "Hand",
  2721. image: {
  2722. source: "./media/characters/zephiro/hand.svg"
  2723. }
  2724. },
  2725. paw: {
  2726. height: math.unit(1, "feet"),
  2727. name: "Paw",
  2728. image: {
  2729. source: "./media/characters/zephiro/paw.svg"
  2730. }
  2731. },
  2732. beans: {
  2733. height: math.unit(0.93, "feet"),
  2734. name: "Beans",
  2735. image: {
  2736. source: "./media/characters/zephiro/beans.svg"
  2737. }
  2738. },
  2739. },
  2740. [
  2741. {
  2742. name: "Micro",
  2743. height: math.unit(3, "inches")
  2744. },
  2745. {
  2746. name: "Normal",
  2747. height: math.unit(5 + 3 / 12, "feet"),
  2748. default: true
  2749. },
  2750. {
  2751. name: "Macro",
  2752. height: math.unit(118, "feet")
  2753. },
  2754. ]
  2755. ))
  2756. characterMakers.push(() => makeCharacter(
  2757. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2758. {
  2759. front: {
  2760. height: math.unit(5, "feet"),
  2761. weight: math.unit(90, "kg"),
  2762. name: "Front",
  2763. image: {
  2764. source: "./media/characters/fory/front.svg",
  2765. extra: 2862 / 2674,
  2766. bottom: 180 / 3043.8
  2767. }
  2768. },
  2769. back: {
  2770. height: math.unit(5, "feet"),
  2771. weight: math.unit(90, "kg"),
  2772. name: "Back",
  2773. image: {
  2774. source: "./media/characters/fory/back.svg",
  2775. extra: 2962 / 2791,
  2776. bottom: 106 / 3071.8
  2777. }
  2778. },
  2779. foot: {
  2780. height: math.unit(2.14, "feet"),
  2781. name: "Foot",
  2782. image: {
  2783. source: "./media/characters/fory/foot.svg"
  2784. }
  2785. },
  2786. },
  2787. [
  2788. {
  2789. name: "Normal",
  2790. height: math.unit(5, "feet")
  2791. },
  2792. {
  2793. name: "Macro",
  2794. height: math.unit(50, "feet"),
  2795. default: true
  2796. },
  2797. {
  2798. name: "Megamacro",
  2799. height: math.unit(10, "miles")
  2800. },
  2801. {
  2802. name: "Gigamacro",
  2803. height: math.unit(5, "earths")
  2804. },
  2805. ]
  2806. ))
  2807. characterMakers.push(() => makeCharacter(
  2808. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2809. {
  2810. front: {
  2811. height: math.unit(7, "feet"),
  2812. weight: math.unit(90, "kg"),
  2813. name: "Front",
  2814. image: {
  2815. source: "./media/characters/kurrikage/front.svg",
  2816. extra: 1845/1733,
  2817. bottom: 119/1964
  2818. }
  2819. },
  2820. back: {
  2821. height: math.unit(7, "feet"),
  2822. weight: math.unit(90, "kg"),
  2823. name: "Back",
  2824. image: {
  2825. source: "./media/characters/kurrikage/back.svg",
  2826. extra: 1790/1677,
  2827. bottom: 61/1851
  2828. }
  2829. },
  2830. dressed: {
  2831. height: math.unit(7, "feet"),
  2832. weight: math.unit(90, "kg"),
  2833. name: "Dressed",
  2834. image: {
  2835. source: "./media/characters/kurrikage/dressed.svg",
  2836. extra: 1845/1733,
  2837. bottom: 119/1964
  2838. }
  2839. },
  2840. foot: {
  2841. height: math.unit(1.5, "feet"),
  2842. name: "Foot",
  2843. image: {
  2844. source: "./media/characters/kurrikage/foot.svg"
  2845. }
  2846. },
  2847. staff: {
  2848. height: math.unit(6.7, "feet"),
  2849. name: "Staff",
  2850. image: {
  2851. source: "./media/characters/kurrikage/staff.svg"
  2852. }
  2853. },
  2854. peek: {
  2855. height: math.unit(1.05, "feet"),
  2856. name: "Peeking",
  2857. image: {
  2858. source: "./media/characters/kurrikage/peek.svg",
  2859. bottom: 0.08
  2860. }
  2861. },
  2862. },
  2863. [
  2864. {
  2865. name: "Normal",
  2866. height: math.unit(12, "feet"),
  2867. default: true
  2868. },
  2869. {
  2870. name: "Big",
  2871. height: math.unit(20, "feet")
  2872. },
  2873. {
  2874. name: "Macro",
  2875. height: math.unit(500, "feet")
  2876. },
  2877. {
  2878. name: "Megamacro",
  2879. height: math.unit(20, "miles")
  2880. },
  2881. ]
  2882. ))
  2883. characterMakers.push(() => makeCharacter(
  2884. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2885. {
  2886. front: {
  2887. height: math.unit(6, "feet"),
  2888. weight: math.unit(75, "kg"),
  2889. name: "Front",
  2890. image: {
  2891. source: "./media/characters/shingo/front.svg",
  2892. extra: 1900/1825,
  2893. bottom: 82/1982
  2894. }
  2895. },
  2896. side: {
  2897. height: math.unit(6, "feet"),
  2898. weight: math.unit(75, "kg"),
  2899. name: "Side",
  2900. image: {
  2901. source: "./media/characters/shingo/side.svg",
  2902. extra: 1930/1865,
  2903. bottom: 16/1946
  2904. }
  2905. },
  2906. back: {
  2907. height: math.unit(6, "feet"),
  2908. weight: math.unit(75, "kg"),
  2909. name: "Back",
  2910. image: {
  2911. source: "./media/characters/shingo/back.svg",
  2912. extra: 1922/1852,
  2913. bottom: 16/1938
  2914. }
  2915. },
  2916. frontDressed: {
  2917. height: math.unit(6, "feet"),
  2918. weight: math.unit(150, "lb"),
  2919. name: "Front-dressed",
  2920. image: {
  2921. source: "./media/characters/shingo/front-dressed.svg",
  2922. extra: 1900/1825,
  2923. bottom: 82/1982
  2924. }
  2925. },
  2926. paw: {
  2927. height: math.unit(1.29, "feet"),
  2928. name: "Paw",
  2929. image: {
  2930. source: "./media/characters/shingo/paw.svg"
  2931. }
  2932. },
  2933. hand: {
  2934. height: math.unit(1.07, "feet"),
  2935. name: "Hand",
  2936. image: {
  2937. source: "./media/characters/shingo/hand.svg"
  2938. }
  2939. },
  2940. frontAlt: {
  2941. height: math.unit(6, "feet"),
  2942. weight: math.unit(75, "kg"),
  2943. name: "Front (Alt)",
  2944. image: {
  2945. source: "./media/characters/shingo/front-alt.svg",
  2946. extra: 3511 / 3338,
  2947. bottom: 0.005
  2948. }
  2949. },
  2950. frontAlt2: {
  2951. height: math.unit(6, "feet"),
  2952. weight: math.unit(75, "kg"),
  2953. name: "Front (Alt 2)",
  2954. image: {
  2955. source: "./media/characters/shingo/front-alt-2.svg",
  2956. extra: 706/681,
  2957. bottom: 11/717
  2958. }
  2959. },
  2960. pawAlt: {
  2961. height: math.unit(1, "feet"),
  2962. name: "Paw (Alt)",
  2963. image: {
  2964. source: "./media/characters/shingo/paw-alt.svg"
  2965. }
  2966. },
  2967. },
  2968. [
  2969. {
  2970. name: "Micro",
  2971. height: math.unit(4, "inches")
  2972. },
  2973. {
  2974. name: "Normal",
  2975. height: math.unit(6, "feet"),
  2976. default: true
  2977. },
  2978. {
  2979. name: "Macro",
  2980. height: math.unit(108, "feet")
  2981. },
  2982. {
  2983. name: "Macro+",
  2984. height: math.unit(1500, "feet")
  2985. },
  2986. ]
  2987. ))
  2988. characterMakers.push(() => makeCharacter(
  2989. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2990. {
  2991. side: {
  2992. height: math.unit(6, "feet"),
  2993. weight: math.unit(75, "kg"),
  2994. name: "Side",
  2995. image: {
  2996. source: "./media/characters/aigey/side.svg"
  2997. }
  2998. },
  2999. },
  3000. [
  3001. {
  3002. name: "Macro",
  3003. height: math.unit(200, "feet"),
  3004. default: true
  3005. },
  3006. {
  3007. name: "Megamacro",
  3008. height: math.unit(100, "miles")
  3009. },
  3010. ]
  3011. )
  3012. )
  3013. characterMakers.push(() => makeCharacter(
  3014. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3015. {
  3016. front: {
  3017. height: math.unit(5 + 5 / 12, "feet"),
  3018. weight: math.unit(75, "kg"),
  3019. name: "Front",
  3020. image: {
  3021. source: "./media/characters/natasha/front.svg",
  3022. extra: 859 / 824,
  3023. bottom: 23 / 879.6
  3024. }
  3025. },
  3026. frontNsfw: {
  3027. height: math.unit(5 + 5 / 12, "feet"),
  3028. weight: math.unit(75, "kg"),
  3029. name: "Front (NSFW)",
  3030. image: {
  3031. source: "./media/characters/natasha/front-nsfw.svg",
  3032. extra: 859 / 824,
  3033. bottom: 23 / 879.6
  3034. }
  3035. },
  3036. frontErect: {
  3037. height: math.unit(5 + 5 / 12, "feet"),
  3038. weight: math.unit(75, "kg"),
  3039. name: "Front (Erect)",
  3040. image: {
  3041. source: "./media/characters/natasha/front-erect.svg",
  3042. extra: 859 / 824,
  3043. bottom: 23 / 879.6
  3044. }
  3045. },
  3046. back: {
  3047. height: math.unit(5 + 5 / 12, "feet"),
  3048. weight: math.unit(75, "kg"),
  3049. name: "Back",
  3050. image: {
  3051. source: "./media/characters/natasha/back.svg",
  3052. extra: 887.9 / 852.6,
  3053. bottom: 9.7 / 896.4
  3054. }
  3055. },
  3056. backAlt: {
  3057. height: math.unit(5 + 5 / 12, "feet"),
  3058. weight: math.unit(75, "kg"),
  3059. name: "Back (Alt)",
  3060. image: {
  3061. source: "./media/characters/natasha/back-alt.svg",
  3062. extra: 1236.7 / 1192,
  3063. bottom: 22.3 / 1258.2
  3064. }
  3065. },
  3066. dick: {
  3067. height: math.unit(1.772, "feet"),
  3068. name: "Dick",
  3069. image: {
  3070. source: "./media/characters/natasha/dick.svg"
  3071. }
  3072. },
  3073. paw: {
  3074. height: math.unit(0.250, "meters"),
  3075. name: "Paw",
  3076. image: {
  3077. source: "./media/characters/natasha/paw.svg"
  3078. }
  3079. },
  3080. },
  3081. [
  3082. {
  3083. name: "Normal",
  3084. height: math.unit(5 + 5 / 12, "feet")
  3085. },
  3086. {
  3087. name: "Large",
  3088. height: math.unit(12, "feet")
  3089. },
  3090. {
  3091. name: "Macro",
  3092. height: math.unit(100, "feet"),
  3093. default: true
  3094. },
  3095. {
  3096. name: "Macro+",
  3097. height: math.unit(260, "feet")
  3098. },
  3099. {
  3100. name: "Macro++",
  3101. height: math.unit(1, "mile")
  3102. },
  3103. ]
  3104. ))
  3105. characterMakers.push(() => makeCharacter(
  3106. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3107. {
  3108. front: {
  3109. height: math.unit(6, "feet"),
  3110. weight: math.unit(75, "kg"),
  3111. name: "Front",
  3112. image: {
  3113. source: "./media/characters/malik/front.svg"
  3114. }
  3115. },
  3116. side: {
  3117. height: math.unit(6, "feet"),
  3118. weight: math.unit(75, "kg"),
  3119. name: "Side",
  3120. image: {
  3121. source: "./media/characters/malik/side.svg",
  3122. extra: 1.1539
  3123. }
  3124. },
  3125. back: {
  3126. height: math.unit(6, "feet"),
  3127. weight: math.unit(75, "kg"),
  3128. name: "Back",
  3129. image: {
  3130. source: "./media/characters/malik/back.svg"
  3131. }
  3132. },
  3133. },
  3134. [
  3135. {
  3136. name: "Macro",
  3137. height: math.unit(156, "feet"),
  3138. default: true
  3139. },
  3140. {
  3141. name: "Macro+",
  3142. height: math.unit(1188, "feet")
  3143. },
  3144. ]
  3145. ))
  3146. characterMakers.push(() => makeCharacter(
  3147. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3148. {
  3149. front: {
  3150. height: math.unit(6, "feet"),
  3151. weight: math.unit(75, "kg"),
  3152. name: "Front",
  3153. image: {
  3154. source: "./media/characters/sefer/front.svg",
  3155. extra: 848 / 659,
  3156. bottom: 28.3 / 876.442
  3157. }
  3158. },
  3159. back: {
  3160. height: math.unit(6, "feet"),
  3161. weight: math.unit(75, "kg"),
  3162. name: "Back",
  3163. image: {
  3164. source: "./media/characters/sefer/back.svg",
  3165. extra: 864 / 695,
  3166. bottom: 10 / 871
  3167. }
  3168. },
  3169. frontDressed: {
  3170. height: math.unit(6, "feet"),
  3171. weight: math.unit(75, "kg"),
  3172. name: "Front (Dressed)",
  3173. image: {
  3174. source: "./media/characters/sefer/front-dressed.svg",
  3175. extra: 839 / 653,
  3176. bottom: 37.6 / 878
  3177. }
  3178. },
  3179. },
  3180. [
  3181. {
  3182. name: "Normal",
  3183. height: math.unit(6, "feet"),
  3184. default: true
  3185. },
  3186. ]
  3187. ))
  3188. characterMakers.push(() => makeCharacter(
  3189. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3190. {
  3191. body: {
  3192. height: math.unit(2.2428, "meter"),
  3193. weight: math.unit(124.738, "kg"),
  3194. name: "Body",
  3195. image: {
  3196. extra: 1225 / 1050,
  3197. source: "./media/characters/north/front.svg"
  3198. }
  3199. }
  3200. },
  3201. [
  3202. {
  3203. name: "Micro",
  3204. height: math.unit(4, "inches")
  3205. },
  3206. {
  3207. name: "Macro",
  3208. height: math.unit(63, "meters")
  3209. },
  3210. {
  3211. name: "Megamacro",
  3212. height: math.unit(101, "miles"),
  3213. default: true
  3214. }
  3215. ]
  3216. ))
  3217. characterMakers.push(() => makeCharacter(
  3218. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3219. {
  3220. angled: {
  3221. height: math.unit(4, "meter"),
  3222. weight: math.unit(150, "kg"),
  3223. name: "Angled",
  3224. image: {
  3225. source: "./media/characters/talan/angled-sfw.svg",
  3226. bottom: 29 / 3734
  3227. }
  3228. },
  3229. angledNsfw: {
  3230. height: math.unit(4, "meter"),
  3231. weight: math.unit(150, "kg"),
  3232. name: "Angled (NSFW)",
  3233. image: {
  3234. source: "./media/characters/talan/angled-nsfw.svg",
  3235. bottom: 29 / 3734
  3236. }
  3237. },
  3238. frontNsfw: {
  3239. height: math.unit(4, "meter"),
  3240. weight: math.unit(150, "kg"),
  3241. name: "Front (NSFW)",
  3242. image: {
  3243. source: "./media/characters/talan/front-nsfw.svg",
  3244. bottom: 29 / 3734
  3245. }
  3246. },
  3247. sideNsfw: {
  3248. height: math.unit(4, "meter"),
  3249. weight: math.unit(150, "kg"),
  3250. name: "Side (NSFW)",
  3251. image: {
  3252. source: "./media/characters/talan/side-nsfw.svg",
  3253. bottom: 29 / 3734
  3254. }
  3255. },
  3256. back: {
  3257. height: math.unit(4, "meter"),
  3258. weight: math.unit(150, "kg"),
  3259. name: "Back",
  3260. image: {
  3261. source: "./media/characters/talan/back.svg"
  3262. }
  3263. },
  3264. dickBottom: {
  3265. height: math.unit(0.621, "meter"),
  3266. name: "Dick (Bottom)",
  3267. image: {
  3268. source: "./media/characters/talan/dick-bottom.svg"
  3269. }
  3270. },
  3271. dickTop: {
  3272. height: math.unit(0.621, "meter"),
  3273. name: "Dick (Top)",
  3274. image: {
  3275. source: "./media/characters/talan/dick-top.svg"
  3276. }
  3277. },
  3278. dickSide: {
  3279. height: math.unit(0.305, "meter"),
  3280. name: "Dick (Side)",
  3281. image: {
  3282. source: "./media/characters/talan/dick-side.svg"
  3283. }
  3284. },
  3285. dickFront: {
  3286. height: math.unit(0.305, "meter"),
  3287. name: "Dick (Front)",
  3288. image: {
  3289. source: "./media/characters/talan/dick-front.svg"
  3290. }
  3291. },
  3292. },
  3293. [
  3294. {
  3295. name: "Normal",
  3296. height: math.unit(4, "meters")
  3297. },
  3298. {
  3299. name: "Macro",
  3300. height: math.unit(100, "meters")
  3301. },
  3302. {
  3303. name: "Megamacro",
  3304. height: math.unit(2, "miles"),
  3305. default: true
  3306. },
  3307. {
  3308. name: "Gigamacro",
  3309. height: math.unit(5000, "miles")
  3310. },
  3311. {
  3312. name: "Teramacro",
  3313. height: math.unit(100, "parsecs")
  3314. }
  3315. ]
  3316. ))
  3317. characterMakers.push(() => makeCharacter(
  3318. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3319. {
  3320. front: {
  3321. height: math.unit(2, "meter"),
  3322. weight: math.unit(90, "kg"),
  3323. name: "Front",
  3324. image: {
  3325. source: "./media/characters/gael'rathus/front.svg"
  3326. }
  3327. },
  3328. frontAlt: {
  3329. height: math.unit(2, "meter"),
  3330. weight: math.unit(90, "kg"),
  3331. name: "Front (alt)",
  3332. image: {
  3333. source: "./media/characters/gael'rathus/front-alt.svg"
  3334. }
  3335. },
  3336. frontAlt2: {
  3337. height: math.unit(2, "meter"),
  3338. weight: math.unit(90, "kg"),
  3339. name: "Front (alt 2)",
  3340. image: {
  3341. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3342. }
  3343. }
  3344. },
  3345. [
  3346. {
  3347. name: "Normal",
  3348. height: math.unit(9, "feet"),
  3349. default: true
  3350. },
  3351. {
  3352. name: "Large",
  3353. height: math.unit(25, "feet")
  3354. },
  3355. {
  3356. name: "Macro",
  3357. height: math.unit(0.25, "miles")
  3358. },
  3359. {
  3360. name: "Megamacro",
  3361. height: math.unit(10, "miles")
  3362. }
  3363. ]
  3364. ))
  3365. characterMakers.push(() => makeCharacter(
  3366. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3367. {
  3368. side: {
  3369. height: math.unit(2, "meter"),
  3370. weight: math.unit(140, "kg"),
  3371. name: "Side",
  3372. image: {
  3373. source: "./media/characters/sosha/side.svg",
  3374. bottom: 0.042
  3375. }
  3376. },
  3377. },
  3378. [
  3379. {
  3380. name: "Normal",
  3381. height: math.unit(12, "feet"),
  3382. default: true
  3383. }
  3384. ]
  3385. ))
  3386. characterMakers.push(() => makeCharacter(
  3387. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3388. {
  3389. side: {
  3390. height: math.unit(5 + 5 / 12, "feet"),
  3391. weight: math.unit(170, "kg"),
  3392. name: "Side",
  3393. image: {
  3394. source: "./media/characters/runnola/side.svg",
  3395. extra: 741 / 448,
  3396. bottom: 0.05
  3397. }
  3398. },
  3399. },
  3400. [
  3401. {
  3402. name: "Small",
  3403. height: math.unit(3, "feet")
  3404. },
  3405. {
  3406. name: "Normal",
  3407. height: math.unit(5 + 5 / 12, "feet"),
  3408. default: true
  3409. },
  3410. {
  3411. name: "Big",
  3412. height: math.unit(10, "feet")
  3413. },
  3414. ]
  3415. ))
  3416. characterMakers.push(() => makeCharacter(
  3417. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3418. {
  3419. front: {
  3420. height: math.unit(2, "meter"),
  3421. weight: math.unit(50, "kg"),
  3422. name: "Front",
  3423. image: {
  3424. source: "./media/characters/kurribird/front.svg",
  3425. bottom: 0.015
  3426. }
  3427. },
  3428. frontAlt: {
  3429. height: math.unit(1.5, "meter"),
  3430. weight: math.unit(50, "kg"),
  3431. name: "Front (Alt)",
  3432. image: {
  3433. source: "./media/characters/kurribird/front-alt.svg",
  3434. extra: 1.45
  3435. }
  3436. },
  3437. },
  3438. [
  3439. {
  3440. name: "Normal",
  3441. height: math.unit(7, "feet")
  3442. },
  3443. {
  3444. name: "Big",
  3445. height: math.unit(12, "feet"),
  3446. default: true
  3447. },
  3448. {
  3449. name: "Macro",
  3450. height: math.unit(1500, "feet")
  3451. },
  3452. {
  3453. name: "Megamacro",
  3454. height: math.unit(2, "miles")
  3455. }
  3456. ]
  3457. ))
  3458. characterMakers.push(() => makeCharacter(
  3459. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3460. {
  3461. front: {
  3462. height: math.unit(2, "meter"),
  3463. weight: math.unit(80, "kg"),
  3464. name: "Front",
  3465. image: {
  3466. source: "./media/characters/elbial/front.svg",
  3467. extra: 1643 / 1556,
  3468. bottom: 60.2 / 1696
  3469. }
  3470. },
  3471. side: {
  3472. height: math.unit(2, "meter"),
  3473. weight: math.unit(80, "kg"),
  3474. name: "Side",
  3475. image: {
  3476. source: "./media/characters/elbial/side.svg",
  3477. extra: 1601/1528,
  3478. bottom: 97/1698
  3479. }
  3480. },
  3481. back: {
  3482. height: math.unit(2, "meter"),
  3483. weight: math.unit(80, "kg"),
  3484. name: "Back",
  3485. image: {
  3486. source: "./media/characters/elbial/back.svg",
  3487. extra: 1653/1569,
  3488. bottom: 20/1673
  3489. }
  3490. },
  3491. frontDressed: {
  3492. height: math.unit(2, "meter"),
  3493. weight: math.unit(80, "kg"),
  3494. name: "Front (Dressed)",
  3495. image: {
  3496. source: "./media/characters/elbial/front-dressed.svg",
  3497. extra: 1638/1569,
  3498. bottom: 70/1708
  3499. }
  3500. },
  3501. genitals: {
  3502. height: math.unit(2 / 3.367, "meter"),
  3503. name: "Genitals",
  3504. image: {
  3505. source: "./media/characters/elbial/genitals.svg"
  3506. }
  3507. },
  3508. },
  3509. [
  3510. {
  3511. name: "Large",
  3512. height: math.unit(100, "feet")
  3513. },
  3514. {
  3515. name: "Macro",
  3516. height: math.unit(500, "feet"),
  3517. default: true
  3518. },
  3519. {
  3520. name: "Megamacro",
  3521. height: math.unit(10, "miles")
  3522. },
  3523. {
  3524. name: "Gigamacro",
  3525. height: math.unit(25000, "miles")
  3526. },
  3527. {
  3528. name: "Full-Size",
  3529. height: math.unit(8000000, "gigaparsecs")
  3530. }
  3531. ]
  3532. ))
  3533. characterMakers.push(() => makeCharacter(
  3534. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3535. {
  3536. front: {
  3537. height: math.unit(2, "meter"),
  3538. weight: math.unit(60, "kg"),
  3539. name: "Front",
  3540. image: {
  3541. source: "./media/characters/noah/front.svg"
  3542. }
  3543. },
  3544. talons: {
  3545. height: math.unit(0.315, "meter"),
  3546. name: "Talons",
  3547. image: {
  3548. source: "./media/characters/noah/talons.svg"
  3549. }
  3550. }
  3551. },
  3552. [
  3553. {
  3554. name: "Large",
  3555. height: math.unit(50, "feet")
  3556. },
  3557. {
  3558. name: "Macro",
  3559. height: math.unit(750, "feet"),
  3560. default: true
  3561. },
  3562. {
  3563. name: "Megamacro",
  3564. height: math.unit(50, "miles")
  3565. },
  3566. {
  3567. name: "Gigamacro",
  3568. height: math.unit(100000, "miles")
  3569. },
  3570. {
  3571. name: "Full-Size",
  3572. height: math.unit(3000000000, "miles")
  3573. }
  3574. ]
  3575. ))
  3576. characterMakers.push(() => makeCharacter(
  3577. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3578. {
  3579. front: {
  3580. height: math.unit(2, "meter"),
  3581. weight: math.unit(80, "kg"),
  3582. name: "Front",
  3583. image: {
  3584. source: "./media/characters/natalya/front.svg"
  3585. }
  3586. },
  3587. back: {
  3588. height: math.unit(2, "meter"),
  3589. weight: math.unit(80, "kg"),
  3590. name: "Back",
  3591. image: {
  3592. source: "./media/characters/natalya/back.svg"
  3593. }
  3594. }
  3595. },
  3596. [
  3597. {
  3598. name: "Normal",
  3599. height: math.unit(150, "feet"),
  3600. default: true
  3601. },
  3602. {
  3603. name: "Megamacro",
  3604. height: math.unit(5, "miles")
  3605. },
  3606. {
  3607. name: "Full-Size",
  3608. height: math.unit(600, "kiloparsecs")
  3609. }
  3610. ]
  3611. ))
  3612. characterMakers.push(() => makeCharacter(
  3613. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3614. {
  3615. front: {
  3616. height: math.unit(2, "meter"),
  3617. weight: math.unit(50, "kg"),
  3618. name: "Front",
  3619. image: {
  3620. source: "./media/characters/erestrebah/front.svg",
  3621. extra: 1262/1162,
  3622. bottom: 96/1358
  3623. }
  3624. },
  3625. back: {
  3626. height: math.unit(2, "meter"),
  3627. weight: math.unit(50, "kg"),
  3628. name: "Back",
  3629. image: {
  3630. source: "./media/characters/erestrebah/back.svg",
  3631. extra: 1257/1139,
  3632. bottom: 13/1270
  3633. }
  3634. },
  3635. wing: {
  3636. height: math.unit(2, "meter"),
  3637. weight: math.unit(50, "kg"),
  3638. name: "Wing",
  3639. image: {
  3640. source: "./media/characters/erestrebah/wing.svg",
  3641. extra: 1262/1162,
  3642. bottom: 96/1358
  3643. }
  3644. },
  3645. mouth: {
  3646. height: math.unit(0.39, "feet"),
  3647. name: "Mouth",
  3648. image: {
  3649. source: "./media/characters/erestrebah/mouth.svg"
  3650. }
  3651. }
  3652. },
  3653. [
  3654. {
  3655. name: "Normal",
  3656. height: math.unit(10, "feet")
  3657. },
  3658. {
  3659. name: "Large",
  3660. height: math.unit(50, "feet"),
  3661. default: true
  3662. },
  3663. {
  3664. name: "Macro",
  3665. height: math.unit(300, "feet")
  3666. },
  3667. {
  3668. name: "Macro+",
  3669. height: math.unit(750, "feet")
  3670. },
  3671. {
  3672. name: "Megamacro",
  3673. height: math.unit(3, "miles")
  3674. }
  3675. ]
  3676. ))
  3677. characterMakers.push(() => makeCharacter(
  3678. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3679. {
  3680. front: {
  3681. height: math.unit(2, "meter"),
  3682. weight: math.unit(80, "kg"),
  3683. name: "Front",
  3684. image: {
  3685. source: "./media/characters/jennifer/front.svg",
  3686. bottom: 0.11,
  3687. extra: 1.16
  3688. }
  3689. },
  3690. frontAlt: {
  3691. height: math.unit(2, "meter"),
  3692. weight: math.unit(80, "kg"),
  3693. name: "Front (Alt)",
  3694. image: {
  3695. source: "./media/characters/jennifer/front-alt.svg"
  3696. }
  3697. }
  3698. },
  3699. [
  3700. {
  3701. name: "Canon Height",
  3702. height: math.unit(120, "feet"),
  3703. default: true
  3704. },
  3705. {
  3706. name: "Macro+",
  3707. height: math.unit(300, "feet")
  3708. },
  3709. {
  3710. name: "Megamacro",
  3711. height: math.unit(20000, "feet")
  3712. }
  3713. ]
  3714. ))
  3715. characterMakers.push(() => makeCharacter(
  3716. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3717. {
  3718. front: {
  3719. height: math.unit(2, "meter"),
  3720. weight: math.unit(50, "kg"),
  3721. name: "Front",
  3722. image: {
  3723. source: "./media/characters/kalista/front.svg",
  3724. extra: 1314/1145,
  3725. bottom: 101/1415
  3726. }
  3727. },
  3728. back: {
  3729. height: math.unit(2, "meter"),
  3730. weight: math.unit(50, "kg"),
  3731. name: "Back",
  3732. image: {
  3733. source: "./media/characters/kalista/back.svg",
  3734. extra: 1366 / 1156,
  3735. bottom: 33.9 / 1362.78
  3736. }
  3737. }
  3738. },
  3739. [
  3740. {
  3741. name: "Uncomfortably Small",
  3742. height: math.unit(10, "feet")
  3743. },
  3744. {
  3745. name: "Small",
  3746. height: math.unit(30, "feet")
  3747. },
  3748. {
  3749. name: "Macro",
  3750. height: math.unit(100, "feet"),
  3751. default: true
  3752. },
  3753. {
  3754. name: "Macro+",
  3755. height: math.unit(2000, "feet")
  3756. },
  3757. {
  3758. name: "True Form",
  3759. height: math.unit(8924, "miles")
  3760. }
  3761. ]
  3762. ))
  3763. characterMakers.push(() => makeCharacter(
  3764. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3765. {
  3766. front: {
  3767. height: math.unit(2, "meter"),
  3768. weight: math.unit(120, "kg"),
  3769. name: "Front",
  3770. image: {
  3771. source: "./media/characters/ggv/front.svg"
  3772. }
  3773. },
  3774. side: {
  3775. height: math.unit(2, "meter"),
  3776. weight: math.unit(120, "kg"),
  3777. name: "Side",
  3778. image: {
  3779. source: "./media/characters/ggv/side.svg"
  3780. }
  3781. }
  3782. },
  3783. [
  3784. {
  3785. name: "Extremely Puny",
  3786. height: math.unit(9 + 5 / 12, "feet")
  3787. },
  3788. {
  3789. name: "Horribly Small",
  3790. height: math.unit(47.7, "miles"),
  3791. default: true
  3792. },
  3793. {
  3794. name: "Reasonably Sized",
  3795. height: math.unit(25000, "parsecs")
  3796. },
  3797. {
  3798. name: "Slightly Uncompressed",
  3799. height: math.unit(7.77e31, "parsecs")
  3800. },
  3801. {
  3802. name: "Omniversal",
  3803. height: math.unit(1e300, "meters")
  3804. },
  3805. ]
  3806. ))
  3807. characterMakers.push(() => makeCharacter(
  3808. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3809. {
  3810. front: {
  3811. height: math.unit(2, "meter"),
  3812. weight: math.unit(75, "lb"),
  3813. name: "Front",
  3814. image: {
  3815. source: "./media/characters/napalm/front.svg"
  3816. }
  3817. },
  3818. back: {
  3819. height: math.unit(2, "meter"),
  3820. weight: math.unit(75, "lb"),
  3821. name: "Back",
  3822. image: {
  3823. source: "./media/characters/napalm/back.svg"
  3824. }
  3825. }
  3826. },
  3827. [
  3828. {
  3829. name: "Standard",
  3830. height: math.unit(55, "feet"),
  3831. default: true
  3832. }
  3833. ]
  3834. ))
  3835. characterMakers.push(() => makeCharacter(
  3836. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3837. {
  3838. front: {
  3839. height: math.unit(7 + 5 / 6, "feet"),
  3840. weight: math.unit(325, "lb"),
  3841. name: "Front",
  3842. image: {
  3843. source: "./media/characters/asana/front.svg",
  3844. extra: 1133 / 1060,
  3845. bottom: 15.2 / 1148.6
  3846. }
  3847. },
  3848. back: {
  3849. height: math.unit(7 + 5 / 6, "feet"),
  3850. weight: math.unit(325, "lb"),
  3851. name: "Back",
  3852. image: {
  3853. source: "./media/characters/asana/back.svg",
  3854. extra: 1114 / 1043,
  3855. bottom: 5 / 1120
  3856. }
  3857. },
  3858. dressedDark: {
  3859. height: math.unit(7 + 5 / 6, "feet"),
  3860. weight: math.unit(325, "lb"),
  3861. name: "Dressed (Dark)",
  3862. image: {
  3863. source: "./media/characters/asana/dressed-dark.svg",
  3864. extra: 1133 / 1060,
  3865. bottom: 15.2 / 1148.6
  3866. }
  3867. },
  3868. dressedLight: {
  3869. height: math.unit(7 + 5 / 6, "feet"),
  3870. weight: math.unit(325, "lb"),
  3871. name: "Dressed (Light)",
  3872. image: {
  3873. source: "./media/characters/asana/dressed-light.svg",
  3874. extra: 1133 / 1060,
  3875. bottom: 15.2 / 1148.6
  3876. }
  3877. },
  3878. },
  3879. [
  3880. {
  3881. name: "Standard",
  3882. height: math.unit(7 + 5 / 6, "feet"),
  3883. default: true
  3884. },
  3885. {
  3886. name: "Large",
  3887. height: math.unit(10, "meters")
  3888. },
  3889. {
  3890. name: "Macro",
  3891. height: math.unit(2500, "meters")
  3892. },
  3893. {
  3894. name: "Megamacro",
  3895. height: math.unit(5e6, "meters")
  3896. },
  3897. {
  3898. name: "Examacro",
  3899. height: math.unit(5e12, "lightyears")
  3900. },
  3901. {
  3902. name: "Max Size",
  3903. height: math.unit(1e31, "lightyears")
  3904. }
  3905. ]
  3906. ))
  3907. characterMakers.push(() => makeCharacter(
  3908. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3909. {
  3910. front: {
  3911. height: math.unit(2, "meter"),
  3912. weight: math.unit(60, "kg"),
  3913. name: "Front",
  3914. image: {
  3915. source: "./media/characters/ebony/front.svg",
  3916. bottom: 0.03,
  3917. extra: 1045 / 810 + 0.03
  3918. }
  3919. },
  3920. side: {
  3921. height: math.unit(2, "meter"),
  3922. weight: math.unit(60, "kg"),
  3923. name: "Side",
  3924. image: {
  3925. source: "./media/characters/ebony/side.svg",
  3926. bottom: 0.03,
  3927. extra: 1045 / 810 + 0.03
  3928. }
  3929. },
  3930. back: {
  3931. height: math.unit(2, "meter"),
  3932. weight: math.unit(60, "kg"),
  3933. name: "Back",
  3934. image: {
  3935. source: "./media/characters/ebony/back.svg",
  3936. bottom: 0.01,
  3937. extra: 1045 / 810 + 0.01
  3938. }
  3939. },
  3940. },
  3941. [
  3942. // TODO check why I did this lol
  3943. {
  3944. name: "Standard",
  3945. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3946. default: true
  3947. },
  3948. {
  3949. name: "Macro",
  3950. height: math.unit(200, "feet")
  3951. },
  3952. {
  3953. name: "Gigamacro",
  3954. height: math.unit(13000, "km")
  3955. }
  3956. ]
  3957. ))
  3958. characterMakers.push(() => makeCharacter(
  3959. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3960. {
  3961. front: {
  3962. height: math.unit(6, "feet"),
  3963. weight: math.unit(175, "lb"),
  3964. name: "Front",
  3965. image: {
  3966. source: "./media/characters/mountain/front.svg",
  3967. extra: 972 / 955,
  3968. bottom: 64 / 1036.6
  3969. }
  3970. },
  3971. back: {
  3972. height: math.unit(6, "feet"),
  3973. weight: math.unit(175, "lb"),
  3974. name: "Back",
  3975. image: {
  3976. source: "./media/characters/mountain/back.svg",
  3977. extra: 970 / 950,
  3978. bottom: 28.25 / 999
  3979. }
  3980. },
  3981. },
  3982. [
  3983. {
  3984. name: "Large",
  3985. height: math.unit(20, "meters")
  3986. },
  3987. {
  3988. name: "Macro",
  3989. height: math.unit(300, "meters")
  3990. },
  3991. {
  3992. name: "Gigamacro",
  3993. height: math.unit(10000, "km"),
  3994. default: true
  3995. },
  3996. {
  3997. name: "Examacro",
  3998. height: math.unit(10e9, "lightyears")
  3999. }
  4000. ]
  4001. ))
  4002. characterMakers.push(() => makeCharacter(
  4003. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4004. {
  4005. front: {
  4006. height: math.unit(8, "feet"),
  4007. weight: math.unit(500, "lb"),
  4008. name: "Front",
  4009. image: {
  4010. source: "./media/characters/rick/front.svg"
  4011. }
  4012. }
  4013. },
  4014. [
  4015. {
  4016. name: "Normal",
  4017. height: math.unit(8, "feet"),
  4018. default: true
  4019. },
  4020. {
  4021. name: "Macro",
  4022. height: math.unit(5, "km")
  4023. }
  4024. ]
  4025. ))
  4026. characterMakers.push(() => makeCharacter(
  4027. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4028. {
  4029. front: {
  4030. height: math.unit(8, "feet"),
  4031. weight: math.unit(120, "lb"),
  4032. name: "Front",
  4033. image: {
  4034. source: "./media/characters/ona/front.svg"
  4035. }
  4036. },
  4037. frontAlt: {
  4038. height: math.unit(8, "feet"),
  4039. weight: math.unit(120, "lb"),
  4040. name: "Front (Alt)",
  4041. image: {
  4042. source: "./media/characters/ona/front-alt.svg"
  4043. }
  4044. },
  4045. back: {
  4046. height: math.unit(8, "feet"),
  4047. weight: math.unit(120, "lb"),
  4048. name: "Back",
  4049. image: {
  4050. source: "./media/characters/ona/back.svg"
  4051. }
  4052. },
  4053. foot: {
  4054. height: math.unit(1.1, "feet"),
  4055. name: "Foot",
  4056. image: {
  4057. source: "./media/characters/ona/foot.svg"
  4058. }
  4059. }
  4060. },
  4061. [
  4062. {
  4063. name: "Megamacro",
  4064. height: math.unit(70, "km"),
  4065. default: true
  4066. },
  4067. {
  4068. name: "Gigamacro",
  4069. height: math.unit(681818, "miles")
  4070. },
  4071. {
  4072. name: "Examacro",
  4073. height: math.unit(3800000, "lightyears")
  4074. },
  4075. ]
  4076. ))
  4077. characterMakers.push(() => makeCharacter(
  4078. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4079. {
  4080. front: {
  4081. height: math.unit(12, "feet"),
  4082. weight: math.unit(3000, "lb"),
  4083. name: "Front",
  4084. image: {
  4085. source: "./media/characters/mech/front.svg",
  4086. extra: 2900 / 2770,
  4087. bottom: 110 / 3010
  4088. }
  4089. },
  4090. back: {
  4091. height: math.unit(12, "feet"),
  4092. weight: math.unit(3000, "lb"),
  4093. name: "Back",
  4094. image: {
  4095. source: "./media/characters/mech/back.svg",
  4096. extra: 3011 / 2890,
  4097. bottom: 94 / 3105
  4098. }
  4099. },
  4100. maw: {
  4101. height: math.unit(3.07, "feet"),
  4102. name: "Maw",
  4103. image: {
  4104. source: "./media/characters/mech/maw.svg"
  4105. }
  4106. },
  4107. head: {
  4108. height: math.unit(2.82, "feet"),
  4109. name: "Head",
  4110. image: {
  4111. source: "./media/characters/mech/head.svg"
  4112. }
  4113. },
  4114. dick: {
  4115. height: math.unit(1.43, "feet"),
  4116. name: "Dick",
  4117. image: {
  4118. source: "./media/characters/mech/dick.svg"
  4119. }
  4120. },
  4121. },
  4122. [
  4123. {
  4124. name: "Normal",
  4125. height: math.unit(12, "feet")
  4126. },
  4127. {
  4128. name: "Macro",
  4129. height: math.unit(300, "feet"),
  4130. default: true
  4131. },
  4132. {
  4133. name: "Macro+",
  4134. height: math.unit(1500, "feet")
  4135. },
  4136. ]
  4137. ))
  4138. characterMakers.push(() => makeCharacter(
  4139. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4140. {
  4141. front: {
  4142. height: math.unit(1.3, "meter"),
  4143. weight: math.unit(30, "kg"),
  4144. name: "Front",
  4145. image: {
  4146. source: "./media/characters/gregory/front.svg",
  4147. }
  4148. }
  4149. },
  4150. [
  4151. {
  4152. name: "Normal",
  4153. height: math.unit(1.3, "meter"),
  4154. default: true
  4155. },
  4156. {
  4157. name: "Macro",
  4158. height: math.unit(20, "meter")
  4159. }
  4160. ]
  4161. ))
  4162. characterMakers.push(() => makeCharacter(
  4163. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4164. {
  4165. front: {
  4166. height: math.unit(2.8, "meter"),
  4167. weight: math.unit(200, "kg"),
  4168. name: "Front",
  4169. image: {
  4170. source: "./media/characters/elory/front.svg",
  4171. }
  4172. }
  4173. },
  4174. [
  4175. {
  4176. name: "Normal",
  4177. height: math.unit(2.8, "meter"),
  4178. default: true
  4179. },
  4180. {
  4181. name: "Macro",
  4182. height: math.unit(38, "meter")
  4183. }
  4184. ]
  4185. ))
  4186. characterMakers.push(() => makeCharacter(
  4187. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4188. {
  4189. front: {
  4190. height: math.unit(470, "feet"),
  4191. weight: math.unit(924, "tons"),
  4192. name: "Front",
  4193. image: {
  4194. source: "./media/characters/angelpatamon/front.svg",
  4195. }
  4196. }
  4197. },
  4198. [
  4199. {
  4200. name: "Normal",
  4201. height: math.unit(470, "feet"),
  4202. default: true
  4203. },
  4204. {
  4205. name: "Deity Size I",
  4206. height: math.unit(28651.2, "km")
  4207. },
  4208. {
  4209. name: "Deity Size II",
  4210. height: math.unit(171907.2, "km")
  4211. }
  4212. ]
  4213. ))
  4214. characterMakers.push(() => makeCharacter(
  4215. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4216. {
  4217. side: {
  4218. height: math.unit(7.2, "meter"),
  4219. weight: math.unit(8.2, "tons"),
  4220. name: "Side",
  4221. image: {
  4222. source: "./media/characters/cryae/side.svg",
  4223. extra: 3500 / 1500
  4224. }
  4225. }
  4226. },
  4227. [
  4228. {
  4229. name: "Normal",
  4230. height: math.unit(7.2, "meter"),
  4231. default: true
  4232. }
  4233. ]
  4234. ))
  4235. characterMakers.push(() => makeCharacter(
  4236. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4237. {
  4238. front: {
  4239. height: math.unit(6, "feet"),
  4240. weight: math.unit(175, "lb"),
  4241. name: "Front",
  4242. image: {
  4243. source: "./media/characters/xera/front.svg",
  4244. extra: 2377 / 1972,
  4245. bottom: 75.5 / 2452
  4246. }
  4247. },
  4248. side: {
  4249. height: math.unit(6, "feet"),
  4250. weight: math.unit(175, "lb"),
  4251. name: "Side",
  4252. image: {
  4253. source: "./media/characters/xera/side.svg",
  4254. extra: 2345 / 2019,
  4255. bottom: 39.7 / 2384
  4256. }
  4257. },
  4258. back: {
  4259. height: math.unit(6, "feet"),
  4260. weight: math.unit(175, "lb"),
  4261. name: "Back",
  4262. image: {
  4263. source: "./media/characters/xera/back.svg",
  4264. extra: 2095 / 1984,
  4265. bottom: 67 / 2166
  4266. }
  4267. },
  4268. },
  4269. [
  4270. {
  4271. name: "Small",
  4272. height: math.unit(10, "feet")
  4273. },
  4274. {
  4275. name: "Macro",
  4276. height: math.unit(500, "meters"),
  4277. default: true
  4278. },
  4279. {
  4280. name: "Macro+",
  4281. height: math.unit(10, "km")
  4282. },
  4283. {
  4284. name: "Gigamacro",
  4285. height: math.unit(25000, "km")
  4286. },
  4287. {
  4288. name: "Teramacro",
  4289. height: math.unit(3e6, "km")
  4290. }
  4291. ]
  4292. ))
  4293. characterMakers.push(() => makeCharacter(
  4294. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4295. {
  4296. front: {
  4297. height: math.unit(6, "feet"),
  4298. weight: math.unit(175, "lb"),
  4299. name: "Front",
  4300. image: {
  4301. source: "./media/characters/nebula/front.svg",
  4302. extra: 2566 / 2362,
  4303. bottom: 81 / 2644
  4304. }
  4305. }
  4306. },
  4307. [
  4308. {
  4309. name: "Small",
  4310. height: math.unit(4.5, "meters")
  4311. },
  4312. {
  4313. name: "Macro",
  4314. height: math.unit(1500, "meters"),
  4315. default: true
  4316. },
  4317. {
  4318. name: "Megamacro",
  4319. height: math.unit(150, "km")
  4320. },
  4321. {
  4322. name: "Gigamacro",
  4323. height: math.unit(27000, "km")
  4324. }
  4325. ]
  4326. ))
  4327. characterMakers.push(() => makeCharacter(
  4328. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4329. {
  4330. front: {
  4331. height: math.unit(6, "feet"),
  4332. weight: math.unit(225, "lb"),
  4333. name: "Front",
  4334. image: {
  4335. source: "./media/characters/abysgar/front.svg"
  4336. }
  4337. }
  4338. },
  4339. [
  4340. {
  4341. name: "Small",
  4342. height: math.unit(4.5, "meters")
  4343. },
  4344. {
  4345. name: "Macro",
  4346. height: math.unit(1250, "meters"),
  4347. default: true
  4348. },
  4349. {
  4350. name: "Megamacro",
  4351. height: math.unit(125, "km")
  4352. },
  4353. {
  4354. name: "Gigamacro",
  4355. height: math.unit(26000, "km")
  4356. }
  4357. ]
  4358. ))
  4359. characterMakers.push(() => makeCharacter(
  4360. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4361. {
  4362. front: {
  4363. height: math.unit(6, "feet"),
  4364. weight: math.unit(180, "lb"),
  4365. name: "Front",
  4366. image: {
  4367. source: "./media/characters/yakuz/front.svg"
  4368. }
  4369. }
  4370. },
  4371. [
  4372. {
  4373. name: "Small",
  4374. height: math.unit(5, "meters")
  4375. },
  4376. {
  4377. name: "Macro",
  4378. height: math.unit(1500, "meters"),
  4379. default: true
  4380. },
  4381. {
  4382. name: "Megamacro",
  4383. height: math.unit(200, "km")
  4384. },
  4385. {
  4386. name: "Gigamacro",
  4387. height: math.unit(100000, "km")
  4388. }
  4389. ]
  4390. ))
  4391. characterMakers.push(() => makeCharacter(
  4392. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4393. {
  4394. front: {
  4395. height: math.unit(6, "feet"),
  4396. weight: math.unit(175, "lb"),
  4397. name: "Front",
  4398. image: {
  4399. source: "./media/characters/mirova/front.svg",
  4400. extra: 3334 / 3071,
  4401. bottom: 42 / 3375.6
  4402. }
  4403. }
  4404. },
  4405. [
  4406. {
  4407. name: "Small",
  4408. height: math.unit(5, "meters")
  4409. },
  4410. {
  4411. name: "Macro",
  4412. height: math.unit(900, "meters"),
  4413. default: true
  4414. },
  4415. {
  4416. name: "Megamacro",
  4417. height: math.unit(135, "km")
  4418. },
  4419. {
  4420. name: "Gigamacro",
  4421. height: math.unit(20000, "km")
  4422. }
  4423. ]
  4424. ))
  4425. characterMakers.push(() => makeCharacter(
  4426. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4427. {
  4428. side: {
  4429. height: math.unit(28.35, "feet"),
  4430. weight: math.unit(99.75, "tons"),
  4431. name: "Side",
  4432. image: {
  4433. source: "./media/characters/asana-mech/side.svg",
  4434. extra: 923 / 699,
  4435. bottom: 50 / 975
  4436. }
  4437. },
  4438. chaingun: {
  4439. height: math.unit(7, "feet"),
  4440. weight: math.unit(2400, "lb"),
  4441. name: "Chaingun",
  4442. image: {
  4443. source: "./media/characters/asana-mech/chaingun.svg"
  4444. }
  4445. },
  4446. laser: {
  4447. height: math.unit(7.12, "feet"),
  4448. weight: math.unit(2000, "lb"),
  4449. name: "Laser",
  4450. image: {
  4451. source: "./media/characters/asana-mech/laser.svg"
  4452. }
  4453. },
  4454. },
  4455. [
  4456. {
  4457. name: "Normal",
  4458. height: math.unit(28.35, "feet"),
  4459. default: true
  4460. },
  4461. {
  4462. name: "Macro",
  4463. height: math.unit(2500, "feet")
  4464. },
  4465. {
  4466. name: "Megamacro",
  4467. height: math.unit(25, "miles")
  4468. },
  4469. {
  4470. name: "Examacro",
  4471. height: math.unit(6e8, "lightyears")
  4472. },
  4473. ]
  4474. ))
  4475. characterMakers.push(() => makeCharacter(
  4476. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4477. {
  4478. front: {
  4479. height: math.unit(5, "meters"),
  4480. weight: math.unit(1000, "kg"),
  4481. name: "Front",
  4482. image: {
  4483. source: "./media/characters/asche/front.svg",
  4484. extra: 1258 / 1190,
  4485. bottom: 47 / 1305
  4486. }
  4487. },
  4488. frontUnderwear: {
  4489. height: math.unit(5, "meters"),
  4490. weight: math.unit(1000, "kg"),
  4491. name: "Front (Underwear)",
  4492. image: {
  4493. source: "./media/characters/asche/front-underwear.svg",
  4494. extra: 1258 / 1190,
  4495. bottom: 47 / 1305
  4496. }
  4497. },
  4498. frontDressed: {
  4499. height: math.unit(5, "meters"),
  4500. weight: math.unit(1000, "kg"),
  4501. name: "Front (Dressed)",
  4502. image: {
  4503. source: "./media/characters/asche/front-dressed.svg",
  4504. extra: 1258 / 1190,
  4505. bottom: 47 / 1305
  4506. }
  4507. },
  4508. frontArmor: {
  4509. height: math.unit(5, "meters"),
  4510. weight: math.unit(1000, "kg"),
  4511. name: "Front (Armored)",
  4512. image: {
  4513. source: "./media/characters/asche/front-armored.svg",
  4514. extra: 1374 / 1308,
  4515. bottom: 23 / 1397
  4516. }
  4517. },
  4518. mp724: {
  4519. height: math.unit(0.96, "meters"),
  4520. weight: math.unit(38, "kg"),
  4521. name: "H&K MP724",
  4522. image: {
  4523. source: "./media/characters/asche/h&k-mp724.svg"
  4524. }
  4525. },
  4526. side: {
  4527. height: math.unit(5, "meters"),
  4528. weight: math.unit(1000, "kg"),
  4529. name: "Side",
  4530. image: {
  4531. source: "./media/characters/asche/side.svg",
  4532. extra: 1717 / 1609,
  4533. bottom: 0.005
  4534. }
  4535. },
  4536. back: {
  4537. height: math.unit(5, "meters"),
  4538. weight: math.unit(1000, "kg"),
  4539. name: "Back",
  4540. image: {
  4541. source: "./media/characters/asche/back.svg",
  4542. extra: 1570 / 1501
  4543. }
  4544. },
  4545. },
  4546. [
  4547. {
  4548. name: "DEFCON 5",
  4549. height: math.unit(5, "meters")
  4550. },
  4551. {
  4552. name: "DEFCON 4",
  4553. height: math.unit(500, "meters"),
  4554. default: true
  4555. },
  4556. {
  4557. name: "DEFCON 3",
  4558. height: math.unit(5, "km")
  4559. },
  4560. {
  4561. name: "DEFCON 2",
  4562. height: math.unit(500, "km")
  4563. },
  4564. {
  4565. name: "DEFCON 1",
  4566. height: math.unit(500000, "km")
  4567. },
  4568. {
  4569. name: "DEFCON 0",
  4570. height: math.unit(3, "gigaparsecs")
  4571. },
  4572. ]
  4573. ))
  4574. characterMakers.push(() => makeCharacter(
  4575. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4576. {
  4577. front: {
  4578. height: math.unit(2, "meters"),
  4579. weight: math.unit(76, "kg"),
  4580. name: "Front",
  4581. image: {
  4582. source: "./media/characters/gale/front.svg"
  4583. }
  4584. },
  4585. frontAlt1: {
  4586. height: math.unit(2, "meters"),
  4587. weight: math.unit(76, "kg"),
  4588. name: "Front (Alt 1)",
  4589. image: {
  4590. source: "./media/characters/gale/front-alt-1.svg"
  4591. }
  4592. },
  4593. frontAlt2: {
  4594. height: math.unit(2, "meters"),
  4595. weight: math.unit(76, "kg"),
  4596. name: "Front (Alt 2)",
  4597. image: {
  4598. source: "./media/characters/gale/front-alt-2.svg"
  4599. }
  4600. },
  4601. },
  4602. [
  4603. {
  4604. name: "Normal",
  4605. height: math.unit(7, "feet")
  4606. },
  4607. {
  4608. name: "Macro",
  4609. height: math.unit(150, "feet"),
  4610. default: true
  4611. },
  4612. {
  4613. name: "Macro+",
  4614. height: math.unit(300, "feet")
  4615. },
  4616. ]
  4617. ))
  4618. characterMakers.push(() => makeCharacter(
  4619. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4620. {
  4621. front: {
  4622. height: math.unit(5 + 10/12, "feet"),
  4623. weight: math.unit(67, "kg"),
  4624. name: "Front",
  4625. image: {
  4626. source: "./media/characters/draylen/front.svg",
  4627. extra: 832/777,
  4628. bottom: 85/917
  4629. }
  4630. }
  4631. },
  4632. [
  4633. {
  4634. name: "Normal",
  4635. height: math.unit(5 + 10/12, "feet")
  4636. },
  4637. {
  4638. name: "Macro",
  4639. height: math.unit(150, "feet"),
  4640. default: true
  4641. }
  4642. ]
  4643. ))
  4644. characterMakers.push(() => makeCharacter(
  4645. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4646. {
  4647. front: {
  4648. height: math.unit(7 + 9 / 12, "feet"),
  4649. weight: math.unit(379, "lbs"),
  4650. name: "Front",
  4651. image: {
  4652. source: "./media/characters/chez/front.svg"
  4653. }
  4654. },
  4655. side: {
  4656. height: math.unit(7 + 9 / 12, "feet"),
  4657. weight: math.unit(379, "lbs"),
  4658. name: "Side",
  4659. image: {
  4660. source: "./media/characters/chez/side.svg"
  4661. }
  4662. }
  4663. },
  4664. [
  4665. {
  4666. name: "Normal",
  4667. height: math.unit(7 + 9 / 12, "feet"),
  4668. default: true
  4669. },
  4670. {
  4671. name: "God King",
  4672. height: math.unit(9750000, "meters")
  4673. }
  4674. ]
  4675. ))
  4676. characterMakers.push(() => makeCharacter(
  4677. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4678. {
  4679. front: {
  4680. height: math.unit(6, "feet"),
  4681. weight: math.unit(275, "lbs"),
  4682. name: "Front",
  4683. image: {
  4684. source: "./media/characters/kaylum/front.svg",
  4685. bottom: 0.01,
  4686. extra: 1166 / 1031
  4687. }
  4688. },
  4689. frontWingless: {
  4690. height: math.unit(6, "feet"),
  4691. weight: math.unit(275, "lbs"),
  4692. name: "Front (Wingless)",
  4693. image: {
  4694. source: "./media/characters/kaylum/front-wingless.svg",
  4695. bottom: 0.01,
  4696. extra: 1117 / 1031
  4697. }
  4698. }
  4699. },
  4700. [
  4701. {
  4702. name: "Normal",
  4703. height: math.unit(3.05, "meters")
  4704. },
  4705. {
  4706. name: "Master",
  4707. height: math.unit(5.5, "meters")
  4708. },
  4709. {
  4710. name: "Rampage",
  4711. height: math.unit(19, "meters")
  4712. },
  4713. {
  4714. name: "Macro Lite",
  4715. height: math.unit(37, "meters")
  4716. },
  4717. {
  4718. name: "Hyper Predator",
  4719. height: math.unit(61, "meters")
  4720. },
  4721. {
  4722. name: "Macro",
  4723. height: math.unit(138, "meters"),
  4724. default: true
  4725. }
  4726. ]
  4727. ))
  4728. characterMakers.push(() => makeCharacter(
  4729. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4730. {
  4731. front: {
  4732. height: math.unit(6, "feet"),
  4733. weight: math.unit(150, "lbs"),
  4734. name: "Front",
  4735. image: {
  4736. source: "./media/characters/geta/front.svg"
  4737. }
  4738. }
  4739. },
  4740. [
  4741. {
  4742. name: "Micro",
  4743. height: math.unit(3, "inches"),
  4744. default: true
  4745. },
  4746. {
  4747. name: "Normal",
  4748. height: math.unit(5 + 5 / 12, "feet")
  4749. }
  4750. ]
  4751. ))
  4752. characterMakers.push(() => makeCharacter(
  4753. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4754. {
  4755. front: {
  4756. height: math.unit(6, "feet"),
  4757. weight: math.unit(300, "lbs"),
  4758. name: "Front",
  4759. image: {
  4760. source: "./media/characters/tyrnn/front.svg"
  4761. }
  4762. }
  4763. },
  4764. [
  4765. {
  4766. name: "Main Height",
  4767. height: math.unit(355, "feet"),
  4768. default: true
  4769. },
  4770. {
  4771. name: "Fave. Height",
  4772. height: math.unit(2400, "feet")
  4773. }
  4774. ]
  4775. ))
  4776. characterMakers.push(() => makeCharacter(
  4777. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4778. {
  4779. front: {
  4780. height: math.unit(6, "feet"),
  4781. weight: math.unit(300, "lbs"),
  4782. name: "Front",
  4783. image: {
  4784. source: "./media/characters/appledectomy/front.svg"
  4785. }
  4786. }
  4787. },
  4788. [
  4789. {
  4790. name: "Macro",
  4791. height: math.unit(2500, "feet")
  4792. },
  4793. {
  4794. name: "Megamacro",
  4795. height: math.unit(50, "miles"),
  4796. default: true
  4797. },
  4798. {
  4799. name: "Gigamacro",
  4800. height: math.unit(5000, "miles")
  4801. },
  4802. {
  4803. name: "Teramacro",
  4804. height: math.unit(250000, "miles")
  4805. },
  4806. ]
  4807. ))
  4808. characterMakers.push(() => makeCharacter(
  4809. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4810. {
  4811. front: {
  4812. height: math.unit(6, "feet"),
  4813. weight: math.unit(200, "lbs"),
  4814. name: "Front",
  4815. image: {
  4816. source: "./media/characters/vulpes/front.svg",
  4817. extra: 573 / 543,
  4818. bottom: 0.033
  4819. }
  4820. },
  4821. side: {
  4822. height: math.unit(6, "feet"),
  4823. weight: math.unit(200, "lbs"),
  4824. name: "Side",
  4825. image: {
  4826. source: "./media/characters/vulpes/side.svg",
  4827. extra: 577 / 549,
  4828. bottom: 11 / 588
  4829. }
  4830. },
  4831. back: {
  4832. height: math.unit(6, "feet"),
  4833. weight: math.unit(200, "lbs"),
  4834. name: "Back",
  4835. image: {
  4836. source: "./media/characters/vulpes/back.svg",
  4837. extra: 573 / 549,
  4838. bottom: 20 / 593
  4839. }
  4840. },
  4841. feet: {
  4842. height: math.unit(1.276, "feet"),
  4843. name: "Feet",
  4844. image: {
  4845. source: "./media/characters/vulpes/feet.svg"
  4846. }
  4847. },
  4848. maw: {
  4849. height: math.unit(1.18, "feet"),
  4850. name: "Maw",
  4851. image: {
  4852. source: "./media/characters/vulpes/maw.svg"
  4853. }
  4854. },
  4855. },
  4856. [
  4857. {
  4858. name: "Micro",
  4859. height: math.unit(2, "inches")
  4860. },
  4861. {
  4862. name: "Normal",
  4863. height: math.unit(6.3, "feet")
  4864. },
  4865. {
  4866. name: "Macro",
  4867. height: math.unit(850, "feet")
  4868. },
  4869. {
  4870. name: "Megamacro",
  4871. height: math.unit(7500, "feet"),
  4872. default: true
  4873. },
  4874. {
  4875. name: "Gigamacro",
  4876. height: math.unit(570000, "miles")
  4877. }
  4878. ]
  4879. ))
  4880. characterMakers.push(() => makeCharacter(
  4881. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4882. {
  4883. front: {
  4884. height: math.unit(6, "feet"),
  4885. weight: math.unit(210, "lbs"),
  4886. name: "Front",
  4887. image: {
  4888. source: "./media/characters/rain-fallen/front.svg"
  4889. }
  4890. },
  4891. side: {
  4892. height: math.unit(6, "feet"),
  4893. weight: math.unit(210, "lbs"),
  4894. name: "Side",
  4895. image: {
  4896. source: "./media/characters/rain-fallen/side.svg"
  4897. }
  4898. },
  4899. back: {
  4900. height: math.unit(6, "feet"),
  4901. weight: math.unit(210, "lbs"),
  4902. name: "Back",
  4903. image: {
  4904. source: "./media/characters/rain-fallen/back.svg"
  4905. }
  4906. },
  4907. feral: {
  4908. height: math.unit(9, "feet"),
  4909. weight: math.unit(700, "lbs"),
  4910. name: "Feral",
  4911. image: {
  4912. source: "./media/characters/rain-fallen/feral.svg"
  4913. }
  4914. },
  4915. },
  4916. [
  4917. {
  4918. name: "Meddling with Mortals",
  4919. height: math.unit(8 + 8/12, "feet")
  4920. },
  4921. {
  4922. name: "Normal",
  4923. height: math.unit(5, "meter")
  4924. },
  4925. {
  4926. name: "Macro",
  4927. height: math.unit(150, "meter"),
  4928. default: true
  4929. },
  4930. {
  4931. name: "Megamacro",
  4932. height: math.unit(278e6, "meter")
  4933. },
  4934. {
  4935. name: "Gigamacro",
  4936. height: math.unit(2e9, "meter")
  4937. },
  4938. {
  4939. name: "Teramacro",
  4940. height: math.unit(8e12, "meter")
  4941. },
  4942. {
  4943. name: "Devourer",
  4944. height: math.unit(14, "zettameters")
  4945. },
  4946. {
  4947. name: "Scarlet King",
  4948. height: math.unit(18, "yottameters")
  4949. },
  4950. {
  4951. name: "Void",
  4952. height: math.unit(1e88, "yottameters")
  4953. }
  4954. ]
  4955. ))
  4956. characterMakers.push(() => makeCharacter(
  4957. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4958. {
  4959. standing: {
  4960. height: math.unit(6, "feet"),
  4961. weight: math.unit(180, "lbs"),
  4962. name: "Standing",
  4963. image: {
  4964. source: "./media/characters/zaakira/standing.svg",
  4965. extra: 1599/1504,
  4966. bottom: 39/1638
  4967. }
  4968. },
  4969. laying: {
  4970. height: math.unit(3, "feet"),
  4971. weight: math.unit(180, "lbs"),
  4972. name: "Laying",
  4973. image: {
  4974. source: "./media/characters/zaakira/laying.svg"
  4975. }
  4976. },
  4977. },
  4978. [
  4979. {
  4980. name: "Normal",
  4981. height: math.unit(12, "feet")
  4982. },
  4983. {
  4984. name: "Macro",
  4985. height: math.unit(279, "feet"),
  4986. default: true
  4987. }
  4988. ]
  4989. ))
  4990. characterMakers.push(() => makeCharacter(
  4991. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4992. {
  4993. femSfw: {
  4994. height: math.unit(8, "feet"),
  4995. weight: math.unit(350, "lb"),
  4996. name: "Fem",
  4997. image: {
  4998. source: "./media/characters/sigvald/fem-sfw.svg",
  4999. extra: 182 / 164,
  5000. bottom: 8.7 / 190.5
  5001. }
  5002. },
  5003. femNsfw: {
  5004. height: math.unit(8, "feet"),
  5005. weight: math.unit(350, "lb"),
  5006. name: "Fem (NSFW)",
  5007. image: {
  5008. source: "./media/characters/sigvald/fem-nsfw.svg",
  5009. extra: 182 / 164,
  5010. bottom: 8.7 / 190.5
  5011. }
  5012. },
  5013. maleNsfw: {
  5014. height: math.unit(8, "feet"),
  5015. weight: math.unit(350, "lb"),
  5016. name: "Male (NSFW)",
  5017. image: {
  5018. source: "./media/characters/sigvald/male-nsfw.svg",
  5019. extra: 182 / 164,
  5020. bottom: 8.7 / 190.5
  5021. }
  5022. },
  5023. hermNsfw: {
  5024. height: math.unit(8, "feet"),
  5025. weight: math.unit(350, "lb"),
  5026. name: "Herm (NSFW)",
  5027. image: {
  5028. source: "./media/characters/sigvald/herm-nsfw.svg",
  5029. extra: 182 / 164,
  5030. bottom: 8.7 / 190.5
  5031. }
  5032. },
  5033. dick: {
  5034. height: math.unit(2.36, "feet"),
  5035. name: "Dick",
  5036. image: {
  5037. source: "./media/characters/sigvald/dick.svg"
  5038. }
  5039. },
  5040. eye: {
  5041. height: math.unit(0.31, "feet"),
  5042. name: "Eye",
  5043. image: {
  5044. source: "./media/characters/sigvald/eye.svg"
  5045. }
  5046. },
  5047. mouth: {
  5048. height: math.unit(0.92, "feet"),
  5049. name: "Mouth",
  5050. image: {
  5051. source: "./media/characters/sigvald/mouth.svg"
  5052. }
  5053. },
  5054. paws: {
  5055. height: math.unit(2.2, "feet"),
  5056. name: "Paws",
  5057. image: {
  5058. source: "./media/characters/sigvald/paws.svg"
  5059. }
  5060. }
  5061. },
  5062. [
  5063. {
  5064. name: "Normal",
  5065. height: math.unit(8, "feet")
  5066. },
  5067. {
  5068. name: "Large",
  5069. height: math.unit(12, "feet")
  5070. },
  5071. {
  5072. name: "Larger",
  5073. height: math.unit(20, "feet")
  5074. },
  5075. {
  5076. name: "Macro",
  5077. height: math.unit(150, "feet")
  5078. },
  5079. {
  5080. name: "Macro+",
  5081. height: math.unit(200, "feet"),
  5082. default: true
  5083. },
  5084. ]
  5085. ))
  5086. characterMakers.push(() => makeCharacter(
  5087. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5088. {
  5089. side: {
  5090. height: math.unit(12, "feet"),
  5091. weight: math.unit(2000, "kg"),
  5092. name: "Side",
  5093. image: {
  5094. source: "./media/characters/scott/side.svg",
  5095. extra: 754 / 724,
  5096. bottom: 0.069
  5097. }
  5098. },
  5099. upright: {
  5100. height: math.unit(12, "feet"),
  5101. weight: math.unit(2000, "kg"),
  5102. name: "Upright",
  5103. image: {
  5104. source: "./media/characters/scott/upright.svg",
  5105. extra: 3881 / 3722,
  5106. bottom: 0.05
  5107. }
  5108. },
  5109. },
  5110. [
  5111. {
  5112. name: "Normal",
  5113. height: math.unit(12, "feet"),
  5114. default: true
  5115. },
  5116. ]
  5117. ))
  5118. characterMakers.push(() => makeCharacter(
  5119. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5120. {
  5121. side: {
  5122. height: math.unit(8, "meters"),
  5123. weight: math.unit(84755, "lbs"),
  5124. name: "Side",
  5125. image: {
  5126. source: "./media/characters/tobias/side.svg",
  5127. extra: 1474 / 1096,
  5128. bottom: 38.9 / 1513.1235
  5129. }
  5130. },
  5131. },
  5132. [
  5133. {
  5134. name: "Normal",
  5135. height: math.unit(8, "meters"),
  5136. default: true
  5137. },
  5138. ]
  5139. ))
  5140. characterMakers.push(() => makeCharacter(
  5141. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5142. {
  5143. front: {
  5144. height: math.unit(5.5, "feet"),
  5145. weight: math.unit(400, "lbs"),
  5146. name: "Front",
  5147. image: {
  5148. source: "./media/characters/kieran/front.svg",
  5149. extra: 2694 / 2364,
  5150. bottom: 217 / 2908
  5151. }
  5152. },
  5153. side: {
  5154. height: math.unit(5.5, "feet"),
  5155. weight: math.unit(400, "lbs"),
  5156. name: "Side",
  5157. image: {
  5158. source: "./media/characters/kieran/side.svg",
  5159. extra: 875 / 777,
  5160. bottom: 84.6 / 959
  5161. }
  5162. },
  5163. },
  5164. [
  5165. {
  5166. name: "Normal",
  5167. height: math.unit(5.5, "feet"),
  5168. default: true
  5169. },
  5170. ]
  5171. ))
  5172. characterMakers.push(() => makeCharacter(
  5173. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5174. {
  5175. side: {
  5176. height: math.unit(2, "meters"),
  5177. weight: math.unit(70, "kg"),
  5178. name: "Side",
  5179. image: {
  5180. source: "./media/characters/sanya/side.svg",
  5181. bottom: 0.02,
  5182. extra: 1.02
  5183. }
  5184. },
  5185. },
  5186. [
  5187. {
  5188. name: "Small",
  5189. height: math.unit(2, "meters")
  5190. },
  5191. {
  5192. name: "Normal",
  5193. height: math.unit(3, "meters")
  5194. },
  5195. {
  5196. name: "Macro",
  5197. height: math.unit(16, "meters"),
  5198. default: true
  5199. },
  5200. ]
  5201. ))
  5202. characterMakers.push(() => makeCharacter(
  5203. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5204. {
  5205. front: {
  5206. height: math.unit(2, "meters"),
  5207. weight: math.unit(120, "kg"),
  5208. name: "Front",
  5209. image: {
  5210. source: "./media/characters/miranda/front.svg",
  5211. extra: 195 / 185,
  5212. bottom: 10.9 / 206.5
  5213. }
  5214. },
  5215. back: {
  5216. height: math.unit(2, "meters"),
  5217. weight: math.unit(120, "kg"),
  5218. name: "Back",
  5219. image: {
  5220. source: "./media/characters/miranda/back.svg",
  5221. extra: 201 / 193,
  5222. bottom: 2.3 / 203.7
  5223. }
  5224. },
  5225. },
  5226. [
  5227. {
  5228. name: "Normal",
  5229. height: math.unit(10, "feet"),
  5230. default: true
  5231. }
  5232. ]
  5233. ))
  5234. characterMakers.push(() => makeCharacter(
  5235. { name: "James", species: ["deer"], tags: ["anthro"] },
  5236. {
  5237. side: {
  5238. height: math.unit(2, "meters"),
  5239. weight: math.unit(100, "kg"),
  5240. name: "Front",
  5241. image: {
  5242. source: "./media/characters/james/front.svg",
  5243. extra: 10 / 8.5
  5244. }
  5245. },
  5246. },
  5247. [
  5248. {
  5249. name: "Normal",
  5250. height: math.unit(8.5, "feet"),
  5251. default: true
  5252. }
  5253. ]
  5254. ))
  5255. characterMakers.push(() => makeCharacter(
  5256. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5257. {
  5258. side: {
  5259. height: math.unit(9.5, "feet"),
  5260. weight: math.unit(2500, "lbs"),
  5261. name: "Side",
  5262. image: {
  5263. source: "./media/characters/heather/side.svg"
  5264. }
  5265. },
  5266. },
  5267. [
  5268. {
  5269. name: "Normal",
  5270. height: math.unit(9.5, "feet"),
  5271. default: true
  5272. }
  5273. ]
  5274. ))
  5275. characterMakers.push(() => makeCharacter(
  5276. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5277. {
  5278. side: {
  5279. height: math.unit(6.5, "feet"),
  5280. weight: math.unit(400, "lbs"),
  5281. name: "Side",
  5282. image: {
  5283. source: "./media/characters/lukas/side.svg",
  5284. extra: 7.25 / 6.5
  5285. }
  5286. },
  5287. },
  5288. [
  5289. {
  5290. name: "Normal",
  5291. height: math.unit(6.5, "feet"),
  5292. default: true
  5293. }
  5294. ]
  5295. ))
  5296. characterMakers.push(() => makeCharacter(
  5297. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5298. {
  5299. side: {
  5300. height: math.unit(5, "feet"),
  5301. weight: math.unit(3000, "lbs"),
  5302. name: "Side",
  5303. image: {
  5304. source: "./media/characters/louise/side.svg"
  5305. }
  5306. },
  5307. },
  5308. [
  5309. {
  5310. name: "Normal",
  5311. height: math.unit(5, "feet"),
  5312. default: true
  5313. }
  5314. ]
  5315. ))
  5316. characterMakers.push(() => makeCharacter(
  5317. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5318. {
  5319. side: {
  5320. height: math.unit(6, "feet"),
  5321. weight: math.unit(150, "lbs"),
  5322. name: "Side",
  5323. image: {
  5324. source: "./media/characters/ramona/side.svg",
  5325. extra: 871/854,
  5326. bottom: 41/912
  5327. }
  5328. },
  5329. },
  5330. [
  5331. {
  5332. name: "Normal",
  5333. height: math.unit(5.3, "meters"),
  5334. default: true
  5335. },
  5336. {
  5337. name: "Macro",
  5338. height: math.unit(20, "stories")
  5339. },
  5340. {
  5341. name: "Macro+",
  5342. height: math.unit(50, "stories")
  5343. },
  5344. ]
  5345. ))
  5346. characterMakers.push(() => makeCharacter(
  5347. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5348. {
  5349. standing: {
  5350. height: math.unit(5.75, "feet"),
  5351. weight: math.unit(160, "lbs"),
  5352. name: "Standing",
  5353. image: {
  5354. source: "./media/characters/deerpuff/standing.svg",
  5355. extra: 682 / 624
  5356. }
  5357. },
  5358. sitting: {
  5359. height: math.unit(5.75 / 1.79, "feet"),
  5360. weight: math.unit(160, "lbs"),
  5361. name: "Sitting",
  5362. image: {
  5363. source: "./media/characters/deerpuff/sitting.svg",
  5364. bottom: 44 / 400,
  5365. extra: 1
  5366. }
  5367. },
  5368. taurLaying: {
  5369. height: math.unit(6, "feet"),
  5370. weight: math.unit(400, "lbs"),
  5371. name: "Taur (Laying)",
  5372. image: {
  5373. source: "./media/characters/deerpuff/taur-laying.svg"
  5374. }
  5375. },
  5376. },
  5377. [
  5378. {
  5379. name: "Puffball",
  5380. height: math.unit(6, "inches")
  5381. },
  5382. {
  5383. name: "Normalpuff",
  5384. height: math.unit(5.75, "feet")
  5385. },
  5386. {
  5387. name: "Macropuff",
  5388. height: math.unit(1500, "feet"),
  5389. default: true
  5390. },
  5391. {
  5392. name: "Megapuff",
  5393. height: math.unit(500, "miles")
  5394. },
  5395. {
  5396. name: "Gigapuff",
  5397. height: math.unit(250000, "miles")
  5398. },
  5399. {
  5400. name: "Omegapuff",
  5401. height: math.unit(1000, "lightyears")
  5402. },
  5403. ]
  5404. ))
  5405. characterMakers.push(() => makeCharacter(
  5406. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5407. {
  5408. stomping: {
  5409. height: math.unit(6, "feet"),
  5410. weight: math.unit(170, "lbs"),
  5411. name: "Stomping",
  5412. image: {
  5413. source: "./media/characters/vivian/stomping.svg"
  5414. }
  5415. },
  5416. sitting: {
  5417. height: math.unit(6 / 1.75, "feet"),
  5418. weight: math.unit(170, "lbs"),
  5419. name: "Sitting",
  5420. image: {
  5421. source: "./media/characters/vivian/sitting.svg",
  5422. bottom: 1 / 6.4,
  5423. extra: 1,
  5424. }
  5425. },
  5426. },
  5427. [
  5428. {
  5429. name: "Normal",
  5430. height: math.unit(7, "feet"),
  5431. default: true
  5432. },
  5433. {
  5434. name: "Macro",
  5435. height: math.unit(10, "stories")
  5436. },
  5437. {
  5438. name: "Macro+",
  5439. height: math.unit(30, "stories")
  5440. },
  5441. {
  5442. name: "Megamacro",
  5443. height: math.unit(10, "miles")
  5444. },
  5445. {
  5446. name: "Megamacro+",
  5447. height: math.unit(2750000, "meters")
  5448. },
  5449. ]
  5450. ))
  5451. characterMakers.push(() => makeCharacter(
  5452. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5453. {
  5454. front: {
  5455. height: math.unit(6, "feet"),
  5456. weight: math.unit(160, "lbs"),
  5457. name: "Front",
  5458. image: {
  5459. source: "./media/characters/prince/front.svg",
  5460. extra: 3400 / 3000
  5461. }
  5462. },
  5463. jumping: {
  5464. height: math.unit(6, "feet"),
  5465. weight: math.unit(160, "lbs"),
  5466. name: "Jumping",
  5467. image: {
  5468. source: "./media/characters/prince/jump.svg",
  5469. extra: 2555 / 2134
  5470. }
  5471. },
  5472. },
  5473. [
  5474. {
  5475. name: "Normal",
  5476. height: math.unit(7.75, "feet"),
  5477. default: true
  5478. },
  5479. {
  5480. name: "Not cute",
  5481. height: math.unit(17, "feet")
  5482. },
  5483. {
  5484. name: "I said NOT",
  5485. height: math.unit(91, "feet")
  5486. },
  5487. {
  5488. name: "Please stop",
  5489. height: math.unit(560, "feet")
  5490. },
  5491. {
  5492. name: "What have you done",
  5493. height: math.unit(2200, "feet")
  5494. },
  5495. {
  5496. name: "Deer God",
  5497. height: math.unit(3.6, "miles")
  5498. },
  5499. ]
  5500. ))
  5501. characterMakers.push(() => makeCharacter(
  5502. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5503. {
  5504. standing: {
  5505. height: math.unit(6, "feet"),
  5506. weight: math.unit(300, "lbs"),
  5507. name: "Standing",
  5508. image: {
  5509. source: "./media/characters/psymon/standing.svg",
  5510. extra: 1888 / 1810,
  5511. bottom: 0.05
  5512. }
  5513. },
  5514. slithering: {
  5515. height: math.unit(6, "feet"),
  5516. weight: math.unit(300, "lbs"),
  5517. name: "Slithering",
  5518. image: {
  5519. source: "./media/characters/psymon/slithering.svg",
  5520. extra: 1330 / 1224
  5521. }
  5522. },
  5523. slitheringAlt: {
  5524. height: math.unit(6, "feet"),
  5525. weight: math.unit(300, "lbs"),
  5526. name: "Slithering (Alt)",
  5527. image: {
  5528. source: "./media/characters/psymon/slithering-alt.svg",
  5529. extra: 1330 / 1224
  5530. }
  5531. },
  5532. },
  5533. [
  5534. {
  5535. name: "Normal",
  5536. height: math.unit(11.25, "feet"),
  5537. default: true
  5538. },
  5539. {
  5540. name: "Large",
  5541. height: math.unit(27, "feet")
  5542. },
  5543. {
  5544. name: "Giant",
  5545. height: math.unit(87, "feet")
  5546. },
  5547. {
  5548. name: "Macro",
  5549. height: math.unit(365, "feet")
  5550. },
  5551. {
  5552. name: "Megamacro",
  5553. height: math.unit(3, "miles")
  5554. },
  5555. {
  5556. name: "World Serpent",
  5557. height: math.unit(8000, "miles")
  5558. },
  5559. ]
  5560. ))
  5561. characterMakers.push(() => makeCharacter(
  5562. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5563. {
  5564. front: {
  5565. height: math.unit(6, "feet"),
  5566. weight: math.unit(180, "lbs"),
  5567. name: "Front",
  5568. image: {
  5569. source: "./media/characters/daimos/front.svg",
  5570. extra: 4160 / 3897,
  5571. bottom: 0.021
  5572. }
  5573. }
  5574. },
  5575. [
  5576. {
  5577. name: "Normal",
  5578. height: math.unit(8, "feet"),
  5579. default: true
  5580. },
  5581. {
  5582. name: "Big Dog",
  5583. height: math.unit(22, "feet")
  5584. },
  5585. {
  5586. name: "Macro",
  5587. height: math.unit(127, "feet")
  5588. },
  5589. {
  5590. name: "Megamacro",
  5591. height: math.unit(3600, "feet")
  5592. },
  5593. ]
  5594. ))
  5595. characterMakers.push(() => makeCharacter(
  5596. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5597. {
  5598. side: {
  5599. height: math.unit(6, "feet"),
  5600. weight: math.unit(180, "lbs"),
  5601. name: "Side",
  5602. image: {
  5603. source: "./media/characters/blake/side.svg",
  5604. extra: 1212 / 1120,
  5605. bottom: 0.05
  5606. }
  5607. },
  5608. crouched: {
  5609. height: math.unit(6 * 0.57, "feet"),
  5610. weight: math.unit(180, "lbs"),
  5611. name: "Crouched",
  5612. image: {
  5613. source: "./media/characters/blake/crouched.svg",
  5614. extra: 840 / 587,
  5615. bottom: 0.04
  5616. }
  5617. },
  5618. bent: {
  5619. height: math.unit(6 * 0.75, "feet"),
  5620. weight: math.unit(180, "lbs"),
  5621. name: "Bent",
  5622. image: {
  5623. source: "./media/characters/blake/bent.svg",
  5624. extra: 592 / 544,
  5625. bottom: 0.035
  5626. }
  5627. },
  5628. },
  5629. [
  5630. {
  5631. name: "Normal",
  5632. height: math.unit(8 + 1 / 6, "feet"),
  5633. default: true
  5634. },
  5635. {
  5636. name: "Big Backside",
  5637. height: math.unit(37, "feet")
  5638. },
  5639. {
  5640. name: "Subway Shredder",
  5641. height: math.unit(72, "feet")
  5642. },
  5643. {
  5644. name: "City Carver",
  5645. height: math.unit(1675, "feet")
  5646. },
  5647. {
  5648. name: "Tectonic Tweaker",
  5649. height: math.unit(2300, "miles")
  5650. },
  5651. ]
  5652. ))
  5653. characterMakers.push(() => makeCharacter(
  5654. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5655. {
  5656. front: {
  5657. height: math.unit(6, "feet"),
  5658. weight: math.unit(180, "lbs"),
  5659. name: "Front",
  5660. image: {
  5661. source: "./media/characters/guisetto/front.svg",
  5662. extra: 856 / 817,
  5663. bottom: 0.06
  5664. }
  5665. },
  5666. airborne: {
  5667. height: math.unit(6, "feet"),
  5668. weight: math.unit(180, "lbs"),
  5669. name: "Airborne",
  5670. image: {
  5671. source: "./media/characters/guisetto/airborne.svg",
  5672. extra: 584 / 525
  5673. }
  5674. },
  5675. },
  5676. [
  5677. {
  5678. name: "Normal",
  5679. height: math.unit(10 + 11 / 12, "feet"),
  5680. default: true
  5681. },
  5682. {
  5683. name: "Large",
  5684. height: math.unit(35, "feet")
  5685. },
  5686. {
  5687. name: "Macro",
  5688. height: math.unit(475, "feet")
  5689. },
  5690. ]
  5691. ))
  5692. characterMakers.push(() => makeCharacter(
  5693. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5694. {
  5695. front: {
  5696. height: math.unit(6, "feet"),
  5697. weight: math.unit(180, "lbs"),
  5698. name: "Front",
  5699. image: {
  5700. source: "./media/characters/luxor/front.svg",
  5701. extra: 2940 / 2152
  5702. }
  5703. },
  5704. back: {
  5705. height: math.unit(6, "feet"),
  5706. weight: math.unit(180, "lbs"),
  5707. name: "Back",
  5708. image: {
  5709. source: "./media/characters/luxor/back.svg",
  5710. extra: 1083 / 960
  5711. }
  5712. },
  5713. },
  5714. [
  5715. {
  5716. name: "Normal",
  5717. height: math.unit(5 + 5 / 6, "feet"),
  5718. default: true
  5719. },
  5720. {
  5721. name: "Lamp",
  5722. height: math.unit(50, "feet")
  5723. },
  5724. {
  5725. name: "Lämp",
  5726. height: math.unit(300, "feet")
  5727. },
  5728. {
  5729. name: "The sun is a lamp",
  5730. height: math.unit(250000, "miles")
  5731. },
  5732. ]
  5733. ))
  5734. characterMakers.push(() => makeCharacter(
  5735. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5736. {
  5737. front: {
  5738. height: math.unit(6, "feet"),
  5739. weight: math.unit(50, "lbs"),
  5740. name: "Front",
  5741. image: {
  5742. source: "./media/characters/huoyan/front.svg"
  5743. }
  5744. },
  5745. side: {
  5746. height: math.unit(6, "feet"),
  5747. weight: math.unit(180, "lbs"),
  5748. name: "Side",
  5749. image: {
  5750. source: "./media/characters/huoyan/side.svg"
  5751. }
  5752. },
  5753. },
  5754. [
  5755. {
  5756. name: "Chef",
  5757. height: math.unit(9, "feet")
  5758. },
  5759. {
  5760. name: "Normal",
  5761. height: math.unit(65, "feet"),
  5762. default: true
  5763. },
  5764. {
  5765. name: "Macro",
  5766. height: math.unit(780, "feet")
  5767. },
  5768. {
  5769. name: "Flaming Mountain",
  5770. height: math.unit(4.8, "miles")
  5771. },
  5772. {
  5773. name: "Celestial",
  5774. height: math.unit(765000, "miles")
  5775. },
  5776. ]
  5777. ))
  5778. characterMakers.push(() => makeCharacter(
  5779. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5780. {
  5781. front: {
  5782. height: math.unit(5 + 3 / 4, "feet"),
  5783. weight: math.unit(120, "lbs"),
  5784. name: "Front",
  5785. image: {
  5786. source: "./media/characters/tails/front.svg"
  5787. }
  5788. }
  5789. },
  5790. [
  5791. {
  5792. name: "Normal",
  5793. height: math.unit(5 + 3 / 4, "feet"),
  5794. default: true
  5795. }
  5796. ]
  5797. ))
  5798. characterMakers.push(() => makeCharacter(
  5799. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5800. {
  5801. front: {
  5802. height: math.unit(4, "feet"),
  5803. weight: math.unit(50, "lbs"),
  5804. name: "Front",
  5805. image: {
  5806. source: "./media/characters/rainy/front.svg"
  5807. }
  5808. }
  5809. },
  5810. [
  5811. {
  5812. name: "Macro",
  5813. height: math.unit(800, "feet"),
  5814. default: true
  5815. }
  5816. ]
  5817. ))
  5818. characterMakers.push(() => makeCharacter(
  5819. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5820. {
  5821. front: {
  5822. height: math.unit(6, "feet"),
  5823. weight: math.unit(150, "lbs"),
  5824. name: "Front",
  5825. image: {
  5826. source: "./media/characters/rainier/front.svg"
  5827. }
  5828. }
  5829. },
  5830. [
  5831. {
  5832. name: "Micro",
  5833. height: math.unit(2, "mm"),
  5834. default: true
  5835. }
  5836. ]
  5837. ))
  5838. characterMakers.push(() => makeCharacter(
  5839. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5840. {
  5841. front: {
  5842. height: math.unit(8 + 4/12, "feet"),
  5843. name: "Front",
  5844. image: {
  5845. source: "./media/characters/andy-renard/front.svg",
  5846. extra: 1839/1726,
  5847. bottom: 134/1973
  5848. }
  5849. },
  5850. back: {
  5851. height: math.unit(8 + 4/12, "feet"),
  5852. name: "Back",
  5853. image: {
  5854. source: "./media/characters/andy-renard/back.svg",
  5855. extra: 1838/1710,
  5856. bottom: 105/1943
  5857. }
  5858. },
  5859. },
  5860. [
  5861. {
  5862. name: "Tall",
  5863. height: math.unit(8 + 4/12, "feet")
  5864. },
  5865. {
  5866. name: "Mini Macro",
  5867. height: math.unit(15, "feet"),
  5868. default: true
  5869. },
  5870. {
  5871. name: "Macro",
  5872. height: math.unit(100, "feet")
  5873. },
  5874. {
  5875. name: "Mega Macro",
  5876. height: math.unit(1000, "feet")
  5877. },
  5878. {
  5879. name: "Giga Macro",
  5880. height: math.unit(10, "miles")
  5881. },
  5882. {
  5883. name: "God Macro",
  5884. height: math.unit(1, "multiverse")
  5885. },
  5886. ]
  5887. ))
  5888. characterMakers.push(() => makeCharacter(
  5889. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5890. {
  5891. front: {
  5892. height: math.unit(6, "feet"),
  5893. weight: math.unit(210, "lbs"),
  5894. name: "Front",
  5895. image: {
  5896. source: "./media/characters/cimmaron/front-sfw.svg",
  5897. extra: 701 / 676,
  5898. bottom: 0.046
  5899. }
  5900. },
  5901. back: {
  5902. height: math.unit(6, "feet"),
  5903. weight: math.unit(210, "lbs"),
  5904. name: "Back",
  5905. image: {
  5906. source: "./media/characters/cimmaron/back-sfw.svg",
  5907. extra: 701 / 676,
  5908. bottom: 0.046
  5909. }
  5910. },
  5911. frontNsfw: {
  5912. height: math.unit(6, "feet"),
  5913. weight: math.unit(210, "lbs"),
  5914. name: "Front (NSFW)",
  5915. image: {
  5916. source: "./media/characters/cimmaron/front-nsfw.svg",
  5917. extra: 701 / 676,
  5918. bottom: 0.046
  5919. }
  5920. },
  5921. backNsfw: {
  5922. height: math.unit(6, "feet"),
  5923. weight: math.unit(210, "lbs"),
  5924. name: "Back (NSFW)",
  5925. image: {
  5926. source: "./media/characters/cimmaron/back-nsfw.svg",
  5927. extra: 701 / 676,
  5928. bottom: 0.046
  5929. }
  5930. },
  5931. dick: {
  5932. height: math.unit(1.714, "feet"),
  5933. name: "Dick",
  5934. image: {
  5935. source: "./media/characters/cimmaron/dick.svg"
  5936. }
  5937. },
  5938. },
  5939. [
  5940. {
  5941. name: "Normal",
  5942. height: math.unit(6, "feet"),
  5943. default: true
  5944. },
  5945. {
  5946. name: "Macro Mayor",
  5947. height: math.unit(350, "meters")
  5948. },
  5949. ]
  5950. ))
  5951. characterMakers.push(() => makeCharacter(
  5952. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5953. {
  5954. front: {
  5955. height: math.unit(6, "feet"),
  5956. weight: math.unit(200, "lbs"),
  5957. name: "Front",
  5958. image: {
  5959. source: "./media/characters/akari/front.svg",
  5960. extra: 962 / 901,
  5961. bottom: 0.04
  5962. }
  5963. }
  5964. },
  5965. [
  5966. {
  5967. name: "Micro",
  5968. height: math.unit(5, "inches"),
  5969. default: true
  5970. },
  5971. {
  5972. name: "Normal",
  5973. height: math.unit(7, "feet")
  5974. },
  5975. ]
  5976. ))
  5977. characterMakers.push(() => makeCharacter(
  5978. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5979. {
  5980. front: {
  5981. height: math.unit(6, "feet"),
  5982. weight: math.unit(140, "lbs"),
  5983. name: "Front",
  5984. image: {
  5985. source: "./media/characters/cynosura/front.svg",
  5986. extra: 896 / 847
  5987. }
  5988. },
  5989. back: {
  5990. height: math.unit(6, "feet"),
  5991. weight: math.unit(140, "lbs"),
  5992. name: "Back",
  5993. image: {
  5994. source: "./media/characters/cynosura/back.svg",
  5995. extra: 1365 / 1250
  5996. }
  5997. },
  5998. },
  5999. [
  6000. {
  6001. name: "Micro",
  6002. height: math.unit(4, "inches")
  6003. },
  6004. {
  6005. name: "Normal",
  6006. height: math.unit(5.75, "feet"),
  6007. default: true
  6008. },
  6009. {
  6010. name: "Tall",
  6011. height: math.unit(10, "feet")
  6012. },
  6013. {
  6014. name: "Big",
  6015. height: math.unit(20, "feet")
  6016. },
  6017. {
  6018. name: "Macro",
  6019. height: math.unit(50, "feet")
  6020. },
  6021. ]
  6022. ))
  6023. characterMakers.push(() => makeCharacter(
  6024. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6025. {
  6026. front: {
  6027. height: math.unit(13 + 2/12, "feet"),
  6028. weight: math.unit(800, "kg"),
  6029. name: "Front",
  6030. image: {
  6031. source: "./media/characters/gin/front.svg",
  6032. extra: 1312/1191,
  6033. bottom: 45/1357
  6034. }
  6035. },
  6036. mouth: {
  6037. height: math.unit(2.39 * 1.8, "feet"),
  6038. name: "Mouth",
  6039. image: {
  6040. source: "./media/characters/gin/mouth.svg"
  6041. }
  6042. },
  6043. hand: {
  6044. height: math.unit(1.57 * 2.19, "feet"),
  6045. name: "Hand",
  6046. image: {
  6047. source: "./media/characters/gin/hand.svg"
  6048. }
  6049. },
  6050. foot: {
  6051. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6052. name: "Foot",
  6053. image: {
  6054. source: "./media/characters/gin/foot.svg"
  6055. }
  6056. },
  6057. sole: {
  6058. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6059. name: "Sole",
  6060. image: {
  6061. source: "./media/characters/gin/sole.svg"
  6062. }
  6063. },
  6064. },
  6065. [
  6066. {
  6067. name: "Very Small",
  6068. height: math.unit(13 + 2 / 12, "feet")
  6069. },
  6070. {
  6071. name: "Micro",
  6072. height: math.unit(600, "miles")
  6073. },
  6074. {
  6075. name: "Regular",
  6076. height: math.unit(20, "earths"),
  6077. default: true
  6078. },
  6079. {
  6080. name: "Macro",
  6081. height: math.unit(2.2, "solarradii")
  6082. },
  6083. {
  6084. name: "Teramacro",
  6085. height: math.unit(1.2, "galaxies")
  6086. },
  6087. {
  6088. name: "Omegamacro",
  6089. height: math.unit(200, "universes")
  6090. },
  6091. ]
  6092. ))
  6093. characterMakers.push(() => makeCharacter(
  6094. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6095. {
  6096. front: {
  6097. height: math.unit(6 + 1 / 6, "feet"),
  6098. weight: math.unit(178, "lbs"),
  6099. name: "Front",
  6100. image: {
  6101. source: "./media/characters/guy/front.svg"
  6102. }
  6103. }
  6104. },
  6105. [
  6106. {
  6107. name: "Normal",
  6108. height: math.unit(6 + 1 / 6, "feet"),
  6109. default: true
  6110. },
  6111. {
  6112. name: "Large",
  6113. height: math.unit(25 + 7 / 12, "feet")
  6114. },
  6115. {
  6116. name: "Macro",
  6117. height: math.unit(60 + 9 / 12, "feet")
  6118. },
  6119. {
  6120. name: "Macro+",
  6121. height: math.unit(246, "feet")
  6122. },
  6123. {
  6124. name: "Macro++",
  6125. height: math.unit(878, "feet")
  6126. }
  6127. ]
  6128. ))
  6129. characterMakers.push(() => makeCharacter(
  6130. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6131. {
  6132. front: {
  6133. height: math.unit(9, "feet"),
  6134. weight: math.unit(800, "lbs"),
  6135. name: "Front",
  6136. image: {
  6137. source: "./media/characters/tiberius/front.svg",
  6138. extra: 2295 / 2071
  6139. }
  6140. },
  6141. back: {
  6142. height: math.unit(9, "feet"),
  6143. weight: math.unit(800, "lbs"),
  6144. name: "Back",
  6145. image: {
  6146. source: "./media/characters/tiberius/back.svg",
  6147. extra: 2373 / 2160
  6148. }
  6149. },
  6150. },
  6151. [
  6152. {
  6153. name: "Normal",
  6154. height: math.unit(9, "feet"),
  6155. default: true
  6156. }
  6157. ]
  6158. ))
  6159. characterMakers.push(() => makeCharacter(
  6160. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6161. {
  6162. front: {
  6163. height: math.unit(6, "feet"),
  6164. weight: math.unit(600, "lbs"),
  6165. name: "Front",
  6166. image: {
  6167. source: "./media/characters/surgo/front.svg",
  6168. extra: 3591 / 2227
  6169. }
  6170. },
  6171. back: {
  6172. height: math.unit(6, "feet"),
  6173. weight: math.unit(600, "lbs"),
  6174. name: "Back",
  6175. image: {
  6176. source: "./media/characters/surgo/back.svg",
  6177. extra: 3557 / 2228
  6178. }
  6179. },
  6180. laying: {
  6181. height: math.unit(6 * 0.85, "feet"),
  6182. weight: math.unit(600, "lbs"),
  6183. name: "Laying",
  6184. image: {
  6185. source: "./media/characters/surgo/laying.svg"
  6186. }
  6187. },
  6188. },
  6189. [
  6190. {
  6191. name: "Normal",
  6192. height: math.unit(6, "feet"),
  6193. default: true
  6194. }
  6195. ]
  6196. ))
  6197. characterMakers.push(() => makeCharacter(
  6198. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6199. {
  6200. side: {
  6201. height: math.unit(6, "feet"),
  6202. weight: math.unit(150, "lbs"),
  6203. name: "Side",
  6204. image: {
  6205. source: "./media/characters/cibus/side.svg",
  6206. extra: 800 / 400
  6207. }
  6208. },
  6209. },
  6210. [
  6211. {
  6212. name: "Normal",
  6213. height: math.unit(6, "feet"),
  6214. default: true
  6215. }
  6216. ]
  6217. ))
  6218. characterMakers.push(() => makeCharacter(
  6219. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6220. {
  6221. front: {
  6222. height: math.unit(6, "feet"),
  6223. weight: math.unit(240, "lbs"),
  6224. name: "Front",
  6225. image: {
  6226. source: "./media/characters/nibbles/front.svg"
  6227. }
  6228. },
  6229. side: {
  6230. height: math.unit(6, "feet"),
  6231. weight: math.unit(240, "lbs"),
  6232. name: "Side",
  6233. image: {
  6234. source: "./media/characters/nibbles/side.svg"
  6235. }
  6236. },
  6237. },
  6238. [
  6239. {
  6240. name: "Normal",
  6241. height: math.unit(9, "feet"),
  6242. default: true
  6243. }
  6244. ]
  6245. ))
  6246. characterMakers.push(() => makeCharacter(
  6247. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6248. {
  6249. side: {
  6250. height: math.unit(5 + 1 / 6, "feet"),
  6251. weight: math.unit(130, "lbs"),
  6252. name: "Side",
  6253. image: {
  6254. source: "./media/characters/rikky/side.svg",
  6255. extra: 851 / 801
  6256. }
  6257. },
  6258. },
  6259. [
  6260. {
  6261. name: "Normal",
  6262. height: math.unit(5 + 1 / 6, "feet")
  6263. },
  6264. {
  6265. name: "Macro",
  6266. height: math.unit(152, "feet"),
  6267. default: true
  6268. },
  6269. {
  6270. name: "Megamacro",
  6271. height: math.unit(7, "miles")
  6272. }
  6273. ]
  6274. ))
  6275. characterMakers.push(() => makeCharacter(
  6276. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6277. {
  6278. side: {
  6279. height: math.unit(370, "cm"),
  6280. weight: math.unit(350, "lbs"),
  6281. name: "Side",
  6282. image: {
  6283. source: "./media/characters/malfressa/side.svg"
  6284. }
  6285. },
  6286. walking: {
  6287. height: math.unit(370, "cm"),
  6288. weight: math.unit(350, "lbs"),
  6289. name: "Walking",
  6290. image: {
  6291. source: "./media/characters/malfressa/walking.svg"
  6292. }
  6293. },
  6294. feral: {
  6295. height: math.unit(2500, "cm"),
  6296. weight: math.unit(100000, "lbs"),
  6297. name: "Feral",
  6298. image: {
  6299. source: "./media/characters/malfressa/feral.svg",
  6300. extra: 2108 / 837,
  6301. bottom: 0.02
  6302. }
  6303. },
  6304. },
  6305. [
  6306. {
  6307. name: "Normal",
  6308. height: math.unit(370, "cm")
  6309. },
  6310. {
  6311. name: "Macro",
  6312. height: math.unit(300, "meters"),
  6313. default: true
  6314. }
  6315. ]
  6316. ))
  6317. characterMakers.push(() => makeCharacter(
  6318. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6319. {
  6320. front: {
  6321. height: math.unit(6, "feet"),
  6322. weight: math.unit(60, "kg"),
  6323. name: "Front",
  6324. image: {
  6325. source: "./media/characters/jaro/front.svg"
  6326. }
  6327. },
  6328. back: {
  6329. height: math.unit(6, "feet"),
  6330. weight: math.unit(60, "kg"),
  6331. name: "Back",
  6332. image: {
  6333. source: "./media/characters/jaro/back.svg"
  6334. }
  6335. },
  6336. },
  6337. [
  6338. {
  6339. name: "Micro",
  6340. height: math.unit(7, "inches")
  6341. },
  6342. {
  6343. name: "Normal",
  6344. height: math.unit(5.5, "feet"),
  6345. default: true
  6346. },
  6347. {
  6348. name: "Minimacro",
  6349. height: math.unit(20, "feet")
  6350. },
  6351. {
  6352. name: "Macro",
  6353. height: math.unit(200, "meters")
  6354. }
  6355. ]
  6356. ))
  6357. characterMakers.push(() => makeCharacter(
  6358. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6359. {
  6360. front: {
  6361. height: math.unit(6, "feet"),
  6362. weight: math.unit(195, "lb"),
  6363. name: "Front",
  6364. image: {
  6365. source: "./media/characters/rogue/front.svg"
  6366. }
  6367. },
  6368. },
  6369. [
  6370. {
  6371. name: "Macro",
  6372. height: math.unit(90, "feet"),
  6373. default: true
  6374. },
  6375. ]
  6376. ))
  6377. characterMakers.push(() => makeCharacter(
  6378. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6379. {
  6380. front: {
  6381. height: math.unit(5 + 8 / 12, "feet"),
  6382. weight: math.unit(140, "lb"),
  6383. name: "Front",
  6384. image: {
  6385. source: "./media/characters/piper/front.svg",
  6386. extra: 3948/3655,
  6387. bottom: 0/3948
  6388. }
  6389. },
  6390. },
  6391. [
  6392. {
  6393. name: "Micro",
  6394. height: math.unit(2, "inches")
  6395. },
  6396. {
  6397. name: "Normal",
  6398. height: math.unit(5 + 8 / 12, "feet")
  6399. },
  6400. {
  6401. name: "Macro",
  6402. height: math.unit(250, "feet"),
  6403. default: true
  6404. },
  6405. {
  6406. name: "Megamacro",
  6407. height: math.unit(7, "miles")
  6408. },
  6409. ]
  6410. ))
  6411. characterMakers.push(() => makeCharacter(
  6412. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6413. {
  6414. front: {
  6415. height: math.unit(6, "feet"),
  6416. weight: math.unit(220, "lb"),
  6417. name: "Front",
  6418. image: {
  6419. source: "./media/characters/gemini/front.svg"
  6420. }
  6421. },
  6422. back: {
  6423. height: math.unit(6, "feet"),
  6424. weight: math.unit(220, "lb"),
  6425. name: "Back",
  6426. image: {
  6427. source: "./media/characters/gemini/back.svg"
  6428. }
  6429. },
  6430. kneeling: {
  6431. height: math.unit(6 / 1.5, "feet"),
  6432. weight: math.unit(220, "lb"),
  6433. name: "Kneeling",
  6434. image: {
  6435. source: "./media/characters/gemini/kneeling.svg",
  6436. bottom: 0.02
  6437. }
  6438. },
  6439. },
  6440. [
  6441. {
  6442. name: "Macro",
  6443. height: math.unit(300, "meters"),
  6444. default: true
  6445. },
  6446. {
  6447. name: "Megamacro",
  6448. height: math.unit(6900, "meters")
  6449. },
  6450. ]
  6451. ))
  6452. characterMakers.push(() => makeCharacter(
  6453. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6454. {
  6455. anthro: {
  6456. height: math.unit(2.35, "meters"),
  6457. weight: math.unit(73, "kg"),
  6458. name: "Anthro",
  6459. image: {
  6460. source: "./media/characters/alicia/anthro.svg",
  6461. extra: 2571 / 2385,
  6462. bottom: 75 / 2648
  6463. }
  6464. },
  6465. paw: {
  6466. height: math.unit(1.32, "feet"),
  6467. name: "Paw",
  6468. image: {
  6469. source: "./media/characters/alicia/paw.svg"
  6470. }
  6471. },
  6472. feral: {
  6473. height: math.unit(1.69, "meters"),
  6474. weight: math.unit(73, "kg"),
  6475. name: "Feral",
  6476. image: {
  6477. source: "./media/characters/alicia/feral.svg",
  6478. extra: 2123 / 1715,
  6479. bottom: 222 / 2349
  6480. }
  6481. },
  6482. },
  6483. [
  6484. {
  6485. name: "Normal",
  6486. height: math.unit(2.35, "meters")
  6487. },
  6488. {
  6489. name: "Macro",
  6490. height: math.unit(60, "meters"),
  6491. default: true
  6492. },
  6493. {
  6494. name: "Megamacro",
  6495. height: math.unit(10000, "kilometers")
  6496. },
  6497. ]
  6498. ))
  6499. characterMakers.push(() => makeCharacter(
  6500. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6501. {
  6502. front: {
  6503. height: math.unit(7, "feet"),
  6504. weight: math.unit(250, "lbs"),
  6505. name: "Front",
  6506. image: {
  6507. source: "./media/characters/archy/front.svg"
  6508. }
  6509. }
  6510. },
  6511. [
  6512. {
  6513. name: "Micro",
  6514. height: math.unit(1, "inch")
  6515. },
  6516. {
  6517. name: "Shorty",
  6518. height: math.unit(5, "feet")
  6519. },
  6520. {
  6521. name: "Normal",
  6522. height: math.unit(7, "feet")
  6523. },
  6524. {
  6525. name: "Macro",
  6526. height: math.unit(600, "meters"),
  6527. default: true
  6528. },
  6529. {
  6530. name: "Megamacro",
  6531. height: math.unit(1, "mile")
  6532. },
  6533. ]
  6534. ))
  6535. characterMakers.push(() => makeCharacter(
  6536. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6537. {
  6538. front: {
  6539. height: math.unit(1.65, "meters"),
  6540. weight: math.unit(74, "kg"),
  6541. name: "Front",
  6542. image: {
  6543. source: "./media/characters/berri/front.svg",
  6544. extra: 857 / 837,
  6545. bottom: 18 / 877
  6546. }
  6547. },
  6548. bum: {
  6549. height: math.unit(1.46, "feet"),
  6550. name: "Bum",
  6551. image: {
  6552. source: "./media/characters/berri/bum.svg"
  6553. }
  6554. },
  6555. mouth: {
  6556. height: math.unit(0.44, "feet"),
  6557. name: "Mouth",
  6558. image: {
  6559. source: "./media/characters/berri/mouth.svg"
  6560. }
  6561. },
  6562. paw: {
  6563. height: math.unit(0.826, "feet"),
  6564. name: "Paw",
  6565. image: {
  6566. source: "./media/characters/berri/paw.svg"
  6567. }
  6568. },
  6569. },
  6570. [
  6571. {
  6572. name: "Normal",
  6573. height: math.unit(1.65, "meters")
  6574. },
  6575. {
  6576. name: "Macro",
  6577. height: math.unit(60, "m"),
  6578. default: true
  6579. },
  6580. {
  6581. name: "Megamacro",
  6582. height: math.unit(9.213, "km")
  6583. },
  6584. {
  6585. name: "Planet Eater",
  6586. height: math.unit(489, "megameters")
  6587. },
  6588. {
  6589. name: "Teramacro",
  6590. height: math.unit(2471635000000, "meters")
  6591. },
  6592. {
  6593. name: "Examacro",
  6594. height: math.unit(8.0624e+26, "meters")
  6595. }
  6596. ]
  6597. ))
  6598. characterMakers.push(() => makeCharacter(
  6599. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6600. {
  6601. front: {
  6602. height: math.unit(1.72, "meters"),
  6603. weight: math.unit(68, "kg"),
  6604. name: "Front",
  6605. image: {
  6606. source: "./media/characters/lexi/front.svg"
  6607. }
  6608. }
  6609. },
  6610. [
  6611. {
  6612. name: "Very Smol",
  6613. height: math.unit(10, "mm")
  6614. },
  6615. {
  6616. name: "Micro",
  6617. height: math.unit(6.8, "cm"),
  6618. default: true
  6619. },
  6620. {
  6621. name: "Normal",
  6622. height: math.unit(1.72, "m")
  6623. }
  6624. ]
  6625. ))
  6626. characterMakers.push(() => makeCharacter(
  6627. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6628. {
  6629. front: {
  6630. height: math.unit(1.69, "meters"),
  6631. weight: math.unit(68, "kg"),
  6632. name: "Front",
  6633. image: {
  6634. source: "./media/characters/martin/front.svg",
  6635. extra: 596 / 581
  6636. }
  6637. }
  6638. },
  6639. [
  6640. {
  6641. name: "Micro",
  6642. height: math.unit(6.85, "cm"),
  6643. default: true
  6644. },
  6645. {
  6646. name: "Normal",
  6647. height: math.unit(1.69, "m")
  6648. }
  6649. ]
  6650. ))
  6651. characterMakers.push(() => makeCharacter(
  6652. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6653. {
  6654. front: {
  6655. height: math.unit(1.69, "meters"),
  6656. weight: math.unit(68, "kg"),
  6657. name: "Front",
  6658. image: {
  6659. source: "./media/characters/juno/front.svg"
  6660. }
  6661. }
  6662. },
  6663. [
  6664. {
  6665. name: "Micro",
  6666. height: math.unit(7, "cm")
  6667. },
  6668. {
  6669. name: "Normal",
  6670. height: math.unit(1.89, "m")
  6671. },
  6672. {
  6673. name: "Macro",
  6674. height: math.unit(353, "meters"),
  6675. default: true
  6676. }
  6677. ]
  6678. ))
  6679. characterMakers.push(() => makeCharacter(
  6680. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6681. {
  6682. front: {
  6683. height: math.unit(1.93, "meters"),
  6684. weight: math.unit(83, "kg"),
  6685. name: "Front",
  6686. image: {
  6687. source: "./media/characters/samantha/front.svg"
  6688. }
  6689. },
  6690. frontClothed: {
  6691. height: math.unit(1.93, "meters"),
  6692. weight: math.unit(83, "kg"),
  6693. name: "Front (Clothed)",
  6694. image: {
  6695. source: "./media/characters/samantha/front-clothed.svg"
  6696. }
  6697. },
  6698. back: {
  6699. height: math.unit(1.93, "meters"),
  6700. weight: math.unit(83, "kg"),
  6701. name: "Back",
  6702. image: {
  6703. source: "./media/characters/samantha/back.svg"
  6704. }
  6705. },
  6706. },
  6707. [
  6708. {
  6709. name: "Normal",
  6710. height: math.unit(1.93, "m")
  6711. },
  6712. {
  6713. name: "Macro",
  6714. height: math.unit(74, "meters"),
  6715. default: true
  6716. },
  6717. {
  6718. name: "Macro+",
  6719. height: math.unit(223, "meters"),
  6720. },
  6721. {
  6722. name: "Megamacro",
  6723. height: math.unit(8381, "meters"),
  6724. },
  6725. {
  6726. name: "Megamacro+",
  6727. height: math.unit(12000, "kilometers")
  6728. },
  6729. ]
  6730. ))
  6731. characterMakers.push(() => makeCharacter(
  6732. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6733. {
  6734. front: {
  6735. height: math.unit(1.92, "meters"),
  6736. weight: math.unit(80, "kg"),
  6737. name: "Front",
  6738. image: {
  6739. source: "./media/characters/dr-clay/front.svg"
  6740. }
  6741. },
  6742. frontClothed: {
  6743. height: math.unit(1.92, "meters"),
  6744. weight: math.unit(80, "kg"),
  6745. name: "Front (Clothed)",
  6746. image: {
  6747. source: "./media/characters/dr-clay/front-clothed.svg"
  6748. }
  6749. }
  6750. },
  6751. [
  6752. {
  6753. name: "Normal",
  6754. height: math.unit(1.92, "m")
  6755. },
  6756. {
  6757. name: "Macro",
  6758. height: math.unit(214, "meters"),
  6759. default: true
  6760. },
  6761. {
  6762. name: "Macro+",
  6763. height: math.unit(12.237, "meters"),
  6764. },
  6765. {
  6766. name: "Megamacro",
  6767. height: math.unit(557, "megameters"),
  6768. },
  6769. {
  6770. name: "Unimaginable",
  6771. height: math.unit(120e9, "lightyears")
  6772. },
  6773. ]
  6774. ))
  6775. characterMakers.push(() => makeCharacter(
  6776. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6777. {
  6778. front: {
  6779. height: math.unit(2, "meters"),
  6780. weight: math.unit(80, "kg"),
  6781. name: "Front",
  6782. image: {
  6783. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6784. }
  6785. }
  6786. },
  6787. [
  6788. {
  6789. name: "Teramacro",
  6790. height: math.unit(500000, "lightyears"),
  6791. default: true
  6792. },
  6793. ]
  6794. ))
  6795. characterMakers.push(() => makeCharacter(
  6796. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6797. {
  6798. crux: {
  6799. height: math.unit(2, "meters"),
  6800. weight: math.unit(150, "kg"),
  6801. name: "Crux",
  6802. image: {
  6803. source: "./media/characters/vemus/crux.svg",
  6804. extra: 1074/936,
  6805. bottom: 23/1097
  6806. }
  6807. },
  6808. skunkTanuki: {
  6809. height: math.unit(2, "meters"),
  6810. weight: math.unit(150, "kg"),
  6811. name: "Skunk-Tanuki",
  6812. image: {
  6813. source: "./media/characters/vemus/skunk-tanuki.svg",
  6814. extra: 926/893,
  6815. bottom: 20/946
  6816. }
  6817. },
  6818. },
  6819. [
  6820. {
  6821. name: "Normal",
  6822. height: math.unit(3.75, "meters"),
  6823. default: true
  6824. },
  6825. {
  6826. name: "Big",
  6827. height: math.unit(8, "meters")
  6828. },
  6829. {
  6830. name: "Macro",
  6831. height: math.unit(100, "meters")
  6832. },
  6833. {
  6834. name: "Macro+",
  6835. height: math.unit(1500, "meters")
  6836. },
  6837. {
  6838. name: "Stellar",
  6839. height: math.unit(14e8, "meters")
  6840. },
  6841. ]
  6842. ))
  6843. characterMakers.push(() => makeCharacter(
  6844. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6845. {
  6846. front: {
  6847. height: math.unit(2, "meters"),
  6848. weight: math.unit(70, "kg"),
  6849. name: "Front",
  6850. image: {
  6851. source: "./media/characters/beherit/front.svg",
  6852. extra: 1408 / 1242
  6853. }
  6854. }
  6855. },
  6856. [
  6857. {
  6858. name: "Normal",
  6859. height: math.unit(6, "feet")
  6860. },
  6861. {
  6862. name: "Lorg",
  6863. height: math.unit(25, "feet"),
  6864. default: true
  6865. },
  6866. {
  6867. name: "Lorger",
  6868. height: math.unit(75, "feet")
  6869. },
  6870. {
  6871. name: "Macro",
  6872. height: math.unit(200, "meters")
  6873. },
  6874. ]
  6875. ))
  6876. characterMakers.push(() => makeCharacter(
  6877. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6878. {
  6879. front: {
  6880. height: math.unit(2, "meters"),
  6881. weight: math.unit(150, "kg"),
  6882. name: "Front",
  6883. image: {
  6884. source: "./media/characters/everett/front.svg",
  6885. extra: 2038 / 1737,
  6886. bottom: 0.03
  6887. }
  6888. },
  6889. paw: {
  6890. height: math.unit(2 / 3.6, "meters"),
  6891. name: "Paw",
  6892. image: {
  6893. source: "./media/characters/everett/paw.svg"
  6894. }
  6895. },
  6896. },
  6897. [
  6898. {
  6899. name: "Normal",
  6900. height: math.unit(15, "feet"),
  6901. default: true
  6902. },
  6903. {
  6904. name: "Lorg",
  6905. height: math.unit(70, "feet"),
  6906. default: true
  6907. },
  6908. {
  6909. name: "Lorger",
  6910. height: math.unit(250, "feet")
  6911. },
  6912. {
  6913. name: "Macro",
  6914. height: math.unit(500, "meters")
  6915. },
  6916. ]
  6917. ))
  6918. characterMakers.push(() => makeCharacter(
  6919. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6920. {
  6921. front: {
  6922. height: math.unit(2, "meters"),
  6923. weight: math.unit(86, "kg"),
  6924. name: "Front",
  6925. image: {
  6926. source: "./media/characters/rose/front.svg",
  6927. extra: 1785/1636,
  6928. bottom: 30/1815
  6929. }
  6930. },
  6931. frontSporty: {
  6932. height: math.unit(2, "meters"),
  6933. weight: math.unit(86, "kg"),
  6934. name: "Front (Sporty)",
  6935. image: {
  6936. source: "./media/characters/rose/front-sporty.svg",
  6937. extra: 350/335,
  6938. bottom: 10/360
  6939. }
  6940. },
  6941. frontAlt: {
  6942. height: math.unit(1.6, "meters"),
  6943. weight: math.unit(86, "kg"),
  6944. name: "Front (Alt)",
  6945. image: {
  6946. source: "./media/characters/rose/front-alt.svg",
  6947. extra: 299/283,
  6948. bottom: 3/302
  6949. }
  6950. },
  6951. plush: {
  6952. height: math.unit(2, "meters"),
  6953. weight: math.unit(86/3, "kg"),
  6954. name: "Plush",
  6955. image: {
  6956. source: "./media/characters/rose/plush.svg",
  6957. extra: 361/337,
  6958. bottom: 11/372
  6959. }
  6960. },
  6961. },
  6962. [
  6963. {
  6964. name: "True Micro",
  6965. height: math.unit(9, "cm")
  6966. },
  6967. {
  6968. name: "Micro",
  6969. height: math.unit(16, "cm")
  6970. },
  6971. {
  6972. name: "Normal",
  6973. height: math.unit(1.85, "meters"),
  6974. default: true
  6975. },
  6976. {
  6977. name: "Mini-Macro",
  6978. height: math.unit(5, "meters")
  6979. },
  6980. {
  6981. name: "Macro",
  6982. height: math.unit(15, "meters")
  6983. },
  6984. {
  6985. name: "True Macro",
  6986. height: math.unit(40, "meters")
  6987. },
  6988. {
  6989. name: "City Scale",
  6990. height: math.unit(1, "km")
  6991. },
  6992. ]
  6993. ))
  6994. characterMakers.push(() => makeCharacter(
  6995. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6996. {
  6997. front: {
  6998. height: math.unit(2, "meters"),
  6999. weight: math.unit(350, "lbs"),
  7000. name: "Front",
  7001. image: {
  7002. source: "./media/characters/regal/front.svg"
  7003. }
  7004. },
  7005. back: {
  7006. height: math.unit(2, "meters"),
  7007. weight: math.unit(350, "lbs"),
  7008. name: "Back",
  7009. image: {
  7010. source: "./media/characters/regal/back.svg"
  7011. }
  7012. },
  7013. },
  7014. [
  7015. {
  7016. name: "Macro",
  7017. height: math.unit(350, "feet"),
  7018. default: true
  7019. }
  7020. ]
  7021. ))
  7022. characterMakers.push(() => makeCharacter(
  7023. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7024. {
  7025. front: {
  7026. height: math.unit(4 + 11 / 12, "feet"),
  7027. weight: math.unit(100, "lbs"),
  7028. name: "Front",
  7029. image: {
  7030. source: "./media/characters/opal/front.svg"
  7031. }
  7032. },
  7033. frontAlt: {
  7034. height: math.unit(4 + 11 / 12, "feet"),
  7035. weight: math.unit(100, "lbs"),
  7036. name: "Front (Alt)",
  7037. image: {
  7038. source: "./media/characters/opal/front-alt.svg"
  7039. }
  7040. },
  7041. },
  7042. [
  7043. {
  7044. name: "Small",
  7045. height: math.unit(4 + 11 / 12, "feet")
  7046. },
  7047. {
  7048. name: "Normal",
  7049. height: math.unit(20, "feet"),
  7050. default: true
  7051. },
  7052. {
  7053. name: "Macro",
  7054. height: math.unit(120, "feet")
  7055. },
  7056. {
  7057. name: "Megamacro",
  7058. height: math.unit(80, "miles")
  7059. },
  7060. {
  7061. name: "True Size",
  7062. height: math.unit(100000, "lightyears")
  7063. },
  7064. ]
  7065. ))
  7066. characterMakers.push(() => makeCharacter(
  7067. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7068. {
  7069. front: {
  7070. height: math.unit(6, "feet"),
  7071. weight: math.unit(200, "lbs"),
  7072. name: "Front",
  7073. image: {
  7074. source: "./media/characters/vector-wuff/front.svg"
  7075. }
  7076. }
  7077. },
  7078. [
  7079. {
  7080. name: "Normal",
  7081. height: math.unit(2.8, "meters")
  7082. },
  7083. {
  7084. name: "Macro",
  7085. height: math.unit(450, "meters"),
  7086. default: true
  7087. },
  7088. {
  7089. name: "Megamacro",
  7090. height: math.unit(15, "kilometers")
  7091. }
  7092. ]
  7093. ))
  7094. characterMakers.push(() => makeCharacter(
  7095. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7096. {
  7097. front: {
  7098. height: math.unit(6, "feet"),
  7099. weight: math.unit(256, "lbs"),
  7100. name: "Front",
  7101. image: {
  7102. source: "./media/characters/dannik/front.svg"
  7103. }
  7104. }
  7105. },
  7106. [
  7107. {
  7108. name: "Macro",
  7109. height: math.unit(69.57, "meters"),
  7110. default: true
  7111. },
  7112. ]
  7113. ))
  7114. characterMakers.push(() => makeCharacter(
  7115. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7116. {
  7117. front: {
  7118. height: math.unit(6, "feet"),
  7119. weight: math.unit(120, "lbs"),
  7120. name: "Front",
  7121. image: {
  7122. source: "./media/characters/azura-saharah/front.svg"
  7123. }
  7124. },
  7125. back: {
  7126. height: math.unit(6, "feet"),
  7127. weight: math.unit(120, "lbs"),
  7128. name: "Back",
  7129. image: {
  7130. source: "./media/characters/azura-saharah/back.svg"
  7131. }
  7132. },
  7133. },
  7134. [
  7135. {
  7136. name: "Macro",
  7137. height: math.unit(100, "feet"),
  7138. default: true
  7139. },
  7140. ]
  7141. ))
  7142. characterMakers.push(() => makeCharacter(
  7143. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7144. {
  7145. side: {
  7146. height: math.unit(5 + 4 / 12, "feet"),
  7147. weight: math.unit(163, "lbs"),
  7148. name: "Side",
  7149. image: {
  7150. source: "./media/characters/kennedy/side.svg"
  7151. }
  7152. }
  7153. },
  7154. [
  7155. {
  7156. name: "Standard Doggo",
  7157. height: math.unit(5 + 4 / 12, "feet")
  7158. },
  7159. {
  7160. name: "Big Doggo",
  7161. height: math.unit(25 + 3 / 12, "feet"),
  7162. default: true
  7163. },
  7164. ]
  7165. ))
  7166. characterMakers.push(() => makeCharacter(
  7167. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7168. {
  7169. front: {
  7170. height: math.unit(5 + 5/12, "feet"),
  7171. weight: math.unit(100, "lbs"),
  7172. name: "Front",
  7173. image: {
  7174. source: "./media/characters/odios-de-lunar/front.svg",
  7175. extra: 1468/1323,
  7176. bottom: 22/1490
  7177. }
  7178. }
  7179. },
  7180. [
  7181. {
  7182. name: "Micro",
  7183. height: math.unit(3, "inches")
  7184. },
  7185. {
  7186. name: "Normal",
  7187. height: math.unit(5.5, "feet"),
  7188. default: true
  7189. },
  7190. {
  7191. name: "Macro",
  7192. height: math.unit(100, "feet")
  7193. },
  7194. ]
  7195. ))
  7196. characterMakers.push(() => makeCharacter(
  7197. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7198. {
  7199. back: {
  7200. height: math.unit(6, "feet"),
  7201. weight: math.unit(220, "lbs"),
  7202. name: "Back",
  7203. image: {
  7204. source: "./media/characters/mandake/back.svg"
  7205. }
  7206. }
  7207. },
  7208. [
  7209. {
  7210. name: "Normal",
  7211. height: math.unit(7, "feet"),
  7212. default: true
  7213. },
  7214. {
  7215. name: "Macro",
  7216. height: math.unit(78, "feet")
  7217. },
  7218. {
  7219. name: "Macro+",
  7220. height: math.unit(300, "meters")
  7221. },
  7222. {
  7223. name: "Macro++",
  7224. height: math.unit(2400, "feet")
  7225. },
  7226. {
  7227. name: "Megamacro",
  7228. height: math.unit(5167, "meters")
  7229. },
  7230. {
  7231. name: "Gigamacro",
  7232. height: math.unit(41769, "miles")
  7233. },
  7234. ]
  7235. ))
  7236. characterMakers.push(() => makeCharacter(
  7237. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7238. {
  7239. front: {
  7240. height: math.unit(6, "feet"),
  7241. weight: math.unit(120, "lbs"),
  7242. name: "Front",
  7243. image: {
  7244. source: "./media/characters/yozey/front.svg"
  7245. }
  7246. },
  7247. frontAlt: {
  7248. height: math.unit(6, "feet"),
  7249. weight: math.unit(120, "lbs"),
  7250. name: "Front (Alt)",
  7251. image: {
  7252. source: "./media/characters/yozey/front-alt.svg"
  7253. }
  7254. },
  7255. side: {
  7256. height: math.unit(6, "feet"),
  7257. weight: math.unit(120, "lbs"),
  7258. name: "Side",
  7259. image: {
  7260. source: "./media/characters/yozey/side.svg"
  7261. }
  7262. },
  7263. },
  7264. [
  7265. {
  7266. name: "Micro",
  7267. height: math.unit(3, "inches"),
  7268. default: true
  7269. },
  7270. {
  7271. name: "Normal",
  7272. height: math.unit(6, "feet")
  7273. }
  7274. ]
  7275. ))
  7276. characterMakers.push(() => makeCharacter(
  7277. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7278. {
  7279. front: {
  7280. height: math.unit(6, "feet"),
  7281. weight: math.unit(103, "lbs"),
  7282. name: "Front",
  7283. image: {
  7284. source: "./media/characters/valeska-voss/front.svg"
  7285. }
  7286. }
  7287. },
  7288. [
  7289. {
  7290. name: "Mini-Sized Sub",
  7291. height: math.unit(3.1, "inches")
  7292. },
  7293. {
  7294. name: "Mid-Sized Sub",
  7295. height: math.unit(6.2, "inches")
  7296. },
  7297. {
  7298. name: "Full-Sized Sub",
  7299. height: math.unit(9.3, "inches")
  7300. },
  7301. {
  7302. name: "Normal",
  7303. height: math.unit(5 + 2 / 12, "foot"),
  7304. default: true
  7305. },
  7306. ]
  7307. ))
  7308. characterMakers.push(() => makeCharacter(
  7309. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7310. {
  7311. front: {
  7312. height: math.unit(6, "feet"),
  7313. weight: math.unit(160, "lbs"),
  7314. name: "Front",
  7315. image: {
  7316. source: "./media/characters/gene-zeta/front.svg",
  7317. extra: 3006 / 2826,
  7318. bottom: 182 / 3188
  7319. }
  7320. }
  7321. },
  7322. [
  7323. {
  7324. name: "Micro",
  7325. height: math.unit(6, "inches")
  7326. },
  7327. {
  7328. name: "Normal",
  7329. height: math.unit(5 + 11 / 12, "foot"),
  7330. default: true
  7331. },
  7332. {
  7333. name: "Macro",
  7334. height: math.unit(140, "feet")
  7335. },
  7336. {
  7337. name: "Supercharged",
  7338. height: math.unit(2500, "feet")
  7339. },
  7340. ]
  7341. ))
  7342. characterMakers.push(() => makeCharacter(
  7343. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7344. {
  7345. front: {
  7346. height: math.unit(6, "feet"),
  7347. weight: math.unit(350, "lbs"),
  7348. name: "Front",
  7349. image: {
  7350. source: "./media/characters/razinox/front.svg",
  7351. extra: 1686 / 1548,
  7352. bottom: 28.2 / 1868
  7353. }
  7354. },
  7355. back: {
  7356. height: math.unit(6, "feet"),
  7357. weight: math.unit(350, "lbs"),
  7358. name: "Back",
  7359. image: {
  7360. source: "./media/characters/razinox/back.svg",
  7361. extra: 1660 / 1590,
  7362. bottom: 15 / 1665
  7363. }
  7364. },
  7365. },
  7366. [
  7367. {
  7368. name: "Normal",
  7369. height: math.unit(10 + 8 / 12, "foot")
  7370. },
  7371. {
  7372. name: "Minimacro",
  7373. height: math.unit(15, "foot")
  7374. },
  7375. {
  7376. name: "Macro",
  7377. height: math.unit(60, "foot"),
  7378. default: true
  7379. },
  7380. {
  7381. name: "Megamacro",
  7382. height: math.unit(5, "miles")
  7383. },
  7384. {
  7385. name: "Gigamacro",
  7386. height: math.unit(6000, "miles")
  7387. },
  7388. ]
  7389. ))
  7390. characterMakers.push(() => makeCharacter(
  7391. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7392. {
  7393. front: {
  7394. height: math.unit(6, "feet"),
  7395. weight: math.unit(150, "lbs"),
  7396. name: "Front",
  7397. image: {
  7398. source: "./media/characters/cobalt/front.svg"
  7399. }
  7400. }
  7401. },
  7402. [
  7403. {
  7404. name: "Normal",
  7405. height: math.unit(8 + 1 / 12, "foot")
  7406. },
  7407. {
  7408. name: "Macro",
  7409. height: math.unit(111, "foot"),
  7410. default: true
  7411. },
  7412. {
  7413. name: "Supracosmic",
  7414. height: math.unit(1e42, "feet")
  7415. },
  7416. ]
  7417. ))
  7418. characterMakers.push(() => makeCharacter(
  7419. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7420. {
  7421. front: {
  7422. height: math.unit(6, "feet"),
  7423. weight: math.unit(140, "lbs"),
  7424. name: "Front",
  7425. image: {
  7426. source: "./media/characters/amanda/front.svg"
  7427. }
  7428. }
  7429. },
  7430. [
  7431. {
  7432. name: "Micro",
  7433. height: math.unit(5, "inches"),
  7434. default: true
  7435. },
  7436. ]
  7437. ))
  7438. characterMakers.push(() => makeCharacter(
  7439. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7440. {
  7441. front: {
  7442. height: math.unit(2.75, "meters"),
  7443. weight: math.unit(1200, "lb"),
  7444. name: "Front",
  7445. image: {
  7446. source: "./media/characters/teal/front.svg",
  7447. extra: 2463 / 2320,
  7448. bottom: 166 / 2629
  7449. }
  7450. },
  7451. back: {
  7452. height: math.unit(2.75, "meters"),
  7453. weight: math.unit(1200, "lb"),
  7454. name: "Back",
  7455. image: {
  7456. source: "./media/characters/teal/back.svg",
  7457. extra: 2580 / 2489,
  7458. bottom: 151 / 2731
  7459. }
  7460. },
  7461. sitting: {
  7462. height: math.unit(1.9, "meters"),
  7463. weight: math.unit(1200, "lb"),
  7464. name: "Sitting",
  7465. image: {
  7466. source: "./media/characters/teal/sitting.svg",
  7467. extra: 623 / 590,
  7468. bottom: 121 / 744
  7469. }
  7470. },
  7471. standing: {
  7472. height: math.unit(2.75, "meters"),
  7473. weight: math.unit(1200, "lb"),
  7474. name: "Standing",
  7475. image: {
  7476. source: "./media/characters/teal/standing.svg",
  7477. extra: 923 / 893,
  7478. bottom: 60 / 983
  7479. }
  7480. },
  7481. stretching: {
  7482. height: math.unit(3.65, "meters"),
  7483. weight: math.unit(1200, "lb"),
  7484. name: "Stretching",
  7485. image: {
  7486. source: "./media/characters/teal/stretching.svg",
  7487. extra: 1276 / 1244,
  7488. bottom: 0 / 1276
  7489. }
  7490. },
  7491. legged: {
  7492. height: math.unit(1.3, "meters"),
  7493. weight: math.unit(100, "lb"),
  7494. name: "Legged",
  7495. image: {
  7496. source: "./media/characters/teal/legged.svg",
  7497. extra: 462 / 437,
  7498. bottom: 24 / 486
  7499. }
  7500. },
  7501. naga: {
  7502. height: math.unit(5.4, "meters"),
  7503. weight: math.unit(4000, "lb"),
  7504. name: "Naga",
  7505. image: {
  7506. source: "./media/characters/teal/naga.svg",
  7507. extra: 1902 / 1858,
  7508. bottom: 0 / 1902
  7509. }
  7510. },
  7511. hand: {
  7512. height: math.unit(0.52, "meters"),
  7513. name: "Hand",
  7514. image: {
  7515. source: "./media/characters/teal/hand.svg"
  7516. }
  7517. },
  7518. maw: {
  7519. height: math.unit(0.43, "meters"),
  7520. name: "Maw",
  7521. image: {
  7522. source: "./media/characters/teal/maw.svg"
  7523. }
  7524. },
  7525. slit: {
  7526. height: math.unit(0.25, "meters"),
  7527. name: "Slit",
  7528. image: {
  7529. source: "./media/characters/teal/slit.svg"
  7530. }
  7531. },
  7532. },
  7533. [
  7534. {
  7535. name: "Normal",
  7536. height: math.unit(2.75, "meters"),
  7537. default: true
  7538. },
  7539. {
  7540. name: "Macro",
  7541. height: math.unit(300, "feet")
  7542. },
  7543. {
  7544. name: "Macro+",
  7545. height: math.unit(2000, "feet")
  7546. },
  7547. ]
  7548. ))
  7549. characterMakers.push(() => makeCharacter(
  7550. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7551. {
  7552. frontCat: {
  7553. height: math.unit(6, "feet"),
  7554. weight: math.unit(180, "lbs"),
  7555. name: "Front (Cat)",
  7556. image: {
  7557. source: "./media/characters/ravin-amulet/front-cat.svg"
  7558. }
  7559. },
  7560. frontCatAlt: {
  7561. height: math.unit(6, "feet"),
  7562. weight: math.unit(180, "lbs"),
  7563. name: "Front (Alt, Cat)",
  7564. image: {
  7565. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7566. }
  7567. },
  7568. frontWerewolf: {
  7569. height: math.unit(6 * 1.2, "feet"),
  7570. weight: math.unit(225, "lbs"),
  7571. name: "Front (Werewolf)",
  7572. image: {
  7573. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7574. }
  7575. },
  7576. backWerewolf: {
  7577. height: math.unit(6 * 1.2, "feet"),
  7578. weight: math.unit(225, "lbs"),
  7579. name: "Back (Werewolf)",
  7580. image: {
  7581. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7582. }
  7583. },
  7584. },
  7585. [
  7586. {
  7587. name: "Nano",
  7588. height: math.unit(1, "micrometer")
  7589. },
  7590. {
  7591. name: "Micro",
  7592. height: math.unit(1, "inch")
  7593. },
  7594. {
  7595. name: "Normal",
  7596. height: math.unit(6, "feet"),
  7597. default: true
  7598. },
  7599. {
  7600. name: "Macro",
  7601. height: math.unit(60, "feet")
  7602. }
  7603. ]
  7604. ))
  7605. characterMakers.push(() => makeCharacter(
  7606. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7607. {
  7608. front: {
  7609. height: math.unit(6, "feet"),
  7610. weight: math.unit(165, "lbs"),
  7611. name: "Front",
  7612. image: {
  7613. source: "./media/characters/fluoresce/front.svg"
  7614. }
  7615. }
  7616. },
  7617. [
  7618. {
  7619. name: "Micro",
  7620. height: math.unit(6, "cm")
  7621. },
  7622. {
  7623. name: "Normal",
  7624. height: math.unit(5 + 7 / 12, "feet"),
  7625. default: true
  7626. },
  7627. {
  7628. name: "Macro",
  7629. height: math.unit(56, "feet")
  7630. },
  7631. {
  7632. name: "Megamacro",
  7633. height: math.unit(1.9, "miles")
  7634. },
  7635. ]
  7636. ))
  7637. characterMakers.push(() => makeCharacter(
  7638. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7639. {
  7640. front: {
  7641. height: math.unit(9 + 6 / 12, "feet"),
  7642. weight: math.unit(523, "lbs"),
  7643. name: "Side",
  7644. image: {
  7645. source: "./media/characters/aurora/side.svg"
  7646. }
  7647. }
  7648. },
  7649. [
  7650. {
  7651. name: "Normal",
  7652. height: math.unit(9 + 6 / 12, "feet")
  7653. },
  7654. {
  7655. name: "Macro",
  7656. height: math.unit(96, "feet"),
  7657. default: true
  7658. },
  7659. {
  7660. name: "Macro+",
  7661. height: math.unit(243, "feet")
  7662. },
  7663. ]
  7664. ))
  7665. characterMakers.push(() => makeCharacter(
  7666. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7667. {
  7668. front: {
  7669. height: math.unit(194, "cm"),
  7670. weight: math.unit(90, "kg"),
  7671. name: "Front",
  7672. image: {
  7673. source: "./media/characters/ranek/front.svg"
  7674. }
  7675. },
  7676. side: {
  7677. height: math.unit(194, "cm"),
  7678. weight: math.unit(90, "kg"),
  7679. name: "Side",
  7680. image: {
  7681. source: "./media/characters/ranek/side.svg"
  7682. }
  7683. },
  7684. back: {
  7685. height: math.unit(194, "cm"),
  7686. weight: math.unit(90, "kg"),
  7687. name: "Back",
  7688. image: {
  7689. source: "./media/characters/ranek/back.svg"
  7690. }
  7691. },
  7692. feral: {
  7693. height: math.unit(30, "cm"),
  7694. weight: math.unit(1.6, "lbs"),
  7695. name: "Feral",
  7696. image: {
  7697. source: "./media/characters/ranek/feral.svg"
  7698. }
  7699. },
  7700. },
  7701. [
  7702. {
  7703. name: "Normal",
  7704. height: math.unit(194, "cm"),
  7705. default: true
  7706. },
  7707. {
  7708. name: "Macro",
  7709. height: math.unit(100, "meters")
  7710. },
  7711. ]
  7712. ))
  7713. characterMakers.push(() => makeCharacter(
  7714. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7715. {
  7716. front: {
  7717. height: math.unit(5 + 6 / 12, "feet"),
  7718. weight: math.unit(153, "lbs"),
  7719. name: "Front",
  7720. image: {
  7721. source: "./media/characters/andrew-cooper/front.svg"
  7722. }
  7723. },
  7724. },
  7725. [
  7726. {
  7727. name: "Nano",
  7728. height: math.unit(1, "mm")
  7729. },
  7730. {
  7731. name: "Micro",
  7732. height: math.unit(2, "inches")
  7733. },
  7734. {
  7735. name: "Normal",
  7736. height: math.unit(5 + 6 / 12, "feet"),
  7737. default: true
  7738. }
  7739. ]
  7740. ))
  7741. characterMakers.push(() => makeCharacter(
  7742. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7743. {
  7744. front: {
  7745. height: math.unit(6, "feet"),
  7746. weight: math.unit(180, "lbs"),
  7747. name: "Front",
  7748. image: {
  7749. source: "./media/characters/akane-sato/front.svg",
  7750. extra: 1219 / 1140
  7751. }
  7752. },
  7753. back: {
  7754. height: math.unit(6, "feet"),
  7755. weight: math.unit(180, "lbs"),
  7756. name: "Back",
  7757. image: {
  7758. source: "./media/characters/akane-sato/back.svg",
  7759. extra: 1219 / 1170
  7760. }
  7761. },
  7762. },
  7763. [
  7764. {
  7765. name: "Normal",
  7766. height: math.unit(2.5, "meters")
  7767. },
  7768. {
  7769. name: "Macro",
  7770. height: math.unit(250, "meters"),
  7771. default: true
  7772. },
  7773. {
  7774. name: "Megamacro",
  7775. height: math.unit(25, "km")
  7776. },
  7777. ]
  7778. ))
  7779. characterMakers.push(() => makeCharacter(
  7780. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7781. {
  7782. front: {
  7783. height: math.unit(6, "feet"),
  7784. weight: math.unit(65, "kg"),
  7785. name: "Front",
  7786. image: {
  7787. source: "./media/characters/rook/front.svg",
  7788. extra: 960 / 950
  7789. }
  7790. }
  7791. },
  7792. [
  7793. {
  7794. name: "Normal",
  7795. height: math.unit(8.8, "feet")
  7796. },
  7797. {
  7798. name: "Macro",
  7799. height: math.unit(88, "feet"),
  7800. default: true
  7801. },
  7802. {
  7803. name: "Megamacro",
  7804. height: math.unit(8, "miles")
  7805. },
  7806. ]
  7807. ))
  7808. characterMakers.push(() => makeCharacter(
  7809. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7810. {
  7811. front: {
  7812. height: math.unit(12 + 2 / 12, "feet"),
  7813. weight: math.unit(808, "lbs"),
  7814. name: "Front",
  7815. image: {
  7816. source: "./media/characters/prodigy/front.svg"
  7817. }
  7818. }
  7819. },
  7820. [
  7821. {
  7822. name: "Normal",
  7823. height: math.unit(12 + 2 / 12, "feet"),
  7824. default: true
  7825. },
  7826. {
  7827. name: "Macro",
  7828. height: math.unit(143, "feet")
  7829. },
  7830. {
  7831. name: "Macro+",
  7832. height: math.unit(400, "feet")
  7833. },
  7834. ]
  7835. ))
  7836. characterMakers.push(() => makeCharacter(
  7837. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7838. {
  7839. front: {
  7840. height: math.unit(6, "feet"),
  7841. weight: math.unit(225, "lbs"),
  7842. name: "Front",
  7843. image: {
  7844. source: "./media/characters/daniel/front.svg"
  7845. }
  7846. },
  7847. leaning: {
  7848. height: math.unit(6, "feet"),
  7849. weight: math.unit(225, "lbs"),
  7850. name: "Leaning",
  7851. image: {
  7852. source: "./media/characters/daniel/leaning.svg"
  7853. }
  7854. },
  7855. },
  7856. [
  7857. {
  7858. name: "Macro",
  7859. height: math.unit(1000, "feet"),
  7860. default: true
  7861. },
  7862. ]
  7863. ))
  7864. characterMakers.push(() => makeCharacter(
  7865. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7866. {
  7867. front: {
  7868. height: math.unit(6, "feet"),
  7869. weight: math.unit(88, "lbs"),
  7870. name: "Front",
  7871. image: {
  7872. source: "./media/characters/chiros/front.svg",
  7873. extra: 306 / 226
  7874. }
  7875. },
  7876. side: {
  7877. height: math.unit(6, "feet"),
  7878. weight: math.unit(88, "lbs"),
  7879. name: "Side",
  7880. image: {
  7881. source: "./media/characters/chiros/side.svg",
  7882. extra: 306 / 226
  7883. }
  7884. },
  7885. },
  7886. [
  7887. {
  7888. name: "Normal",
  7889. height: math.unit(6, "cm"),
  7890. default: true
  7891. },
  7892. ]
  7893. ))
  7894. characterMakers.push(() => makeCharacter(
  7895. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7896. {
  7897. front: {
  7898. height: math.unit(6, "feet"),
  7899. weight: math.unit(100, "lbs"),
  7900. name: "Front",
  7901. image: {
  7902. source: "./media/characters/selka/front.svg",
  7903. extra: 947 / 887
  7904. }
  7905. }
  7906. },
  7907. [
  7908. {
  7909. name: "Normal",
  7910. height: math.unit(5, "cm"),
  7911. default: true
  7912. },
  7913. ]
  7914. ))
  7915. characterMakers.push(() => makeCharacter(
  7916. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7917. {
  7918. front: {
  7919. height: math.unit(8 + 3 / 12, "feet"),
  7920. weight: math.unit(424, "lbs"),
  7921. name: "Front",
  7922. image: {
  7923. source: "./media/characters/verin/front.svg",
  7924. extra: 1845 / 1550
  7925. }
  7926. },
  7927. frontArmored: {
  7928. height: math.unit(8 + 3 / 12, "feet"),
  7929. weight: math.unit(424, "lbs"),
  7930. name: "Front (Armored)",
  7931. image: {
  7932. source: "./media/characters/verin/front-armor.svg",
  7933. extra: 1845 / 1550,
  7934. bottom: 0.01
  7935. }
  7936. },
  7937. back: {
  7938. height: math.unit(8 + 3 / 12, "feet"),
  7939. weight: math.unit(424, "lbs"),
  7940. name: "Back",
  7941. image: {
  7942. source: "./media/characters/verin/back.svg",
  7943. bottom: 0.1,
  7944. extra: 1
  7945. }
  7946. },
  7947. foot: {
  7948. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7949. name: "Foot",
  7950. image: {
  7951. source: "./media/characters/verin/foot.svg"
  7952. }
  7953. },
  7954. },
  7955. [
  7956. {
  7957. name: "Normal",
  7958. height: math.unit(8 + 3 / 12, "feet")
  7959. },
  7960. {
  7961. name: "Minimacro",
  7962. height: math.unit(21, "feet"),
  7963. default: true
  7964. },
  7965. {
  7966. name: "Macro",
  7967. height: math.unit(626, "feet")
  7968. },
  7969. ]
  7970. ))
  7971. characterMakers.push(() => makeCharacter(
  7972. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7973. {
  7974. front: {
  7975. height: math.unit(2.718, "meters"),
  7976. weight: math.unit(150, "lbs"),
  7977. name: "Front",
  7978. image: {
  7979. source: "./media/characters/sovrim-terraquian/front.svg"
  7980. }
  7981. },
  7982. back: {
  7983. height: math.unit(2.718, "meters"),
  7984. weight: math.unit(150, "lbs"),
  7985. name: "Back",
  7986. image: {
  7987. source: "./media/characters/sovrim-terraquian/back.svg"
  7988. }
  7989. }
  7990. },
  7991. [
  7992. {
  7993. name: "Micro",
  7994. height: math.unit(2, "inches")
  7995. },
  7996. {
  7997. name: "Small",
  7998. height: math.unit(1, "meter")
  7999. },
  8000. {
  8001. name: "Normal",
  8002. height: math.unit(Math.E, "meters"),
  8003. default: true
  8004. },
  8005. {
  8006. name: "Macro",
  8007. height: math.unit(20, "meters")
  8008. },
  8009. {
  8010. name: "Macro+",
  8011. height: math.unit(400, "meters")
  8012. },
  8013. ]
  8014. ))
  8015. characterMakers.push(() => makeCharacter(
  8016. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8017. {
  8018. front: {
  8019. height: math.unit(7, "feet"),
  8020. weight: math.unit(489, "lbs"),
  8021. name: "Front",
  8022. image: {
  8023. source: "./media/characters/reece-silvermane/front.svg",
  8024. bottom: 0.02,
  8025. extra: 1
  8026. }
  8027. },
  8028. },
  8029. [
  8030. {
  8031. name: "Macro",
  8032. height: math.unit(1.5, "miles"),
  8033. default: true
  8034. },
  8035. ]
  8036. ))
  8037. characterMakers.push(() => makeCharacter(
  8038. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8039. {
  8040. front: {
  8041. height: math.unit(6, "feet"),
  8042. weight: math.unit(78, "kg"),
  8043. name: "Front",
  8044. image: {
  8045. source: "./media/characters/kane/front.svg",
  8046. extra: 978 / 899
  8047. }
  8048. },
  8049. },
  8050. [
  8051. {
  8052. name: "Normal",
  8053. height: math.unit(2.1, "m"),
  8054. },
  8055. {
  8056. name: "Macro",
  8057. height: math.unit(1, "km"),
  8058. default: true
  8059. },
  8060. ]
  8061. ))
  8062. characterMakers.push(() => makeCharacter(
  8063. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8064. {
  8065. front: {
  8066. height: math.unit(6, "feet"),
  8067. weight: math.unit(200, "kg"),
  8068. name: "Front",
  8069. image: {
  8070. source: "./media/characters/tegon/front.svg",
  8071. bottom: 0.01,
  8072. extra: 1
  8073. }
  8074. },
  8075. },
  8076. [
  8077. {
  8078. name: "Micro",
  8079. height: math.unit(1, "inch")
  8080. },
  8081. {
  8082. name: "Normal",
  8083. height: math.unit(6 + 3 / 12, "feet"),
  8084. default: true
  8085. },
  8086. {
  8087. name: "Macro",
  8088. height: math.unit(300, "feet")
  8089. },
  8090. {
  8091. name: "Megamacro",
  8092. height: math.unit(69, "miles")
  8093. },
  8094. ]
  8095. ))
  8096. characterMakers.push(() => makeCharacter(
  8097. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8098. {
  8099. side: {
  8100. height: math.unit(6, "feet"),
  8101. weight: math.unit(2304, "lbs"),
  8102. name: "Side",
  8103. image: {
  8104. source: "./media/characters/arcturax/side.svg",
  8105. extra: 790 / 376,
  8106. bottom: 0.01
  8107. }
  8108. },
  8109. },
  8110. [
  8111. {
  8112. name: "Micro",
  8113. height: math.unit(2, "inch")
  8114. },
  8115. {
  8116. name: "Normal",
  8117. height: math.unit(6, "feet")
  8118. },
  8119. {
  8120. name: "Macro",
  8121. height: math.unit(39, "feet"),
  8122. default: true
  8123. },
  8124. {
  8125. name: "Megamacro",
  8126. height: math.unit(7, "miles")
  8127. },
  8128. ]
  8129. ))
  8130. characterMakers.push(() => makeCharacter(
  8131. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8132. {
  8133. front: {
  8134. height: math.unit(6, "feet"),
  8135. weight: math.unit(50, "lbs"),
  8136. name: "Front",
  8137. image: {
  8138. source: "./media/characters/sentri/front.svg",
  8139. extra: 1750 / 1570,
  8140. bottom: 0.025
  8141. }
  8142. },
  8143. frontAlt: {
  8144. height: math.unit(6, "feet"),
  8145. weight: math.unit(50, "lbs"),
  8146. name: "Front (Alt)",
  8147. image: {
  8148. source: "./media/characters/sentri/front-alt.svg",
  8149. extra: 1750 / 1570,
  8150. bottom: 0.025
  8151. }
  8152. },
  8153. },
  8154. [
  8155. {
  8156. name: "Normal",
  8157. height: math.unit(15, "feet"),
  8158. default: true
  8159. },
  8160. {
  8161. name: "Macro",
  8162. height: math.unit(2500, "feet")
  8163. }
  8164. ]
  8165. ))
  8166. characterMakers.push(() => makeCharacter(
  8167. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8168. {
  8169. front: {
  8170. height: math.unit(5 + 8 / 12, "feet"),
  8171. weight: math.unit(130, "lbs"),
  8172. name: "Front",
  8173. image: {
  8174. source: "./media/characters/corvin/front.svg",
  8175. extra: 1803 / 1629
  8176. }
  8177. },
  8178. frontShirt: {
  8179. height: math.unit(5 + 8 / 12, "feet"),
  8180. weight: math.unit(130, "lbs"),
  8181. name: "Front (Shirt)",
  8182. image: {
  8183. source: "./media/characters/corvin/front-shirt.svg",
  8184. extra: 1803 / 1629
  8185. }
  8186. },
  8187. frontPoncho: {
  8188. height: math.unit(5 + 8 / 12, "feet"),
  8189. weight: math.unit(130, "lbs"),
  8190. name: "Front (Poncho)",
  8191. image: {
  8192. source: "./media/characters/corvin/front-poncho.svg",
  8193. extra: 1803 / 1629
  8194. }
  8195. },
  8196. side: {
  8197. height: math.unit(5 + 8 / 12, "feet"),
  8198. weight: math.unit(130, "lbs"),
  8199. name: "Side",
  8200. image: {
  8201. source: "./media/characters/corvin/side.svg",
  8202. extra: 1012 / 945
  8203. }
  8204. },
  8205. back: {
  8206. height: math.unit(5 + 8 / 12, "feet"),
  8207. weight: math.unit(130, "lbs"),
  8208. name: "Back",
  8209. image: {
  8210. source: "./media/characters/corvin/back.svg",
  8211. extra: 1803 / 1629
  8212. }
  8213. },
  8214. },
  8215. [
  8216. {
  8217. name: "Micro",
  8218. height: math.unit(3, "inches")
  8219. },
  8220. {
  8221. name: "Normal",
  8222. height: math.unit(5 + 8 / 12, "feet")
  8223. },
  8224. {
  8225. name: "Macro",
  8226. height: math.unit(300, "feet"),
  8227. default: true
  8228. },
  8229. {
  8230. name: "Megamacro",
  8231. height: math.unit(500, "miles")
  8232. }
  8233. ]
  8234. ))
  8235. characterMakers.push(() => makeCharacter(
  8236. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8237. {
  8238. front: {
  8239. height: math.unit(6, "feet"),
  8240. weight: math.unit(135, "lbs"),
  8241. name: "Front",
  8242. image: {
  8243. source: "./media/characters/q/front.svg",
  8244. extra: 854 / 752,
  8245. bottom: 0.005
  8246. }
  8247. },
  8248. back: {
  8249. height: math.unit(6, "feet"),
  8250. weight: math.unit(130, "lbs"),
  8251. name: "Back",
  8252. image: {
  8253. source: "./media/characters/q/back.svg",
  8254. extra: 854 / 752
  8255. }
  8256. },
  8257. },
  8258. [
  8259. {
  8260. name: "Macro",
  8261. height: math.unit(90, "feet"),
  8262. default: true
  8263. },
  8264. {
  8265. name: "Extra Macro",
  8266. height: math.unit(300, "feet"),
  8267. },
  8268. {
  8269. name: "BIG WALF",
  8270. height: math.unit(750, "feet"),
  8271. },
  8272. ]
  8273. ))
  8274. characterMakers.push(() => makeCharacter(
  8275. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8276. {
  8277. front: {
  8278. height: math.unit(6, "feet"),
  8279. weight: math.unit(150, "lbs"),
  8280. name: "Front",
  8281. image: {
  8282. source: "./media/characters/carley/front.svg",
  8283. extra: 3927 / 3540,
  8284. bottom: 29.2 / 735
  8285. }
  8286. }
  8287. },
  8288. [
  8289. {
  8290. name: "Normal",
  8291. height: math.unit(6 + 3 / 12, "feet")
  8292. },
  8293. {
  8294. name: "Macro",
  8295. height: math.unit(185, "feet"),
  8296. default: true
  8297. },
  8298. {
  8299. name: "Megamacro",
  8300. height: math.unit(8, "miles"),
  8301. },
  8302. ]
  8303. ))
  8304. characterMakers.push(() => makeCharacter(
  8305. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8306. {
  8307. front: {
  8308. height: math.unit(3, "feet"),
  8309. weight: math.unit(28, "lbs"),
  8310. name: "Front",
  8311. image: {
  8312. source: "./media/characters/citrine/front.svg"
  8313. }
  8314. }
  8315. },
  8316. [
  8317. {
  8318. name: "Normal",
  8319. height: math.unit(3, "feet"),
  8320. default: true
  8321. }
  8322. ]
  8323. ))
  8324. characterMakers.push(() => makeCharacter(
  8325. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8326. {
  8327. front: {
  8328. height: math.unit(14, "feet"),
  8329. weight: math.unit(1450, "kg"),
  8330. capacity: math.unit(15, "people"),
  8331. name: "Front",
  8332. image: {
  8333. source: "./media/characters/aura-starwind/front.svg",
  8334. extra: 1440/1327,
  8335. bottom: 11/1451
  8336. }
  8337. },
  8338. side: {
  8339. height: math.unit(14, "feet"),
  8340. weight: math.unit(1450, "kg"),
  8341. capacity: math.unit(15, "people"),
  8342. name: "Side",
  8343. image: {
  8344. source: "./media/characters/aura-starwind/side.svg",
  8345. extra: 1654 / 1497
  8346. }
  8347. },
  8348. taur: {
  8349. height: math.unit(18, "feet"),
  8350. weight: math.unit(5500, "kg"),
  8351. capacity: math.unit(50, "people"),
  8352. name: "Taur",
  8353. image: {
  8354. source: "./media/characters/aura-starwind/taur.svg",
  8355. extra: 1760 / 1650
  8356. }
  8357. },
  8358. feral: {
  8359. height: math.unit(46, "feet"),
  8360. weight: math.unit(25000, "kg"),
  8361. capacity: math.unit(120, "people"),
  8362. name: "Feral",
  8363. image: {
  8364. source: "./media/characters/aura-starwind/feral.svg"
  8365. }
  8366. },
  8367. },
  8368. [
  8369. {
  8370. name: "Normal",
  8371. height: math.unit(14, "feet"),
  8372. default: true
  8373. },
  8374. {
  8375. name: "Macro",
  8376. height: math.unit(50, "meters")
  8377. },
  8378. {
  8379. name: "Megamacro",
  8380. height: math.unit(5000, "meters")
  8381. },
  8382. {
  8383. name: "Gigamacro",
  8384. height: math.unit(100000, "kilometers")
  8385. },
  8386. ]
  8387. ))
  8388. characterMakers.push(() => makeCharacter(
  8389. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8390. {
  8391. front: {
  8392. height: math.unit(2 + 7 / 12, "feet"),
  8393. weight: math.unit(32, "lbs"),
  8394. name: "Front",
  8395. image: {
  8396. source: "./media/characters/rivet/front.svg",
  8397. extra: 1716 / 1658,
  8398. bottom: 0.03
  8399. }
  8400. },
  8401. foot: {
  8402. height: math.unit(0.551, "feet"),
  8403. name: "Rivet's Foot",
  8404. image: {
  8405. source: "./media/characters/rivet/foot.svg"
  8406. },
  8407. rename: true
  8408. }
  8409. },
  8410. [
  8411. {
  8412. name: "Micro",
  8413. height: math.unit(1.5, "inches"),
  8414. },
  8415. {
  8416. name: "Normal",
  8417. height: math.unit(2 + 7 / 12, "feet"),
  8418. default: true
  8419. },
  8420. {
  8421. name: "Macro",
  8422. height: math.unit(85, "feet")
  8423. },
  8424. {
  8425. name: "Megamacro",
  8426. height: math.unit(2.2, "km")
  8427. }
  8428. ]
  8429. ))
  8430. characterMakers.push(() => makeCharacter(
  8431. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8432. {
  8433. front: {
  8434. height: math.unit(5 + 9 / 12, "feet"),
  8435. weight: math.unit(150, "lbs"),
  8436. name: "Front",
  8437. image: {
  8438. source: "./media/characters/coffee/front.svg",
  8439. extra: 3666 / 3032,
  8440. bottom: 0.04
  8441. }
  8442. },
  8443. foot: {
  8444. height: math.unit(1.29, "feet"),
  8445. name: "Foot",
  8446. image: {
  8447. source: "./media/characters/coffee/foot.svg"
  8448. }
  8449. },
  8450. },
  8451. [
  8452. {
  8453. name: "Micro",
  8454. height: math.unit(2, "inches"),
  8455. },
  8456. {
  8457. name: "Normal",
  8458. height: math.unit(5 + 9 / 12, "feet"),
  8459. default: true
  8460. },
  8461. {
  8462. name: "Macro",
  8463. height: math.unit(800, "feet")
  8464. },
  8465. {
  8466. name: "Megamacro",
  8467. height: math.unit(25, "miles")
  8468. }
  8469. ]
  8470. ))
  8471. characterMakers.push(() => makeCharacter(
  8472. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8473. {
  8474. front: {
  8475. height: math.unit(6, "feet"),
  8476. weight: math.unit(200, "lbs"),
  8477. name: "Front",
  8478. image: {
  8479. source: "./media/characters/chari-gal/front.svg",
  8480. extra: 1568 / 1385,
  8481. bottom: 0.047
  8482. }
  8483. },
  8484. gigantamax: {
  8485. height: math.unit(6 * 16, "feet"),
  8486. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8487. name: "Gigantamax",
  8488. image: {
  8489. source: "./media/characters/chari-gal/gigantamax.svg",
  8490. extra: 1124 / 888,
  8491. bottom: 0.03
  8492. }
  8493. },
  8494. },
  8495. [
  8496. {
  8497. name: "Normal",
  8498. height: math.unit(5 + 7 / 12, "feet")
  8499. },
  8500. {
  8501. name: "Macro",
  8502. height: math.unit(200, "feet"),
  8503. default: true
  8504. }
  8505. ]
  8506. ))
  8507. characterMakers.push(() => makeCharacter(
  8508. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8509. {
  8510. front: {
  8511. height: math.unit(6, "feet"),
  8512. weight: math.unit(150, "lbs"),
  8513. name: "Front",
  8514. image: {
  8515. source: "./media/characters/nova/front.svg",
  8516. extra: 5000 / 4722,
  8517. bottom: 0.02
  8518. }
  8519. }
  8520. },
  8521. [
  8522. {
  8523. name: "Micro-",
  8524. height: math.unit(0.8, "inches")
  8525. },
  8526. {
  8527. name: "Micro",
  8528. height: math.unit(2, "inches"),
  8529. default: true
  8530. },
  8531. ]
  8532. ))
  8533. characterMakers.push(() => makeCharacter(
  8534. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8535. {
  8536. front: {
  8537. height: math.unit(3 + 1 / 12, "feet"),
  8538. weight: math.unit(21.7, "lbs"),
  8539. name: "Front",
  8540. image: {
  8541. source: "./media/characters/argent/front.svg",
  8542. extra: 1471 / 1331,
  8543. bottom: 100.8 / 1575.5
  8544. }
  8545. }
  8546. },
  8547. [
  8548. {
  8549. name: "Micro",
  8550. height: math.unit(2, "inches")
  8551. },
  8552. {
  8553. name: "Normal",
  8554. height: math.unit(3 + 1 / 12, "feet"),
  8555. default: true
  8556. },
  8557. {
  8558. name: "Macro",
  8559. height: math.unit(120, "feet")
  8560. },
  8561. ]
  8562. ))
  8563. characterMakers.push(() => makeCharacter(
  8564. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8565. {
  8566. lamp: {
  8567. height: math.unit(7 * 1559 / 989, "feet"),
  8568. name: "Magic Lamp",
  8569. image: {
  8570. source: "./media/characters/mira-al-cul/lamp.svg",
  8571. extra: 1617 / 1559
  8572. }
  8573. },
  8574. front: {
  8575. height: math.unit(7, "feet"),
  8576. name: "Front",
  8577. image: {
  8578. source: "./media/characters/mira-al-cul/front.svg",
  8579. extra: 1044 / 990
  8580. }
  8581. },
  8582. },
  8583. [
  8584. {
  8585. name: "Heavily Restricted",
  8586. height: math.unit(7 * 1559 / 989, "feet")
  8587. },
  8588. {
  8589. name: "Freshly Freed",
  8590. height: math.unit(50 * 1559 / 989, "feet")
  8591. },
  8592. {
  8593. name: "World Encompassing",
  8594. height: math.unit(10000 * 1559 / 989, "miles")
  8595. },
  8596. {
  8597. name: "Galactic",
  8598. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8599. },
  8600. {
  8601. name: "Palmed Universe",
  8602. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8603. default: true
  8604. },
  8605. {
  8606. name: "Multiversal Matriarch",
  8607. height: math.unit(8.87e10, "yottameters")
  8608. },
  8609. {
  8610. name: "Void Mother",
  8611. height: math.unit(3.14e110, "yottaparsecs")
  8612. },
  8613. {
  8614. name: "Toying with Transcendence",
  8615. height: math.unit(1e307, "meters")
  8616. },
  8617. ]
  8618. ))
  8619. characterMakers.push(() => makeCharacter(
  8620. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8621. {
  8622. front: {
  8623. height: math.unit(17 + 1 / 12, "feet"),
  8624. weight: math.unit(476.2 * 5, "lbs"),
  8625. name: "Front",
  8626. image: {
  8627. source: "./media/characters/kuro-shi-uchū/front.svg",
  8628. extra: 2329 / 1835,
  8629. bottom: 0.02
  8630. }
  8631. },
  8632. },
  8633. [
  8634. {
  8635. name: "Micro",
  8636. height: math.unit(2, "inches")
  8637. },
  8638. {
  8639. name: "Normal",
  8640. height: math.unit(12, "meters")
  8641. },
  8642. {
  8643. name: "Planetary",
  8644. height: math.unit(0.00929, "AU"),
  8645. default: true
  8646. },
  8647. {
  8648. name: "Universal",
  8649. height: math.unit(20, "gigaparsecs")
  8650. },
  8651. ]
  8652. ))
  8653. characterMakers.push(() => makeCharacter(
  8654. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8655. {
  8656. front: {
  8657. height: math.unit(5 + 2 / 12, "feet"),
  8658. weight: math.unit(120, "lbs"),
  8659. name: "Front",
  8660. image: {
  8661. source: "./media/characters/katherine/front.svg",
  8662. extra: 2075 / 1969
  8663. }
  8664. },
  8665. dress: {
  8666. height: math.unit(5 + 2 / 12, "feet"),
  8667. weight: math.unit(120, "lbs"),
  8668. name: "Dress",
  8669. image: {
  8670. source: "./media/characters/katherine/dress.svg",
  8671. extra: 2258 / 2064
  8672. }
  8673. },
  8674. },
  8675. [
  8676. {
  8677. name: "Micro",
  8678. height: math.unit(1, "inches"),
  8679. default: true
  8680. },
  8681. {
  8682. name: "Normal",
  8683. height: math.unit(5 + 2 / 12, "feet")
  8684. },
  8685. {
  8686. name: "Macro",
  8687. height: math.unit(100, "meters")
  8688. },
  8689. {
  8690. name: "Megamacro",
  8691. height: math.unit(80, "miles")
  8692. },
  8693. ]
  8694. ))
  8695. characterMakers.push(() => makeCharacter(
  8696. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8697. {
  8698. front: {
  8699. height: math.unit(7 + 8 / 12, "feet"),
  8700. weight: math.unit(250, "lbs"),
  8701. name: "Front",
  8702. image: {
  8703. source: "./media/characters/yevis/front.svg",
  8704. extra: 1938 / 1755
  8705. }
  8706. }
  8707. },
  8708. [
  8709. {
  8710. name: "Mortal",
  8711. height: math.unit(7 + 8 / 12, "feet")
  8712. },
  8713. {
  8714. name: "Battle",
  8715. height: math.unit(25 + 11 / 12, "feet")
  8716. },
  8717. {
  8718. name: "Wrath",
  8719. height: math.unit(1654 + 11 / 12, "feet")
  8720. },
  8721. {
  8722. name: "Planet Destroyer",
  8723. height: math.unit(12000, "miles")
  8724. },
  8725. {
  8726. name: "Galaxy Conqueror",
  8727. height: math.unit(1.45, "zettameters"),
  8728. default: true
  8729. },
  8730. {
  8731. name: "Universal War",
  8732. height: math.unit(184, "gigaparsecs")
  8733. },
  8734. {
  8735. name: "Eternity War",
  8736. height: math.unit(1.98e55, "yottaparsecs")
  8737. },
  8738. ]
  8739. ))
  8740. characterMakers.push(() => makeCharacter(
  8741. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8742. {
  8743. front: {
  8744. height: math.unit(5 + 8 / 12, "feet"),
  8745. weight: math.unit(63, "kg"),
  8746. name: "Front",
  8747. image: {
  8748. source: "./media/characters/xavier/front.svg",
  8749. extra: 944 / 883
  8750. }
  8751. },
  8752. frontStretch: {
  8753. height: math.unit(5 + 8 / 12, "feet"),
  8754. weight: math.unit(63, "kg"),
  8755. name: "Stretching",
  8756. image: {
  8757. source: "./media/characters/xavier/front-stretch.svg",
  8758. extra: 962 / 820
  8759. }
  8760. },
  8761. },
  8762. [
  8763. {
  8764. name: "Normal",
  8765. height: math.unit(5 + 8 / 12, "feet")
  8766. },
  8767. {
  8768. name: "Macro",
  8769. height: math.unit(100, "meters"),
  8770. default: true
  8771. },
  8772. {
  8773. name: "McLargeHuge",
  8774. height: math.unit(10, "miles")
  8775. },
  8776. ]
  8777. ))
  8778. characterMakers.push(() => makeCharacter(
  8779. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8780. {
  8781. front: {
  8782. height: math.unit(5 + 5 / 12, "feet"),
  8783. weight: math.unit(150, "lb"),
  8784. name: "Front",
  8785. image: {
  8786. source: "./media/characters/joshii/front.svg",
  8787. extra: 765 / 653,
  8788. bottom: 51 / 816
  8789. }
  8790. },
  8791. foot: {
  8792. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8793. name: "Foot",
  8794. image: {
  8795. source: "./media/characters/joshii/foot.svg"
  8796. }
  8797. },
  8798. },
  8799. [
  8800. {
  8801. name: "Micro",
  8802. height: math.unit(2, "inches"),
  8803. default: true
  8804. },
  8805. {
  8806. name: "Normal",
  8807. height: math.unit(5 + 5 / 12, "feet")
  8808. },
  8809. {
  8810. name: "Macro",
  8811. height: math.unit(785, "feet")
  8812. },
  8813. {
  8814. name: "Megamacro",
  8815. height: math.unit(24.5, "miles")
  8816. },
  8817. ]
  8818. ))
  8819. characterMakers.push(() => makeCharacter(
  8820. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8821. {
  8822. front: {
  8823. height: math.unit(6, "feet"),
  8824. weight: math.unit(150, "lb"),
  8825. name: "Front",
  8826. image: {
  8827. source: "./media/characters/goddess-elizabeth/front.svg",
  8828. extra: 1800 / 1525,
  8829. bottom: 0.005
  8830. }
  8831. },
  8832. foot: {
  8833. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8834. name: "Foot",
  8835. image: {
  8836. source: "./media/characters/goddess-elizabeth/foot.svg"
  8837. }
  8838. },
  8839. mouth: {
  8840. height: math.unit(6, "feet"),
  8841. name: "Mouth",
  8842. image: {
  8843. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8844. }
  8845. },
  8846. },
  8847. [
  8848. {
  8849. name: "Micro",
  8850. height: math.unit(12, "feet")
  8851. },
  8852. {
  8853. name: "Normal",
  8854. height: math.unit(80, "miles"),
  8855. default: true
  8856. },
  8857. {
  8858. name: "Macro",
  8859. height: math.unit(15000, "parsecs")
  8860. },
  8861. ]
  8862. ))
  8863. characterMakers.push(() => makeCharacter(
  8864. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8865. {
  8866. front: {
  8867. height: math.unit(5 + 9 / 12, "feet"),
  8868. weight: math.unit(144, "lb"),
  8869. name: "Front",
  8870. image: {
  8871. source: "./media/characters/kara/front.svg"
  8872. }
  8873. },
  8874. feet: {
  8875. height: math.unit(6 / 6.765, "feet"),
  8876. name: "Kara's Feet",
  8877. rename: true,
  8878. image: {
  8879. source: "./media/characters/kara/feet.svg"
  8880. }
  8881. },
  8882. },
  8883. [
  8884. {
  8885. name: "Normal",
  8886. height: math.unit(5 + 9 / 12, "feet")
  8887. },
  8888. {
  8889. name: "Macro",
  8890. height: math.unit(174, "feet"),
  8891. default: true
  8892. },
  8893. ]
  8894. ))
  8895. characterMakers.push(() => makeCharacter(
  8896. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8897. {
  8898. front: {
  8899. height: math.unit(18, "feet"),
  8900. weight: math.unit(4050, "lb"),
  8901. name: "Front",
  8902. image: {
  8903. source: "./media/characters/tyrone/front.svg",
  8904. extra: 2405 / 2270,
  8905. bottom: 182 / 2587
  8906. }
  8907. },
  8908. },
  8909. [
  8910. {
  8911. name: "Normal",
  8912. height: math.unit(18, "feet"),
  8913. default: true
  8914. },
  8915. {
  8916. name: "Macro",
  8917. height: math.unit(300, "feet")
  8918. },
  8919. {
  8920. name: "Megamacro",
  8921. height: math.unit(15, "km")
  8922. },
  8923. {
  8924. name: "Gigamacro",
  8925. height: math.unit(500, "km")
  8926. },
  8927. {
  8928. name: "Teramacro",
  8929. height: math.unit(0.5, "gigameters")
  8930. },
  8931. {
  8932. name: "Omnimacro",
  8933. height: math.unit(1e252, "yottauniverse")
  8934. },
  8935. ]
  8936. ))
  8937. characterMakers.push(() => makeCharacter(
  8938. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8939. {
  8940. front: {
  8941. height: math.unit(7 + 8 / 12, "feet"),
  8942. weight: math.unit(120, "lb"),
  8943. name: "Front",
  8944. image: {
  8945. source: "./media/characters/danny/front.svg",
  8946. extra: 1490 / 1350
  8947. }
  8948. },
  8949. back: {
  8950. height: math.unit(7 + 8 / 12, "feet"),
  8951. weight: math.unit(120, "lb"),
  8952. name: "Back",
  8953. image: {
  8954. source: "./media/characters/danny/back.svg",
  8955. extra: 1490 / 1350
  8956. }
  8957. },
  8958. },
  8959. [
  8960. {
  8961. name: "Normal",
  8962. height: math.unit(7 + 8 / 12, "feet"),
  8963. default: true
  8964. },
  8965. ]
  8966. ))
  8967. characterMakers.push(() => makeCharacter(
  8968. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8969. {
  8970. front: {
  8971. height: math.unit(3.5, "inches"),
  8972. weight: math.unit(19, "grams"),
  8973. name: "Front",
  8974. image: {
  8975. source: "./media/characters/mallow/front.svg",
  8976. extra: 471 / 431
  8977. }
  8978. },
  8979. back: {
  8980. height: math.unit(3.5, "inches"),
  8981. weight: math.unit(19, "grams"),
  8982. name: "Back",
  8983. image: {
  8984. source: "./media/characters/mallow/back.svg",
  8985. extra: 471 / 431
  8986. }
  8987. },
  8988. },
  8989. [
  8990. {
  8991. name: "Normal",
  8992. height: math.unit(3.5, "inches"),
  8993. default: true
  8994. },
  8995. ]
  8996. ))
  8997. characterMakers.push(() => makeCharacter(
  8998. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8999. {
  9000. front: {
  9001. height: math.unit(9, "feet"),
  9002. weight: math.unit(230, "kg"),
  9003. name: "Front",
  9004. image: {
  9005. source: "./media/characters/starry-aqua/front.svg"
  9006. }
  9007. },
  9008. back: {
  9009. height: math.unit(9, "feet"),
  9010. weight: math.unit(230, "kg"),
  9011. name: "Back",
  9012. image: {
  9013. source: "./media/characters/starry-aqua/back.svg"
  9014. }
  9015. },
  9016. hand: {
  9017. height: math.unit(9 * 0.1168, "feet"),
  9018. name: "Hand",
  9019. image: {
  9020. source: "./media/characters/starry-aqua/hand.svg"
  9021. }
  9022. },
  9023. foot: {
  9024. height: math.unit(9 * 0.18, "feet"),
  9025. name: "Foot",
  9026. image: {
  9027. source: "./media/characters/starry-aqua/foot.svg"
  9028. }
  9029. }
  9030. },
  9031. [
  9032. {
  9033. name: "Micro",
  9034. height: math.unit(3, "inches")
  9035. },
  9036. {
  9037. name: "Normal",
  9038. height: math.unit(9, "feet")
  9039. },
  9040. {
  9041. name: "Macro",
  9042. height: math.unit(300, "feet"),
  9043. default: true
  9044. },
  9045. {
  9046. name: "Megamacro",
  9047. height: math.unit(3200, "feet")
  9048. }
  9049. ]
  9050. ))
  9051. characterMakers.push(() => makeCharacter(
  9052. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9053. {
  9054. front: {
  9055. height: math.unit(15, "feet"),
  9056. weight: math.unit(5026, "lb"),
  9057. name: "Front",
  9058. image: {
  9059. source: "./media/characters/luka-towers/front.svg",
  9060. extra: 1269/1133,
  9061. bottom: 51/1320
  9062. }
  9063. },
  9064. },
  9065. [
  9066. {
  9067. name: "Normal",
  9068. height: math.unit(15, "feet"),
  9069. default: true
  9070. },
  9071. {
  9072. name: "Minimacro",
  9073. height: math.unit(25, "feet")
  9074. },
  9075. {
  9076. name: "Macro",
  9077. height: math.unit(320, "feet")
  9078. },
  9079. {
  9080. name: "Megamacro",
  9081. height: math.unit(35000, "feet")
  9082. },
  9083. {
  9084. name: "Gigamacro",
  9085. height: math.unit(4000, "miles")
  9086. },
  9087. {
  9088. name: "Teramacro",
  9089. height: math.unit(15000, "miles")
  9090. },
  9091. ]
  9092. ))
  9093. characterMakers.push(() => makeCharacter(
  9094. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9095. {
  9096. front: {
  9097. height: math.unit(6, "feet"),
  9098. weight: math.unit(150, "lb"),
  9099. name: "Front",
  9100. image: {
  9101. source: "./media/characters/natalie-nightring/front.svg",
  9102. extra: 1,
  9103. bottom: 0.06
  9104. }
  9105. },
  9106. },
  9107. [
  9108. {
  9109. name: "Uh Oh",
  9110. height: math.unit(0.1, "mm")
  9111. },
  9112. {
  9113. name: "Small",
  9114. height: math.unit(3, "inches")
  9115. },
  9116. {
  9117. name: "Human Scale",
  9118. height: math.unit(6, "feet")
  9119. },
  9120. {
  9121. name: "Librarian",
  9122. height: math.unit(50, "feet"),
  9123. default: true
  9124. },
  9125. {
  9126. name: "Immense",
  9127. height: math.unit(200, "miles")
  9128. },
  9129. ]
  9130. ))
  9131. characterMakers.push(() => makeCharacter(
  9132. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9133. {
  9134. front: {
  9135. height: math.unit(6, "feet"),
  9136. weight: math.unit(180, "lbs"),
  9137. name: "Front",
  9138. image: {
  9139. source: "./media/characters/danni-rosie/front.svg",
  9140. extra: 1260 / 1128,
  9141. bottom: 0.022
  9142. }
  9143. },
  9144. },
  9145. [
  9146. {
  9147. name: "Micro",
  9148. height: math.unit(2, "inches"),
  9149. default: true
  9150. },
  9151. ]
  9152. ))
  9153. characterMakers.push(() => makeCharacter(
  9154. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9155. {
  9156. front: {
  9157. height: math.unit(5 + 9 / 12, "feet"),
  9158. weight: math.unit(220, "lb"),
  9159. name: "Front",
  9160. image: {
  9161. source: "./media/characters/samantha-kruse/front.svg",
  9162. extra: (985 / 935),
  9163. bottom: 0.03
  9164. }
  9165. },
  9166. frontUndressed: {
  9167. height: math.unit(5 + 9 / 12, "feet"),
  9168. weight: math.unit(220, "lb"),
  9169. name: "Front (Undressed)",
  9170. image: {
  9171. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9172. extra: (973 / 923),
  9173. bottom: 0.025
  9174. }
  9175. },
  9176. fat: {
  9177. height: math.unit(5 + 9 / 12, "feet"),
  9178. weight: math.unit(900, "lb"),
  9179. name: "Front (Fat)",
  9180. image: {
  9181. source: "./media/characters/samantha-kruse/fat.svg",
  9182. extra: 2688 / 2561
  9183. }
  9184. },
  9185. },
  9186. [
  9187. {
  9188. name: "Normal",
  9189. height: math.unit(5 + 9 / 12, "feet"),
  9190. default: true
  9191. }
  9192. ]
  9193. ))
  9194. characterMakers.push(() => makeCharacter(
  9195. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9196. {
  9197. back: {
  9198. height: math.unit(5 + 4 / 12, "feet"),
  9199. weight: math.unit(4963, "lb"),
  9200. name: "Back",
  9201. image: {
  9202. source: "./media/characters/amelia-rosie/back.svg",
  9203. extra: 1113 / 963,
  9204. bottom: 0.01
  9205. }
  9206. },
  9207. },
  9208. [
  9209. {
  9210. name: "Level 0",
  9211. height: math.unit(5 + 4 / 12, "feet")
  9212. },
  9213. {
  9214. name: "Level 1",
  9215. height: math.unit(164597, "feet"),
  9216. default: true
  9217. },
  9218. {
  9219. name: "Level 2",
  9220. height: math.unit(956243, "miles")
  9221. },
  9222. {
  9223. name: "Level 3",
  9224. height: math.unit(29421709423, "miles")
  9225. },
  9226. {
  9227. name: "Level 4",
  9228. height: math.unit(154, "lightyears")
  9229. },
  9230. {
  9231. name: "Level 5",
  9232. height: math.unit(4738272, "lightyears")
  9233. },
  9234. {
  9235. name: "Level 6",
  9236. height: math.unit(145787152896, "lightyears")
  9237. },
  9238. ]
  9239. ))
  9240. characterMakers.push(() => makeCharacter(
  9241. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9242. {
  9243. front: {
  9244. height: math.unit(5 + 11 / 12, "feet"),
  9245. weight: math.unit(65, "kg"),
  9246. name: "Front",
  9247. image: {
  9248. source: "./media/characters/rook-kitara/front.svg",
  9249. extra: 1347 / 1274,
  9250. bottom: 0.005
  9251. }
  9252. },
  9253. },
  9254. [
  9255. {
  9256. name: "Totally Unfair",
  9257. height: math.unit(1.8, "mm")
  9258. },
  9259. {
  9260. name: "Lap Rookie",
  9261. height: math.unit(1.4, "feet")
  9262. },
  9263. {
  9264. name: "Normal",
  9265. height: math.unit(5 + 11 / 12, "feet"),
  9266. default: true
  9267. },
  9268. {
  9269. name: "How Did This Happen",
  9270. height: math.unit(80, "miles")
  9271. }
  9272. ]
  9273. ))
  9274. characterMakers.push(() => makeCharacter(
  9275. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9276. {
  9277. front: {
  9278. height: math.unit(7, "feet"),
  9279. weight: math.unit(300, "lb"),
  9280. name: "Front",
  9281. image: {
  9282. source: "./media/characters/pisces/front.svg",
  9283. extra: 2255 / 2115,
  9284. bottom: 0.03
  9285. }
  9286. },
  9287. back: {
  9288. height: math.unit(7, "feet"),
  9289. weight: math.unit(300, "lb"),
  9290. name: "Back",
  9291. image: {
  9292. source: "./media/characters/pisces/back.svg",
  9293. extra: 2146 / 2055,
  9294. bottom: 0.04
  9295. }
  9296. },
  9297. },
  9298. [
  9299. {
  9300. name: "Normal",
  9301. height: math.unit(7, "feet"),
  9302. default: true
  9303. },
  9304. {
  9305. name: "Swimming Pool",
  9306. height: math.unit(12.2, "meters")
  9307. },
  9308. {
  9309. name: "Olympic Swimming Pool",
  9310. height: math.unit(56.3, "meters")
  9311. },
  9312. {
  9313. name: "Lake Superior",
  9314. height: math.unit(93900, "meters")
  9315. },
  9316. {
  9317. name: "Mediterranean Sea",
  9318. height: math.unit(644457, "meters")
  9319. },
  9320. {
  9321. name: "World's Oceans",
  9322. height: math.unit(4567491, "meters")
  9323. },
  9324. ]
  9325. ))
  9326. characterMakers.push(() => makeCharacter(
  9327. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9328. {
  9329. front: {
  9330. height: math.unit(2.3, "meters"),
  9331. weight: math.unit(120, "kg"),
  9332. name: "Front",
  9333. image: {
  9334. source: "./media/characters/zelas/front.svg"
  9335. }
  9336. },
  9337. side: {
  9338. height: math.unit(2.3, "meters"),
  9339. weight: math.unit(120, "kg"),
  9340. name: "Side",
  9341. image: {
  9342. source: "./media/characters/zelas/side.svg"
  9343. }
  9344. },
  9345. back: {
  9346. height: math.unit(2.3, "meters"),
  9347. weight: math.unit(120, "kg"),
  9348. name: "Back",
  9349. image: {
  9350. source: "./media/characters/zelas/back.svg"
  9351. }
  9352. },
  9353. foot: {
  9354. height: math.unit(1.116, "feet"),
  9355. name: "Foot",
  9356. image: {
  9357. source: "./media/characters/zelas/foot.svg"
  9358. }
  9359. },
  9360. },
  9361. [
  9362. {
  9363. name: "Normal",
  9364. height: math.unit(2.3, "meters")
  9365. },
  9366. {
  9367. name: "Macro",
  9368. height: math.unit(30, "meters"),
  9369. default: true
  9370. },
  9371. ]
  9372. ))
  9373. characterMakers.push(() => makeCharacter(
  9374. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9375. {
  9376. front: {
  9377. height: math.unit(1, "inch"),
  9378. weight: math.unit(0.21, "grams"),
  9379. name: "Front",
  9380. image: {
  9381. source: "./media/characters/talbot/front.svg",
  9382. extra: 594 / 544
  9383. }
  9384. },
  9385. },
  9386. [
  9387. {
  9388. name: "Micro",
  9389. height: math.unit(1, "inch"),
  9390. default: true
  9391. },
  9392. ]
  9393. ))
  9394. characterMakers.push(() => makeCharacter(
  9395. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9396. {
  9397. front: {
  9398. height: math.unit(3 + 3 / 12, "feet"),
  9399. weight: math.unit(51.8, "lb"),
  9400. name: "Front",
  9401. image: {
  9402. source: "./media/characters/fliss/front.svg",
  9403. extra: 840 / 640
  9404. }
  9405. },
  9406. },
  9407. [
  9408. {
  9409. name: "Teeny Tiny",
  9410. height: math.unit(1, "mm")
  9411. },
  9412. {
  9413. name: "Small",
  9414. height: math.unit(1, "inch"),
  9415. default: true
  9416. },
  9417. {
  9418. name: "Standard Sylveon",
  9419. height: math.unit(3 + 3 / 12, "feet")
  9420. },
  9421. {
  9422. name: "Large Nuisance",
  9423. height: math.unit(33, "feet")
  9424. },
  9425. {
  9426. name: "City Filler",
  9427. height: math.unit(3000, "feet")
  9428. },
  9429. {
  9430. name: "New Horizon",
  9431. height: math.unit(6000, "miles")
  9432. },
  9433. ]
  9434. ))
  9435. characterMakers.push(() => makeCharacter(
  9436. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9437. {
  9438. front: {
  9439. height: math.unit(5, "cm"),
  9440. weight: math.unit(1.94, "g"),
  9441. name: "Front",
  9442. image: {
  9443. source: "./media/characters/fleta/front.svg",
  9444. extra: 835 / 803
  9445. }
  9446. },
  9447. back: {
  9448. height: math.unit(5, "cm"),
  9449. weight: math.unit(1.94, "g"),
  9450. name: "Back",
  9451. image: {
  9452. source: "./media/characters/fleta/back.svg",
  9453. extra: 835 / 803
  9454. }
  9455. },
  9456. },
  9457. [
  9458. {
  9459. name: "Micro",
  9460. height: math.unit(5, "cm"),
  9461. default: true
  9462. },
  9463. ]
  9464. ))
  9465. characterMakers.push(() => makeCharacter(
  9466. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9467. {
  9468. front: {
  9469. height: math.unit(6, "feet"),
  9470. weight: math.unit(225, "lb"),
  9471. name: "Front",
  9472. image: {
  9473. source: "./media/characters/dominic/front.svg",
  9474. extra: 1770 / 1620,
  9475. bottom: 0.025
  9476. }
  9477. },
  9478. back: {
  9479. height: math.unit(6, "feet"),
  9480. weight: math.unit(225, "lb"),
  9481. name: "Back",
  9482. image: {
  9483. source: "./media/characters/dominic/back.svg",
  9484. extra: 1745 / 1620,
  9485. bottom: 0.065
  9486. }
  9487. },
  9488. },
  9489. [
  9490. {
  9491. name: "Nano",
  9492. height: math.unit(0.1, "mm")
  9493. },
  9494. {
  9495. name: "Micro-",
  9496. height: math.unit(1, "mm")
  9497. },
  9498. {
  9499. name: "Micro",
  9500. height: math.unit(4, "inches")
  9501. },
  9502. {
  9503. name: "Normal",
  9504. height: math.unit(6 + 4 / 12, "feet"),
  9505. default: true
  9506. },
  9507. {
  9508. name: "Macro",
  9509. height: math.unit(115, "feet")
  9510. },
  9511. {
  9512. name: "Macro+",
  9513. height: math.unit(955, "feet")
  9514. },
  9515. {
  9516. name: "Megamacro",
  9517. height: math.unit(8990, "feet")
  9518. },
  9519. {
  9520. name: "Gigmacro",
  9521. height: math.unit(9310, "miles")
  9522. },
  9523. {
  9524. name: "Teramacro",
  9525. height: math.unit(1567005010, "miles")
  9526. },
  9527. {
  9528. name: "Examacro",
  9529. height: math.unit(1425, "parsecs")
  9530. },
  9531. ]
  9532. ))
  9533. characterMakers.push(() => makeCharacter(
  9534. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9535. {
  9536. front: {
  9537. height: math.unit(400, "feet"),
  9538. weight: math.unit(44444444, "lb"),
  9539. name: "Front",
  9540. image: {
  9541. source: "./media/characters/major-colonel/front.svg"
  9542. }
  9543. },
  9544. back: {
  9545. height: math.unit(400, "feet"),
  9546. weight: math.unit(44444444, "lb"),
  9547. name: "Back",
  9548. image: {
  9549. source: "./media/characters/major-colonel/back.svg"
  9550. }
  9551. },
  9552. },
  9553. [
  9554. {
  9555. name: "Macro",
  9556. height: math.unit(400, "feet"),
  9557. default: true
  9558. },
  9559. ]
  9560. ))
  9561. characterMakers.push(() => makeCharacter(
  9562. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9563. {
  9564. catFront: {
  9565. height: math.unit(6, "feet"),
  9566. weight: math.unit(120, "lb"),
  9567. name: "Front (Cat Side)",
  9568. image: {
  9569. source: "./media/characters/axel-lycan/cat-front.svg",
  9570. extra: 430 / 402,
  9571. bottom: 43 / 472.35
  9572. }
  9573. },
  9574. catBack: {
  9575. height: math.unit(6, "feet"),
  9576. weight: math.unit(120, "lb"),
  9577. name: "Back (Cat Side)",
  9578. image: {
  9579. source: "./media/characters/axel-lycan/cat-back.svg",
  9580. extra: 447 / 419,
  9581. bottom: 23.3 / 469
  9582. }
  9583. },
  9584. wolfFront: {
  9585. height: math.unit(6, "feet"),
  9586. weight: math.unit(120, "lb"),
  9587. name: "Front (Wolf Side)",
  9588. image: {
  9589. source: "./media/characters/axel-lycan/wolf-front.svg",
  9590. extra: 485 / 456,
  9591. bottom: 19 / 504
  9592. }
  9593. },
  9594. wolfBack: {
  9595. height: math.unit(6, "feet"),
  9596. weight: math.unit(120, "lb"),
  9597. name: "Back (Wolf Side)",
  9598. image: {
  9599. source: "./media/characters/axel-lycan/wolf-back.svg",
  9600. extra: 475 / 438,
  9601. bottom: 39.2 / 514
  9602. }
  9603. },
  9604. },
  9605. [
  9606. {
  9607. name: "Macro",
  9608. height: math.unit(1, "km"),
  9609. default: true
  9610. },
  9611. ]
  9612. ))
  9613. characterMakers.push(() => makeCharacter(
  9614. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9615. {
  9616. front: {
  9617. height: math.unit(5 + 9 / 12, "feet"),
  9618. weight: math.unit(175, "lb"),
  9619. name: "Front",
  9620. image: {
  9621. source: "./media/characters/vanrel-hyena/front.svg",
  9622. extra: 1086 / 1010,
  9623. bottom: 0.04
  9624. }
  9625. },
  9626. },
  9627. [
  9628. {
  9629. name: "Normal",
  9630. height: math.unit(5 + 9 / 12, "feet"),
  9631. default: true
  9632. },
  9633. ]
  9634. ))
  9635. characterMakers.push(() => makeCharacter(
  9636. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9637. {
  9638. front: {
  9639. height: math.unit(6, "feet"),
  9640. weight: math.unit(103, "lb"),
  9641. name: "Front",
  9642. image: {
  9643. source: "./media/characters/abbott-absol/front.svg",
  9644. extra: 2010 / 1842
  9645. }
  9646. },
  9647. },
  9648. [
  9649. {
  9650. name: "Megamicro",
  9651. height: math.unit(0.1, "mm")
  9652. },
  9653. {
  9654. name: "Micro",
  9655. height: math.unit(1, "inch")
  9656. },
  9657. {
  9658. name: "Normal",
  9659. height: math.unit(6, "feet"),
  9660. default: true
  9661. },
  9662. ]
  9663. ))
  9664. characterMakers.push(() => makeCharacter(
  9665. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9666. {
  9667. front: {
  9668. height: math.unit(6, "feet"),
  9669. weight: math.unit(264, "lb"),
  9670. name: "Front",
  9671. image: {
  9672. source: "./media/characters/hector/front.svg",
  9673. extra: 2280 / 2130,
  9674. bottom: 0.07
  9675. }
  9676. },
  9677. },
  9678. [
  9679. {
  9680. name: "Normal",
  9681. height: math.unit(12.25, "foot"),
  9682. default: true
  9683. },
  9684. {
  9685. name: "Macro",
  9686. height: math.unit(160, "feet")
  9687. },
  9688. ]
  9689. ))
  9690. characterMakers.push(() => makeCharacter(
  9691. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9692. {
  9693. front: {
  9694. height: math.unit(6, "feet"),
  9695. weight: math.unit(150, "lb"),
  9696. name: "Front",
  9697. image: {
  9698. source: "./media/characters/sal/front.svg",
  9699. extra: 1846 / 1699,
  9700. bottom: 0.04
  9701. }
  9702. },
  9703. },
  9704. [
  9705. {
  9706. name: "Megamacro",
  9707. height: math.unit(10, "miles"),
  9708. default: true
  9709. },
  9710. ]
  9711. ))
  9712. characterMakers.push(() => makeCharacter(
  9713. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9714. {
  9715. front: {
  9716. height: math.unit(3, "meters"),
  9717. weight: math.unit(450, "kg"),
  9718. name: "front",
  9719. image: {
  9720. source: "./media/characters/ranger/front.svg",
  9721. extra: 2401 / 2243,
  9722. bottom: 0.05
  9723. }
  9724. },
  9725. },
  9726. [
  9727. {
  9728. name: "Normal",
  9729. height: math.unit(3, "meters"),
  9730. default: true
  9731. },
  9732. ]
  9733. ))
  9734. characterMakers.push(() => makeCharacter(
  9735. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9736. {
  9737. front: {
  9738. height: math.unit(14, "feet"),
  9739. weight: math.unit(800, "kg"),
  9740. name: "Front",
  9741. image: {
  9742. source: "./media/characters/theresa/front.svg",
  9743. extra: 3575 / 3346,
  9744. bottom: 0.03
  9745. }
  9746. },
  9747. },
  9748. [
  9749. {
  9750. name: "Normal",
  9751. height: math.unit(14, "feet"),
  9752. default: true
  9753. },
  9754. ]
  9755. ))
  9756. characterMakers.push(() => makeCharacter(
  9757. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9758. {
  9759. front: {
  9760. height: math.unit(6, "feet"),
  9761. weight: math.unit(3, "kg"),
  9762. name: "Front",
  9763. image: {
  9764. source: "./media/characters/ine/front.svg",
  9765. extra: 678 / 539,
  9766. bottom: 0.023
  9767. }
  9768. },
  9769. },
  9770. [
  9771. {
  9772. name: "Normal",
  9773. height: math.unit(2.265, "feet"),
  9774. default: true
  9775. },
  9776. ]
  9777. ))
  9778. characterMakers.push(() => makeCharacter(
  9779. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9780. {
  9781. front: {
  9782. height: math.unit(5, "feet"),
  9783. weight: math.unit(30, "kg"),
  9784. name: "Front",
  9785. image: {
  9786. source: "./media/characters/vial/front.svg",
  9787. extra: 1365 / 1277,
  9788. bottom: 0.04
  9789. }
  9790. },
  9791. },
  9792. [
  9793. {
  9794. name: "Normal",
  9795. height: math.unit(5, "feet"),
  9796. default: true
  9797. },
  9798. ]
  9799. ))
  9800. characterMakers.push(() => makeCharacter(
  9801. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9802. {
  9803. side: {
  9804. height: math.unit(3.4, "meters"),
  9805. weight: math.unit(1000, "lb"),
  9806. name: "Side",
  9807. image: {
  9808. source: "./media/characters/rovoska/side.svg",
  9809. extra: 4403 / 1515
  9810. }
  9811. },
  9812. },
  9813. [
  9814. {
  9815. name: "Normal",
  9816. height: math.unit(3.4, "meters"),
  9817. default: true
  9818. },
  9819. ]
  9820. ))
  9821. characterMakers.push(() => makeCharacter(
  9822. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9823. {
  9824. front: {
  9825. height: math.unit(8, "feet"),
  9826. weight: math.unit(315, "lb"),
  9827. name: "Front",
  9828. image: {
  9829. source: "./media/characters/gunner-rotthbauer/front.svg"
  9830. }
  9831. },
  9832. back: {
  9833. height: math.unit(8, "feet"),
  9834. weight: math.unit(315, "lb"),
  9835. name: "Back",
  9836. image: {
  9837. source: "./media/characters/gunner-rotthbauer/back.svg"
  9838. }
  9839. },
  9840. },
  9841. [
  9842. {
  9843. name: "Micro",
  9844. height: math.unit(3.5, "inches")
  9845. },
  9846. {
  9847. name: "Normal",
  9848. height: math.unit(8, "feet"),
  9849. default: true
  9850. },
  9851. {
  9852. name: "Macro",
  9853. height: math.unit(250, "feet")
  9854. },
  9855. {
  9856. name: "Megamacro",
  9857. height: math.unit(1, "AU")
  9858. },
  9859. ]
  9860. ))
  9861. characterMakers.push(() => makeCharacter(
  9862. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9863. {
  9864. front: {
  9865. height: math.unit(5 + 5 / 12, "feet"),
  9866. weight: math.unit(140, "lb"),
  9867. name: "Front",
  9868. image: {
  9869. source: "./media/characters/allatia/front.svg",
  9870. extra: 1227 / 1180,
  9871. bottom: 0.027
  9872. }
  9873. },
  9874. },
  9875. [
  9876. {
  9877. name: "Normal",
  9878. height: math.unit(5 + 5 / 12, "feet")
  9879. },
  9880. {
  9881. name: "Macro",
  9882. height: math.unit(250, "feet"),
  9883. default: true
  9884. },
  9885. {
  9886. name: "Megamacro",
  9887. height: math.unit(8, "miles")
  9888. }
  9889. ]
  9890. ))
  9891. characterMakers.push(() => makeCharacter(
  9892. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9893. {
  9894. front: {
  9895. height: math.unit(6, "feet"),
  9896. weight: math.unit(120, "lb"),
  9897. name: "Front",
  9898. image: {
  9899. source: "./media/characters/tene/front.svg",
  9900. extra: 1728 / 1578,
  9901. bottom: 0.022
  9902. }
  9903. },
  9904. stomping: {
  9905. height: math.unit(2.025, "meters"),
  9906. weight: math.unit(120, "lb"),
  9907. name: "Stomping",
  9908. image: {
  9909. source: "./media/characters/tene/stomping.svg",
  9910. extra: 938 / 873,
  9911. bottom: 0.01
  9912. }
  9913. },
  9914. sitting: {
  9915. height: math.unit(1, "meter"),
  9916. weight: math.unit(120, "lb"),
  9917. name: "Sitting",
  9918. image: {
  9919. source: "./media/characters/tene/sitting.svg",
  9920. extra: 437 / 415,
  9921. bottom: 0.1
  9922. }
  9923. },
  9924. feral: {
  9925. height: math.unit(3.9, "feet"),
  9926. weight: math.unit(250, "lb"),
  9927. name: "Feral",
  9928. image: {
  9929. source: "./media/characters/tene/feral.svg",
  9930. extra: 717 / 458,
  9931. bottom: 0.179
  9932. }
  9933. },
  9934. },
  9935. [
  9936. {
  9937. name: "Normal",
  9938. height: math.unit(6, "feet")
  9939. },
  9940. {
  9941. name: "Macro",
  9942. height: math.unit(300, "feet"),
  9943. default: true
  9944. },
  9945. {
  9946. name: "Megamacro",
  9947. height: math.unit(5, "miles")
  9948. },
  9949. ]
  9950. ))
  9951. characterMakers.push(() => makeCharacter(
  9952. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9953. {
  9954. side: {
  9955. height: math.unit(6, "feet"),
  9956. name: "Side",
  9957. image: {
  9958. source: "./media/characters/evander/side.svg",
  9959. extra: 877 / 477
  9960. }
  9961. },
  9962. },
  9963. [
  9964. {
  9965. name: "Normal",
  9966. height: math.unit(0.83, "meters"),
  9967. default: true
  9968. },
  9969. ]
  9970. ))
  9971. characterMakers.push(() => makeCharacter(
  9972. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9973. {
  9974. front: {
  9975. height: math.unit(12, "feet"),
  9976. weight: math.unit(1000, "lb"),
  9977. name: "Front",
  9978. image: {
  9979. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9980. extra: 1762 / 1611
  9981. }
  9982. },
  9983. back: {
  9984. height: math.unit(12, "feet"),
  9985. weight: math.unit(1000, "lb"),
  9986. name: "Back",
  9987. image: {
  9988. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9989. extra: 1762 / 1611
  9990. }
  9991. },
  9992. },
  9993. [
  9994. {
  9995. name: "Normal",
  9996. height: math.unit(12, "feet"),
  9997. default: true
  9998. },
  9999. {
  10000. name: "Kaiju",
  10001. height: math.unit(150, "feet")
  10002. },
  10003. ]
  10004. ))
  10005. characterMakers.push(() => makeCharacter(
  10006. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10007. {
  10008. front: {
  10009. height: math.unit(6, "feet"),
  10010. weight: math.unit(150, "lb"),
  10011. name: "Front",
  10012. image: {
  10013. source: "./media/characters/zero-alurus/front.svg"
  10014. }
  10015. },
  10016. back: {
  10017. height: math.unit(6, "feet"),
  10018. weight: math.unit(150, "lb"),
  10019. name: "Back",
  10020. image: {
  10021. source: "./media/characters/zero-alurus/back.svg"
  10022. }
  10023. },
  10024. },
  10025. [
  10026. {
  10027. name: "Normal",
  10028. height: math.unit(5 + 10 / 12, "feet")
  10029. },
  10030. {
  10031. name: "Macro",
  10032. height: math.unit(60, "feet"),
  10033. default: true
  10034. },
  10035. {
  10036. name: "Macro+",
  10037. height: math.unit(450, "feet")
  10038. },
  10039. ]
  10040. ))
  10041. characterMakers.push(() => makeCharacter(
  10042. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10043. {
  10044. front: {
  10045. height: math.unit(6, "feet"),
  10046. weight: math.unit(200, "lb"),
  10047. name: "Front",
  10048. image: {
  10049. source: "./media/characters/mega-shi/front.svg",
  10050. extra: 1279 / 1250,
  10051. bottom: 0.02
  10052. }
  10053. },
  10054. back: {
  10055. height: math.unit(6, "feet"),
  10056. weight: math.unit(200, "lb"),
  10057. name: "Back",
  10058. image: {
  10059. source: "./media/characters/mega-shi/back.svg",
  10060. extra: 1279 / 1250,
  10061. bottom: 0.02
  10062. }
  10063. },
  10064. },
  10065. [
  10066. {
  10067. name: "Micro",
  10068. height: math.unit(16 + 6 / 12, "feet")
  10069. },
  10070. {
  10071. name: "Third Dimension",
  10072. height: math.unit(40, "meters")
  10073. },
  10074. {
  10075. name: "Normal",
  10076. height: math.unit(660, "feet"),
  10077. default: true
  10078. },
  10079. {
  10080. name: "Megamacro",
  10081. height: math.unit(10, "miles")
  10082. },
  10083. {
  10084. name: "Planetary Launch",
  10085. height: math.unit(500, "miles")
  10086. },
  10087. {
  10088. name: "Interstellar",
  10089. height: math.unit(1e9, "miles")
  10090. },
  10091. {
  10092. name: "Leaving the Universe",
  10093. height: math.unit(1, "gigaparsec")
  10094. },
  10095. {
  10096. name: "Travelling Universes",
  10097. height: math.unit(30e15, "parsecs")
  10098. },
  10099. ]
  10100. ))
  10101. characterMakers.push(() => makeCharacter(
  10102. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10103. {
  10104. front: {
  10105. height: math.unit(5 + 4/12, "feet"),
  10106. weight: math.unit(120, "lb"),
  10107. name: "Front",
  10108. image: {
  10109. source: "./media/characters/odyssey/front.svg",
  10110. extra: 1747/1571,
  10111. bottom: 47/1794
  10112. }
  10113. },
  10114. side: {
  10115. height: math.unit(5.1, "feet"),
  10116. weight: math.unit(120, "lb"),
  10117. name: "Side",
  10118. image: {
  10119. source: "./media/characters/odyssey/side.svg",
  10120. extra: 1847/1619,
  10121. bottom: 47/1894
  10122. }
  10123. },
  10124. lounging: {
  10125. height: math.unit(1.464, "feet"),
  10126. weight: math.unit(120, "lb"),
  10127. name: "Lounging",
  10128. image: {
  10129. source: "./media/characters/odyssey/lounging.svg",
  10130. extra: 1235/837,
  10131. bottom: 551/1786
  10132. }
  10133. },
  10134. },
  10135. [
  10136. {
  10137. name: "Normal",
  10138. height: math.unit(5 + 4 / 12, "feet")
  10139. },
  10140. {
  10141. name: "Macro",
  10142. height: math.unit(1, "km")
  10143. },
  10144. {
  10145. name: "Megamacro",
  10146. height: math.unit(3000, "km")
  10147. },
  10148. {
  10149. name: "Gigamacro",
  10150. height: math.unit(1, "AU"),
  10151. default: true
  10152. },
  10153. {
  10154. name: "Omniversal",
  10155. height: math.unit(100e14, "lightyears")
  10156. },
  10157. ]
  10158. ))
  10159. characterMakers.push(() => makeCharacter(
  10160. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10161. {
  10162. front: {
  10163. height: math.unit(6, "feet"),
  10164. weight: math.unit(300, "lb"),
  10165. name: "Front",
  10166. image: {
  10167. source: "./media/characters/mekuto/front.svg",
  10168. extra: 921 / 832,
  10169. bottom: 0.03
  10170. }
  10171. },
  10172. hand: {
  10173. height: math.unit(6 / 10.24, "feet"),
  10174. name: "Hand",
  10175. image: {
  10176. source: "./media/characters/mekuto/hand.svg"
  10177. }
  10178. },
  10179. foot: {
  10180. height: math.unit(6 / 5.05, "feet"),
  10181. name: "Foot",
  10182. image: {
  10183. source: "./media/characters/mekuto/foot.svg"
  10184. }
  10185. },
  10186. },
  10187. [
  10188. {
  10189. name: "Minimicro",
  10190. height: math.unit(0.2, "inches")
  10191. },
  10192. {
  10193. name: "Micro",
  10194. height: math.unit(1.5, "inches")
  10195. },
  10196. {
  10197. name: "Normal",
  10198. height: math.unit(5 + 11 / 12, "feet"),
  10199. default: true
  10200. },
  10201. {
  10202. name: "Minimacro",
  10203. height: math.unit(17 + 9 / 12, "feet")
  10204. },
  10205. {
  10206. name: "Macro",
  10207. height: math.unit(177.5, "feet")
  10208. },
  10209. {
  10210. name: "Megamacro",
  10211. height: math.unit(152, "miles")
  10212. },
  10213. ]
  10214. ))
  10215. characterMakers.push(() => makeCharacter(
  10216. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10217. {
  10218. front: {
  10219. height: math.unit(6.5, "inches"),
  10220. weight: math.unit(13, "oz"),
  10221. name: "Front",
  10222. image: {
  10223. source: "./media/characters/dafydd-tomos/front.svg",
  10224. extra: 2990 / 2603,
  10225. bottom: 0.03
  10226. }
  10227. },
  10228. },
  10229. [
  10230. {
  10231. name: "Micro",
  10232. height: math.unit(6.5, "inches"),
  10233. default: true
  10234. },
  10235. ]
  10236. ))
  10237. characterMakers.push(() => makeCharacter(
  10238. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10239. {
  10240. front: {
  10241. height: math.unit(6, "feet"),
  10242. weight: math.unit(150, "lb"),
  10243. name: "Front",
  10244. image: {
  10245. source: "./media/characters/splinter/front.svg",
  10246. extra: 2990 / 2882,
  10247. bottom: 0.04
  10248. }
  10249. },
  10250. back: {
  10251. height: math.unit(6, "feet"),
  10252. weight: math.unit(150, "lb"),
  10253. name: "Back",
  10254. image: {
  10255. source: "./media/characters/splinter/back.svg",
  10256. extra: 2990 / 2882,
  10257. bottom: 0.04
  10258. }
  10259. },
  10260. },
  10261. [
  10262. {
  10263. name: "Normal",
  10264. height: math.unit(6, "feet")
  10265. },
  10266. {
  10267. name: "Macro",
  10268. height: math.unit(230, "meters"),
  10269. default: true
  10270. },
  10271. ]
  10272. ))
  10273. characterMakers.push(() => makeCharacter(
  10274. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10275. {
  10276. front: {
  10277. height: math.unit(4 + 10 / 12, "feet"),
  10278. weight: math.unit(480, "lb"),
  10279. name: "Front",
  10280. image: {
  10281. source: "./media/characters/snow-gabumon/front.svg",
  10282. extra: 1140 / 963,
  10283. bottom: 0.058
  10284. }
  10285. },
  10286. back: {
  10287. height: math.unit(4 + 10 / 12, "feet"),
  10288. weight: math.unit(480, "lb"),
  10289. name: "Back",
  10290. image: {
  10291. source: "./media/characters/snow-gabumon/back.svg",
  10292. extra: 1115 / 962,
  10293. bottom: 0.041
  10294. }
  10295. },
  10296. frontUndresed: {
  10297. height: math.unit(4 + 10 / 12, "feet"),
  10298. weight: math.unit(480, "lb"),
  10299. name: "Front (Undressed)",
  10300. image: {
  10301. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10302. extra: 1061 / 960,
  10303. bottom: 0.045
  10304. }
  10305. },
  10306. },
  10307. [
  10308. {
  10309. name: "Micro",
  10310. height: math.unit(1, "inch")
  10311. },
  10312. {
  10313. name: "Normal",
  10314. height: math.unit(4 + 10 / 12, "feet"),
  10315. default: true
  10316. },
  10317. {
  10318. name: "Macro",
  10319. height: math.unit(200, "feet")
  10320. },
  10321. {
  10322. name: "Megamacro",
  10323. height: math.unit(120, "miles")
  10324. },
  10325. {
  10326. name: "Gigamacro",
  10327. height: math.unit(9800, "miles")
  10328. },
  10329. ]
  10330. ))
  10331. characterMakers.push(() => makeCharacter(
  10332. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10333. {
  10334. front: {
  10335. height: math.unit(1.7, "meters"),
  10336. weight: math.unit(140, "lb"),
  10337. name: "Front",
  10338. image: {
  10339. source: "./media/characters/moody/front.svg",
  10340. extra: 3226 / 3007,
  10341. bottom: 0.087
  10342. }
  10343. },
  10344. },
  10345. [
  10346. {
  10347. name: "Micro",
  10348. height: math.unit(1, "mm")
  10349. },
  10350. {
  10351. name: "Normal",
  10352. height: math.unit(1.7, "meters"),
  10353. default: true
  10354. },
  10355. {
  10356. name: "Macro",
  10357. height: math.unit(80, "meters")
  10358. },
  10359. {
  10360. name: "Macro+",
  10361. height: math.unit(500, "meters")
  10362. },
  10363. ]
  10364. ))
  10365. characterMakers.push(() => makeCharacter(
  10366. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10367. {
  10368. front: {
  10369. height: math.unit(6, "feet"),
  10370. weight: math.unit(150, "lb"),
  10371. name: "Front",
  10372. image: {
  10373. source: "./media/characters/zyas/front.svg",
  10374. extra: 1180 / 1120,
  10375. bottom: 0.045
  10376. }
  10377. },
  10378. },
  10379. [
  10380. {
  10381. name: "Normal",
  10382. height: math.unit(10, "feet"),
  10383. default: true
  10384. },
  10385. {
  10386. name: "Macro",
  10387. height: math.unit(500, "feet")
  10388. },
  10389. {
  10390. name: "Megamacro",
  10391. height: math.unit(5, "miles")
  10392. },
  10393. {
  10394. name: "Teramacro",
  10395. height: math.unit(150000, "miles")
  10396. },
  10397. ]
  10398. ))
  10399. characterMakers.push(() => makeCharacter(
  10400. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10401. {
  10402. front: {
  10403. height: math.unit(6, "feet"),
  10404. weight: math.unit(150, "lb"),
  10405. name: "Front",
  10406. image: {
  10407. source: "./media/characters/cuon/front.svg",
  10408. extra: 1390 / 1320,
  10409. bottom: 0.008
  10410. }
  10411. },
  10412. },
  10413. [
  10414. {
  10415. name: "Micro",
  10416. height: math.unit(3, "inches")
  10417. },
  10418. {
  10419. name: "Normal",
  10420. height: math.unit(18 + 9 / 12, "feet"),
  10421. default: true
  10422. },
  10423. {
  10424. name: "Macro",
  10425. height: math.unit(360, "feet")
  10426. },
  10427. {
  10428. name: "Megamacro",
  10429. height: math.unit(360, "miles")
  10430. },
  10431. ]
  10432. ))
  10433. characterMakers.push(() => makeCharacter(
  10434. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10435. {
  10436. front: {
  10437. height: math.unit(2.4, "meters"),
  10438. weight: math.unit(70, "kg"),
  10439. name: "Front",
  10440. image: {
  10441. source: "./media/characters/nyanuxk/front.svg",
  10442. extra: 1172 / 1084,
  10443. bottom: 0.065
  10444. }
  10445. },
  10446. side: {
  10447. height: math.unit(2.4, "meters"),
  10448. weight: math.unit(70, "kg"),
  10449. name: "Side",
  10450. image: {
  10451. source: "./media/characters/nyanuxk/side.svg",
  10452. extra: 1190 / 1132,
  10453. bottom: 0.007
  10454. }
  10455. },
  10456. back: {
  10457. height: math.unit(2.4, "meters"),
  10458. weight: math.unit(70, "kg"),
  10459. name: "Back",
  10460. image: {
  10461. source: "./media/characters/nyanuxk/back.svg",
  10462. extra: 1200 / 1141,
  10463. bottom: 0.015
  10464. }
  10465. },
  10466. foot: {
  10467. height: math.unit(0.52, "meters"),
  10468. name: "Foot",
  10469. image: {
  10470. source: "./media/characters/nyanuxk/foot.svg"
  10471. }
  10472. },
  10473. },
  10474. [
  10475. {
  10476. name: "Micro",
  10477. height: math.unit(2, "cm")
  10478. },
  10479. {
  10480. name: "Normal",
  10481. height: math.unit(2.4, "meters"),
  10482. default: true
  10483. },
  10484. {
  10485. name: "Smaller Macro",
  10486. height: math.unit(120, "meters")
  10487. },
  10488. {
  10489. name: "Bigger Macro",
  10490. height: math.unit(1.2, "km")
  10491. },
  10492. {
  10493. name: "Megamacro",
  10494. height: math.unit(15, "kilometers")
  10495. },
  10496. {
  10497. name: "Gigamacro",
  10498. height: math.unit(2000, "km")
  10499. },
  10500. {
  10501. name: "Teramacro",
  10502. height: math.unit(500000, "km")
  10503. },
  10504. ]
  10505. ))
  10506. characterMakers.push(() => makeCharacter(
  10507. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10508. {
  10509. side: {
  10510. height: math.unit(6, "feet"),
  10511. name: "Side",
  10512. image: {
  10513. source: "./media/characters/ailbhe/side.svg",
  10514. extra: 757 / 464,
  10515. bottom: 0.041
  10516. }
  10517. },
  10518. },
  10519. [
  10520. {
  10521. name: "Normal",
  10522. height: math.unit(1.07, "meters"),
  10523. default: true
  10524. },
  10525. ]
  10526. ))
  10527. characterMakers.push(() => makeCharacter(
  10528. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10529. {
  10530. front: {
  10531. height: math.unit(6, "feet"),
  10532. weight: math.unit(120, "kg"),
  10533. name: "Front",
  10534. image: {
  10535. source: "./media/characters/zevulfius/front.svg",
  10536. extra: 965 / 903
  10537. }
  10538. },
  10539. side: {
  10540. height: math.unit(6, "feet"),
  10541. weight: math.unit(120, "kg"),
  10542. name: "Side",
  10543. image: {
  10544. source: "./media/characters/zevulfius/side.svg",
  10545. extra: 939 / 900
  10546. }
  10547. },
  10548. back: {
  10549. height: math.unit(6, "feet"),
  10550. weight: math.unit(120, "kg"),
  10551. name: "Back",
  10552. image: {
  10553. source: "./media/characters/zevulfius/back.svg",
  10554. extra: 918 / 854,
  10555. bottom: 0.005
  10556. }
  10557. },
  10558. foot: {
  10559. height: math.unit(6 / 3.72, "feet"),
  10560. name: "Foot",
  10561. image: {
  10562. source: "./media/characters/zevulfius/foot.svg"
  10563. }
  10564. },
  10565. },
  10566. [
  10567. {
  10568. name: "Macro",
  10569. height: math.unit(750, "meters")
  10570. },
  10571. {
  10572. name: "Megamacro",
  10573. height: math.unit(20, "km"),
  10574. default: true
  10575. },
  10576. {
  10577. name: "Gigamacro",
  10578. height: math.unit(2000, "km")
  10579. },
  10580. {
  10581. name: "Teramacro",
  10582. height: math.unit(250000, "km")
  10583. },
  10584. ]
  10585. ))
  10586. characterMakers.push(() => makeCharacter(
  10587. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10588. {
  10589. front: {
  10590. height: math.unit(100, "feet"),
  10591. weight: math.unit(350, "kg"),
  10592. name: "Front",
  10593. image: {
  10594. source: "./media/characters/rikes/front.svg",
  10595. extra: 1565 / 1483,
  10596. bottom: 0.017
  10597. }
  10598. },
  10599. },
  10600. [
  10601. {
  10602. name: "Macro",
  10603. height: math.unit(100, "feet"),
  10604. default: true
  10605. },
  10606. ]
  10607. ))
  10608. characterMakers.push(() => makeCharacter(
  10609. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10610. {
  10611. front: {
  10612. height: math.unit(8, "feet"),
  10613. weight: math.unit(356, "lb"),
  10614. name: "Front",
  10615. image: {
  10616. source: "./media/characters/adam-silver-mane/front.svg",
  10617. extra: 1036/937,
  10618. bottom: 63/1099
  10619. }
  10620. },
  10621. side: {
  10622. height: math.unit(8, "feet"),
  10623. weight: math.unit(356, "lb"),
  10624. name: "Side",
  10625. image: {
  10626. source: "./media/characters/adam-silver-mane/side.svg",
  10627. extra: 997/901,
  10628. bottom: 59/1056
  10629. }
  10630. },
  10631. frontNsfw: {
  10632. height: math.unit(8, "feet"),
  10633. weight: math.unit(356, "lb"),
  10634. name: "Front (NSFW)",
  10635. image: {
  10636. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10637. extra: 1036/937,
  10638. bottom: 63/1099
  10639. }
  10640. },
  10641. sideNsfw: {
  10642. height: math.unit(8, "feet"),
  10643. weight: math.unit(356, "lb"),
  10644. name: "Side (NSFW)",
  10645. image: {
  10646. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10647. extra: 997/901,
  10648. bottom: 59/1056
  10649. }
  10650. },
  10651. dick: {
  10652. height: math.unit(2.1, "feet"),
  10653. name: "Dick",
  10654. image: {
  10655. source: "./media/characters/adam-silver-mane/dick.svg"
  10656. }
  10657. },
  10658. taur: {
  10659. height: math.unit(16, "feet"),
  10660. weight: math.unit(1500, "kg"),
  10661. name: "Taur",
  10662. image: {
  10663. source: "./media/characters/adam-silver-mane/taur.svg",
  10664. extra: 1713 / 1571,
  10665. bottom: 0.01
  10666. }
  10667. },
  10668. },
  10669. [
  10670. {
  10671. name: "Normal",
  10672. height: math.unit(8, "feet")
  10673. },
  10674. {
  10675. name: "Minimacro",
  10676. height: math.unit(80, "feet")
  10677. },
  10678. {
  10679. name: "MDA",
  10680. height: math.unit(80, "meters")
  10681. },
  10682. {
  10683. name: "Macro",
  10684. height: math.unit(800, "feet"),
  10685. default: true
  10686. },
  10687. {
  10688. name: "Megamacro",
  10689. height: math.unit(8000, "feet")
  10690. },
  10691. {
  10692. name: "Gigamacro",
  10693. height: math.unit(800, "miles")
  10694. },
  10695. {
  10696. name: "Teramacro",
  10697. height: math.unit(80000, "miles")
  10698. },
  10699. {
  10700. name: "Celestial",
  10701. height: math.unit(8e6, "miles")
  10702. },
  10703. {
  10704. name: "Star Dragon",
  10705. height: math.unit(800000, "parsecs")
  10706. },
  10707. {
  10708. name: "Godly",
  10709. height: math.unit(800, "teraparsecs")
  10710. },
  10711. ]
  10712. ))
  10713. characterMakers.push(() => makeCharacter(
  10714. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10715. {
  10716. front: {
  10717. height: math.unit(6, "feet"),
  10718. weight: math.unit(150, "lb"),
  10719. name: "Front",
  10720. image: {
  10721. source: "./media/characters/ky'owin/front.svg",
  10722. extra: 3888 / 3068,
  10723. bottom: 0.015
  10724. }
  10725. },
  10726. },
  10727. [
  10728. {
  10729. name: "Normal",
  10730. height: math.unit(6 + 8 / 12, "feet")
  10731. },
  10732. {
  10733. name: "Large",
  10734. height: math.unit(68, "feet")
  10735. },
  10736. {
  10737. name: "Macro",
  10738. height: math.unit(132, "feet")
  10739. },
  10740. {
  10741. name: "Macro+",
  10742. height: math.unit(340, "feet")
  10743. },
  10744. {
  10745. name: "Macro++",
  10746. height: math.unit(680, "feet"),
  10747. default: true
  10748. },
  10749. {
  10750. name: "Megamacro",
  10751. height: math.unit(1, "mile")
  10752. },
  10753. {
  10754. name: "Megamacro+",
  10755. height: math.unit(10, "miles")
  10756. },
  10757. ]
  10758. ))
  10759. characterMakers.push(() => makeCharacter(
  10760. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10761. {
  10762. front: {
  10763. height: math.unit(4, "feet"),
  10764. weight: math.unit(50, "lb"),
  10765. name: "Front",
  10766. image: {
  10767. source: "./media/characters/mal/front.svg",
  10768. extra: 785 / 724,
  10769. bottom: 0.07
  10770. }
  10771. },
  10772. },
  10773. [
  10774. {
  10775. name: "Micro",
  10776. height: math.unit(4, "inches")
  10777. },
  10778. {
  10779. name: "Normal",
  10780. height: math.unit(4, "feet"),
  10781. default: true
  10782. },
  10783. {
  10784. name: "Macro",
  10785. height: math.unit(200, "feet")
  10786. },
  10787. ]
  10788. ))
  10789. characterMakers.push(() => makeCharacter(
  10790. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10791. {
  10792. front: {
  10793. height: math.unit(6, "feet"),
  10794. weight: math.unit(150, "lb"),
  10795. name: "Front",
  10796. image: {
  10797. source: "./media/characters/jordan-deware/front.svg",
  10798. extra: 1191 / 1012
  10799. }
  10800. },
  10801. },
  10802. [
  10803. {
  10804. name: "Nano",
  10805. height: math.unit(0.01, "mm")
  10806. },
  10807. {
  10808. name: "Minimicro",
  10809. height: math.unit(1, "mm")
  10810. },
  10811. {
  10812. name: "Micro",
  10813. height: math.unit(0.5, "inches")
  10814. },
  10815. {
  10816. name: "Normal",
  10817. height: math.unit(4, "feet"),
  10818. default: true
  10819. },
  10820. {
  10821. name: "Minimacro",
  10822. height: math.unit(40, "meters")
  10823. },
  10824. {
  10825. name: "Small Macro",
  10826. height: math.unit(400, "meters")
  10827. },
  10828. {
  10829. name: "Macro",
  10830. height: math.unit(4, "miles")
  10831. },
  10832. {
  10833. name: "Megamacro",
  10834. height: math.unit(40, "miles")
  10835. },
  10836. {
  10837. name: "Megamacro+",
  10838. height: math.unit(400, "miles")
  10839. },
  10840. {
  10841. name: "Gigamacro",
  10842. height: math.unit(400000, "miles")
  10843. },
  10844. ]
  10845. ))
  10846. characterMakers.push(() => makeCharacter(
  10847. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10848. {
  10849. side: {
  10850. height: math.unit(6, "feet"),
  10851. weight: math.unit(150, "lb"),
  10852. name: "Side",
  10853. image: {
  10854. source: "./media/characters/kimiko/side.svg",
  10855. extra: 600 / 358
  10856. }
  10857. },
  10858. },
  10859. [
  10860. {
  10861. name: "Normal",
  10862. height: math.unit(15, "feet"),
  10863. default: true
  10864. },
  10865. {
  10866. name: "Macro",
  10867. height: math.unit(220, "feet")
  10868. },
  10869. {
  10870. name: "Macro+",
  10871. height: math.unit(1450, "feet")
  10872. },
  10873. {
  10874. name: "Megamacro",
  10875. height: math.unit(11500, "feet")
  10876. },
  10877. {
  10878. name: "Gigamacro",
  10879. height: math.unit(9500, "miles")
  10880. },
  10881. {
  10882. name: "Teramacro",
  10883. height: math.unit(2208005005, "miles")
  10884. },
  10885. {
  10886. name: "Examacro",
  10887. height: math.unit(2750, "parsecs")
  10888. },
  10889. {
  10890. name: "Zettamacro",
  10891. height: math.unit(101500, "parsecs")
  10892. },
  10893. ]
  10894. ))
  10895. characterMakers.push(() => makeCharacter(
  10896. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10897. {
  10898. front: {
  10899. height: math.unit(6, "feet"),
  10900. weight: math.unit(70, "kg"),
  10901. name: "Front",
  10902. image: {
  10903. source: "./media/characters/andrew-sleepy/front.svg"
  10904. }
  10905. },
  10906. side: {
  10907. height: math.unit(6, "feet"),
  10908. weight: math.unit(70, "kg"),
  10909. name: "Side",
  10910. image: {
  10911. source: "./media/characters/andrew-sleepy/side.svg"
  10912. }
  10913. },
  10914. },
  10915. [
  10916. {
  10917. name: "Micro",
  10918. height: math.unit(1, "mm"),
  10919. default: true
  10920. },
  10921. ]
  10922. ))
  10923. characterMakers.push(() => makeCharacter(
  10924. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10925. {
  10926. front: {
  10927. height: math.unit(6, "feet"),
  10928. weight: math.unit(150, "lb"),
  10929. name: "Front",
  10930. image: {
  10931. source: "./media/characters/judio/front.svg",
  10932. extra: 1258 / 1110
  10933. }
  10934. },
  10935. },
  10936. [
  10937. {
  10938. name: "Normal",
  10939. height: math.unit(5 + 6 / 12, "feet")
  10940. },
  10941. {
  10942. name: "Macro",
  10943. height: math.unit(1000, "feet"),
  10944. default: true
  10945. },
  10946. {
  10947. name: "Megamacro",
  10948. height: math.unit(10, "miles")
  10949. },
  10950. ]
  10951. ))
  10952. characterMakers.push(() => makeCharacter(
  10953. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10954. {
  10955. front: {
  10956. height: math.unit(6, "feet"),
  10957. weight: math.unit(68, "kg"),
  10958. name: "Front",
  10959. image: {
  10960. source: "./media/characters/nomaxice/front.svg",
  10961. extra: 1498 / 1073,
  10962. bottom: 0.075
  10963. }
  10964. },
  10965. foot: {
  10966. height: math.unit(1.1, "feet"),
  10967. name: "Foot",
  10968. image: {
  10969. source: "./media/characters/nomaxice/foot.svg"
  10970. }
  10971. },
  10972. },
  10973. [
  10974. {
  10975. name: "Micro",
  10976. height: math.unit(8, "cm")
  10977. },
  10978. {
  10979. name: "Norm",
  10980. height: math.unit(1.82, "m")
  10981. },
  10982. {
  10983. name: "Norm+",
  10984. height: math.unit(8.8, "feet")
  10985. },
  10986. {
  10987. name: "Big",
  10988. height: math.unit(8, "meters"),
  10989. default: true
  10990. },
  10991. {
  10992. name: "Macro",
  10993. height: math.unit(18, "meters")
  10994. },
  10995. {
  10996. name: "Macro+",
  10997. height: math.unit(88, "meters")
  10998. },
  10999. ]
  11000. ))
  11001. characterMakers.push(() => makeCharacter(
  11002. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11003. {
  11004. front: {
  11005. height: math.unit(12, "feet"),
  11006. weight: math.unit(1.5, "tons"),
  11007. name: "Front",
  11008. image: {
  11009. source: "./media/characters/dydros/front.svg",
  11010. extra: 863 / 800,
  11011. bottom: 0.015
  11012. }
  11013. },
  11014. back: {
  11015. height: math.unit(12, "feet"),
  11016. weight: math.unit(1.5, "tons"),
  11017. name: "Back",
  11018. image: {
  11019. source: "./media/characters/dydros/back.svg",
  11020. extra: 900 / 843,
  11021. bottom: 0.005
  11022. }
  11023. },
  11024. },
  11025. [
  11026. {
  11027. name: "Normal",
  11028. height: math.unit(12, "feet"),
  11029. default: true
  11030. },
  11031. ]
  11032. ))
  11033. characterMakers.push(() => makeCharacter(
  11034. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11035. {
  11036. front: {
  11037. height: math.unit(6, "feet"),
  11038. weight: math.unit(100, "kg"),
  11039. name: "Front",
  11040. image: {
  11041. source: "./media/characters/riggi/front.svg",
  11042. extra: 5787 / 5303
  11043. }
  11044. },
  11045. hyper: {
  11046. height: math.unit(6 * 5 / 3, "feet"),
  11047. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11048. name: "Hyper",
  11049. image: {
  11050. source: "./media/characters/riggi/hyper.svg",
  11051. extra: 3595 / 3485
  11052. }
  11053. },
  11054. },
  11055. [
  11056. {
  11057. name: "Small Macro",
  11058. height: math.unit(50, "feet")
  11059. },
  11060. {
  11061. name: "Default",
  11062. height: math.unit(200, "feet"),
  11063. default: true
  11064. },
  11065. {
  11066. name: "Loom",
  11067. height: math.unit(10000, "feet")
  11068. },
  11069. {
  11070. name: "Cruising Altitude",
  11071. height: math.unit(30000, "feet")
  11072. },
  11073. {
  11074. name: "Megamacro",
  11075. height: math.unit(100, "miles")
  11076. },
  11077. {
  11078. name: "Continent Sized",
  11079. height: math.unit(2800, "miles")
  11080. },
  11081. {
  11082. name: "Earth Sized",
  11083. height: math.unit(8000, "miles")
  11084. },
  11085. ]
  11086. ))
  11087. characterMakers.push(() => makeCharacter(
  11088. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11089. {
  11090. front: {
  11091. height: math.unit(6, "feet"),
  11092. weight: math.unit(250, "lb"),
  11093. name: "Front",
  11094. image: {
  11095. source: "./media/characters/alexi/front.svg",
  11096. extra: 3483 / 3291,
  11097. bottom: 0.04
  11098. }
  11099. },
  11100. back: {
  11101. height: math.unit(6, "feet"),
  11102. weight: math.unit(250, "lb"),
  11103. name: "Back",
  11104. image: {
  11105. source: "./media/characters/alexi/back.svg",
  11106. extra: 3533 / 3356,
  11107. bottom: 0.021
  11108. }
  11109. },
  11110. frontTransforming: {
  11111. height: math.unit(8.58, "feet"),
  11112. weight: math.unit(1300, "lb"),
  11113. name: "Transforming",
  11114. image: {
  11115. source: "./media/characters/alexi/front-transforming.svg",
  11116. extra: 437 / 409,
  11117. bottom: 19 / 458.66
  11118. }
  11119. },
  11120. frontTransformed: {
  11121. height: math.unit(12.5, "feet"),
  11122. weight: math.unit(4000, "lb"),
  11123. name: "Transformed",
  11124. image: {
  11125. source: "./media/characters/alexi/front-transformed.svg",
  11126. extra: 639 / 614,
  11127. bottom: 30.55 / 671
  11128. }
  11129. },
  11130. },
  11131. [
  11132. {
  11133. name: "Normal",
  11134. height: math.unit(14, "feet"),
  11135. default: true
  11136. },
  11137. {
  11138. name: "Minimacro",
  11139. height: math.unit(30, "meters")
  11140. },
  11141. {
  11142. name: "Macro",
  11143. height: math.unit(500, "meters")
  11144. },
  11145. {
  11146. name: "Megamacro",
  11147. height: math.unit(9000, "km")
  11148. },
  11149. {
  11150. name: "Teramacro",
  11151. height: math.unit(384000, "km")
  11152. },
  11153. ]
  11154. ))
  11155. characterMakers.push(() => makeCharacter(
  11156. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11157. {
  11158. front: {
  11159. height: math.unit(6, "feet"),
  11160. weight: math.unit(150, "lb"),
  11161. name: "Front",
  11162. image: {
  11163. source: "./media/characters/kayroo/front.svg",
  11164. extra: 1153 / 1038,
  11165. bottom: 0.06
  11166. }
  11167. },
  11168. foot: {
  11169. height: math.unit(6, "feet"),
  11170. weight: math.unit(150, "lb"),
  11171. name: "Foot",
  11172. image: {
  11173. source: "./media/characters/kayroo/foot.svg"
  11174. }
  11175. },
  11176. },
  11177. [
  11178. {
  11179. name: "Normal",
  11180. height: math.unit(8, "feet"),
  11181. default: true
  11182. },
  11183. {
  11184. name: "Minimacro",
  11185. height: math.unit(250, "feet")
  11186. },
  11187. {
  11188. name: "Macro",
  11189. height: math.unit(2800, "feet")
  11190. },
  11191. {
  11192. name: "Megamacro",
  11193. height: math.unit(5200, "feet")
  11194. },
  11195. {
  11196. name: "Gigamacro",
  11197. height: math.unit(27000, "feet")
  11198. },
  11199. {
  11200. name: "Omega",
  11201. height: math.unit(45000, "feet")
  11202. },
  11203. ]
  11204. ))
  11205. characterMakers.push(() => makeCharacter(
  11206. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11207. {
  11208. front: {
  11209. height: math.unit(18, "feet"),
  11210. weight: math.unit(5800, "lb"),
  11211. name: "Front",
  11212. image: {
  11213. source: "./media/characters/rhys/front.svg",
  11214. extra: 3386 / 3090,
  11215. bottom: 0.07
  11216. }
  11217. },
  11218. },
  11219. [
  11220. {
  11221. name: "Normal",
  11222. height: math.unit(18, "feet"),
  11223. default: true
  11224. },
  11225. {
  11226. name: "Working Size",
  11227. height: math.unit(200, "feet")
  11228. },
  11229. {
  11230. name: "Demolition Size",
  11231. height: math.unit(2000, "feet")
  11232. },
  11233. {
  11234. name: "Maximum Licensed Size",
  11235. height: math.unit(5, "miles")
  11236. },
  11237. {
  11238. name: "Maximum Observed Size",
  11239. height: math.unit(10, "yottameters")
  11240. },
  11241. ]
  11242. ))
  11243. characterMakers.push(() => makeCharacter(
  11244. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11245. {
  11246. front: {
  11247. height: math.unit(6, "feet"),
  11248. weight: math.unit(250, "lb"),
  11249. name: "Front",
  11250. image: {
  11251. source: "./media/characters/toto/front.svg",
  11252. extra: 527 / 479,
  11253. bottom: 0.05
  11254. }
  11255. },
  11256. },
  11257. [
  11258. {
  11259. name: "Micro",
  11260. height: math.unit(3, "feet")
  11261. },
  11262. {
  11263. name: "Normal",
  11264. height: math.unit(10, "feet")
  11265. },
  11266. {
  11267. name: "Macro",
  11268. height: math.unit(150, "feet"),
  11269. default: true
  11270. },
  11271. {
  11272. name: "Megamacro",
  11273. height: math.unit(1200, "feet")
  11274. },
  11275. ]
  11276. ))
  11277. characterMakers.push(() => makeCharacter(
  11278. { name: "King", species: ["lion"], tags: ["anthro"] },
  11279. {
  11280. back: {
  11281. height: math.unit(6, "feet"),
  11282. weight: math.unit(150, "lb"),
  11283. name: "Back",
  11284. image: {
  11285. source: "./media/characters/king/back.svg"
  11286. }
  11287. },
  11288. },
  11289. [
  11290. {
  11291. name: "Micro",
  11292. height: math.unit(2, "inches")
  11293. },
  11294. {
  11295. name: "Normal",
  11296. height: math.unit(8, "feet")
  11297. },
  11298. {
  11299. name: "Macro",
  11300. height: math.unit(200, "feet"),
  11301. default: true
  11302. },
  11303. {
  11304. name: "Megamacro",
  11305. height: math.unit(50, "miles")
  11306. },
  11307. ]
  11308. ))
  11309. characterMakers.push(() => makeCharacter(
  11310. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11311. {
  11312. front: {
  11313. height: math.unit(11, "feet"),
  11314. weight: math.unit(1400, "lb"),
  11315. name: "Front",
  11316. image: {
  11317. source: "./media/characters/cordite/front.svg",
  11318. extra: 1919/1827,
  11319. bottom: 40/1959
  11320. }
  11321. },
  11322. side: {
  11323. height: math.unit(11, "feet"),
  11324. weight: math.unit(1400, "lb"),
  11325. name: "Side",
  11326. image: {
  11327. source: "./media/characters/cordite/side.svg",
  11328. extra: 1908/1793,
  11329. bottom: 38/1946
  11330. }
  11331. },
  11332. back: {
  11333. height: math.unit(11, "feet"),
  11334. weight: math.unit(1400, "lb"),
  11335. name: "Back",
  11336. image: {
  11337. source: "./media/characters/cordite/back.svg",
  11338. extra: 1938/1837,
  11339. bottom: 10/1948
  11340. }
  11341. },
  11342. feral: {
  11343. height: math.unit(2, "feet"),
  11344. weight: math.unit(90, "lb"),
  11345. name: "Feral",
  11346. image: {
  11347. source: "./media/characters/cordite/feral.svg",
  11348. extra: 1260 / 755,
  11349. bottom: 0.05
  11350. }
  11351. },
  11352. },
  11353. [
  11354. {
  11355. name: "Normal",
  11356. height: math.unit(11, "feet"),
  11357. default: true
  11358. },
  11359. ]
  11360. ))
  11361. characterMakers.push(() => makeCharacter(
  11362. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11363. {
  11364. front: {
  11365. height: math.unit(6, "feet"),
  11366. weight: math.unit(150, "lb"),
  11367. name: "Front",
  11368. image: {
  11369. source: "./media/characters/pianostrong/front.svg",
  11370. extra: 6577 / 6254,
  11371. bottom: 0.02
  11372. }
  11373. },
  11374. side: {
  11375. height: math.unit(6, "feet"),
  11376. weight: math.unit(150, "lb"),
  11377. name: "Side",
  11378. image: {
  11379. source: "./media/characters/pianostrong/side.svg",
  11380. extra: 6106 / 5730
  11381. }
  11382. },
  11383. back: {
  11384. height: math.unit(6, "feet"),
  11385. weight: math.unit(150, "lb"),
  11386. name: "Back",
  11387. image: {
  11388. source: "./media/characters/pianostrong/back.svg",
  11389. extra: 6085 / 5733,
  11390. bottom: 0.01
  11391. }
  11392. },
  11393. },
  11394. [
  11395. {
  11396. name: "Macro",
  11397. height: math.unit(100, "feet")
  11398. },
  11399. {
  11400. name: "Macro+",
  11401. height: math.unit(300, "feet"),
  11402. default: true
  11403. },
  11404. {
  11405. name: "Macro++",
  11406. height: math.unit(1000, "feet")
  11407. },
  11408. ]
  11409. ))
  11410. characterMakers.push(() => makeCharacter(
  11411. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11412. {
  11413. front: {
  11414. height: math.unit(6, "feet"),
  11415. weight: math.unit(150, "lb"),
  11416. name: "Front",
  11417. image: {
  11418. source: "./media/characters/kona/front.svg",
  11419. extra: 2960 / 2629,
  11420. bottom: 0.005
  11421. }
  11422. },
  11423. },
  11424. [
  11425. {
  11426. name: "Normal",
  11427. height: math.unit(11 + 8 / 12, "feet")
  11428. },
  11429. {
  11430. name: "Macro",
  11431. height: math.unit(850, "feet"),
  11432. default: true
  11433. },
  11434. {
  11435. name: "Macro+",
  11436. height: math.unit(1.5, "km"),
  11437. default: true
  11438. },
  11439. {
  11440. name: "Megamacro",
  11441. height: math.unit(80, "miles")
  11442. },
  11443. {
  11444. name: "Gigamacro",
  11445. height: math.unit(3500, "miles")
  11446. },
  11447. ]
  11448. ))
  11449. characterMakers.push(() => makeCharacter(
  11450. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11451. {
  11452. side: {
  11453. height: math.unit(1.9, "meters"),
  11454. weight: math.unit(326, "kg"),
  11455. name: "Side",
  11456. image: {
  11457. source: "./media/characters/levi/side.svg",
  11458. extra: 1704 / 1334,
  11459. bottom: 0.02
  11460. }
  11461. },
  11462. },
  11463. [
  11464. {
  11465. name: "Normal",
  11466. height: math.unit(1.9, "meters"),
  11467. default: true
  11468. },
  11469. {
  11470. name: "Macro",
  11471. height: math.unit(20, "meters")
  11472. },
  11473. {
  11474. name: "Macro+",
  11475. height: math.unit(200, "meters")
  11476. },
  11477. {
  11478. name: "Megamacro",
  11479. height: math.unit(2, "km")
  11480. },
  11481. {
  11482. name: "Megamacro+",
  11483. height: math.unit(20, "km")
  11484. },
  11485. {
  11486. name: "Gigamacro",
  11487. height: math.unit(2500, "km")
  11488. },
  11489. {
  11490. name: "Gigamacro+",
  11491. height: math.unit(120000, "km")
  11492. },
  11493. {
  11494. name: "Teramacro",
  11495. height: math.unit(7.77e6, "km")
  11496. },
  11497. ]
  11498. ))
  11499. characterMakers.push(() => makeCharacter(
  11500. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11501. {
  11502. front: {
  11503. height: math.unit(6 + 4/12, "feet"),
  11504. weight: math.unit(190, "lb"),
  11505. name: "Front",
  11506. image: {
  11507. source: "./media/characters/bmc/front.svg",
  11508. extra: 1626/1472,
  11509. bottom: 79/1705
  11510. }
  11511. },
  11512. back: {
  11513. height: math.unit(6 + 4/12, "feet"),
  11514. weight: math.unit(190, "lb"),
  11515. name: "Back",
  11516. image: {
  11517. source: "./media/characters/bmc/back.svg",
  11518. extra: 1640/1479,
  11519. bottom: 45/1685
  11520. }
  11521. },
  11522. frontArmor: {
  11523. height: math.unit(6 + 4/12, "feet"),
  11524. weight: math.unit(190, "lb"),
  11525. name: "Front-armor",
  11526. image: {
  11527. source: "./media/characters/bmc/front-armor.svg",
  11528. extra: 1538/1468,
  11529. bottom: 79/1617
  11530. }
  11531. },
  11532. },
  11533. [
  11534. {
  11535. name: "Human-sized",
  11536. height: math.unit(6 + 4 / 12, "feet")
  11537. },
  11538. {
  11539. name: "Interactive Size",
  11540. height: math.unit(25, "feet")
  11541. },
  11542. {
  11543. name: "Small",
  11544. height: math.unit(250, "feet")
  11545. },
  11546. {
  11547. name: "Normal",
  11548. height: math.unit(1250, "feet"),
  11549. default: true
  11550. },
  11551. {
  11552. name: "Good Day",
  11553. height: math.unit(88, "miles")
  11554. },
  11555. {
  11556. name: "Largest Measured Size",
  11557. height: math.unit(105.960, "galaxies")
  11558. },
  11559. ]
  11560. ))
  11561. characterMakers.push(() => makeCharacter(
  11562. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11563. {
  11564. front: {
  11565. height: math.unit(20, "feet"),
  11566. weight: math.unit(2016, "kg"),
  11567. name: "Front",
  11568. image: {
  11569. source: "./media/characters/sven-the-kaiju/front.svg",
  11570. extra: 1277/1250,
  11571. bottom: 35/1312
  11572. }
  11573. },
  11574. mouth: {
  11575. height: math.unit(1.85, "feet"),
  11576. name: "Mouth",
  11577. image: {
  11578. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11579. }
  11580. },
  11581. },
  11582. [
  11583. {
  11584. name: "Fairy",
  11585. height: math.unit(6, "inches")
  11586. },
  11587. {
  11588. name: "Normal",
  11589. height: math.unit(20, "feet"),
  11590. default: true
  11591. },
  11592. {
  11593. name: "Rampage",
  11594. height: math.unit(200, "feet")
  11595. },
  11596. {
  11597. name: "Archfey Forest Guardian",
  11598. height: math.unit(1, "mile")
  11599. },
  11600. ]
  11601. ))
  11602. characterMakers.push(() => makeCharacter(
  11603. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11604. {
  11605. front: {
  11606. height: math.unit(4, "meters"),
  11607. weight: math.unit(2, "tons"),
  11608. name: "Front",
  11609. image: {
  11610. source: "./media/characters/marik/front.svg",
  11611. extra: 1057 / 1003,
  11612. bottom: 0.08
  11613. }
  11614. },
  11615. },
  11616. [
  11617. {
  11618. name: "Normal",
  11619. height: math.unit(4, "meters"),
  11620. default: true
  11621. },
  11622. {
  11623. name: "Macro",
  11624. height: math.unit(20, "meters")
  11625. },
  11626. {
  11627. name: "Megamacro",
  11628. height: math.unit(50, "km")
  11629. },
  11630. {
  11631. name: "Gigamacro",
  11632. height: math.unit(100, "km")
  11633. },
  11634. {
  11635. name: "Alpha Macro",
  11636. height: math.unit(7.88e7, "yottameters")
  11637. },
  11638. ]
  11639. ))
  11640. characterMakers.push(() => makeCharacter(
  11641. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11642. {
  11643. front: {
  11644. height: math.unit(6, "feet"),
  11645. weight: math.unit(110, "lb"),
  11646. name: "Front",
  11647. image: {
  11648. source: "./media/characters/mel/front.svg",
  11649. extra: 736 / 617,
  11650. bottom: 0.017
  11651. }
  11652. },
  11653. },
  11654. [
  11655. {
  11656. name: "Pico",
  11657. height: math.unit(3, "pm")
  11658. },
  11659. {
  11660. name: "Nano",
  11661. height: math.unit(3, "nm")
  11662. },
  11663. {
  11664. name: "Micro",
  11665. height: math.unit(0.3, "mm"),
  11666. default: true
  11667. },
  11668. {
  11669. name: "Micro+",
  11670. height: math.unit(3, "mm")
  11671. },
  11672. {
  11673. name: "Normal",
  11674. height: math.unit(5 + 10.5 / 12, "feet")
  11675. },
  11676. ]
  11677. ))
  11678. characterMakers.push(() => makeCharacter(
  11679. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11680. {
  11681. kaiju: {
  11682. height: math.unit(1.75, "meters"),
  11683. weight: math.unit(55, "kg"),
  11684. name: "Kaiju",
  11685. image: {
  11686. source: "./media/characters/lykonous/kaiju.svg",
  11687. extra: 1055 / 946,
  11688. bottom: 0.135
  11689. }
  11690. },
  11691. },
  11692. [
  11693. {
  11694. name: "Normal",
  11695. height: math.unit(2.5, "meters"),
  11696. default: true
  11697. },
  11698. {
  11699. name: "Kaiju Dragon",
  11700. height: math.unit(60, "meters")
  11701. },
  11702. {
  11703. name: "Mega Kaiju",
  11704. height: math.unit(120, "km")
  11705. },
  11706. {
  11707. name: "Giga Kaiju",
  11708. height: math.unit(200, "megameters")
  11709. },
  11710. {
  11711. name: "Terra Kaiju",
  11712. height: math.unit(400, "gigameters")
  11713. },
  11714. {
  11715. name: "Kaiju Dragon God",
  11716. height: math.unit(13000, "exaparsecs")
  11717. },
  11718. ]
  11719. ))
  11720. characterMakers.push(() => makeCharacter(
  11721. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11722. {
  11723. front: {
  11724. height: math.unit(6, "feet"),
  11725. weight: math.unit(150, "lb"),
  11726. name: "Front",
  11727. image: {
  11728. source: "./media/characters/blü/front.svg",
  11729. extra: 1883 / 1564,
  11730. bottom: 0.031
  11731. }
  11732. },
  11733. },
  11734. [
  11735. {
  11736. name: "Normal",
  11737. height: math.unit(13, "feet"),
  11738. default: true
  11739. },
  11740. {
  11741. name: "Big Boi",
  11742. height: math.unit(150, "meters")
  11743. },
  11744. {
  11745. name: "Mini Stomper",
  11746. height: math.unit(300, "meters")
  11747. },
  11748. {
  11749. name: "Macro",
  11750. height: math.unit(1000, "meters")
  11751. },
  11752. {
  11753. name: "Megamacro",
  11754. height: math.unit(11000, "meters")
  11755. },
  11756. {
  11757. name: "Gigamacro",
  11758. height: math.unit(11000, "km")
  11759. },
  11760. {
  11761. name: "Teramacro",
  11762. height: math.unit(420000, "km")
  11763. },
  11764. {
  11765. name: "Examacro",
  11766. height: math.unit(120, "parsecs")
  11767. },
  11768. {
  11769. name: "God Tho",
  11770. height: math.unit(98000000000, "parsecs")
  11771. },
  11772. ]
  11773. ))
  11774. characterMakers.push(() => makeCharacter(
  11775. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11776. {
  11777. taurFront: {
  11778. height: math.unit(6, "feet"),
  11779. weight: math.unit(200, "lb"),
  11780. name: "Taur (Front)",
  11781. image: {
  11782. source: "./media/characters/scales/taur-front.svg",
  11783. extra: 1,
  11784. bottom: 0.05
  11785. }
  11786. },
  11787. taurBack: {
  11788. height: math.unit(6, "feet"),
  11789. weight: math.unit(200, "lb"),
  11790. name: "Taur (Back)",
  11791. image: {
  11792. source: "./media/characters/scales/taur-back.svg",
  11793. extra: 1,
  11794. bottom: 0.08
  11795. }
  11796. },
  11797. anthro: {
  11798. height: math.unit(6 * 7 / 12, "feet"),
  11799. weight: math.unit(100, "lb"),
  11800. name: "Anthro",
  11801. image: {
  11802. source: "./media/characters/scales/anthro.svg",
  11803. extra: 1,
  11804. bottom: 0.06
  11805. }
  11806. },
  11807. },
  11808. [
  11809. {
  11810. name: "Normal",
  11811. height: math.unit(12, "feet"),
  11812. default: true
  11813. },
  11814. ]
  11815. ))
  11816. characterMakers.push(() => makeCharacter(
  11817. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11818. {
  11819. front: {
  11820. height: math.unit(6, "feet"),
  11821. weight: math.unit(150, "lb"),
  11822. name: "Front",
  11823. image: {
  11824. source: "./media/characters/koragos/front.svg",
  11825. extra: 841 / 794,
  11826. bottom: 0.035
  11827. }
  11828. },
  11829. back: {
  11830. height: math.unit(6, "feet"),
  11831. weight: math.unit(150, "lb"),
  11832. name: "Back",
  11833. image: {
  11834. source: "./media/characters/koragos/back.svg",
  11835. extra: 841 / 810,
  11836. bottom: 0.022
  11837. }
  11838. },
  11839. },
  11840. [
  11841. {
  11842. name: "Normal",
  11843. height: math.unit(6 + 11 / 12, "feet"),
  11844. default: true
  11845. },
  11846. {
  11847. name: "Macro",
  11848. height: math.unit(490, "feet")
  11849. },
  11850. {
  11851. name: "Megamacro",
  11852. height: math.unit(10, "miles")
  11853. },
  11854. {
  11855. name: "Gigamacro",
  11856. height: math.unit(50, "miles")
  11857. },
  11858. ]
  11859. ))
  11860. characterMakers.push(() => makeCharacter(
  11861. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11862. {
  11863. front: {
  11864. height: math.unit(6, "feet"),
  11865. weight: math.unit(250, "lb"),
  11866. name: "Front",
  11867. image: {
  11868. source: "./media/characters/xylrem/front.svg",
  11869. extra: 3323 / 3050,
  11870. bottom: 0.065
  11871. }
  11872. },
  11873. },
  11874. [
  11875. {
  11876. name: "Micro",
  11877. height: math.unit(4, "feet")
  11878. },
  11879. {
  11880. name: "Normal",
  11881. height: math.unit(16, "feet"),
  11882. default: true
  11883. },
  11884. {
  11885. name: "Macro",
  11886. height: math.unit(2720, "feet")
  11887. },
  11888. {
  11889. name: "Megamacro",
  11890. height: math.unit(25000, "miles")
  11891. },
  11892. ]
  11893. ))
  11894. characterMakers.push(() => makeCharacter(
  11895. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11896. {
  11897. front: {
  11898. height: math.unit(8, "feet"),
  11899. weight: math.unit(250, "kg"),
  11900. name: "Front",
  11901. image: {
  11902. source: "./media/characters/ikideru/front.svg",
  11903. extra: 930 / 870,
  11904. bottom: 0.087
  11905. }
  11906. },
  11907. back: {
  11908. height: math.unit(8, "feet"),
  11909. weight: math.unit(250, "kg"),
  11910. name: "Back",
  11911. image: {
  11912. source: "./media/characters/ikideru/back.svg",
  11913. extra: 919 / 852,
  11914. bottom: 0.055
  11915. }
  11916. },
  11917. },
  11918. [
  11919. {
  11920. name: "Rare",
  11921. height: math.unit(8, "feet"),
  11922. default: true
  11923. },
  11924. {
  11925. name: "Playful Loom",
  11926. height: math.unit(80, "feet")
  11927. },
  11928. {
  11929. name: "City Leaner",
  11930. height: math.unit(230, "feet")
  11931. },
  11932. {
  11933. name: "Megamacro",
  11934. height: math.unit(2500, "feet")
  11935. },
  11936. {
  11937. name: "Gigamacro",
  11938. height: math.unit(26400, "feet")
  11939. },
  11940. {
  11941. name: "Tectonic Shifter",
  11942. height: math.unit(1.7, "megameters")
  11943. },
  11944. {
  11945. name: "Planet Carer",
  11946. height: math.unit(21, "megameters")
  11947. },
  11948. {
  11949. name: "God",
  11950. height: math.unit(11157.22, "parsecs")
  11951. },
  11952. ]
  11953. ))
  11954. characterMakers.push(() => makeCharacter(
  11955. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11956. {
  11957. front: {
  11958. height: math.unit(6, "feet"),
  11959. weight: math.unit(120, "lb"),
  11960. name: "Front",
  11961. image: {
  11962. source: "./media/characters/neo/front.svg"
  11963. }
  11964. },
  11965. },
  11966. [
  11967. {
  11968. name: "Micro",
  11969. height: math.unit(2, "inches"),
  11970. default: true
  11971. },
  11972. {
  11973. name: "Human Size",
  11974. height: math.unit(5 + 8 / 12, "feet")
  11975. },
  11976. ]
  11977. ))
  11978. characterMakers.push(() => makeCharacter(
  11979. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11980. {
  11981. front: {
  11982. height: math.unit(13 + 10 / 12, "feet"),
  11983. weight: math.unit(5320, "lb"),
  11984. name: "Front",
  11985. image: {
  11986. source: "./media/characters/chauncey-chantz/front.svg",
  11987. extra: 1587 / 1435,
  11988. bottom: 0.02
  11989. }
  11990. },
  11991. },
  11992. [
  11993. {
  11994. name: "Normal",
  11995. height: math.unit(13 + 10 / 12, "feet"),
  11996. default: true
  11997. },
  11998. {
  11999. name: "Macro",
  12000. height: math.unit(45, "feet")
  12001. },
  12002. {
  12003. name: "Megamacro",
  12004. height: math.unit(250, "miles")
  12005. },
  12006. {
  12007. name: "Planetary",
  12008. height: math.unit(10000, "miles")
  12009. },
  12010. {
  12011. name: "Galactic",
  12012. height: math.unit(40000, "parsecs")
  12013. },
  12014. {
  12015. name: "Universal",
  12016. height: math.unit(1, "yottameter")
  12017. },
  12018. ]
  12019. ))
  12020. characterMakers.push(() => makeCharacter(
  12021. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12022. {
  12023. front: {
  12024. height: math.unit(6, "feet"),
  12025. weight: math.unit(150, "lb"),
  12026. name: "Front",
  12027. image: {
  12028. source: "./media/characters/epifox/front.svg",
  12029. extra: 1,
  12030. bottom: 0.075
  12031. }
  12032. },
  12033. },
  12034. [
  12035. {
  12036. name: "Micro",
  12037. height: math.unit(6, "inches")
  12038. },
  12039. {
  12040. name: "Normal",
  12041. height: math.unit(12, "feet"),
  12042. default: true
  12043. },
  12044. {
  12045. name: "Macro",
  12046. height: math.unit(3810, "feet")
  12047. },
  12048. {
  12049. name: "Megamacro",
  12050. height: math.unit(500, "miles")
  12051. },
  12052. ]
  12053. ))
  12054. characterMakers.push(() => makeCharacter(
  12055. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12056. {
  12057. front: {
  12058. height: math.unit(1.8796, "m"),
  12059. weight: math.unit(230, "lb"),
  12060. name: "Front",
  12061. image: {
  12062. source: "./media/characters/colin-t/front.svg",
  12063. extra: 1272 / 1193,
  12064. bottom: 0.07
  12065. }
  12066. },
  12067. },
  12068. [
  12069. {
  12070. name: "Micro",
  12071. height: math.unit(0.571, "meters")
  12072. },
  12073. {
  12074. name: "Normal",
  12075. height: math.unit(1.8796, "meters"),
  12076. default: true
  12077. },
  12078. {
  12079. name: "Tall",
  12080. height: math.unit(4, "meters")
  12081. },
  12082. {
  12083. name: "Macro",
  12084. height: math.unit(67.241, "meters")
  12085. },
  12086. {
  12087. name: "Megamacro",
  12088. height: math.unit(371.856, "meters")
  12089. },
  12090. {
  12091. name: "Planetary",
  12092. height: math.unit(12631.5689, "km")
  12093. },
  12094. ]
  12095. ))
  12096. characterMakers.push(() => makeCharacter(
  12097. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12098. {
  12099. front: {
  12100. height: math.unit(1.85, "meters"),
  12101. weight: math.unit(80, "kg"),
  12102. name: "Front",
  12103. image: {
  12104. source: "./media/characters/matvei/front.svg",
  12105. extra: 614 / 594,
  12106. bottom: 0.01
  12107. }
  12108. },
  12109. },
  12110. [
  12111. {
  12112. name: "Normal",
  12113. height: math.unit(1.85, "meters"),
  12114. default: true
  12115. },
  12116. ]
  12117. ))
  12118. characterMakers.push(() => makeCharacter(
  12119. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12120. {
  12121. front: {
  12122. height: math.unit(5 + 9 / 12, "feet"),
  12123. weight: math.unit(70, "lb"),
  12124. name: "Front",
  12125. image: {
  12126. source: "./media/characters/quincy/front.svg",
  12127. extra: 3041 / 2751
  12128. }
  12129. },
  12130. back: {
  12131. height: math.unit(5 + 9 / 12, "feet"),
  12132. weight: math.unit(70, "lb"),
  12133. name: "Back",
  12134. image: {
  12135. source: "./media/characters/quincy/back.svg",
  12136. extra: 3041 / 2751
  12137. }
  12138. },
  12139. flying: {
  12140. height: math.unit(5 + 4 / 12, "feet"),
  12141. weight: math.unit(70, "lb"),
  12142. name: "Flying",
  12143. image: {
  12144. source: "./media/characters/quincy/flying.svg",
  12145. extra: 1044 / 930
  12146. }
  12147. },
  12148. },
  12149. [
  12150. {
  12151. name: "Micro",
  12152. height: math.unit(3, "cm")
  12153. },
  12154. {
  12155. name: "Normal",
  12156. height: math.unit(5 + 9 / 12, "feet")
  12157. },
  12158. {
  12159. name: "Macro",
  12160. height: math.unit(200, "meters"),
  12161. default: true
  12162. },
  12163. {
  12164. name: "Megamacro",
  12165. height: math.unit(1000, "meters")
  12166. },
  12167. ]
  12168. ))
  12169. characterMakers.push(() => makeCharacter(
  12170. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12171. {
  12172. front: {
  12173. height: math.unit(3 + 11/12, "feet"),
  12174. weight: math.unit(50, "lb"),
  12175. name: "Front",
  12176. image: {
  12177. source: "./media/characters/vanrel/front.svg",
  12178. extra: 1104/949,
  12179. bottom: 52/1156
  12180. }
  12181. },
  12182. back: {
  12183. height: math.unit(3 + 11/12, "feet"),
  12184. weight: math.unit(50, "lb"),
  12185. name: "Back",
  12186. image: {
  12187. source: "./media/characters/vanrel/back.svg",
  12188. extra: 1119/976,
  12189. bottom: 37/1156
  12190. }
  12191. },
  12192. tome: {
  12193. height: math.unit(1.35, "feet"),
  12194. weight: math.unit(10, "lb"),
  12195. name: "Vanrel's Tome",
  12196. rename: true,
  12197. image: {
  12198. source: "./media/characters/vanrel/tome.svg"
  12199. }
  12200. },
  12201. beans: {
  12202. height: math.unit(0.89, "feet"),
  12203. name: "Beans",
  12204. image: {
  12205. source: "./media/characters/vanrel/beans.svg"
  12206. }
  12207. },
  12208. },
  12209. [
  12210. {
  12211. name: "Normal",
  12212. height: math.unit(3 + 11/12, "feet"),
  12213. default: true
  12214. },
  12215. ]
  12216. ))
  12217. characterMakers.push(() => makeCharacter(
  12218. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12219. {
  12220. front: {
  12221. height: math.unit(7 + 5 / 12, "feet"),
  12222. name: "Front",
  12223. image: {
  12224. source: "./media/characters/kuiper-vanrel/front.svg",
  12225. extra: 1219/1169,
  12226. bottom: 69/1288
  12227. }
  12228. },
  12229. back: {
  12230. height: math.unit(7 + 5 / 12, "feet"),
  12231. name: "Back",
  12232. image: {
  12233. source: "./media/characters/kuiper-vanrel/back.svg",
  12234. extra: 1236/1193,
  12235. bottom: 27/1263
  12236. }
  12237. },
  12238. foot: {
  12239. height: math.unit(0.55, "meters"),
  12240. name: "Foot",
  12241. image: {
  12242. source: "./media/characters/kuiper-vanrel/foot.svg",
  12243. }
  12244. },
  12245. battle: {
  12246. height: math.unit(6.824, "feet"),
  12247. name: "Battle",
  12248. image: {
  12249. source: "./media/characters/kuiper-vanrel/battle.svg",
  12250. extra: 1466 / 1327,
  12251. bottom: 29 / 1492.5
  12252. }
  12253. },
  12254. meerkui: {
  12255. height: math.unit(18, "inches"),
  12256. name: "Meerkui",
  12257. image: {
  12258. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12259. extra: 1354/1289,
  12260. bottom: 69/1423
  12261. }
  12262. },
  12263. },
  12264. [
  12265. {
  12266. name: "Normal",
  12267. height: math.unit(7 + 5 / 12, "feet"),
  12268. default: true
  12269. },
  12270. ]
  12271. ))
  12272. characterMakers.push(() => makeCharacter(
  12273. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12274. {
  12275. front: {
  12276. height: math.unit(8 + 5 / 12, "feet"),
  12277. name: "Front",
  12278. image: {
  12279. source: "./media/characters/keset-vanrel/front.svg",
  12280. extra: 1231/1148,
  12281. bottom: 82/1313
  12282. }
  12283. },
  12284. back: {
  12285. height: math.unit(8 + 5 / 12, "feet"),
  12286. name: "Back",
  12287. image: {
  12288. source: "./media/characters/keset-vanrel/back.svg",
  12289. extra: 1240/1174,
  12290. bottom: 33/1273
  12291. }
  12292. },
  12293. hand: {
  12294. height: math.unit(0.6, "meters"),
  12295. name: "Hand",
  12296. image: {
  12297. source: "./media/characters/keset-vanrel/hand.svg"
  12298. }
  12299. },
  12300. foot: {
  12301. height: math.unit(0.94978, "meters"),
  12302. name: "Foot",
  12303. image: {
  12304. source: "./media/characters/keset-vanrel/foot.svg"
  12305. }
  12306. },
  12307. battle: {
  12308. height: math.unit(7.408, "feet"),
  12309. name: "Battle",
  12310. image: {
  12311. source: "./media/characters/keset-vanrel/battle.svg",
  12312. extra: 1890 / 1386,
  12313. bottom: 73.28 / 1970
  12314. }
  12315. },
  12316. },
  12317. [
  12318. {
  12319. name: "Normal",
  12320. height: math.unit(8 + 5 / 12, "feet"),
  12321. default: true
  12322. },
  12323. ]
  12324. ))
  12325. characterMakers.push(() => makeCharacter(
  12326. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12327. {
  12328. front: {
  12329. height: math.unit(6, "feet"),
  12330. weight: math.unit(150, "lb"),
  12331. name: "Front",
  12332. image: {
  12333. source: "./media/characters/neos/front.svg",
  12334. extra: 1696 / 992,
  12335. bottom: 0.14
  12336. }
  12337. },
  12338. },
  12339. [
  12340. {
  12341. name: "Normal",
  12342. height: math.unit(54, "cm"),
  12343. default: true
  12344. },
  12345. {
  12346. name: "Macro",
  12347. height: math.unit(100, "m")
  12348. },
  12349. {
  12350. name: "Megamacro",
  12351. height: math.unit(10, "km")
  12352. },
  12353. {
  12354. name: "Megamacro+",
  12355. height: math.unit(100, "km")
  12356. },
  12357. {
  12358. name: "Gigamacro",
  12359. height: math.unit(100, "Mm")
  12360. },
  12361. {
  12362. name: "Teramacro",
  12363. height: math.unit(100, "Gm")
  12364. },
  12365. {
  12366. name: "Examacro",
  12367. height: math.unit(100, "Em")
  12368. },
  12369. {
  12370. name: "Godly",
  12371. height: math.unit(10000, "Ym")
  12372. },
  12373. {
  12374. name: "Beyond Godly",
  12375. height: math.unit(25, "multiverses")
  12376. },
  12377. ]
  12378. ))
  12379. characterMakers.push(() => makeCharacter(
  12380. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12381. {
  12382. feminine: {
  12383. height: math.unit(5, "feet"),
  12384. weight: math.unit(100, "lb"),
  12385. name: "Feminine",
  12386. image: {
  12387. source: "./media/characters/sammy-mouse/feminine.svg",
  12388. extra: 2526 / 2425,
  12389. bottom: 0.123
  12390. }
  12391. },
  12392. masculine: {
  12393. height: math.unit(5, "feet"),
  12394. weight: math.unit(100, "lb"),
  12395. name: "Masculine",
  12396. image: {
  12397. source: "./media/characters/sammy-mouse/masculine.svg",
  12398. extra: 2526 / 2425,
  12399. bottom: 0.123
  12400. }
  12401. },
  12402. },
  12403. [
  12404. {
  12405. name: "Micro",
  12406. height: math.unit(5, "inches")
  12407. },
  12408. {
  12409. name: "Normal",
  12410. height: math.unit(5, "feet"),
  12411. default: true
  12412. },
  12413. {
  12414. name: "Macro",
  12415. height: math.unit(60, "feet")
  12416. },
  12417. ]
  12418. ))
  12419. characterMakers.push(() => makeCharacter(
  12420. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12421. {
  12422. front: {
  12423. height: math.unit(4, "feet"),
  12424. weight: math.unit(50, "lb"),
  12425. name: "Front",
  12426. image: {
  12427. source: "./media/characters/kole/front.svg",
  12428. extra: 1423 / 1303,
  12429. bottom: 0.025
  12430. }
  12431. },
  12432. back: {
  12433. height: math.unit(4, "feet"),
  12434. weight: math.unit(50, "lb"),
  12435. name: "Back",
  12436. image: {
  12437. source: "./media/characters/kole/back.svg",
  12438. extra: 1426 / 1280,
  12439. bottom: 0.02
  12440. }
  12441. },
  12442. },
  12443. [
  12444. {
  12445. name: "Normal",
  12446. height: math.unit(4, "feet"),
  12447. default: true
  12448. },
  12449. ]
  12450. ))
  12451. characterMakers.push(() => makeCharacter(
  12452. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12453. {
  12454. front: {
  12455. height: math.unit(2.5, "feet"),
  12456. weight: math.unit(32, "lb"),
  12457. name: "Front",
  12458. image: {
  12459. source: "./media/characters/rufran/front.svg",
  12460. extra: 1313/885,
  12461. bottom: 94/1407
  12462. }
  12463. },
  12464. side: {
  12465. height: math.unit(2.5, "feet"),
  12466. weight: math.unit(32, "lb"),
  12467. name: "Side",
  12468. image: {
  12469. source: "./media/characters/rufran/side.svg",
  12470. extra: 1109/852,
  12471. bottom: 118/1227
  12472. }
  12473. },
  12474. back: {
  12475. height: math.unit(2.5, "feet"),
  12476. weight: math.unit(32, "lb"),
  12477. name: "Back",
  12478. image: {
  12479. source: "./media/characters/rufran/back.svg",
  12480. extra: 1280/878,
  12481. bottom: 131/1411
  12482. }
  12483. },
  12484. mouth: {
  12485. height: math.unit(1.13, "feet"),
  12486. name: "Mouth",
  12487. image: {
  12488. source: "./media/characters/rufran/mouth.svg"
  12489. }
  12490. },
  12491. foot: {
  12492. height: math.unit(1.33, "feet"),
  12493. name: "Foot",
  12494. image: {
  12495. source: "./media/characters/rufran/foot.svg"
  12496. }
  12497. },
  12498. koboldFront: {
  12499. height: math.unit(2 + 6 / 12, "feet"),
  12500. weight: math.unit(20, "lb"),
  12501. name: "Front (Kobold)",
  12502. image: {
  12503. source: "./media/characters/rufran/kobold-front.svg",
  12504. extra: 2041 / 1839,
  12505. bottom: 0.055
  12506. }
  12507. },
  12508. koboldBack: {
  12509. height: math.unit(2 + 6 / 12, "feet"),
  12510. weight: math.unit(20, "lb"),
  12511. name: "Back (Kobold)",
  12512. image: {
  12513. source: "./media/characters/rufran/kobold-back.svg",
  12514. extra: 2054 / 1839,
  12515. bottom: 0.01
  12516. }
  12517. },
  12518. koboldHand: {
  12519. height: math.unit(0.2166, "meters"),
  12520. name: "Hand (Kobold)",
  12521. image: {
  12522. source: "./media/characters/rufran/kobold-hand.svg"
  12523. }
  12524. },
  12525. koboldFoot: {
  12526. height: math.unit(0.185, "meters"),
  12527. name: "Foot (Kobold)",
  12528. image: {
  12529. source: "./media/characters/rufran/kobold-foot.svg"
  12530. }
  12531. },
  12532. },
  12533. [
  12534. {
  12535. name: "Micro",
  12536. height: math.unit(1, "inch")
  12537. },
  12538. {
  12539. name: "Normal",
  12540. height: math.unit(2 + 6 / 12, "feet"),
  12541. default: true
  12542. },
  12543. {
  12544. name: "Big",
  12545. height: math.unit(60, "feet")
  12546. },
  12547. {
  12548. name: "Macro",
  12549. height: math.unit(325, "feet")
  12550. },
  12551. ]
  12552. ))
  12553. characterMakers.push(() => makeCharacter(
  12554. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12555. {
  12556. front: {
  12557. height: math.unit(0.3, "meters"),
  12558. weight: math.unit(3.5, "kg"),
  12559. name: "Front",
  12560. image: {
  12561. source: "./media/characters/chip/front.svg",
  12562. extra: 748 / 674
  12563. }
  12564. },
  12565. },
  12566. [
  12567. {
  12568. name: "Micro",
  12569. height: math.unit(1, "inch"),
  12570. default: true
  12571. },
  12572. ]
  12573. ))
  12574. characterMakers.push(() => makeCharacter(
  12575. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12576. {
  12577. side: {
  12578. height: math.unit(2.3, "meters"),
  12579. weight: math.unit(3500, "lb"),
  12580. name: "Side",
  12581. image: {
  12582. source: "./media/characters/torvid/side.svg",
  12583. extra: 1972 / 722,
  12584. bottom: 0.035
  12585. }
  12586. },
  12587. },
  12588. [
  12589. {
  12590. name: "Normal",
  12591. height: math.unit(2.3, "meters"),
  12592. default: true
  12593. },
  12594. ]
  12595. ))
  12596. characterMakers.push(() => makeCharacter(
  12597. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12598. {
  12599. front: {
  12600. height: math.unit(2, "meters"),
  12601. weight: math.unit(150.5, "kg"),
  12602. name: "Front",
  12603. image: {
  12604. source: "./media/characters/susan/front.svg",
  12605. extra: 693 / 635,
  12606. bottom: 0.05
  12607. }
  12608. },
  12609. },
  12610. [
  12611. {
  12612. name: "Megamacro",
  12613. height: math.unit(505, "miles"),
  12614. default: true
  12615. },
  12616. ]
  12617. ))
  12618. characterMakers.push(() => makeCharacter(
  12619. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12620. {
  12621. front: {
  12622. height: math.unit(6, "feet"),
  12623. weight: math.unit(150, "lb"),
  12624. name: "Front",
  12625. image: {
  12626. source: "./media/characters/raindrops/front.svg",
  12627. extra: 2655 / 2461,
  12628. bottom: 49 / 2705
  12629. }
  12630. },
  12631. back: {
  12632. height: math.unit(6, "feet"),
  12633. weight: math.unit(150, "lb"),
  12634. name: "Back",
  12635. image: {
  12636. source: "./media/characters/raindrops/back.svg",
  12637. extra: 2574 / 2400,
  12638. bottom: 65 / 2634
  12639. }
  12640. },
  12641. },
  12642. [
  12643. {
  12644. name: "Micro",
  12645. height: math.unit(6, "inches")
  12646. },
  12647. {
  12648. name: "Normal",
  12649. height: math.unit(6 + 2 / 12, "feet")
  12650. },
  12651. {
  12652. name: "Macro",
  12653. height: math.unit(131, "feet"),
  12654. default: true
  12655. },
  12656. {
  12657. name: "Megamacro",
  12658. height: math.unit(15, "miles")
  12659. },
  12660. {
  12661. name: "Gigamacro",
  12662. height: math.unit(4000, "miles")
  12663. },
  12664. {
  12665. name: "Teramacro",
  12666. height: math.unit(315000, "miles")
  12667. },
  12668. ]
  12669. ))
  12670. characterMakers.push(() => makeCharacter(
  12671. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12672. {
  12673. front: {
  12674. height: math.unit(2.794, "meters"),
  12675. weight: math.unit(325, "kg"),
  12676. name: "Front",
  12677. image: {
  12678. source: "./media/characters/tezwa/front.svg",
  12679. extra: 2083 / 1906,
  12680. bottom: 0.031
  12681. }
  12682. },
  12683. foot: {
  12684. height: math.unit(0.687, "meters"),
  12685. name: "Foot",
  12686. image: {
  12687. source: "./media/characters/tezwa/foot.svg"
  12688. }
  12689. },
  12690. },
  12691. [
  12692. {
  12693. name: "Normal",
  12694. height: math.unit(9 + 2 / 12, "feet"),
  12695. default: true
  12696. },
  12697. ]
  12698. ))
  12699. characterMakers.push(() => makeCharacter(
  12700. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12701. {
  12702. front: {
  12703. height: math.unit(58, "feet"),
  12704. weight: math.unit(89000, "lb"),
  12705. name: "Front",
  12706. image: {
  12707. source: "./media/characters/typhus/front.svg",
  12708. extra: 816 / 800,
  12709. bottom: 0.065
  12710. }
  12711. },
  12712. },
  12713. [
  12714. {
  12715. name: "Macro",
  12716. height: math.unit(58, "feet"),
  12717. default: true
  12718. },
  12719. ]
  12720. ))
  12721. characterMakers.push(() => makeCharacter(
  12722. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12723. {
  12724. front: {
  12725. height: math.unit(12, "feet"),
  12726. weight: math.unit(6, "tonnes"),
  12727. name: "Front",
  12728. image: {
  12729. source: "./media/characters/lyra-von-wulf/front.svg",
  12730. extra: 1,
  12731. bottom: 0.10
  12732. }
  12733. },
  12734. frontMecha: {
  12735. height: math.unit(12, "feet"),
  12736. weight: math.unit(12, "tonnes"),
  12737. name: "Front (Mecha)",
  12738. image: {
  12739. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12740. extra: 1,
  12741. bottom: 0.042
  12742. }
  12743. },
  12744. maw: {
  12745. height: math.unit(2.2, "feet"),
  12746. name: "Maw",
  12747. image: {
  12748. source: "./media/characters/lyra-von-wulf/maw.svg"
  12749. }
  12750. },
  12751. },
  12752. [
  12753. {
  12754. name: "Normal",
  12755. height: math.unit(12, "feet"),
  12756. default: true
  12757. },
  12758. {
  12759. name: "Classic",
  12760. height: math.unit(50, "feet")
  12761. },
  12762. {
  12763. name: "Macro",
  12764. height: math.unit(500, "feet")
  12765. },
  12766. {
  12767. name: "Megamacro",
  12768. height: math.unit(1, "mile")
  12769. },
  12770. {
  12771. name: "Gigamacro",
  12772. height: math.unit(400, "miles")
  12773. },
  12774. {
  12775. name: "Teramacro",
  12776. height: math.unit(22000, "miles")
  12777. },
  12778. {
  12779. name: "Solarmacro",
  12780. height: math.unit(8600000, "miles")
  12781. },
  12782. {
  12783. name: "Galactic",
  12784. height: math.unit(1057000, "lightyears")
  12785. },
  12786. ]
  12787. ))
  12788. characterMakers.push(() => makeCharacter(
  12789. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12790. {
  12791. front: {
  12792. height: math.unit(6 + 10 / 12, "feet"),
  12793. weight: math.unit(150, "lb"),
  12794. name: "Front",
  12795. image: {
  12796. source: "./media/characters/dixon/front.svg",
  12797. extra: 3361 / 3209,
  12798. bottom: 0.01
  12799. }
  12800. },
  12801. },
  12802. [
  12803. {
  12804. name: "Normal",
  12805. height: math.unit(6 + 10 / 12, "feet"),
  12806. default: true
  12807. },
  12808. {
  12809. name: "Big",
  12810. height: math.unit(12, "meters")
  12811. },
  12812. {
  12813. name: "Macro",
  12814. height: math.unit(500, "meters")
  12815. },
  12816. {
  12817. name: "Megamacro",
  12818. height: math.unit(2, "km")
  12819. },
  12820. ]
  12821. ))
  12822. characterMakers.push(() => makeCharacter(
  12823. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12824. {
  12825. front: {
  12826. height: math.unit(185, "cm"),
  12827. weight: math.unit(68, "kg"),
  12828. name: "Front",
  12829. image: {
  12830. source: "./media/characters/kauko/front.svg",
  12831. extra: 1455 / 1421,
  12832. bottom: 0.03
  12833. }
  12834. },
  12835. back: {
  12836. height: math.unit(185, "cm"),
  12837. weight: math.unit(68, "kg"),
  12838. name: "Back",
  12839. image: {
  12840. source: "./media/characters/kauko/back.svg",
  12841. extra: 1455 / 1421,
  12842. bottom: 0.004
  12843. }
  12844. },
  12845. },
  12846. [
  12847. {
  12848. name: "Normal",
  12849. height: math.unit(185, "cm"),
  12850. default: true
  12851. },
  12852. ]
  12853. ))
  12854. characterMakers.push(() => makeCharacter(
  12855. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12856. {
  12857. front: {
  12858. height: math.unit(6, "feet"),
  12859. weight: math.unit(150, "kg"),
  12860. name: "Front",
  12861. image: {
  12862. source: "./media/characters/varg/front.svg",
  12863. extra: 1108 / 1018,
  12864. bottom: 0.0375
  12865. }
  12866. },
  12867. },
  12868. [
  12869. {
  12870. name: "Normal",
  12871. height: math.unit(5, "meters")
  12872. },
  12873. {
  12874. name: "Macro",
  12875. height: math.unit(200, "meters")
  12876. },
  12877. {
  12878. name: "Megamacro",
  12879. height: math.unit(20, "kilometers")
  12880. },
  12881. {
  12882. name: "True Size",
  12883. height: math.unit(211, "km"),
  12884. default: true
  12885. },
  12886. {
  12887. name: "Gigamacro",
  12888. height: math.unit(1000, "km")
  12889. },
  12890. {
  12891. name: "Gigamacro+",
  12892. height: math.unit(8000, "km")
  12893. },
  12894. {
  12895. name: "Teramacro",
  12896. height: math.unit(1000000, "km")
  12897. },
  12898. ]
  12899. ))
  12900. characterMakers.push(() => makeCharacter(
  12901. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12902. {
  12903. front: {
  12904. height: math.unit(7 + 7 / 12, "feet"),
  12905. weight: math.unit(267, "lb"),
  12906. name: "Front",
  12907. image: {
  12908. source: "./media/characters/dayza/front.svg",
  12909. extra: 1262 / 1200,
  12910. bottom: 0.035
  12911. }
  12912. },
  12913. side: {
  12914. height: math.unit(7 + 7 / 12, "feet"),
  12915. weight: math.unit(267, "lb"),
  12916. name: "Side",
  12917. image: {
  12918. source: "./media/characters/dayza/side.svg",
  12919. extra: 1295 / 1245,
  12920. bottom: 0.05
  12921. }
  12922. },
  12923. back: {
  12924. height: math.unit(7 + 7 / 12, "feet"),
  12925. weight: math.unit(267, "lb"),
  12926. name: "Back",
  12927. image: {
  12928. source: "./media/characters/dayza/back.svg",
  12929. extra: 1241 / 1170
  12930. }
  12931. },
  12932. },
  12933. [
  12934. {
  12935. name: "Normal",
  12936. height: math.unit(7 + 7 / 12, "feet"),
  12937. default: true
  12938. },
  12939. {
  12940. name: "Macro",
  12941. height: math.unit(155, "feet")
  12942. },
  12943. ]
  12944. ))
  12945. characterMakers.push(() => makeCharacter(
  12946. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12947. {
  12948. front: {
  12949. height: math.unit(6 + 5 / 12, "feet"),
  12950. weight: math.unit(160, "lb"),
  12951. name: "Front",
  12952. image: {
  12953. source: "./media/characters/xanthos/front.svg",
  12954. extra: 1,
  12955. bottom: 0.04
  12956. }
  12957. },
  12958. back: {
  12959. height: math.unit(6 + 5 / 12, "feet"),
  12960. weight: math.unit(160, "lb"),
  12961. name: "Back",
  12962. image: {
  12963. source: "./media/characters/xanthos/back.svg",
  12964. extra: 1,
  12965. bottom: 0.03
  12966. }
  12967. },
  12968. hand: {
  12969. height: math.unit(0.928, "feet"),
  12970. name: "Hand",
  12971. image: {
  12972. source: "./media/characters/xanthos/hand.svg"
  12973. }
  12974. },
  12975. foot: {
  12976. height: math.unit(1.286, "feet"),
  12977. name: "Foot",
  12978. image: {
  12979. source: "./media/characters/xanthos/foot.svg"
  12980. }
  12981. },
  12982. },
  12983. [
  12984. {
  12985. name: "Normal",
  12986. height: math.unit(6 + 5 / 12, "feet"),
  12987. default: true
  12988. },
  12989. {
  12990. name: "Normal+",
  12991. height: math.unit(6, "meters")
  12992. },
  12993. {
  12994. name: "Macro",
  12995. height: math.unit(40, "feet")
  12996. },
  12997. {
  12998. name: "Macro+",
  12999. height: math.unit(200, "meters")
  13000. },
  13001. {
  13002. name: "Megamacro",
  13003. height: math.unit(20, "km")
  13004. },
  13005. {
  13006. name: "Megamacro+",
  13007. height: math.unit(100, "km")
  13008. },
  13009. {
  13010. name: "Gigamacro",
  13011. height: math.unit(200, "megameters")
  13012. },
  13013. {
  13014. name: "Gigamacro+",
  13015. height: math.unit(1.5, "gigameters")
  13016. },
  13017. ]
  13018. ))
  13019. characterMakers.push(() => makeCharacter(
  13020. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13021. {
  13022. front: {
  13023. height: math.unit(6 + 3 / 12, "feet"),
  13024. weight: math.unit(215, "lb"),
  13025. name: "Front",
  13026. image: {
  13027. source: "./media/characters/grynn/front.svg",
  13028. extra: 4627 / 4209,
  13029. bottom: 0.047
  13030. }
  13031. },
  13032. },
  13033. [
  13034. {
  13035. name: "Micro",
  13036. height: math.unit(6, "inches")
  13037. },
  13038. {
  13039. name: "Normal",
  13040. height: math.unit(6 + 3 / 12, "feet"),
  13041. default: true
  13042. },
  13043. {
  13044. name: "Big",
  13045. height: math.unit(104, "feet")
  13046. },
  13047. {
  13048. name: "Macro",
  13049. height: math.unit(944, "feet")
  13050. },
  13051. {
  13052. name: "Macro+",
  13053. height: math.unit(9480, "feet")
  13054. },
  13055. {
  13056. name: "Megamacro",
  13057. height: math.unit(78752, "feet")
  13058. },
  13059. {
  13060. name: "Megamacro+",
  13061. height: math.unit(630128, "feet")
  13062. },
  13063. {
  13064. name: "Megamacro++",
  13065. height: math.unit(3150695, "feet")
  13066. },
  13067. ]
  13068. ))
  13069. characterMakers.push(() => makeCharacter(
  13070. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13071. {
  13072. front: {
  13073. height: math.unit(7 + 5 / 12, "feet"),
  13074. weight: math.unit(450, "lb"),
  13075. name: "Front",
  13076. image: {
  13077. source: "./media/characters/mocha-aura/front.svg",
  13078. extra: 1907 / 1817,
  13079. bottom: 0.04
  13080. }
  13081. },
  13082. back: {
  13083. height: math.unit(7 + 5 / 12, "feet"),
  13084. weight: math.unit(450, "lb"),
  13085. name: "Back",
  13086. image: {
  13087. source: "./media/characters/mocha-aura/back.svg",
  13088. extra: 1900 / 1825,
  13089. bottom: 0.045
  13090. }
  13091. },
  13092. },
  13093. [
  13094. {
  13095. name: "Nano",
  13096. height: math.unit(1, "nm")
  13097. },
  13098. {
  13099. name: "Megamicro",
  13100. height: math.unit(1, "mm")
  13101. },
  13102. {
  13103. name: "Micro",
  13104. height: math.unit(3, "inches")
  13105. },
  13106. {
  13107. name: "Normal",
  13108. height: math.unit(7 + 5 / 12, "feet"),
  13109. default: true
  13110. },
  13111. {
  13112. name: "Macro",
  13113. height: math.unit(30, "feet")
  13114. },
  13115. {
  13116. name: "Megamacro",
  13117. height: math.unit(3500, "feet")
  13118. },
  13119. {
  13120. name: "Teramacro",
  13121. height: math.unit(500000, "miles")
  13122. },
  13123. {
  13124. name: "Petamacro",
  13125. height: math.unit(50000000000000000, "parsecs")
  13126. },
  13127. ]
  13128. ))
  13129. characterMakers.push(() => makeCharacter(
  13130. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13131. {
  13132. front: {
  13133. height: math.unit(6, "feet"),
  13134. weight: math.unit(150, "lb"),
  13135. name: "Front",
  13136. image: {
  13137. source: "./media/characters/ilisha-devya/front.svg",
  13138. extra: 1053/1049,
  13139. bottom: 270/1323
  13140. }
  13141. },
  13142. back: {
  13143. height: math.unit(6, "feet"),
  13144. weight: math.unit(150, "lb"),
  13145. name: "Back",
  13146. image: {
  13147. source: "./media/characters/ilisha-devya/back.svg",
  13148. extra: 1131/1128,
  13149. bottom: 39/1170
  13150. }
  13151. },
  13152. },
  13153. [
  13154. {
  13155. name: "Macro",
  13156. height: math.unit(500, "feet"),
  13157. default: true
  13158. },
  13159. {
  13160. name: "Megamacro",
  13161. height: math.unit(10, "miles")
  13162. },
  13163. {
  13164. name: "Gigamacro",
  13165. height: math.unit(100000, "miles")
  13166. },
  13167. {
  13168. name: "Examacro",
  13169. height: math.unit(1e9, "lightyears")
  13170. },
  13171. {
  13172. name: "Omniversal",
  13173. height: math.unit(1e33, "lightyears")
  13174. },
  13175. {
  13176. name: "Beyond Infinite",
  13177. height: math.unit(1e100, "lightyears")
  13178. },
  13179. ]
  13180. ))
  13181. characterMakers.push(() => makeCharacter(
  13182. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13183. {
  13184. Side: {
  13185. height: math.unit(6, "feet"),
  13186. weight: math.unit(150, "lb"),
  13187. name: "Side",
  13188. image: {
  13189. source: "./media/characters/mira/side.svg",
  13190. extra: 900 / 799,
  13191. bottom: 0.02
  13192. }
  13193. },
  13194. },
  13195. [
  13196. {
  13197. name: "Human Size",
  13198. height: math.unit(6, "feet")
  13199. },
  13200. {
  13201. name: "Macro",
  13202. height: math.unit(100, "feet"),
  13203. default: true
  13204. },
  13205. {
  13206. name: "Megamacro",
  13207. height: math.unit(10, "miles")
  13208. },
  13209. {
  13210. name: "Gigamacro",
  13211. height: math.unit(25000, "miles")
  13212. },
  13213. {
  13214. name: "Teramacro",
  13215. height: math.unit(300, "AU")
  13216. },
  13217. {
  13218. name: "Full Size",
  13219. height: math.unit(4.5e10, "lightyears")
  13220. },
  13221. ]
  13222. ))
  13223. characterMakers.push(() => makeCharacter(
  13224. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13225. {
  13226. front: {
  13227. height: math.unit(6, "feet"),
  13228. weight: math.unit(150, "lb"),
  13229. name: "Front",
  13230. image: {
  13231. source: "./media/characters/holly/front.svg",
  13232. extra: 639 / 606
  13233. }
  13234. },
  13235. back: {
  13236. height: math.unit(6, "feet"),
  13237. weight: math.unit(150, "lb"),
  13238. name: "Back",
  13239. image: {
  13240. source: "./media/characters/holly/back.svg",
  13241. extra: 623 / 598
  13242. }
  13243. },
  13244. frontWorking: {
  13245. height: math.unit(6, "feet"),
  13246. weight: math.unit(150, "lb"),
  13247. name: "Front (Working)",
  13248. image: {
  13249. source: "./media/characters/holly/front-working.svg",
  13250. extra: 607 / 577,
  13251. bottom: 0.048
  13252. }
  13253. },
  13254. },
  13255. [
  13256. {
  13257. name: "Normal",
  13258. height: math.unit(12 + 3 / 12, "feet"),
  13259. default: true
  13260. },
  13261. ]
  13262. ))
  13263. characterMakers.push(() => makeCharacter(
  13264. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13265. {
  13266. front: {
  13267. height: math.unit(6, "feet"),
  13268. weight: math.unit(150, "lb"),
  13269. name: "Front",
  13270. image: {
  13271. source: "./media/characters/porter/front.svg",
  13272. extra: 1,
  13273. bottom: 0.01
  13274. }
  13275. },
  13276. frontRobes: {
  13277. height: math.unit(6, "feet"),
  13278. weight: math.unit(150, "lb"),
  13279. name: "Front (Robes)",
  13280. image: {
  13281. source: "./media/characters/porter/front-robes.svg",
  13282. extra: 1.01,
  13283. bottom: 0.01
  13284. }
  13285. },
  13286. },
  13287. [
  13288. {
  13289. name: "Normal",
  13290. height: math.unit(11 + 9 / 12, "feet"),
  13291. default: true
  13292. },
  13293. ]
  13294. ))
  13295. characterMakers.push(() => makeCharacter(
  13296. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13297. {
  13298. legendary: {
  13299. height: math.unit(6, "feet"),
  13300. weight: math.unit(150, "lb"),
  13301. name: "Legendary",
  13302. image: {
  13303. source: "./media/characters/lucy/legendary.svg",
  13304. extra: 1355 / 1100,
  13305. bottom: 0.045
  13306. }
  13307. },
  13308. },
  13309. [
  13310. {
  13311. name: "Legendary",
  13312. height: math.unit(86882 * 2, "miles"),
  13313. default: true
  13314. },
  13315. ]
  13316. ))
  13317. characterMakers.push(() => makeCharacter(
  13318. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13319. {
  13320. front: {
  13321. height: math.unit(6, "feet"),
  13322. weight: math.unit(150, "lb"),
  13323. name: "Front",
  13324. image: {
  13325. source: "./media/characters/drusilla/front.svg",
  13326. extra: 678 / 635,
  13327. bottom: 0.03
  13328. }
  13329. },
  13330. back: {
  13331. height: math.unit(6, "feet"),
  13332. weight: math.unit(150, "lb"),
  13333. name: "Back",
  13334. image: {
  13335. source: "./media/characters/drusilla/back.svg",
  13336. extra: 678 / 635,
  13337. bottom: 0.005
  13338. }
  13339. },
  13340. },
  13341. [
  13342. {
  13343. name: "Macro",
  13344. height: math.unit(100, "feet")
  13345. },
  13346. {
  13347. name: "Canon Height",
  13348. height: math.unit(2000, "feet"),
  13349. default: true
  13350. },
  13351. ]
  13352. ))
  13353. characterMakers.push(() => makeCharacter(
  13354. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13355. {
  13356. front: {
  13357. height: math.unit(6, "feet"),
  13358. weight: math.unit(180, "lb"),
  13359. name: "Front",
  13360. image: {
  13361. source: "./media/characters/renard-thatch/front.svg",
  13362. extra: 2411 / 2275,
  13363. bottom: 0.01
  13364. }
  13365. },
  13366. frontPosing: {
  13367. height: math.unit(6, "feet"),
  13368. weight: math.unit(180, "lb"),
  13369. name: "Front (Posing)",
  13370. image: {
  13371. source: "./media/characters/renard-thatch/front-posing.svg",
  13372. extra: 2381 / 2261,
  13373. bottom: 0.01
  13374. }
  13375. },
  13376. back: {
  13377. height: math.unit(6, "feet"),
  13378. weight: math.unit(180, "lb"),
  13379. name: "Back",
  13380. image: {
  13381. source: "./media/characters/renard-thatch/back.svg",
  13382. extra: 2428 / 2288
  13383. }
  13384. },
  13385. },
  13386. [
  13387. {
  13388. name: "Micro",
  13389. height: math.unit(3, "inches")
  13390. },
  13391. {
  13392. name: "Default",
  13393. height: math.unit(6, "feet"),
  13394. default: true
  13395. },
  13396. {
  13397. name: "Macro",
  13398. height: math.unit(75, "feet")
  13399. },
  13400. ]
  13401. ))
  13402. characterMakers.push(() => makeCharacter(
  13403. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13404. {
  13405. front: {
  13406. height: math.unit(1450, "feet"),
  13407. weight: math.unit(1.21e6, "tons"),
  13408. name: "Front",
  13409. image: {
  13410. source: "./media/characters/sekvra/front.svg",
  13411. extra: 1193/1190,
  13412. bottom: 78/1271
  13413. }
  13414. },
  13415. side: {
  13416. height: math.unit(1450, "feet"),
  13417. weight: math.unit(1.21e6, "tons"),
  13418. name: "Side",
  13419. image: {
  13420. source: "./media/characters/sekvra/side.svg",
  13421. extra: 1193/1190,
  13422. bottom: 52/1245
  13423. }
  13424. },
  13425. back: {
  13426. height: math.unit(1450, "feet"),
  13427. weight: math.unit(1.21e6, "tons"),
  13428. name: "Back",
  13429. image: {
  13430. source: "./media/characters/sekvra/back.svg",
  13431. extra: 1219/1216,
  13432. bottom: 21/1240
  13433. }
  13434. },
  13435. frontClothed: {
  13436. height: math.unit(1450, "feet"),
  13437. weight: math.unit(1.21e6, "tons"),
  13438. name: "Front (Clothed)",
  13439. image: {
  13440. source: "./media/characters/sekvra/front-clothed.svg",
  13441. extra: 1192/1189,
  13442. bottom: 79/1271
  13443. }
  13444. },
  13445. },
  13446. [
  13447. {
  13448. name: "Macro",
  13449. height: math.unit(1450, "feet"),
  13450. default: true
  13451. },
  13452. {
  13453. name: "Megamacro",
  13454. height: math.unit(15000, "feet")
  13455. },
  13456. ]
  13457. ))
  13458. characterMakers.push(() => makeCharacter(
  13459. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13460. {
  13461. front: {
  13462. height: math.unit(6, "feet"),
  13463. weight: math.unit(150, "lb"),
  13464. name: "Front",
  13465. image: {
  13466. source: "./media/characters/carmine/front.svg",
  13467. extra: 1,
  13468. bottom: 0.035
  13469. }
  13470. },
  13471. frontArmor: {
  13472. height: math.unit(6, "feet"),
  13473. weight: math.unit(150, "lb"),
  13474. name: "Front (Armor)",
  13475. image: {
  13476. source: "./media/characters/carmine/front-armor.svg",
  13477. extra: 1,
  13478. bottom: 0.035
  13479. }
  13480. },
  13481. },
  13482. [
  13483. {
  13484. name: "Large",
  13485. height: math.unit(1, "mile")
  13486. },
  13487. {
  13488. name: "Huge",
  13489. height: math.unit(40, "miles"),
  13490. default: true
  13491. },
  13492. {
  13493. name: "Colossal",
  13494. height: math.unit(2500, "miles")
  13495. },
  13496. ]
  13497. ))
  13498. characterMakers.push(() => makeCharacter(
  13499. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13500. {
  13501. front: {
  13502. height: math.unit(6, "feet"),
  13503. weight: math.unit(150, "lb"),
  13504. name: "Front",
  13505. image: {
  13506. source: "./media/characters/elyssia/front.svg",
  13507. extra: 2201 / 2035,
  13508. bottom: 0.05
  13509. }
  13510. },
  13511. frontClothed: {
  13512. height: math.unit(6, "feet"),
  13513. weight: math.unit(150, "lb"),
  13514. name: "Front (Clothed)",
  13515. image: {
  13516. source: "./media/characters/elyssia/front-clothed.svg",
  13517. extra: 2201 / 2035,
  13518. bottom: 0.05
  13519. }
  13520. },
  13521. back: {
  13522. height: math.unit(6, "feet"),
  13523. weight: math.unit(150, "lb"),
  13524. name: "Back",
  13525. image: {
  13526. source: "./media/characters/elyssia/back.svg",
  13527. extra: 2201 / 2035,
  13528. bottom: 0.013
  13529. }
  13530. },
  13531. },
  13532. [
  13533. {
  13534. name: "Smaller",
  13535. height: math.unit(150, "feet")
  13536. },
  13537. {
  13538. name: "Standard",
  13539. height: math.unit(1400, "feet"),
  13540. default: true
  13541. },
  13542. {
  13543. name: "Distracted",
  13544. height: math.unit(15000, "feet")
  13545. },
  13546. ]
  13547. ))
  13548. characterMakers.push(() => makeCharacter(
  13549. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13550. {
  13551. front: {
  13552. height: math.unit(7 + 4/12, "feet"),
  13553. weight: math.unit(690, "lb"),
  13554. name: "Front",
  13555. image: {
  13556. source: "./media/characters/geno-maxwell/front.svg",
  13557. extra: 984/856,
  13558. bottom: 87/1071
  13559. }
  13560. },
  13561. back: {
  13562. height: math.unit(7 + 4/12, "feet"),
  13563. weight: math.unit(690, "lb"),
  13564. name: "Back",
  13565. image: {
  13566. source: "./media/characters/geno-maxwell/back.svg",
  13567. extra: 981/854,
  13568. bottom: 57/1038
  13569. }
  13570. },
  13571. frontCostume: {
  13572. height: math.unit(7 + 4/12, "feet"),
  13573. weight: math.unit(690, "lb"),
  13574. name: "Front (Costume)",
  13575. image: {
  13576. source: "./media/characters/geno-maxwell/front-costume.svg",
  13577. extra: 984/856,
  13578. bottom: 87/1071
  13579. }
  13580. },
  13581. backcostume: {
  13582. height: math.unit(7 + 4/12, "feet"),
  13583. weight: math.unit(690, "lb"),
  13584. name: "Back (Costume)",
  13585. image: {
  13586. source: "./media/characters/geno-maxwell/back-costume.svg",
  13587. extra: 981/854,
  13588. bottom: 57/1038
  13589. }
  13590. },
  13591. },
  13592. [
  13593. {
  13594. name: "Micro",
  13595. height: math.unit(3, "inches")
  13596. },
  13597. {
  13598. name: "Normal",
  13599. height: math.unit(7 + 4 / 12, "feet"),
  13600. default: true
  13601. },
  13602. {
  13603. name: "Macro",
  13604. height: math.unit(220, "feet")
  13605. },
  13606. {
  13607. name: "Megamacro",
  13608. height: math.unit(11, "miles")
  13609. },
  13610. ]
  13611. ))
  13612. characterMakers.push(() => makeCharacter(
  13613. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13614. {
  13615. front: {
  13616. height: math.unit(7 + 4/12, "feet"),
  13617. weight: math.unit(750, "lb"),
  13618. name: "Front",
  13619. image: {
  13620. source: "./media/characters/regena-maxwell/front.svg",
  13621. extra: 984/856,
  13622. bottom: 87/1071
  13623. }
  13624. },
  13625. back: {
  13626. height: math.unit(7 + 4/12, "feet"),
  13627. weight: math.unit(750, "lb"),
  13628. name: "Back",
  13629. image: {
  13630. source: "./media/characters/regena-maxwell/back.svg",
  13631. extra: 981/854,
  13632. bottom: 57/1038
  13633. }
  13634. },
  13635. frontCostume: {
  13636. height: math.unit(7 + 4/12, "feet"),
  13637. weight: math.unit(750, "lb"),
  13638. name: "Front (Costume)",
  13639. image: {
  13640. source: "./media/characters/regena-maxwell/front-costume.svg",
  13641. extra: 984/856,
  13642. bottom: 87/1071
  13643. }
  13644. },
  13645. backcostume: {
  13646. height: math.unit(7 + 4/12, "feet"),
  13647. weight: math.unit(750, "lb"),
  13648. name: "Back (Costume)",
  13649. image: {
  13650. source: "./media/characters/regena-maxwell/back-costume.svg",
  13651. extra: 981/854,
  13652. bottom: 57/1038
  13653. }
  13654. },
  13655. },
  13656. [
  13657. {
  13658. name: "Normal",
  13659. height: math.unit(7 + 4 / 12, "feet"),
  13660. default: true
  13661. },
  13662. {
  13663. name: "Macro",
  13664. height: math.unit(220, "feet")
  13665. },
  13666. {
  13667. name: "Megamacro",
  13668. height: math.unit(11, "miles")
  13669. },
  13670. ]
  13671. ))
  13672. characterMakers.push(() => makeCharacter(
  13673. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13674. {
  13675. front: {
  13676. height: math.unit(6, "feet"),
  13677. weight: math.unit(150, "lb"),
  13678. name: "Front",
  13679. image: {
  13680. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13681. extra: 860 / 690,
  13682. bottom: 0.03
  13683. }
  13684. },
  13685. },
  13686. [
  13687. {
  13688. name: "Normal",
  13689. height: math.unit(1.7, "meters"),
  13690. default: true
  13691. },
  13692. ]
  13693. ))
  13694. characterMakers.push(() => makeCharacter(
  13695. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13696. {
  13697. front: {
  13698. height: math.unit(6, "feet"),
  13699. weight: math.unit(150, "lb"),
  13700. name: "Front",
  13701. image: {
  13702. source: "./media/characters/quilly/front.svg",
  13703. extra: 890 / 776
  13704. }
  13705. },
  13706. },
  13707. [
  13708. {
  13709. name: "Gigamacro",
  13710. height: math.unit(404090, "miles"),
  13711. default: true
  13712. },
  13713. ]
  13714. ))
  13715. characterMakers.push(() => makeCharacter(
  13716. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13717. {
  13718. front: {
  13719. height: math.unit(7 + 8 / 12, "feet"),
  13720. weight: math.unit(350, "lb"),
  13721. name: "Front",
  13722. image: {
  13723. source: "./media/characters/tempest/front.svg",
  13724. extra: 1175 / 1086,
  13725. bottom: 0.02
  13726. }
  13727. },
  13728. },
  13729. [
  13730. {
  13731. name: "Normal",
  13732. height: math.unit(7 + 8 / 12, "feet"),
  13733. default: true
  13734. },
  13735. ]
  13736. ))
  13737. characterMakers.push(() => makeCharacter(
  13738. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13739. {
  13740. side: {
  13741. height: math.unit(4 + 5 / 12, "feet"),
  13742. weight: math.unit(80, "lb"),
  13743. name: "Side",
  13744. image: {
  13745. source: "./media/characters/rodger/side.svg",
  13746. extra: 1235 / 1118
  13747. }
  13748. },
  13749. },
  13750. [
  13751. {
  13752. name: "Micro",
  13753. height: math.unit(1, "inch")
  13754. },
  13755. {
  13756. name: "Normal",
  13757. height: math.unit(4 + 5 / 12, "feet"),
  13758. default: true
  13759. },
  13760. {
  13761. name: "Macro",
  13762. height: math.unit(120, "feet")
  13763. },
  13764. ]
  13765. ))
  13766. characterMakers.push(() => makeCharacter(
  13767. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13768. {
  13769. front: {
  13770. height: math.unit(6, "feet"),
  13771. weight: math.unit(150, "lb"),
  13772. name: "Front",
  13773. image: {
  13774. source: "./media/characters/danyel/front.svg",
  13775. extra: 1185 / 1123,
  13776. bottom: 0.05
  13777. }
  13778. },
  13779. },
  13780. [
  13781. {
  13782. name: "Shrunken",
  13783. height: math.unit(0.5, "mm")
  13784. },
  13785. {
  13786. name: "Micro",
  13787. height: math.unit(1, "mm"),
  13788. default: true
  13789. },
  13790. {
  13791. name: "Upsized",
  13792. height: math.unit(5 + 5 / 12, "feet")
  13793. },
  13794. ]
  13795. ))
  13796. characterMakers.push(() => makeCharacter(
  13797. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13798. {
  13799. front: {
  13800. height: math.unit(5 + 6 / 12, "feet"),
  13801. weight: math.unit(200, "lb"),
  13802. name: "Front",
  13803. image: {
  13804. source: "./media/characters/vivian-bijoux/front.svg",
  13805. extra: 1217/1209,
  13806. bottom: 76/1293
  13807. }
  13808. },
  13809. back: {
  13810. height: math.unit(5 + 6 / 12, "feet"),
  13811. weight: math.unit(200, "lb"),
  13812. name: "Back",
  13813. image: {
  13814. source: "./media/characters/vivian-bijoux/back.svg",
  13815. extra: 1214/1208,
  13816. bottom: 51/1265
  13817. }
  13818. },
  13819. dressed: {
  13820. height: math.unit(5 + 6 / 12, "feet"),
  13821. weight: math.unit(200, "lb"),
  13822. name: "Dressed",
  13823. image: {
  13824. source: "./media/characters/vivian-bijoux/dressed.svg",
  13825. extra: 1217/1209,
  13826. bottom: 76/1293
  13827. }
  13828. },
  13829. },
  13830. [
  13831. {
  13832. name: "Normal",
  13833. height: math.unit(5 + 6 / 12, "feet"),
  13834. default: true
  13835. },
  13836. {
  13837. name: "Bad Dream",
  13838. height: math.unit(500, "feet")
  13839. },
  13840. {
  13841. name: "Nightmare",
  13842. height: math.unit(500, "miles")
  13843. },
  13844. ]
  13845. ))
  13846. characterMakers.push(() => makeCharacter(
  13847. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13848. {
  13849. front: {
  13850. height: math.unit(6 + 1 / 12, "feet"),
  13851. weight: math.unit(260, "lb"),
  13852. name: "Front",
  13853. image: {
  13854. source: "./media/characters/zeta/front.svg",
  13855. extra: 1968 / 1889,
  13856. bottom: 0.06
  13857. }
  13858. },
  13859. back: {
  13860. height: math.unit(6 + 1 / 12, "feet"),
  13861. weight: math.unit(260, "lb"),
  13862. name: "Back",
  13863. image: {
  13864. source: "./media/characters/zeta/back.svg",
  13865. extra: 1944 / 1858,
  13866. bottom: 0.03
  13867. }
  13868. },
  13869. hand: {
  13870. height: math.unit(1.112, "feet"),
  13871. name: "Hand",
  13872. image: {
  13873. source: "./media/characters/zeta/hand.svg"
  13874. }
  13875. },
  13876. foot: {
  13877. height: math.unit(1.48, "feet"),
  13878. name: "Foot",
  13879. image: {
  13880. source: "./media/characters/zeta/foot.svg"
  13881. }
  13882. },
  13883. },
  13884. [
  13885. {
  13886. name: "Micro",
  13887. height: math.unit(6, "inches")
  13888. },
  13889. {
  13890. name: "Normal",
  13891. height: math.unit(6 + 1 / 12, "feet"),
  13892. default: true
  13893. },
  13894. {
  13895. name: "Macro",
  13896. height: math.unit(20, "feet")
  13897. },
  13898. ]
  13899. ))
  13900. characterMakers.push(() => makeCharacter(
  13901. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13902. {
  13903. front: {
  13904. height: math.unit(6, "feet"),
  13905. weight: math.unit(150, "lb"),
  13906. name: "Front",
  13907. image: {
  13908. source: "./media/characters/jamie-larsen/front.svg",
  13909. extra: 962 / 933,
  13910. bottom: 0.02
  13911. }
  13912. },
  13913. back: {
  13914. height: math.unit(6, "feet"),
  13915. weight: math.unit(150, "lb"),
  13916. name: "Back",
  13917. image: {
  13918. source: "./media/characters/jamie-larsen/back.svg",
  13919. extra: 997 / 946
  13920. }
  13921. },
  13922. },
  13923. [
  13924. {
  13925. name: "Macro",
  13926. height: math.unit(28 + 7 / 12, "feet"),
  13927. default: true
  13928. },
  13929. {
  13930. name: "Macro+",
  13931. height: math.unit(180, "feet")
  13932. },
  13933. {
  13934. name: "Megamacro",
  13935. height: math.unit(10, "miles")
  13936. },
  13937. {
  13938. name: "Gigamacro",
  13939. height: math.unit(200000, "miles")
  13940. },
  13941. ]
  13942. ))
  13943. characterMakers.push(() => makeCharacter(
  13944. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13945. {
  13946. front: {
  13947. height: math.unit(6, "feet"),
  13948. weight: math.unit(120, "lb"),
  13949. name: "Front",
  13950. image: {
  13951. source: "./media/characters/vance/front.svg",
  13952. extra: 1980 / 1890,
  13953. bottom: 0.09
  13954. }
  13955. },
  13956. back: {
  13957. height: math.unit(6, "feet"),
  13958. weight: math.unit(120, "lb"),
  13959. name: "Back",
  13960. image: {
  13961. source: "./media/characters/vance/back.svg",
  13962. extra: 2081 / 1994,
  13963. bottom: 0.014
  13964. }
  13965. },
  13966. hand: {
  13967. height: math.unit(0.88, "feet"),
  13968. name: "Hand",
  13969. image: {
  13970. source: "./media/characters/vance/hand.svg"
  13971. }
  13972. },
  13973. foot: {
  13974. height: math.unit(0.64, "feet"),
  13975. name: "Foot",
  13976. image: {
  13977. source: "./media/characters/vance/foot.svg"
  13978. }
  13979. },
  13980. },
  13981. [
  13982. {
  13983. name: "Small",
  13984. height: math.unit(90, "feet"),
  13985. default: true
  13986. },
  13987. {
  13988. name: "Macro",
  13989. height: math.unit(100, "meters")
  13990. },
  13991. {
  13992. name: "Megamacro",
  13993. height: math.unit(15, "miles")
  13994. },
  13995. ]
  13996. ))
  13997. characterMakers.push(() => makeCharacter(
  13998. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13999. {
  14000. front: {
  14001. height: math.unit(6, "feet"),
  14002. weight: math.unit(180, "lb"),
  14003. name: "Front",
  14004. image: {
  14005. source: "./media/characters/xochitl/front.svg",
  14006. extra: 2297 / 2261,
  14007. bottom: 0.065
  14008. }
  14009. },
  14010. back: {
  14011. height: math.unit(6, "feet"),
  14012. weight: math.unit(180, "lb"),
  14013. name: "Back",
  14014. image: {
  14015. source: "./media/characters/xochitl/back.svg",
  14016. extra: 2386 / 2354,
  14017. bottom: 0.01
  14018. }
  14019. },
  14020. foot: {
  14021. height: math.unit(6 / 5 * 1.15, "feet"),
  14022. weight: math.unit(150, "lb"),
  14023. name: "Foot",
  14024. image: {
  14025. source: "./media/characters/xochitl/foot.svg"
  14026. }
  14027. },
  14028. },
  14029. [
  14030. {
  14031. name: "Macro",
  14032. height: math.unit(80, "feet")
  14033. },
  14034. {
  14035. name: "Macro+",
  14036. height: math.unit(400, "feet"),
  14037. default: true
  14038. },
  14039. {
  14040. name: "Gigamacro",
  14041. height: math.unit(80000, "miles")
  14042. },
  14043. {
  14044. name: "Gigamacro+",
  14045. height: math.unit(400000, "miles")
  14046. },
  14047. {
  14048. name: "Teramacro",
  14049. height: math.unit(300, "AU")
  14050. },
  14051. ]
  14052. ))
  14053. characterMakers.push(() => makeCharacter(
  14054. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14055. {
  14056. front: {
  14057. height: math.unit(6, "feet"),
  14058. weight: math.unit(150, "lb"),
  14059. name: "Front",
  14060. image: {
  14061. source: "./media/characters/vincent/front.svg",
  14062. extra: 1130 / 1080,
  14063. bottom: 0.055
  14064. }
  14065. },
  14066. beak: {
  14067. height: math.unit(6 * 0.1, "feet"),
  14068. name: "Beak",
  14069. image: {
  14070. source: "./media/characters/vincent/beak.svg"
  14071. }
  14072. },
  14073. hand: {
  14074. height: math.unit(6 * 0.85, "feet"),
  14075. weight: math.unit(150, "lb"),
  14076. name: "Hand",
  14077. image: {
  14078. source: "./media/characters/vincent/hand.svg"
  14079. }
  14080. },
  14081. foot: {
  14082. height: math.unit(6 * 0.19, "feet"),
  14083. weight: math.unit(150, "lb"),
  14084. name: "Foot",
  14085. image: {
  14086. source: "./media/characters/vincent/foot.svg"
  14087. }
  14088. },
  14089. },
  14090. [
  14091. {
  14092. name: "Base",
  14093. height: math.unit(6 + 5 / 12, "feet"),
  14094. default: true
  14095. },
  14096. {
  14097. name: "Macro",
  14098. height: math.unit(300, "feet")
  14099. },
  14100. {
  14101. name: "Megamacro",
  14102. height: math.unit(2, "miles")
  14103. },
  14104. {
  14105. name: "Gigamacro",
  14106. height: math.unit(1000, "miles")
  14107. },
  14108. ]
  14109. ))
  14110. characterMakers.push(() => makeCharacter(
  14111. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14112. {
  14113. front: {
  14114. height: math.unit(2, "meters"),
  14115. weight: math.unit(500, "kg"),
  14116. name: "Front",
  14117. image: {
  14118. source: "./media/characters/coatl/front.svg",
  14119. extra: 3948 / 3500,
  14120. bottom: 0.082
  14121. }
  14122. },
  14123. },
  14124. [
  14125. {
  14126. name: "Normal",
  14127. height: math.unit(4, "meters")
  14128. },
  14129. {
  14130. name: "Macro",
  14131. height: math.unit(100, "meters"),
  14132. default: true
  14133. },
  14134. {
  14135. name: "Macro+",
  14136. height: math.unit(300, "meters")
  14137. },
  14138. {
  14139. name: "Megamacro",
  14140. height: math.unit(3, "gigameters")
  14141. },
  14142. {
  14143. name: "Megamacro+",
  14144. height: math.unit(300, "terameters")
  14145. },
  14146. {
  14147. name: "Megamacro++",
  14148. height: math.unit(3, "lightyears")
  14149. },
  14150. ]
  14151. ))
  14152. characterMakers.push(() => makeCharacter(
  14153. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14154. {
  14155. front: {
  14156. height: math.unit(6, "feet"),
  14157. weight: math.unit(50, "kg"),
  14158. name: "front",
  14159. image: {
  14160. source: "./media/characters/shiroryu/front.svg",
  14161. extra: 1990 / 1935
  14162. }
  14163. },
  14164. },
  14165. [
  14166. {
  14167. name: "Mortal Mingling",
  14168. height: math.unit(3, "meters")
  14169. },
  14170. {
  14171. name: "Kaiju-ish",
  14172. height: math.unit(250, "meters")
  14173. },
  14174. {
  14175. name: "Somewhat Godly",
  14176. height: math.unit(400, "km"),
  14177. default: true
  14178. },
  14179. {
  14180. name: "Planetary",
  14181. height: math.unit(300, "megameters")
  14182. },
  14183. {
  14184. name: "Galaxy-dwarfing",
  14185. height: math.unit(450, "kiloparsecs")
  14186. },
  14187. {
  14188. name: "Universe Eater",
  14189. height: math.unit(150, "gigaparsecs")
  14190. },
  14191. {
  14192. name: "Almost Immeasurable",
  14193. height: math.unit(1.3e266, "yottaparsecs")
  14194. },
  14195. ]
  14196. ))
  14197. characterMakers.push(() => makeCharacter(
  14198. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14199. {
  14200. front: {
  14201. height: math.unit(6, "feet"),
  14202. weight: math.unit(150, "lb"),
  14203. name: "Front",
  14204. image: {
  14205. source: "./media/characters/umeko/front.svg",
  14206. extra: 1,
  14207. bottom: 0.019
  14208. }
  14209. },
  14210. frontArmored: {
  14211. height: math.unit(6, "feet"),
  14212. weight: math.unit(150, "lb"),
  14213. name: "Front (Armored)",
  14214. image: {
  14215. source: "./media/characters/umeko/front-armored.svg",
  14216. extra: 1,
  14217. bottom: 0.021
  14218. }
  14219. },
  14220. },
  14221. [
  14222. {
  14223. name: "Macro",
  14224. height: math.unit(220, "feet"),
  14225. default: true
  14226. },
  14227. {
  14228. name: "Guardian Dragon",
  14229. height: math.unit(50, "miles")
  14230. },
  14231. {
  14232. name: "Cosmic",
  14233. height: math.unit(800000, "miles")
  14234. },
  14235. ]
  14236. ))
  14237. characterMakers.push(() => makeCharacter(
  14238. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14239. {
  14240. front: {
  14241. height: math.unit(6, "feet"),
  14242. weight: math.unit(150, "lb"),
  14243. name: "Front",
  14244. image: {
  14245. source: "./media/characters/cassidy/front.svg",
  14246. extra: 810/808,
  14247. bottom: 41/851
  14248. }
  14249. },
  14250. },
  14251. [
  14252. {
  14253. name: "Canon Height",
  14254. height: math.unit(120, "feet"),
  14255. default: true
  14256. },
  14257. {
  14258. name: "Macro+",
  14259. height: math.unit(400, "feet")
  14260. },
  14261. {
  14262. name: "Macro++",
  14263. height: math.unit(4000, "feet")
  14264. },
  14265. {
  14266. name: "Megamacro",
  14267. height: math.unit(3, "miles")
  14268. },
  14269. ]
  14270. ))
  14271. characterMakers.push(() => makeCharacter(
  14272. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14273. {
  14274. front: {
  14275. height: math.unit(6, "feet"),
  14276. weight: math.unit(150, "lb"),
  14277. name: "Front",
  14278. image: {
  14279. source: "./media/characters/isaac/front.svg",
  14280. extra: 896 / 815,
  14281. bottom: 0.11
  14282. }
  14283. },
  14284. },
  14285. [
  14286. {
  14287. name: "Human Size",
  14288. height: math.unit(8, "feet"),
  14289. default: true
  14290. },
  14291. {
  14292. name: "Macro",
  14293. height: math.unit(400, "feet")
  14294. },
  14295. {
  14296. name: "Megamacro",
  14297. height: math.unit(50, "miles")
  14298. },
  14299. {
  14300. name: "Canon Height",
  14301. height: math.unit(200, "AU")
  14302. },
  14303. ]
  14304. ))
  14305. characterMakers.push(() => makeCharacter(
  14306. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14307. {
  14308. front: {
  14309. height: math.unit(6, "feet"),
  14310. weight: math.unit(72, "kg"),
  14311. name: "Front",
  14312. image: {
  14313. source: "./media/characters/sleekit/front.svg",
  14314. extra: 4693 / 4487,
  14315. bottom: 0.012
  14316. }
  14317. },
  14318. },
  14319. [
  14320. {
  14321. name: "Minimum Height",
  14322. height: math.unit(10, "meters")
  14323. },
  14324. {
  14325. name: "Smaller",
  14326. height: math.unit(25, "meters")
  14327. },
  14328. {
  14329. name: "Larger",
  14330. height: math.unit(38, "meters"),
  14331. default: true
  14332. },
  14333. {
  14334. name: "Maximum height",
  14335. height: math.unit(100, "meters")
  14336. },
  14337. ]
  14338. ))
  14339. characterMakers.push(() => makeCharacter(
  14340. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14341. {
  14342. front: {
  14343. height: math.unit(6, "feet"),
  14344. weight: math.unit(150, "lb"),
  14345. name: "Front",
  14346. image: {
  14347. source: "./media/characters/nillia/front.svg",
  14348. extra: 2195 / 2037,
  14349. bottom: 0.005
  14350. }
  14351. },
  14352. back: {
  14353. height: math.unit(6, "feet"),
  14354. weight: math.unit(150, "lb"),
  14355. name: "Back",
  14356. image: {
  14357. source: "./media/characters/nillia/back.svg",
  14358. extra: 2195 / 2037,
  14359. bottom: 0.005
  14360. }
  14361. },
  14362. },
  14363. [
  14364. {
  14365. name: "Canon Height",
  14366. height: math.unit(489, "feet"),
  14367. default: true
  14368. }
  14369. ]
  14370. ))
  14371. characterMakers.push(() => makeCharacter(
  14372. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14373. {
  14374. front: {
  14375. height: math.unit(6, "feet"),
  14376. weight: math.unit(150, "lb"),
  14377. name: "Front",
  14378. image: {
  14379. source: "./media/characters/mesmyriza/front.svg",
  14380. extra: 2067 / 1784,
  14381. bottom: 0.035
  14382. }
  14383. },
  14384. foot: {
  14385. height: math.unit(6 / (250 / 35), "feet"),
  14386. name: "Foot",
  14387. image: {
  14388. source: "./media/characters/mesmyriza/foot.svg"
  14389. }
  14390. },
  14391. },
  14392. [
  14393. {
  14394. name: "Macro",
  14395. height: math.unit(457, "meters"),
  14396. default: true
  14397. },
  14398. {
  14399. name: "Megamacro",
  14400. height: math.unit(8, "megameters")
  14401. },
  14402. ]
  14403. ))
  14404. characterMakers.push(() => makeCharacter(
  14405. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14406. {
  14407. front: {
  14408. height: math.unit(6, "feet"),
  14409. weight: math.unit(250, "lb"),
  14410. name: "Front",
  14411. image: {
  14412. source: "./media/characters/saudade/front.svg",
  14413. extra: 1172 / 1139,
  14414. bottom: 0.035
  14415. }
  14416. },
  14417. },
  14418. [
  14419. {
  14420. name: "Micro",
  14421. height: math.unit(3, "inches")
  14422. },
  14423. {
  14424. name: "Normal",
  14425. height: math.unit(6, "feet"),
  14426. default: true
  14427. },
  14428. {
  14429. name: "Macro",
  14430. height: math.unit(50, "feet")
  14431. },
  14432. {
  14433. name: "Megamacro",
  14434. height: math.unit(2800, "feet")
  14435. },
  14436. ]
  14437. ))
  14438. characterMakers.push(() => makeCharacter(
  14439. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14440. {
  14441. front: {
  14442. height: math.unit(5 + 4 / 12, "feet"),
  14443. weight: math.unit(100, "lb"),
  14444. name: "Front",
  14445. image: {
  14446. source: "./media/characters/keireer/front.svg",
  14447. extra: 716 / 666,
  14448. bottom: 0.05
  14449. }
  14450. },
  14451. },
  14452. [
  14453. {
  14454. name: "Normal",
  14455. height: math.unit(5 + 4 / 12, "feet"),
  14456. default: true
  14457. },
  14458. ]
  14459. ))
  14460. characterMakers.push(() => makeCharacter(
  14461. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14462. {
  14463. front: {
  14464. height: math.unit(6, "feet"),
  14465. weight: math.unit(90, "kg"),
  14466. name: "Front",
  14467. image: {
  14468. source: "./media/characters/mirja/front.svg",
  14469. extra: 1789 / 1683,
  14470. bottom: 0.05
  14471. }
  14472. },
  14473. frontDressed: {
  14474. height: math.unit(6, "feet"),
  14475. weight: math.unit(90, "lb"),
  14476. name: "Front (Dressed)",
  14477. image: {
  14478. source: "./media/characters/mirja/front-dressed.svg",
  14479. extra: 1789 / 1683,
  14480. bottom: 0.05
  14481. }
  14482. },
  14483. back: {
  14484. height: math.unit(6, "feet"),
  14485. weight: math.unit(90, "lb"),
  14486. name: "Back",
  14487. image: {
  14488. source: "./media/characters/mirja/back.svg",
  14489. extra: 953 / 917,
  14490. bottom: 0.017
  14491. }
  14492. },
  14493. },
  14494. [
  14495. {
  14496. name: "\"Incognito\"",
  14497. height: math.unit(3, "meters")
  14498. },
  14499. {
  14500. name: "Strolling Size",
  14501. height: math.unit(15, "km")
  14502. },
  14503. {
  14504. name: "Larger Strolling Size",
  14505. height: math.unit(400, "km")
  14506. },
  14507. {
  14508. name: "Preferred Size",
  14509. height: math.unit(5000, "km")
  14510. },
  14511. {
  14512. name: "True Size",
  14513. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14514. default: true
  14515. },
  14516. ]
  14517. ))
  14518. characterMakers.push(() => makeCharacter(
  14519. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14520. {
  14521. front: {
  14522. height: math.unit(15, "feet"),
  14523. weight: math.unit(880, "kg"),
  14524. name: "Front",
  14525. image: {
  14526. source: "./media/characters/nightraver/front.svg",
  14527. extra: 2444 / 2160,
  14528. bottom: 0.027
  14529. }
  14530. },
  14531. back: {
  14532. height: math.unit(15, "feet"),
  14533. weight: math.unit(880, "kg"),
  14534. name: "Back",
  14535. image: {
  14536. source: "./media/characters/nightraver/back.svg",
  14537. extra: 2309 / 2180,
  14538. bottom: 0.005
  14539. }
  14540. },
  14541. sole: {
  14542. height: math.unit(2.878, "feet"),
  14543. name: "Sole",
  14544. image: {
  14545. source: "./media/characters/nightraver/sole.svg"
  14546. }
  14547. },
  14548. foot: {
  14549. height: math.unit(2.285, "feet"),
  14550. name: "Foot",
  14551. image: {
  14552. source: "./media/characters/nightraver/foot.svg"
  14553. }
  14554. },
  14555. maw: {
  14556. height: math.unit(2.67, "feet"),
  14557. name: "Maw",
  14558. image: {
  14559. source: "./media/characters/nightraver/maw.svg"
  14560. }
  14561. },
  14562. },
  14563. [
  14564. {
  14565. name: "Micro",
  14566. height: math.unit(1, "cm")
  14567. },
  14568. {
  14569. name: "Normal",
  14570. height: math.unit(15, "feet"),
  14571. default: true
  14572. },
  14573. {
  14574. name: "Macro",
  14575. height: math.unit(300, "feet")
  14576. },
  14577. {
  14578. name: "Megamacro",
  14579. height: math.unit(300, "miles")
  14580. },
  14581. {
  14582. name: "Gigamacro",
  14583. height: math.unit(10000, "miles")
  14584. },
  14585. ]
  14586. ))
  14587. characterMakers.push(() => makeCharacter(
  14588. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14589. {
  14590. side: {
  14591. height: math.unit(2, "inches"),
  14592. weight: math.unit(5, "grams"),
  14593. name: "Side",
  14594. image: {
  14595. source: "./media/characters/arc/side.svg"
  14596. }
  14597. },
  14598. },
  14599. [
  14600. {
  14601. name: "Micro",
  14602. height: math.unit(2, "inches"),
  14603. default: true
  14604. },
  14605. ]
  14606. ))
  14607. characterMakers.push(() => makeCharacter(
  14608. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14609. {
  14610. front: {
  14611. height: math.unit(1.1938, "meters"),
  14612. weight: math.unit(54, "kg"),
  14613. name: "Front",
  14614. image: {
  14615. source: "./media/characters/nebula-shahar/front.svg",
  14616. extra: 1642 / 1436,
  14617. bottom: 0.06
  14618. }
  14619. },
  14620. },
  14621. [
  14622. {
  14623. name: "Megamicro",
  14624. height: math.unit(0.3, "mm")
  14625. },
  14626. {
  14627. name: "Micro",
  14628. height: math.unit(3, "cm")
  14629. },
  14630. {
  14631. name: "Normal",
  14632. height: math.unit(138, "cm"),
  14633. default: true
  14634. },
  14635. {
  14636. name: "Macro",
  14637. height: math.unit(30, "m")
  14638. },
  14639. ]
  14640. ))
  14641. characterMakers.push(() => makeCharacter(
  14642. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14643. {
  14644. front: {
  14645. height: math.unit(5.24, "feet"),
  14646. weight: math.unit(150, "lb"),
  14647. name: "Front",
  14648. image: {
  14649. source: "./media/characters/shayla/front.svg",
  14650. extra: 1512 / 1414,
  14651. bottom: 0.01
  14652. }
  14653. },
  14654. back: {
  14655. height: math.unit(5.24, "feet"),
  14656. weight: math.unit(150, "lb"),
  14657. name: "Back",
  14658. image: {
  14659. source: "./media/characters/shayla/back.svg",
  14660. extra: 1512 / 1414
  14661. }
  14662. },
  14663. hand: {
  14664. height: math.unit(0.7781496062992126, "feet"),
  14665. name: "Hand",
  14666. image: {
  14667. source: "./media/characters/shayla/hand.svg"
  14668. }
  14669. },
  14670. foot: {
  14671. height: math.unit(1.4206036745406823, "feet"),
  14672. name: "Foot",
  14673. image: {
  14674. source: "./media/characters/shayla/foot.svg"
  14675. }
  14676. },
  14677. },
  14678. [
  14679. {
  14680. name: "Micro",
  14681. height: math.unit(0.32, "feet")
  14682. },
  14683. {
  14684. name: "Normal",
  14685. height: math.unit(5.24, "feet"),
  14686. default: true
  14687. },
  14688. {
  14689. name: "Macro",
  14690. height: math.unit(492.12, "feet")
  14691. },
  14692. {
  14693. name: "Megamacro",
  14694. height: math.unit(186.41, "miles")
  14695. },
  14696. ]
  14697. ))
  14698. characterMakers.push(() => makeCharacter(
  14699. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14700. {
  14701. front: {
  14702. height: math.unit(2.2, "m"),
  14703. weight: math.unit(120, "kg"),
  14704. name: "Front",
  14705. image: {
  14706. source: "./media/characters/pia-jr/front.svg",
  14707. extra: 1000 / 970,
  14708. bottom: 0.035
  14709. }
  14710. },
  14711. hand: {
  14712. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14713. name: "Hand",
  14714. image: {
  14715. source: "./media/characters/pia-jr/hand.svg"
  14716. }
  14717. },
  14718. paw: {
  14719. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14720. name: "Paw",
  14721. image: {
  14722. source: "./media/characters/pia-jr/paw.svg"
  14723. }
  14724. },
  14725. },
  14726. [
  14727. {
  14728. name: "Micro",
  14729. height: math.unit(1.2, "cm")
  14730. },
  14731. {
  14732. name: "Normal",
  14733. height: math.unit(2.2, "m"),
  14734. default: true
  14735. },
  14736. {
  14737. name: "Macro",
  14738. height: math.unit(180, "m")
  14739. },
  14740. {
  14741. name: "Megamacro",
  14742. height: math.unit(420, "km")
  14743. },
  14744. ]
  14745. ))
  14746. characterMakers.push(() => makeCharacter(
  14747. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14748. {
  14749. front: {
  14750. height: math.unit(2, "m"),
  14751. weight: math.unit(115, "kg"),
  14752. name: "Front",
  14753. image: {
  14754. source: "./media/characters/pia-sr/front.svg",
  14755. extra: 760 / 730,
  14756. bottom: 0.015
  14757. }
  14758. },
  14759. back: {
  14760. height: math.unit(2, "m"),
  14761. weight: math.unit(115, "kg"),
  14762. name: "Back",
  14763. image: {
  14764. source: "./media/characters/pia-sr/back.svg",
  14765. extra: 760 / 730,
  14766. bottom: 0.01
  14767. }
  14768. },
  14769. hand: {
  14770. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14771. name: "Hand",
  14772. image: {
  14773. source: "./media/characters/pia-sr/hand.svg"
  14774. }
  14775. },
  14776. foot: {
  14777. height: math.unit(1.83, "feet"),
  14778. name: "Foot",
  14779. image: {
  14780. source: "./media/characters/pia-sr/foot.svg"
  14781. }
  14782. },
  14783. },
  14784. [
  14785. {
  14786. name: "Micro",
  14787. height: math.unit(88, "mm")
  14788. },
  14789. {
  14790. name: "Normal",
  14791. height: math.unit(2, "m"),
  14792. default: true
  14793. },
  14794. {
  14795. name: "Macro",
  14796. height: math.unit(200, "m")
  14797. },
  14798. {
  14799. name: "Megamacro",
  14800. height: math.unit(420, "km")
  14801. },
  14802. ]
  14803. ))
  14804. characterMakers.push(() => makeCharacter(
  14805. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14806. {
  14807. front: {
  14808. height: math.unit(8 + 2 / 12, "feet"),
  14809. weight: math.unit(300, "lb"),
  14810. name: "Front",
  14811. image: {
  14812. source: "./media/characters/kibibyte/front.svg",
  14813. extra: 2221 / 2098,
  14814. bottom: 0.04
  14815. }
  14816. },
  14817. },
  14818. [
  14819. {
  14820. name: "Normal",
  14821. height: math.unit(8 + 2 / 12, "feet"),
  14822. default: true
  14823. },
  14824. {
  14825. name: "Socialable Macro",
  14826. height: math.unit(50, "feet")
  14827. },
  14828. {
  14829. name: "Macro",
  14830. height: math.unit(300, "feet")
  14831. },
  14832. {
  14833. name: "Megamacro",
  14834. height: math.unit(500, "miles")
  14835. },
  14836. ]
  14837. ))
  14838. characterMakers.push(() => makeCharacter(
  14839. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14840. {
  14841. front: {
  14842. height: math.unit(6, "feet"),
  14843. weight: math.unit(150, "lb"),
  14844. name: "Front",
  14845. image: {
  14846. source: "./media/characters/felix/front.svg",
  14847. extra: 762 / 722,
  14848. bottom: 0.02
  14849. }
  14850. },
  14851. frontClothed: {
  14852. height: math.unit(6, "feet"),
  14853. weight: math.unit(150, "lb"),
  14854. name: "Front (Clothed)",
  14855. image: {
  14856. source: "./media/characters/felix/front-clothed.svg",
  14857. extra: 762 / 722,
  14858. bottom: 0.02
  14859. }
  14860. },
  14861. },
  14862. [
  14863. {
  14864. name: "Normal",
  14865. height: math.unit(6 + 8 / 12, "feet"),
  14866. default: true
  14867. },
  14868. {
  14869. name: "Macro",
  14870. height: math.unit(2600, "feet")
  14871. },
  14872. {
  14873. name: "Megamacro",
  14874. height: math.unit(450, "miles")
  14875. },
  14876. ]
  14877. ))
  14878. characterMakers.push(() => makeCharacter(
  14879. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14880. {
  14881. front: {
  14882. height: math.unit(6 + 1 / 12, "feet"),
  14883. weight: math.unit(250, "lb"),
  14884. name: "Front",
  14885. image: {
  14886. source: "./media/characters/tobo/front.svg",
  14887. extra: 608 / 586,
  14888. bottom: 0.023
  14889. }
  14890. },
  14891. back: {
  14892. height: math.unit(6 + 1 / 12, "feet"),
  14893. weight: math.unit(250, "lb"),
  14894. name: "Back",
  14895. image: {
  14896. source: "./media/characters/tobo/back.svg",
  14897. extra: 608 / 586
  14898. }
  14899. },
  14900. },
  14901. [
  14902. {
  14903. name: "Nano",
  14904. height: math.unit(2, "nm")
  14905. },
  14906. {
  14907. name: "Megamicro",
  14908. height: math.unit(0.1, "mm")
  14909. },
  14910. {
  14911. name: "Micro",
  14912. height: math.unit(1, "inch"),
  14913. default: true
  14914. },
  14915. {
  14916. name: "Human-sized",
  14917. height: math.unit(6 + 1 / 12, "feet")
  14918. },
  14919. {
  14920. name: "Macro",
  14921. height: math.unit(250, "feet")
  14922. },
  14923. {
  14924. name: "Megamacro",
  14925. height: math.unit(75, "miles")
  14926. },
  14927. {
  14928. name: "Texas-sized",
  14929. height: math.unit(750, "miles")
  14930. },
  14931. {
  14932. name: "Teramacro",
  14933. height: math.unit(50000, "miles")
  14934. },
  14935. ]
  14936. ))
  14937. characterMakers.push(() => makeCharacter(
  14938. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14939. {
  14940. front: {
  14941. height: math.unit(6, "feet"),
  14942. weight: math.unit(269, "lb"),
  14943. name: "Front",
  14944. image: {
  14945. source: "./media/characters/danny-kapowsky/front.svg",
  14946. extra: 766 / 736,
  14947. bottom: 0.044
  14948. }
  14949. },
  14950. back: {
  14951. height: math.unit(6, "feet"),
  14952. weight: math.unit(269, "lb"),
  14953. name: "Back",
  14954. image: {
  14955. source: "./media/characters/danny-kapowsky/back.svg",
  14956. extra: 797 / 760,
  14957. bottom: 0.025
  14958. }
  14959. },
  14960. },
  14961. [
  14962. {
  14963. name: "Macro",
  14964. height: math.unit(150, "feet"),
  14965. default: true
  14966. },
  14967. {
  14968. name: "Macro+",
  14969. height: math.unit(200, "feet")
  14970. },
  14971. {
  14972. name: "Macro++",
  14973. height: math.unit(300, "feet")
  14974. },
  14975. {
  14976. name: "Macro+++",
  14977. height: math.unit(400, "feet")
  14978. },
  14979. ]
  14980. ))
  14981. characterMakers.push(() => makeCharacter(
  14982. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14983. {
  14984. side: {
  14985. height: math.unit(6, "feet"),
  14986. weight: math.unit(170, "lb"),
  14987. name: "Side",
  14988. image: {
  14989. source: "./media/characters/finn/side.svg",
  14990. extra: 1953 / 1807,
  14991. bottom: 0.057
  14992. }
  14993. },
  14994. },
  14995. [
  14996. {
  14997. name: "Megamacro",
  14998. height: math.unit(14445, "feet"),
  14999. default: true
  15000. },
  15001. ]
  15002. ))
  15003. characterMakers.push(() => makeCharacter(
  15004. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15005. {
  15006. front: {
  15007. height: math.unit(5 + 6 / 12, "feet"),
  15008. weight: math.unit(125, "lb"),
  15009. name: "Front",
  15010. image: {
  15011. source: "./media/characters/roy/front.svg",
  15012. extra: 1,
  15013. bottom: 0.11
  15014. }
  15015. },
  15016. },
  15017. [
  15018. {
  15019. name: "Micro",
  15020. height: math.unit(3, "inches"),
  15021. default: true
  15022. },
  15023. {
  15024. name: "Normal",
  15025. height: math.unit(5 + 6 / 12, "feet")
  15026. },
  15027. {
  15028. name: "Lesser Macro",
  15029. height: math.unit(60, "feet")
  15030. },
  15031. {
  15032. name: "Greater Macro",
  15033. height: math.unit(120, "feet")
  15034. },
  15035. ]
  15036. ))
  15037. characterMakers.push(() => makeCharacter(
  15038. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15039. {
  15040. front: {
  15041. height: math.unit(6, "feet"),
  15042. weight: math.unit(100, "lb"),
  15043. name: "Front",
  15044. image: {
  15045. source: "./media/characters/aevsivs/front.svg",
  15046. extra: 1,
  15047. bottom: 0.03
  15048. }
  15049. },
  15050. back: {
  15051. height: math.unit(6, "feet"),
  15052. weight: math.unit(100, "lb"),
  15053. name: "Back",
  15054. image: {
  15055. source: "./media/characters/aevsivs/back.svg"
  15056. }
  15057. },
  15058. },
  15059. [
  15060. {
  15061. name: "Micro",
  15062. height: math.unit(2, "inches"),
  15063. default: true
  15064. },
  15065. {
  15066. name: "Normal",
  15067. height: math.unit(5, "feet")
  15068. },
  15069. ]
  15070. ))
  15071. characterMakers.push(() => makeCharacter(
  15072. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15073. {
  15074. front: {
  15075. height: math.unit(5 + 7 / 12, "feet"),
  15076. weight: math.unit(159, "lb"),
  15077. name: "Front",
  15078. image: {
  15079. source: "./media/characters/hildegard/front.svg",
  15080. extra: 289 / 269,
  15081. bottom: 7.63 / 297.8
  15082. }
  15083. },
  15084. back: {
  15085. height: math.unit(5 + 7 / 12, "feet"),
  15086. weight: math.unit(159, "lb"),
  15087. name: "Back",
  15088. image: {
  15089. source: "./media/characters/hildegard/back.svg",
  15090. extra: 280 / 260,
  15091. bottom: 2.3 / 282
  15092. }
  15093. },
  15094. },
  15095. [
  15096. {
  15097. name: "Normal",
  15098. height: math.unit(5 + 7 / 12, "feet"),
  15099. default: true
  15100. },
  15101. ]
  15102. ))
  15103. characterMakers.push(() => makeCharacter(
  15104. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15105. {
  15106. bernard: {
  15107. height: math.unit(2 + 7 / 12, "feet"),
  15108. weight: math.unit(66, "lb"),
  15109. name: "Bernard",
  15110. rename: true,
  15111. image: {
  15112. source: "./media/characters/bernard-wilder/bernard.svg",
  15113. extra: 192 / 128,
  15114. bottom: 0.05
  15115. }
  15116. },
  15117. wilder: {
  15118. height: math.unit(5 + 8 / 12, "feet"),
  15119. weight: math.unit(143, "lb"),
  15120. name: "Wilder",
  15121. rename: true,
  15122. image: {
  15123. source: "./media/characters/bernard-wilder/wilder.svg",
  15124. extra: 361 / 312,
  15125. bottom: 0.02
  15126. }
  15127. },
  15128. },
  15129. [
  15130. {
  15131. name: "Normal",
  15132. height: math.unit(2 + 7 / 12, "feet"),
  15133. default: true
  15134. },
  15135. ]
  15136. ))
  15137. characterMakers.push(() => makeCharacter(
  15138. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15139. {
  15140. anthro: {
  15141. height: math.unit(6 + 1 / 12, "feet"),
  15142. weight: math.unit(155, "lb"),
  15143. name: "Anthro",
  15144. image: {
  15145. source: "./media/characters/hearth/anthro.svg",
  15146. extra: 1178/1136,
  15147. bottom: 28/1206
  15148. }
  15149. },
  15150. feral: {
  15151. height: math.unit(3.78, "feet"),
  15152. weight: math.unit(35, "kg"),
  15153. name: "Feral",
  15154. image: {
  15155. source: "./media/characters/hearth/feral.svg",
  15156. extra: 153 / 135,
  15157. bottom: 0.03
  15158. }
  15159. },
  15160. },
  15161. [
  15162. {
  15163. name: "Normal",
  15164. height: math.unit(6 + 1 / 12, "feet"),
  15165. default: true
  15166. },
  15167. ]
  15168. ))
  15169. characterMakers.push(() => makeCharacter(
  15170. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15171. {
  15172. front: {
  15173. height: math.unit(6, "feet"),
  15174. weight: math.unit(182, "lb"),
  15175. name: "Front",
  15176. image: {
  15177. source: "./media/characters/ingrid/front.svg",
  15178. extra: 294 / 268,
  15179. bottom: 0.027
  15180. }
  15181. },
  15182. },
  15183. [
  15184. {
  15185. name: "Normal",
  15186. height: math.unit(6, "feet"),
  15187. default: true
  15188. },
  15189. ]
  15190. ))
  15191. characterMakers.push(() => makeCharacter(
  15192. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15193. {
  15194. eevee: {
  15195. height: math.unit(2 + 10 / 12, "feet"),
  15196. weight: math.unit(86, "lb"),
  15197. name: "Malgam",
  15198. image: {
  15199. source: "./media/characters/malgam/eevee.svg",
  15200. extra: 952/784,
  15201. bottom: 38/990
  15202. }
  15203. },
  15204. sylveon: {
  15205. height: math.unit(4, "feet"),
  15206. weight: math.unit(101, "lb"),
  15207. name: "Future Malgam",
  15208. rename: true,
  15209. image: {
  15210. source: "./media/characters/malgam/sylveon.svg",
  15211. extra: 371 / 325,
  15212. bottom: 0.015
  15213. }
  15214. },
  15215. gigantamax: {
  15216. height: math.unit(50, "feet"),
  15217. name: "Gigantamax Malgam",
  15218. rename: true,
  15219. image: {
  15220. source: "./media/characters/malgam/gigantamax.svg"
  15221. }
  15222. },
  15223. },
  15224. [
  15225. {
  15226. name: "Normal",
  15227. height: math.unit(2 + 10 / 12, "feet"),
  15228. default: true
  15229. },
  15230. ]
  15231. ))
  15232. characterMakers.push(() => makeCharacter(
  15233. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15234. {
  15235. front: {
  15236. height: math.unit(5 + 11 / 12, "feet"),
  15237. weight: math.unit(188, "lb"),
  15238. name: "Front",
  15239. image: {
  15240. source: "./media/characters/fleur/front.svg",
  15241. extra: 309 / 283,
  15242. bottom: 0.007
  15243. }
  15244. },
  15245. },
  15246. [
  15247. {
  15248. name: "Normal",
  15249. height: math.unit(5 + 11 / 12, "feet"),
  15250. default: true
  15251. },
  15252. ]
  15253. ))
  15254. characterMakers.push(() => makeCharacter(
  15255. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15256. {
  15257. front: {
  15258. height: math.unit(5 + 4 / 12, "feet"),
  15259. weight: math.unit(122, "lb"),
  15260. name: "Front",
  15261. image: {
  15262. source: "./media/characters/jude/front.svg",
  15263. extra: 288 / 273,
  15264. bottom: 0.03
  15265. }
  15266. },
  15267. },
  15268. [
  15269. {
  15270. name: "Normal",
  15271. height: math.unit(5 + 4 / 12, "feet"),
  15272. default: true
  15273. },
  15274. ]
  15275. ))
  15276. characterMakers.push(() => makeCharacter(
  15277. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15278. {
  15279. front: {
  15280. height: math.unit(5 + 11 / 12, "feet"),
  15281. weight: math.unit(190, "lb"),
  15282. name: "Front",
  15283. image: {
  15284. source: "./media/characters/seara/front.svg",
  15285. extra: 1,
  15286. bottom: 0.05
  15287. }
  15288. },
  15289. },
  15290. [
  15291. {
  15292. name: "Normal",
  15293. height: math.unit(5 + 11 / 12, "feet"),
  15294. default: true
  15295. },
  15296. ]
  15297. ))
  15298. characterMakers.push(() => makeCharacter(
  15299. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15300. {
  15301. front: {
  15302. height: math.unit(16 + 5 / 12, "feet"),
  15303. weight: math.unit(524, "lb"),
  15304. name: "Front",
  15305. image: {
  15306. source: "./media/characters/caspian/front.svg",
  15307. extra: 1,
  15308. bottom: 0.04
  15309. }
  15310. },
  15311. },
  15312. [
  15313. {
  15314. name: "Normal",
  15315. height: math.unit(16 + 5 / 12, "feet"),
  15316. default: true
  15317. },
  15318. ]
  15319. ))
  15320. characterMakers.push(() => makeCharacter(
  15321. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15322. {
  15323. front: {
  15324. height: math.unit(5 + 7 / 12, "feet"),
  15325. weight: math.unit(170, "lb"),
  15326. name: "Front",
  15327. image: {
  15328. source: "./media/characters/mika/front.svg",
  15329. extra: 1,
  15330. bottom: 0.016
  15331. }
  15332. },
  15333. },
  15334. [
  15335. {
  15336. name: "Normal",
  15337. height: math.unit(5 + 7 / 12, "feet"),
  15338. default: true
  15339. },
  15340. ]
  15341. ))
  15342. characterMakers.push(() => makeCharacter(
  15343. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15344. {
  15345. front: {
  15346. height: math.unit(6 + 2 / 12, "feet"),
  15347. weight: math.unit(268, "lb"),
  15348. name: "Front",
  15349. image: {
  15350. source: "./media/characters/sol/front.svg",
  15351. extra: 247 / 231,
  15352. bottom: 0.05
  15353. }
  15354. },
  15355. },
  15356. [
  15357. {
  15358. name: "Normal",
  15359. height: math.unit(6 + 2 / 12, "feet"),
  15360. default: true
  15361. },
  15362. ]
  15363. ))
  15364. characterMakers.push(() => makeCharacter(
  15365. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15366. {
  15367. buizel: {
  15368. height: math.unit(2 + 5 / 12, "feet"),
  15369. weight: math.unit(87, "lb"),
  15370. name: "Buizel",
  15371. image: {
  15372. source: "./media/characters/umiko/buizel.svg",
  15373. extra: 172 / 157,
  15374. bottom: 0.01
  15375. }
  15376. },
  15377. floatzel: {
  15378. height: math.unit(5 + 9 / 12, "feet"),
  15379. weight: math.unit(250, "lb"),
  15380. name: "Floatzel",
  15381. image: {
  15382. source: "./media/characters/umiko/floatzel.svg",
  15383. extra: 262 / 248
  15384. }
  15385. },
  15386. },
  15387. [
  15388. {
  15389. name: "Normal",
  15390. height: math.unit(2 + 5 / 12, "feet"),
  15391. default: true
  15392. },
  15393. ]
  15394. ))
  15395. characterMakers.push(() => makeCharacter(
  15396. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15397. {
  15398. front: {
  15399. height: math.unit(6 + 2 / 12, "feet"),
  15400. weight: math.unit(146, "lb"),
  15401. name: "Front",
  15402. image: {
  15403. source: "./media/characters/iliac/front.svg",
  15404. extra: 389 / 365,
  15405. bottom: 0.035
  15406. }
  15407. },
  15408. },
  15409. [
  15410. {
  15411. name: "Normal",
  15412. height: math.unit(6 + 2 / 12, "feet"),
  15413. default: true
  15414. },
  15415. ]
  15416. ))
  15417. characterMakers.push(() => makeCharacter(
  15418. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15419. {
  15420. front: {
  15421. height: math.unit(6, "feet"),
  15422. weight: math.unit(170, "lb"),
  15423. name: "Front",
  15424. image: {
  15425. source: "./media/characters/topaz/front.svg",
  15426. extra: 317 / 303,
  15427. bottom: 0.055
  15428. }
  15429. },
  15430. },
  15431. [
  15432. {
  15433. name: "Normal",
  15434. height: math.unit(6, "feet"),
  15435. default: true
  15436. },
  15437. ]
  15438. ))
  15439. characterMakers.push(() => makeCharacter(
  15440. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15441. {
  15442. front: {
  15443. height: math.unit(5 + 11 / 12, "feet"),
  15444. weight: math.unit(144, "lb"),
  15445. name: "Front",
  15446. image: {
  15447. source: "./media/characters/gabriel/front.svg",
  15448. extra: 285 / 262,
  15449. bottom: 0.004
  15450. }
  15451. },
  15452. },
  15453. [
  15454. {
  15455. name: "Normal",
  15456. height: math.unit(5 + 11 / 12, "feet"),
  15457. default: true
  15458. },
  15459. ]
  15460. ))
  15461. characterMakers.push(() => makeCharacter(
  15462. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15463. {
  15464. side: {
  15465. height: math.unit(6 + 5 / 12, "feet"),
  15466. weight: math.unit(300, "lb"),
  15467. name: "Side",
  15468. image: {
  15469. source: "./media/characters/tempest-suicune/side.svg",
  15470. extra: 195 / 154,
  15471. bottom: 0.04
  15472. }
  15473. },
  15474. },
  15475. [
  15476. {
  15477. name: "Normal",
  15478. height: math.unit(6 + 5 / 12, "feet"),
  15479. default: true
  15480. },
  15481. ]
  15482. ))
  15483. characterMakers.push(() => makeCharacter(
  15484. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15485. {
  15486. front: {
  15487. height: math.unit(7 + 2 / 12, "feet"),
  15488. weight: math.unit(322, "lb"),
  15489. name: "Front",
  15490. image: {
  15491. source: "./media/characters/vulcan/front.svg",
  15492. extra: 154 / 147,
  15493. bottom: 0.04
  15494. }
  15495. },
  15496. },
  15497. [
  15498. {
  15499. name: "Normal",
  15500. height: math.unit(7 + 2 / 12, "feet"),
  15501. default: true
  15502. },
  15503. ]
  15504. ))
  15505. characterMakers.push(() => makeCharacter(
  15506. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15507. {
  15508. front: {
  15509. height: math.unit(5 + 10 / 12, "feet"),
  15510. weight: math.unit(264, "lb"),
  15511. name: "Front",
  15512. image: {
  15513. source: "./media/characters/gault/front.svg",
  15514. extra: 161 / 140,
  15515. bottom: 0.028
  15516. }
  15517. },
  15518. },
  15519. [
  15520. {
  15521. name: "Normal",
  15522. height: math.unit(5 + 10 / 12, "feet"),
  15523. default: true
  15524. },
  15525. ]
  15526. ))
  15527. characterMakers.push(() => makeCharacter(
  15528. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15529. {
  15530. front: {
  15531. height: math.unit(6, "feet"),
  15532. weight: math.unit(150, "lb"),
  15533. name: "Front",
  15534. image: {
  15535. source: "./media/characters/shard/front.svg",
  15536. extra: 273 / 238,
  15537. bottom: 0.02
  15538. }
  15539. },
  15540. },
  15541. [
  15542. {
  15543. name: "Normal",
  15544. height: math.unit(3 + 6 / 12, "feet"),
  15545. default: true
  15546. },
  15547. ]
  15548. ))
  15549. characterMakers.push(() => makeCharacter(
  15550. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15551. {
  15552. front: {
  15553. height: math.unit(5 + 11 / 12, "feet"),
  15554. weight: math.unit(146, "lb"),
  15555. name: "Front",
  15556. image: {
  15557. source: "./media/characters/ashe/front.svg",
  15558. extra: 400 / 373,
  15559. bottom: 0.01
  15560. }
  15561. },
  15562. },
  15563. [
  15564. {
  15565. name: "Normal",
  15566. height: math.unit(5 + 11 / 12, "feet"),
  15567. default: true
  15568. },
  15569. ]
  15570. ))
  15571. characterMakers.push(() => makeCharacter(
  15572. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15573. {
  15574. front: {
  15575. height: math.unit(5 + 5 / 12, "feet"),
  15576. weight: math.unit(135, "lb"),
  15577. name: "Front",
  15578. image: {
  15579. source: "./media/characters/beatrix/front.svg",
  15580. extra: 392 / 379,
  15581. bottom: 0.01
  15582. }
  15583. },
  15584. },
  15585. [
  15586. {
  15587. name: "Normal",
  15588. height: math.unit(6, "feet"),
  15589. default: true
  15590. },
  15591. ]
  15592. ))
  15593. characterMakers.push(() => makeCharacter(
  15594. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15595. {
  15596. front: {
  15597. height: math.unit(6 + 2/12, "feet"),
  15598. weight: math.unit(135, "lb"),
  15599. name: "Front",
  15600. image: {
  15601. source: "./media/characters/ignatius/front.svg",
  15602. extra: 1380/1259,
  15603. bottom: 27/1407
  15604. }
  15605. },
  15606. },
  15607. [
  15608. {
  15609. name: "Normal",
  15610. height: math.unit(6 + 2/12, "feet"),
  15611. default: true
  15612. },
  15613. ]
  15614. ))
  15615. characterMakers.push(() => makeCharacter(
  15616. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15617. {
  15618. front: {
  15619. height: math.unit(6 + 2 / 12, "feet"),
  15620. weight: math.unit(138, "lb"),
  15621. name: "Front",
  15622. image: {
  15623. source: "./media/characters/mei-li/front.svg",
  15624. extra: 237 / 229,
  15625. bottom: 0.03
  15626. }
  15627. },
  15628. },
  15629. [
  15630. {
  15631. name: "Normal",
  15632. height: math.unit(6 + 2 / 12, "feet"),
  15633. default: true
  15634. },
  15635. ]
  15636. ))
  15637. characterMakers.push(() => makeCharacter(
  15638. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15639. {
  15640. front: {
  15641. height: math.unit(2 + 4 / 12, "feet"),
  15642. weight: math.unit(62, "lb"),
  15643. name: "Front",
  15644. image: {
  15645. source: "./media/characters/puru/front.svg",
  15646. extra: 206 / 149,
  15647. bottom: 0.06
  15648. }
  15649. },
  15650. },
  15651. [
  15652. {
  15653. name: "Normal",
  15654. height: math.unit(2 + 4 / 12, "feet"),
  15655. default: true
  15656. },
  15657. ]
  15658. ))
  15659. characterMakers.push(() => makeCharacter(
  15660. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15661. {
  15662. anthro: {
  15663. height: math.unit(5 + 8/12, "feet"),
  15664. weight: math.unit(200, "lb"),
  15665. energyNeed: math.unit(2000, "kcal"),
  15666. name: "Anthro",
  15667. image: {
  15668. source: "./media/characters/kee/anthro.svg",
  15669. extra: 3251/3184,
  15670. bottom: 250/3501
  15671. }
  15672. },
  15673. taur: {
  15674. height: math.unit(11, "feet"),
  15675. weight: math.unit(500, "lb"),
  15676. energyNeed: math.unit(5000, "kcal"),
  15677. name: "Taur",
  15678. image: {
  15679. source: "./media/characters/kee/taur.svg",
  15680. extra: 1362/1320,
  15681. bottom: 83/1445
  15682. }
  15683. },
  15684. },
  15685. [
  15686. {
  15687. name: "Normal",
  15688. height: math.unit(5 + 8/12, "feet"),
  15689. default: true
  15690. },
  15691. {
  15692. name: "Macro",
  15693. height: math.unit(35, "feet")
  15694. },
  15695. ]
  15696. ))
  15697. characterMakers.push(() => makeCharacter(
  15698. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15699. {
  15700. anthro: {
  15701. height: math.unit(7, "feet"),
  15702. weight: math.unit(190, "lb"),
  15703. name: "Anthro",
  15704. image: {
  15705. source: "./media/characters/cobalt-dracha/anthro.svg",
  15706. extra: 231 / 225,
  15707. bottom: 0.04
  15708. }
  15709. },
  15710. feral: {
  15711. height: math.unit(9 + 7 / 12, "feet"),
  15712. weight: math.unit(294, "lb"),
  15713. name: "Feral",
  15714. image: {
  15715. source: "./media/characters/cobalt-dracha/feral.svg",
  15716. extra: 692 / 633,
  15717. bottom: 0.05
  15718. }
  15719. },
  15720. },
  15721. [
  15722. {
  15723. name: "Normal",
  15724. height: math.unit(7, "feet"),
  15725. default: true
  15726. },
  15727. ]
  15728. ))
  15729. characterMakers.push(() => makeCharacter(
  15730. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15731. {
  15732. fallen: {
  15733. height: math.unit(11 + 8 / 12, "feet"),
  15734. weight: math.unit(485, "lb"),
  15735. name: "Java (Fallen)",
  15736. rename: true,
  15737. image: {
  15738. source: "./media/characters/java/fallen.svg",
  15739. extra: 226 / 208,
  15740. bottom: 0.005
  15741. }
  15742. },
  15743. godkin: {
  15744. height: math.unit(10 + 6 / 12, "feet"),
  15745. weight: math.unit(328, "lb"),
  15746. name: "Java (Godkin)",
  15747. rename: true,
  15748. image: {
  15749. source: "./media/characters/java/godkin.svg",
  15750. extra: 1104/1068,
  15751. bottom: 36/1140
  15752. }
  15753. },
  15754. },
  15755. [
  15756. {
  15757. name: "Normal",
  15758. height: math.unit(11 + 8 / 12, "feet"),
  15759. default: true
  15760. },
  15761. ]
  15762. ))
  15763. characterMakers.push(() => makeCharacter(
  15764. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15765. {
  15766. front: {
  15767. height: math.unit(5 + 9 / 12, "feet"),
  15768. weight: math.unit(170, "lb"),
  15769. name: "Front",
  15770. image: {
  15771. source: "./media/characters/purna/front.svg",
  15772. extra: 239 / 229,
  15773. bottom: 0.01
  15774. }
  15775. },
  15776. },
  15777. [
  15778. {
  15779. name: "Normal",
  15780. height: math.unit(5 + 9 / 12, "feet"),
  15781. default: true
  15782. },
  15783. ]
  15784. ))
  15785. characterMakers.push(() => makeCharacter(
  15786. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15787. {
  15788. front: {
  15789. height: math.unit(5 + 9 / 12, "feet"),
  15790. weight: math.unit(142, "lb"),
  15791. name: "Front",
  15792. image: {
  15793. source: "./media/characters/kuva/front.svg",
  15794. extra: 281 / 271,
  15795. bottom: 0.006
  15796. }
  15797. },
  15798. },
  15799. [
  15800. {
  15801. name: "Normal",
  15802. height: math.unit(5 + 9 / 12, "feet"),
  15803. default: true
  15804. },
  15805. ]
  15806. ))
  15807. characterMakers.push(() => makeCharacter(
  15808. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15809. {
  15810. anthro: {
  15811. height: math.unit(9 + 2 / 12, "feet"),
  15812. weight: math.unit(270, "lb"),
  15813. name: "Anthro",
  15814. image: {
  15815. source: "./media/characters/embra/anthro.svg",
  15816. extra: 200 / 187,
  15817. bottom: 0.02
  15818. }
  15819. },
  15820. feral: {
  15821. height: math.unit(18 + 8 / 12, "feet"),
  15822. weight: math.unit(576, "lb"),
  15823. name: "Feral",
  15824. image: {
  15825. source: "./media/characters/embra/feral.svg",
  15826. extra: 152 / 137,
  15827. bottom: 0.037
  15828. }
  15829. },
  15830. },
  15831. [
  15832. {
  15833. name: "Normal",
  15834. height: math.unit(9 + 2 / 12, "feet"),
  15835. default: true
  15836. },
  15837. ]
  15838. ))
  15839. characterMakers.push(() => makeCharacter(
  15840. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15841. {
  15842. anthro: {
  15843. height: math.unit(10 + 9 / 12, "feet"),
  15844. weight: math.unit(224, "lb"),
  15845. name: "Anthro",
  15846. image: {
  15847. source: "./media/characters/grottos/anthro.svg",
  15848. extra: 350 / 332,
  15849. bottom: 0.045
  15850. }
  15851. },
  15852. feral: {
  15853. height: math.unit(20 + 7 / 12, "feet"),
  15854. weight: math.unit(629, "lb"),
  15855. name: "Feral",
  15856. image: {
  15857. source: "./media/characters/grottos/feral.svg",
  15858. extra: 207 / 190,
  15859. bottom: 0.05
  15860. }
  15861. },
  15862. },
  15863. [
  15864. {
  15865. name: "Normal",
  15866. height: math.unit(10 + 9 / 12, "feet"),
  15867. default: true
  15868. },
  15869. ]
  15870. ))
  15871. characterMakers.push(() => makeCharacter(
  15872. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15873. {
  15874. anthro: {
  15875. height: math.unit(9 + 6 / 12, "feet"),
  15876. weight: math.unit(298, "lb"),
  15877. name: "Anthro",
  15878. image: {
  15879. source: "./media/characters/frifna/anthro.svg",
  15880. extra: 282 / 269,
  15881. bottom: 0.015
  15882. }
  15883. },
  15884. feral: {
  15885. height: math.unit(16 + 2 / 12, "feet"),
  15886. weight: math.unit(624, "lb"),
  15887. name: "Feral",
  15888. image: {
  15889. source: "./media/characters/frifna/feral.svg"
  15890. }
  15891. },
  15892. },
  15893. [
  15894. {
  15895. name: "Normal",
  15896. height: math.unit(9 + 6 / 12, "feet"),
  15897. default: true
  15898. },
  15899. ]
  15900. ))
  15901. characterMakers.push(() => makeCharacter(
  15902. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15903. {
  15904. front: {
  15905. height: math.unit(6 + 2 / 12, "feet"),
  15906. weight: math.unit(168, "lb"),
  15907. name: "Front",
  15908. image: {
  15909. source: "./media/characters/elise/front.svg",
  15910. extra: 276 / 271
  15911. }
  15912. },
  15913. },
  15914. [
  15915. {
  15916. name: "Normal",
  15917. height: math.unit(6 + 2 / 12, "feet"),
  15918. default: true
  15919. },
  15920. ]
  15921. ))
  15922. characterMakers.push(() => makeCharacter(
  15923. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15924. {
  15925. front: {
  15926. height: math.unit(5 + 10 / 12, "feet"),
  15927. weight: math.unit(210, "lb"),
  15928. name: "Front",
  15929. image: {
  15930. source: "./media/characters/glade/front.svg",
  15931. extra: 258 / 247,
  15932. bottom: 0.008
  15933. }
  15934. },
  15935. },
  15936. [
  15937. {
  15938. name: "Normal",
  15939. height: math.unit(5 + 10 / 12, "feet"),
  15940. default: true
  15941. },
  15942. ]
  15943. ))
  15944. characterMakers.push(() => makeCharacter(
  15945. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15946. {
  15947. front: {
  15948. height: math.unit(5 + 10 / 12, "feet"),
  15949. weight: math.unit(129, "lb"),
  15950. name: "Front",
  15951. image: {
  15952. source: "./media/characters/rina/front.svg",
  15953. extra: 266 / 255,
  15954. bottom: 0.005
  15955. }
  15956. },
  15957. },
  15958. [
  15959. {
  15960. name: "Normal",
  15961. height: math.unit(5 + 10 / 12, "feet"),
  15962. default: true
  15963. },
  15964. ]
  15965. ))
  15966. characterMakers.push(() => makeCharacter(
  15967. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15968. {
  15969. front: {
  15970. height: math.unit(6 + 1 / 12, "feet"),
  15971. weight: math.unit(192, "lb"),
  15972. name: "Front",
  15973. image: {
  15974. source: "./media/characters/veronica/front.svg",
  15975. extra: 319 / 309,
  15976. bottom: 0.005
  15977. }
  15978. },
  15979. },
  15980. [
  15981. {
  15982. name: "Normal",
  15983. height: math.unit(6 + 1 / 12, "feet"),
  15984. default: true
  15985. },
  15986. ]
  15987. ))
  15988. characterMakers.push(() => makeCharacter(
  15989. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15990. {
  15991. front: {
  15992. height: math.unit(9 + 3 / 12, "feet"),
  15993. weight: math.unit(1100, "lb"),
  15994. name: "Front",
  15995. image: {
  15996. source: "./media/characters/braxton/front.svg",
  15997. extra: 1057 / 984,
  15998. bottom: 0.05
  15999. }
  16000. },
  16001. },
  16002. [
  16003. {
  16004. name: "Normal",
  16005. height: math.unit(9 + 3 / 12, "feet")
  16006. },
  16007. {
  16008. name: "Giant",
  16009. height: math.unit(300, "feet"),
  16010. default: true
  16011. },
  16012. {
  16013. name: "Macro",
  16014. height: math.unit(700, "feet")
  16015. },
  16016. {
  16017. name: "Megamacro",
  16018. height: math.unit(6000, "feet")
  16019. },
  16020. ]
  16021. ))
  16022. characterMakers.push(() => makeCharacter(
  16023. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16024. {
  16025. front: {
  16026. height: math.unit(6 + 7 / 12, "feet"),
  16027. weight: math.unit(150, "lb"),
  16028. name: "Front",
  16029. image: {
  16030. source: "./media/characters/blue-feyonics/front.svg",
  16031. extra: 1403 / 1306,
  16032. bottom: 0.047
  16033. }
  16034. },
  16035. },
  16036. [
  16037. {
  16038. name: "Normal",
  16039. height: math.unit(6 + 7 / 12, "feet"),
  16040. default: true
  16041. },
  16042. ]
  16043. ))
  16044. characterMakers.push(() => makeCharacter(
  16045. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16046. {
  16047. front: {
  16048. height: math.unit(1.8, "meters"),
  16049. weight: math.unit(60, "kg"),
  16050. name: "Front",
  16051. image: {
  16052. source: "./media/characters/maxwell/front.svg",
  16053. extra: 2060 / 1873
  16054. }
  16055. },
  16056. },
  16057. [
  16058. {
  16059. name: "Micro",
  16060. height: math.unit(1, "mm")
  16061. },
  16062. {
  16063. name: "Normal",
  16064. height: math.unit(1.8, "meter"),
  16065. default: true
  16066. },
  16067. {
  16068. name: "Macro",
  16069. height: math.unit(30, "meters")
  16070. },
  16071. {
  16072. name: "Megamacro",
  16073. height: math.unit(10, "km")
  16074. },
  16075. ]
  16076. ))
  16077. characterMakers.push(() => makeCharacter(
  16078. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16079. {
  16080. front: {
  16081. height: math.unit(6, "feet"),
  16082. weight: math.unit(150, "lb"),
  16083. name: "Front",
  16084. image: {
  16085. source: "./media/characters/jack/front.svg",
  16086. extra: 1754 / 1640,
  16087. bottom: 0.01
  16088. }
  16089. },
  16090. },
  16091. [
  16092. {
  16093. name: "Normal",
  16094. height: math.unit(80000, "feet"),
  16095. default: true
  16096. },
  16097. {
  16098. name: "Max size",
  16099. height: math.unit(10, "lightyears")
  16100. },
  16101. ]
  16102. ))
  16103. characterMakers.push(() => makeCharacter(
  16104. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16105. {
  16106. urban: {
  16107. height: math.unit(5, "feet"),
  16108. weight: math.unit(240, "lb"),
  16109. name: "Urban",
  16110. image: {
  16111. source: "./media/characters/cafat/urban.svg",
  16112. extra: 1223/1126,
  16113. bottom: 205/1428
  16114. }
  16115. },
  16116. summer: {
  16117. height: math.unit(5, "feet"),
  16118. weight: math.unit(240, "lb"),
  16119. name: "Summer",
  16120. image: {
  16121. source: "./media/characters/cafat/summer.svg",
  16122. extra: 1223/1126,
  16123. bottom: 205/1428
  16124. }
  16125. },
  16126. winter: {
  16127. height: math.unit(5, "feet"),
  16128. weight: math.unit(240, "lb"),
  16129. name: "Winter",
  16130. image: {
  16131. source: "./media/characters/cafat/winter.svg",
  16132. extra: 1223/1126,
  16133. bottom: 205/1428
  16134. }
  16135. },
  16136. lingerie: {
  16137. height: math.unit(5, "feet"),
  16138. weight: math.unit(240, "lb"),
  16139. name: "Lingerie",
  16140. image: {
  16141. source: "./media/characters/cafat/lingerie.svg",
  16142. extra: 1223/1126,
  16143. bottom: 205/1428
  16144. }
  16145. },
  16146. upright: {
  16147. height: math.unit(6.3, "feet"),
  16148. weight: math.unit(240, "lb"),
  16149. name: "Upright",
  16150. image: {
  16151. source: "./media/characters/cafat/upright.svg",
  16152. bottom: 0.01
  16153. }
  16154. },
  16155. uprightFull: {
  16156. height: math.unit(6.3, "feet"),
  16157. weight: math.unit(240, "lb"),
  16158. name: "Upright (Full)",
  16159. image: {
  16160. source: "./media/characters/cafat/upright-full.svg",
  16161. bottom: 0.01
  16162. }
  16163. },
  16164. },
  16165. [
  16166. {
  16167. name: "Small",
  16168. height: math.unit(5, "feet"),
  16169. default: true
  16170. },
  16171. {
  16172. name: "Large",
  16173. height: math.unit(13, "feet")
  16174. },
  16175. ]
  16176. ))
  16177. characterMakers.push(() => makeCharacter(
  16178. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16179. {
  16180. front: {
  16181. height: math.unit(6, "feet"),
  16182. weight: math.unit(150, "lb"),
  16183. name: "Front",
  16184. image: {
  16185. source: "./media/characters/verin-raharra/front.svg",
  16186. extra: 5019 / 4835,
  16187. bottom: 0.023
  16188. }
  16189. },
  16190. },
  16191. [
  16192. {
  16193. name: "Normal",
  16194. height: math.unit(7 + 5 / 12, "feet"),
  16195. default: true
  16196. },
  16197. {
  16198. name: "Upsized",
  16199. height: math.unit(20, "feet")
  16200. },
  16201. ]
  16202. ))
  16203. characterMakers.push(() => makeCharacter(
  16204. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16205. {
  16206. front: {
  16207. height: math.unit(7, "feet"),
  16208. weight: math.unit(230, "lb"),
  16209. name: "Front",
  16210. image: {
  16211. source: "./media/characters/nakata/front.svg",
  16212. extra: 1.005,
  16213. bottom: 0.01
  16214. }
  16215. },
  16216. },
  16217. [
  16218. {
  16219. name: "Normal",
  16220. height: math.unit(7, "feet"),
  16221. default: true
  16222. },
  16223. {
  16224. name: "Big",
  16225. height: math.unit(14, "feet")
  16226. },
  16227. {
  16228. name: "Macro",
  16229. height: math.unit(400, "feet")
  16230. },
  16231. ]
  16232. ))
  16233. characterMakers.push(() => makeCharacter(
  16234. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16235. {
  16236. front: {
  16237. height: math.unit(4.91, "feet"),
  16238. weight: math.unit(100, "lb"),
  16239. name: "Front",
  16240. image: {
  16241. source: "./media/characters/lily/front.svg",
  16242. extra: 1585 / 1415,
  16243. bottom: 0.02
  16244. }
  16245. },
  16246. },
  16247. [
  16248. {
  16249. name: "Normal",
  16250. height: math.unit(4.91, "feet"),
  16251. default: true
  16252. },
  16253. ]
  16254. ))
  16255. characterMakers.push(() => makeCharacter(
  16256. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16257. {
  16258. laying: {
  16259. height: math.unit(4 + 4 / 12, "feet"),
  16260. weight: math.unit(600, "lb"),
  16261. name: "Laying",
  16262. image: {
  16263. source: "./media/characters/sheila/laying.svg",
  16264. extra: 1333 / 1265,
  16265. bottom: 0.16
  16266. }
  16267. },
  16268. },
  16269. [
  16270. {
  16271. name: "Normal",
  16272. height: math.unit(4 + 4 / 12, "feet"),
  16273. default: true
  16274. },
  16275. ]
  16276. ))
  16277. characterMakers.push(() => makeCharacter(
  16278. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16279. {
  16280. front: {
  16281. height: math.unit(6, "feet"),
  16282. weight: math.unit(190, "lb"),
  16283. name: "Front",
  16284. image: {
  16285. source: "./media/characters/sax/front.svg",
  16286. extra: 1187 / 973,
  16287. bottom: 0.042
  16288. }
  16289. },
  16290. },
  16291. [
  16292. {
  16293. name: "Micro",
  16294. height: math.unit(4, "inches"),
  16295. default: true
  16296. },
  16297. ]
  16298. ))
  16299. characterMakers.push(() => makeCharacter(
  16300. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16301. {
  16302. front: {
  16303. height: math.unit(6, "feet"),
  16304. weight: math.unit(150, "lb"),
  16305. name: "Front",
  16306. image: {
  16307. source: "./media/characters/pandora/front.svg",
  16308. extra: 2720 / 2556,
  16309. bottom: 0.015
  16310. }
  16311. },
  16312. back: {
  16313. height: math.unit(6, "feet"),
  16314. weight: math.unit(150, "lb"),
  16315. name: "Back",
  16316. image: {
  16317. source: "./media/characters/pandora/back.svg",
  16318. extra: 2720 / 2556,
  16319. bottom: 0.01
  16320. }
  16321. },
  16322. beans: {
  16323. height: math.unit(6 / 8, "feet"),
  16324. name: "Beans",
  16325. image: {
  16326. source: "./media/characters/pandora/beans.svg"
  16327. }
  16328. },
  16329. collar: {
  16330. height: math.unit(0.31, "feet"),
  16331. name: "Collar",
  16332. image: {
  16333. source: "./media/characters/pandora/collar.svg"
  16334. }
  16335. },
  16336. skirt: {
  16337. height: math.unit(6, "feet"),
  16338. weight: math.unit(150, "lb"),
  16339. name: "Skirt",
  16340. image: {
  16341. source: "./media/characters/pandora/skirt.svg",
  16342. extra: 1622 / 1525,
  16343. bottom: 0.015
  16344. }
  16345. },
  16346. hoodie: {
  16347. height: math.unit(6, "feet"),
  16348. weight: math.unit(150, "lb"),
  16349. name: "Hoodie",
  16350. image: {
  16351. source: "./media/characters/pandora/hoodie.svg",
  16352. extra: 1622 / 1525,
  16353. bottom: 0.015
  16354. }
  16355. },
  16356. casual: {
  16357. height: math.unit(6, "feet"),
  16358. weight: math.unit(150, "lb"),
  16359. name: "Casual",
  16360. image: {
  16361. source: "./media/characters/pandora/casual.svg",
  16362. extra: 1622 / 1525,
  16363. bottom: 0.015
  16364. }
  16365. },
  16366. },
  16367. [
  16368. {
  16369. name: "Normal",
  16370. height: math.unit(6, "feet")
  16371. },
  16372. {
  16373. name: "Big Steppy",
  16374. height: math.unit(1, "km"),
  16375. default: true
  16376. },
  16377. {
  16378. name: "Galactic Steppy",
  16379. height: math.unit(2, "gigameters")
  16380. },
  16381. ]
  16382. ))
  16383. characterMakers.push(() => makeCharacter(
  16384. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16385. {
  16386. side: {
  16387. height: math.unit(10, "feet"),
  16388. weight: math.unit(800, "kg"),
  16389. name: "Side",
  16390. image: {
  16391. source: "./media/characters/venio-darcony/side.svg",
  16392. extra: 1373 / 1003,
  16393. bottom: 0.037
  16394. }
  16395. },
  16396. front: {
  16397. height: math.unit(19, "feet"),
  16398. weight: math.unit(800, "kg"),
  16399. name: "Front",
  16400. image: {
  16401. source: "./media/characters/venio-darcony/front.svg"
  16402. }
  16403. },
  16404. back: {
  16405. height: math.unit(19, "feet"),
  16406. weight: math.unit(800, "kg"),
  16407. name: "Back",
  16408. image: {
  16409. source: "./media/characters/venio-darcony/back.svg"
  16410. }
  16411. },
  16412. sideNsfw: {
  16413. height: math.unit(10, "feet"),
  16414. weight: math.unit(800, "kg"),
  16415. name: "Side (NSFW)",
  16416. image: {
  16417. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16418. extra: 1373 / 1003,
  16419. bottom: 0.037
  16420. }
  16421. },
  16422. frontNsfw: {
  16423. height: math.unit(19, "feet"),
  16424. weight: math.unit(800, "kg"),
  16425. name: "Front (NSFW)",
  16426. image: {
  16427. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16428. }
  16429. },
  16430. backNsfw: {
  16431. height: math.unit(19, "feet"),
  16432. weight: math.unit(800, "kg"),
  16433. name: "Back (NSFW)",
  16434. image: {
  16435. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16436. }
  16437. },
  16438. sideArmored: {
  16439. height: math.unit(10, "feet"),
  16440. weight: math.unit(800, "kg"),
  16441. name: "Side (Armored)",
  16442. image: {
  16443. source: "./media/characters/venio-darcony/side-armored.svg",
  16444. extra: 1373 / 1003,
  16445. bottom: 0.037
  16446. }
  16447. },
  16448. frontArmored: {
  16449. height: math.unit(19, "feet"),
  16450. weight: math.unit(900, "kg"),
  16451. name: "Front (Armored)",
  16452. image: {
  16453. source: "./media/characters/venio-darcony/front-armored.svg"
  16454. }
  16455. },
  16456. backArmored: {
  16457. height: math.unit(19, "feet"),
  16458. weight: math.unit(900, "kg"),
  16459. name: "Back (Armored)",
  16460. image: {
  16461. source: "./media/characters/venio-darcony/back-armored.svg"
  16462. }
  16463. },
  16464. sword: {
  16465. height: math.unit(10, "feet"),
  16466. weight: math.unit(50, "lb"),
  16467. name: "Sword",
  16468. image: {
  16469. source: "./media/characters/venio-darcony/sword.svg"
  16470. }
  16471. },
  16472. },
  16473. [
  16474. {
  16475. name: "Normal",
  16476. height: math.unit(10, "feet")
  16477. },
  16478. {
  16479. name: "Macro",
  16480. height: math.unit(130, "feet"),
  16481. default: true
  16482. },
  16483. {
  16484. name: "Macro+",
  16485. height: math.unit(240, "feet")
  16486. },
  16487. ]
  16488. ))
  16489. characterMakers.push(() => makeCharacter(
  16490. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16491. {
  16492. front: {
  16493. height: math.unit(6, "feet"),
  16494. weight: math.unit(150, "lb"),
  16495. name: "Front",
  16496. image: {
  16497. source: "./media/characters/veski/front.svg",
  16498. extra: 1299 / 1225,
  16499. bottom: 0.04
  16500. }
  16501. },
  16502. back: {
  16503. height: math.unit(6, "feet"),
  16504. weight: math.unit(150, "lb"),
  16505. name: "Back",
  16506. image: {
  16507. source: "./media/characters/veski/back.svg",
  16508. extra: 1299 / 1225,
  16509. bottom: 0.008
  16510. }
  16511. },
  16512. maw: {
  16513. height: math.unit(1.5 * 1.21, "feet"),
  16514. name: "Maw",
  16515. image: {
  16516. source: "./media/characters/veski/maw.svg"
  16517. }
  16518. },
  16519. },
  16520. [
  16521. {
  16522. name: "Macro",
  16523. height: math.unit(2, "km"),
  16524. default: true
  16525. },
  16526. ]
  16527. ))
  16528. characterMakers.push(() => makeCharacter(
  16529. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16530. {
  16531. front: {
  16532. height: math.unit(5 + 7 / 12, "feet"),
  16533. name: "Front",
  16534. image: {
  16535. source: "./media/characters/isabelle/front.svg",
  16536. extra: 2130 / 1976,
  16537. bottom: 0.05
  16538. }
  16539. },
  16540. },
  16541. [
  16542. {
  16543. name: "Supermicro",
  16544. height: math.unit(10, "micrometers")
  16545. },
  16546. {
  16547. name: "Micro",
  16548. height: math.unit(1, "inch")
  16549. },
  16550. {
  16551. name: "Tiny",
  16552. height: math.unit(5, "inches")
  16553. },
  16554. {
  16555. name: "Standard",
  16556. height: math.unit(5 + 7 / 12, "inches")
  16557. },
  16558. {
  16559. name: "Macro",
  16560. height: math.unit(80, "meters"),
  16561. default: true
  16562. },
  16563. {
  16564. name: "Megamacro",
  16565. height: math.unit(250, "meters")
  16566. },
  16567. {
  16568. name: "Gigamacro",
  16569. height: math.unit(5, "km")
  16570. },
  16571. {
  16572. name: "Cosmic",
  16573. height: math.unit(2.5e6, "miles")
  16574. },
  16575. ]
  16576. ))
  16577. characterMakers.push(() => makeCharacter(
  16578. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16579. {
  16580. front: {
  16581. height: math.unit(6, "feet"),
  16582. weight: math.unit(150, "lb"),
  16583. name: "Front",
  16584. image: {
  16585. source: "./media/characters/hanzo/front.svg",
  16586. extra: 374 / 344,
  16587. bottom: 0.02
  16588. }
  16589. },
  16590. },
  16591. [
  16592. {
  16593. name: "Normal",
  16594. height: math.unit(8, "feet"),
  16595. default: true
  16596. },
  16597. ]
  16598. ))
  16599. characterMakers.push(() => makeCharacter(
  16600. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16601. {
  16602. front: {
  16603. height: math.unit(7, "feet"),
  16604. weight: math.unit(130, "lb"),
  16605. name: "Front",
  16606. image: {
  16607. source: "./media/characters/anna/front.svg",
  16608. extra: 169 / 145,
  16609. bottom: 0.06
  16610. }
  16611. },
  16612. full: {
  16613. height: math.unit(4.96, "feet"),
  16614. weight: math.unit(220, "lb"),
  16615. name: "Full",
  16616. image: {
  16617. source: "./media/characters/anna/full.svg",
  16618. extra: 138 / 114,
  16619. bottom: 0.15
  16620. }
  16621. },
  16622. tongue: {
  16623. height: math.unit(2.53, "feet"),
  16624. name: "Tongue",
  16625. image: {
  16626. source: "./media/characters/anna/tongue.svg"
  16627. }
  16628. },
  16629. },
  16630. [
  16631. {
  16632. name: "Normal",
  16633. height: math.unit(7, "feet"),
  16634. default: true
  16635. },
  16636. ]
  16637. ))
  16638. characterMakers.push(() => makeCharacter(
  16639. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16640. {
  16641. front: {
  16642. height: math.unit(7, "feet"),
  16643. weight: math.unit(150, "lb"),
  16644. name: "Front",
  16645. image: {
  16646. source: "./media/characters/ian-corvid/front.svg",
  16647. extra: 150 / 142,
  16648. bottom: 0.02
  16649. }
  16650. },
  16651. back: {
  16652. height: math.unit(7, "feet"),
  16653. weight: math.unit(150, "lb"),
  16654. name: "Back",
  16655. image: {
  16656. source: "./media/characters/ian-corvid/back.svg",
  16657. extra: 150 / 143,
  16658. bottom: 0.01
  16659. }
  16660. },
  16661. stomping: {
  16662. height: math.unit(7, "feet"),
  16663. weight: math.unit(150, "lb"),
  16664. name: "Stomping",
  16665. image: {
  16666. source: "./media/characters/ian-corvid/stomping.svg",
  16667. extra: 76 / 72
  16668. }
  16669. },
  16670. sitting: {
  16671. height: math.unit(7 / 1.8, "feet"),
  16672. weight: math.unit(150, "lb"),
  16673. name: "Sitting",
  16674. image: {
  16675. source: "./media/characters/ian-corvid/sitting.svg",
  16676. extra: 1400 / 1269,
  16677. bottom: 0.15
  16678. }
  16679. },
  16680. },
  16681. [
  16682. {
  16683. name: "Tiny Microw",
  16684. height: math.unit(1, "inch")
  16685. },
  16686. {
  16687. name: "Microw",
  16688. height: math.unit(6, "inches")
  16689. },
  16690. {
  16691. name: "Crow",
  16692. height: math.unit(7 + 1 / 12, "feet"),
  16693. default: true
  16694. },
  16695. {
  16696. name: "Macrow",
  16697. height: math.unit(176, "feet")
  16698. },
  16699. ]
  16700. ))
  16701. characterMakers.push(() => makeCharacter(
  16702. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16703. {
  16704. front: {
  16705. height: math.unit(5 + 7 / 12, "feet"),
  16706. weight: math.unit(147, "lb"),
  16707. name: "Front",
  16708. image: {
  16709. source: "./media/characters/natalie-kellon/front.svg",
  16710. extra: 1214 / 1141,
  16711. bottom: 0.02
  16712. }
  16713. },
  16714. },
  16715. [
  16716. {
  16717. name: "Micro",
  16718. height: math.unit(1 / 16, "inch")
  16719. },
  16720. {
  16721. name: "Tiny",
  16722. height: math.unit(4, "inches")
  16723. },
  16724. {
  16725. name: "Normal",
  16726. height: math.unit(5 + 7 / 12, "feet"),
  16727. default: true
  16728. },
  16729. {
  16730. name: "Amazon",
  16731. height: math.unit(12, "feet")
  16732. },
  16733. {
  16734. name: "Giantess",
  16735. height: math.unit(160, "meters")
  16736. },
  16737. {
  16738. name: "Titaness",
  16739. height: math.unit(800, "meters")
  16740. },
  16741. ]
  16742. ))
  16743. characterMakers.push(() => makeCharacter(
  16744. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16745. {
  16746. front: {
  16747. height: math.unit(6, "feet"),
  16748. weight: math.unit(150, "lb"),
  16749. name: "Front",
  16750. image: {
  16751. source: "./media/characters/alluria/front.svg",
  16752. extra: 806 / 738,
  16753. bottom: 0.01
  16754. }
  16755. },
  16756. side: {
  16757. height: math.unit(6, "feet"),
  16758. weight: math.unit(150, "lb"),
  16759. name: "Side",
  16760. image: {
  16761. source: "./media/characters/alluria/side.svg",
  16762. extra: 800 / 750,
  16763. }
  16764. },
  16765. back: {
  16766. height: math.unit(6, "feet"),
  16767. weight: math.unit(150, "lb"),
  16768. name: "Back",
  16769. image: {
  16770. source: "./media/characters/alluria/back.svg",
  16771. extra: 806 / 738,
  16772. }
  16773. },
  16774. frontMaid: {
  16775. height: math.unit(6, "feet"),
  16776. weight: math.unit(150, "lb"),
  16777. name: "Front (Maid)",
  16778. image: {
  16779. source: "./media/characters/alluria/front-maid.svg",
  16780. extra: 806 / 738,
  16781. bottom: 0.01
  16782. }
  16783. },
  16784. sideMaid: {
  16785. height: math.unit(6, "feet"),
  16786. weight: math.unit(150, "lb"),
  16787. name: "Side (Maid)",
  16788. image: {
  16789. source: "./media/characters/alluria/side-maid.svg",
  16790. extra: 800 / 750,
  16791. bottom: 0.005
  16792. }
  16793. },
  16794. backMaid: {
  16795. height: math.unit(6, "feet"),
  16796. weight: math.unit(150, "lb"),
  16797. name: "Back (Maid)",
  16798. image: {
  16799. source: "./media/characters/alluria/back-maid.svg",
  16800. extra: 806 / 738,
  16801. }
  16802. },
  16803. },
  16804. [
  16805. {
  16806. name: "Micro",
  16807. height: math.unit(6, "inches"),
  16808. default: true
  16809. },
  16810. ]
  16811. ))
  16812. characterMakers.push(() => makeCharacter(
  16813. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16814. {
  16815. front: {
  16816. height: math.unit(6, "feet"),
  16817. weight: math.unit(150, "lb"),
  16818. name: "Front",
  16819. image: {
  16820. source: "./media/characters/kyle/front.svg",
  16821. extra: 1069 / 962,
  16822. bottom: 77.228 / 1727.45
  16823. }
  16824. },
  16825. },
  16826. [
  16827. {
  16828. name: "Macro",
  16829. height: math.unit(150, "feet"),
  16830. default: true
  16831. },
  16832. ]
  16833. ))
  16834. characterMakers.push(() => makeCharacter(
  16835. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16836. {
  16837. front: {
  16838. height: math.unit(6, "feet"),
  16839. weight: math.unit(300, "lb"),
  16840. name: "Front",
  16841. image: {
  16842. source: "./media/characters/duncan/front.svg",
  16843. extra: 1650 / 1482,
  16844. bottom: 0.05
  16845. }
  16846. },
  16847. },
  16848. [
  16849. {
  16850. name: "Macro",
  16851. height: math.unit(100, "feet"),
  16852. default: true
  16853. },
  16854. ]
  16855. ))
  16856. characterMakers.push(() => makeCharacter(
  16857. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16858. {
  16859. front: {
  16860. height: math.unit(5 + 4 / 12, "feet"),
  16861. weight: math.unit(220, "lb"),
  16862. name: "Front",
  16863. image: {
  16864. source: "./media/characters/memory/front.svg",
  16865. extra: 3641 / 3545,
  16866. bottom: 0.03
  16867. }
  16868. },
  16869. back: {
  16870. height: math.unit(5 + 4 / 12, "feet"),
  16871. weight: math.unit(220, "lb"),
  16872. name: "Back",
  16873. image: {
  16874. source: "./media/characters/memory/back.svg",
  16875. extra: 3641 / 3545,
  16876. bottom: 0.025
  16877. }
  16878. },
  16879. frontSkirt: {
  16880. height: math.unit(5 + 4 / 12, "feet"),
  16881. weight: math.unit(220, "lb"),
  16882. name: "Front (Skirt)",
  16883. image: {
  16884. source: "./media/characters/memory/front-skirt.svg",
  16885. extra: 3641 / 3545,
  16886. bottom: 0.03
  16887. }
  16888. },
  16889. frontDress: {
  16890. height: math.unit(5 + 4 / 12, "feet"),
  16891. weight: math.unit(220, "lb"),
  16892. name: "Front (Dress)",
  16893. image: {
  16894. source: "./media/characters/memory/front-dress.svg",
  16895. extra: 3641 / 3545,
  16896. bottom: 0.03
  16897. }
  16898. },
  16899. },
  16900. [
  16901. {
  16902. name: "Micro",
  16903. height: math.unit(6, "inches"),
  16904. default: true
  16905. },
  16906. {
  16907. name: "Normal",
  16908. height: math.unit(5 + 4 / 12, "feet")
  16909. },
  16910. ]
  16911. ))
  16912. characterMakers.push(() => makeCharacter(
  16913. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16914. {
  16915. front: {
  16916. height: math.unit(4 + 11 / 12, "feet"),
  16917. weight: math.unit(100, "lb"),
  16918. name: "Front",
  16919. image: {
  16920. source: "./media/characters/luno/front.svg",
  16921. extra: 1535 / 1487,
  16922. bottom: 0.03
  16923. }
  16924. },
  16925. },
  16926. [
  16927. {
  16928. name: "Micro",
  16929. height: math.unit(3, "inches")
  16930. },
  16931. {
  16932. name: "Normal",
  16933. height: math.unit(4 + 11 / 12, "feet"),
  16934. default: true
  16935. },
  16936. {
  16937. name: "Macro",
  16938. height: math.unit(300, "feet")
  16939. },
  16940. {
  16941. name: "Megamacro",
  16942. height: math.unit(700, "miles")
  16943. },
  16944. ]
  16945. ))
  16946. characterMakers.push(() => makeCharacter(
  16947. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16948. {
  16949. front: {
  16950. height: math.unit(6 + 2 / 12, "feet"),
  16951. weight: math.unit(170, "lb"),
  16952. name: "Front",
  16953. image: {
  16954. source: "./media/characters/jamesy/front.svg",
  16955. extra: 440 / 382,
  16956. bottom: 0.005
  16957. }
  16958. },
  16959. },
  16960. [
  16961. {
  16962. name: "Micro",
  16963. height: math.unit(3, "inches")
  16964. },
  16965. {
  16966. name: "Normal",
  16967. height: math.unit(6 + 2 / 12, "feet"),
  16968. default: true
  16969. },
  16970. {
  16971. name: "Macro",
  16972. height: math.unit(300, "feet")
  16973. },
  16974. {
  16975. name: "Megamacro",
  16976. height: math.unit(700, "miles")
  16977. },
  16978. ]
  16979. ))
  16980. characterMakers.push(() => makeCharacter(
  16981. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16982. {
  16983. front: {
  16984. height: math.unit(6, "feet"),
  16985. weight: math.unit(160, "lb"),
  16986. name: "Front",
  16987. image: {
  16988. source: "./media/characters/mark/front.svg",
  16989. extra: 3300 / 3100,
  16990. bottom: 136.42 / 3440.47
  16991. }
  16992. },
  16993. },
  16994. [
  16995. {
  16996. name: "Macro",
  16997. height: math.unit(120, "meters")
  16998. },
  16999. {
  17000. name: "Bigger Macro",
  17001. height: math.unit(350, "meters")
  17002. },
  17003. {
  17004. name: "Megamacro",
  17005. height: math.unit(8, "km"),
  17006. default: true
  17007. },
  17008. {
  17009. name: "Continental",
  17010. height: math.unit(4550, "km")
  17011. },
  17012. {
  17013. name: "Planetary",
  17014. height: math.unit(65000, "km")
  17015. },
  17016. ]
  17017. ))
  17018. characterMakers.push(() => makeCharacter(
  17019. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17020. {
  17021. front: {
  17022. height: math.unit(6, "feet"),
  17023. weight: math.unit(400, "lb"),
  17024. name: "Front",
  17025. image: {
  17026. source: "./media/characters/mac/front.svg",
  17027. extra: 1048 / 987.7,
  17028. bottom: 60 / 1107.6,
  17029. }
  17030. },
  17031. },
  17032. [
  17033. {
  17034. name: "Macro",
  17035. height: math.unit(500, "feet"),
  17036. default: true
  17037. },
  17038. ]
  17039. ))
  17040. characterMakers.push(() => makeCharacter(
  17041. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17042. {
  17043. front: {
  17044. height: math.unit(5 + 2 / 12, "feet"),
  17045. weight: math.unit(190, "lb"),
  17046. name: "Front",
  17047. image: {
  17048. source: "./media/characters/bari/front.svg",
  17049. extra: 3156 / 2880,
  17050. bottom: 0.03
  17051. }
  17052. },
  17053. back: {
  17054. height: math.unit(5 + 2 / 12, "feet"),
  17055. weight: math.unit(190, "lb"),
  17056. name: "Back",
  17057. image: {
  17058. source: "./media/characters/bari/back.svg",
  17059. extra: 3260 / 2834,
  17060. bottom: 0.025
  17061. }
  17062. },
  17063. frontPlush: {
  17064. height: math.unit(5 + 2 / 12, "feet"),
  17065. weight: math.unit(190, "lb"),
  17066. name: "Front (Plush)",
  17067. image: {
  17068. source: "./media/characters/bari/front-plush.svg",
  17069. extra: 1112 / 1061,
  17070. bottom: 0.002
  17071. }
  17072. },
  17073. },
  17074. [
  17075. {
  17076. name: "Micro",
  17077. height: math.unit(3, "inches")
  17078. },
  17079. {
  17080. name: "Normal",
  17081. height: math.unit(5 + 2 / 12, "feet"),
  17082. default: true
  17083. },
  17084. {
  17085. name: "Macro",
  17086. height: math.unit(20, "feet")
  17087. },
  17088. ]
  17089. ))
  17090. characterMakers.push(() => makeCharacter(
  17091. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17092. {
  17093. front: {
  17094. height: math.unit(6 + 1 / 12, "feet"),
  17095. weight: math.unit(275, "lb"),
  17096. name: "Front",
  17097. image: {
  17098. source: "./media/characters/hunter-misha-raven/front.svg"
  17099. }
  17100. },
  17101. },
  17102. [
  17103. {
  17104. name: "Mortal",
  17105. height: math.unit(6 + 1 / 12, "feet")
  17106. },
  17107. {
  17108. name: "Divine",
  17109. height: math.unit(1.12134e34, "parsecs"),
  17110. default: true
  17111. },
  17112. ]
  17113. ))
  17114. characterMakers.push(() => makeCharacter(
  17115. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17116. {
  17117. front: {
  17118. height: math.unit(6 + 3 / 12, "feet"),
  17119. weight: math.unit(220, "lb"),
  17120. name: "Front",
  17121. image: {
  17122. source: "./media/characters/max-calore/front.svg",
  17123. extra: 1700 / 1648,
  17124. bottom: 0.01
  17125. }
  17126. },
  17127. back: {
  17128. height: math.unit(6 + 3 / 12, "feet"),
  17129. weight: math.unit(220, "lb"),
  17130. name: "Back",
  17131. image: {
  17132. source: "./media/characters/max-calore/back.svg",
  17133. extra: 1700 / 1648,
  17134. bottom: 0.01
  17135. }
  17136. },
  17137. },
  17138. [
  17139. {
  17140. name: "Normal",
  17141. height: math.unit(6 + 3 / 12, "feet"),
  17142. default: true
  17143. },
  17144. ]
  17145. ))
  17146. characterMakers.push(() => makeCharacter(
  17147. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17148. {
  17149. side: {
  17150. height: math.unit(2 + 8 / 12, "feet"),
  17151. weight: math.unit(99, "lb"),
  17152. name: "Side",
  17153. image: {
  17154. source: "./media/characters/aspen/side.svg",
  17155. extra: 152 / 138,
  17156. bottom: 0.032
  17157. }
  17158. },
  17159. },
  17160. [
  17161. {
  17162. name: "Normal",
  17163. height: math.unit(2 + 8 / 12, "feet"),
  17164. default: true
  17165. },
  17166. ]
  17167. ))
  17168. characterMakers.push(() => makeCharacter(
  17169. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17170. {
  17171. side: {
  17172. height: math.unit(3 + 2 / 12, "feet"),
  17173. weight: math.unit(224, "lb"),
  17174. name: "Side",
  17175. image: {
  17176. source: "./media/characters/sheila-feral-wolf/side.svg",
  17177. extra: 179 / 166,
  17178. bottom: 0.03
  17179. }
  17180. },
  17181. },
  17182. [
  17183. {
  17184. name: "Normal",
  17185. height: math.unit(3 + 2 / 12, "feet"),
  17186. default: true
  17187. },
  17188. ]
  17189. ))
  17190. characterMakers.push(() => makeCharacter(
  17191. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17192. {
  17193. side: {
  17194. height: math.unit(1 + 9 / 12, "feet"),
  17195. weight: math.unit(38, "lb"),
  17196. name: "Side",
  17197. image: {
  17198. source: "./media/characters/michelle/side.svg",
  17199. extra: 147 / 136.7,
  17200. bottom: 0.03
  17201. }
  17202. },
  17203. },
  17204. [
  17205. {
  17206. name: "Normal",
  17207. height: math.unit(1 + 9 / 12, "feet"),
  17208. default: true
  17209. },
  17210. ]
  17211. ))
  17212. characterMakers.push(() => makeCharacter(
  17213. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17214. {
  17215. front: {
  17216. height: math.unit(1.54, "feet"),
  17217. weight: math.unit(50, "lb"),
  17218. name: "Front",
  17219. image: {
  17220. source: "./media/characters/nino/front.svg"
  17221. }
  17222. },
  17223. },
  17224. [
  17225. {
  17226. name: "Normal",
  17227. height: math.unit(1.54, "feet"),
  17228. default: true
  17229. },
  17230. ]
  17231. ))
  17232. characterMakers.push(() => makeCharacter(
  17233. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17234. {
  17235. front: {
  17236. height: math.unit(1, "feet"),
  17237. weight: math.unit(16, "lb"),
  17238. name: "Front",
  17239. image: {
  17240. source: "./media/characters/viola/front.svg"
  17241. }
  17242. },
  17243. },
  17244. [
  17245. {
  17246. name: "Normal",
  17247. height: math.unit(1, "feet"),
  17248. default: true
  17249. },
  17250. ]
  17251. ))
  17252. characterMakers.push(() => makeCharacter(
  17253. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17254. {
  17255. front: {
  17256. height: math.unit(6 + 5 / 12, "feet"),
  17257. weight: math.unit(580, "lb"),
  17258. name: "Front",
  17259. image: {
  17260. source: "./media/characters/atlas/front.svg",
  17261. extra: 298.5 / 290,
  17262. bottom: 0.015
  17263. }
  17264. },
  17265. },
  17266. [
  17267. {
  17268. name: "Normal",
  17269. height: math.unit(6 + 5 / 12, "feet"),
  17270. default: true
  17271. },
  17272. ]
  17273. ))
  17274. characterMakers.push(() => makeCharacter(
  17275. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17276. {
  17277. side: {
  17278. height: math.unit(1 + 10 / 12, "feet"),
  17279. weight: math.unit(25, "lb"),
  17280. name: "Side",
  17281. image: {
  17282. source: "./media/characters/davy/side.svg",
  17283. extra: 200 / 170,
  17284. bottom: 0.01
  17285. }
  17286. },
  17287. },
  17288. [
  17289. {
  17290. name: "Normal",
  17291. height: math.unit(1 + 10 / 12, "feet"),
  17292. default: true
  17293. },
  17294. ]
  17295. ))
  17296. characterMakers.push(() => makeCharacter(
  17297. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17298. {
  17299. side: {
  17300. height: math.unit(4 + 8 / 12, "feet"),
  17301. weight: math.unit(166, "lb"),
  17302. name: "Side",
  17303. image: {
  17304. source: "./media/characters/fiona/side.svg",
  17305. extra: 232 / 220,
  17306. bottom: 0.03
  17307. }
  17308. },
  17309. },
  17310. [
  17311. {
  17312. name: "Normal",
  17313. height: math.unit(4 + 8 / 12, "feet"),
  17314. default: true
  17315. },
  17316. ]
  17317. ))
  17318. characterMakers.push(() => makeCharacter(
  17319. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17320. {
  17321. front: {
  17322. height: math.unit(3, "feet"),
  17323. weight: math.unit(100, "lb"),
  17324. name: "Front",
  17325. image: {
  17326. source: "./media/characters/lyla/front.svg",
  17327. bottom: 0.1
  17328. }
  17329. },
  17330. },
  17331. [
  17332. {
  17333. name: "Normal",
  17334. height: math.unit(3, "feet"),
  17335. default: true
  17336. },
  17337. ]
  17338. ))
  17339. characterMakers.push(() => makeCharacter(
  17340. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17341. {
  17342. side: {
  17343. height: math.unit(1.8, "feet"),
  17344. weight: math.unit(44, "lb"),
  17345. name: "Side",
  17346. image: {
  17347. source: "./media/characters/perseus/side.svg",
  17348. bottom: 0.21
  17349. }
  17350. },
  17351. },
  17352. [
  17353. {
  17354. name: "Normal",
  17355. height: math.unit(1.8, "feet"),
  17356. default: true
  17357. },
  17358. ]
  17359. ))
  17360. characterMakers.push(() => makeCharacter(
  17361. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17362. {
  17363. side: {
  17364. height: math.unit(4 + 2 / 12, "feet"),
  17365. weight: math.unit(20, "lb"),
  17366. name: "Side",
  17367. image: {
  17368. source: "./media/characters/remus/side.svg"
  17369. }
  17370. },
  17371. },
  17372. [
  17373. {
  17374. name: "Normal",
  17375. height: math.unit(4 + 2 / 12, "feet"),
  17376. default: true
  17377. },
  17378. ]
  17379. ))
  17380. characterMakers.push(() => makeCharacter(
  17381. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17382. {
  17383. front: {
  17384. height: math.unit(4 + 11 / 12, "feet"),
  17385. weight: math.unit(114, "lb"),
  17386. name: "Front",
  17387. image: {
  17388. source: "./media/characters/raf/front.svg",
  17389. extra: 1504/1339,
  17390. bottom: 26/1530
  17391. }
  17392. },
  17393. side: {
  17394. height: math.unit(4 + 11 / 12, "feet"),
  17395. weight: math.unit(114, "lb"),
  17396. name: "Side",
  17397. image: {
  17398. source: "./media/characters/raf/side.svg",
  17399. extra: 1466/1316,
  17400. bottom: 29/1495
  17401. }
  17402. },
  17403. },
  17404. [
  17405. {
  17406. name: "Micro",
  17407. height: math.unit(2, "inches")
  17408. },
  17409. {
  17410. name: "Normal",
  17411. height: math.unit(4 + 11 / 12, "feet"),
  17412. default: true
  17413. },
  17414. {
  17415. name: "Macro",
  17416. height: math.unit(70, "feet")
  17417. },
  17418. ]
  17419. ))
  17420. characterMakers.push(() => makeCharacter(
  17421. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17422. {
  17423. front: {
  17424. height: math.unit(1.5, "meters"),
  17425. weight: math.unit(68, "kg"),
  17426. name: "Front",
  17427. image: {
  17428. source: "./media/characters/liam-einarr/front.svg",
  17429. extra: 2822 / 2666
  17430. }
  17431. },
  17432. back: {
  17433. height: math.unit(1.5, "meters"),
  17434. weight: math.unit(68, "kg"),
  17435. name: "Back",
  17436. image: {
  17437. source: "./media/characters/liam-einarr/back.svg",
  17438. extra: 2822 / 2666,
  17439. bottom: 0.015
  17440. }
  17441. },
  17442. },
  17443. [
  17444. {
  17445. name: "Normal",
  17446. height: math.unit(1.5, "meters"),
  17447. default: true
  17448. },
  17449. {
  17450. name: "Macro",
  17451. height: math.unit(150, "meters")
  17452. },
  17453. {
  17454. name: "Megamacro",
  17455. height: math.unit(35, "km")
  17456. },
  17457. ]
  17458. ))
  17459. characterMakers.push(() => makeCharacter(
  17460. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17461. {
  17462. front: {
  17463. height: math.unit(6, "feet"),
  17464. weight: math.unit(75, "kg"),
  17465. name: "Front",
  17466. image: {
  17467. source: "./media/characters/linda/front.svg",
  17468. extra: 930 / 874,
  17469. bottom: 0.004
  17470. }
  17471. },
  17472. },
  17473. [
  17474. {
  17475. name: "Normal",
  17476. height: math.unit(6, "feet"),
  17477. default: true
  17478. },
  17479. ]
  17480. ))
  17481. characterMakers.push(() => makeCharacter(
  17482. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17483. {
  17484. front: {
  17485. height: math.unit(6 + 8 / 12, "feet"),
  17486. weight: math.unit(220, "lb"),
  17487. name: "Front",
  17488. image: {
  17489. source: "./media/characters/caylex/front.svg",
  17490. extra: 821 / 772,
  17491. bottom: 0.07
  17492. }
  17493. },
  17494. back: {
  17495. height: math.unit(6 + 8 / 12, "feet"),
  17496. weight: math.unit(220, "lb"),
  17497. name: "Back",
  17498. image: {
  17499. source: "./media/characters/caylex/back.svg",
  17500. extra: 821 / 772,
  17501. bottom: 0.022
  17502. }
  17503. },
  17504. hand: {
  17505. height: math.unit(1.25, "feet"),
  17506. name: "Hand",
  17507. image: {
  17508. source: "./media/characters/caylex/hand.svg"
  17509. }
  17510. },
  17511. foot: {
  17512. height: math.unit(1.6, "feet"),
  17513. name: "Foot",
  17514. image: {
  17515. source: "./media/characters/caylex/foot.svg"
  17516. }
  17517. },
  17518. armored: {
  17519. height: math.unit(6 + 8 / 12, "feet"),
  17520. weight: math.unit(250, "lb"),
  17521. name: "Armored",
  17522. image: {
  17523. source: "./media/characters/caylex/armored.svg",
  17524. extra: 1420 / 1310,
  17525. bottom: 0.045
  17526. }
  17527. },
  17528. },
  17529. [
  17530. {
  17531. name: "Normal",
  17532. height: math.unit(6 + 8 / 12, "feet"),
  17533. default: true
  17534. },
  17535. {
  17536. name: "Normal+",
  17537. height: math.unit(12, "feet")
  17538. },
  17539. ]
  17540. ))
  17541. characterMakers.push(() => makeCharacter(
  17542. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17543. {
  17544. front: {
  17545. height: math.unit(7 + 6 / 12, "feet"),
  17546. weight: math.unit(288, "lb"),
  17547. name: "Front",
  17548. image: {
  17549. source: "./media/characters/alana/front.svg",
  17550. extra: 679 / 653,
  17551. bottom: 22.5 / 701
  17552. }
  17553. },
  17554. },
  17555. [
  17556. {
  17557. name: "Normal",
  17558. height: math.unit(7 + 6 / 12, "feet")
  17559. },
  17560. {
  17561. name: "Large",
  17562. height: math.unit(50, "feet")
  17563. },
  17564. {
  17565. name: "Macro",
  17566. height: math.unit(100, "feet"),
  17567. default: true
  17568. },
  17569. {
  17570. name: "Macro+",
  17571. height: math.unit(200, "feet")
  17572. },
  17573. ]
  17574. ))
  17575. characterMakers.push(() => makeCharacter(
  17576. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17577. {
  17578. front: {
  17579. height: math.unit(6 + 1 / 12, "feet"),
  17580. weight: math.unit(210, "lb"),
  17581. name: "Front",
  17582. image: {
  17583. source: "./media/characters/hasani/front.svg",
  17584. extra: 244 / 232,
  17585. bottom: 0.01
  17586. }
  17587. },
  17588. back: {
  17589. height: math.unit(6 + 1 / 12, "feet"),
  17590. weight: math.unit(210, "lb"),
  17591. name: "Back",
  17592. image: {
  17593. source: "./media/characters/hasani/back.svg",
  17594. extra: 244 / 232,
  17595. bottom: 0.01
  17596. }
  17597. },
  17598. },
  17599. [
  17600. {
  17601. name: "Normal",
  17602. height: math.unit(6 + 1 / 12, "feet")
  17603. },
  17604. {
  17605. name: "Macro",
  17606. height: math.unit(175, "feet"),
  17607. default: true
  17608. },
  17609. ]
  17610. ))
  17611. characterMakers.push(() => makeCharacter(
  17612. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17613. {
  17614. front: {
  17615. height: math.unit(1.82, "meters"),
  17616. weight: math.unit(140, "lb"),
  17617. name: "Front",
  17618. image: {
  17619. source: "./media/characters/nita/front.svg",
  17620. extra: 2473 / 2363,
  17621. bottom: 0.01
  17622. }
  17623. },
  17624. },
  17625. [
  17626. {
  17627. name: "Normal",
  17628. height: math.unit(1.82, "m")
  17629. },
  17630. {
  17631. name: "Macro",
  17632. height: math.unit(300, "m")
  17633. },
  17634. {
  17635. name: "Mistake Canon",
  17636. height: math.unit(0.5, "miles"),
  17637. default: true
  17638. },
  17639. {
  17640. name: "Big Mistake",
  17641. height: math.unit(13, "miles")
  17642. },
  17643. {
  17644. name: "Playing God",
  17645. height: math.unit(2450, "miles")
  17646. },
  17647. ]
  17648. ))
  17649. characterMakers.push(() => makeCharacter(
  17650. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17651. {
  17652. front: {
  17653. height: math.unit(4, "feet"),
  17654. weight: math.unit(120, "lb"),
  17655. name: "Front",
  17656. image: {
  17657. source: "./media/characters/shiriko/front.svg",
  17658. extra: 970/934,
  17659. bottom: 5/975
  17660. }
  17661. },
  17662. },
  17663. [
  17664. {
  17665. name: "Normal",
  17666. height: math.unit(4, "feet"),
  17667. default: true
  17668. },
  17669. ]
  17670. ))
  17671. characterMakers.push(() => makeCharacter(
  17672. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17673. {
  17674. front: {
  17675. height: math.unit(6, "feet"),
  17676. name: "front",
  17677. image: {
  17678. source: "./media/characters/deja/front.svg",
  17679. extra: 926 / 840,
  17680. bottom: 0.07
  17681. }
  17682. },
  17683. },
  17684. [
  17685. {
  17686. name: "Planck Length",
  17687. height: math.unit(1.6e-35, "meters")
  17688. },
  17689. {
  17690. name: "Normal",
  17691. height: math.unit(30.48, "meters"),
  17692. default: true
  17693. },
  17694. {
  17695. name: "Universal",
  17696. height: math.unit(8.8e26, "meters")
  17697. },
  17698. ]
  17699. ))
  17700. characterMakers.push(() => makeCharacter(
  17701. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17702. {
  17703. side: {
  17704. height: math.unit(8, "feet"),
  17705. weight: math.unit(6300, "lb"),
  17706. name: "Side",
  17707. image: {
  17708. source: "./media/characters/anima/side.svg",
  17709. bottom: 0.035
  17710. }
  17711. },
  17712. },
  17713. [
  17714. {
  17715. name: "Normal",
  17716. height: math.unit(8, "feet"),
  17717. default: true
  17718. },
  17719. ]
  17720. ))
  17721. characterMakers.push(() => makeCharacter(
  17722. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17723. {
  17724. front: {
  17725. height: math.unit(8, "feet"),
  17726. weight: math.unit(350, "lb"),
  17727. name: "Front",
  17728. image: {
  17729. source: "./media/characters/bianca/front.svg",
  17730. extra: 234 / 225,
  17731. bottom: 0.03
  17732. }
  17733. },
  17734. },
  17735. [
  17736. {
  17737. name: "Normal",
  17738. height: math.unit(8, "feet"),
  17739. default: true
  17740. },
  17741. ]
  17742. ))
  17743. characterMakers.push(() => makeCharacter(
  17744. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17745. {
  17746. front: {
  17747. height: math.unit(6, "feet"),
  17748. weight: math.unit(150, "lb"),
  17749. name: "Front",
  17750. image: {
  17751. source: "./media/characters/adinia/front.svg",
  17752. extra: 1845 / 1672,
  17753. bottom: 0.02
  17754. }
  17755. },
  17756. back: {
  17757. height: math.unit(6, "feet"),
  17758. weight: math.unit(150, "lb"),
  17759. name: "Back",
  17760. image: {
  17761. source: "./media/characters/adinia/back.svg",
  17762. extra: 1845 / 1672,
  17763. bottom: 0.002
  17764. }
  17765. },
  17766. },
  17767. [
  17768. {
  17769. name: "Normal",
  17770. height: math.unit(11 + 5 / 12, "feet"),
  17771. default: true
  17772. },
  17773. ]
  17774. ))
  17775. characterMakers.push(() => makeCharacter(
  17776. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17777. {
  17778. front: {
  17779. height: math.unit(3, "meters"),
  17780. weight: math.unit(200, "kg"),
  17781. name: "Front",
  17782. image: {
  17783. source: "./media/characters/lykasa/front.svg",
  17784. extra: 1076 / 976,
  17785. bottom: 0.06
  17786. }
  17787. },
  17788. },
  17789. [
  17790. {
  17791. name: "Normal",
  17792. height: math.unit(3, "meters")
  17793. },
  17794. {
  17795. name: "Kaiju",
  17796. height: math.unit(120, "meters"),
  17797. default: true
  17798. },
  17799. {
  17800. name: "Mega Kaiju",
  17801. height: math.unit(240, "km")
  17802. },
  17803. {
  17804. name: "Giga Kaiju",
  17805. height: math.unit(400, "megameters")
  17806. },
  17807. {
  17808. name: "Tera Kaiju",
  17809. height: math.unit(800, "gigameters")
  17810. },
  17811. {
  17812. name: "Kaiju Dragon Goddess",
  17813. height: math.unit(26, "zettaparsecs")
  17814. },
  17815. ]
  17816. ))
  17817. characterMakers.push(() => makeCharacter(
  17818. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17819. {
  17820. side: {
  17821. height: math.unit(283 / 124 * 6, "feet"),
  17822. weight: math.unit(35000, "lb"),
  17823. name: "Side",
  17824. image: {
  17825. source: "./media/characters/malfaren/side.svg",
  17826. extra: 2500 / 1010,
  17827. bottom: 0.01
  17828. }
  17829. },
  17830. front: {
  17831. height: math.unit(22.36, "feet"),
  17832. weight: math.unit(35000, "lb"),
  17833. name: "Front",
  17834. image: {
  17835. source: "./media/characters/malfaren/front.svg",
  17836. extra: 1631 / 1476,
  17837. bottom: 0.01
  17838. }
  17839. },
  17840. maw: {
  17841. height: math.unit(6.9, "feet"),
  17842. name: "Maw",
  17843. image: {
  17844. source: "./media/characters/malfaren/maw.svg"
  17845. }
  17846. },
  17847. },
  17848. [
  17849. {
  17850. name: "Big",
  17851. height: math.unit(283 / 162 * 6, "feet"),
  17852. },
  17853. {
  17854. name: "Bigger",
  17855. height: math.unit(283 / 124 * 6, "feet")
  17856. },
  17857. {
  17858. name: "Massive",
  17859. height: math.unit(283 / 92 * 6, "feet"),
  17860. default: true
  17861. },
  17862. {
  17863. name: "👀💦",
  17864. height: math.unit(283 / 73 * 6, "feet"),
  17865. },
  17866. ]
  17867. ))
  17868. characterMakers.push(() => makeCharacter(
  17869. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17870. {
  17871. front: {
  17872. height: math.unit(1.7, "m"),
  17873. weight: math.unit(70, "kg"),
  17874. name: "Front",
  17875. image: {
  17876. source: "./media/characters/kernel/front.svg",
  17877. extra: 222 / 210,
  17878. bottom: 0.007
  17879. }
  17880. },
  17881. },
  17882. [
  17883. {
  17884. name: "Nano",
  17885. height: math.unit(17, "micrometers")
  17886. },
  17887. {
  17888. name: "Micro",
  17889. height: math.unit(1.7, "mm")
  17890. },
  17891. {
  17892. name: "Small",
  17893. height: math.unit(1.7, "cm")
  17894. },
  17895. {
  17896. name: "Normal",
  17897. height: math.unit(1.7, "m"),
  17898. default: true
  17899. },
  17900. ]
  17901. ))
  17902. characterMakers.push(() => makeCharacter(
  17903. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17904. {
  17905. front: {
  17906. height: math.unit(1.75, "meters"),
  17907. weight: math.unit(65, "kg"),
  17908. name: "Front",
  17909. image: {
  17910. source: "./media/characters/jayne-folest/front.svg",
  17911. extra: 2115 / 2007,
  17912. bottom: 0.02
  17913. }
  17914. },
  17915. back: {
  17916. height: math.unit(1.75, "meters"),
  17917. weight: math.unit(65, "kg"),
  17918. name: "Back",
  17919. image: {
  17920. source: "./media/characters/jayne-folest/back.svg",
  17921. extra: 2115 / 2007,
  17922. bottom: 0.005
  17923. }
  17924. },
  17925. frontClothed: {
  17926. height: math.unit(1.75, "meters"),
  17927. weight: math.unit(65, "kg"),
  17928. name: "Front (Clothed)",
  17929. image: {
  17930. source: "./media/characters/jayne-folest/front-clothed.svg",
  17931. extra: 2115 / 2007,
  17932. bottom: 0.035
  17933. }
  17934. },
  17935. hand: {
  17936. height: math.unit(1 / 1.260, "feet"),
  17937. name: "Hand",
  17938. image: {
  17939. source: "./media/characters/jayne-folest/hand.svg"
  17940. }
  17941. },
  17942. foot: {
  17943. height: math.unit(1 / 0.918, "feet"),
  17944. name: "Foot",
  17945. image: {
  17946. source: "./media/characters/jayne-folest/foot.svg"
  17947. }
  17948. },
  17949. },
  17950. [
  17951. {
  17952. name: "Micro",
  17953. height: math.unit(4, "cm")
  17954. },
  17955. {
  17956. name: "Normal",
  17957. height: math.unit(1.75, "meters")
  17958. },
  17959. {
  17960. name: "Macro",
  17961. height: math.unit(47.5, "meters"),
  17962. default: true
  17963. },
  17964. ]
  17965. ))
  17966. characterMakers.push(() => makeCharacter(
  17967. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17968. {
  17969. front: {
  17970. height: math.unit(180, "cm"),
  17971. weight: math.unit(70, "kg"),
  17972. name: "Front",
  17973. image: {
  17974. source: "./media/characters/algier/front.svg",
  17975. extra: 596 / 572,
  17976. bottom: 0.04
  17977. }
  17978. },
  17979. back: {
  17980. height: math.unit(180, "cm"),
  17981. weight: math.unit(70, "kg"),
  17982. name: "Back",
  17983. image: {
  17984. source: "./media/characters/algier/back.svg",
  17985. extra: 596 / 572,
  17986. bottom: 0.025
  17987. }
  17988. },
  17989. frontdressed: {
  17990. height: math.unit(180, "cm"),
  17991. weight: math.unit(150, "kg"),
  17992. name: "Front-dressed",
  17993. image: {
  17994. source: "./media/characters/algier/front-dressed.svg",
  17995. extra: 596 / 572,
  17996. bottom: 0.038
  17997. }
  17998. },
  17999. },
  18000. [
  18001. {
  18002. name: "Micro",
  18003. height: math.unit(5, "cm")
  18004. },
  18005. {
  18006. name: "Normal",
  18007. height: math.unit(180, "cm"),
  18008. default: true
  18009. },
  18010. {
  18011. name: "Macro",
  18012. height: math.unit(64, "m")
  18013. },
  18014. ]
  18015. ))
  18016. characterMakers.push(() => makeCharacter(
  18017. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18018. {
  18019. upright: {
  18020. height: math.unit(7, "feet"),
  18021. weight: math.unit(300, "lb"),
  18022. name: "Upright",
  18023. image: {
  18024. source: "./media/characters/pretzel/upright.svg",
  18025. extra: 534 / 522,
  18026. bottom: 0.065
  18027. }
  18028. },
  18029. sprawling: {
  18030. height: math.unit(3.75, "feet"),
  18031. weight: math.unit(300, "lb"),
  18032. name: "Sprawling",
  18033. image: {
  18034. source: "./media/characters/pretzel/sprawling.svg",
  18035. extra: 314 / 281,
  18036. bottom: 0.1
  18037. }
  18038. },
  18039. tongue: {
  18040. height: math.unit(2, "feet"),
  18041. name: "Tongue",
  18042. image: {
  18043. source: "./media/characters/pretzel/tongue.svg"
  18044. }
  18045. },
  18046. },
  18047. [
  18048. {
  18049. name: "Normal",
  18050. height: math.unit(7, "feet"),
  18051. default: true
  18052. },
  18053. {
  18054. name: "Oversized",
  18055. height: math.unit(15, "feet")
  18056. },
  18057. {
  18058. name: "Huge",
  18059. height: math.unit(30, "feet")
  18060. },
  18061. {
  18062. name: "Macro",
  18063. height: math.unit(250, "feet")
  18064. },
  18065. ]
  18066. ))
  18067. characterMakers.push(() => makeCharacter(
  18068. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18069. {
  18070. sideFront: {
  18071. height: math.unit(5 + 2 / 12, "feet"),
  18072. weight: math.unit(120, "lb"),
  18073. name: "Front Side",
  18074. image: {
  18075. source: "./media/characters/roxi/side-front.svg",
  18076. extra: 2924 / 2717,
  18077. bottom: 0.08
  18078. }
  18079. },
  18080. sideBack: {
  18081. height: math.unit(5 + 2 / 12, "feet"),
  18082. weight: math.unit(120, "lb"),
  18083. name: "Back Side",
  18084. image: {
  18085. source: "./media/characters/roxi/side-back.svg",
  18086. extra: 2904 / 2693,
  18087. bottom: 0.06
  18088. }
  18089. },
  18090. front: {
  18091. height: math.unit(5 + 2 / 12, "feet"),
  18092. weight: math.unit(120, "lb"),
  18093. name: "Front",
  18094. image: {
  18095. source: "./media/characters/roxi/front.svg",
  18096. extra: 2028 / 1907,
  18097. bottom: 0.01
  18098. }
  18099. },
  18100. frontAlt: {
  18101. height: math.unit(5 + 2 / 12, "feet"),
  18102. weight: math.unit(120, "lb"),
  18103. name: "Front (Alt)",
  18104. image: {
  18105. source: "./media/characters/roxi/front-alt.svg",
  18106. extra: 1828 / 1798,
  18107. bottom: 0.01
  18108. }
  18109. },
  18110. sitting: {
  18111. height: math.unit(2.8, "feet"),
  18112. weight: math.unit(120, "lb"),
  18113. name: "Sitting",
  18114. image: {
  18115. source: "./media/characters/roxi/sitting.svg",
  18116. extra: 2660 / 2462,
  18117. bottom: 0.1
  18118. }
  18119. },
  18120. },
  18121. [
  18122. {
  18123. name: "Normal",
  18124. height: math.unit(5 + 2 / 12, "feet"),
  18125. default: true
  18126. },
  18127. ]
  18128. ))
  18129. characterMakers.push(() => makeCharacter(
  18130. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18131. {
  18132. side: {
  18133. height: math.unit(55, "feet"),
  18134. weight: math.unit(153, "tons"),
  18135. name: "Side",
  18136. image: {
  18137. source: "./media/characters/shadow/side.svg",
  18138. extra: 701 / 628,
  18139. bottom: 0.02
  18140. }
  18141. },
  18142. flying: {
  18143. height: math.unit(145, "feet"),
  18144. weight: math.unit(153, "tons"),
  18145. name: "Flying",
  18146. image: {
  18147. source: "./media/characters/shadow/flying.svg"
  18148. }
  18149. },
  18150. },
  18151. [
  18152. {
  18153. name: "Normal",
  18154. height: math.unit(55, "feet"),
  18155. default: true
  18156. },
  18157. ]
  18158. ))
  18159. characterMakers.push(() => makeCharacter(
  18160. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18161. {
  18162. front: {
  18163. height: math.unit(6, "feet"),
  18164. weight: math.unit(200, "lb"),
  18165. name: "Front",
  18166. image: {
  18167. source: "./media/characters/marcie/front.svg",
  18168. extra: 960 / 876,
  18169. bottom: 58 / 1017.87
  18170. }
  18171. },
  18172. },
  18173. [
  18174. {
  18175. name: "Macro",
  18176. height: math.unit(1, "mile"),
  18177. default: true
  18178. },
  18179. ]
  18180. ))
  18181. characterMakers.push(() => makeCharacter(
  18182. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18183. {
  18184. front: {
  18185. height: math.unit(7, "feet"),
  18186. weight: math.unit(200, "lb"),
  18187. name: "Front",
  18188. image: {
  18189. source: "./media/characters/kachina/front.svg",
  18190. extra: 1290.68 / 1119,
  18191. bottom: 36.5 / 1327.18
  18192. }
  18193. },
  18194. },
  18195. [
  18196. {
  18197. name: "Normal",
  18198. height: math.unit(7, "feet"),
  18199. default: true
  18200. },
  18201. ]
  18202. ))
  18203. characterMakers.push(() => makeCharacter(
  18204. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18205. {
  18206. looking: {
  18207. height: math.unit(2, "meters"),
  18208. weight: math.unit(300, "kg"),
  18209. name: "Looking",
  18210. image: {
  18211. source: "./media/characters/kash/looking.svg",
  18212. extra: 474 / 344,
  18213. bottom: 0.03
  18214. }
  18215. },
  18216. side: {
  18217. height: math.unit(2, "meters"),
  18218. weight: math.unit(300, "kg"),
  18219. name: "Side",
  18220. image: {
  18221. source: "./media/characters/kash/side.svg",
  18222. extra: 302 / 251,
  18223. bottom: 0.03
  18224. }
  18225. },
  18226. front: {
  18227. height: math.unit(2, "meters"),
  18228. weight: math.unit(300, "kg"),
  18229. name: "Front",
  18230. image: {
  18231. source: "./media/characters/kash/front.svg",
  18232. extra: 495 / 360,
  18233. bottom: 0.015
  18234. }
  18235. },
  18236. },
  18237. [
  18238. {
  18239. name: "Normal",
  18240. height: math.unit(2, "meters"),
  18241. default: true
  18242. },
  18243. {
  18244. name: "Big",
  18245. height: math.unit(3, "meters")
  18246. },
  18247. {
  18248. name: "Large",
  18249. height: math.unit(5, "meters")
  18250. },
  18251. ]
  18252. ))
  18253. characterMakers.push(() => makeCharacter(
  18254. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18255. {
  18256. feeding: {
  18257. height: math.unit(6.7, "feet"),
  18258. weight: math.unit(350, "lb"),
  18259. name: "Feeding",
  18260. image: {
  18261. source: "./media/characters/lalim/feeding.svg",
  18262. }
  18263. },
  18264. },
  18265. [
  18266. {
  18267. name: "Normal",
  18268. height: math.unit(6.7, "feet"),
  18269. default: true
  18270. },
  18271. ]
  18272. ))
  18273. characterMakers.push(() => makeCharacter(
  18274. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18275. {
  18276. front: {
  18277. height: math.unit(9.5, "feet"),
  18278. weight: math.unit(600, "lb"),
  18279. name: "Front",
  18280. image: {
  18281. source: "./media/characters/de'vout/front.svg",
  18282. extra: 1443 / 1328,
  18283. bottom: 0.025
  18284. }
  18285. },
  18286. back: {
  18287. height: math.unit(9.5, "feet"),
  18288. weight: math.unit(600, "lb"),
  18289. name: "Back",
  18290. image: {
  18291. source: "./media/characters/de'vout/back.svg",
  18292. extra: 1443 / 1328
  18293. }
  18294. },
  18295. frontDressed: {
  18296. height: math.unit(9.5, "feet"),
  18297. weight: math.unit(600, "lb"),
  18298. name: "Front (Dressed",
  18299. image: {
  18300. source: "./media/characters/de'vout/front-dressed.svg",
  18301. extra: 1443 / 1328,
  18302. bottom: 0.025
  18303. }
  18304. },
  18305. backDressed: {
  18306. height: math.unit(9.5, "feet"),
  18307. weight: math.unit(600, "lb"),
  18308. name: "Back (Dressed",
  18309. image: {
  18310. source: "./media/characters/de'vout/back-dressed.svg",
  18311. extra: 1443 / 1328
  18312. }
  18313. },
  18314. },
  18315. [
  18316. {
  18317. name: "Normal",
  18318. height: math.unit(9.5, "feet"),
  18319. default: true
  18320. },
  18321. ]
  18322. ))
  18323. characterMakers.push(() => makeCharacter(
  18324. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18325. {
  18326. front: {
  18327. height: math.unit(8, "feet"),
  18328. weight: math.unit(225, "lb"),
  18329. name: "Front",
  18330. image: {
  18331. source: "./media/characters/talana/front.svg",
  18332. extra: 1410 / 1300,
  18333. bottom: 0.015
  18334. }
  18335. },
  18336. frontDressed: {
  18337. height: math.unit(8, "feet"),
  18338. weight: math.unit(225, "lb"),
  18339. name: "Front (Dressed",
  18340. image: {
  18341. source: "./media/characters/talana/front-dressed.svg",
  18342. extra: 1410 / 1300,
  18343. bottom: 0.015
  18344. }
  18345. },
  18346. },
  18347. [
  18348. {
  18349. name: "Normal",
  18350. height: math.unit(8, "feet"),
  18351. default: true
  18352. },
  18353. ]
  18354. ))
  18355. characterMakers.push(() => makeCharacter(
  18356. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18357. {
  18358. side: {
  18359. height: math.unit(7.2, "feet"),
  18360. weight: math.unit(150, "lb"),
  18361. name: "Side",
  18362. image: {
  18363. source: "./media/characters/xeauvok/side.svg",
  18364. extra: 1975 / 1523,
  18365. bottom: 0.07
  18366. }
  18367. },
  18368. },
  18369. [
  18370. {
  18371. name: "Normal",
  18372. height: math.unit(7.2, "feet"),
  18373. default: true
  18374. },
  18375. ]
  18376. ))
  18377. characterMakers.push(() => makeCharacter(
  18378. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18379. {
  18380. side: {
  18381. height: math.unit(10, "feet"),
  18382. weight: math.unit(900, "kg"),
  18383. name: "Side",
  18384. image: {
  18385. source: "./media/characters/zara/side.svg",
  18386. extra: 504 / 498
  18387. }
  18388. },
  18389. },
  18390. [
  18391. {
  18392. name: "Normal",
  18393. height: math.unit(10, "feet"),
  18394. default: true
  18395. },
  18396. ]
  18397. ))
  18398. characterMakers.push(() => makeCharacter(
  18399. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18400. {
  18401. side: {
  18402. height: math.unit(6, "feet"),
  18403. weight: math.unit(150, "lb"),
  18404. name: "Side",
  18405. image: {
  18406. source: "./media/characters/richard-dragon/side.svg",
  18407. extra: 845 / 340,
  18408. bottom: 0.017
  18409. }
  18410. },
  18411. maw: {
  18412. height: math.unit(2.97, "feet"),
  18413. name: "Maw",
  18414. image: {
  18415. source: "./media/characters/richard-dragon/maw.svg"
  18416. }
  18417. },
  18418. },
  18419. [
  18420. ]
  18421. ))
  18422. characterMakers.push(() => makeCharacter(
  18423. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18424. {
  18425. front: {
  18426. height: math.unit(4, "feet"),
  18427. weight: math.unit(100, "lb"),
  18428. name: "Front",
  18429. image: {
  18430. source: "./media/characters/richard-smeargle/front.svg",
  18431. extra: 2952 / 2820,
  18432. bottom: 0.028
  18433. }
  18434. },
  18435. },
  18436. [
  18437. {
  18438. name: "Normal",
  18439. height: math.unit(4, "feet"),
  18440. default: true
  18441. },
  18442. {
  18443. name: "Dynamax",
  18444. height: math.unit(20, "meters")
  18445. },
  18446. ]
  18447. ))
  18448. characterMakers.push(() => makeCharacter(
  18449. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18450. {
  18451. front: {
  18452. height: math.unit(6, "feet"),
  18453. weight: math.unit(110, "lb"),
  18454. name: "Front",
  18455. image: {
  18456. source: "./media/characters/klay/front.svg",
  18457. extra: 962 / 883,
  18458. bottom: 0.04
  18459. }
  18460. },
  18461. back: {
  18462. height: math.unit(6, "feet"),
  18463. weight: math.unit(110, "lb"),
  18464. name: "Back",
  18465. image: {
  18466. source: "./media/characters/klay/back.svg",
  18467. extra: 962 / 883
  18468. }
  18469. },
  18470. beans: {
  18471. height: math.unit(1.15, "feet"),
  18472. name: "Beans",
  18473. image: {
  18474. source: "./media/characters/klay/beans.svg"
  18475. }
  18476. },
  18477. },
  18478. [
  18479. {
  18480. name: "Micro",
  18481. height: math.unit(6, "inches")
  18482. },
  18483. {
  18484. name: "Mini",
  18485. height: math.unit(3, "feet")
  18486. },
  18487. {
  18488. name: "Normal",
  18489. height: math.unit(6, "feet"),
  18490. default: true
  18491. },
  18492. {
  18493. name: "Big",
  18494. height: math.unit(25, "feet")
  18495. },
  18496. {
  18497. name: "Macro",
  18498. height: math.unit(100, "feet")
  18499. },
  18500. {
  18501. name: "Megamacro",
  18502. height: math.unit(400, "feet")
  18503. },
  18504. ]
  18505. ))
  18506. characterMakers.push(() => makeCharacter(
  18507. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18508. {
  18509. front: {
  18510. height: math.unit(6, "feet"),
  18511. weight: math.unit(160, "lb"),
  18512. name: "Front",
  18513. image: {
  18514. source: "./media/characters/marcus/front.svg",
  18515. extra: 734 / 676,
  18516. bottom: 0.03
  18517. }
  18518. },
  18519. },
  18520. [
  18521. {
  18522. name: "Little",
  18523. height: math.unit(6, "feet")
  18524. },
  18525. {
  18526. name: "Normal",
  18527. height: math.unit(110, "feet"),
  18528. default: true
  18529. },
  18530. {
  18531. name: "Macro",
  18532. height: math.unit(250, "feet")
  18533. },
  18534. {
  18535. name: "Megamacro",
  18536. height: math.unit(1000, "feet")
  18537. },
  18538. ]
  18539. ))
  18540. characterMakers.push(() => makeCharacter(
  18541. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18542. {
  18543. front: {
  18544. height: math.unit(7, "feet"),
  18545. weight: math.unit(275, "lb"),
  18546. name: "Front",
  18547. image: {
  18548. source: "./media/characters/claude-delroute/front.svg",
  18549. extra: 902/827,
  18550. bottom: 26/928
  18551. }
  18552. },
  18553. side: {
  18554. height: math.unit(7, "feet"),
  18555. weight: math.unit(275, "lb"),
  18556. name: "Side",
  18557. image: {
  18558. source: "./media/characters/claude-delroute/side.svg",
  18559. extra: 908/853,
  18560. bottom: 16/924
  18561. }
  18562. },
  18563. back: {
  18564. height: math.unit(7, "feet"),
  18565. weight: math.unit(275, "lb"),
  18566. name: "Back",
  18567. image: {
  18568. source: "./media/characters/claude-delroute/back.svg",
  18569. extra: 911/829,
  18570. bottom: 18/929
  18571. }
  18572. },
  18573. maw: {
  18574. height: math.unit(0.6407, "meters"),
  18575. name: "Maw",
  18576. image: {
  18577. source: "./media/characters/claude-delroute/maw.svg"
  18578. }
  18579. },
  18580. },
  18581. [
  18582. {
  18583. name: "Normal",
  18584. height: math.unit(7, "feet"),
  18585. default: true
  18586. },
  18587. {
  18588. name: "Lorge",
  18589. height: math.unit(20, "feet")
  18590. },
  18591. ]
  18592. ))
  18593. characterMakers.push(() => makeCharacter(
  18594. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18595. {
  18596. front: {
  18597. height: math.unit(8 + 4 / 12, "feet"),
  18598. weight: math.unit(600, "lb"),
  18599. name: "Front",
  18600. image: {
  18601. source: "./media/characters/dragonien/front.svg",
  18602. extra: 100 / 94,
  18603. bottom: 3.3 / 103.3445
  18604. }
  18605. },
  18606. back: {
  18607. height: math.unit(8 + 4 / 12, "feet"),
  18608. weight: math.unit(600, "lb"),
  18609. name: "Back",
  18610. image: {
  18611. source: "./media/characters/dragonien/back.svg",
  18612. extra: 776 / 746,
  18613. bottom: 6.4 / 782.0616
  18614. }
  18615. },
  18616. foot: {
  18617. height: math.unit(1.54, "feet"),
  18618. name: "Foot",
  18619. image: {
  18620. source: "./media/characters/dragonien/foot.svg",
  18621. }
  18622. },
  18623. },
  18624. [
  18625. {
  18626. name: "Normal",
  18627. height: math.unit(8 + 4 / 12, "feet"),
  18628. default: true
  18629. },
  18630. {
  18631. name: "Macro",
  18632. height: math.unit(200, "feet")
  18633. },
  18634. {
  18635. name: "Megamacro",
  18636. height: math.unit(1, "mile")
  18637. },
  18638. {
  18639. name: "Gigamacro",
  18640. height: math.unit(1000, "miles")
  18641. },
  18642. ]
  18643. ))
  18644. characterMakers.push(() => makeCharacter(
  18645. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18646. {
  18647. front: {
  18648. height: math.unit(5 + 2 / 12, "feet"),
  18649. weight: math.unit(110, "lb"),
  18650. name: "Front",
  18651. image: {
  18652. source: "./media/characters/desta/front.svg",
  18653. extra: 767 / 726,
  18654. bottom: 11.7 / 779
  18655. }
  18656. },
  18657. back: {
  18658. height: math.unit(5 + 2 / 12, "feet"),
  18659. weight: math.unit(110, "lb"),
  18660. name: "Back",
  18661. image: {
  18662. source: "./media/characters/desta/back.svg",
  18663. extra: 777 / 728,
  18664. bottom: 6 / 784
  18665. }
  18666. },
  18667. frontAlt: {
  18668. height: math.unit(5 + 2 / 12, "feet"),
  18669. weight: math.unit(110, "lb"),
  18670. name: "Front",
  18671. image: {
  18672. source: "./media/characters/desta/front-alt.svg",
  18673. extra: 1482 / 1417
  18674. }
  18675. },
  18676. side: {
  18677. height: math.unit(5 + 2 / 12, "feet"),
  18678. weight: math.unit(110, "lb"),
  18679. name: "Side",
  18680. image: {
  18681. source: "./media/characters/desta/side.svg",
  18682. extra: 2579 / 2491,
  18683. bottom: 0.053
  18684. }
  18685. },
  18686. },
  18687. [
  18688. {
  18689. name: "Micro",
  18690. height: math.unit(6, "inches")
  18691. },
  18692. {
  18693. name: "Normal",
  18694. height: math.unit(5 + 2 / 12, "feet"),
  18695. default: true
  18696. },
  18697. {
  18698. name: "Macro",
  18699. height: math.unit(62, "feet")
  18700. },
  18701. {
  18702. name: "Megamacro",
  18703. height: math.unit(1800, "feet")
  18704. },
  18705. ]
  18706. ))
  18707. characterMakers.push(() => makeCharacter(
  18708. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18709. {
  18710. front: {
  18711. height: math.unit(10, "feet"),
  18712. weight: math.unit(700, "lb"),
  18713. name: "Front",
  18714. image: {
  18715. source: "./media/characters/storm-alystar/front.svg",
  18716. extra: 2112 / 1898,
  18717. bottom: 0.034
  18718. }
  18719. },
  18720. },
  18721. [
  18722. {
  18723. name: "Micro",
  18724. height: math.unit(3.5, "inches")
  18725. },
  18726. {
  18727. name: "Normal",
  18728. height: math.unit(10, "feet"),
  18729. default: true
  18730. },
  18731. {
  18732. name: "Macro",
  18733. height: math.unit(400, "feet")
  18734. },
  18735. {
  18736. name: "Deific",
  18737. height: math.unit(60, "miles")
  18738. },
  18739. ]
  18740. ))
  18741. characterMakers.push(() => makeCharacter(
  18742. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18743. {
  18744. front: {
  18745. height: math.unit(2.35, "meters"),
  18746. weight: math.unit(119, "kg"),
  18747. name: "Front",
  18748. image: {
  18749. source: "./media/characters/ilia/front.svg",
  18750. extra: 1285 / 1255,
  18751. bottom: 0.06
  18752. }
  18753. },
  18754. },
  18755. [
  18756. {
  18757. name: "Normal",
  18758. height: math.unit(2.35, "meters")
  18759. },
  18760. {
  18761. name: "Macro",
  18762. height: math.unit(140, "meters"),
  18763. default: true
  18764. },
  18765. {
  18766. name: "Megamacro",
  18767. height: math.unit(100, "miles")
  18768. },
  18769. ]
  18770. ))
  18771. characterMakers.push(() => makeCharacter(
  18772. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18773. {
  18774. front: {
  18775. height: math.unit(6 + 5 / 12, "feet"),
  18776. weight: math.unit(190, "lb"),
  18777. name: "Front",
  18778. image: {
  18779. source: "./media/characters/kingdead/front.svg",
  18780. extra: 1228 / 1177
  18781. }
  18782. },
  18783. },
  18784. [
  18785. {
  18786. name: "Micro",
  18787. height: math.unit(7, "inches")
  18788. },
  18789. {
  18790. name: "Normal",
  18791. height: math.unit(6 + 5 / 12, "feet")
  18792. },
  18793. {
  18794. name: "Macro",
  18795. height: math.unit(150, "feet"),
  18796. default: true
  18797. },
  18798. {
  18799. name: "Megamacro",
  18800. height: math.unit(200, "miles")
  18801. },
  18802. ]
  18803. ))
  18804. characterMakers.push(() => makeCharacter(
  18805. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18806. {
  18807. front: {
  18808. height: math.unit(8, "feet"),
  18809. weight: math.unit(600, "lb"),
  18810. name: "Front",
  18811. image: {
  18812. source: "./media/characters/kyrehx/front.svg",
  18813. extra: 1195 / 1095,
  18814. bottom: 0.034
  18815. }
  18816. },
  18817. },
  18818. [
  18819. {
  18820. name: "Micro",
  18821. height: math.unit(2, "inches")
  18822. },
  18823. {
  18824. name: "Normal",
  18825. height: math.unit(8, "feet"),
  18826. default: true
  18827. },
  18828. {
  18829. name: "Macro",
  18830. height: math.unit(255, "feet")
  18831. },
  18832. ]
  18833. ))
  18834. characterMakers.push(() => makeCharacter(
  18835. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18836. {
  18837. front: {
  18838. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18839. weight: math.unit(184, "lb"),
  18840. name: "Front",
  18841. image: {
  18842. source: "./media/characters/xang/front.svg",
  18843. extra: 845 / 755
  18844. }
  18845. },
  18846. },
  18847. [
  18848. {
  18849. name: "Normal",
  18850. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18851. default: true
  18852. },
  18853. {
  18854. name: "Macro",
  18855. height: math.unit(0.935 * 146, "feet")
  18856. },
  18857. {
  18858. name: "Megamacro",
  18859. height: math.unit(0.935 * 3, "miles")
  18860. },
  18861. ]
  18862. ))
  18863. characterMakers.push(() => makeCharacter(
  18864. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18865. {
  18866. frontDressed: {
  18867. height: math.unit(5 + 7 / 12, "feet"),
  18868. weight: math.unit(140, "lb"),
  18869. name: "Front (Dressed)",
  18870. image: {
  18871. source: "./media/characters/doc-weardno/front-dressed.svg",
  18872. extra: 263 / 234
  18873. }
  18874. },
  18875. backDressed: {
  18876. height: math.unit(5 + 7 / 12, "feet"),
  18877. weight: math.unit(140, "lb"),
  18878. name: "Back (Dressed)",
  18879. image: {
  18880. source: "./media/characters/doc-weardno/back-dressed.svg",
  18881. extra: 266 / 238
  18882. }
  18883. },
  18884. front: {
  18885. height: math.unit(5 + 7 / 12, "feet"),
  18886. weight: math.unit(140, "lb"),
  18887. name: "Front",
  18888. image: {
  18889. source: "./media/characters/doc-weardno/front.svg",
  18890. extra: 254 / 233
  18891. }
  18892. },
  18893. },
  18894. [
  18895. {
  18896. name: "Micro",
  18897. height: math.unit(3, "inches")
  18898. },
  18899. {
  18900. name: "Normal",
  18901. height: math.unit(5 + 7 / 12, "feet"),
  18902. default: true
  18903. },
  18904. {
  18905. name: "Macro",
  18906. height: math.unit(25, "feet")
  18907. },
  18908. {
  18909. name: "Megamacro",
  18910. height: math.unit(2, "miles")
  18911. },
  18912. ]
  18913. ))
  18914. characterMakers.push(() => makeCharacter(
  18915. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18916. {
  18917. front: {
  18918. height: math.unit(6 + 2 / 12, "feet"),
  18919. weight: math.unit(153, "lb"),
  18920. name: "Front",
  18921. image: {
  18922. source: "./media/characters/seth-whilst/front.svg",
  18923. bottom: 0.07
  18924. }
  18925. },
  18926. },
  18927. [
  18928. {
  18929. name: "Micro",
  18930. height: math.unit(5, "inches")
  18931. },
  18932. {
  18933. name: "Normal",
  18934. height: math.unit(6 + 2 / 12, "feet"),
  18935. default: true
  18936. },
  18937. ]
  18938. ))
  18939. characterMakers.push(() => makeCharacter(
  18940. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18941. {
  18942. front: {
  18943. height: math.unit(3, "inches"),
  18944. weight: math.unit(8, "grams"),
  18945. name: "Front",
  18946. image: {
  18947. source: "./media/characters/pocket-jabari/front.svg",
  18948. extra: 1024 / 974,
  18949. bottom: 0.039
  18950. }
  18951. },
  18952. },
  18953. [
  18954. {
  18955. name: "Minimicro",
  18956. height: math.unit(8, "mm")
  18957. },
  18958. {
  18959. name: "Micro",
  18960. height: math.unit(3, "inches"),
  18961. default: true
  18962. },
  18963. {
  18964. name: "Normal",
  18965. height: math.unit(3, "feet")
  18966. },
  18967. ]
  18968. ))
  18969. characterMakers.push(() => makeCharacter(
  18970. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18971. {
  18972. front: {
  18973. height: math.unit(15, "feet"),
  18974. weight: math.unit(3280, "lb"),
  18975. name: "Front",
  18976. image: {
  18977. source: "./media/characters/sapphy/front.svg",
  18978. extra: 671 / 577,
  18979. bottom: 0.085
  18980. }
  18981. },
  18982. back: {
  18983. height: math.unit(15, "feet"),
  18984. weight: math.unit(3280, "lb"),
  18985. name: "Back",
  18986. image: {
  18987. source: "./media/characters/sapphy/back.svg",
  18988. extra: 631 / 607,
  18989. bottom: 0.045
  18990. }
  18991. },
  18992. },
  18993. [
  18994. {
  18995. name: "Normal",
  18996. height: math.unit(15, "feet")
  18997. },
  18998. {
  18999. name: "Casual Macro",
  19000. height: math.unit(120, "feet")
  19001. },
  19002. {
  19003. name: "Macro",
  19004. height: math.unit(2150, "feet"),
  19005. default: true
  19006. },
  19007. {
  19008. name: "Megamacro",
  19009. height: math.unit(8, "miles")
  19010. },
  19011. {
  19012. name: "Galaxy Mom",
  19013. height: math.unit(6, "megalightyears")
  19014. },
  19015. ]
  19016. ))
  19017. characterMakers.push(() => makeCharacter(
  19018. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19019. {
  19020. front: {
  19021. height: math.unit(6, "feet"),
  19022. weight: math.unit(170, "lb"),
  19023. name: "Front",
  19024. image: {
  19025. source: "./media/characters/kiro/front.svg",
  19026. extra: 1064 / 1012,
  19027. bottom: 0.052
  19028. }
  19029. },
  19030. },
  19031. [
  19032. {
  19033. name: "Micro",
  19034. height: math.unit(6, "inches")
  19035. },
  19036. {
  19037. name: "Normal",
  19038. height: math.unit(6, "feet"),
  19039. default: true
  19040. },
  19041. {
  19042. name: "Macro",
  19043. height: math.unit(72, "feet")
  19044. },
  19045. ]
  19046. ))
  19047. characterMakers.push(() => makeCharacter(
  19048. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19049. {
  19050. front: {
  19051. height: math.unit(5 + 9 / 12, "feet"),
  19052. weight: math.unit(175, "lb"),
  19053. name: "Front",
  19054. image: {
  19055. source: "./media/characters/irishfox/front.svg",
  19056. extra: 1912 / 1680,
  19057. bottom: 0.02
  19058. }
  19059. },
  19060. },
  19061. [
  19062. {
  19063. name: "Nano",
  19064. height: math.unit(1, "mm")
  19065. },
  19066. {
  19067. name: "Micro",
  19068. height: math.unit(2, "inches")
  19069. },
  19070. {
  19071. name: "Normal",
  19072. height: math.unit(5 + 9 / 12, "feet"),
  19073. default: true
  19074. },
  19075. {
  19076. name: "Macro",
  19077. height: math.unit(45, "feet")
  19078. },
  19079. ]
  19080. ))
  19081. characterMakers.push(() => makeCharacter(
  19082. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19083. {
  19084. front: {
  19085. height: math.unit(6 + 1 / 12, "feet"),
  19086. weight: math.unit(75, "lb"),
  19087. name: "Front",
  19088. image: {
  19089. source: "./media/characters/aronai-sieyes/front.svg",
  19090. extra: 1532/1450,
  19091. bottom: 42/1574
  19092. }
  19093. },
  19094. side: {
  19095. height: math.unit(6 + 1 / 12, "feet"),
  19096. weight: math.unit(75, "lb"),
  19097. name: "Side",
  19098. image: {
  19099. source: "./media/characters/aronai-sieyes/side.svg",
  19100. extra: 1422/1365,
  19101. bottom: 148/1570
  19102. }
  19103. },
  19104. back: {
  19105. height: math.unit(6 + 1 / 12, "feet"),
  19106. weight: math.unit(75, "lb"),
  19107. name: "Back",
  19108. image: {
  19109. source: "./media/characters/aronai-sieyes/back.svg",
  19110. extra: 1526/1464,
  19111. bottom: 51/1577
  19112. }
  19113. },
  19114. dressed: {
  19115. height: math.unit(6 + 1 / 12, "feet"),
  19116. weight: math.unit(75, "lb"),
  19117. name: "Dressed",
  19118. image: {
  19119. source: "./media/characters/aronai-sieyes/dressed.svg",
  19120. extra: 1559/1483,
  19121. bottom: 39/1598
  19122. }
  19123. },
  19124. slit: {
  19125. height: math.unit(1.3, "feet"),
  19126. name: "Slit",
  19127. image: {
  19128. source: "./media/characters/aronai-sieyes/slit.svg"
  19129. }
  19130. },
  19131. slitSpread: {
  19132. height: math.unit(0.9, "feet"),
  19133. name: "Slit (Spread)",
  19134. image: {
  19135. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19136. }
  19137. },
  19138. rump: {
  19139. height: math.unit(1.3, "feet"),
  19140. name: "Rump",
  19141. image: {
  19142. source: "./media/characters/aronai-sieyes/rump.svg"
  19143. }
  19144. },
  19145. maw: {
  19146. height: math.unit(1.25, "feet"),
  19147. name: "Maw",
  19148. image: {
  19149. source: "./media/characters/aronai-sieyes/maw.svg"
  19150. }
  19151. },
  19152. feral: {
  19153. height: math.unit(18, "feet"),
  19154. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19155. name: "Feral",
  19156. image: {
  19157. source: "./media/characters/aronai-sieyes/feral.svg",
  19158. extra: 1530 / 1240,
  19159. bottom: 0.035
  19160. }
  19161. },
  19162. },
  19163. [
  19164. {
  19165. name: "Micro",
  19166. height: math.unit(2, "inches")
  19167. },
  19168. {
  19169. name: "Normal",
  19170. height: math.unit(6 + 1 / 12, "feet"),
  19171. default: true
  19172. }
  19173. ]
  19174. ))
  19175. characterMakers.push(() => makeCharacter(
  19176. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19177. {
  19178. front: {
  19179. height: math.unit(12, "feet"),
  19180. weight: math.unit(410, "kg"),
  19181. name: "Front",
  19182. image: {
  19183. source: "./media/characters/xuna/front.svg",
  19184. extra: 2184 / 1980
  19185. }
  19186. },
  19187. side: {
  19188. height: math.unit(12, "feet"),
  19189. weight: math.unit(410, "kg"),
  19190. name: "Side",
  19191. image: {
  19192. source: "./media/characters/xuna/side.svg",
  19193. extra: 2184 / 1980
  19194. }
  19195. },
  19196. back: {
  19197. height: math.unit(12, "feet"),
  19198. weight: math.unit(410, "kg"),
  19199. name: "Back",
  19200. image: {
  19201. source: "./media/characters/xuna/back.svg",
  19202. extra: 2184 / 1980
  19203. }
  19204. },
  19205. },
  19206. [
  19207. {
  19208. name: "Nano glow",
  19209. height: math.unit(10, "nm")
  19210. },
  19211. {
  19212. name: "Micro floof",
  19213. height: math.unit(0.3, "m")
  19214. },
  19215. {
  19216. name: "Huggable softy boi",
  19217. height: math.unit(3.6576, "m"),
  19218. default: true
  19219. },
  19220. {
  19221. name: "Admirable floof",
  19222. height: math.unit(80, "meters")
  19223. },
  19224. {
  19225. name: "Gentle macro",
  19226. height: math.unit(300, "meters")
  19227. },
  19228. {
  19229. name: "Very careful floof",
  19230. height: math.unit(3200, "meters")
  19231. },
  19232. {
  19233. name: "The mega floof",
  19234. height: math.unit(36000, "meters")
  19235. },
  19236. {
  19237. name: "Giga-fur-Wicker",
  19238. height: math.unit(4800000, "meters")
  19239. },
  19240. {
  19241. name: "Licky world",
  19242. height: math.unit(20000000, "meters")
  19243. },
  19244. {
  19245. name: "Floofy cyan sun",
  19246. height: math.unit(1500000000, "meters")
  19247. },
  19248. {
  19249. name: "Milky Wicker",
  19250. height: math.unit(1000000000000000000000, "meters")
  19251. },
  19252. {
  19253. name: "The observing Wicker",
  19254. height: math.unit(999999999999999999999999999, "meters")
  19255. },
  19256. ]
  19257. ))
  19258. characterMakers.push(() => makeCharacter(
  19259. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19260. {
  19261. front: {
  19262. height: math.unit(5 + 9 / 12, "feet"),
  19263. weight: math.unit(150, "lb"),
  19264. name: "Front",
  19265. image: {
  19266. source: "./media/characters/arokha-sieyes/front.svg",
  19267. extra: 1425 / 1284,
  19268. bottom: 0.05
  19269. }
  19270. },
  19271. },
  19272. [
  19273. {
  19274. name: "Normal",
  19275. height: math.unit(5 + 9 / 12, "feet")
  19276. },
  19277. {
  19278. name: "Macro",
  19279. height: math.unit(30, "meters"),
  19280. default: true
  19281. },
  19282. ]
  19283. ))
  19284. characterMakers.push(() => makeCharacter(
  19285. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19286. {
  19287. front: {
  19288. height: math.unit(6, "feet"),
  19289. weight: math.unit(180, "lb"),
  19290. name: "Front",
  19291. image: {
  19292. source: "./media/characters/arokh-sieyes/front.svg",
  19293. extra: 1830 / 1769,
  19294. bottom: 0.01
  19295. }
  19296. },
  19297. },
  19298. [
  19299. {
  19300. name: "Normal",
  19301. height: math.unit(6, "feet")
  19302. },
  19303. {
  19304. name: "Macro",
  19305. height: math.unit(30, "meters"),
  19306. default: true
  19307. },
  19308. ]
  19309. ))
  19310. characterMakers.push(() => makeCharacter(
  19311. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19312. {
  19313. side: {
  19314. height: math.unit(13 + 1 / 12, "feet"),
  19315. weight: math.unit(8.5, "tonnes"),
  19316. name: "Side",
  19317. image: {
  19318. source: "./media/characters/goldeneye/side.svg",
  19319. extra: 1182 / 778,
  19320. bottom: 0.067
  19321. }
  19322. },
  19323. paw: {
  19324. height: math.unit(3.4, "feet"),
  19325. name: "Paw",
  19326. image: {
  19327. source: "./media/characters/goldeneye/paw.svg"
  19328. }
  19329. },
  19330. },
  19331. [
  19332. {
  19333. name: "Normal",
  19334. height: math.unit(13 + 1 / 12, "feet"),
  19335. default: true
  19336. },
  19337. ]
  19338. ))
  19339. characterMakers.push(() => makeCharacter(
  19340. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19341. {
  19342. front: {
  19343. height: math.unit(6 + 1 / 12, "feet"),
  19344. weight: math.unit(210, "lb"),
  19345. name: "Front",
  19346. image: {
  19347. source: "./media/characters/leonardo-lycheborne/front.svg",
  19348. extra: 776/723,
  19349. bottom: 34/810
  19350. }
  19351. },
  19352. side: {
  19353. height: math.unit(6 + 1 / 12, "feet"),
  19354. weight: math.unit(210, "lb"),
  19355. name: "Side",
  19356. image: {
  19357. source: "./media/characters/leonardo-lycheborne/side.svg",
  19358. extra: 780/728,
  19359. bottom: 12/792
  19360. }
  19361. },
  19362. back: {
  19363. height: math.unit(6 + 1 / 12, "feet"),
  19364. weight: math.unit(210, "lb"),
  19365. name: "Back",
  19366. image: {
  19367. source: "./media/characters/leonardo-lycheborne/back.svg",
  19368. extra: 775/721,
  19369. bottom: 17/792
  19370. }
  19371. },
  19372. hand: {
  19373. height: math.unit(1.08, "feet"),
  19374. name: "Hand",
  19375. image: {
  19376. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19377. }
  19378. },
  19379. foot: {
  19380. height: math.unit(1.32, "feet"),
  19381. name: "Foot",
  19382. image: {
  19383. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19384. }
  19385. },
  19386. maw: {
  19387. height: math.unit(1, "feet"),
  19388. name: "Maw",
  19389. image: {
  19390. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19391. }
  19392. },
  19393. were: {
  19394. height: math.unit(20, "feet"),
  19395. weight: math.unit(7800, "lb"),
  19396. name: "Were",
  19397. image: {
  19398. source: "./media/characters/leonardo-lycheborne/were.svg",
  19399. extra: 1224/1165,
  19400. bottom: 72/1296
  19401. }
  19402. },
  19403. feral: {
  19404. height: math.unit(7.5, "feet"),
  19405. weight: math.unit(600, "lb"),
  19406. name: "Feral",
  19407. image: {
  19408. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19409. extra: 797/702,
  19410. bottom: 139/936
  19411. }
  19412. },
  19413. taur: {
  19414. height: math.unit(11, "feet"),
  19415. weight: math.unit(3300, "lb"),
  19416. name: "Taur",
  19417. image: {
  19418. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19419. extra: 1271/1197,
  19420. bottom: 47/1318
  19421. }
  19422. },
  19423. barghest: {
  19424. height: math.unit(11, "feet"),
  19425. weight: math.unit(1300, "lb"),
  19426. name: "Barghest",
  19427. image: {
  19428. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19429. extra: 1291/1204,
  19430. bottom: 37/1328
  19431. }
  19432. },
  19433. dick: {
  19434. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19435. name: "Dick",
  19436. image: {
  19437. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19438. }
  19439. },
  19440. dickWere: {
  19441. height: math.unit((20) / 3.8, "feet"),
  19442. name: "Dick (Were)",
  19443. image: {
  19444. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19445. }
  19446. },
  19447. },
  19448. [
  19449. {
  19450. name: "Normal",
  19451. height: math.unit(6 + 1 / 12, "feet"),
  19452. default: true
  19453. },
  19454. ]
  19455. ))
  19456. characterMakers.push(() => makeCharacter(
  19457. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19458. {
  19459. front: {
  19460. height: math.unit(10, "feet"),
  19461. weight: math.unit(350, "lb"),
  19462. name: "Front",
  19463. image: {
  19464. source: "./media/characters/jet/front.svg",
  19465. extra: 2050 / 1980,
  19466. bottom: 0.013
  19467. }
  19468. },
  19469. back: {
  19470. height: math.unit(10, "feet"),
  19471. weight: math.unit(350, "lb"),
  19472. name: "Back",
  19473. image: {
  19474. source: "./media/characters/jet/back.svg",
  19475. extra: 2050 / 1980,
  19476. bottom: 0.013
  19477. }
  19478. },
  19479. },
  19480. [
  19481. {
  19482. name: "Micro",
  19483. height: math.unit(6, "inches")
  19484. },
  19485. {
  19486. name: "Normal",
  19487. height: math.unit(10, "feet"),
  19488. default: true
  19489. },
  19490. {
  19491. name: "Macro",
  19492. height: math.unit(100, "feet")
  19493. },
  19494. ]
  19495. ))
  19496. characterMakers.push(() => makeCharacter(
  19497. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19498. {
  19499. front: {
  19500. height: math.unit(15, "feet"),
  19501. weight: math.unit(2800, "lb"),
  19502. name: "Front",
  19503. image: {
  19504. source: "./media/characters/tanarath/front.svg",
  19505. extra: 2392 / 2220,
  19506. bottom: 0.03
  19507. }
  19508. },
  19509. back: {
  19510. height: math.unit(15, "feet"),
  19511. weight: math.unit(2800, "lb"),
  19512. name: "Back",
  19513. image: {
  19514. source: "./media/characters/tanarath/back.svg",
  19515. extra: 2392 / 2220,
  19516. bottom: 0.03
  19517. }
  19518. },
  19519. },
  19520. [
  19521. {
  19522. name: "Normal",
  19523. height: math.unit(15, "feet"),
  19524. default: true
  19525. },
  19526. ]
  19527. ))
  19528. characterMakers.push(() => makeCharacter(
  19529. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19530. {
  19531. front: {
  19532. height: math.unit(7 + 1 / 12, "feet"),
  19533. weight: math.unit(175, "lb"),
  19534. name: "Front",
  19535. image: {
  19536. source: "./media/characters/patty-cattybatty/front.svg",
  19537. extra: 908 / 874,
  19538. bottom: 0.025
  19539. }
  19540. },
  19541. },
  19542. [
  19543. {
  19544. name: "Micro",
  19545. height: math.unit(1, "inch")
  19546. },
  19547. {
  19548. name: "Normal",
  19549. height: math.unit(7 + 1 / 12, "feet")
  19550. },
  19551. {
  19552. name: "Mini Macro",
  19553. height: math.unit(155, "feet")
  19554. },
  19555. {
  19556. name: "Macro",
  19557. height: math.unit(1077, "feet")
  19558. },
  19559. {
  19560. name: "Mega Macro",
  19561. height: math.unit(47650, "feet"),
  19562. default: true
  19563. },
  19564. {
  19565. name: "Giga Macro",
  19566. height: math.unit(440, "miles")
  19567. },
  19568. {
  19569. name: "Tera Macro",
  19570. height: math.unit(8700, "miles")
  19571. },
  19572. {
  19573. name: "Planetary Macro",
  19574. height: math.unit(32700, "miles")
  19575. },
  19576. {
  19577. name: "Solar Macro",
  19578. height: math.unit(550000, "miles")
  19579. },
  19580. {
  19581. name: "Celestial Macro",
  19582. height: math.unit(2.5, "AU")
  19583. },
  19584. ]
  19585. ))
  19586. characterMakers.push(() => makeCharacter(
  19587. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19588. {
  19589. front: {
  19590. height: math.unit(4 + 5 / 12, "feet"),
  19591. weight: math.unit(90, "lb"),
  19592. name: "Front",
  19593. image: {
  19594. source: "./media/characters/cappu/front.svg",
  19595. extra: 1247 / 1152,
  19596. bottom: 0.012
  19597. }
  19598. },
  19599. },
  19600. [
  19601. {
  19602. name: "Normal",
  19603. height: math.unit(4 + 5 / 12, "feet"),
  19604. default: true
  19605. },
  19606. ]
  19607. ))
  19608. characterMakers.push(() => makeCharacter(
  19609. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19610. {
  19611. frontDressed: {
  19612. height: math.unit(70, "cm"),
  19613. weight: math.unit(6, "kg"),
  19614. name: "Front (Dressed)",
  19615. image: {
  19616. source: "./media/characters/sebi/front-dressed.svg",
  19617. extra: 713.5 / 686.5,
  19618. bottom: 0.003
  19619. }
  19620. },
  19621. front: {
  19622. height: math.unit(70, "cm"),
  19623. weight: math.unit(5, "kg"),
  19624. name: "Front",
  19625. image: {
  19626. source: "./media/characters/sebi/front.svg",
  19627. extra: 713.5 / 686.5,
  19628. bottom: 0.003
  19629. }
  19630. }
  19631. },
  19632. [
  19633. {
  19634. name: "Normal",
  19635. height: math.unit(70, "cm"),
  19636. default: true
  19637. },
  19638. {
  19639. name: "Macro",
  19640. height: math.unit(8, "meters")
  19641. },
  19642. ]
  19643. ))
  19644. characterMakers.push(() => makeCharacter(
  19645. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19646. {
  19647. front: {
  19648. height: math.unit(6, "feet"),
  19649. weight: math.unit(150, "lb"),
  19650. name: "Front",
  19651. image: {
  19652. source: "./media/characters/typhek/front.svg",
  19653. extra: 1948 / 1929,
  19654. bottom: 0.025
  19655. }
  19656. },
  19657. side: {
  19658. height: math.unit(6, "feet"),
  19659. weight: math.unit(150, "lb"),
  19660. name: "Side",
  19661. image: {
  19662. source: "./media/characters/typhek/side.svg",
  19663. extra: 2034 / 2010,
  19664. bottom: 0.003
  19665. }
  19666. },
  19667. back: {
  19668. height: math.unit(6, "feet"),
  19669. weight: math.unit(150, "lb"),
  19670. name: "Back",
  19671. image: {
  19672. source: "./media/characters/typhek/back.svg",
  19673. extra: 2005 / 1978,
  19674. bottom: 0.004
  19675. }
  19676. },
  19677. palm: {
  19678. height: math.unit(1.2, "feet"),
  19679. name: "Palm",
  19680. image: {
  19681. source: "./media/characters/typhek/palm.svg"
  19682. }
  19683. },
  19684. fist: {
  19685. height: math.unit(1.1, "feet"),
  19686. name: "Fist",
  19687. image: {
  19688. source: "./media/characters/typhek/fist.svg"
  19689. }
  19690. },
  19691. foot: {
  19692. height: math.unit(1.57, "feet"),
  19693. name: "Foot",
  19694. image: {
  19695. source: "./media/characters/typhek/foot.svg"
  19696. }
  19697. },
  19698. sole: {
  19699. height: math.unit(2.05, "feet"),
  19700. name: "Sole",
  19701. image: {
  19702. source: "./media/characters/typhek/sole.svg"
  19703. }
  19704. },
  19705. },
  19706. [
  19707. {
  19708. name: "Macro",
  19709. height: math.unit(40, "stories"),
  19710. default: true
  19711. },
  19712. {
  19713. name: "Megamacro",
  19714. height: math.unit(1, "mile")
  19715. },
  19716. {
  19717. name: "Gigamacro",
  19718. height: math.unit(4000, "solarradii")
  19719. },
  19720. {
  19721. name: "Universal",
  19722. height: math.unit(1.1, "universes")
  19723. }
  19724. ]
  19725. ))
  19726. characterMakers.push(() => makeCharacter(
  19727. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19728. {
  19729. side: {
  19730. height: math.unit(5 + 7 / 12, "feet"),
  19731. weight: math.unit(150, "lb"),
  19732. name: "Side",
  19733. image: {
  19734. source: "./media/characters/kassy/side.svg",
  19735. extra: 1280 / 1225,
  19736. bottom: 0.002
  19737. }
  19738. },
  19739. front: {
  19740. height: math.unit(5 + 7 / 12, "feet"),
  19741. weight: math.unit(150, "lb"),
  19742. name: "Front",
  19743. image: {
  19744. source: "./media/characters/kassy/front.svg",
  19745. extra: 1280 / 1225,
  19746. bottom: 0.025
  19747. }
  19748. },
  19749. back: {
  19750. height: math.unit(5 + 7 / 12, "feet"),
  19751. weight: math.unit(150, "lb"),
  19752. name: "Back",
  19753. image: {
  19754. source: "./media/characters/kassy/back.svg",
  19755. extra: 1280 / 1225,
  19756. bottom: 0.002
  19757. }
  19758. },
  19759. foot: {
  19760. height: math.unit(1.266, "feet"),
  19761. name: "Foot",
  19762. image: {
  19763. source: "./media/characters/kassy/foot.svg"
  19764. }
  19765. },
  19766. },
  19767. [
  19768. {
  19769. name: "Normal",
  19770. height: math.unit(5 + 7 / 12, "feet")
  19771. },
  19772. {
  19773. name: "Macro",
  19774. height: math.unit(137, "feet"),
  19775. default: true
  19776. },
  19777. {
  19778. name: "Megamacro",
  19779. height: math.unit(1, "mile")
  19780. },
  19781. ]
  19782. ))
  19783. characterMakers.push(() => makeCharacter(
  19784. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19785. {
  19786. front: {
  19787. height: math.unit(6 + 1 / 12, "feet"),
  19788. weight: math.unit(200, "lb"),
  19789. name: "Front",
  19790. image: {
  19791. source: "./media/characters/neil/front.svg",
  19792. extra: 1326 / 1250,
  19793. bottom: 0.023
  19794. }
  19795. },
  19796. },
  19797. [
  19798. {
  19799. name: "Normal",
  19800. height: math.unit(6 + 1 / 12, "feet"),
  19801. default: true
  19802. },
  19803. {
  19804. name: "Macro",
  19805. height: math.unit(200, "feet")
  19806. },
  19807. ]
  19808. ))
  19809. characterMakers.push(() => makeCharacter(
  19810. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19811. {
  19812. front: {
  19813. height: math.unit(5 + 9 / 12, "feet"),
  19814. weight: math.unit(190, "lb"),
  19815. name: "Front",
  19816. image: {
  19817. source: "./media/characters/atticus/front.svg",
  19818. extra: 2934 / 2785,
  19819. bottom: 0.025
  19820. }
  19821. },
  19822. },
  19823. [
  19824. {
  19825. name: "Normal",
  19826. height: math.unit(5 + 9 / 12, "feet"),
  19827. default: true
  19828. },
  19829. {
  19830. name: "Macro",
  19831. height: math.unit(180, "feet")
  19832. },
  19833. ]
  19834. ))
  19835. characterMakers.push(() => makeCharacter(
  19836. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19837. {
  19838. side: {
  19839. height: math.unit(9, "feet"),
  19840. weight: math.unit(650, "lb"),
  19841. name: "Side",
  19842. image: {
  19843. source: "./media/characters/milo/side.svg",
  19844. extra: 2644 / 2310,
  19845. bottom: 0.032
  19846. }
  19847. },
  19848. },
  19849. [
  19850. {
  19851. name: "Normal",
  19852. height: math.unit(9, "feet"),
  19853. default: true
  19854. },
  19855. {
  19856. name: "Macro",
  19857. height: math.unit(300, "feet")
  19858. },
  19859. ]
  19860. ))
  19861. characterMakers.push(() => makeCharacter(
  19862. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19863. {
  19864. side: {
  19865. height: math.unit(8, "meters"),
  19866. weight: math.unit(90000, "kg"),
  19867. name: "Side",
  19868. image: {
  19869. source: "./media/characters/ijzer/side.svg",
  19870. extra: 2756 / 1600,
  19871. bottom: 0.01
  19872. }
  19873. },
  19874. },
  19875. [
  19876. {
  19877. name: "Small",
  19878. height: math.unit(3, "meters")
  19879. },
  19880. {
  19881. name: "Normal",
  19882. height: math.unit(8, "meters"),
  19883. default: true
  19884. },
  19885. {
  19886. name: "Normal+",
  19887. height: math.unit(10, "meters")
  19888. },
  19889. {
  19890. name: "Bigger",
  19891. height: math.unit(24, "meters")
  19892. },
  19893. {
  19894. name: "Huge",
  19895. height: math.unit(80, "meters")
  19896. },
  19897. ]
  19898. ))
  19899. characterMakers.push(() => makeCharacter(
  19900. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19901. {
  19902. front: {
  19903. height: math.unit(6 + 2 / 12, "feet"),
  19904. weight: math.unit(153, "lb"),
  19905. name: "Front",
  19906. image: {
  19907. source: "./media/characters/luca-cervicum/front.svg",
  19908. extra: 370 / 327,
  19909. bottom: 0.015
  19910. }
  19911. },
  19912. back: {
  19913. height: math.unit(6 + 2 / 12, "feet"),
  19914. weight: math.unit(153, "lb"),
  19915. name: "Back",
  19916. image: {
  19917. source: "./media/characters/luca-cervicum/back.svg",
  19918. extra: 367 / 333,
  19919. bottom: 0.005
  19920. }
  19921. },
  19922. frontGear: {
  19923. height: math.unit(6 + 2 / 12, "feet"),
  19924. weight: math.unit(173, "lb"),
  19925. name: "Front (Gear)",
  19926. image: {
  19927. source: "./media/characters/luca-cervicum/front-gear.svg",
  19928. extra: 377 / 333,
  19929. bottom: 0.006
  19930. }
  19931. },
  19932. },
  19933. [
  19934. {
  19935. name: "Normal",
  19936. height: math.unit(6 + 2 / 12, "feet"),
  19937. default: true
  19938. },
  19939. ]
  19940. ))
  19941. characterMakers.push(() => makeCharacter(
  19942. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19943. {
  19944. front: {
  19945. height: math.unit(6 + 1 / 12, "feet"),
  19946. weight: math.unit(304, "lb"),
  19947. name: "Front",
  19948. image: {
  19949. source: "./media/characters/oliver/front.svg",
  19950. extra: 157 / 143,
  19951. bottom: 0.08
  19952. }
  19953. },
  19954. },
  19955. [
  19956. {
  19957. name: "Normal",
  19958. height: math.unit(6 + 1 / 12, "feet"),
  19959. default: true
  19960. },
  19961. ]
  19962. ))
  19963. characterMakers.push(() => makeCharacter(
  19964. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19965. {
  19966. front: {
  19967. height: math.unit(5 + 7 / 12, "feet"),
  19968. weight: math.unit(140, "lb"),
  19969. name: "Front",
  19970. image: {
  19971. source: "./media/characters/shane/front.svg",
  19972. extra: 304 / 289,
  19973. bottom: 0.005
  19974. }
  19975. },
  19976. },
  19977. [
  19978. {
  19979. name: "Normal",
  19980. height: math.unit(5 + 7 / 12, "feet"),
  19981. default: true
  19982. },
  19983. ]
  19984. ))
  19985. characterMakers.push(() => makeCharacter(
  19986. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19987. {
  19988. front: {
  19989. height: math.unit(5 + 9 / 12, "feet"),
  19990. weight: math.unit(178, "lb"),
  19991. name: "Front",
  19992. image: {
  19993. source: "./media/characters/shin/front.svg",
  19994. extra: 159 / 151,
  19995. bottom: 0.015
  19996. }
  19997. },
  19998. },
  19999. [
  20000. {
  20001. name: "Normal",
  20002. height: math.unit(5 + 9 / 12, "feet"),
  20003. default: true
  20004. },
  20005. ]
  20006. ))
  20007. characterMakers.push(() => makeCharacter(
  20008. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20009. {
  20010. front: {
  20011. height: math.unit(5 + 10 / 12, "feet"),
  20012. weight: math.unit(168, "lb"),
  20013. name: "Front",
  20014. image: {
  20015. source: "./media/characters/xerxes/front.svg",
  20016. extra: 282 / 260,
  20017. bottom: 0.045
  20018. }
  20019. },
  20020. },
  20021. [
  20022. {
  20023. name: "Normal",
  20024. height: math.unit(5 + 10 / 12, "feet"),
  20025. default: true
  20026. },
  20027. ]
  20028. ))
  20029. characterMakers.push(() => makeCharacter(
  20030. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20031. {
  20032. front: {
  20033. height: math.unit(6 + 7 / 12, "feet"),
  20034. weight: math.unit(208, "lb"),
  20035. name: "Front",
  20036. image: {
  20037. source: "./media/characters/chaska/front.svg",
  20038. extra: 332 / 319,
  20039. bottom: 0.015
  20040. }
  20041. },
  20042. },
  20043. [
  20044. {
  20045. name: "Normal",
  20046. height: math.unit(6 + 7 / 12, "feet"),
  20047. default: true
  20048. },
  20049. ]
  20050. ))
  20051. characterMakers.push(() => makeCharacter(
  20052. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20053. {
  20054. front: {
  20055. height: math.unit(5 + 8 / 12, "feet"),
  20056. weight: math.unit(208, "lb"),
  20057. name: "Front",
  20058. image: {
  20059. source: "./media/characters/enuk/front.svg",
  20060. extra: 437 / 406,
  20061. bottom: 0.02
  20062. }
  20063. },
  20064. },
  20065. [
  20066. {
  20067. name: "Normal",
  20068. height: math.unit(5 + 8 / 12, "feet"),
  20069. default: true
  20070. },
  20071. ]
  20072. ))
  20073. characterMakers.push(() => makeCharacter(
  20074. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20075. {
  20076. front: {
  20077. height: math.unit(5 + 10 / 12, "feet"),
  20078. weight: math.unit(252, "lb"),
  20079. name: "Front",
  20080. image: {
  20081. source: "./media/characters/bruun/front.svg",
  20082. extra: 197 / 187,
  20083. bottom: 0.012
  20084. }
  20085. },
  20086. },
  20087. [
  20088. {
  20089. name: "Normal",
  20090. height: math.unit(5 + 10 / 12, "feet"),
  20091. default: true
  20092. },
  20093. ]
  20094. ))
  20095. characterMakers.push(() => makeCharacter(
  20096. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20097. {
  20098. front: {
  20099. height: math.unit(6 + 10 / 12, "feet"),
  20100. weight: math.unit(255, "lb"),
  20101. name: "Front",
  20102. image: {
  20103. source: "./media/characters/alexeev/front.svg",
  20104. extra: 213 / 200,
  20105. bottom: 0.05
  20106. }
  20107. },
  20108. },
  20109. [
  20110. {
  20111. name: "Normal",
  20112. height: math.unit(6 + 10 / 12, "feet"),
  20113. default: true
  20114. },
  20115. ]
  20116. ))
  20117. characterMakers.push(() => makeCharacter(
  20118. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20119. {
  20120. front: {
  20121. height: math.unit(2 + 8 / 12, "feet"),
  20122. weight: math.unit(22, "lb"),
  20123. name: "Front",
  20124. image: {
  20125. source: "./media/characters/evelyn/front.svg",
  20126. extra: 208 / 180
  20127. }
  20128. },
  20129. },
  20130. [
  20131. {
  20132. name: "Normal",
  20133. height: math.unit(2 + 8 / 12, "feet"),
  20134. default: true
  20135. },
  20136. ]
  20137. ))
  20138. characterMakers.push(() => makeCharacter(
  20139. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20140. {
  20141. front: {
  20142. height: math.unit(5 + 9 / 12, "feet"),
  20143. weight: math.unit(139, "lb"),
  20144. name: "Front",
  20145. image: {
  20146. source: "./media/characters/inca/front.svg",
  20147. extra: 294 / 291,
  20148. bottom: 0.03
  20149. }
  20150. },
  20151. },
  20152. [
  20153. {
  20154. name: "Normal",
  20155. height: math.unit(5 + 9 / 12, "feet"),
  20156. default: true
  20157. },
  20158. ]
  20159. ))
  20160. characterMakers.push(() => makeCharacter(
  20161. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20162. {
  20163. front: {
  20164. height: math.unit(6 + 3 / 12, "feet"),
  20165. weight: math.unit(185, "lb"),
  20166. name: "Front",
  20167. image: {
  20168. source: "./media/characters/mera/front.svg",
  20169. extra: 291 / 277,
  20170. bottom: 0.03
  20171. }
  20172. },
  20173. },
  20174. [
  20175. {
  20176. name: "Normal",
  20177. height: math.unit(6 + 3 / 12, "feet"),
  20178. default: true
  20179. },
  20180. ]
  20181. ))
  20182. characterMakers.push(() => makeCharacter(
  20183. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20184. {
  20185. front: {
  20186. height: math.unit(6 + 7 / 12, "feet"),
  20187. weight: math.unit(160, "lb"),
  20188. name: "Front",
  20189. image: {
  20190. source: "./media/characters/ceres/front.svg",
  20191. extra: 1023 / 950,
  20192. bottom: 0.027
  20193. }
  20194. },
  20195. back: {
  20196. height: math.unit(6 + 7 / 12, "feet"),
  20197. weight: math.unit(160, "lb"),
  20198. name: "Back",
  20199. image: {
  20200. source: "./media/characters/ceres/back.svg",
  20201. extra: 1023 / 950
  20202. }
  20203. },
  20204. },
  20205. [
  20206. {
  20207. name: "Normal",
  20208. height: math.unit(6 + 7 / 12, "feet"),
  20209. default: true
  20210. },
  20211. ]
  20212. ))
  20213. characterMakers.push(() => makeCharacter(
  20214. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20215. {
  20216. front: {
  20217. height: math.unit(5 + 10 / 12, "feet"),
  20218. weight: math.unit(150, "lb"),
  20219. name: "Front",
  20220. image: {
  20221. source: "./media/characters/kris/front.svg",
  20222. extra: 885 / 803,
  20223. bottom: 0.03
  20224. }
  20225. },
  20226. },
  20227. [
  20228. {
  20229. name: "Normal",
  20230. height: math.unit(5 + 10 / 12, "feet"),
  20231. default: true
  20232. },
  20233. ]
  20234. ))
  20235. characterMakers.push(() => makeCharacter(
  20236. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20237. {
  20238. front: {
  20239. height: math.unit(7, "feet"),
  20240. weight: math.unit(120, "kg"),
  20241. name: "Front",
  20242. image: {
  20243. source: "./media/characters/taluthus/front.svg",
  20244. extra: 903 / 833,
  20245. bottom: 0.015
  20246. }
  20247. },
  20248. },
  20249. [
  20250. {
  20251. name: "Normal",
  20252. height: math.unit(7, "feet"),
  20253. default: true
  20254. },
  20255. {
  20256. name: "Macro",
  20257. height: math.unit(300, "feet")
  20258. },
  20259. ]
  20260. ))
  20261. characterMakers.push(() => makeCharacter(
  20262. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20263. {
  20264. front: {
  20265. height: math.unit(5 + 9 / 12, "feet"),
  20266. weight: math.unit(145, "lb"),
  20267. name: "Front",
  20268. image: {
  20269. source: "./media/characters/dawn/front.svg",
  20270. extra: 2094 / 2016,
  20271. bottom: 0.025
  20272. }
  20273. },
  20274. back: {
  20275. height: math.unit(5 + 9 / 12, "feet"),
  20276. weight: math.unit(160, "lb"),
  20277. name: "Back",
  20278. image: {
  20279. source: "./media/characters/dawn/back.svg",
  20280. extra: 2112 / 2080,
  20281. bottom: 0.005
  20282. }
  20283. },
  20284. },
  20285. [
  20286. {
  20287. name: "Normal",
  20288. height: math.unit(6 + 7 / 12, "feet"),
  20289. default: true
  20290. },
  20291. ]
  20292. ))
  20293. characterMakers.push(() => makeCharacter(
  20294. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20295. {
  20296. anthro: {
  20297. height: math.unit(8 + 3 / 12, "feet"),
  20298. weight: math.unit(450, "lb"),
  20299. name: "Anthro",
  20300. image: {
  20301. source: "./media/characters/arador/anthro.svg",
  20302. extra: 1835 / 1718,
  20303. bottom: 0.025
  20304. }
  20305. },
  20306. feral: {
  20307. height: math.unit(4, "feet"),
  20308. weight: math.unit(200, "lb"),
  20309. name: "Feral",
  20310. image: {
  20311. source: "./media/characters/arador/feral.svg",
  20312. extra: 1683 / 1514,
  20313. bottom: 0.07
  20314. }
  20315. },
  20316. },
  20317. [
  20318. {
  20319. name: "Normal",
  20320. height: math.unit(8 + 3 / 12, "feet")
  20321. },
  20322. {
  20323. name: "Macro",
  20324. height: math.unit(82.5, "feet"),
  20325. default: true
  20326. },
  20327. ]
  20328. ))
  20329. characterMakers.push(() => makeCharacter(
  20330. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20331. {
  20332. front: {
  20333. height: math.unit(5 + 10 / 12, "feet"),
  20334. weight: math.unit(125, "lb"),
  20335. name: "Front",
  20336. image: {
  20337. source: "./media/characters/dharsi/front.svg",
  20338. extra: 716 / 630,
  20339. bottom: 0.035
  20340. }
  20341. },
  20342. },
  20343. [
  20344. {
  20345. name: "Nano",
  20346. height: math.unit(100, "nm")
  20347. },
  20348. {
  20349. name: "Micro",
  20350. height: math.unit(2, "inches")
  20351. },
  20352. {
  20353. name: "Normal",
  20354. height: math.unit(5 + 10 / 12, "feet"),
  20355. default: true
  20356. },
  20357. {
  20358. name: "Macro",
  20359. height: math.unit(1000, "feet")
  20360. },
  20361. {
  20362. name: "Megamacro",
  20363. height: math.unit(10, "miles")
  20364. },
  20365. {
  20366. name: "Gigamacro",
  20367. height: math.unit(3000, "miles")
  20368. },
  20369. {
  20370. name: "Teramacro",
  20371. height: math.unit(500000, "miles")
  20372. },
  20373. {
  20374. name: "Teramacro+",
  20375. height: math.unit(30, "galaxies")
  20376. },
  20377. ]
  20378. ))
  20379. characterMakers.push(() => makeCharacter(
  20380. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20381. {
  20382. front: {
  20383. height: math.unit(6, "feet"),
  20384. weight: math.unit(150, "lb"),
  20385. name: "Front",
  20386. image: {
  20387. source: "./media/characters/deathy/front.svg",
  20388. extra: 1552 / 1463,
  20389. bottom: 0.025
  20390. }
  20391. },
  20392. side: {
  20393. height: math.unit(6, "feet"),
  20394. weight: math.unit(150, "lb"),
  20395. name: "Side",
  20396. image: {
  20397. source: "./media/characters/deathy/side.svg",
  20398. extra: 1604 / 1455,
  20399. bottom: 0.025
  20400. }
  20401. },
  20402. back: {
  20403. height: math.unit(6, "feet"),
  20404. weight: math.unit(150, "lb"),
  20405. name: "Back",
  20406. image: {
  20407. source: "./media/characters/deathy/back.svg",
  20408. extra: 1580 / 1463,
  20409. bottom: 0.005
  20410. }
  20411. },
  20412. },
  20413. [
  20414. {
  20415. name: "Micro",
  20416. height: math.unit(5, "millimeters")
  20417. },
  20418. {
  20419. name: "Normal",
  20420. height: math.unit(6 + 5 / 12, "feet"),
  20421. default: true
  20422. },
  20423. ]
  20424. ))
  20425. characterMakers.push(() => makeCharacter(
  20426. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20427. {
  20428. front: {
  20429. height: math.unit(16, "feet"),
  20430. weight: math.unit(4000, "lb"),
  20431. name: "Front",
  20432. image: {
  20433. source: "./media/characters/juniper/front.svg",
  20434. bottom: 0.04
  20435. }
  20436. },
  20437. },
  20438. [
  20439. {
  20440. name: "Normal",
  20441. height: math.unit(16, "feet"),
  20442. default: true
  20443. },
  20444. ]
  20445. ))
  20446. characterMakers.push(() => makeCharacter(
  20447. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20448. {
  20449. front: {
  20450. height: math.unit(6, "feet"),
  20451. weight: math.unit(150, "lb"),
  20452. name: "Front",
  20453. image: {
  20454. source: "./media/characters/hipster/front.svg",
  20455. extra: 1312 / 1209,
  20456. bottom: 0.025
  20457. }
  20458. },
  20459. back: {
  20460. height: math.unit(6, "feet"),
  20461. weight: math.unit(150, "lb"),
  20462. name: "Back",
  20463. image: {
  20464. source: "./media/characters/hipster/back.svg",
  20465. extra: 1281 / 1196,
  20466. bottom: 0.01
  20467. }
  20468. },
  20469. },
  20470. [
  20471. {
  20472. name: "Micro",
  20473. height: math.unit(1, "mm")
  20474. },
  20475. {
  20476. name: "Normal",
  20477. height: math.unit(4, "inches"),
  20478. default: true
  20479. },
  20480. {
  20481. name: "Macro",
  20482. height: math.unit(500, "feet")
  20483. },
  20484. {
  20485. name: "Megamacro",
  20486. height: math.unit(1000, "miles")
  20487. },
  20488. ]
  20489. ))
  20490. characterMakers.push(() => makeCharacter(
  20491. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20492. {
  20493. front: {
  20494. height: math.unit(6, "feet"),
  20495. weight: math.unit(150, "lb"),
  20496. name: "Front",
  20497. image: {
  20498. source: "./media/characters/tendirmuldr/front.svg",
  20499. extra: 1878 / 1772,
  20500. bottom: 0.015
  20501. }
  20502. },
  20503. },
  20504. [
  20505. {
  20506. name: "Megamacro",
  20507. height: math.unit(1500, "miles"),
  20508. default: true
  20509. },
  20510. ]
  20511. ))
  20512. characterMakers.push(() => makeCharacter(
  20513. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20514. {
  20515. front: {
  20516. height: math.unit(14, "feet"),
  20517. weight: math.unit(12000, "lb"),
  20518. name: "Front",
  20519. image: {
  20520. source: "./media/characters/mort/front.svg",
  20521. extra: 365 / 318,
  20522. bottom: 0.01
  20523. }
  20524. },
  20525. side: {
  20526. height: math.unit(14, "feet"),
  20527. weight: math.unit(12000, "lb"),
  20528. name: "Side",
  20529. image: {
  20530. source: "./media/characters/mort/side.svg",
  20531. extra: 365 / 318,
  20532. bottom: 0.052
  20533. },
  20534. default: true
  20535. },
  20536. back: {
  20537. height: math.unit(14, "feet"),
  20538. weight: math.unit(12000, "lb"),
  20539. name: "Back",
  20540. image: {
  20541. source: "./media/characters/mort/back.svg",
  20542. extra: 371 / 332,
  20543. bottom: 0.18
  20544. }
  20545. },
  20546. },
  20547. [
  20548. {
  20549. name: "Normal",
  20550. height: math.unit(14, "feet"),
  20551. default: true
  20552. },
  20553. ]
  20554. ))
  20555. characterMakers.push(() => makeCharacter(
  20556. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20557. {
  20558. front: {
  20559. height: math.unit(8, "feet"),
  20560. weight: math.unit(1, "ton"),
  20561. name: "Front",
  20562. image: {
  20563. source: "./media/characters/lycoa/front.svg",
  20564. extra: 1875 / 1789,
  20565. bottom: 0.022
  20566. }
  20567. },
  20568. back: {
  20569. height: math.unit(8, "feet"),
  20570. weight: math.unit(1, "ton"),
  20571. name: "Back",
  20572. image: {
  20573. source: "./media/characters/lycoa/back.svg",
  20574. extra: 1835 / 1781,
  20575. bottom: 0.03
  20576. }
  20577. },
  20578. head: {
  20579. height: math.unit(2.1, "feet"),
  20580. name: "Head",
  20581. image: {
  20582. source: "./media/characters/lycoa/head.svg"
  20583. }
  20584. },
  20585. tailmaw: {
  20586. height: math.unit(1.9, "feet"),
  20587. name: "Tailmaw",
  20588. image: {
  20589. source: "./media/characters/lycoa/tailmaw.svg"
  20590. }
  20591. },
  20592. tentacles: {
  20593. height: math.unit(2.1, "feet"),
  20594. name: "Tentacles",
  20595. image: {
  20596. source: "./media/characters/lycoa/tentacles.svg"
  20597. }
  20598. },
  20599. dick: {
  20600. height: math.unit(1.73, "feet"),
  20601. name: "Dick",
  20602. image: {
  20603. source: "./media/characters/lycoa/dick.svg"
  20604. }
  20605. },
  20606. },
  20607. [
  20608. {
  20609. name: "Normal",
  20610. height: math.unit(8, "feet"),
  20611. default: true
  20612. },
  20613. {
  20614. name: "Macro",
  20615. height: math.unit(30, "feet")
  20616. },
  20617. ]
  20618. ))
  20619. characterMakers.push(() => makeCharacter(
  20620. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20621. {
  20622. front: {
  20623. height: math.unit(4 + 2 / 12, "feet"),
  20624. weight: math.unit(70, "lb"),
  20625. name: "Front",
  20626. image: {
  20627. source: "./media/characters/naldara/front.svg",
  20628. extra: 841 / 720,
  20629. bottom: 0.04
  20630. }
  20631. },
  20632. naga: {
  20633. height: math.unit(23, "feet"),
  20634. weight: math.unit(15000, "kg"),
  20635. name: "Naga",
  20636. image: {
  20637. source: "./media/characters/naldara/naga.svg",
  20638. extra: 3290 / 2959,
  20639. bottom: 124 / 3432
  20640. }
  20641. },
  20642. },
  20643. [
  20644. {
  20645. name: "Normal",
  20646. height: math.unit(4 + 2 / 12, "feet"),
  20647. default: true
  20648. },
  20649. ]
  20650. ))
  20651. characterMakers.push(() => makeCharacter(
  20652. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20653. {
  20654. front: {
  20655. height: math.unit(13 + 7 / 12, "feet"),
  20656. weight: math.unit(1500, "lb"),
  20657. name: "Front",
  20658. image: {
  20659. source: "./media/characters/briar/front.svg",
  20660. extra: 626 / 596,
  20661. bottom: 0.08
  20662. }
  20663. },
  20664. },
  20665. [
  20666. {
  20667. name: "Normal",
  20668. height: math.unit(13 + 7 / 12, "feet"),
  20669. default: true
  20670. },
  20671. ]
  20672. ))
  20673. characterMakers.push(() => makeCharacter(
  20674. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20675. {
  20676. side: {
  20677. height: math.unit(10, "feet"),
  20678. weight: math.unit(500, "lb"),
  20679. name: "Side",
  20680. image: {
  20681. source: "./media/characters/vanguard/side.svg",
  20682. extra: 502 / 425,
  20683. bottom: 0.087
  20684. }
  20685. },
  20686. },
  20687. [
  20688. {
  20689. name: "Normal",
  20690. height: math.unit(10, "feet"),
  20691. default: true
  20692. },
  20693. ]
  20694. ))
  20695. characterMakers.push(() => makeCharacter(
  20696. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20697. {
  20698. front: {
  20699. height: math.unit(7.5, "feet"),
  20700. weight: math.unit(2, "lb"),
  20701. name: "Front",
  20702. image: {
  20703. source: "./media/characters/artemis/front.svg",
  20704. extra: 1192 / 1075,
  20705. bottom: 0.07
  20706. }
  20707. },
  20708. frontNsfw: {
  20709. height: math.unit(7.5, "feet"),
  20710. weight: math.unit(2, "lb"),
  20711. name: "Front (NSFW)",
  20712. image: {
  20713. source: "./media/characters/artemis/front-nsfw.svg",
  20714. extra: 1192 / 1075,
  20715. bottom: 0.07
  20716. }
  20717. },
  20718. frontNsfwer: {
  20719. height: math.unit(7.5, "feet"),
  20720. weight: math.unit(2, "lb"),
  20721. name: "Front (NSFW-er)",
  20722. image: {
  20723. source: "./media/characters/artemis/front-nsfwer.svg",
  20724. extra: 1192 / 1075,
  20725. bottom: 0.07
  20726. }
  20727. },
  20728. side: {
  20729. height: math.unit(7.5, "feet"),
  20730. weight: math.unit(2, "lb"),
  20731. name: "Side",
  20732. image: {
  20733. source: "./media/characters/artemis/side.svg",
  20734. extra: 1192 / 1075,
  20735. bottom: 0.07
  20736. }
  20737. },
  20738. sideNsfw: {
  20739. height: math.unit(7.5, "feet"),
  20740. weight: math.unit(2, "lb"),
  20741. name: "Side (NSFW)",
  20742. image: {
  20743. source: "./media/characters/artemis/side-nsfw.svg",
  20744. extra: 1192 / 1075,
  20745. bottom: 0.07
  20746. }
  20747. },
  20748. sideNsfwer: {
  20749. height: math.unit(7.5, "feet"),
  20750. weight: math.unit(2, "lb"),
  20751. name: "Side (NSFW-er)",
  20752. image: {
  20753. source: "./media/characters/artemis/side-nsfwer.svg",
  20754. extra: 1192 / 1075,
  20755. bottom: 0.07
  20756. }
  20757. },
  20758. maw: {
  20759. height: math.unit(1.1, "feet"),
  20760. name: "Maw",
  20761. image: {
  20762. source: "./media/characters/artemis/maw.svg"
  20763. }
  20764. },
  20765. stomach: {
  20766. height: math.unit(0.95, "feet"),
  20767. name: "Stomach",
  20768. image: {
  20769. source: "./media/characters/artemis/stomach.svg"
  20770. }
  20771. },
  20772. dickCanine: {
  20773. height: math.unit(1, "feet"),
  20774. name: "Dick (Canine)",
  20775. image: {
  20776. source: "./media/characters/artemis/dick-canine.svg"
  20777. }
  20778. },
  20779. dickEquine: {
  20780. height: math.unit(0.85, "feet"),
  20781. name: "Dick (Equine)",
  20782. image: {
  20783. source: "./media/characters/artemis/dick-equine.svg"
  20784. }
  20785. },
  20786. dickExotic: {
  20787. height: math.unit(0.85, "feet"),
  20788. name: "Dick (Exotic)",
  20789. image: {
  20790. source: "./media/characters/artemis/dick-exotic.svg"
  20791. }
  20792. },
  20793. },
  20794. [
  20795. {
  20796. name: "Normal",
  20797. height: math.unit(7.5, "feet"),
  20798. default: true
  20799. },
  20800. {
  20801. name: "Enlarged",
  20802. height: math.unit(12, "feet")
  20803. },
  20804. ]
  20805. ))
  20806. characterMakers.push(() => makeCharacter(
  20807. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20808. {
  20809. front: {
  20810. height: math.unit(5 + 3 / 12, "feet"),
  20811. weight: math.unit(160, "lb"),
  20812. name: "Front",
  20813. image: {
  20814. source: "./media/characters/kira/front.svg",
  20815. extra: 906 / 786,
  20816. bottom: 0.01
  20817. }
  20818. },
  20819. back: {
  20820. height: math.unit(5 + 3 / 12, "feet"),
  20821. weight: math.unit(160, "lb"),
  20822. name: "Back",
  20823. image: {
  20824. source: "./media/characters/kira/back.svg",
  20825. extra: 882 / 757,
  20826. bottom: 0.005
  20827. }
  20828. },
  20829. frontDressed: {
  20830. height: math.unit(5 + 3 / 12, "feet"),
  20831. weight: math.unit(160, "lb"),
  20832. name: "Front (Dressed)",
  20833. image: {
  20834. source: "./media/characters/kira/front-dressed.svg",
  20835. extra: 906 / 786,
  20836. bottom: 0.01
  20837. }
  20838. },
  20839. beans: {
  20840. height: math.unit(0.92, "feet"),
  20841. name: "Beans",
  20842. image: {
  20843. source: "./media/characters/kira/beans.svg"
  20844. }
  20845. },
  20846. },
  20847. [
  20848. {
  20849. name: "Normal",
  20850. height: math.unit(5 + 3 / 12, "feet"),
  20851. default: true
  20852. },
  20853. ]
  20854. ))
  20855. characterMakers.push(() => makeCharacter(
  20856. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20857. {
  20858. front: {
  20859. height: math.unit(5 + 4 / 12, "feet"),
  20860. weight: math.unit(145, "lb"),
  20861. name: "Front",
  20862. image: {
  20863. source: "./media/characters/scramble/front.svg",
  20864. extra: 763 / 727,
  20865. bottom: 0.05
  20866. }
  20867. },
  20868. back: {
  20869. height: math.unit(5 + 4 / 12, "feet"),
  20870. weight: math.unit(145, "lb"),
  20871. name: "Back",
  20872. image: {
  20873. source: "./media/characters/scramble/back.svg",
  20874. extra: 826 / 737,
  20875. bottom: 0.002
  20876. }
  20877. },
  20878. },
  20879. [
  20880. {
  20881. name: "Normal",
  20882. height: math.unit(5 + 4 / 12, "feet"),
  20883. default: true
  20884. },
  20885. ]
  20886. ))
  20887. characterMakers.push(() => makeCharacter(
  20888. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20889. {
  20890. side: {
  20891. height: math.unit(6 + 2 / 12, "feet"),
  20892. weight: math.unit(190, "lb"),
  20893. name: "Side",
  20894. image: {
  20895. source: "./media/characters/biscuit/side.svg",
  20896. extra: 858 / 791,
  20897. bottom: 0.044
  20898. }
  20899. },
  20900. },
  20901. [
  20902. {
  20903. name: "Normal",
  20904. height: math.unit(6 + 2 / 12, "feet"),
  20905. default: true
  20906. },
  20907. ]
  20908. ))
  20909. characterMakers.push(() => makeCharacter(
  20910. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20911. {
  20912. front: {
  20913. height: math.unit(5 + 2 / 12, "feet"),
  20914. weight: math.unit(120, "lb"),
  20915. name: "Front",
  20916. image: {
  20917. source: "./media/characters/poffin/front.svg",
  20918. extra: 786 / 680,
  20919. bottom: 0.005
  20920. }
  20921. },
  20922. },
  20923. [
  20924. {
  20925. name: "Normal",
  20926. height: math.unit(5 + 2 / 12, "feet"),
  20927. default: true
  20928. },
  20929. ]
  20930. ))
  20931. characterMakers.push(() => makeCharacter(
  20932. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20933. {
  20934. front: {
  20935. height: math.unit(6 + 3 / 12, "feet"),
  20936. weight: math.unit(519, "lb"),
  20937. name: "Front",
  20938. image: {
  20939. source: "./media/characters/dhari/front.svg",
  20940. extra: 1048 / 946,
  20941. bottom: 0.015
  20942. }
  20943. },
  20944. back: {
  20945. height: math.unit(6 + 3 / 12, "feet"),
  20946. weight: math.unit(519, "lb"),
  20947. name: "Back",
  20948. image: {
  20949. source: "./media/characters/dhari/back.svg",
  20950. extra: 1048 / 931,
  20951. bottom: 0.005
  20952. }
  20953. },
  20954. frontDressed: {
  20955. height: math.unit(6 + 3 / 12, "feet"),
  20956. weight: math.unit(519, "lb"),
  20957. name: "Front (Dressed)",
  20958. image: {
  20959. source: "./media/characters/dhari/front-dressed.svg",
  20960. extra: 1713 / 1546,
  20961. bottom: 0.02
  20962. }
  20963. },
  20964. backDressed: {
  20965. height: math.unit(6 + 3 / 12, "feet"),
  20966. weight: math.unit(519, "lb"),
  20967. name: "Back (Dressed)",
  20968. image: {
  20969. source: "./media/characters/dhari/back-dressed.svg",
  20970. extra: 1699 / 1537,
  20971. bottom: 0.01
  20972. }
  20973. },
  20974. maw: {
  20975. height: math.unit(0.95, "feet"),
  20976. name: "Maw",
  20977. image: {
  20978. source: "./media/characters/dhari/maw.svg"
  20979. }
  20980. },
  20981. wereFront: {
  20982. height: math.unit(12 + 8 / 12, "feet"),
  20983. weight: math.unit(4000, "lb"),
  20984. name: "Front (Were)",
  20985. image: {
  20986. source: "./media/characters/dhari/were-front.svg",
  20987. extra: 1065 / 969,
  20988. bottom: 0.015
  20989. }
  20990. },
  20991. wereBack: {
  20992. height: math.unit(12 + 8 / 12, "feet"),
  20993. weight: math.unit(4000, "lb"),
  20994. name: "Back (Were)",
  20995. image: {
  20996. source: "./media/characters/dhari/were-back.svg",
  20997. extra: 1065 / 969,
  20998. bottom: 0.012
  20999. }
  21000. },
  21001. wereMaw: {
  21002. height: math.unit(0.625, "meters"),
  21003. name: "Maw (Were)",
  21004. image: {
  21005. source: "./media/characters/dhari/were-maw.svg"
  21006. }
  21007. },
  21008. },
  21009. [
  21010. {
  21011. name: "Normal",
  21012. height: math.unit(6 + 3 / 12, "feet"),
  21013. default: true
  21014. },
  21015. ]
  21016. ))
  21017. characterMakers.push(() => makeCharacter(
  21018. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21019. {
  21020. anthro: {
  21021. height: math.unit(5 + 7 / 12, "feet"),
  21022. weight: math.unit(175, "lb"),
  21023. name: "Anthro",
  21024. image: {
  21025. source: "./media/characters/rena-dyne/anthro.svg",
  21026. extra: 1849 / 1785,
  21027. bottom: 0.005
  21028. }
  21029. },
  21030. taur: {
  21031. height: math.unit(15 + 6 / 12, "feet"),
  21032. weight: math.unit(8000, "lb"),
  21033. name: "Taur",
  21034. image: {
  21035. source: "./media/characters/rena-dyne/taur.svg",
  21036. extra: 2315 / 2234,
  21037. bottom: 0.033
  21038. }
  21039. },
  21040. },
  21041. [
  21042. {
  21043. name: "Normal",
  21044. height: math.unit(5 + 7 / 12, "feet"),
  21045. default: true
  21046. },
  21047. ]
  21048. ))
  21049. characterMakers.push(() => makeCharacter(
  21050. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21051. {
  21052. front: {
  21053. height: math.unit(8, "feet"),
  21054. weight: math.unit(600, "lb"),
  21055. name: "Front",
  21056. image: {
  21057. source: "./media/characters/weremeep/front.svg",
  21058. extra: 967 / 862,
  21059. bottom: 0.01
  21060. }
  21061. },
  21062. },
  21063. [
  21064. {
  21065. name: "Normal",
  21066. height: math.unit(8, "feet"),
  21067. default: true
  21068. },
  21069. {
  21070. name: "Lorg",
  21071. height: math.unit(12, "feet")
  21072. },
  21073. {
  21074. name: "Oh Lawd She Comin'",
  21075. height: math.unit(20, "feet")
  21076. },
  21077. ]
  21078. ))
  21079. characterMakers.push(() => makeCharacter(
  21080. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21081. {
  21082. front: {
  21083. height: math.unit(4, "feet"),
  21084. weight: math.unit(90, "lb"),
  21085. name: "Front",
  21086. image: {
  21087. source: "./media/characters/reza/front.svg",
  21088. extra: 1183 / 1111,
  21089. bottom: 0.017
  21090. }
  21091. },
  21092. back: {
  21093. height: math.unit(4, "feet"),
  21094. weight: math.unit(90, "lb"),
  21095. name: "Back",
  21096. image: {
  21097. source: "./media/characters/reza/back.svg",
  21098. extra: 1183 / 1111,
  21099. bottom: 0.01
  21100. }
  21101. },
  21102. drake: {
  21103. height: math.unit(30, "feet"),
  21104. weight: math.unit(246960, "lb"),
  21105. name: "Drake",
  21106. image: {
  21107. source: "./media/characters/reza/drake.svg",
  21108. extra: 2350 / 2024,
  21109. bottom: 60.7 / 2403
  21110. }
  21111. },
  21112. },
  21113. [
  21114. {
  21115. name: "Normal",
  21116. height: math.unit(4, "feet"),
  21117. default: true
  21118. },
  21119. ]
  21120. ))
  21121. characterMakers.push(() => makeCharacter(
  21122. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21123. {
  21124. side: {
  21125. height: math.unit(15, "feet"),
  21126. weight: math.unit(14, "tons"),
  21127. name: "Side",
  21128. image: {
  21129. source: "./media/characters/athea/side.svg",
  21130. extra: 960 / 540,
  21131. bottom: 0.003
  21132. }
  21133. },
  21134. sitting: {
  21135. height: math.unit(6 * 2.85, "feet"),
  21136. weight: math.unit(14, "tons"),
  21137. name: "Sitting",
  21138. image: {
  21139. source: "./media/characters/athea/sitting.svg",
  21140. extra: 621 / 581,
  21141. bottom: 0.075
  21142. }
  21143. },
  21144. maw: {
  21145. height: math.unit(7.59498031496063, "feet"),
  21146. name: "Maw",
  21147. image: {
  21148. source: "./media/characters/athea/maw.svg"
  21149. }
  21150. },
  21151. },
  21152. [
  21153. {
  21154. name: "Lap Cat",
  21155. height: math.unit(2.5, "feet")
  21156. },
  21157. {
  21158. name: "Minimacro",
  21159. height: math.unit(15, "feet"),
  21160. default: true
  21161. },
  21162. {
  21163. name: "Macro",
  21164. height: math.unit(120, "feet")
  21165. },
  21166. {
  21167. name: "Macro+",
  21168. height: math.unit(640, "feet")
  21169. },
  21170. {
  21171. name: "Colossus",
  21172. height: math.unit(2.2, "miles")
  21173. },
  21174. ]
  21175. ))
  21176. characterMakers.push(() => makeCharacter(
  21177. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21178. {
  21179. front: {
  21180. height: math.unit(8 + 8 / 12, "feet"),
  21181. weight: math.unit(130, "kg"),
  21182. name: "Front",
  21183. image: {
  21184. source: "./media/characters/seroko/front.svg",
  21185. extra: 1385 / 1280,
  21186. bottom: 0.025
  21187. }
  21188. },
  21189. back: {
  21190. height: math.unit(8 + 8 / 12, "feet"),
  21191. weight: math.unit(130, "kg"),
  21192. name: "Back",
  21193. image: {
  21194. source: "./media/characters/seroko/back.svg",
  21195. extra: 1369 / 1238,
  21196. bottom: 0.018
  21197. }
  21198. },
  21199. frontDressed: {
  21200. height: math.unit(8 + 8 / 12, "feet"),
  21201. weight: math.unit(130, "kg"),
  21202. name: "Front (Dressed)",
  21203. image: {
  21204. source: "./media/characters/seroko/front-dressed.svg",
  21205. extra: 1366 / 1275,
  21206. bottom: 0.03
  21207. }
  21208. },
  21209. },
  21210. [
  21211. {
  21212. name: "Normal",
  21213. height: math.unit(8 + 8 / 12, "feet"),
  21214. default: true
  21215. },
  21216. ]
  21217. ))
  21218. characterMakers.push(() => makeCharacter(
  21219. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21220. {
  21221. front: {
  21222. height: math.unit(5.5, "feet"),
  21223. weight: math.unit(160, "lb"),
  21224. name: "Front",
  21225. image: {
  21226. source: "./media/characters/quatzi/front.svg",
  21227. extra: 2346 / 2242,
  21228. bottom: 0.015
  21229. }
  21230. },
  21231. },
  21232. [
  21233. {
  21234. name: "Normal",
  21235. height: math.unit(5.5, "feet"),
  21236. default: true
  21237. },
  21238. {
  21239. name: "Big",
  21240. height: math.unit(7.7, "feet")
  21241. },
  21242. ]
  21243. ))
  21244. characterMakers.push(() => makeCharacter(
  21245. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21246. {
  21247. front: {
  21248. height: math.unit(5 + 11 / 12, "feet"),
  21249. weight: math.unit(180, "lb"),
  21250. name: "Front",
  21251. image: {
  21252. source: "./media/characters/sen/front.svg",
  21253. extra: 1321 / 1254,
  21254. bottom: 0.015
  21255. }
  21256. },
  21257. side: {
  21258. height: math.unit(5 + 11 / 12, "feet"),
  21259. weight: math.unit(180, "lb"),
  21260. name: "Side",
  21261. image: {
  21262. source: "./media/characters/sen/side.svg",
  21263. extra: 1321 / 1254,
  21264. bottom: 0.007
  21265. }
  21266. },
  21267. back: {
  21268. height: math.unit(5 + 11 / 12, "feet"),
  21269. weight: math.unit(180, "lb"),
  21270. name: "Back",
  21271. image: {
  21272. source: "./media/characters/sen/back.svg",
  21273. extra: 1321 / 1254
  21274. }
  21275. },
  21276. },
  21277. [
  21278. {
  21279. name: "Normal",
  21280. height: math.unit(5 + 11 / 12, "feet"),
  21281. default: true
  21282. },
  21283. ]
  21284. ))
  21285. characterMakers.push(() => makeCharacter(
  21286. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21287. {
  21288. front: {
  21289. height: math.unit(166.6, "cm"),
  21290. weight: math.unit(66.6, "kg"),
  21291. name: "Front",
  21292. image: {
  21293. source: "./media/characters/fruity/front.svg",
  21294. extra: 1510 / 1386,
  21295. bottom: 0.04
  21296. }
  21297. },
  21298. back: {
  21299. height: math.unit(166.6, "cm"),
  21300. weight: math.unit(66.6, "lb"),
  21301. name: "Back",
  21302. image: {
  21303. source: "./media/characters/fruity/back.svg",
  21304. extra: 1563 / 1435,
  21305. bottom: 0.005
  21306. }
  21307. },
  21308. },
  21309. [
  21310. {
  21311. name: "Normal",
  21312. height: math.unit(166.6, "cm"),
  21313. default: true
  21314. },
  21315. {
  21316. name: "Demonic",
  21317. height: math.unit(166.6, "feet")
  21318. },
  21319. ]
  21320. ))
  21321. characterMakers.push(() => makeCharacter(
  21322. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21323. {
  21324. side: {
  21325. height: math.unit(10, "feet"),
  21326. weight: math.unit(500, "lb"),
  21327. name: "Side",
  21328. image: {
  21329. source: "./media/characters/zost/side.svg",
  21330. extra: 966 / 880,
  21331. bottom: 0.075
  21332. }
  21333. },
  21334. mawFront: {
  21335. height: math.unit(1.08, "meters"),
  21336. name: "Maw (Front)",
  21337. image: {
  21338. source: "./media/characters/zost/maw-front.svg"
  21339. }
  21340. },
  21341. mawSide: {
  21342. height: math.unit(2.66, "feet"),
  21343. name: "Maw (Side)",
  21344. image: {
  21345. source: "./media/characters/zost/maw-side.svg"
  21346. }
  21347. },
  21348. },
  21349. [
  21350. {
  21351. name: "Normal",
  21352. height: math.unit(10, "feet"),
  21353. default: true
  21354. },
  21355. ]
  21356. ))
  21357. characterMakers.push(() => makeCharacter(
  21358. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21359. {
  21360. front: {
  21361. height: math.unit(5 + 4 / 12, "feet"),
  21362. weight: math.unit(120, "lb"),
  21363. name: "Front",
  21364. image: {
  21365. source: "./media/characters/luci/front.svg",
  21366. extra: 1985 / 1884,
  21367. bottom: 0.04
  21368. }
  21369. },
  21370. back: {
  21371. height: math.unit(5 + 4 / 12, "feet"),
  21372. weight: math.unit(120, "lb"),
  21373. name: "Back",
  21374. image: {
  21375. source: "./media/characters/luci/back.svg",
  21376. extra: 1892 / 1791,
  21377. bottom: 0.002
  21378. }
  21379. },
  21380. },
  21381. [
  21382. {
  21383. name: "Normal",
  21384. height: math.unit(5 + 4 / 12, "feet"),
  21385. default: true
  21386. },
  21387. ]
  21388. ))
  21389. characterMakers.push(() => makeCharacter(
  21390. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21391. {
  21392. front: {
  21393. height: math.unit(1500, "feet"),
  21394. weight: math.unit(3.8e6, "tons"),
  21395. name: "Front",
  21396. image: {
  21397. source: "./media/characters/2th/front.svg",
  21398. extra: 3489 / 3350,
  21399. bottom: 0.1
  21400. }
  21401. },
  21402. foot: {
  21403. height: math.unit(461, "feet"),
  21404. name: "Foot",
  21405. image: {
  21406. source: "./media/characters/2th/foot.svg"
  21407. }
  21408. },
  21409. },
  21410. [
  21411. {
  21412. name: "\"Micro\"",
  21413. height: math.unit(15 + 7 / 12, "feet")
  21414. },
  21415. {
  21416. name: "Normal",
  21417. height: math.unit(1500, "feet"),
  21418. default: true
  21419. },
  21420. {
  21421. name: "Macro",
  21422. height: math.unit(5000, "feet")
  21423. },
  21424. {
  21425. name: "Megamacro",
  21426. height: math.unit(15, "miles")
  21427. },
  21428. {
  21429. name: "Gigamacro",
  21430. height: math.unit(4000, "miles")
  21431. },
  21432. {
  21433. name: "Galactic",
  21434. height: math.unit(50, "AU")
  21435. },
  21436. ]
  21437. ))
  21438. characterMakers.push(() => makeCharacter(
  21439. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21440. {
  21441. front: {
  21442. height: math.unit(5 + 6 / 12, "feet"),
  21443. weight: math.unit(220, "lb"),
  21444. name: "Front",
  21445. image: {
  21446. source: "./media/characters/amethyst/front.svg",
  21447. extra: 2078 / 2040,
  21448. bottom: 0.045
  21449. }
  21450. },
  21451. back: {
  21452. height: math.unit(5 + 6 / 12, "feet"),
  21453. weight: math.unit(220, "lb"),
  21454. name: "Back",
  21455. image: {
  21456. source: "./media/characters/amethyst/back.svg",
  21457. extra: 2021 / 1989,
  21458. bottom: 0.02
  21459. }
  21460. },
  21461. },
  21462. [
  21463. {
  21464. name: "Normal",
  21465. height: math.unit(5 + 6 / 12, "feet"),
  21466. default: true
  21467. },
  21468. ]
  21469. ))
  21470. characterMakers.push(() => makeCharacter(
  21471. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21472. {
  21473. front: {
  21474. height: math.unit(4 + 11 / 12, "feet"),
  21475. weight: math.unit(120, "lb"),
  21476. name: "Front",
  21477. image: {
  21478. source: "./media/characters/yumi-akiyama/front.svg",
  21479. extra: 1327 / 1235,
  21480. bottom: 0.02
  21481. }
  21482. },
  21483. back: {
  21484. height: math.unit(4 + 11 / 12, "feet"),
  21485. weight: math.unit(120, "lb"),
  21486. name: "Back",
  21487. image: {
  21488. source: "./media/characters/yumi-akiyama/back.svg",
  21489. extra: 1287 / 1245,
  21490. bottom: 0.002
  21491. }
  21492. },
  21493. },
  21494. [
  21495. {
  21496. name: "Galactic",
  21497. height: math.unit(50, "galaxies"),
  21498. default: true
  21499. },
  21500. {
  21501. name: "Universal",
  21502. height: math.unit(100, "universes")
  21503. },
  21504. ]
  21505. ))
  21506. characterMakers.push(() => makeCharacter(
  21507. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21508. {
  21509. front: {
  21510. height: math.unit(8, "feet"),
  21511. weight: math.unit(500, "lb"),
  21512. name: "Front",
  21513. image: {
  21514. source: "./media/characters/rifter-yrmori/front.svg",
  21515. extra: 1180 / 1125,
  21516. bottom: 0.02
  21517. }
  21518. },
  21519. back: {
  21520. height: math.unit(8, "feet"),
  21521. weight: math.unit(500, "lb"),
  21522. name: "Back",
  21523. image: {
  21524. source: "./media/characters/rifter-yrmori/back.svg",
  21525. extra: 1190 / 1145,
  21526. bottom: 0.001
  21527. }
  21528. },
  21529. wings: {
  21530. height: math.unit(7.75, "feet"),
  21531. weight: math.unit(500, "lb"),
  21532. name: "Wings",
  21533. image: {
  21534. source: "./media/characters/rifter-yrmori/wings.svg",
  21535. extra: 1357 / 1285
  21536. }
  21537. },
  21538. maw: {
  21539. height: math.unit(0.8, "feet"),
  21540. name: "Maw",
  21541. image: {
  21542. source: "./media/characters/rifter-yrmori/maw.svg"
  21543. }
  21544. },
  21545. mawfront: {
  21546. height: math.unit(1.45, "feet"),
  21547. name: "Maw (Front)",
  21548. image: {
  21549. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21550. }
  21551. },
  21552. },
  21553. [
  21554. {
  21555. name: "Normal",
  21556. height: math.unit(8, "feet"),
  21557. default: true
  21558. },
  21559. {
  21560. name: "Macro",
  21561. height: math.unit(42, "meters")
  21562. },
  21563. ]
  21564. ))
  21565. characterMakers.push(() => makeCharacter(
  21566. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21567. {
  21568. were: {
  21569. height: math.unit(25 + 6 / 12, "feet"),
  21570. weight: math.unit(10000, "lb"),
  21571. name: "Were",
  21572. image: {
  21573. source: "./media/characters/tahajin/were.svg",
  21574. extra: 801 / 770,
  21575. bottom: 0.042
  21576. }
  21577. },
  21578. aquatic: {
  21579. height: math.unit(6 + 4 / 12, "feet"),
  21580. weight: math.unit(160, "lb"),
  21581. name: "Aquatic",
  21582. image: {
  21583. source: "./media/characters/tahajin/aquatic.svg",
  21584. extra: 572 / 542,
  21585. bottom: 0.04
  21586. }
  21587. },
  21588. chow: {
  21589. height: math.unit(8 + 11 / 12, "feet"),
  21590. weight: math.unit(450, "lb"),
  21591. name: "Chow",
  21592. image: {
  21593. source: "./media/characters/tahajin/chow.svg",
  21594. extra: 660 / 640,
  21595. bottom: 0.015
  21596. }
  21597. },
  21598. demiNaga: {
  21599. height: math.unit(6 + 8 / 12, "feet"),
  21600. weight: math.unit(300, "lb"),
  21601. name: "Demi Naga",
  21602. image: {
  21603. source: "./media/characters/tahajin/demi-naga.svg",
  21604. extra: 643 / 615,
  21605. bottom: 0.1
  21606. }
  21607. },
  21608. data: {
  21609. height: math.unit(5, "inches"),
  21610. weight: math.unit(0.1, "lb"),
  21611. name: "Data",
  21612. image: {
  21613. source: "./media/characters/tahajin/data.svg"
  21614. }
  21615. },
  21616. fluu: {
  21617. height: math.unit(5 + 7 / 12, "feet"),
  21618. weight: math.unit(140, "lb"),
  21619. name: "Fluu",
  21620. image: {
  21621. source: "./media/characters/tahajin/fluu.svg",
  21622. extra: 628 / 592,
  21623. bottom: 0.02
  21624. }
  21625. },
  21626. starWarrior: {
  21627. height: math.unit(4 + 5 / 12, "feet"),
  21628. weight: math.unit(50, "lb"),
  21629. name: "Star Warrior",
  21630. image: {
  21631. source: "./media/characters/tahajin/star-warrior.svg"
  21632. }
  21633. },
  21634. },
  21635. [
  21636. {
  21637. name: "Normal",
  21638. height: math.unit(25 + 6 / 12, "feet"),
  21639. default: true
  21640. },
  21641. ]
  21642. ))
  21643. characterMakers.push(() => makeCharacter(
  21644. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21645. {
  21646. front: {
  21647. height: math.unit(8, "feet"),
  21648. weight: math.unit(350, "lb"),
  21649. name: "Front",
  21650. image: {
  21651. source: "./media/characters/gabira/front.svg",
  21652. extra: 608 / 580,
  21653. bottom: 0.03
  21654. }
  21655. },
  21656. back: {
  21657. height: math.unit(8, "feet"),
  21658. weight: math.unit(350, "lb"),
  21659. name: "Back",
  21660. image: {
  21661. source: "./media/characters/gabira/back.svg",
  21662. extra: 608 / 580,
  21663. bottom: 0.03
  21664. }
  21665. },
  21666. },
  21667. [
  21668. {
  21669. name: "Normal",
  21670. height: math.unit(8, "feet"),
  21671. default: true
  21672. },
  21673. ]
  21674. ))
  21675. characterMakers.push(() => makeCharacter(
  21676. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21677. {
  21678. front: {
  21679. height: math.unit(5 + 3 / 12, "feet"),
  21680. weight: math.unit(137, "lb"),
  21681. name: "Front",
  21682. image: {
  21683. source: "./media/characters/sasha-katraine/front.svg",
  21684. bottom: 0.045
  21685. }
  21686. },
  21687. },
  21688. [
  21689. {
  21690. name: "Micro",
  21691. height: math.unit(5, "inches")
  21692. },
  21693. {
  21694. name: "Normal",
  21695. height: math.unit(5 + 3 / 12, "feet"),
  21696. default: true
  21697. },
  21698. ]
  21699. ))
  21700. characterMakers.push(() => makeCharacter(
  21701. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21702. {
  21703. side: {
  21704. height: math.unit(4, "inches"),
  21705. weight: math.unit(200, "grams"),
  21706. name: "Side",
  21707. image: {
  21708. source: "./media/characters/der/side.svg",
  21709. extra: 719 / 400,
  21710. bottom: 30.6 / 749.9187
  21711. }
  21712. },
  21713. },
  21714. [
  21715. {
  21716. name: "Micro",
  21717. height: math.unit(4, "inches"),
  21718. default: true
  21719. },
  21720. ]
  21721. ))
  21722. characterMakers.push(() => makeCharacter(
  21723. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21724. {
  21725. side: {
  21726. height: math.unit(30, "meters"),
  21727. weight: math.unit(700, "tonnes"),
  21728. name: "Side",
  21729. image: {
  21730. source: "./media/characters/fixerdragon/side.svg",
  21731. extra: (1293.0514 - 116.03) / 1106.86,
  21732. bottom: 116.03 / 1293.0514
  21733. }
  21734. },
  21735. },
  21736. [
  21737. {
  21738. name: "Planck",
  21739. height: math.unit(1.6e-35, "meters")
  21740. },
  21741. {
  21742. name: "Micro",
  21743. height: math.unit(0.4, "meters")
  21744. },
  21745. {
  21746. name: "Normal",
  21747. height: math.unit(30, "meters"),
  21748. default: true
  21749. },
  21750. {
  21751. name: "Megamacro",
  21752. height: math.unit(1.2, "megameters")
  21753. },
  21754. {
  21755. name: "Teramacro",
  21756. height: math.unit(130, "terameters")
  21757. },
  21758. {
  21759. name: "Yottamacro",
  21760. height: math.unit(6200, "yottameters")
  21761. },
  21762. ]
  21763. ));
  21764. characterMakers.push(() => makeCharacter(
  21765. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21766. {
  21767. front: {
  21768. height: math.unit(8, "feet"),
  21769. weight: math.unit(250, "lb"),
  21770. name: "Front",
  21771. image: {
  21772. source: "./media/characters/kite/front.svg",
  21773. extra: 2796 / 2659,
  21774. bottom: 0.002
  21775. }
  21776. },
  21777. },
  21778. [
  21779. {
  21780. name: "Normal",
  21781. height: math.unit(8, "feet"),
  21782. default: true
  21783. },
  21784. {
  21785. name: "Macro",
  21786. height: math.unit(360, "feet")
  21787. },
  21788. {
  21789. name: "Megamacro",
  21790. height: math.unit(1500, "feet")
  21791. },
  21792. ]
  21793. ))
  21794. characterMakers.push(() => makeCharacter(
  21795. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21796. {
  21797. front: {
  21798. height: math.unit(5 + 11/12, "feet"),
  21799. weight: math.unit(170, "lb"),
  21800. name: "Front",
  21801. image: {
  21802. source: "./media/characters/poojawa-vynar/front.svg",
  21803. extra: 1735/1585,
  21804. bottom: 96/1831
  21805. }
  21806. },
  21807. back: {
  21808. height: math.unit(5 + 11/12, "feet"),
  21809. weight: math.unit(170, "lb"),
  21810. name: "Back",
  21811. image: {
  21812. source: "./media/characters/poojawa-vynar/back.svg",
  21813. extra: 1749/1607,
  21814. bottom: 28/1777
  21815. }
  21816. },
  21817. male: {
  21818. height: math.unit(5 + 11/12, "feet"),
  21819. weight: math.unit(170, "lb"),
  21820. name: "Male",
  21821. image: {
  21822. source: "./media/characters/poojawa-vynar/male.svg",
  21823. extra: 1855/1713,
  21824. bottom: 63/1918
  21825. }
  21826. },
  21827. taur: {
  21828. height: math.unit(5 + 11/12, "feet"),
  21829. weight: math.unit(170, "lb"),
  21830. name: "Taur",
  21831. image: {
  21832. source: "./media/characters/poojawa-vynar/taur.svg",
  21833. extra: 1151/1059,
  21834. bottom: 356/1507
  21835. }
  21836. },
  21837. frontDressed: {
  21838. height: math.unit(5 + 11/12, "feet"),
  21839. weight: math.unit(170, "lb"),
  21840. name: "Front (Dressed)",
  21841. image: {
  21842. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  21843. extra: 1735/1585,
  21844. bottom: 96/1831
  21845. }
  21846. },
  21847. backDressed: {
  21848. height: math.unit(5 + 11/12, "feet"),
  21849. weight: math.unit(170, "lb"),
  21850. name: "Back (Dressed)",
  21851. image: {
  21852. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  21853. extra: 1749/1607,
  21854. bottom: 28/1777
  21855. }
  21856. },
  21857. maleDressed: {
  21858. height: math.unit(5 + 11/12, "feet"),
  21859. weight: math.unit(170, "lb"),
  21860. name: "Male (Dressed)",
  21861. image: {
  21862. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  21863. extra: 1855/1713,
  21864. bottom: 63/1918
  21865. }
  21866. },
  21867. taurDressed: {
  21868. height: math.unit(5 + 11/12, "feet"),
  21869. weight: math.unit(170, "lb"),
  21870. name: "Taur (Dressed)",
  21871. image: {
  21872. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  21873. extra: 1151/1059,
  21874. bottom: 356/1507
  21875. }
  21876. },
  21877. maw: {
  21878. height: math.unit(1.46, "feet"),
  21879. name: "Maw",
  21880. image: {
  21881. source: "./media/characters/poojawa-vynar/maw.svg"
  21882. }
  21883. },
  21884. head: {
  21885. height: math.unit(2.34, "feet"),
  21886. name: "Head",
  21887. image: {
  21888. source: "./media/characters/poojawa-vynar/head.svg"
  21889. }
  21890. },
  21891. paw: {
  21892. height: math.unit(1.61, "feet"),
  21893. name: "Paw",
  21894. image: {
  21895. source: "./media/characters/poojawa-vynar/paw.svg"
  21896. }
  21897. },
  21898. pawToering: {
  21899. height: math.unit(1.72, "feet"),
  21900. name: "Paw (Toering)",
  21901. image: {
  21902. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  21903. }
  21904. },
  21905. toering: {
  21906. height: math.unit(2.9, "inches"),
  21907. name: "Toering",
  21908. image: {
  21909. source: "./media/characters/poojawa-vynar/toering.svg"
  21910. }
  21911. },
  21912. shaft: {
  21913. height: math.unit(0.625, "feet"),
  21914. name: "Shaft",
  21915. image: {
  21916. source: "./media/characters/poojawa-vynar/shaft.svg"
  21917. }
  21918. },
  21919. spade: {
  21920. height: math.unit(0.42, "feet"),
  21921. name: "Spade",
  21922. image: {
  21923. source: "./media/characters/poojawa-vynar/spade.svg"
  21924. }
  21925. },
  21926. },
  21927. [
  21928. {
  21929. name: "Shortstack",
  21930. height: math.unit(4, "feet")
  21931. },
  21932. {
  21933. name: "Normal",
  21934. height: math.unit(5 + 11 / 12, "feet"),
  21935. default: true
  21936. },
  21937. {
  21938. name: "Tauric",
  21939. height: math.unit(4, "meters")
  21940. },
  21941. ]
  21942. ))
  21943. characterMakers.push(() => makeCharacter(
  21944. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21945. {
  21946. front: {
  21947. height: math.unit(293, "meters"),
  21948. weight: math.unit(70400, "tons"),
  21949. name: "Front",
  21950. image: {
  21951. source: "./media/characters/violette/front.svg",
  21952. extra: 1227 / 1180,
  21953. bottom: 0.005
  21954. }
  21955. },
  21956. back: {
  21957. height: math.unit(293, "meters"),
  21958. weight: math.unit(70400, "tons"),
  21959. name: "Back",
  21960. image: {
  21961. source: "./media/characters/violette/back.svg",
  21962. extra: 1227 / 1180,
  21963. bottom: 0.005
  21964. }
  21965. },
  21966. },
  21967. [
  21968. {
  21969. name: "Macro",
  21970. height: math.unit(293, "meters"),
  21971. default: true
  21972. },
  21973. ]
  21974. ))
  21975. characterMakers.push(() => makeCharacter(
  21976. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21977. {
  21978. front: {
  21979. height: math.unit(1050, "feet"),
  21980. weight: math.unit(200000, "tons"),
  21981. name: "Front",
  21982. image: {
  21983. source: "./media/characters/alessandra/front.svg",
  21984. extra: 960 / 912,
  21985. bottom: 0.06
  21986. }
  21987. },
  21988. },
  21989. [
  21990. {
  21991. name: "Macro",
  21992. height: math.unit(1050, "feet")
  21993. },
  21994. {
  21995. name: "Macro+",
  21996. height: math.unit(900, "meters"),
  21997. default: true
  21998. },
  21999. ]
  22000. ))
  22001. characterMakers.push(() => makeCharacter(
  22002. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22003. {
  22004. front: {
  22005. height: math.unit(5, "feet"),
  22006. weight: math.unit(187, "lb"),
  22007. name: "Front",
  22008. image: {
  22009. source: "./media/characters/person/front.svg",
  22010. extra: 3087 / 2945,
  22011. bottom: 91 / 3181
  22012. }
  22013. },
  22014. },
  22015. [
  22016. {
  22017. name: "Micro",
  22018. height: math.unit(3, "inches")
  22019. },
  22020. {
  22021. name: "Normal",
  22022. height: math.unit(5, "feet"),
  22023. default: true
  22024. },
  22025. {
  22026. name: "Macro",
  22027. height: math.unit(90, "feet")
  22028. },
  22029. {
  22030. name: "Max Size",
  22031. height: math.unit(280, "feet")
  22032. },
  22033. ]
  22034. ))
  22035. characterMakers.push(() => makeCharacter(
  22036. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22037. {
  22038. front: {
  22039. height: math.unit(4.5, "meters"),
  22040. weight: math.unit(3200, "lb"),
  22041. name: "Front",
  22042. image: {
  22043. source: "./media/characters/ty/front.svg",
  22044. extra: 1038 / 960,
  22045. bottom: 31.156 / 1068
  22046. }
  22047. },
  22048. back: {
  22049. height: math.unit(4.5, "meters"),
  22050. weight: math.unit(3200, "lb"),
  22051. name: "Back",
  22052. image: {
  22053. source: "./media/characters/ty/back.svg",
  22054. extra: 1044 / 966,
  22055. bottom: 7.48 / 1049
  22056. }
  22057. },
  22058. },
  22059. [
  22060. {
  22061. name: "Normal",
  22062. height: math.unit(4.5, "meters"),
  22063. default: true
  22064. },
  22065. ]
  22066. ))
  22067. characterMakers.push(() => makeCharacter(
  22068. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22069. {
  22070. front: {
  22071. height: math.unit(5 + 4 / 12, "feet"),
  22072. weight: math.unit(115, "lb"),
  22073. name: "Front",
  22074. image: {
  22075. source: "./media/characters/rocky/front.svg",
  22076. extra: 1012 / 975,
  22077. bottom: 54 / 1066
  22078. }
  22079. },
  22080. },
  22081. [
  22082. {
  22083. name: "Normal",
  22084. height: math.unit(5 + 4 / 12, "feet"),
  22085. default: true
  22086. },
  22087. ]
  22088. ))
  22089. characterMakers.push(() => makeCharacter(
  22090. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22091. {
  22092. upright: {
  22093. height: math.unit(6, "meters"),
  22094. weight: math.unit(4000, "kg"),
  22095. name: "Upright",
  22096. image: {
  22097. source: "./media/characters/ruin/upright.svg",
  22098. extra: 668 / 661,
  22099. bottom: 42 / 799.8396
  22100. }
  22101. },
  22102. },
  22103. [
  22104. {
  22105. name: "Normal",
  22106. height: math.unit(6, "meters"),
  22107. default: true
  22108. },
  22109. ]
  22110. ))
  22111. characterMakers.push(() => makeCharacter(
  22112. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22113. {
  22114. front: {
  22115. height: math.unit(5, "feet"),
  22116. weight: math.unit(106, "lb"),
  22117. name: "Front",
  22118. image: {
  22119. source: "./media/characters/robin/front.svg",
  22120. extra: 862 / 799,
  22121. bottom: 42.4 / 914.8856
  22122. }
  22123. },
  22124. },
  22125. [
  22126. {
  22127. name: "Normal",
  22128. height: math.unit(5, "feet"),
  22129. default: true
  22130. },
  22131. ]
  22132. ))
  22133. characterMakers.push(() => makeCharacter(
  22134. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22135. {
  22136. side: {
  22137. height: math.unit(3, "feet"),
  22138. weight: math.unit(225, "lb"),
  22139. name: "Side",
  22140. image: {
  22141. source: "./media/characters/saian/side.svg",
  22142. extra: 566 / 356,
  22143. bottom: 79.7 / 643
  22144. }
  22145. },
  22146. maw: {
  22147. height: math.unit(2.85, "feet"),
  22148. name: "Maw",
  22149. image: {
  22150. source: "./media/characters/saian/maw.svg"
  22151. }
  22152. },
  22153. },
  22154. [
  22155. {
  22156. name: "Normal",
  22157. height: math.unit(3, "feet"),
  22158. default: true
  22159. },
  22160. ]
  22161. ))
  22162. characterMakers.push(() => makeCharacter(
  22163. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22164. {
  22165. side: {
  22166. height: math.unit(8, "feet"),
  22167. weight: math.unit(300, "lb"),
  22168. name: "Side",
  22169. image: {
  22170. source: "./media/characters/equus-silvermane/side.svg",
  22171. extra: 2176 / 2050,
  22172. bottom: 65.7 / 2245
  22173. }
  22174. },
  22175. front: {
  22176. height: math.unit(8, "feet"),
  22177. weight: math.unit(300, "lb"),
  22178. name: "Front",
  22179. image: {
  22180. source: "./media/characters/equus-silvermane/front.svg",
  22181. extra: 4633 / 4400,
  22182. bottom: 71.3 / 4706.915
  22183. }
  22184. },
  22185. sideStepping: {
  22186. height: math.unit(8, "feet"),
  22187. weight: math.unit(300, "lb"),
  22188. name: "Side (Stepping)",
  22189. image: {
  22190. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22191. extra: 1968 / 1860,
  22192. bottom: 16.4 / 1989
  22193. }
  22194. },
  22195. },
  22196. [
  22197. {
  22198. name: "Normal",
  22199. height: math.unit(8, "feet")
  22200. },
  22201. {
  22202. name: "Minimacro",
  22203. height: math.unit(75, "feet"),
  22204. default: true
  22205. },
  22206. {
  22207. name: "Macro",
  22208. height: math.unit(150, "feet")
  22209. },
  22210. {
  22211. name: "Macro+",
  22212. height: math.unit(1000, "feet")
  22213. },
  22214. {
  22215. name: "Megamacro",
  22216. height: math.unit(1, "mile")
  22217. },
  22218. ]
  22219. ))
  22220. characterMakers.push(() => makeCharacter(
  22221. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22222. {
  22223. side: {
  22224. height: math.unit(20, "feet"),
  22225. weight: math.unit(30000, "kg"),
  22226. name: "Side",
  22227. image: {
  22228. source: "./media/characters/windar/side.svg",
  22229. extra: 1491 / 1248,
  22230. bottom: 82.56 / 1568
  22231. }
  22232. },
  22233. },
  22234. [
  22235. {
  22236. name: "Normal",
  22237. height: math.unit(20, "feet"),
  22238. default: true
  22239. },
  22240. ]
  22241. ))
  22242. characterMakers.push(() => makeCharacter(
  22243. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22244. {
  22245. side: {
  22246. height: math.unit(15.66, "feet"),
  22247. weight: math.unit(150, "lb"),
  22248. name: "Side",
  22249. image: {
  22250. source: "./media/characters/melody/side.svg",
  22251. extra: 1097 / 944,
  22252. bottom: 11.8 / 1109
  22253. }
  22254. },
  22255. sideOutfit: {
  22256. height: math.unit(15.66, "feet"),
  22257. weight: math.unit(150, "lb"),
  22258. name: "Side (Outfit)",
  22259. image: {
  22260. source: "./media/characters/melody/side-outfit.svg",
  22261. extra: 1097 / 944,
  22262. bottom: 11.8 / 1109
  22263. }
  22264. },
  22265. },
  22266. [
  22267. {
  22268. name: "Normal",
  22269. height: math.unit(15.66, "feet"),
  22270. default: true
  22271. },
  22272. ]
  22273. ))
  22274. characterMakers.push(() => makeCharacter(
  22275. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22276. {
  22277. front: {
  22278. height: math.unit(8, "feet"),
  22279. weight: math.unit(325, "lb"),
  22280. name: "Front",
  22281. image: {
  22282. source: "./media/characters/windera/front.svg",
  22283. extra: 3180 / 2845,
  22284. bottom: 178 / 3365
  22285. }
  22286. },
  22287. },
  22288. [
  22289. {
  22290. name: "Normal",
  22291. height: math.unit(8, "feet"),
  22292. default: true
  22293. },
  22294. ]
  22295. ))
  22296. characterMakers.push(() => makeCharacter(
  22297. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22298. {
  22299. front: {
  22300. height: math.unit(28.75, "feet"),
  22301. weight: math.unit(2000, "kg"),
  22302. name: "Front",
  22303. image: {
  22304. source: "./media/characters/sonear/front.svg",
  22305. extra: 1041.1 / 964.9,
  22306. bottom: 53.7 / 1096.6
  22307. }
  22308. },
  22309. },
  22310. [
  22311. {
  22312. name: "Normal",
  22313. height: math.unit(28.75, "feet"),
  22314. default: true
  22315. },
  22316. ]
  22317. ))
  22318. characterMakers.push(() => makeCharacter(
  22319. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22320. {
  22321. side: {
  22322. height: math.unit(25.5, "feet"),
  22323. weight: math.unit(23000, "kg"),
  22324. name: "Side",
  22325. image: {
  22326. source: "./media/characters/kanara/side.svg"
  22327. }
  22328. },
  22329. },
  22330. [
  22331. {
  22332. name: "Normal",
  22333. height: math.unit(25.5, "feet"),
  22334. default: true
  22335. },
  22336. ]
  22337. ))
  22338. characterMakers.push(() => makeCharacter(
  22339. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22340. {
  22341. side: {
  22342. height: math.unit(10, "feet"),
  22343. weight: math.unit(1000, "kg"),
  22344. name: "Side",
  22345. image: {
  22346. source: "./media/characters/ereus/side.svg",
  22347. extra: 1157 / 959,
  22348. bottom: 153 / 1312.5
  22349. }
  22350. },
  22351. },
  22352. [
  22353. {
  22354. name: "Normal",
  22355. height: math.unit(10, "feet"),
  22356. default: true
  22357. },
  22358. ]
  22359. ))
  22360. characterMakers.push(() => makeCharacter(
  22361. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22362. {
  22363. side: {
  22364. height: math.unit(4.5, "feet"),
  22365. weight: math.unit(500, "lb"),
  22366. name: "Side",
  22367. image: {
  22368. source: "./media/characters/e-ter/side.svg",
  22369. extra: 1550 / 1248,
  22370. bottom: 146 / 1694
  22371. }
  22372. },
  22373. },
  22374. [
  22375. {
  22376. name: "Normal",
  22377. height: math.unit(4.5, "feet"),
  22378. default: true
  22379. },
  22380. ]
  22381. ))
  22382. characterMakers.push(() => makeCharacter(
  22383. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22384. {
  22385. side: {
  22386. height: math.unit(9.7, "feet"),
  22387. weight: math.unit(4000, "kg"),
  22388. name: "Side",
  22389. image: {
  22390. source: "./media/characters/yamie/side.svg"
  22391. }
  22392. },
  22393. },
  22394. [
  22395. {
  22396. name: "Normal",
  22397. height: math.unit(9.7, "feet"),
  22398. default: true
  22399. },
  22400. ]
  22401. ))
  22402. characterMakers.push(() => makeCharacter(
  22403. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22404. {
  22405. front: {
  22406. height: math.unit(50, "feet"),
  22407. weight: math.unit(50000, "kg"),
  22408. name: "Front",
  22409. image: {
  22410. source: "./media/characters/anders/front.svg",
  22411. extra: 570 / 539,
  22412. bottom: 14.7 / 586.7
  22413. }
  22414. },
  22415. },
  22416. [
  22417. {
  22418. name: "Large",
  22419. height: math.unit(50, "feet")
  22420. },
  22421. {
  22422. name: "Macro",
  22423. height: math.unit(2000, "feet"),
  22424. default: true
  22425. },
  22426. {
  22427. name: "Megamacro",
  22428. height: math.unit(12, "miles")
  22429. },
  22430. ]
  22431. ))
  22432. characterMakers.push(() => makeCharacter(
  22433. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22434. {
  22435. front: {
  22436. height: math.unit(7 + 2 / 12, "feet"),
  22437. weight: math.unit(300, "lb"),
  22438. name: "Front",
  22439. image: {
  22440. source: "./media/characters/reban/front.svg",
  22441. extra: 1287/1212,
  22442. bottom: 148/1435
  22443. }
  22444. },
  22445. head: {
  22446. height: math.unit(1.95, "feet"),
  22447. name: "Head",
  22448. image: {
  22449. source: "./media/characters/reban/head.svg"
  22450. }
  22451. },
  22452. maw: {
  22453. height: math.unit(0.95, "feet"),
  22454. name: "Maw",
  22455. image: {
  22456. source: "./media/characters/reban/maw.svg"
  22457. }
  22458. },
  22459. foot: {
  22460. height: math.unit(1.65, "feet"),
  22461. name: "Foot",
  22462. image: {
  22463. source: "./media/characters/reban/foot.svg"
  22464. }
  22465. },
  22466. dick: {
  22467. height: math.unit(7 / 5, "feet"),
  22468. name: "Dick",
  22469. image: {
  22470. source: "./media/characters/reban/dick.svg"
  22471. }
  22472. },
  22473. },
  22474. [
  22475. {
  22476. name: "Natural Height",
  22477. height: math.unit(7 + 2 / 12, "feet")
  22478. },
  22479. {
  22480. name: "Macro",
  22481. height: math.unit(500, "feet"),
  22482. default: true
  22483. },
  22484. {
  22485. name: "Canon Height",
  22486. height: math.unit(50, "AU")
  22487. },
  22488. ]
  22489. ))
  22490. characterMakers.push(() => makeCharacter(
  22491. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22492. {
  22493. front: {
  22494. height: math.unit(6, "feet"),
  22495. weight: math.unit(150, "lb"),
  22496. name: "Front",
  22497. image: {
  22498. source: "./media/characters/terrance-keayes/front.svg",
  22499. extra: 1.005,
  22500. bottom: 151 / 1615
  22501. }
  22502. },
  22503. side: {
  22504. height: math.unit(6, "feet"),
  22505. weight: math.unit(150, "lb"),
  22506. name: "Side",
  22507. image: {
  22508. source: "./media/characters/terrance-keayes/side.svg",
  22509. extra: 1.005,
  22510. bottom: 129.4 / 1544
  22511. }
  22512. },
  22513. back: {
  22514. height: math.unit(6, "feet"),
  22515. weight: math.unit(150, "lb"),
  22516. name: "Back",
  22517. image: {
  22518. source: "./media/characters/terrance-keayes/back.svg",
  22519. extra: 1.005,
  22520. bottom: 58.4 / 1557.3
  22521. }
  22522. },
  22523. dick: {
  22524. height: math.unit(6 * 0.208, "feet"),
  22525. name: "Dick",
  22526. image: {
  22527. source: "./media/characters/terrance-keayes/dick.svg"
  22528. }
  22529. },
  22530. },
  22531. [
  22532. {
  22533. name: "Canon Height",
  22534. height: math.unit(35, "miles"),
  22535. default: true
  22536. },
  22537. ]
  22538. ))
  22539. characterMakers.push(() => makeCharacter(
  22540. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22541. {
  22542. front: {
  22543. height: math.unit(6, "feet"),
  22544. weight: math.unit(150, "lb"),
  22545. name: "Front",
  22546. image: {
  22547. source: "./media/characters/ofelia/front.svg",
  22548. extra: 1130/1117,
  22549. bottom: 91/1221
  22550. }
  22551. },
  22552. back: {
  22553. height: math.unit(6, "feet"),
  22554. weight: math.unit(150, "lb"),
  22555. name: "Back",
  22556. image: {
  22557. source: "./media/characters/ofelia/back.svg",
  22558. extra: 1172/1159,
  22559. bottom: 28/1200
  22560. }
  22561. },
  22562. maw: {
  22563. height: math.unit(1, "feet"),
  22564. name: "Maw",
  22565. image: {
  22566. source: "./media/characters/ofelia/maw.svg"
  22567. }
  22568. },
  22569. foot: {
  22570. height: math.unit(1.949, "feet"),
  22571. name: "Foot",
  22572. image: {
  22573. source: "./media/characters/ofelia/foot.svg"
  22574. }
  22575. },
  22576. },
  22577. [
  22578. {
  22579. name: "Canon Height",
  22580. height: math.unit(2000, "miles"),
  22581. default: true
  22582. },
  22583. ]
  22584. ))
  22585. characterMakers.push(() => makeCharacter(
  22586. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22587. {
  22588. front: {
  22589. height: math.unit(6, "feet"),
  22590. weight: math.unit(150, "lb"),
  22591. name: "Front",
  22592. image: {
  22593. source: "./media/characters/samuel/front.svg",
  22594. extra: 265 / 258,
  22595. bottom: 2 / 266.1566
  22596. }
  22597. },
  22598. },
  22599. [
  22600. {
  22601. name: "Macro",
  22602. height: math.unit(100, "feet"),
  22603. default: true
  22604. },
  22605. {
  22606. name: "Full Size",
  22607. height: math.unit(1000, "miles")
  22608. },
  22609. ]
  22610. ))
  22611. characterMakers.push(() => makeCharacter(
  22612. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22613. {
  22614. front: {
  22615. height: math.unit(6, "feet"),
  22616. weight: math.unit(300, "lb"),
  22617. name: "Front",
  22618. image: {
  22619. source: "./media/characters/beishir-kiel/front.svg",
  22620. extra: 569 / 547,
  22621. bottom: 41.9 / 609
  22622. }
  22623. },
  22624. maw: {
  22625. height: math.unit(6 * 0.202, "feet"),
  22626. name: "Maw",
  22627. image: {
  22628. source: "./media/characters/beishir-kiel/maw.svg"
  22629. }
  22630. },
  22631. },
  22632. [
  22633. {
  22634. name: "Macro",
  22635. height: math.unit(300, "feet"),
  22636. default: true
  22637. },
  22638. ]
  22639. ))
  22640. characterMakers.push(() => makeCharacter(
  22641. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22642. {
  22643. front: {
  22644. height: math.unit(5 + 7/12, "feet"),
  22645. weight: math.unit(120, "lb"),
  22646. name: "Front",
  22647. image: {
  22648. source: "./media/characters/logan-grey/front.svg",
  22649. extra: 1836/1738,
  22650. bottom: 108/1944
  22651. }
  22652. },
  22653. back: {
  22654. height: math.unit(5 + 7/12, "feet"),
  22655. weight: math.unit(120, "lb"),
  22656. name: "Back",
  22657. image: {
  22658. source: "./media/characters/logan-grey/back.svg",
  22659. extra: 1880/1794,
  22660. bottom: 24/1904
  22661. }
  22662. },
  22663. frontSfw: {
  22664. height: math.unit(5 + 7/12, "feet"),
  22665. weight: math.unit(120, "lb"),
  22666. name: "Front (SFW)",
  22667. image: {
  22668. source: "./media/characters/logan-grey/front-sfw.svg",
  22669. extra: 1836/1738,
  22670. bottom: 108/1944
  22671. }
  22672. },
  22673. backSfw: {
  22674. height: math.unit(5 + 7/12, "feet"),
  22675. weight: math.unit(120, "lb"),
  22676. name: "Back (SFW)",
  22677. image: {
  22678. source: "./media/characters/logan-grey/back-sfw.svg",
  22679. extra: 1880/1794,
  22680. bottom: 24/1904
  22681. }
  22682. },
  22683. hands: {
  22684. height: math.unit(0.84, "feet"),
  22685. name: "Hands",
  22686. image: {
  22687. source: "./media/characters/logan-grey/hands.svg"
  22688. }
  22689. },
  22690. paws: {
  22691. height: math.unit(0.72, "feet"),
  22692. name: "Paws",
  22693. image: {
  22694. source: "./media/characters/logan-grey/paws.svg"
  22695. }
  22696. },
  22697. cock: {
  22698. height: math.unit(1.45, "feet"),
  22699. name: "Cock",
  22700. image: {
  22701. source: "./media/characters/logan-grey/cock.svg"
  22702. }
  22703. },
  22704. cockAlt: {
  22705. height: math.unit(1.437, "feet"),
  22706. name: "Cock (alt)",
  22707. image: {
  22708. source: "./media/characters/logan-grey/cock-alt.svg"
  22709. }
  22710. },
  22711. },
  22712. [
  22713. {
  22714. name: "Normal",
  22715. height: math.unit(5 + 8 / 12, "feet")
  22716. },
  22717. {
  22718. name: "The 500 Foot Femboy",
  22719. height: math.unit(500, "feet"),
  22720. default: true
  22721. },
  22722. {
  22723. name: "Megmacro",
  22724. height: math.unit(20, "miles")
  22725. },
  22726. ]
  22727. ))
  22728. characterMakers.push(() => makeCharacter(
  22729. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22730. {
  22731. front: {
  22732. height: math.unit(8 + 2 / 12, "feet"),
  22733. weight: math.unit(275, "lb"),
  22734. name: "Front",
  22735. image: {
  22736. source: "./media/characters/draganta/front.svg",
  22737. extra: 1177 / 1135,
  22738. bottom: 33.46 / 1212.1
  22739. }
  22740. },
  22741. },
  22742. [
  22743. {
  22744. name: "Normal",
  22745. height: math.unit(8 + 6 / 12, "feet"),
  22746. default: true
  22747. },
  22748. {
  22749. name: "Macro",
  22750. height: math.unit(150, "feet")
  22751. },
  22752. {
  22753. name: "Megamacro",
  22754. height: math.unit(1000, "miles")
  22755. },
  22756. ]
  22757. ))
  22758. characterMakers.push(() => makeCharacter(
  22759. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22760. {
  22761. front: {
  22762. height: math.unit(1.72, "m"),
  22763. weight: math.unit(80, "lb"),
  22764. name: "Front",
  22765. image: {
  22766. source: "./media/characters/voski/front.svg",
  22767. extra: 2076.22 / 2022.4,
  22768. bottom: 102.7 / 2177.3866
  22769. }
  22770. },
  22771. frontNsfw: {
  22772. height: math.unit(1.72, "m"),
  22773. weight: math.unit(80, "lb"),
  22774. name: "Front (NSFW)",
  22775. image: {
  22776. source: "./media/characters/voski/front-nsfw.svg",
  22777. extra: 2076.22 / 2022.4,
  22778. bottom: 102.7 / 2177.3866
  22779. }
  22780. },
  22781. back: {
  22782. height: math.unit(1.72, "m"),
  22783. weight: math.unit(80, "lb"),
  22784. name: "Back",
  22785. image: {
  22786. source: "./media/characters/voski/back.svg",
  22787. extra: 2104 / 2051,
  22788. bottom: 10.45 / 2113.63
  22789. }
  22790. },
  22791. },
  22792. [
  22793. {
  22794. name: "Normal",
  22795. height: math.unit(1.72, "m")
  22796. },
  22797. {
  22798. name: "Macro",
  22799. height: math.unit(55, "m"),
  22800. default: true
  22801. },
  22802. {
  22803. name: "Macro+",
  22804. height: math.unit(300, "m")
  22805. },
  22806. {
  22807. name: "Macro++",
  22808. height: math.unit(700, "m")
  22809. },
  22810. {
  22811. name: "Macro+++",
  22812. height: math.unit(4500, "m")
  22813. },
  22814. {
  22815. name: "Macro++++",
  22816. height: math.unit(45, "km")
  22817. },
  22818. {
  22819. name: "Macro+++++",
  22820. height: math.unit(1220, "km")
  22821. },
  22822. ]
  22823. ))
  22824. characterMakers.push(() => makeCharacter(
  22825. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22826. {
  22827. front: {
  22828. height: math.unit(2.3, "m"),
  22829. weight: math.unit(304, "kg"),
  22830. name: "Front",
  22831. image: {
  22832. source: "./media/characters/icowom-lee/front.svg",
  22833. extra: 985 / 955,
  22834. bottom: 25.4 / 1012
  22835. }
  22836. },
  22837. fronttentacles: {
  22838. height: math.unit(2.3, "m"),
  22839. weight: math.unit(304, "kg"),
  22840. name: "Front-tentacles",
  22841. image: {
  22842. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22843. extra: 985 / 955,
  22844. bottom: 25.4 / 1012
  22845. }
  22846. },
  22847. back: {
  22848. height: math.unit(2.3, "m"),
  22849. weight: math.unit(304, "kg"),
  22850. name: "Back",
  22851. image: {
  22852. source: "./media/characters/icowom-lee/back.svg",
  22853. extra: 975 / 954,
  22854. bottom: 9.5 / 985
  22855. }
  22856. },
  22857. backtentacles: {
  22858. height: math.unit(2.3, "m"),
  22859. weight: math.unit(304, "kg"),
  22860. name: "Back-tentacles",
  22861. image: {
  22862. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22863. extra: 975 / 954,
  22864. bottom: 9.5 / 985
  22865. }
  22866. },
  22867. frontDressed: {
  22868. height: math.unit(2.3, "m"),
  22869. weight: math.unit(304, "kg"),
  22870. name: "Front (Dressed)",
  22871. image: {
  22872. source: "./media/characters/icowom-lee/front-dressed.svg",
  22873. extra: 3076 / 2933,
  22874. bottom: 51.4 / 3125.1889
  22875. }
  22876. },
  22877. rump: {
  22878. height: math.unit(0.776, "meters"),
  22879. name: "Rump",
  22880. image: {
  22881. source: "./media/characters/icowom-lee/rump.svg"
  22882. }
  22883. },
  22884. genitals: {
  22885. height: math.unit(0.78, "meters"),
  22886. name: "Genitals",
  22887. image: {
  22888. source: "./media/characters/icowom-lee/genitals.svg"
  22889. }
  22890. },
  22891. },
  22892. [
  22893. {
  22894. name: "Normal",
  22895. height: math.unit(2.3, "meters"),
  22896. default: true
  22897. },
  22898. {
  22899. name: "Macro",
  22900. height: math.unit(94, "meters"),
  22901. default: true
  22902. },
  22903. ]
  22904. ))
  22905. characterMakers.push(() => makeCharacter(
  22906. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22907. {
  22908. front: {
  22909. height: math.unit(22, "meters"),
  22910. weight: math.unit(21000, "kg"),
  22911. name: "Front",
  22912. image: {
  22913. source: "./media/characters/shock-diamond/front.svg",
  22914. extra: 2204 / 2053,
  22915. bottom: 65 / 2239.47
  22916. }
  22917. },
  22918. frontNude: {
  22919. height: math.unit(22, "meters"),
  22920. weight: math.unit(21000, "kg"),
  22921. name: "Front (Nude)",
  22922. image: {
  22923. source: "./media/characters/shock-diamond/front-nude.svg",
  22924. extra: 2514 / 2285,
  22925. bottom: 13 / 2527.56
  22926. }
  22927. },
  22928. },
  22929. [
  22930. {
  22931. name: "Normal",
  22932. height: math.unit(3, "meters")
  22933. },
  22934. {
  22935. name: "Macro",
  22936. height: math.unit(22, "meters"),
  22937. default: true
  22938. },
  22939. ]
  22940. ))
  22941. characterMakers.push(() => makeCharacter(
  22942. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22943. {
  22944. front: {
  22945. height: math.unit(5 + 4 / 12, "feet"),
  22946. weight: math.unit(120, "lb"),
  22947. name: "Front",
  22948. image: {
  22949. source: "./media/characters/rory/front.svg",
  22950. extra: 1318/1241,
  22951. bottom: 42/1360
  22952. }
  22953. },
  22954. back: {
  22955. height: math.unit(5 + 4 / 12, "feet"),
  22956. weight: math.unit(120, "lb"),
  22957. name: "Back",
  22958. image: {
  22959. source: "./media/characters/rory/back.svg",
  22960. extra: 1318/1241,
  22961. bottom: 42/1360
  22962. }
  22963. },
  22964. butt: {
  22965. height: math.unit(1.74, "feet"),
  22966. name: "Butt",
  22967. image: {
  22968. source: "./media/characters/rory/butt.svg"
  22969. }
  22970. },
  22971. dick: {
  22972. height: math.unit(1.02, "feet"),
  22973. name: "Dick",
  22974. image: {
  22975. source: "./media/characters/rory/dick.svg"
  22976. }
  22977. },
  22978. paws: {
  22979. height: math.unit(1, "feet"),
  22980. name: "Paws",
  22981. image: {
  22982. source: "./media/characters/rory/paws.svg"
  22983. }
  22984. },
  22985. frontAlt: {
  22986. height: math.unit(5 + 4 / 12, "feet"),
  22987. weight: math.unit(120, "lb"),
  22988. name: "Front (Alt)",
  22989. image: {
  22990. source: "./media/characters/rory/front-alt.svg",
  22991. extra: 589 / 556,
  22992. bottom: 45.7 / 635.76
  22993. }
  22994. },
  22995. frontAltNude: {
  22996. height: math.unit(5 + 4 / 12, "feet"),
  22997. weight: math.unit(120, "lb"),
  22998. name: "Front (Alt, Nude)",
  22999. image: {
  23000. source: "./media/characters/rory/front-alt-nude.svg",
  23001. extra: 589 / 556,
  23002. bottom: 45.7 / 635.76
  23003. }
  23004. },
  23005. side: {
  23006. height: math.unit(5 + 4 / 12, "feet"),
  23007. weight: math.unit(120, "lb"),
  23008. name: "Side",
  23009. image: {
  23010. source: "./media/characters/rory/side.svg",
  23011. extra: 597 / 564,
  23012. bottom: 55 / 653
  23013. }
  23014. },
  23015. backAlt: {
  23016. height: math.unit(5 + 4 / 12, "feet"),
  23017. weight: math.unit(120, "lb"),
  23018. name: "Back (Alt)",
  23019. image: {
  23020. source: "./media/characters/rory/back-alt.svg",
  23021. extra: 620 / 585,
  23022. bottom: 8.86 / 630.43
  23023. }
  23024. },
  23025. dickAlt: {
  23026. height: math.unit(0.86, "feet"),
  23027. name: "Dick (Alt)",
  23028. image: {
  23029. source: "./media/characters/rory/dick-alt.svg"
  23030. }
  23031. },
  23032. },
  23033. [
  23034. {
  23035. name: "Normal",
  23036. height: math.unit(5 + 4 / 12, "feet"),
  23037. default: true
  23038. },
  23039. {
  23040. name: "Macro",
  23041. height: math.unit(100, "feet")
  23042. },
  23043. {
  23044. name: "Macro+",
  23045. height: math.unit(140, "feet")
  23046. },
  23047. {
  23048. name: "Macro++",
  23049. height: math.unit(300, "feet")
  23050. },
  23051. ]
  23052. ))
  23053. characterMakers.push(() => makeCharacter(
  23054. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23055. {
  23056. front: {
  23057. height: math.unit(5 + 9 / 12, "feet"),
  23058. weight: math.unit(190, "lb"),
  23059. name: "Front",
  23060. image: {
  23061. source: "./media/characters/sprisk/front.svg",
  23062. extra: 1225 / 1180,
  23063. bottom: 42.7 / 1266.4
  23064. }
  23065. },
  23066. frontNsfw: {
  23067. height: math.unit(5 + 9 / 12, "feet"),
  23068. weight: math.unit(190, "lb"),
  23069. name: "Front (NSFW)",
  23070. image: {
  23071. source: "./media/characters/sprisk/front-nsfw.svg",
  23072. extra: 1225 / 1180,
  23073. bottom: 42.7 / 1266.4
  23074. }
  23075. },
  23076. back: {
  23077. height: math.unit(5 + 9 / 12, "feet"),
  23078. weight: math.unit(190, "lb"),
  23079. name: "Back",
  23080. image: {
  23081. source: "./media/characters/sprisk/back.svg",
  23082. extra: 1247 / 1200,
  23083. bottom: 5.6 / 1253.04
  23084. }
  23085. },
  23086. },
  23087. [
  23088. {
  23089. name: "Tiny",
  23090. height: math.unit(2, "inches")
  23091. },
  23092. {
  23093. name: "Normal",
  23094. height: math.unit(5 + 9 / 12, "feet"),
  23095. default: true
  23096. },
  23097. {
  23098. name: "Mini Macro",
  23099. height: math.unit(18, "feet")
  23100. },
  23101. {
  23102. name: "Macro",
  23103. height: math.unit(100, "feet")
  23104. },
  23105. {
  23106. name: "MACRO",
  23107. height: math.unit(50, "miles")
  23108. },
  23109. {
  23110. name: "M A C R O",
  23111. height: math.unit(300, "miles")
  23112. },
  23113. ]
  23114. ))
  23115. characterMakers.push(() => makeCharacter(
  23116. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23117. {
  23118. side: {
  23119. height: math.unit(15.6, "meters"),
  23120. weight: math.unit(700000, "kg"),
  23121. name: "Side",
  23122. image: {
  23123. source: "./media/characters/bunsen/side.svg",
  23124. extra: 1644 / 358
  23125. }
  23126. },
  23127. foot: {
  23128. height: math.unit(1.611 * 1644 / 358, "meter"),
  23129. name: "Foot",
  23130. image: {
  23131. source: "./media/characters/bunsen/foot.svg"
  23132. }
  23133. },
  23134. },
  23135. [
  23136. {
  23137. name: "Small",
  23138. height: math.unit(10, "feet")
  23139. },
  23140. {
  23141. name: "Normal",
  23142. height: math.unit(15.6, "meters"),
  23143. default: true
  23144. },
  23145. ]
  23146. ))
  23147. characterMakers.push(() => makeCharacter(
  23148. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23149. {
  23150. front: {
  23151. height: math.unit(4 + 11 / 12, "feet"),
  23152. weight: math.unit(140, "lb"),
  23153. name: "Front",
  23154. image: {
  23155. source: "./media/characters/sesh/front.svg",
  23156. extra: 3420 / 3231,
  23157. bottom: 72 / 3949.5
  23158. }
  23159. },
  23160. },
  23161. [
  23162. {
  23163. name: "Normal",
  23164. height: math.unit(4 + 11 / 12, "feet")
  23165. },
  23166. {
  23167. name: "Grown",
  23168. height: math.unit(15, "feet"),
  23169. default: true
  23170. },
  23171. {
  23172. name: "Macro",
  23173. height: math.unit(1500, "feet")
  23174. },
  23175. {
  23176. name: "Megamacro",
  23177. height: math.unit(30, "miles")
  23178. },
  23179. {
  23180. name: "Continental",
  23181. height: math.unit(3000, "miles")
  23182. },
  23183. {
  23184. name: "Gravity Mass",
  23185. height: math.unit(300000, "miles")
  23186. },
  23187. {
  23188. name: "Planet Buster",
  23189. height: math.unit(30000000, "miles")
  23190. },
  23191. {
  23192. name: "Big",
  23193. height: math.unit(3000000000, "miles")
  23194. },
  23195. ]
  23196. ))
  23197. characterMakers.push(() => makeCharacter(
  23198. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23199. {
  23200. front: {
  23201. height: math.unit(9, "feet"),
  23202. weight: math.unit(350, "lb"),
  23203. name: "Front",
  23204. image: {
  23205. source: "./media/characters/pepper/front.svg",
  23206. extra: 1448 / 1312,
  23207. bottom: 9.4 / 1457.88
  23208. }
  23209. },
  23210. back: {
  23211. height: math.unit(9, "feet"),
  23212. weight: math.unit(350, "lb"),
  23213. name: "Back",
  23214. image: {
  23215. source: "./media/characters/pepper/back.svg",
  23216. extra: 1423 / 1300,
  23217. bottom: 4.6 / 1429
  23218. }
  23219. },
  23220. maw: {
  23221. height: math.unit(0.932, "feet"),
  23222. name: "Maw",
  23223. image: {
  23224. source: "./media/characters/pepper/maw.svg"
  23225. }
  23226. },
  23227. },
  23228. [
  23229. {
  23230. name: "Normal",
  23231. height: math.unit(9, "feet"),
  23232. default: true
  23233. },
  23234. ]
  23235. ))
  23236. characterMakers.push(() => makeCharacter(
  23237. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23238. {
  23239. front: {
  23240. height: math.unit(6, "feet"),
  23241. weight: math.unit(150, "lb"),
  23242. name: "Front",
  23243. image: {
  23244. source: "./media/characters/maelstrom/front.svg",
  23245. extra: 2100 / 1883,
  23246. bottom: 94 / 2196.7
  23247. }
  23248. },
  23249. },
  23250. [
  23251. {
  23252. name: "Less Kaiju",
  23253. height: math.unit(200, "feet")
  23254. },
  23255. {
  23256. name: "Kaiju",
  23257. height: math.unit(400, "feet"),
  23258. default: true
  23259. },
  23260. {
  23261. name: "Kaiju-er",
  23262. height: math.unit(600, "feet")
  23263. },
  23264. ]
  23265. ))
  23266. characterMakers.push(() => makeCharacter(
  23267. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23268. {
  23269. front: {
  23270. height: math.unit(6 + 5 / 12, "feet"),
  23271. weight: math.unit(180, "lb"),
  23272. name: "Front",
  23273. image: {
  23274. source: "./media/characters/lexir/front.svg",
  23275. extra: 180 / 172,
  23276. bottom: 12 / 192
  23277. }
  23278. },
  23279. back: {
  23280. height: math.unit(6 + 5 / 12, "feet"),
  23281. weight: math.unit(180, "lb"),
  23282. name: "Back",
  23283. image: {
  23284. source: "./media/characters/lexir/back.svg",
  23285. extra: 183.84 / 175.5,
  23286. bottom: 3.1 / 187
  23287. }
  23288. },
  23289. },
  23290. [
  23291. {
  23292. name: "Very Smal",
  23293. height: math.unit(1, "nm")
  23294. },
  23295. {
  23296. name: "Normal",
  23297. height: math.unit(6 + 5 / 12, "feet"),
  23298. default: true
  23299. },
  23300. {
  23301. name: "Macro",
  23302. height: math.unit(1, "mile")
  23303. },
  23304. {
  23305. name: "Megamacro",
  23306. height: math.unit(50, "miles")
  23307. },
  23308. ]
  23309. ))
  23310. characterMakers.push(() => makeCharacter(
  23311. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23312. {
  23313. front: {
  23314. height: math.unit(1.5, "meters"),
  23315. weight: math.unit(100, "lb"),
  23316. name: "Front",
  23317. image: {
  23318. source: "./media/characters/maksio/front.svg",
  23319. extra: 1549 / 1531,
  23320. bottom: 123.7 / 1674.5429
  23321. }
  23322. },
  23323. back: {
  23324. height: math.unit(1.5, "meters"),
  23325. weight: math.unit(100, "lb"),
  23326. name: "Back",
  23327. image: {
  23328. source: "./media/characters/maksio/back.svg",
  23329. extra: 1541 / 1509,
  23330. bottom: 97 / 1639
  23331. }
  23332. },
  23333. hand: {
  23334. height: math.unit(0.621, "feet"),
  23335. name: "Hand",
  23336. image: {
  23337. source: "./media/characters/maksio/hand.svg"
  23338. }
  23339. },
  23340. foot: {
  23341. height: math.unit(1.611, "feet"),
  23342. name: "Foot",
  23343. image: {
  23344. source: "./media/characters/maksio/foot.svg"
  23345. }
  23346. },
  23347. },
  23348. [
  23349. {
  23350. name: "Shrunken",
  23351. height: math.unit(10, "cm")
  23352. },
  23353. {
  23354. name: "Normal",
  23355. height: math.unit(150, "cm"),
  23356. default: true
  23357. },
  23358. ]
  23359. ))
  23360. characterMakers.push(() => makeCharacter(
  23361. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23362. {
  23363. front: {
  23364. height: math.unit(100, "feet"),
  23365. name: "Front",
  23366. image: {
  23367. source: "./media/characters/erza-bear/front.svg",
  23368. extra: 2449 / 2390,
  23369. bottom: 46 / 2494
  23370. }
  23371. },
  23372. back: {
  23373. height: math.unit(100, "feet"),
  23374. name: "Back",
  23375. image: {
  23376. source: "./media/characters/erza-bear/back.svg",
  23377. extra: 2489 / 2430,
  23378. bottom: 85.4 / 2480
  23379. }
  23380. },
  23381. tail: {
  23382. height: math.unit(42, "feet"),
  23383. name: "Tail",
  23384. image: {
  23385. source: "./media/characters/erza-bear/tail.svg"
  23386. }
  23387. },
  23388. tongue: {
  23389. height: math.unit(8, "feet"),
  23390. name: "Tongue",
  23391. image: {
  23392. source: "./media/characters/erza-bear/tongue.svg"
  23393. }
  23394. },
  23395. dick: {
  23396. height: math.unit(10.5, "feet"),
  23397. name: "Dick",
  23398. image: {
  23399. source: "./media/characters/erza-bear/dick.svg"
  23400. }
  23401. },
  23402. dickVertical: {
  23403. height: math.unit(16.9, "feet"),
  23404. name: "Dick (Vertical)",
  23405. image: {
  23406. source: "./media/characters/erza-bear/dick-vertical.svg"
  23407. }
  23408. },
  23409. },
  23410. [
  23411. {
  23412. name: "Macro",
  23413. height: math.unit(100, "feet"),
  23414. default: true
  23415. },
  23416. ]
  23417. ))
  23418. characterMakers.push(() => makeCharacter(
  23419. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23420. {
  23421. front: {
  23422. height: math.unit(172, "cm"),
  23423. weight: math.unit(73, "kg"),
  23424. name: "Front",
  23425. image: {
  23426. source: "./media/characters/violet-flor/front.svg",
  23427. extra: 1530 / 1442,
  23428. bottom: 61.9 / 1588.8
  23429. }
  23430. },
  23431. back: {
  23432. height: math.unit(180, "cm"),
  23433. weight: math.unit(73, "kg"),
  23434. name: "Back",
  23435. image: {
  23436. source: "./media/characters/violet-flor/back.svg",
  23437. extra: 1692 / 1630,
  23438. bottom: 20 / 1712
  23439. }
  23440. },
  23441. },
  23442. [
  23443. {
  23444. name: "Normal",
  23445. height: math.unit(172, "cm"),
  23446. default: true
  23447. },
  23448. ]
  23449. ))
  23450. characterMakers.push(() => makeCharacter(
  23451. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23452. {
  23453. front: {
  23454. height: math.unit(6, "feet"),
  23455. weight: math.unit(220, "lb"),
  23456. name: "Front",
  23457. image: {
  23458. source: "./media/characters/lynn-rhea/front.svg",
  23459. extra: 310 / 273
  23460. }
  23461. },
  23462. back: {
  23463. height: math.unit(6, "feet"),
  23464. weight: math.unit(220, "lb"),
  23465. name: "Back",
  23466. image: {
  23467. source: "./media/characters/lynn-rhea/back.svg",
  23468. extra: 310 / 273
  23469. }
  23470. },
  23471. dicks: {
  23472. height: math.unit(0.9, "feet"),
  23473. name: "Dicks",
  23474. image: {
  23475. source: "./media/characters/lynn-rhea/dicks.svg"
  23476. }
  23477. },
  23478. slit: {
  23479. height: math.unit(0.4, "feet"),
  23480. name: "Slit",
  23481. image: {
  23482. source: "./media/characters/lynn-rhea/slit.svg"
  23483. }
  23484. },
  23485. },
  23486. [
  23487. {
  23488. name: "Micro",
  23489. height: math.unit(1, "inch")
  23490. },
  23491. {
  23492. name: "Macro",
  23493. height: math.unit(60, "feet"),
  23494. default: true
  23495. },
  23496. {
  23497. name: "Megamacro",
  23498. height: math.unit(2, "miles")
  23499. },
  23500. {
  23501. name: "Gigamacro",
  23502. height: math.unit(3, "earths")
  23503. },
  23504. {
  23505. name: "Galactic",
  23506. height: math.unit(0.8, "galaxies")
  23507. },
  23508. ]
  23509. ))
  23510. characterMakers.push(() => makeCharacter(
  23511. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23512. {
  23513. front: {
  23514. height: math.unit(1600, "feet"),
  23515. weight: math.unit(85758785169, "kg"),
  23516. name: "Front",
  23517. image: {
  23518. source: "./media/characters/valathos/front.svg",
  23519. extra: 1451 / 1339
  23520. }
  23521. },
  23522. },
  23523. [
  23524. {
  23525. name: "Macro",
  23526. height: math.unit(1600, "feet"),
  23527. default: true
  23528. },
  23529. ]
  23530. ))
  23531. characterMakers.push(() => makeCharacter(
  23532. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23533. {
  23534. front: {
  23535. height: math.unit(7 + 5 / 12, "feet"),
  23536. weight: math.unit(300, "lb"),
  23537. name: "Front",
  23538. image: {
  23539. source: "./media/characters/azula/front.svg",
  23540. extra: 3208 / 2880,
  23541. bottom: 80.2 / 3277
  23542. }
  23543. },
  23544. back: {
  23545. height: math.unit(7 + 5 / 12, "feet"),
  23546. weight: math.unit(300, "lb"),
  23547. name: "Back",
  23548. image: {
  23549. source: "./media/characters/azula/back.svg",
  23550. extra: 3169 / 2822,
  23551. bottom: 150.6 / 3321
  23552. }
  23553. },
  23554. },
  23555. [
  23556. {
  23557. name: "Normal",
  23558. height: math.unit(7 + 5 / 12, "feet"),
  23559. default: true
  23560. },
  23561. {
  23562. name: "Big",
  23563. height: math.unit(20, "feet")
  23564. },
  23565. ]
  23566. ))
  23567. characterMakers.push(() => makeCharacter(
  23568. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23569. {
  23570. front: {
  23571. height: math.unit(5 + 1 / 12, "feet"),
  23572. weight: math.unit(110, "lb"),
  23573. name: "Front",
  23574. image: {
  23575. source: "./media/characters/rupert/front.svg",
  23576. extra: 1549 / 1495,
  23577. bottom: 54.2 / 1604.4
  23578. }
  23579. },
  23580. },
  23581. [
  23582. {
  23583. name: "Normal",
  23584. height: math.unit(5 + 1 / 12, "feet"),
  23585. default: true
  23586. },
  23587. ]
  23588. ))
  23589. characterMakers.push(() => makeCharacter(
  23590. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23591. {
  23592. front: {
  23593. height: math.unit(8 + 4 / 12, "feet"),
  23594. weight: math.unit(350, "lb"),
  23595. name: "Front",
  23596. image: {
  23597. source: "./media/characters/sheera-castellar/front.svg",
  23598. extra: 1957 / 1894,
  23599. bottom: 26.97 / 1975.017
  23600. }
  23601. },
  23602. side: {
  23603. height: math.unit(8 + 4 / 12, "feet"),
  23604. weight: math.unit(350, "lb"),
  23605. name: "Side",
  23606. image: {
  23607. source: "./media/characters/sheera-castellar/side.svg",
  23608. extra: 1957 / 1894
  23609. }
  23610. },
  23611. back: {
  23612. height: math.unit(8 + 4 / 12, "feet"),
  23613. weight: math.unit(350, "lb"),
  23614. name: "Back",
  23615. image: {
  23616. source: "./media/characters/sheera-castellar/back.svg",
  23617. extra: 1957 / 1894
  23618. }
  23619. },
  23620. angled: {
  23621. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23622. weight: math.unit(350, "lb"),
  23623. name: "Angled",
  23624. image: {
  23625. source: "./media/characters/sheera-castellar/angled.svg",
  23626. extra: 1807 / 1707,
  23627. bottom: 68 / 1875
  23628. }
  23629. },
  23630. genitals: {
  23631. height: math.unit(2.2, "feet"),
  23632. name: "Genitals",
  23633. image: {
  23634. source: "./media/characters/sheera-castellar/genitals.svg"
  23635. }
  23636. },
  23637. taur: {
  23638. height: math.unit(10 + 6/12, "feet"),
  23639. name: "Taur",
  23640. image: {
  23641. source: "./media/characters/sheera-castellar/taur.svg",
  23642. extra: 2017/1909,
  23643. bottom: 185/2202
  23644. }
  23645. },
  23646. },
  23647. [
  23648. {
  23649. name: "Normal",
  23650. height: math.unit(8 + 4 / 12, "feet")
  23651. },
  23652. {
  23653. name: "Macro",
  23654. height: math.unit(150, "feet"),
  23655. default: true
  23656. },
  23657. {
  23658. name: "Macro+",
  23659. height: math.unit(800, "feet")
  23660. },
  23661. ]
  23662. ))
  23663. characterMakers.push(() => makeCharacter(
  23664. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23665. {
  23666. front: {
  23667. height: math.unit(6, "feet"),
  23668. weight: math.unit(150, "lb"),
  23669. name: "Front",
  23670. image: {
  23671. source: "./media/characters/jaipur/front.svg",
  23672. extra: 3860 / 3731,
  23673. bottom: 287 / 4140
  23674. }
  23675. },
  23676. back: {
  23677. height: math.unit(6, "feet"),
  23678. weight: math.unit(150, "lb"),
  23679. name: "Back",
  23680. image: {
  23681. source: "./media/characters/jaipur/back.svg",
  23682. extra: 4060 / 3930,
  23683. bottom: 151 / 4200
  23684. }
  23685. },
  23686. },
  23687. [
  23688. {
  23689. name: "Normal",
  23690. height: math.unit(1.85, "meters"),
  23691. default: true
  23692. },
  23693. {
  23694. name: "Macro",
  23695. height: math.unit(150, "meters")
  23696. },
  23697. {
  23698. name: "Macro+",
  23699. height: math.unit(0.5, "miles")
  23700. },
  23701. {
  23702. name: "Macro++",
  23703. height: math.unit(2.5, "miles")
  23704. },
  23705. {
  23706. name: "Macro+++",
  23707. height: math.unit(12, "miles")
  23708. },
  23709. {
  23710. name: "Macro++++",
  23711. height: math.unit(120, "miles")
  23712. },
  23713. {
  23714. name: "Macro+++++",
  23715. height: math.unit(1200, "miles")
  23716. },
  23717. ]
  23718. ))
  23719. characterMakers.push(() => makeCharacter(
  23720. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23721. {
  23722. front: {
  23723. height: math.unit(6, "feet"),
  23724. weight: math.unit(150, "lb"),
  23725. name: "Front",
  23726. image: {
  23727. source: "./media/characters/sheila-wolf/front.svg",
  23728. extra: 1931 / 1808,
  23729. bottom: 29.5 / 1960
  23730. }
  23731. },
  23732. dick: {
  23733. height: math.unit(1.464, "feet"),
  23734. name: "Dick",
  23735. image: {
  23736. source: "./media/characters/sheila-wolf/dick.svg"
  23737. }
  23738. },
  23739. muzzle: {
  23740. height: math.unit(0.513, "feet"),
  23741. name: "Muzzle",
  23742. image: {
  23743. source: "./media/characters/sheila-wolf/muzzle.svg"
  23744. }
  23745. },
  23746. },
  23747. [
  23748. {
  23749. name: "Macro",
  23750. height: math.unit(70, "feet"),
  23751. default: true
  23752. },
  23753. ]
  23754. ))
  23755. characterMakers.push(() => makeCharacter(
  23756. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23757. {
  23758. front: {
  23759. height: math.unit(32, "meters"),
  23760. weight: math.unit(300000, "kg"),
  23761. name: "Front",
  23762. image: {
  23763. source: "./media/characters/almor/front.svg",
  23764. extra: 1408 / 1322,
  23765. bottom: 94.6 / 1506.5
  23766. }
  23767. },
  23768. },
  23769. [
  23770. {
  23771. name: "Macro",
  23772. height: math.unit(32, "meters"),
  23773. default: true
  23774. },
  23775. ]
  23776. ))
  23777. characterMakers.push(() => makeCharacter(
  23778. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23779. {
  23780. front: {
  23781. height: math.unit(7, "feet"),
  23782. weight: math.unit(200, "lb"),
  23783. name: "Front",
  23784. image: {
  23785. source: "./media/characters/silver/front.svg",
  23786. extra: 472.1 / 450.5,
  23787. bottom: 26.5 / 499.424
  23788. }
  23789. },
  23790. },
  23791. [
  23792. {
  23793. name: "Normal",
  23794. height: math.unit(7, "feet"),
  23795. default: true
  23796. },
  23797. {
  23798. name: "Macro",
  23799. height: math.unit(800, "feet")
  23800. },
  23801. {
  23802. name: "Megamacro",
  23803. height: math.unit(250, "miles")
  23804. },
  23805. ]
  23806. ))
  23807. characterMakers.push(() => makeCharacter(
  23808. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23809. {
  23810. front: {
  23811. height: math.unit(6, "feet"),
  23812. weight: math.unit(150, "lb"),
  23813. name: "Front",
  23814. image: {
  23815. source: "./media/characters/pliskin/front.svg",
  23816. extra: 1469 / 1359,
  23817. bottom: 70 / 1540
  23818. }
  23819. },
  23820. },
  23821. [
  23822. {
  23823. name: "Micro",
  23824. height: math.unit(3, "inches")
  23825. },
  23826. {
  23827. name: "Normal",
  23828. height: math.unit(5 + 11 / 12, "feet"),
  23829. default: true
  23830. },
  23831. {
  23832. name: "Macro",
  23833. height: math.unit(120, "feet")
  23834. },
  23835. ]
  23836. ))
  23837. characterMakers.push(() => makeCharacter(
  23838. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23839. {
  23840. front: {
  23841. height: math.unit(6, "feet"),
  23842. weight: math.unit(150, "lb"),
  23843. name: "Front",
  23844. image: {
  23845. source: "./media/characters/sammy/front.svg",
  23846. extra: 1193 / 1089,
  23847. bottom: 30.5 / 1226
  23848. }
  23849. },
  23850. },
  23851. [
  23852. {
  23853. name: "Macro",
  23854. height: math.unit(1700, "feet"),
  23855. default: true
  23856. },
  23857. {
  23858. name: "Examacro",
  23859. height: math.unit(2.5e9, "lightyears")
  23860. },
  23861. ]
  23862. ))
  23863. characterMakers.push(() => makeCharacter(
  23864. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23865. {
  23866. front: {
  23867. height: math.unit(21, "meters"),
  23868. weight: math.unit(12, "tonnes"),
  23869. name: "Front",
  23870. image: {
  23871. source: "./media/characters/kuru/front.svg",
  23872. extra: 4301 / 3785,
  23873. bottom: 371.3 / 4691
  23874. }
  23875. },
  23876. },
  23877. [
  23878. {
  23879. name: "Macro",
  23880. height: math.unit(21, "meters"),
  23881. default: true
  23882. },
  23883. ]
  23884. ))
  23885. characterMakers.push(() => makeCharacter(
  23886. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23887. {
  23888. front: {
  23889. height: math.unit(23, "meters"),
  23890. weight: math.unit(12.2, "tonnes"),
  23891. name: "Front",
  23892. image: {
  23893. source: "./media/characters/rakka/front.svg",
  23894. extra: 4670 / 4169,
  23895. bottom: 301 / 4968.7
  23896. }
  23897. },
  23898. },
  23899. [
  23900. {
  23901. name: "Macro",
  23902. height: math.unit(23, "meters"),
  23903. default: true
  23904. },
  23905. ]
  23906. ))
  23907. characterMakers.push(() => makeCharacter(
  23908. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23909. {
  23910. front: {
  23911. height: math.unit(6, "feet"),
  23912. weight: math.unit(150, "lb"),
  23913. name: "Front",
  23914. image: {
  23915. source: "./media/characters/rhys-feline/front.svg",
  23916. extra: 2488 / 2308,
  23917. bottom: 35.67 / 2519.19
  23918. }
  23919. },
  23920. },
  23921. [
  23922. {
  23923. name: "Really Small",
  23924. height: math.unit(1, "nm")
  23925. },
  23926. {
  23927. name: "Micro",
  23928. height: math.unit(4, "inches")
  23929. },
  23930. {
  23931. name: "Normal",
  23932. height: math.unit(4 + 10 / 12, "feet"),
  23933. default: true
  23934. },
  23935. {
  23936. name: "Macro",
  23937. height: math.unit(100, "feet")
  23938. },
  23939. {
  23940. name: "Megamacto",
  23941. height: math.unit(50, "miles")
  23942. },
  23943. ]
  23944. ))
  23945. characterMakers.push(() => makeCharacter(
  23946. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23947. {
  23948. side: {
  23949. height: math.unit(30, "feet"),
  23950. weight: math.unit(35000, "kg"),
  23951. name: "Side",
  23952. image: {
  23953. source: "./media/characters/alydar/side.svg",
  23954. extra: 234 / 222,
  23955. bottom: 6.5 / 241
  23956. }
  23957. },
  23958. front: {
  23959. height: math.unit(30, "feet"),
  23960. weight: math.unit(35000, "kg"),
  23961. name: "Front",
  23962. image: {
  23963. source: "./media/characters/alydar/front.svg",
  23964. extra: 223.37 / 210.2,
  23965. bottom: 22.3 / 246.76
  23966. }
  23967. },
  23968. top: {
  23969. height: math.unit(64.54, "feet"),
  23970. weight: math.unit(35000, "kg"),
  23971. name: "Top",
  23972. image: {
  23973. source: "./media/characters/alydar/top.svg"
  23974. }
  23975. },
  23976. anthro: {
  23977. height: math.unit(30, "feet"),
  23978. weight: math.unit(9000, "kg"),
  23979. name: "Anthro",
  23980. image: {
  23981. source: "./media/characters/alydar/anthro.svg",
  23982. extra: 432 / 421,
  23983. bottom: 7.18 / 440
  23984. }
  23985. },
  23986. maw: {
  23987. height: math.unit(11.693, "feet"),
  23988. name: "Maw",
  23989. image: {
  23990. source: "./media/characters/alydar/maw.svg"
  23991. }
  23992. },
  23993. head: {
  23994. height: math.unit(11.693, "feet"),
  23995. name: "Head",
  23996. image: {
  23997. source: "./media/characters/alydar/head.svg"
  23998. }
  23999. },
  24000. headAlt: {
  24001. height: math.unit(12.861, "feet"),
  24002. name: "Head (Alt)",
  24003. image: {
  24004. source: "./media/characters/alydar/head-alt.svg"
  24005. }
  24006. },
  24007. wing: {
  24008. height: math.unit(20.712, "feet"),
  24009. name: "Wing",
  24010. image: {
  24011. source: "./media/characters/alydar/wing.svg"
  24012. }
  24013. },
  24014. wingFeather: {
  24015. height: math.unit(9.662, "feet"),
  24016. name: "Wing Feather",
  24017. image: {
  24018. source: "./media/characters/alydar/wing-feather.svg"
  24019. }
  24020. },
  24021. countourFeather: {
  24022. height: math.unit(4.154, "feet"),
  24023. name: "Contour Feather",
  24024. image: {
  24025. source: "./media/characters/alydar/contour-feather.svg"
  24026. }
  24027. },
  24028. },
  24029. [
  24030. {
  24031. name: "Diplomatic",
  24032. height: math.unit(13, "feet"),
  24033. default: true
  24034. },
  24035. {
  24036. name: "Small",
  24037. height: math.unit(30, "feet")
  24038. },
  24039. {
  24040. name: "Normal",
  24041. height: math.unit(95, "feet"),
  24042. default: true
  24043. },
  24044. {
  24045. name: "Large",
  24046. height: math.unit(285, "feet")
  24047. },
  24048. {
  24049. name: "Incomprehensible",
  24050. height: math.unit(450, "megameters")
  24051. },
  24052. ]
  24053. ))
  24054. characterMakers.push(() => makeCharacter(
  24055. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24056. {
  24057. side: {
  24058. height: math.unit(11, "feet"),
  24059. weight: math.unit(1750, "kg"),
  24060. name: "Side",
  24061. image: {
  24062. source: "./media/characters/selicia/side.svg",
  24063. extra: 440 / 396,
  24064. bottom: 24.8 / 465.979
  24065. }
  24066. },
  24067. maw: {
  24068. height: math.unit(4.665, "feet"),
  24069. name: "Maw",
  24070. image: {
  24071. source: "./media/characters/selicia/maw.svg"
  24072. }
  24073. },
  24074. },
  24075. [
  24076. {
  24077. name: "Normal",
  24078. height: math.unit(11, "feet"),
  24079. default: true
  24080. },
  24081. ]
  24082. ))
  24083. characterMakers.push(() => makeCharacter(
  24084. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24085. {
  24086. side: {
  24087. height: math.unit(2 + 6 / 12, "feet"),
  24088. weight: math.unit(30, "lb"),
  24089. name: "Side",
  24090. image: {
  24091. source: "./media/characters/layla/side.svg",
  24092. extra: 244 / 188,
  24093. bottom: 18.2 / 262.1
  24094. }
  24095. },
  24096. back: {
  24097. height: math.unit(2 + 6 / 12, "feet"),
  24098. weight: math.unit(30, "lb"),
  24099. name: "Back",
  24100. image: {
  24101. source: "./media/characters/layla/back.svg",
  24102. extra: 308 / 241.5,
  24103. bottom: 8.9 / 316.8
  24104. }
  24105. },
  24106. cumming: {
  24107. height: math.unit(2 + 6 / 12, "feet"),
  24108. weight: math.unit(30, "lb"),
  24109. name: "Cumming",
  24110. image: {
  24111. source: "./media/characters/layla/cumming.svg",
  24112. extra: 342 / 279,
  24113. bottom: 595 / 938
  24114. }
  24115. },
  24116. dickFlaccid: {
  24117. height: math.unit(2.595, "feet"),
  24118. name: "Flaccid Genitals",
  24119. image: {
  24120. source: "./media/characters/layla/dick-flaccid.svg"
  24121. }
  24122. },
  24123. dickErect: {
  24124. height: math.unit(2.359, "feet"),
  24125. name: "Erect Genitals",
  24126. image: {
  24127. source: "./media/characters/layla/dick-erect.svg"
  24128. }
  24129. },
  24130. dragon: {
  24131. height: math.unit(40, "feet"),
  24132. name: "Dragon",
  24133. image: {
  24134. source: "./media/characters/layla/dragon.svg",
  24135. extra: 610/535,
  24136. bottom: 367/977
  24137. }
  24138. },
  24139. taur: {
  24140. height: math.unit(30, "feet"),
  24141. name: "Taur",
  24142. image: {
  24143. source: "./media/characters/layla/taur.svg",
  24144. extra: 1268/1199,
  24145. bottom: 112/1380
  24146. }
  24147. },
  24148. },
  24149. [
  24150. {
  24151. name: "Micro",
  24152. height: math.unit(1, "inch")
  24153. },
  24154. {
  24155. name: "Small",
  24156. height: math.unit(1, "foot")
  24157. },
  24158. {
  24159. name: "Normal",
  24160. height: math.unit(2 + 6 / 12, "feet"),
  24161. default: true
  24162. },
  24163. {
  24164. name: "Macro",
  24165. height: math.unit(200, "feet")
  24166. },
  24167. {
  24168. name: "Megamacro",
  24169. height: math.unit(1000, "miles")
  24170. },
  24171. {
  24172. name: "Planetary",
  24173. height: math.unit(8000, "miles")
  24174. },
  24175. {
  24176. name: "True Layla",
  24177. height: math.unit(200000 * 7, "multiverses")
  24178. },
  24179. ]
  24180. ))
  24181. characterMakers.push(() => makeCharacter(
  24182. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24183. {
  24184. back: {
  24185. height: math.unit(10.5, "feet"),
  24186. weight: math.unit(800, "lb"),
  24187. name: "Back",
  24188. image: {
  24189. source: "./media/characters/knox/back.svg",
  24190. extra: 1486 / 1089,
  24191. bottom: 107 / 1601.4
  24192. }
  24193. },
  24194. side: {
  24195. height: math.unit(10.5, "feet"),
  24196. weight: math.unit(800, "lb"),
  24197. name: "Side",
  24198. image: {
  24199. source: "./media/characters/knox/side.svg",
  24200. extra: 244 / 218,
  24201. bottom: 14 / 260
  24202. }
  24203. },
  24204. },
  24205. [
  24206. {
  24207. name: "Compact",
  24208. height: math.unit(10.5, "feet"),
  24209. default: true
  24210. },
  24211. {
  24212. name: "Dynamax",
  24213. height: math.unit(210, "feet")
  24214. },
  24215. {
  24216. name: "Full Macro",
  24217. height: math.unit(850, "feet")
  24218. },
  24219. ]
  24220. ))
  24221. characterMakers.push(() => makeCharacter(
  24222. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24223. {
  24224. front: {
  24225. height: math.unit(28, "feet"),
  24226. weight: math.unit(10500, "lb"),
  24227. name: "Front",
  24228. image: {
  24229. source: "./media/characters/kayda/front.svg",
  24230. extra: 1536 / 1428,
  24231. bottom: 68.7 / 1603
  24232. }
  24233. },
  24234. back: {
  24235. height: math.unit(28, "feet"),
  24236. weight: math.unit(10500, "lb"),
  24237. name: "Back",
  24238. image: {
  24239. source: "./media/characters/kayda/back.svg",
  24240. extra: 1557 / 1464,
  24241. bottom: 39.5 / 1597.49
  24242. }
  24243. },
  24244. dick: {
  24245. height: math.unit(3.858, "feet"),
  24246. name: "Dick",
  24247. image: {
  24248. source: "./media/characters/kayda/dick.svg"
  24249. }
  24250. },
  24251. },
  24252. [
  24253. {
  24254. name: "Macro",
  24255. height: math.unit(28, "feet"),
  24256. default: true
  24257. },
  24258. ]
  24259. ))
  24260. characterMakers.push(() => makeCharacter(
  24261. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24262. {
  24263. front: {
  24264. height: math.unit(10 + 11 / 12, "feet"),
  24265. weight: math.unit(1400, "lb"),
  24266. name: "Front",
  24267. image: {
  24268. source: "./media/characters/brian/front.svg",
  24269. extra: 737 / 692,
  24270. bottom: 55.4 / 785
  24271. }
  24272. },
  24273. },
  24274. [
  24275. {
  24276. name: "Normal",
  24277. height: math.unit(10 + 11 / 12, "feet"),
  24278. default: true
  24279. },
  24280. ]
  24281. ))
  24282. characterMakers.push(() => makeCharacter(
  24283. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24284. {
  24285. front: {
  24286. height: math.unit(5 + 8 / 12, "feet"),
  24287. weight: math.unit(140, "lb"),
  24288. name: "Front",
  24289. image: {
  24290. source: "./media/characters/khemri/front.svg",
  24291. extra: 4780 / 4059,
  24292. bottom: 80.1 / 4859.25
  24293. }
  24294. },
  24295. },
  24296. [
  24297. {
  24298. name: "Micro",
  24299. height: math.unit(6, "inches")
  24300. },
  24301. {
  24302. name: "Normal",
  24303. height: math.unit(5 + 8 / 12, "feet"),
  24304. default: true
  24305. },
  24306. ]
  24307. ))
  24308. characterMakers.push(() => makeCharacter(
  24309. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24310. {
  24311. front: {
  24312. height: math.unit(13, "feet"),
  24313. weight: math.unit(1700, "lb"),
  24314. name: "Front",
  24315. image: {
  24316. source: "./media/characters/felix-braveheart/front.svg",
  24317. extra: 1222 / 1157,
  24318. bottom: 53.2 / 1280
  24319. }
  24320. },
  24321. back: {
  24322. height: math.unit(13, "feet"),
  24323. weight: math.unit(1700, "lb"),
  24324. name: "Back",
  24325. image: {
  24326. source: "./media/characters/felix-braveheart/back.svg",
  24327. extra: 1277 / 1203,
  24328. bottom: 50.2 / 1327
  24329. }
  24330. },
  24331. feral: {
  24332. height: math.unit(6, "feet"),
  24333. weight: math.unit(400, "lb"),
  24334. name: "Feral",
  24335. image: {
  24336. source: "./media/characters/felix-braveheart/feral.svg",
  24337. extra: 682 / 625,
  24338. bottom: 6.9 / 688
  24339. }
  24340. },
  24341. },
  24342. [
  24343. {
  24344. name: "Normal",
  24345. height: math.unit(13, "feet"),
  24346. default: true
  24347. },
  24348. ]
  24349. ))
  24350. characterMakers.push(() => makeCharacter(
  24351. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24352. {
  24353. side: {
  24354. height: math.unit(5 + 11 / 12, "feet"),
  24355. weight: math.unit(1400, "lb"),
  24356. name: "Side",
  24357. image: {
  24358. source: "./media/characters/shadow-blade/side.svg",
  24359. extra: 1726 / 1267,
  24360. bottom: 58.4 / 1785
  24361. }
  24362. },
  24363. },
  24364. [
  24365. {
  24366. name: "Normal",
  24367. height: math.unit(5 + 11 / 12, "feet"),
  24368. default: true
  24369. },
  24370. ]
  24371. ))
  24372. characterMakers.push(() => makeCharacter(
  24373. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24374. {
  24375. front: {
  24376. height: math.unit(1 + 6 / 12, "feet"),
  24377. weight: math.unit(25, "lb"),
  24378. name: "Front",
  24379. image: {
  24380. source: "./media/characters/karla-halldor/front.svg",
  24381. extra: 1459 / 1383,
  24382. bottom: 12 / 1472
  24383. }
  24384. },
  24385. },
  24386. [
  24387. {
  24388. name: "Normal",
  24389. height: math.unit(1 + 6 / 12, "feet"),
  24390. default: true
  24391. },
  24392. ]
  24393. ))
  24394. characterMakers.push(() => makeCharacter(
  24395. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24396. {
  24397. front: {
  24398. height: math.unit(6 + 2 / 12, "feet"),
  24399. weight: math.unit(160, "lb"),
  24400. name: "Front",
  24401. image: {
  24402. source: "./media/characters/ariam/front.svg",
  24403. extra: 1073/976,
  24404. bottom: 52/1125
  24405. }
  24406. },
  24407. back: {
  24408. height: math.unit(6 + 2/12, "feet"),
  24409. weight: math.unit(160, "lb"),
  24410. name: "Back",
  24411. image: {
  24412. source: "./media/characters/ariam/back.svg",
  24413. extra: 1103/1023,
  24414. bottom: 9/1112
  24415. }
  24416. },
  24417. dressed: {
  24418. height: math.unit(6 + 2/12, "feet"),
  24419. weight: math.unit(160, "lb"),
  24420. name: "Dressed",
  24421. image: {
  24422. source: "./media/characters/ariam/dressed.svg",
  24423. extra: 1099/1009,
  24424. bottom: 25/1124
  24425. }
  24426. },
  24427. squatting: {
  24428. height: math.unit(4.1, "feet"),
  24429. weight: math.unit(160, "lb"),
  24430. name: "Squatting",
  24431. image: {
  24432. source: "./media/characters/ariam/squatting.svg",
  24433. extra: 2617 / 2112,
  24434. bottom: 61.2 / 2681,
  24435. }
  24436. },
  24437. },
  24438. [
  24439. {
  24440. name: "Normal",
  24441. height: math.unit(6 + 2 / 12, "feet"),
  24442. default: true
  24443. },
  24444. {
  24445. name: "Normal+",
  24446. height: math.unit(4, "meters")
  24447. },
  24448. {
  24449. name: "Macro",
  24450. height: math.unit(50, "meters")
  24451. },
  24452. {
  24453. name: "Macro+",
  24454. height: math.unit(100, "meters")
  24455. },
  24456. {
  24457. name: "Megamacro",
  24458. height: math.unit(20, "km")
  24459. },
  24460. {
  24461. name: "Caretaker",
  24462. height: math.unit(444, "megameters")
  24463. },
  24464. ]
  24465. ))
  24466. characterMakers.push(() => makeCharacter(
  24467. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24468. {
  24469. front: {
  24470. height: math.unit(1.67, "meters"),
  24471. weight: math.unit(140, "lb"),
  24472. name: "Front",
  24473. image: {
  24474. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24475. extra: 438 / 410,
  24476. bottom: 0.75 / 439
  24477. }
  24478. },
  24479. },
  24480. [
  24481. {
  24482. name: "Shrunken",
  24483. height: math.unit(7.6, "cm")
  24484. },
  24485. {
  24486. name: "Human Scale",
  24487. height: math.unit(1.67, "meters")
  24488. },
  24489. {
  24490. name: "Wolxi Scale",
  24491. height: math.unit(36.7, "meters"),
  24492. default: true
  24493. },
  24494. ]
  24495. ))
  24496. characterMakers.push(() => makeCharacter(
  24497. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24498. {
  24499. front: {
  24500. height: math.unit(1.73, "meters"),
  24501. weight: math.unit(240, "lb"),
  24502. name: "Front",
  24503. image: {
  24504. source: "./media/characters/izue-two-mothers/front.svg",
  24505. extra: 469 / 437,
  24506. bottom: 1.24 / 470.6
  24507. }
  24508. },
  24509. },
  24510. [
  24511. {
  24512. name: "Shrunken",
  24513. height: math.unit(7.86, "cm")
  24514. },
  24515. {
  24516. name: "Human Scale",
  24517. height: math.unit(1.73, "meters")
  24518. },
  24519. {
  24520. name: "Wolxi Scale",
  24521. height: math.unit(38, "meters"),
  24522. default: true
  24523. },
  24524. ]
  24525. ))
  24526. characterMakers.push(() => makeCharacter(
  24527. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24528. {
  24529. front: {
  24530. height: math.unit(1.55, "meters"),
  24531. weight: math.unit(120, "lb"),
  24532. name: "Front",
  24533. image: {
  24534. source: "./media/characters/teeku-love-shack/front.svg",
  24535. extra: 387 / 362,
  24536. bottom: 1.51 / 388
  24537. }
  24538. },
  24539. },
  24540. [
  24541. {
  24542. name: "Shrunken",
  24543. height: math.unit(7, "cm")
  24544. },
  24545. {
  24546. name: "Human Scale",
  24547. height: math.unit(1.55, "meters")
  24548. },
  24549. {
  24550. name: "Wolxi Scale",
  24551. height: math.unit(34.1, "meters"),
  24552. default: true
  24553. },
  24554. ]
  24555. ))
  24556. characterMakers.push(() => makeCharacter(
  24557. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24558. {
  24559. front: {
  24560. height: math.unit(1.83, "meters"),
  24561. weight: math.unit(135, "lb"),
  24562. name: "Front",
  24563. image: {
  24564. source: "./media/characters/dejma-the-red/front.svg",
  24565. extra: 480 / 458,
  24566. bottom: 1.8 / 482
  24567. }
  24568. },
  24569. },
  24570. [
  24571. {
  24572. name: "Shrunken",
  24573. height: math.unit(8.3, "cm")
  24574. },
  24575. {
  24576. name: "Human Scale",
  24577. height: math.unit(1.83, "meters")
  24578. },
  24579. {
  24580. name: "Wolxi Scale",
  24581. height: math.unit(40, "meters"),
  24582. default: true
  24583. },
  24584. ]
  24585. ))
  24586. characterMakers.push(() => makeCharacter(
  24587. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24588. {
  24589. front: {
  24590. height: math.unit(1.78, "meters"),
  24591. weight: math.unit(65, "kg"),
  24592. name: "Front",
  24593. image: {
  24594. source: "./media/characters/aki/front.svg",
  24595. extra: 452 / 415
  24596. }
  24597. },
  24598. frontNsfw: {
  24599. height: math.unit(1.78, "meters"),
  24600. weight: math.unit(65, "kg"),
  24601. name: "Front (NSFW)",
  24602. image: {
  24603. source: "./media/characters/aki/front-nsfw.svg",
  24604. extra: 452 / 415
  24605. }
  24606. },
  24607. back: {
  24608. height: math.unit(1.78, "meters"),
  24609. weight: math.unit(65, "kg"),
  24610. name: "Back",
  24611. image: {
  24612. source: "./media/characters/aki/back.svg",
  24613. extra: 452 / 415
  24614. }
  24615. },
  24616. rump: {
  24617. height: math.unit(2.05, "feet"),
  24618. name: "Rump",
  24619. image: {
  24620. source: "./media/characters/aki/rump.svg"
  24621. }
  24622. },
  24623. dick: {
  24624. height: math.unit(0.95, "feet"),
  24625. name: "Dick",
  24626. image: {
  24627. source: "./media/characters/aki/dick.svg"
  24628. }
  24629. },
  24630. },
  24631. [
  24632. {
  24633. name: "Micro",
  24634. height: math.unit(15, "cm")
  24635. },
  24636. {
  24637. name: "Normal",
  24638. height: math.unit(178, "cm"),
  24639. default: true
  24640. },
  24641. {
  24642. name: "Macro",
  24643. height: math.unit(214, "m")
  24644. },
  24645. {
  24646. name: "Macro+",
  24647. height: math.unit(534, "m")
  24648. },
  24649. ]
  24650. ))
  24651. characterMakers.push(() => makeCharacter(
  24652. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24653. {
  24654. front: {
  24655. height: math.unit(5 + 5 / 12, "feet"),
  24656. weight: math.unit(120, "lb"),
  24657. name: "Front",
  24658. image: {
  24659. source: "./media/characters/ari/front.svg",
  24660. extra: 714.5 / 682,
  24661. bottom: 8 / 722.5
  24662. }
  24663. },
  24664. },
  24665. [
  24666. {
  24667. name: "Normal",
  24668. height: math.unit(5 + 5 / 12, "feet")
  24669. },
  24670. {
  24671. name: "Macro",
  24672. height: math.unit(100, "feet"),
  24673. default: true
  24674. },
  24675. {
  24676. name: "Megamacro",
  24677. height: math.unit(100, "miles")
  24678. },
  24679. {
  24680. name: "Gigamacro",
  24681. height: math.unit(80000, "miles")
  24682. },
  24683. ]
  24684. ))
  24685. characterMakers.push(() => makeCharacter(
  24686. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24687. {
  24688. side: {
  24689. height: math.unit(9, "feet"),
  24690. weight: math.unit(400, "kg"),
  24691. name: "Side",
  24692. image: {
  24693. source: "./media/characters/bolt/side.svg",
  24694. extra: 1126 / 896,
  24695. bottom: 60 / 1187.3,
  24696. }
  24697. },
  24698. },
  24699. [
  24700. {
  24701. name: "Micro",
  24702. height: math.unit(5, "inches")
  24703. },
  24704. {
  24705. name: "Normal",
  24706. height: math.unit(9, "feet"),
  24707. default: true
  24708. },
  24709. {
  24710. name: "Macro",
  24711. height: math.unit(700, "feet")
  24712. },
  24713. {
  24714. name: "Max Size",
  24715. height: math.unit(1.52e22, "yottameters")
  24716. },
  24717. ]
  24718. ))
  24719. characterMakers.push(() => makeCharacter(
  24720. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24721. {
  24722. front: {
  24723. height: math.unit(4.53, "meters"),
  24724. weight: math.unit(3, "tons"),
  24725. name: "Front",
  24726. image: {
  24727. source: "./media/characters/draekon-sylviar/front.svg",
  24728. extra: 1228 / 1068,
  24729. bottom: 41 / 1270
  24730. }
  24731. },
  24732. tail: {
  24733. height: math.unit(1.772, "meter"),
  24734. name: "Tail",
  24735. image: {
  24736. source: "./media/characters/draekon-sylviar/tail.svg"
  24737. }
  24738. },
  24739. head: {
  24740. height: math.unit(1.331, "meter"),
  24741. name: "Head",
  24742. image: {
  24743. source: "./media/characters/draekon-sylviar/head.svg"
  24744. }
  24745. },
  24746. hand: {
  24747. height: math.unit(0.564, "meter"),
  24748. name: "Hand",
  24749. image: {
  24750. source: "./media/characters/draekon-sylviar/hand.svg"
  24751. }
  24752. },
  24753. foot: {
  24754. height: math.unit(0.621, "meter"),
  24755. name: "Foot",
  24756. image: {
  24757. source: "./media/characters/draekon-sylviar/foot.svg",
  24758. bottom: 32 / 324
  24759. }
  24760. },
  24761. dick: {
  24762. height: math.unit(61, "cm"),
  24763. name: "Dick",
  24764. image: {
  24765. source: "./media/characters/draekon-sylviar/dick.svg"
  24766. }
  24767. },
  24768. dickseparated: {
  24769. height: math.unit(61, "cm"),
  24770. name: "Dick-separated",
  24771. image: {
  24772. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24773. }
  24774. },
  24775. },
  24776. [
  24777. {
  24778. name: "Small",
  24779. height: math.unit(4.53 / 2, "meters"),
  24780. default: true
  24781. },
  24782. {
  24783. name: "Normal",
  24784. height: math.unit(4.53, "meters"),
  24785. default: true
  24786. },
  24787. {
  24788. name: "Large",
  24789. height: math.unit(4.53 * 2, "meters"),
  24790. },
  24791. ]
  24792. ))
  24793. characterMakers.push(() => makeCharacter(
  24794. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24795. {
  24796. front: {
  24797. height: math.unit(6 + 2 / 12, "feet"),
  24798. weight: math.unit(180, "lb"),
  24799. name: "Front",
  24800. image: {
  24801. source: "./media/characters/brawler/front.svg",
  24802. extra: 3301 / 3027,
  24803. bottom: 138 / 3439
  24804. }
  24805. },
  24806. },
  24807. [
  24808. {
  24809. name: "Normal",
  24810. height: math.unit(6 + 2 / 12, "feet"),
  24811. default: true
  24812. },
  24813. ]
  24814. ))
  24815. characterMakers.push(() => makeCharacter(
  24816. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24817. {
  24818. front: {
  24819. height: math.unit(11, "feet"),
  24820. weight: math.unit(1000, "lb"),
  24821. name: "Front",
  24822. image: {
  24823. source: "./media/characters/alex/front.svg",
  24824. bottom: 44.5 / 620
  24825. }
  24826. },
  24827. },
  24828. [
  24829. {
  24830. name: "Micro",
  24831. height: math.unit(5, "inches")
  24832. },
  24833. {
  24834. name: "Normal",
  24835. height: math.unit(11, "feet"),
  24836. default: true
  24837. },
  24838. {
  24839. name: "Macro",
  24840. height: math.unit(9.5e9, "feet")
  24841. },
  24842. {
  24843. name: "Max Size",
  24844. height: math.unit(1.4e283, "yottameters")
  24845. },
  24846. ]
  24847. ))
  24848. characterMakers.push(() => makeCharacter(
  24849. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24850. {
  24851. female: {
  24852. height: math.unit(29.9, "m"),
  24853. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24854. name: "Female",
  24855. image: {
  24856. source: "./media/characters/zenari/female.svg",
  24857. extra: 3281.6 / 3217,
  24858. bottom: 72.2 / 3353
  24859. }
  24860. },
  24861. male: {
  24862. height: math.unit(27.7, "m"),
  24863. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24864. name: "Male",
  24865. image: {
  24866. source: "./media/characters/zenari/male.svg",
  24867. extra: 3008 / 2991,
  24868. bottom: 54.6 / 3069
  24869. }
  24870. },
  24871. },
  24872. [
  24873. {
  24874. name: "Macro",
  24875. height: math.unit(29.7, "meters"),
  24876. default: true
  24877. },
  24878. ]
  24879. ))
  24880. characterMakers.push(() => makeCharacter(
  24881. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24882. {
  24883. female: {
  24884. height: math.unit(23.8, "m"),
  24885. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24886. name: "Female",
  24887. image: {
  24888. source: "./media/characters/mactarian/female.svg",
  24889. extra: 2662 / 2569,
  24890. bottom: 73 / 2736
  24891. }
  24892. },
  24893. male: {
  24894. height: math.unit(23.8, "m"),
  24895. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24896. name: "Male",
  24897. image: {
  24898. source: "./media/characters/mactarian/male.svg",
  24899. extra: 2673 / 2600,
  24900. bottom: 76 / 2750
  24901. }
  24902. },
  24903. },
  24904. [
  24905. {
  24906. name: "Macro",
  24907. height: math.unit(23.8, "meters"),
  24908. default: true
  24909. },
  24910. ]
  24911. ))
  24912. characterMakers.push(() => makeCharacter(
  24913. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24914. {
  24915. female: {
  24916. height: math.unit(19.3, "m"),
  24917. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24918. name: "Female",
  24919. image: {
  24920. source: "./media/characters/umok/female.svg",
  24921. extra: 2186 / 2078,
  24922. bottom: 87 / 2277
  24923. }
  24924. },
  24925. male: {
  24926. height: math.unit(19.5, "m"),
  24927. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24928. name: "Male",
  24929. image: {
  24930. source: "./media/characters/umok/male.svg",
  24931. extra: 2233 / 2140,
  24932. bottom: 24.4 / 2258
  24933. }
  24934. },
  24935. },
  24936. [
  24937. {
  24938. name: "Macro",
  24939. height: math.unit(19.3, "meters"),
  24940. default: true
  24941. },
  24942. ]
  24943. ))
  24944. characterMakers.push(() => makeCharacter(
  24945. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24946. {
  24947. female: {
  24948. height: math.unit(26.15, "m"),
  24949. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24950. name: "Female",
  24951. image: {
  24952. source: "./media/characters/joraxian/female.svg",
  24953. extra: 2912 / 2824,
  24954. bottom: 36 / 2956
  24955. }
  24956. },
  24957. male: {
  24958. height: math.unit(25.4, "m"),
  24959. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24960. name: "Male",
  24961. image: {
  24962. source: "./media/characters/joraxian/male.svg",
  24963. extra: 2877 / 2721,
  24964. bottom: 82 / 2967
  24965. }
  24966. },
  24967. },
  24968. [
  24969. {
  24970. name: "Macro",
  24971. height: math.unit(26.15, "meters"),
  24972. default: true
  24973. },
  24974. ]
  24975. ))
  24976. characterMakers.push(() => makeCharacter(
  24977. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24978. {
  24979. female: {
  24980. height: math.unit(21.6, "m"),
  24981. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24982. name: "Female",
  24983. image: {
  24984. source: "./media/characters/sthara/female.svg",
  24985. extra: 2516 / 2347,
  24986. bottom: 21.5 / 2537
  24987. }
  24988. },
  24989. male: {
  24990. height: math.unit(24, "m"),
  24991. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24992. name: "Male",
  24993. image: {
  24994. source: "./media/characters/sthara/male.svg",
  24995. extra: 2732 / 2607,
  24996. bottom: 23 / 2732
  24997. }
  24998. },
  24999. },
  25000. [
  25001. {
  25002. name: "Macro",
  25003. height: math.unit(21.6, "meters"),
  25004. default: true
  25005. },
  25006. ]
  25007. ))
  25008. characterMakers.push(() => makeCharacter(
  25009. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25010. {
  25011. front: {
  25012. height: math.unit(6 + 4 / 12, "feet"),
  25013. weight: math.unit(175, "lb"),
  25014. name: "Front",
  25015. image: {
  25016. source: "./media/characters/luka-bryzant/front.svg",
  25017. extra: 311 / 289,
  25018. bottom: 4 / 315
  25019. }
  25020. },
  25021. back: {
  25022. height: math.unit(6 + 4 / 12, "feet"),
  25023. weight: math.unit(175, "lb"),
  25024. name: "Back",
  25025. image: {
  25026. source: "./media/characters/luka-bryzant/back.svg",
  25027. extra: 311 / 289,
  25028. bottom: 3.8 / 313.7
  25029. }
  25030. },
  25031. },
  25032. [
  25033. {
  25034. name: "Micro",
  25035. height: math.unit(10, "inches")
  25036. },
  25037. {
  25038. name: "Normal",
  25039. height: math.unit(6 + 4 / 12, "feet"),
  25040. default: true
  25041. },
  25042. {
  25043. name: "Large",
  25044. height: math.unit(12, "feet")
  25045. },
  25046. ]
  25047. ))
  25048. characterMakers.push(() => makeCharacter(
  25049. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25050. {
  25051. front: {
  25052. height: math.unit(5 + 7 / 12, "feet"),
  25053. weight: math.unit(185, "lb"),
  25054. name: "Front",
  25055. image: {
  25056. source: "./media/characters/aman-aquila/front.svg",
  25057. extra: 1013 / 976,
  25058. bottom: 45.6 / 1057
  25059. }
  25060. },
  25061. side: {
  25062. height: math.unit(5 + 7 / 12, "feet"),
  25063. weight: math.unit(185, "lb"),
  25064. name: "Side",
  25065. image: {
  25066. source: "./media/characters/aman-aquila/side.svg",
  25067. extra: 1054 / 1011,
  25068. bottom: 15 / 1070
  25069. }
  25070. },
  25071. back: {
  25072. height: math.unit(5 + 7 / 12, "feet"),
  25073. weight: math.unit(185, "lb"),
  25074. name: "Back",
  25075. image: {
  25076. source: "./media/characters/aman-aquila/back.svg",
  25077. extra: 1026 / 970,
  25078. bottom: 12 / 1039
  25079. }
  25080. },
  25081. head: {
  25082. height: math.unit(1.211, "feet"),
  25083. name: "Head",
  25084. image: {
  25085. source: "./media/characters/aman-aquila/head.svg",
  25086. }
  25087. },
  25088. },
  25089. [
  25090. {
  25091. name: "Minimicro",
  25092. height: math.unit(0.057, "inches")
  25093. },
  25094. {
  25095. name: "Micro",
  25096. height: math.unit(7, "inches")
  25097. },
  25098. {
  25099. name: "Mini",
  25100. height: math.unit(3 + 7 / 12, "feet")
  25101. },
  25102. {
  25103. name: "Normal",
  25104. height: math.unit(5 + 7 / 12, "feet"),
  25105. default: true
  25106. },
  25107. {
  25108. name: "Macro",
  25109. height: math.unit(157 + 7 / 12, "feet")
  25110. },
  25111. {
  25112. name: "Megamacro",
  25113. height: math.unit(1557 + 7 / 12, "feet")
  25114. },
  25115. {
  25116. name: "Gigamacro",
  25117. height: math.unit(15557 + 7 / 12, "feet")
  25118. },
  25119. ]
  25120. ))
  25121. characterMakers.push(() => makeCharacter(
  25122. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25123. {
  25124. front: {
  25125. height: math.unit(3 + 2 / 12, "inches"),
  25126. weight: math.unit(0.3, "ounces"),
  25127. name: "Front",
  25128. image: {
  25129. source: "./media/characters/hiphae/front.svg",
  25130. extra: 1931 / 1683,
  25131. bottom: 24 / 1955
  25132. }
  25133. },
  25134. },
  25135. [
  25136. {
  25137. name: "Normal",
  25138. height: math.unit(3 + 1 / 2, "inches"),
  25139. default: true
  25140. },
  25141. ]
  25142. ))
  25143. characterMakers.push(() => makeCharacter(
  25144. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25145. {
  25146. front: {
  25147. height: math.unit(5 + 10 / 12, "feet"),
  25148. weight: math.unit(165, "lb"),
  25149. name: "Front",
  25150. image: {
  25151. source: "./media/characters/nicky/front.svg",
  25152. extra: 3144 / 2886,
  25153. bottom: 45.6 / 3192
  25154. }
  25155. },
  25156. back: {
  25157. height: math.unit(5 + 10 / 12, "feet"),
  25158. weight: math.unit(165, "lb"),
  25159. name: "Back",
  25160. image: {
  25161. source: "./media/characters/nicky/back.svg",
  25162. extra: 3055 / 2804,
  25163. bottom: 28.4 / 3087
  25164. }
  25165. },
  25166. frontclothed: {
  25167. height: math.unit(5 + 10 / 12, "feet"),
  25168. weight: math.unit(165, "lb"),
  25169. name: "Front-clothed",
  25170. image: {
  25171. source: "./media/characters/nicky/front-clothed.svg",
  25172. extra: 3184.9 / 2926.9,
  25173. bottom: 86.5 / 3239.9
  25174. }
  25175. },
  25176. foot: {
  25177. height: math.unit(1.16, "feet"),
  25178. name: "Foot",
  25179. image: {
  25180. source: "./media/characters/nicky/foot.svg"
  25181. }
  25182. },
  25183. feet: {
  25184. height: math.unit(1.34, "feet"),
  25185. name: "Feet",
  25186. image: {
  25187. source: "./media/characters/nicky/feet.svg"
  25188. }
  25189. },
  25190. maw: {
  25191. height: math.unit(0.9, "feet"),
  25192. name: "Maw",
  25193. image: {
  25194. source: "./media/characters/nicky/maw.svg"
  25195. }
  25196. },
  25197. },
  25198. [
  25199. {
  25200. name: "Normal",
  25201. height: math.unit(5 + 10 / 12, "feet"),
  25202. default: true
  25203. },
  25204. {
  25205. name: "Macro",
  25206. height: math.unit(60, "feet")
  25207. },
  25208. {
  25209. name: "Megamacro",
  25210. height: math.unit(1, "mile")
  25211. },
  25212. ]
  25213. ))
  25214. characterMakers.push(() => makeCharacter(
  25215. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25216. {
  25217. side: {
  25218. height: math.unit(10, "feet"),
  25219. weight: math.unit(600, "lb"),
  25220. name: "Side",
  25221. image: {
  25222. source: "./media/characters/blair/side.svg",
  25223. bottom: 16.6 / 475,
  25224. extra: 458 / 431
  25225. }
  25226. },
  25227. },
  25228. [
  25229. {
  25230. name: "Micro",
  25231. height: math.unit(8, "inches")
  25232. },
  25233. {
  25234. name: "Normal",
  25235. height: math.unit(10, "feet"),
  25236. default: true
  25237. },
  25238. {
  25239. name: "Macro",
  25240. height: math.unit(180, "feet")
  25241. },
  25242. ]
  25243. ))
  25244. characterMakers.push(() => makeCharacter(
  25245. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25246. {
  25247. front: {
  25248. height: math.unit(5 + 4 / 12, "feet"),
  25249. weight: math.unit(125, "lb"),
  25250. name: "Front",
  25251. image: {
  25252. source: "./media/characters/fisher/front.svg",
  25253. extra: 444 / 390,
  25254. bottom: 2 / 444.8
  25255. }
  25256. },
  25257. },
  25258. [
  25259. {
  25260. name: "Micro",
  25261. height: math.unit(4, "inches")
  25262. },
  25263. {
  25264. name: "Normal",
  25265. height: math.unit(5 + 4 / 12, "feet"),
  25266. default: true
  25267. },
  25268. {
  25269. name: "Macro",
  25270. height: math.unit(100, "feet")
  25271. },
  25272. ]
  25273. ))
  25274. characterMakers.push(() => makeCharacter(
  25275. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25276. {
  25277. front: {
  25278. height: math.unit(6.71, "feet"),
  25279. weight: math.unit(200, "lb"),
  25280. capacity: math.unit(1000000, "people"),
  25281. name: "Front",
  25282. image: {
  25283. source: "./media/characters/gliss/front.svg",
  25284. extra: 2347 / 2231,
  25285. bottom: 113 / 2462
  25286. }
  25287. },
  25288. hammerspaceSize: {
  25289. height: math.unit(6.71 * 717, "feet"),
  25290. weight: math.unit(200, "lb"),
  25291. capacity: math.unit(1000000, "people"),
  25292. name: "Hammerspace Size",
  25293. image: {
  25294. source: "./media/characters/gliss/front.svg",
  25295. extra: 2347 / 2231,
  25296. bottom: 113 / 2462
  25297. }
  25298. },
  25299. },
  25300. [
  25301. {
  25302. name: "Normal",
  25303. height: math.unit(6.71, "feet"),
  25304. default: true
  25305. },
  25306. ]
  25307. ))
  25308. characterMakers.push(() => makeCharacter(
  25309. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25310. {
  25311. side: {
  25312. height: math.unit(1.44, "m"),
  25313. weight: math.unit(80, "kg"),
  25314. name: "Side",
  25315. image: {
  25316. source: "./media/characters/dune-anderson/side.svg",
  25317. bottom: 49 / 1426
  25318. }
  25319. },
  25320. },
  25321. [
  25322. {
  25323. name: "Wolf-sized",
  25324. height: math.unit(1.44, "meters")
  25325. },
  25326. {
  25327. name: "Normal",
  25328. height: math.unit(5.05, "meters"),
  25329. default: true
  25330. },
  25331. {
  25332. name: "Big",
  25333. height: math.unit(14.4, "meters")
  25334. },
  25335. {
  25336. name: "Huge",
  25337. height: math.unit(144, "meters")
  25338. },
  25339. ]
  25340. ))
  25341. characterMakers.push(() => makeCharacter(
  25342. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25343. {
  25344. front: {
  25345. height: math.unit(7, "feet"),
  25346. weight: math.unit(425, "lb"),
  25347. name: "Front",
  25348. image: {
  25349. source: "./media/characters/hind/front.svg",
  25350. extra: 2091 / 1860,
  25351. bottom: 129 / 2220
  25352. }
  25353. },
  25354. back: {
  25355. height: math.unit(7, "feet"),
  25356. weight: math.unit(425, "lb"),
  25357. name: "Back",
  25358. image: {
  25359. source: "./media/characters/hind/back.svg",
  25360. extra: 2091 / 1860,
  25361. bottom: 24.6 / 2309
  25362. }
  25363. },
  25364. tail: {
  25365. height: math.unit(2.8, "feet"),
  25366. name: "Tail",
  25367. image: {
  25368. source: "./media/characters/hind/tail.svg"
  25369. }
  25370. },
  25371. head: {
  25372. height: math.unit(2.55, "feet"),
  25373. name: "Head",
  25374. image: {
  25375. source: "./media/characters/hind/head.svg"
  25376. }
  25377. },
  25378. },
  25379. [
  25380. {
  25381. name: "XS",
  25382. height: math.unit(0.7, "feet")
  25383. },
  25384. {
  25385. name: "Normal",
  25386. height: math.unit(7, "feet"),
  25387. default: true
  25388. },
  25389. {
  25390. name: "XL",
  25391. height: math.unit(70, "feet")
  25392. },
  25393. ]
  25394. ))
  25395. characterMakers.push(() => makeCharacter(
  25396. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25397. {
  25398. front: {
  25399. height: math.unit(2.1, "meters"),
  25400. weight: math.unit(150, "lb"),
  25401. name: "Front",
  25402. image: {
  25403. source: "./media/characters/tharquench-sizestealer/front.svg",
  25404. extra: 1605/1470,
  25405. bottom: 36/1641
  25406. }
  25407. },
  25408. frontAlt: {
  25409. height: math.unit(2.1, "meters"),
  25410. weight: math.unit(150, "lb"),
  25411. name: "Front (Alt)",
  25412. image: {
  25413. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25414. extra: 2318 / 2063,
  25415. bottom: 93.4 / 2410
  25416. }
  25417. },
  25418. },
  25419. [
  25420. {
  25421. name: "Nano",
  25422. height: math.unit(1, "mm")
  25423. },
  25424. {
  25425. name: "Micro",
  25426. height: math.unit(1, "cm")
  25427. },
  25428. {
  25429. name: "Normal",
  25430. height: math.unit(2.1, "meters"),
  25431. default: true
  25432. },
  25433. ]
  25434. ))
  25435. characterMakers.push(() => makeCharacter(
  25436. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25437. {
  25438. front: {
  25439. height: math.unit(7 + 5 / 12, "feet"),
  25440. weight: math.unit(357, "lb"),
  25441. name: "Front",
  25442. image: {
  25443. source: "./media/characters/solex-draconov/front.svg",
  25444. extra: 1993 / 1865,
  25445. bottom: 117 / 2111
  25446. }
  25447. },
  25448. },
  25449. [
  25450. {
  25451. name: "Natural Height",
  25452. height: math.unit(7 + 5 / 12, "feet"),
  25453. default: true
  25454. },
  25455. {
  25456. name: "Macro",
  25457. height: math.unit(350, "feet")
  25458. },
  25459. {
  25460. name: "Macro+",
  25461. height: math.unit(1000, "feet")
  25462. },
  25463. {
  25464. name: "Megamacro",
  25465. height: math.unit(20, "km")
  25466. },
  25467. {
  25468. name: "Megamacro+",
  25469. height: math.unit(1000, "km")
  25470. },
  25471. {
  25472. name: "Gigamacro",
  25473. height: math.unit(2.5, "Gm")
  25474. },
  25475. {
  25476. name: "Teramacro",
  25477. height: math.unit(15, "Tm")
  25478. },
  25479. {
  25480. name: "Galactic",
  25481. height: math.unit(30, "Zm")
  25482. },
  25483. {
  25484. name: "Universal",
  25485. height: math.unit(21000, "Ym")
  25486. },
  25487. {
  25488. name: "Omniversal",
  25489. height: math.unit(9.861e50, "Ym")
  25490. },
  25491. {
  25492. name: "Existential",
  25493. height: math.unit(1e300, "meters")
  25494. },
  25495. ]
  25496. ))
  25497. characterMakers.push(() => makeCharacter(
  25498. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25499. {
  25500. side: {
  25501. height: math.unit(25, "feet"),
  25502. weight: math.unit(90000, "lb"),
  25503. name: "Side",
  25504. image: {
  25505. source: "./media/characters/mandarax/side.svg",
  25506. extra: 614 / 332,
  25507. bottom: 55 / 630
  25508. }
  25509. },
  25510. head: {
  25511. height: math.unit(11.4, "feet"),
  25512. name: "Head",
  25513. image: {
  25514. source: "./media/characters/mandarax/head.svg"
  25515. }
  25516. },
  25517. belly: {
  25518. height: math.unit(33, "feet"),
  25519. name: "Belly",
  25520. capacity: math.unit(500, "people"),
  25521. image: {
  25522. source: "./media/characters/mandarax/belly.svg"
  25523. }
  25524. },
  25525. dick: {
  25526. height: math.unit(8.46, "feet"),
  25527. name: "Dick",
  25528. image: {
  25529. source: "./media/characters/mandarax/dick.svg"
  25530. }
  25531. },
  25532. top: {
  25533. height: math.unit(28, "meters"),
  25534. name: "Top",
  25535. image: {
  25536. source: "./media/characters/mandarax/top.svg"
  25537. }
  25538. },
  25539. },
  25540. [
  25541. {
  25542. name: "Normal",
  25543. height: math.unit(25, "feet"),
  25544. default: true
  25545. },
  25546. ]
  25547. ))
  25548. characterMakers.push(() => makeCharacter(
  25549. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25550. {
  25551. front: {
  25552. height: math.unit(5, "feet"),
  25553. weight: math.unit(90, "lb"),
  25554. name: "Front",
  25555. image: {
  25556. source: "./media/characters/pixil/front.svg",
  25557. extra: 2000 / 1618,
  25558. bottom: 12.3 / 2011
  25559. }
  25560. },
  25561. },
  25562. [
  25563. {
  25564. name: "Normal",
  25565. height: math.unit(5, "feet"),
  25566. default: true
  25567. },
  25568. {
  25569. name: "Megamacro",
  25570. height: math.unit(10, "miles"),
  25571. },
  25572. ]
  25573. ))
  25574. characterMakers.push(() => makeCharacter(
  25575. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25576. {
  25577. front: {
  25578. height: math.unit(7 + 2 / 12, "feet"),
  25579. weight: math.unit(200, "lb"),
  25580. name: "Front",
  25581. image: {
  25582. source: "./media/characters/angel/front.svg",
  25583. extra: 1830 / 1737,
  25584. bottom: 22.6 / 1854,
  25585. }
  25586. },
  25587. },
  25588. [
  25589. {
  25590. name: "Normal",
  25591. height: math.unit(7 + 2 / 12, "feet"),
  25592. default: true
  25593. },
  25594. {
  25595. name: "Macro",
  25596. height: math.unit(1000, "feet")
  25597. },
  25598. {
  25599. name: "Megamacro",
  25600. height: math.unit(2, "miles")
  25601. },
  25602. {
  25603. name: "Gigamacro",
  25604. height: math.unit(20, "earths")
  25605. },
  25606. ]
  25607. ))
  25608. characterMakers.push(() => makeCharacter(
  25609. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25610. {
  25611. front: {
  25612. height: math.unit(5, "feet"),
  25613. weight: math.unit(180, "lb"),
  25614. name: "Front",
  25615. image: {
  25616. source: "./media/characters/mekana/front.svg",
  25617. extra: 1671 / 1605,
  25618. bottom: 3.5 / 1691
  25619. }
  25620. },
  25621. side: {
  25622. height: math.unit(5, "feet"),
  25623. weight: math.unit(180, "lb"),
  25624. name: "Side",
  25625. image: {
  25626. source: "./media/characters/mekana/side.svg",
  25627. extra: 1671 / 1605,
  25628. bottom: 3.5 / 1691
  25629. }
  25630. },
  25631. back: {
  25632. height: math.unit(5, "feet"),
  25633. weight: math.unit(180, "lb"),
  25634. name: "Back",
  25635. image: {
  25636. source: "./media/characters/mekana/back.svg",
  25637. extra: 1671 / 1605,
  25638. bottom: 3.5 / 1691
  25639. }
  25640. },
  25641. },
  25642. [
  25643. {
  25644. name: "Normal",
  25645. height: math.unit(5, "feet"),
  25646. default: true
  25647. },
  25648. ]
  25649. ))
  25650. characterMakers.push(() => makeCharacter(
  25651. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25652. {
  25653. front: {
  25654. height: math.unit(4 + 6 / 12, "feet"),
  25655. weight: math.unit(80, "lb"),
  25656. name: "Front",
  25657. image: {
  25658. source: "./media/characters/pixie/front.svg",
  25659. extra: 1924 / 1825,
  25660. bottom: 22.4 / 1946
  25661. }
  25662. },
  25663. },
  25664. [
  25665. {
  25666. name: "Normal",
  25667. height: math.unit(4 + 6 / 12, "feet"),
  25668. default: true
  25669. },
  25670. {
  25671. name: "Macro",
  25672. height: math.unit(40, "feet")
  25673. },
  25674. ]
  25675. ))
  25676. characterMakers.push(() => makeCharacter(
  25677. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25678. {
  25679. front: {
  25680. height: math.unit(2.1, "meters"),
  25681. weight: math.unit(200, "lb"),
  25682. name: "Front",
  25683. image: {
  25684. source: "./media/characters/the-lascivious/front.svg",
  25685. extra: 1 / 0.893,
  25686. bottom: 3.5 / 573.7
  25687. }
  25688. },
  25689. },
  25690. [
  25691. {
  25692. name: "Human Scale",
  25693. height: math.unit(2.1, "meters")
  25694. },
  25695. {
  25696. name: "Wolxi Scale",
  25697. height: math.unit(46.2, "m"),
  25698. default: true
  25699. },
  25700. {
  25701. name: "Boinker of Buildings",
  25702. height: math.unit(10, "km")
  25703. },
  25704. {
  25705. name: "Shagger of Skyscrapers",
  25706. height: math.unit(40, "km")
  25707. },
  25708. {
  25709. name: "Banger of Boroughs",
  25710. height: math.unit(4000, "km")
  25711. },
  25712. {
  25713. name: "Screwer of States",
  25714. height: math.unit(100000, "km")
  25715. },
  25716. {
  25717. name: "Pounder of Planets",
  25718. height: math.unit(2000000, "km")
  25719. },
  25720. ]
  25721. ))
  25722. characterMakers.push(() => makeCharacter(
  25723. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25724. {
  25725. front: {
  25726. height: math.unit(6, "feet"),
  25727. weight: math.unit(150, "lb"),
  25728. name: "Front",
  25729. image: {
  25730. source: "./media/characters/aj/front.svg",
  25731. extra: 2039 / 1562,
  25732. bottom: 40 / 2079
  25733. }
  25734. },
  25735. },
  25736. [
  25737. {
  25738. name: "Normal",
  25739. height: math.unit(11 + 6 / 12, "feet"),
  25740. default: true
  25741. },
  25742. {
  25743. name: "Megamacro",
  25744. height: math.unit(60, "megameters")
  25745. },
  25746. ]
  25747. ))
  25748. characterMakers.push(() => makeCharacter(
  25749. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25750. {
  25751. side: {
  25752. height: math.unit(31 + 8 / 12, "feet"),
  25753. weight: math.unit(75000, "kg"),
  25754. name: "Side",
  25755. image: {
  25756. source: "./media/characters/koros/side.svg",
  25757. extra: 1442 / 1297,
  25758. bottom: 122.7 / 1562
  25759. }
  25760. },
  25761. dicksKingsCrown: {
  25762. height: math.unit(6, "feet"),
  25763. name: "Dicks (King's Crown)",
  25764. image: {
  25765. source: "./media/characters/koros/dicks-kings-crown.svg"
  25766. }
  25767. },
  25768. dicksTailSet: {
  25769. height: math.unit(3, "feet"),
  25770. name: "Dicks (Tail Set)",
  25771. image: {
  25772. source: "./media/characters/koros/dicks-tail-set.svg"
  25773. }
  25774. },
  25775. dickCumming: {
  25776. height: math.unit(7.98, "feet"),
  25777. name: "Dick (Cumming)",
  25778. image: {
  25779. source: "./media/characters/koros/dick-cumming.svg"
  25780. }
  25781. },
  25782. dicksBack: {
  25783. height: math.unit(5.9, "feet"),
  25784. name: "Dicks (Back)",
  25785. image: {
  25786. source: "./media/characters/koros/dicks-back.svg"
  25787. }
  25788. },
  25789. dicksFront: {
  25790. height: math.unit(3.72, "feet"),
  25791. name: "Dicks (Front)",
  25792. image: {
  25793. source: "./media/characters/koros/dicks-front.svg"
  25794. }
  25795. },
  25796. dicksPeeking: {
  25797. height: math.unit(3.0, "feet"),
  25798. name: "Dicks (Peeking)",
  25799. image: {
  25800. source: "./media/characters/koros/dicks-peeking.svg"
  25801. }
  25802. },
  25803. eye: {
  25804. height: math.unit(1.7, "feet"),
  25805. name: "Eye",
  25806. image: {
  25807. source: "./media/characters/koros/eye.svg"
  25808. }
  25809. },
  25810. headFront: {
  25811. height: math.unit(11.69, "feet"),
  25812. name: "Head (Front)",
  25813. image: {
  25814. source: "./media/characters/koros/head-front.svg"
  25815. }
  25816. },
  25817. headSide: {
  25818. height: math.unit(14, "feet"),
  25819. name: "Head (Side)",
  25820. image: {
  25821. source: "./media/characters/koros/head-side.svg"
  25822. }
  25823. },
  25824. leg: {
  25825. height: math.unit(17, "feet"),
  25826. name: "Leg",
  25827. image: {
  25828. source: "./media/characters/koros/leg.svg"
  25829. }
  25830. },
  25831. mawSide: {
  25832. height: math.unit(12.8, "feet"),
  25833. name: "Maw (Side)",
  25834. image: {
  25835. source: "./media/characters/koros/maw-side.svg"
  25836. }
  25837. },
  25838. mawSpitting: {
  25839. height: math.unit(17, "feet"),
  25840. name: "Maw (Spitting)",
  25841. image: {
  25842. source: "./media/characters/koros/maw-spitting.svg"
  25843. }
  25844. },
  25845. slit: {
  25846. height: math.unit(2.8, "feet"),
  25847. name: "Slit",
  25848. image: {
  25849. source: "./media/characters/koros/slit.svg"
  25850. }
  25851. },
  25852. stomach: {
  25853. height: math.unit(6.8, "feet"),
  25854. capacity: math.unit(20, "people"),
  25855. name: "Stomach",
  25856. image: {
  25857. source: "./media/characters/koros/stomach.svg"
  25858. }
  25859. },
  25860. wingspanBottom: {
  25861. height: math.unit(114, "feet"),
  25862. name: "Wingspan (Bottom)",
  25863. image: {
  25864. source: "./media/characters/koros/wingspan-bottom.svg"
  25865. }
  25866. },
  25867. wingspanTop: {
  25868. height: math.unit(104, "feet"),
  25869. name: "Wingspan (Top)",
  25870. image: {
  25871. source: "./media/characters/koros/wingspan-top.svg"
  25872. }
  25873. },
  25874. },
  25875. [
  25876. {
  25877. name: "Normal",
  25878. height: math.unit(31 + 8 / 12, "feet"),
  25879. default: true
  25880. },
  25881. ]
  25882. ))
  25883. characterMakers.push(() => makeCharacter(
  25884. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25885. {
  25886. front: {
  25887. height: math.unit(18 + 5 / 12, "feet"),
  25888. weight: math.unit(3750, "kg"),
  25889. name: "Front",
  25890. image: {
  25891. source: "./media/characters/vexx/front.svg",
  25892. extra: 426 / 396,
  25893. bottom: 31.5 / 458
  25894. }
  25895. },
  25896. maw: {
  25897. height: math.unit(6, "feet"),
  25898. name: "Maw",
  25899. image: {
  25900. source: "./media/characters/vexx/maw.svg"
  25901. }
  25902. },
  25903. },
  25904. [
  25905. {
  25906. name: "Normal",
  25907. height: math.unit(18 + 5 / 12, "feet"),
  25908. default: true
  25909. },
  25910. ]
  25911. ))
  25912. characterMakers.push(() => makeCharacter(
  25913. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25914. {
  25915. front: {
  25916. height: math.unit(17 + 6 / 12, "feet"),
  25917. weight: math.unit(150, "lb"),
  25918. name: "Front",
  25919. image: {
  25920. source: "./media/characters/baadra/front.svg",
  25921. extra: 3137 / 2890,
  25922. bottom: 168.4 / 3305
  25923. }
  25924. },
  25925. back: {
  25926. height: math.unit(17 + 6 / 12, "feet"),
  25927. weight: math.unit(150, "lb"),
  25928. name: "Back",
  25929. image: {
  25930. source: "./media/characters/baadra/back.svg",
  25931. extra: 3142 / 2890,
  25932. bottom: 220 / 3371
  25933. }
  25934. },
  25935. head: {
  25936. height: math.unit(5.45, "feet"),
  25937. name: "Head",
  25938. image: {
  25939. source: "./media/characters/baadra/head.svg"
  25940. }
  25941. },
  25942. headAngry: {
  25943. height: math.unit(4.95, "feet"),
  25944. name: "Head (Angry)",
  25945. image: {
  25946. source: "./media/characters/baadra/head-angry.svg"
  25947. }
  25948. },
  25949. headOpen: {
  25950. height: math.unit(6, "feet"),
  25951. name: "Head (Open)",
  25952. image: {
  25953. source: "./media/characters/baadra/head-open.svg"
  25954. }
  25955. },
  25956. },
  25957. [
  25958. {
  25959. name: "Normal",
  25960. height: math.unit(17 + 6 / 12, "feet"),
  25961. default: true
  25962. },
  25963. ]
  25964. ))
  25965. characterMakers.push(() => makeCharacter(
  25966. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25967. {
  25968. front: {
  25969. height: math.unit(7 + 3 / 12, "feet"),
  25970. weight: math.unit(180, "lb"),
  25971. name: "Front",
  25972. image: {
  25973. source: "./media/characters/juri/front.svg",
  25974. extra: 1401 / 1237,
  25975. bottom: 18.5 / 1418
  25976. }
  25977. },
  25978. side: {
  25979. height: math.unit(7 + 3 / 12, "feet"),
  25980. weight: math.unit(180, "lb"),
  25981. name: "Side",
  25982. image: {
  25983. source: "./media/characters/juri/side.svg",
  25984. extra: 1424 / 1242,
  25985. bottom: 18.5 / 1447
  25986. }
  25987. },
  25988. sitting: {
  25989. height: math.unit(6, "feet"),
  25990. weight: math.unit(180, "lb"),
  25991. name: "Sitting",
  25992. image: {
  25993. source: "./media/characters/juri/sitting.svg",
  25994. extra: 1270 / 1143,
  25995. bottom: 100 / 1343
  25996. }
  25997. },
  25998. back: {
  25999. height: math.unit(7 + 3 / 12, "feet"),
  26000. weight: math.unit(180, "lb"),
  26001. name: "Back",
  26002. image: {
  26003. source: "./media/characters/juri/back.svg",
  26004. extra: 1377 / 1240,
  26005. bottom: 23.7 / 1405
  26006. }
  26007. },
  26008. maw: {
  26009. height: math.unit(2.8, "feet"),
  26010. name: "Maw",
  26011. image: {
  26012. source: "./media/characters/juri/maw.svg"
  26013. }
  26014. },
  26015. stomach: {
  26016. height: math.unit(0.89, "feet"),
  26017. capacity: math.unit(4, "liters"),
  26018. name: "Stomach",
  26019. image: {
  26020. source: "./media/characters/juri/stomach.svg"
  26021. }
  26022. },
  26023. },
  26024. [
  26025. {
  26026. name: "Normal",
  26027. height: math.unit(7 + 3 / 12, "feet"),
  26028. default: true
  26029. },
  26030. ]
  26031. ))
  26032. characterMakers.push(() => makeCharacter(
  26033. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26034. {
  26035. fox: {
  26036. height: math.unit(5 + 6 / 12, "feet"),
  26037. weight: math.unit(140, "lb"),
  26038. name: "Fox",
  26039. image: {
  26040. source: "./media/characters/maxene-sita/fox.svg",
  26041. extra: 146 / 138,
  26042. bottom: 2.1 / 148.19
  26043. }
  26044. },
  26045. foxLaying: {
  26046. height: math.unit(1.70, "feet"),
  26047. weight: math.unit(140, "lb"),
  26048. name: "Fox (Laying)",
  26049. image: {
  26050. source: "./media/characters/maxene-sita/fox-laying.svg",
  26051. extra: 910 / 572,
  26052. bottom: 71 / 981
  26053. }
  26054. },
  26055. kitsune: {
  26056. height: math.unit(10, "feet"),
  26057. weight: math.unit(800, "lb"),
  26058. name: "Kitsune",
  26059. image: {
  26060. source: "./media/characters/maxene-sita/kitsune.svg",
  26061. extra: 185 / 176,
  26062. bottom: 4.7 / 189.9
  26063. }
  26064. },
  26065. hellhound: {
  26066. height: math.unit(10, "feet"),
  26067. weight: math.unit(700, "lb"),
  26068. name: "Hellhound",
  26069. image: {
  26070. source: "./media/characters/maxene-sita/hellhound.svg",
  26071. extra: 1600 / 1545,
  26072. bottom: 81 / 1681
  26073. }
  26074. },
  26075. },
  26076. [
  26077. {
  26078. name: "Normal",
  26079. height: math.unit(5 + 6 / 12, "feet"),
  26080. default: true
  26081. },
  26082. ]
  26083. ))
  26084. characterMakers.push(() => makeCharacter(
  26085. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26086. {
  26087. front: {
  26088. height: math.unit(3 + 4 / 12, "feet"),
  26089. weight: math.unit(70, "lb"),
  26090. name: "Front",
  26091. image: {
  26092. source: "./media/characters/maia/front.svg",
  26093. extra: 227 / 219.5,
  26094. bottom: 40 / 267
  26095. }
  26096. },
  26097. back: {
  26098. height: math.unit(3 + 4 / 12, "feet"),
  26099. weight: math.unit(70, "lb"),
  26100. name: "Back",
  26101. image: {
  26102. source: "./media/characters/maia/back.svg",
  26103. extra: 237 / 225
  26104. }
  26105. },
  26106. },
  26107. [
  26108. {
  26109. name: "Normal",
  26110. height: math.unit(3 + 4 / 12, "feet"),
  26111. default: true
  26112. },
  26113. ]
  26114. ))
  26115. characterMakers.push(() => makeCharacter(
  26116. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26117. {
  26118. front: {
  26119. height: math.unit(5 + 10 / 12, "feet"),
  26120. weight: math.unit(197, "lb"),
  26121. name: "Front",
  26122. image: {
  26123. source: "./media/characters/jabaro/front.svg",
  26124. extra: 225 / 216,
  26125. bottom: 5.06 / 230
  26126. }
  26127. },
  26128. back: {
  26129. height: math.unit(5 + 10 / 12, "feet"),
  26130. weight: math.unit(197, "lb"),
  26131. name: "Back",
  26132. image: {
  26133. source: "./media/characters/jabaro/back.svg",
  26134. extra: 225 / 219,
  26135. bottom: 1.9 / 227
  26136. }
  26137. },
  26138. },
  26139. [
  26140. {
  26141. name: "Normal",
  26142. height: math.unit(5 + 10 / 12, "feet"),
  26143. default: true
  26144. },
  26145. ]
  26146. ))
  26147. characterMakers.push(() => makeCharacter(
  26148. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26149. {
  26150. front: {
  26151. height: math.unit(5 + 8 / 12, "feet"),
  26152. weight: math.unit(139, "lb"),
  26153. name: "Front",
  26154. image: {
  26155. source: "./media/characters/risa/front.svg",
  26156. extra: 270 / 260,
  26157. bottom: 11.2 / 282
  26158. }
  26159. },
  26160. back: {
  26161. height: math.unit(5 + 8 / 12, "feet"),
  26162. weight: math.unit(139, "lb"),
  26163. name: "Back",
  26164. image: {
  26165. source: "./media/characters/risa/back.svg",
  26166. extra: 264 / 255,
  26167. bottom: 4 / 268
  26168. }
  26169. },
  26170. },
  26171. [
  26172. {
  26173. name: "Normal",
  26174. height: math.unit(5 + 8 / 12, "feet"),
  26175. default: true
  26176. },
  26177. ]
  26178. ))
  26179. characterMakers.push(() => makeCharacter(
  26180. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26181. {
  26182. front: {
  26183. height: math.unit(2 + 11 / 12, "feet"),
  26184. weight: math.unit(30, "lb"),
  26185. name: "Front",
  26186. image: {
  26187. source: "./media/characters/weatley/front.svg",
  26188. bottom: 10.7 / 414,
  26189. extra: 403.5 / 362
  26190. }
  26191. },
  26192. back: {
  26193. height: math.unit(2 + 11 / 12, "feet"),
  26194. weight: math.unit(30, "lb"),
  26195. name: "Back",
  26196. image: {
  26197. source: "./media/characters/weatley/back.svg",
  26198. bottom: 10.7 / 414,
  26199. extra: 403.5 / 362
  26200. }
  26201. },
  26202. },
  26203. [
  26204. {
  26205. name: "Normal",
  26206. height: math.unit(2 + 11 / 12, "feet"),
  26207. default: true
  26208. },
  26209. ]
  26210. ))
  26211. characterMakers.push(() => makeCharacter(
  26212. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26213. {
  26214. front: {
  26215. height: math.unit(5 + 2 / 12, "feet"),
  26216. weight: math.unit(50, "kg"),
  26217. name: "Front",
  26218. image: {
  26219. source: "./media/characters/mercury-crescent/front.svg",
  26220. extra: 1088 / 1033,
  26221. bottom: 18.9 / 1109
  26222. }
  26223. },
  26224. },
  26225. [
  26226. {
  26227. name: "Normal",
  26228. height: math.unit(5 + 2 / 12, "feet"),
  26229. default: true
  26230. },
  26231. ]
  26232. ))
  26233. characterMakers.push(() => makeCharacter(
  26234. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26235. {
  26236. front: {
  26237. height: math.unit(2, "feet"),
  26238. weight: math.unit(15, "kg"),
  26239. name: "Front",
  26240. image: {
  26241. source: "./media/characters/diamond-jones/front.svg",
  26242. extra: 727/723,
  26243. bottom: 46/773
  26244. }
  26245. },
  26246. },
  26247. [
  26248. {
  26249. name: "Normal",
  26250. height: math.unit(2, "feet"),
  26251. default: true
  26252. },
  26253. ]
  26254. ))
  26255. characterMakers.push(() => makeCharacter(
  26256. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26257. {
  26258. front: {
  26259. height: math.unit(3, "feet"),
  26260. weight: math.unit(30, "kg"),
  26261. name: "Front",
  26262. image: {
  26263. source: "./media/characters/sweet-bit/front.svg",
  26264. extra: 675 / 567,
  26265. bottom: 27.7 / 703
  26266. }
  26267. },
  26268. },
  26269. [
  26270. {
  26271. name: "Normal",
  26272. height: math.unit(3, "feet"),
  26273. default: true
  26274. },
  26275. ]
  26276. ))
  26277. characterMakers.push(() => makeCharacter(
  26278. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26279. {
  26280. side: {
  26281. height: math.unit(9.178, "feet"),
  26282. weight: math.unit(500, "lb"),
  26283. name: "Side",
  26284. image: {
  26285. source: "./media/characters/umbrazen/side.svg",
  26286. extra: 1730 / 1473,
  26287. bottom: 34.6 / 1765
  26288. }
  26289. },
  26290. },
  26291. [
  26292. {
  26293. name: "Normal",
  26294. height: math.unit(9.178, "feet"),
  26295. default: true
  26296. },
  26297. ]
  26298. ))
  26299. characterMakers.push(() => makeCharacter(
  26300. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26301. {
  26302. front: {
  26303. height: math.unit(10, "feet"),
  26304. weight: math.unit(750, "lb"),
  26305. name: "Front",
  26306. image: {
  26307. source: "./media/characters/arlist/front.svg",
  26308. extra: 961 / 778,
  26309. bottom: 6.2 / 986
  26310. }
  26311. },
  26312. },
  26313. [
  26314. {
  26315. name: "Normal",
  26316. height: math.unit(10, "feet"),
  26317. default: true
  26318. },
  26319. ]
  26320. ))
  26321. characterMakers.push(() => makeCharacter(
  26322. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26323. {
  26324. front: {
  26325. height: math.unit(5 + 1 / 12, "feet"),
  26326. weight: math.unit(110, "lb"),
  26327. name: "Front",
  26328. image: {
  26329. source: "./media/characters/aradel/front.svg",
  26330. extra: 324 / 303,
  26331. bottom: 3.6 / 329.4
  26332. }
  26333. },
  26334. },
  26335. [
  26336. {
  26337. name: "Normal",
  26338. height: math.unit(5 + 1 / 12, "feet"),
  26339. default: true
  26340. },
  26341. ]
  26342. ))
  26343. characterMakers.push(() => makeCharacter(
  26344. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26345. {
  26346. front: {
  26347. height: math.unit(3 + 8 / 12, "feet"),
  26348. weight: math.unit(50, "lb"),
  26349. name: "Front",
  26350. image: {
  26351. source: "./media/characters/serryn/front.svg",
  26352. extra: 1792 / 1656,
  26353. bottom: 43.5 / 1840
  26354. }
  26355. },
  26356. },
  26357. [
  26358. {
  26359. name: "Normal",
  26360. height: math.unit(3 + 8 / 12, "feet"),
  26361. default: true
  26362. },
  26363. ]
  26364. ))
  26365. characterMakers.push(() => makeCharacter(
  26366. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26367. {
  26368. front: {
  26369. height: math.unit(7 + 10 / 12, "feet"),
  26370. weight: math.unit(255, "lb"),
  26371. name: "Front",
  26372. image: {
  26373. source: "./media/characters/xavier-thyme/front.svg",
  26374. extra: 3733 / 3642,
  26375. bottom: 131 / 3869
  26376. }
  26377. },
  26378. frontRaven: {
  26379. height: math.unit(7 + 10 / 12, "feet"),
  26380. weight: math.unit(255, "lb"),
  26381. name: "Front (Raven)",
  26382. image: {
  26383. source: "./media/characters/xavier-thyme/front-raven.svg",
  26384. extra: 4385 / 3642,
  26385. bottom: 131 / 4517
  26386. }
  26387. },
  26388. },
  26389. [
  26390. {
  26391. name: "Normal",
  26392. height: math.unit(7 + 10 / 12, "feet"),
  26393. default: true
  26394. },
  26395. ]
  26396. ))
  26397. characterMakers.push(() => makeCharacter(
  26398. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26399. {
  26400. front: {
  26401. height: math.unit(1.6, "m"),
  26402. weight: math.unit(50, "kg"),
  26403. name: "Front",
  26404. image: {
  26405. source: "./media/characters/kiki/front.svg",
  26406. extra: 4682 / 3610,
  26407. bottom: 115 / 4777
  26408. }
  26409. },
  26410. },
  26411. [
  26412. {
  26413. name: "Normal",
  26414. height: math.unit(1.6, "meters"),
  26415. default: true
  26416. },
  26417. ]
  26418. ))
  26419. characterMakers.push(() => makeCharacter(
  26420. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26421. {
  26422. front: {
  26423. height: math.unit(50, "m"),
  26424. weight: math.unit(500, "tonnes"),
  26425. name: "Front",
  26426. image: {
  26427. source: "./media/characters/ryoko/front.svg",
  26428. extra: 4632 / 3926,
  26429. bottom: 193 / 4823
  26430. }
  26431. },
  26432. },
  26433. [
  26434. {
  26435. name: "Normal",
  26436. height: math.unit(50, "meters"),
  26437. default: true
  26438. },
  26439. ]
  26440. ))
  26441. characterMakers.push(() => makeCharacter(
  26442. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26443. {
  26444. front: {
  26445. height: math.unit(30, "m"),
  26446. weight: math.unit(22, "tonnes"),
  26447. name: "Front",
  26448. image: {
  26449. source: "./media/characters/elio/front.svg",
  26450. extra: 4582 / 3720,
  26451. bottom: 236 / 4828
  26452. }
  26453. },
  26454. },
  26455. [
  26456. {
  26457. name: "Normal",
  26458. height: math.unit(30, "meters"),
  26459. default: true
  26460. },
  26461. ]
  26462. ))
  26463. characterMakers.push(() => makeCharacter(
  26464. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26465. {
  26466. front: {
  26467. height: math.unit(6 + 3 / 12, "feet"),
  26468. weight: math.unit(120, "lb"),
  26469. name: "Front",
  26470. image: {
  26471. source: "./media/characters/azura/front.svg",
  26472. extra: 1149 / 1135,
  26473. bottom: 45 / 1194
  26474. }
  26475. },
  26476. frontClothed: {
  26477. height: math.unit(6 + 3 / 12, "feet"),
  26478. weight: math.unit(120, "lb"),
  26479. name: "Front (Clothed)",
  26480. image: {
  26481. source: "./media/characters/azura/front-clothed.svg",
  26482. extra: 1149 / 1135,
  26483. bottom: 45 / 1194
  26484. }
  26485. },
  26486. },
  26487. [
  26488. {
  26489. name: "Normal",
  26490. height: math.unit(6 + 3 / 12, "feet"),
  26491. default: true
  26492. },
  26493. {
  26494. name: "Macro",
  26495. height: math.unit(20 + 6 / 12, "feet")
  26496. },
  26497. {
  26498. name: "Megamacro",
  26499. height: math.unit(12, "miles")
  26500. },
  26501. {
  26502. name: "Gigamacro",
  26503. height: math.unit(10000, "miles")
  26504. },
  26505. {
  26506. name: "Teramacro",
  26507. height: math.unit(900000, "miles")
  26508. },
  26509. ]
  26510. ))
  26511. characterMakers.push(() => makeCharacter(
  26512. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26513. {
  26514. front: {
  26515. height: math.unit(12, "feet"),
  26516. weight: math.unit(1, "ton"),
  26517. capacity: math.unit(660000, "gallons"),
  26518. name: "Front",
  26519. image: {
  26520. source: "./media/characters/zeus/front.svg",
  26521. extra: 5005 / 4717,
  26522. bottom: 363 / 5388
  26523. }
  26524. },
  26525. },
  26526. [
  26527. {
  26528. name: "Normal",
  26529. height: math.unit(12, "feet")
  26530. },
  26531. {
  26532. name: "Preferred Size",
  26533. height: math.unit(0.5, "miles"),
  26534. default: true
  26535. },
  26536. {
  26537. name: "Giga Horse",
  26538. height: math.unit(300, "miles")
  26539. },
  26540. {
  26541. name: "Riding Planets",
  26542. height: math.unit(30, "megameters")
  26543. },
  26544. {
  26545. name: "Cosmic Giant",
  26546. height: math.unit(3, "zettameters")
  26547. },
  26548. {
  26549. name: "Breeding God",
  26550. height: math.unit(9.92e22, "yottameters")
  26551. },
  26552. ]
  26553. ))
  26554. characterMakers.push(() => makeCharacter(
  26555. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26556. {
  26557. side: {
  26558. height: math.unit(9, "feet"),
  26559. weight: math.unit(1500, "kg"),
  26560. name: "Side",
  26561. image: {
  26562. source: "./media/characters/fang/side.svg",
  26563. extra: 924 / 866,
  26564. bottom: 47.5 / 972.3
  26565. }
  26566. },
  26567. },
  26568. [
  26569. {
  26570. name: "Normal",
  26571. height: math.unit(9, "feet"),
  26572. default: true
  26573. },
  26574. {
  26575. name: "Macro",
  26576. height: math.unit(75 + 6 / 12, "feet")
  26577. },
  26578. {
  26579. name: "Teramacro",
  26580. height: math.unit(50000, "miles")
  26581. },
  26582. ]
  26583. ))
  26584. characterMakers.push(() => makeCharacter(
  26585. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26586. {
  26587. front: {
  26588. height: math.unit(10, "feet"),
  26589. weight: math.unit(2, "tons"),
  26590. name: "Front",
  26591. image: {
  26592. source: "./media/characters/rekhit/front.svg",
  26593. extra: 2796 / 2590,
  26594. bottom: 225 / 3022
  26595. }
  26596. },
  26597. },
  26598. [
  26599. {
  26600. name: "Normal",
  26601. height: math.unit(10, "feet"),
  26602. default: true
  26603. },
  26604. {
  26605. name: "Macro",
  26606. height: math.unit(500, "feet")
  26607. },
  26608. ]
  26609. ))
  26610. characterMakers.push(() => makeCharacter(
  26611. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26612. {
  26613. front: {
  26614. height: math.unit(7 + 6.451 / 12, "feet"),
  26615. weight: math.unit(310, "lb"),
  26616. name: "Front",
  26617. image: {
  26618. source: "./media/characters/dahlia-verrick/front.svg",
  26619. extra: 1488 / 1365,
  26620. bottom: 6.2 / 1495
  26621. }
  26622. },
  26623. back: {
  26624. height: math.unit(7 + 6.451 / 12, "feet"),
  26625. weight: math.unit(310, "lb"),
  26626. name: "Back",
  26627. image: {
  26628. source: "./media/characters/dahlia-verrick/back.svg",
  26629. extra: 1472 / 1351,
  26630. bottom: 5.28 / 1477
  26631. }
  26632. },
  26633. frontBusiness: {
  26634. height: math.unit(7 + 6.451 / 12, "feet"),
  26635. weight: math.unit(200, "lb"),
  26636. name: "Front (Business)",
  26637. image: {
  26638. source: "./media/characters/dahlia-verrick/front-business.svg",
  26639. extra: 1478 / 1381,
  26640. bottom: 5.5 / 1484
  26641. }
  26642. },
  26643. frontCasual: {
  26644. height: math.unit(7 + 6.451 / 12, "feet"),
  26645. weight: math.unit(200, "lb"),
  26646. name: "Front (Casual)",
  26647. image: {
  26648. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26649. extra: 1478 / 1381,
  26650. bottom: 5.5 / 1484
  26651. }
  26652. },
  26653. },
  26654. [
  26655. {
  26656. name: "Travel-Sized",
  26657. height: math.unit(7.45, "inches")
  26658. },
  26659. {
  26660. name: "Normal",
  26661. height: math.unit(7 + 6.451 / 12, "feet"),
  26662. default: true
  26663. },
  26664. {
  26665. name: "Hitting the Town",
  26666. height: math.unit(37 + 8 / 12, "feet")
  26667. },
  26668. {
  26669. name: "Stomp in the Suburbs",
  26670. height: math.unit(964 + 9.728 / 12, "feet")
  26671. },
  26672. {
  26673. name: "Sit on the City",
  26674. height: math.unit(61747 + 10.592 / 12, "feet")
  26675. },
  26676. {
  26677. name: "Glomp the Globe",
  26678. height: math.unit(252919327 + 4.832 / 12, "feet")
  26679. },
  26680. ]
  26681. ))
  26682. characterMakers.push(() => makeCharacter(
  26683. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26684. {
  26685. front: {
  26686. height: math.unit(6 + 4 / 12, "feet"),
  26687. weight: math.unit(320, "lb"),
  26688. name: "Front",
  26689. image: {
  26690. source: "./media/characters/balina-mahigan/front.svg",
  26691. extra: 447 / 428,
  26692. bottom: 18 / 466
  26693. }
  26694. },
  26695. back: {
  26696. height: math.unit(6 + 4 / 12, "feet"),
  26697. weight: math.unit(320, "lb"),
  26698. name: "Back",
  26699. image: {
  26700. source: "./media/characters/balina-mahigan/back.svg",
  26701. extra: 445 / 428,
  26702. bottom: 4.07 / 448
  26703. }
  26704. },
  26705. arm: {
  26706. height: math.unit(1.88, "feet"),
  26707. name: "Arm",
  26708. image: {
  26709. source: "./media/characters/balina-mahigan/arm.svg"
  26710. }
  26711. },
  26712. backPort: {
  26713. height: math.unit(0.685, "feet"),
  26714. name: "Back Port",
  26715. image: {
  26716. source: "./media/characters/balina-mahigan/back-port.svg"
  26717. }
  26718. },
  26719. hoofpaw: {
  26720. height: math.unit(1.41, "feet"),
  26721. name: "Hoofpaw",
  26722. image: {
  26723. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26724. }
  26725. },
  26726. leftHandBack: {
  26727. height: math.unit(0.938, "feet"),
  26728. name: "Left Hand (Back)",
  26729. image: {
  26730. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26731. }
  26732. },
  26733. leftHandFront: {
  26734. height: math.unit(0.938, "feet"),
  26735. name: "Left Hand (Front)",
  26736. image: {
  26737. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26738. }
  26739. },
  26740. rightHandBack: {
  26741. height: math.unit(0.95, "feet"),
  26742. name: "Right Hand (Back)",
  26743. image: {
  26744. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26745. }
  26746. },
  26747. rightHandFront: {
  26748. height: math.unit(0.95, "feet"),
  26749. name: "Right Hand (Front)",
  26750. image: {
  26751. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26752. }
  26753. },
  26754. },
  26755. [
  26756. {
  26757. name: "Normal",
  26758. height: math.unit(6 + 4 / 12, "feet"),
  26759. default: true
  26760. },
  26761. ]
  26762. ))
  26763. characterMakers.push(() => makeCharacter(
  26764. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26765. {
  26766. front: {
  26767. height: math.unit(6, "feet"),
  26768. weight: math.unit(320, "lb"),
  26769. name: "Front",
  26770. image: {
  26771. source: "./media/characters/balina-mejeri/front.svg",
  26772. extra: 517 / 488,
  26773. bottom: 44.2 / 561
  26774. }
  26775. },
  26776. },
  26777. [
  26778. {
  26779. name: "Normal",
  26780. height: math.unit(6 + 4 / 12, "feet")
  26781. },
  26782. {
  26783. name: "Business",
  26784. height: math.unit(155, "feet"),
  26785. default: true
  26786. },
  26787. ]
  26788. ))
  26789. characterMakers.push(() => makeCharacter(
  26790. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26791. {
  26792. kneeling: {
  26793. height: math.unit(6 + 4 / 12, "feet"),
  26794. weight: math.unit(300 * 20, "lb"),
  26795. name: "Kneeling",
  26796. image: {
  26797. source: "./media/characters/balbarian/kneeling.svg",
  26798. extra: 922 / 862,
  26799. bottom: 42.4 / 965
  26800. }
  26801. },
  26802. },
  26803. [
  26804. {
  26805. name: "Normal",
  26806. height: math.unit(6 + 4 / 12, "feet")
  26807. },
  26808. {
  26809. name: "Treasured",
  26810. height: math.unit(18 + 9 / 12, "feet"),
  26811. default: true
  26812. },
  26813. {
  26814. name: "Macro",
  26815. height: math.unit(900, "feet")
  26816. },
  26817. ]
  26818. ))
  26819. characterMakers.push(() => makeCharacter(
  26820. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26821. {
  26822. front: {
  26823. height: math.unit(6 + 4 / 12, "feet"),
  26824. weight: math.unit(325, "lb"),
  26825. name: "Front",
  26826. image: {
  26827. source: "./media/characters/balina-amarini/front.svg",
  26828. extra: 415 / 403,
  26829. bottom: 19 / 433.4
  26830. }
  26831. },
  26832. back: {
  26833. height: math.unit(6 + 4 / 12, "feet"),
  26834. weight: math.unit(325, "lb"),
  26835. name: "Back",
  26836. image: {
  26837. source: "./media/characters/balina-amarini/back.svg",
  26838. extra: 415 / 403,
  26839. bottom: 13.5 / 432
  26840. }
  26841. },
  26842. overdrive: {
  26843. height: math.unit(6 + 4 / 12, "feet"),
  26844. weight: math.unit(400, "lb"),
  26845. name: "Overdrive",
  26846. image: {
  26847. source: "./media/characters/balina-amarini/overdrive.svg",
  26848. extra: 269 / 259,
  26849. bottom: 12 / 282
  26850. }
  26851. },
  26852. },
  26853. [
  26854. {
  26855. name: "Boom",
  26856. height: math.unit(9 + 10 / 12, "feet"),
  26857. default: true
  26858. },
  26859. {
  26860. name: "Macro",
  26861. height: math.unit(280, "feet")
  26862. },
  26863. ]
  26864. ))
  26865. characterMakers.push(() => makeCharacter(
  26866. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26867. {
  26868. goddess: {
  26869. height: math.unit(600, "feet"),
  26870. weight: math.unit(2000000, "tons"),
  26871. name: "Goddess",
  26872. image: {
  26873. source: "./media/characters/lady-kubwa/goddess.svg",
  26874. extra: 1240.5 / 1223,
  26875. bottom: 22 / 1263
  26876. }
  26877. },
  26878. goddesser: {
  26879. height: math.unit(900, "feet"),
  26880. weight: math.unit(20000000, "lb"),
  26881. name: "Goddess-er",
  26882. image: {
  26883. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26884. extra: 899 / 888,
  26885. bottom: 12.6 / 912
  26886. }
  26887. },
  26888. },
  26889. [
  26890. {
  26891. name: "Macro",
  26892. height: math.unit(600, "feet"),
  26893. default: true
  26894. },
  26895. {
  26896. name: "Megamacro",
  26897. height: math.unit(250, "miles")
  26898. },
  26899. ]
  26900. ))
  26901. characterMakers.push(() => makeCharacter(
  26902. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26903. {
  26904. front: {
  26905. height: math.unit(7 + 7 / 12, "feet"),
  26906. weight: math.unit(250, "lb"),
  26907. name: "Front",
  26908. image: {
  26909. source: "./media/characters/tala-grovehorn/front.svg",
  26910. extra: 2636 / 2525,
  26911. bottom: 147 / 2781
  26912. }
  26913. },
  26914. back: {
  26915. height: math.unit(7 + 7 / 12, "feet"),
  26916. weight: math.unit(250, "lb"),
  26917. name: "Back",
  26918. image: {
  26919. source: "./media/characters/tala-grovehorn/back.svg",
  26920. extra: 2635 / 2539,
  26921. bottom: 100 / 2732.8
  26922. }
  26923. },
  26924. mouth: {
  26925. height: math.unit(1.15, "feet"),
  26926. name: "Mouth",
  26927. image: {
  26928. source: "./media/characters/tala-grovehorn/mouth.svg"
  26929. }
  26930. },
  26931. dick: {
  26932. height: math.unit(2.36, "feet"),
  26933. name: "Dick",
  26934. image: {
  26935. source: "./media/characters/tala-grovehorn/dick.svg"
  26936. }
  26937. },
  26938. slit: {
  26939. height: math.unit(0.61, "feet"),
  26940. name: "Slit",
  26941. image: {
  26942. source: "./media/characters/tala-grovehorn/slit.svg"
  26943. }
  26944. },
  26945. },
  26946. [
  26947. ]
  26948. ))
  26949. characterMakers.push(() => makeCharacter(
  26950. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26951. {
  26952. front: {
  26953. height: math.unit(7 + 7 / 12, "feet"),
  26954. weight: math.unit(225, "lb"),
  26955. name: "Front",
  26956. image: {
  26957. source: "./media/characters/epona/front.svg",
  26958. extra: 2445 / 2290,
  26959. bottom: 251 / 2696
  26960. }
  26961. },
  26962. back: {
  26963. height: math.unit(7 + 7 / 12, "feet"),
  26964. weight: math.unit(225, "lb"),
  26965. name: "Back",
  26966. image: {
  26967. source: "./media/characters/epona/back.svg",
  26968. extra: 2546 / 2408,
  26969. bottom: 44 / 2589
  26970. }
  26971. },
  26972. genitals: {
  26973. height: math.unit(1.5, "feet"),
  26974. name: "Genitals",
  26975. image: {
  26976. source: "./media/characters/epona/genitals.svg"
  26977. }
  26978. },
  26979. },
  26980. [
  26981. {
  26982. name: "Normal",
  26983. height: math.unit(7 + 7 / 12, "feet"),
  26984. default: true
  26985. },
  26986. ]
  26987. ))
  26988. characterMakers.push(() => makeCharacter(
  26989. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26990. {
  26991. front: {
  26992. height: math.unit(7, "feet"),
  26993. weight: math.unit(518, "lb"),
  26994. name: "Front",
  26995. image: {
  26996. source: "./media/characters/avia-bloodbourn/front.svg",
  26997. extra: 1466 / 1350,
  26998. bottom: 65 / 1527
  26999. }
  27000. },
  27001. },
  27002. [
  27003. ]
  27004. ))
  27005. characterMakers.push(() => makeCharacter(
  27006. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27007. {
  27008. front: {
  27009. height: math.unit(9.35, "feet"),
  27010. weight: math.unit(600, "lb"),
  27011. name: "Front",
  27012. image: {
  27013. source: "./media/characters/amera/front.svg",
  27014. extra: 891 / 818,
  27015. bottom: 30 / 922.7
  27016. }
  27017. },
  27018. back: {
  27019. height: math.unit(9.35, "feet"),
  27020. weight: math.unit(600, "lb"),
  27021. name: "Back",
  27022. image: {
  27023. source: "./media/characters/amera/back.svg",
  27024. extra: 876 / 824,
  27025. bottom: 6.8 / 884
  27026. }
  27027. },
  27028. dick: {
  27029. height: math.unit(2.14, "feet"),
  27030. name: "Dick",
  27031. image: {
  27032. source: "./media/characters/amera/dick.svg"
  27033. }
  27034. },
  27035. },
  27036. [
  27037. {
  27038. name: "Normal",
  27039. height: math.unit(9.35, "feet"),
  27040. default: true
  27041. },
  27042. ]
  27043. ))
  27044. characterMakers.push(() => makeCharacter(
  27045. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27046. {
  27047. kneeling: {
  27048. height: math.unit(3 + 4 / 12, "feet"),
  27049. weight: math.unit(90, "lb"),
  27050. name: "Kneeling",
  27051. image: {
  27052. source: "./media/characters/rosewen/kneeling.svg",
  27053. extra: 1835 / 1571,
  27054. bottom: 27.7 / 1862
  27055. }
  27056. },
  27057. },
  27058. [
  27059. {
  27060. name: "Normal",
  27061. height: math.unit(3 + 4 / 12, "feet"),
  27062. default: true
  27063. },
  27064. ]
  27065. ))
  27066. characterMakers.push(() => makeCharacter(
  27067. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27068. {
  27069. front: {
  27070. height: math.unit(5 + 10 / 12, "feet"),
  27071. weight: math.unit(200, "lb"),
  27072. name: "Front",
  27073. image: {
  27074. source: "./media/characters/sabah/front.svg",
  27075. extra: 849 / 763,
  27076. bottom: 33.9 / 881
  27077. }
  27078. },
  27079. },
  27080. [
  27081. {
  27082. name: "Normal",
  27083. height: math.unit(5 + 10 / 12, "feet"),
  27084. default: true
  27085. },
  27086. ]
  27087. ))
  27088. characterMakers.push(() => makeCharacter(
  27089. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27090. {
  27091. front: {
  27092. height: math.unit(3 + 5 / 12, "feet"),
  27093. weight: math.unit(40, "kg"),
  27094. name: "Front",
  27095. image: {
  27096. source: "./media/characters/purple-flame/front.svg",
  27097. extra: 1577 / 1412,
  27098. bottom: 97 / 1694
  27099. }
  27100. },
  27101. frontDressed: {
  27102. height: math.unit(3 + 5 / 12, "feet"),
  27103. weight: math.unit(40, "kg"),
  27104. name: "Front (Dressed)",
  27105. image: {
  27106. source: "./media/characters/purple-flame/front-dressed.svg",
  27107. extra: 1577 / 1412,
  27108. bottom: 97 / 1694
  27109. }
  27110. },
  27111. headphones: {
  27112. height: math.unit(0.85, "feet"),
  27113. name: "Headphones",
  27114. image: {
  27115. source: "./media/characters/purple-flame/headphones.svg"
  27116. }
  27117. },
  27118. },
  27119. [
  27120. {
  27121. name: "Really Small",
  27122. height: math.unit(5, "cm")
  27123. },
  27124. {
  27125. name: "Micro",
  27126. height: math.unit(1 + 5 / 12, "feet")
  27127. },
  27128. {
  27129. name: "Normal",
  27130. height: math.unit(3 + 5 / 12, "feet"),
  27131. default: true
  27132. },
  27133. {
  27134. name: "Minimacro",
  27135. height: math.unit(125, "feet")
  27136. },
  27137. {
  27138. name: "Macro",
  27139. height: math.unit(0.5, "miles")
  27140. },
  27141. {
  27142. name: "Megamacro",
  27143. height: math.unit(50, "miles")
  27144. },
  27145. {
  27146. name: "Gigantic",
  27147. height: math.unit(750, "miles")
  27148. },
  27149. {
  27150. name: "Planetary",
  27151. height: math.unit(15000, "miles")
  27152. },
  27153. ]
  27154. ))
  27155. characterMakers.push(() => makeCharacter(
  27156. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27157. {
  27158. front: {
  27159. height: math.unit(14, "feet"),
  27160. weight: math.unit(959, "lb"),
  27161. name: "Front",
  27162. image: {
  27163. source: "./media/characters/arsenal/front.svg",
  27164. extra: 2357 / 2157,
  27165. bottom: 93 / 2458
  27166. }
  27167. },
  27168. },
  27169. [
  27170. {
  27171. name: "Normal",
  27172. height: math.unit(14, "feet"),
  27173. default: true
  27174. },
  27175. ]
  27176. ))
  27177. characterMakers.push(() => makeCharacter(
  27178. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27179. {
  27180. front: {
  27181. height: math.unit(6, "feet"),
  27182. weight: math.unit(150, "lb"),
  27183. name: "Front",
  27184. image: {
  27185. source: "./media/characters/adira/front.svg",
  27186. extra: 1078 / 1029,
  27187. bottom: 87 / 1166
  27188. }
  27189. },
  27190. },
  27191. [
  27192. {
  27193. name: "Micro",
  27194. height: math.unit(4, "inches"),
  27195. default: true
  27196. },
  27197. {
  27198. name: "Macro",
  27199. height: math.unit(50, "feet")
  27200. },
  27201. ]
  27202. ))
  27203. characterMakers.push(() => makeCharacter(
  27204. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27205. {
  27206. front: {
  27207. height: math.unit(16, "feet"),
  27208. weight: math.unit(1000, "lb"),
  27209. name: "Front",
  27210. image: {
  27211. source: "./media/characters/grim/front.svg",
  27212. extra: 622 / 614,
  27213. bottom: 18.1 / 642
  27214. }
  27215. },
  27216. back: {
  27217. height: math.unit(16, "feet"),
  27218. weight: math.unit(1000, "lb"),
  27219. name: "Back",
  27220. image: {
  27221. source: "./media/characters/grim/back.svg",
  27222. extra: 610.6 / 602,
  27223. bottom: 40.8 / 652
  27224. }
  27225. },
  27226. hunched: {
  27227. height: math.unit(9.75, "feet"),
  27228. weight: math.unit(1000, "lb"),
  27229. name: "Hunched",
  27230. image: {
  27231. source: "./media/characters/grim/hunched.svg",
  27232. extra: 304 / 297,
  27233. bottom: 35.4 / 394
  27234. }
  27235. },
  27236. },
  27237. [
  27238. {
  27239. name: "Normal",
  27240. height: math.unit(16, "feet"),
  27241. default: true
  27242. },
  27243. ]
  27244. ))
  27245. characterMakers.push(() => makeCharacter(
  27246. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27247. {
  27248. front: {
  27249. height: math.unit(2.3, "meters"),
  27250. weight: math.unit(300, "lb"),
  27251. name: "Front",
  27252. image: {
  27253. source: "./media/characters/sinja/front-sfw.svg",
  27254. extra: 1393 / 1294,
  27255. bottom: 70 / 1463
  27256. }
  27257. },
  27258. frontNsfw: {
  27259. height: math.unit(2.3, "meters"),
  27260. weight: math.unit(300, "lb"),
  27261. name: "Front (NSFW)",
  27262. image: {
  27263. source: "./media/characters/sinja/front-nsfw.svg",
  27264. extra: 1393 / 1294,
  27265. bottom: 70 / 1463
  27266. }
  27267. },
  27268. back: {
  27269. height: math.unit(2.3, "meters"),
  27270. weight: math.unit(300, "lb"),
  27271. name: "Back",
  27272. image: {
  27273. source: "./media/characters/sinja/back.svg",
  27274. extra: 1393 / 1294,
  27275. bottom: 70 / 1463
  27276. }
  27277. },
  27278. head: {
  27279. height: math.unit(1.771, "feet"),
  27280. name: "Head",
  27281. image: {
  27282. source: "./media/characters/sinja/head.svg"
  27283. }
  27284. },
  27285. slit: {
  27286. height: math.unit(0.8, "feet"),
  27287. name: "Slit",
  27288. image: {
  27289. source: "./media/characters/sinja/slit.svg"
  27290. }
  27291. },
  27292. },
  27293. [
  27294. {
  27295. name: "Normal",
  27296. height: math.unit(2.3, "meters")
  27297. },
  27298. {
  27299. name: "Macro",
  27300. height: math.unit(91, "meters"),
  27301. default: true
  27302. },
  27303. {
  27304. name: "Megamacro",
  27305. height: math.unit(91440, "meters")
  27306. },
  27307. {
  27308. name: "Gigamacro",
  27309. height: math.unit(60960000, "meters")
  27310. },
  27311. {
  27312. name: "Teramacro",
  27313. height: math.unit(9144000000, "meters")
  27314. },
  27315. ]
  27316. ))
  27317. characterMakers.push(() => makeCharacter(
  27318. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27319. {
  27320. front: {
  27321. height: math.unit(1.7, "meters"),
  27322. weight: math.unit(130, "lb"),
  27323. name: "Front",
  27324. image: {
  27325. source: "./media/characters/kyu/front.svg",
  27326. extra: 415 / 395,
  27327. bottom: 5 / 420
  27328. }
  27329. },
  27330. head: {
  27331. height: math.unit(1.75, "feet"),
  27332. name: "Head",
  27333. image: {
  27334. source: "./media/characters/kyu/head.svg"
  27335. }
  27336. },
  27337. foot: {
  27338. height: math.unit(0.81, "feet"),
  27339. name: "Foot",
  27340. image: {
  27341. source: "./media/characters/kyu/foot.svg"
  27342. }
  27343. },
  27344. },
  27345. [
  27346. {
  27347. name: "Normal",
  27348. height: math.unit(1.7, "meters")
  27349. },
  27350. {
  27351. name: "Macro",
  27352. height: math.unit(131, "feet"),
  27353. default: true
  27354. },
  27355. {
  27356. name: "Megamacro",
  27357. height: math.unit(91440, "meters")
  27358. },
  27359. {
  27360. name: "Gigamacro",
  27361. height: math.unit(60960000, "meters")
  27362. },
  27363. {
  27364. name: "Teramacro",
  27365. height: math.unit(9144000000, "meters")
  27366. },
  27367. ]
  27368. ))
  27369. characterMakers.push(() => makeCharacter(
  27370. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27371. {
  27372. front: {
  27373. height: math.unit(7 + 1 / 12, "feet"),
  27374. weight: math.unit(250, "lb"),
  27375. name: "Front",
  27376. image: {
  27377. source: "./media/characters/joey/front.svg",
  27378. extra: 1791 / 1537,
  27379. bottom: 28 / 1816
  27380. }
  27381. },
  27382. },
  27383. [
  27384. {
  27385. name: "Micro",
  27386. height: math.unit(3, "inches")
  27387. },
  27388. {
  27389. name: "Normal",
  27390. height: math.unit(7 + 1 / 12, "feet"),
  27391. default: true
  27392. },
  27393. ]
  27394. ))
  27395. characterMakers.push(() => makeCharacter(
  27396. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27397. {
  27398. front: {
  27399. height: math.unit(165, "cm"),
  27400. weight: math.unit(140, "lb"),
  27401. name: "Front",
  27402. image: {
  27403. source: "./media/characters/sam-evans/front.svg",
  27404. extra: 3417 / 3230,
  27405. bottom: 41.3 / 3417
  27406. }
  27407. },
  27408. frontSixTails: {
  27409. height: math.unit(165, "cm"),
  27410. weight: math.unit(140, "lb"),
  27411. name: "Front-six-tails",
  27412. image: {
  27413. source: "./media/characters/sam-evans/front-six-tails.svg",
  27414. extra: 3417 / 3230,
  27415. bottom: 41.3 / 3417
  27416. }
  27417. },
  27418. back: {
  27419. height: math.unit(165, "cm"),
  27420. weight: math.unit(140, "lb"),
  27421. name: "Back",
  27422. image: {
  27423. source: "./media/characters/sam-evans/back.svg",
  27424. extra: 3227 / 3032,
  27425. bottom: 6.8 / 3234
  27426. }
  27427. },
  27428. face: {
  27429. height: math.unit(0.68, "feet"),
  27430. name: "Face",
  27431. image: {
  27432. source: "./media/characters/sam-evans/face.svg"
  27433. }
  27434. },
  27435. },
  27436. [
  27437. {
  27438. name: "Normal",
  27439. height: math.unit(165, "cm"),
  27440. default: true
  27441. },
  27442. {
  27443. name: "Macro",
  27444. height: math.unit(100, "meters")
  27445. },
  27446. {
  27447. name: "Macro+",
  27448. height: math.unit(800, "meters")
  27449. },
  27450. {
  27451. name: "Macro++",
  27452. height: math.unit(3, "km")
  27453. },
  27454. {
  27455. name: "Macro+++",
  27456. height: math.unit(30, "km")
  27457. },
  27458. ]
  27459. ))
  27460. characterMakers.push(() => makeCharacter(
  27461. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27462. {
  27463. front: {
  27464. height: math.unit(10, "feet"),
  27465. weight: math.unit(750, "lb"),
  27466. name: "Front",
  27467. image: {
  27468. source: "./media/characters/juliet-a/front.svg",
  27469. extra: 1766 / 1720,
  27470. bottom: 43 / 1809
  27471. }
  27472. },
  27473. back: {
  27474. height: math.unit(10, "feet"),
  27475. weight: math.unit(750, "lb"),
  27476. name: "Back",
  27477. image: {
  27478. source: "./media/characters/juliet-a/back.svg",
  27479. extra: 1781 / 1734,
  27480. bottom: 35 / 1810,
  27481. }
  27482. },
  27483. },
  27484. [
  27485. {
  27486. name: "Normal",
  27487. height: math.unit(10, "feet"),
  27488. default: true
  27489. },
  27490. {
  27491. name: "Dragon Form",
  27492. height: math.unit(250, "feet")
  27493. },
  27494. {
  27495. name: "Macro",
  27496. height: math.unit(1000, "feet")
  27497. },
  27498. {
  27499. name: "Megamacro",
  27500. height: math.unit(10000, "feet")
  27501. }
  27502. ]
  27503. ))
  27504. characterMakers.push(() => makeCharacter(
  27505. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27506. {
  27507. regular: {
  27508. height: math.unit(7 + 3 / 12, "feet"),
  27509. weight: math.unit(260, "lb"),
  27510. name: "Regular",
  27511. image: {
  27512. source: "./media/characters/wild/regular.svg",
  27513. extra: 97.45 / 92,
  27514. bottom: 6.8 / 104.3
  27515. }
  27516. },
  27517. biggums: {
  27518. height: math.unit(8 + 6 / 12, "feet"),
  27519. weight: math.unit(425, "lb"),
  27520. name: "Biggums",
  27521. image: {
  27522. source: "./media/characters/wild/biggums.svg",
  27523. extra: 97.45 / 92,
  27524. bottom: 7.5 / 132.34
  27525. }
  27526. },
  27527. mawRegular: {
  27528. height: math.unit(1.24, "feet"),
  27529. name: "Maw (Regular)",
  27530. image: {
  27531. source: "./media/characters/wild/maw.svg"
  27532. }
  27533. },
  27534. mawBiggums: {
  27535. height: math.unit(1.47, "feet"),
  27536. name: "Maw (Biggums)",
  27537. image: {
  27538. source: "./media/characters/wild/maw.svg"
  27539. }
  27540. },
  27541. },
  27542. [
  27543. {
  27544. name: "Normal",
  27545. height: math.unit(7 + 3 / 12, "feet"),
  27546. default: true
  27547. },
  27548. ]
  27549. ))
  27550. characterMakers.push(() => makeCharacter(
  27551. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27552. {
  27553. front: {
  27554. height: math.unit(2.5, "meters"),
  27555. weight: math.unit(200, "kg"),
  27556. name: "Front",
  27557. image: {
  27558. source: "./media/characters/vidar/front.svg",
  27559. extra: 2994 / 2795,
  27560. bottom: 56 / 3061
  27561. }
  27562. },
  27563. back: {
  27564. height: math.unit(2.5, "meters"),
  27565. weight: math.unit(200, "kg"),
  27566. name: "Back",
  27567. image: {
  27568. source: "./media/characters/vidar/back.svg",
  27569. extra: 3131 / 2928,
  27570. bottom: 13.5 / 3141.5
  27571. }
  27572. },
  27573. feral: {
  27574. height: math.unit(2.5, "meters"),
  27575. weight: math.unit(2000, "kg"),
  27576. name: "Feral",
  27577. image: {
  27578. source: "./media/characters/vidar/feral.svg",
  27579. extra: 2790 / 1765,
  27580. bottom: 6 / 2796
  27581. }
  27582. },
  27583. },
  27584. [
  27585. {
  27586. name: "Normal",
  27587. height: math.unit(2.5, "meters"),
  27588. default: true
  27589. },
  27590. {
  27591. name: "Macro",
  27592. height: math.unit(100, "meters")
  27593. },
  27594. ]
  27595. ))
  27596. characterMakers.push(() => makeCharacter(
  27597. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27598. {
  27599. front: {
  27600. height: math.unit(5 + 9 / 12, "feet"),
  27601. weight: math.unit(120, "lb"),
  27602. name: "Front",
  27603. image: {
  27604. source: "./media/characters/ash/front.svg",
  27605. extra: 2189 / 1961,
  27606. bottom: 5.2 / 2194
  27607. }
  27608. },
  27609. },
  27610. [
  27611. {
  27612. name: "Normal",
  27613. height: math.unit(5 + 9 / 12, "feet"),
  27614. default: true
  27615. },
  27616. ]
  27617. ))
  27618. characterMakers.push(() => makeCharacter(
  27619. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27620. {
  27621. front: {
  27622. height: math.unit(9, "feet"),
  27623. weight: math.unit(10000, "lb"),
  27624. name: "Front",
  27625. image: {
  27626. source: "./media/characters/gygabite/front.svg",
  27627. bottom: 31.7 / 537.8,
  27628. extra: 505 / 370
  27629. }
  27630. },
  27631. },
  27632. [
  27633. {
  27634. name: "Normal",
  27635. height: math.unit(9, "feet"),
  27636. default: true
  27637. },
  27638. ]
  27639. ))
  27640. characterMakers.push(() => makeCharacter(
  27641. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27642. {
  27643. front: {
  27644. height: math.unit(12, "feet"),
  27645. weight: math.unit(35000, "lb"),
  27646. name: "Front",
  27647. image: {
  27648. source: "./media/characters/p0tat0/front.svg",
  27649. extra: 1065 / 921,
  27650. bottom: 55.7 / 1121.25
  27651. }
  27652. },
  27653. },
  27654. [
  27655. {
  27656. name: "Normal",
  27657. height: math.unit(12, "feet"),
  27658. default: true
  27659. },
  27660. ]
  27661. ))
  27662. characterMakers.push(() => makeCharacter(
  27663. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27664. {
  27665. side: {
  27666. height: math.unit(6.5, "feet"),
  27667. weight: math.unit(800, "lb"),
  27668. name: "Side",
  27669. image: {
  27670. source: "./media/characters/dusk/side.svg",
  27671. extra: 615 / 373,
  27672. bottom: 53 / 664
  27673. }
  27674. },
  27675. sitting: {
  27676. height: math.unit(7, "feet"),
  27677. weight: math.unit(800, "lb"),
  27678. name: "Sitting",
  27679. image: {
  27680. source: "./media/characters/dusk/sitting.svg",
  27681. extra: 753 / 425,
  27682. bottom: 33 / 774
  27683. }
  27684. },
  27685. head: {
  27686. height: math.unit(6.1, "feet"),
  27687. name: "Head",
  27688. image: {
  27689. source: "./media/characters/dusk/head.svg"
  27690. }
  27691. },
  27692. },
  27693. [
  27694. {
  27695. name: "Normal",
  27696. height: math.unit(7, "feet"),
  27697. default: true
  27698. },
  27699. ]
  27700. ))
  27701. characterMakers.push(() => makeCharacter(
  27702. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27703. {
  27704. front: {
  27705. height: math.unit(15, "feet"),
  27706. weight: math.unit(7000, "lb"),
  27707. name: "Front",
  27708. image: {
  27709. source: "./media/characters/jay-direwolf/front.svg",
  27710. extra: 1810 / 1732,
  27711. bottom: 66 / 1892
  27712. }
  27713. },
  27714. },
  27715. [
  27716. {
  27717. name: "Normal",
  27718. height: math.unit(15, "feet"),
  27719. default: true
  27720. },
  27721. ]
  27722. ))
  27723. characterMakers.push(() => makeCharacter(
  27724. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27725. {
  27726. front: {
  27727. height: math.unit(4 + 9 / 12, "feet"),
  27728. weight: math.unit(130, "lb"),
  27729. name: "Front",
  27730. image: {
  27731. source: "./media/characters/anchovie/front.svg",
  27732. extra: 382 / 350,
  27733. bottom: 25 / 409
  27734. }
  27735. },
  27736. back: {
  27737. height: math.unit(4 + 9 / 12, "feet"),
  27738. weight: math.unit(130, "lb"),
  27739. name: "Back",
  27740. image: {
  27741. source: "./media/characters/anchovie/back.svg",
  27742. extra: 385 / 352,
  27743. bottom: 16.6 / 402
  27744. }
  27745. },
  27746. frontDressed: {
  27747. height: math.unit(4 + 9 / 12, "feet"),
  27748. weight: math.unit(130, "lb"),
  27749. name: "Front (Dressed)",
  27750. image: {
  27751. source: "./media/characters/anchovie/front-dressed.svg",
  27752. extra: 382 / 350,
  27753. bottom: 25 / 409
  27754. }
  27755. },
  27756. backDressed: {
  27757. height: math.unit(4 + 9 / 12, "feet"),
  27758. weight: math.unit(130, "lb"),
  27759. name: "Back (Dressed)",
  27760. image: {
  27761. source: "./media/characters/anchovie/back-dressed.svg",
  27762. extra: 385 / 352,
  27763. bottom: 16.6 / 402
  27764. }
  27765. },
  27766. },
  27767. [
  27768. {
  27769. name: "Micro",
  27770. height: math.unit(6.4, "inches")
  27771. },
  27772. {
  27773. name: "Normal",
  27774. height: math.unit(4 + 9 / 12, "feet"),
  27775. default: true
  27776. },
  27777. ]
  27778. ))
  27779. characterMakers.push(() => makeCharacter(
  27780. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27781. {
  27782. front: {
  27783. height: math.unit(2, "meters"),
  27784. weight: math.unit(180, "lb"),
  27785. name: "Front",
  27786. image: {
  27787. source: "./media/characters/acidrenamon/front.svg",
  27788. extra: 987 / 890,
  27789. bottom: 22.8 / 1009
  27790. }
  27791. },
  27792. back: {
  27793. height: math.unit(2, "meters"),
  27794. weight: math.unit(180, "lb"),
  27795. name: "Back",
  27796. image: {
  27797. source: "./media/characters/acidrenamon/back.svg",
  27798. extra: 983 / 891,
  27799. bottom: 8.4 / 992
  27800. }
  27801. },
  27802. head: {
  27803. height: math.unit(1.92, "feet"),
  27804. name: "Head",
  27805. image: {
  27806. source: "./media/characters/acidrenamon/head.svg"
  27807. }
  27808. },
  27809. rump: {
  27810. height: math.unit(1.72, "feet"),
  27811. name: "Rump",
  27812. image: {
  27813. source: "./media/characters/acidrenamon/rump.svg"
  27814. }
  27815. },
  27816. tail: {
  27817. height: math.unit(4.2, "feet"),
  27818. name: "Tail",
  27819. image: {
  27820. source: "./media/characters/acidrenamon/tail.svg"
  27821. }
  27822. },
  27823. },
  27824. [
  27825. {
  27826. name: "Normal",
  27827. height: math.unit(2, "meters"),
  27828. default: true
  27829. },
  27830. {
  27831. name: "Minimacro",
  27832. height: math.unit(7, "meters")
  27833. },
  27834. {
  27835. name: "Macro",
  27836. height: math.unit(200, "meters")
  27837. },
  27838. {
  27839. name: "Gigamacro",
  27840. height: math.unit(0.2, "earths")
  27841. },
  27842. ]
  27843. ))
  27844. characterMakers.push(() => makeCharacter(
  27845. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27846. {
  27847. front: {
  27848. height: math.unit(152, "feet"),
  27849. name: "Front",
  27850. image: {
  27851. source: "./media/characters/kenzie-lee/front.svg",
  27852. extra: 1869/1774,
  27853. bottom: 128/1997
  27854. }
  27855. },
  27856. side: {
  27857. height: math.unit(86, "feet"),
  27858. name: "Side",
  27859. image: {
  27860. source: "./media/characters/kenzie-lee/side.svg",
  27861. extra: 930/815,
  27862. bottom: 177/1107
  27863. }
  27864. },
  27865. paw: {
  27866. height: math.unit(15, "feet"),
  27867. name: "Paw",
  27868. image: {
  27869. source: "./media/characters/kenzie-lee/paw.svg"
  27870. }
  27871. },
  27872. },
  27873. [
  27874. {
  27875. name: "Micro",
  27876. height: math.unit(1.5, "inches")
  27877. },
  27878. {
  27879. name: "Normal",
  27880. height: math.unit(152, "feet"),
  27881. default: true
  27882. },
  27883. {
  27884. name: "Megamacro",
  27885. height: math.unit(7, "miles")
  27886. },
  27887. {
  27888. name: "Gigamacro",
  27889. height: math.unit(8000, "miles")
  27890. },
  27891. ]
  27892. ))
  27893. characterMakers.push(() => makeCharacter(
  27894. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27895. {
  27896. side: {
  27897. height: math.unit(6, "feet"),
  27898. weight: math.unit(150, "lb"),
  27899. name: "Side",
  27900. image: {
  27901. source: "./media/characters/withers/side.svg",
  27902. extra: 1830 / 1728,
  27903. bottom: 96 / 1927
  27904. }
  27905. },
  27906. front: {
  27907. height: math.unit(6, "feet"),
  27908. weight: math.unit(150, "lb"),
  27909. name: "Front",
  27910. image: {
  27911. source: "./media/characters/withers/front.svg",
  27912. extra: 1514 / 1438,
  27913. bottom: 118 / 1632
  27914. }
  27915. },
  27916. },
  27917. [
  27918. {
  27919. name: "Macro",
  27920. height: math.unit(168, "feet"),
  27921. default: true
  27922. },
  27923. {
  27924. name: "Megamacro",
  27925. height: math.unit(15, "miles")
  27926. }
  27927. ]
  27928. ))
  27929. characterMakers.push(() => makeCharacter(
  27930. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27931. {
  27932. front: {
  27933. height: math.unit(6 + 7 / 12, "feet"),
  27934. weight: math.unit(250, "lb"),
  27935. name: "Front",
  27936. image: {
  27937. source: "./media/characters/nemoskii/front.svg",
  27938. extra: 2270 / 1734,
  27939. bottom: 86 / 2354
  27940. }
  27941. },
  27942. back: {
  27943. height: math.unit(6 + 7 / 12, "feet"),
  27944. weight: math.unit(250, "lb"),
  27945. name: "Back",
  27946. image: {
  27947. source: "./media/characters/nemoskii/back.svg",
  27948. extra: 1845 / 1788,
  27949. bottom: 10.5 / 1852
  27950. }
  27951. },
  27952. head: {
  27953. height: math.unit(1.31, "feet"),
  27954. name: "Head",
  27955. image: {
  27956. source: "./media/characters/nemoskii/head.svg"
  27957. }
  27958. },
  27959. },
  27960. [
  27961. {
  27962. name: "Micro",
  27963. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27964. },
  27965. {
  27966. name: "Normal",
  27967. height: math.unit(6 + 7 / 12, "feet"),
  27968. default: true
  27969. },
  27970. {
  27971. name: "Macro",
  27972. height: math.unit((6 + 7 / 12) * 150, "feet")
  27973. },
  27974. {
  27975. name: "Macro+",
  27976. height: math.unit((6 + 7 / 12) * 500, "feet")
  27977. },
  27978. {
  27979. name: "Megamacro",
  27980. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27981. },
  27982. ]
  27983. ))
  27984. characterMakers.push(() => makeCharacter(
  27985. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27986. {
  27987. front: {
  27988. height: math.unit(1, "mile"),
  27989. weight: math.unit(265261.9, "lb"),
  27990. name: "Front",
  27991. image: {
  27992. source: "./media/characters/shui/front.svg",
  27993. extra: 1633 / 1564,
  27994. bottom: 91.5 / 1726
  27995. }
  27996. },
  27997. },
  27998. [
  27999. {
  28000. name: "Macro",
  28001. height: math.unit(1, "mile"),
  28002. default: true
  28003. },
  28004. ]
  28005. ))
  28006. characterMakers.push(() => makeCharacter(
  28007. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28008. {
  28009. front: {
  28010. height: math.unit(12 + 6 / 12, "feet"),
  28011. weight: math.unit(1342, "lb"),
  28012. name: "Front",
  28013. image: {
  28014. source: "./media/characters/arokh-takakura/front.svg",
  28015. extra: 1089 / 1043,
  28016. bottom: 77.4 / 1176.7
  28017. }
  28018. },
  28019. back: {
  28020. height: math.unit(12 + 6 / 12, "feet"),
  28021. weight: math.unit(1342, "lb"),
  28022. name: "Back",
  28023. image: {
  28024. source: "./media/characters/arokh-takakura/back.svg",
  28025. extra: 1046 / 1019,
  28026. bottom: 102 / 1150
  28027. }
  28028. },
  28029. },
  28030. [
  28031. {
  28032. name: "Big",
  28033. height: math.unit(12 + 6 / 12, "feet"),
  28034. default: true
  28035. },
  28036. ]
  28037. ))
  28038. characterMakers.push(() => makeCharacter(
  28039. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28040. {
  28041. front: {
  28042. height: math.unit(5 + 6 / 12, "feet"),
  28043. weight: math.unit(150, "lb"),
  28044. name: "Front",
  28045. image: {
  28046. source: "./media/characters/theo/front.svg",
  28047. extra: 1184 / 1131,
  28048. bottom: 7.4 / 1191
  28049. }
  28050. },
  28051. },
  28052. [
  28053. {
  28054. name: "Micro",
  28055. height: math.unit(5, "inches")
  28056. },
  28057. {
  28058. name: "Normal",
  28059. height: math.unit(5 + 6 / 12, "feet"),
  28060. default: true
  28061. },
  28062. ]
  28063. ))
  28064. characterMakers.push(() => makeCharacter(
  28065. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28066. {
  28067. front: {
  28068. height: math.unit(5 + 9 / 12, "feet"),
  28069. weight: math.unit(130, "lb"),
  28070. name: "Front",
  28071. image: {
  28072. source: "./media/characters/cecelia-swift/front.svg",
  28073. extra: 502 / 484,
  28074. bottom: 23 / 523
  28075. }
  28076. },
  28077. back: {
  28078. height: math.unit(5 + 9 / 12, "feet"),
  28079. weight: math.unit(130, "lb"),
  28080. name: "Back",
  28081. image: {
  28082. source: "./media/characters/cecelia-swift/back.svg",
  28083. extra: 499 / 485,
  28084. bottom: 12 / 511
  28085. }
  28086. },
  28087. head: {
  28088. height: math.unit(0.90, "feet"),
  28089. name: "Head",
  28090. image: {
  28091. source: "./media/characters/cecelia-swift/head.svg"
  28092. }
  28093. },
  28094. rump: {
  28095. height: math.unit(1.75, "feet"),
  28096. name: "Rump",
  28097. image: {
  28098. source: "./media/characters/cecelia-swift/rump.svg"
  28099. }
  28100. },
  28101. },
  28102. [
  28103. {
  28104. name: "Normal",
  28105. height: math.unit(5 + 9 / 12, "feet"),
  28106. default: true
  28107. },
  28108. {
  28109. name: "Big",
  28110. height: math.unit(50, "feet")
  28111. },
  28112. {
  28113. name: "Macro",
  28114. height: math.unit(100, "feet")
  28115. },
  28116. {
  28117. name: "Macro+",
  28118. height: math.unit(500, "feet")
  28119. },
  28120. {
  28121. name: "Macro++",
  28122. height: math.unit(1000, "feet")
  28123. },
  28124. ]
  28125. ))
  28126. characterMakers.push(() => makeCharacter(
  28127. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28128. {
  28129. front: {
  28130. height: math.unit(6, "feet"),
  28131. weight: math.unit(150, "lb"),
  28132. name: "Front",
  28133. image: {
  28134. source: "./media/characters/kaunan/front.svg",
  28135. extra: 2890 / 2523,
  28136. bottom: 49 / 2939
  28137. }
  28138. },
  28139. },
  28140. [
  28141. {
  28142. name: "Macro",
  28143. height: math.unit(150, "feet"),
  28144. default: true
  28145. },
  28146. ]
  28147. ))
  28148. characterMakers.push(() => makeCharacter(
  28149. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28150. {
  28151. front: {
  28152. height: math.unit(175, "cm"),
  28153. weight: math.unit(60, "kg"),
  28154. name: "Front",
  28155. image: {
  28156. source: "./media/characters/fei/front.svg",
  28157. extra: 1873/1723,
  28158. bottom: 53/1926
  28159. }
  28160. },
  28161. },
  28162. [
  28163. {
  28164. name: "Mortal",
  28165. height: math.unit(175, "cm")
  28166. },
  28167. {
  28168. name: "Normal",
  28169. height: math.unit(3500, "m"),
  28170. default: true
  28171. },
  28172. {
  28173. name: "Stroll",
  28174. height: math.unit(17.5, "km")
  28175. },
  28176. {
  28177. name: "Showoff",
  28178. height: math.unit(175, "km")
  28179. },
  28180. ]
  28181. ))
  28182. characterMakers.push(() => makeCharacter(
  28183. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28184. {
  28185. front: {
  28186. height: math.unit(7, "feet"),
  28187. weight: math.unit(1000, "kg"),
  28188. name: "Front",
  28189. image: {
  28190. source: "./media/characters/edrax/front.svg",
  28191. extra: 2838 / 2550,
  28192. bottom: 130 / 2968
  28193. }
  28194. },
  28195. },
  28196. [
  28197. {
  28198. name: "Small",
  28199. height: math.unit(7, "feet")
  28200. },
  28201. {
  28202. name: "Normal",
  28203. height: math.unit(1500, "meters")
  28204. },
  28205. {
  28206. name: "Mega",
  28207. height: math.unit(12000000, "km"),
  28208. default: true
  28209. },
  28210. {
  28211. name: "Megamacro",
  28212. height: math.unit(10600000, "lightyears")
  28213. },
  28214. {
  28215. name: "Hypermacro",
  28216. height: math.unit(256, "yottameters")
  28217. },
  28218. ]
  28219. ))
  28220. characterMakers.push(() => makeCharacter(
  28221. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28222. {
  28223. front: {
  28224. height: math.unit(10, "feet"),
  28225. weight: math.unit(750, "lb"),
  28226. name: "Front",
  28227. image: {
  28228. source: "./media/characters/clove/front.svg",
  28229. extra: 1918/1751,
  28230. bottom: 52/1970
  28231. }
  28232. },
  28233. back: {
  28234. height: math.unit(10, "feet"),
  28235. weight: math.unit(750, "lb"),
  28236. name: "Back",
  28237. image: {
  28238. source: "./media/characters/clove/back.svg",
  28239. extra: 1912/1747,
  28240. bottom: 50/1962
  28241. }
  28242. },
  28243. },
  28244. [
  28245. {
  28246. name: "Normal",
  28247. height: math.unit(10, "feet"),
  28248. default: true
  28249. },
  28250. ]
  28251. ))
  28252. characterMakers.push(() => makeCharacter(
  28253. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28254. {
  28255. front: {
  28256. height: math.unit(4, "feet"),
  28257. weight: math.unit(50, "lb"),
  28258. name: "Front",
  28259. image: {
  28260. source: "./media/characters/alex-rabbit/front.svg",
  28261. extra: 507 / 458,
  28262. bottom: 18.5 / 527
  28263. }
  28264. },
  28265. back: {
  28266. height: math.unit(4, "feet"),
  28267. weight: math.unit(50, "lb"),
  28268. name: "Back",
  28269. image: {
  28270. source: "./media/characters/alex-rabbit/back.svg",
  28271. extra: 502 / 460,
  28272. bottom: 18.9 / 521
  28273. }
  28274. },
  28275. },
  28276. [
  28277. {
  28278. name: "Normal",
  28279. height: math.unit(4, "feet"),
  28280. default: true
  28281. },
  28282. ]
  28283. ))
  28284. characterMakers.push(() => makeCharacter(
  28285. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28286. {
  28287. front: {
  28288. height: math.unit(1 + 3 / 12, "feet"),
  28289. weight: math.unit(80, "lb"),
  28290. name: "Front",
  28291. image: {
  28292. source: "./media/characters/zander-rose/front.svg",
  28293. extra: 916 / 797,
  28294. bottom: 17 / 933
  28295. }
  28296. },
  28297. back: {
  28298. height: math.unit(1 + 3 / 12, "feet"),
  28299. weight: math.unit(80, "lb"),
  28300. name: "Back",
  28301. image: {
  28302. source: "./media/characters/zander-rose/back.svg",
  28303. extra: 903 / 779,
  28304. bottom: 31 / 934
  28305. }
  28306. },
  28307. },
  28308. [
  28309. {
  28310. name: "Normal",
  28311. height: math.unit(1 + 3 / 12, "feet"),
  28312. default: true
  28313. },
  28314. ]
  28315. ))
  28316. characterMakers.push(() => makeCharacter(
  28317. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28318. {
  28319. anthro: {
  28320. height: math.unit(6, "feet"),
  28321. weight: math.unit(150, "lb"),
  28322. name: "Anthro",
  28323. image: {
  28324. source: "./media/characters/razz/anthro.svg",
  28325. extra: 1437 / 1343,
  28326. bottom: 48 / 1485
  28327. }
  28328. },
  28329. feral: {
  28330. height: math.unit(6, "feet"),
  28331. weight: math.unit(150, "lb"),
  28332. name: "Feral",
  28333. image: {
  28334. source: "./media/characters/razz/feral.svg",
  28335. extra: 2569 / 1385,
  28336. bottom: 95 / 2664
  28337. }
  28338. },
  28339. },
  28340. [
  28341. {
  28342. name: "Normal",
  28343. height: math.unit(6, "feet"),
  28344. default: true
  28345. },
  28346. ]
  28347. ))
  28348. characterMakers.push(() => makeCharacter(
  28349. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28350. {
  28351. front: {
  28352. height: math.unit(9 + 4 / 12, "feet"),
  28353. weight: math.unit(500, "lb"),
  28354. name: "Front",
  28355. image: {
  28356. source: "./media/characters/morrigan/front.svg",
  28357. extra: 2707 / 2579,
  28358. bottom: 156 / 2863
  28359. }
  28360. },
  28361. },
  28362. [
  28363. {
  28364. name: "Normal",
  28365. height: math.unit(9 + 4 / 12, "feet"),
  28366. default: true
  28367. },
  28368. ]
  28369. ))
  28370. characterMakers.push(() => makeCharacter(
  28371. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28372. {
  28373. front: {
  28374. height: math.unit(5, "stories"),
  28375. weight: math.unit(4000, "lb"),
  28376. name: "Front",
  28377. image: {
  28378. source: "./media/characters/jenene/front.svg",
  28379. extra: 1780 / 1710,
  28380. bottom: 57 / 1837
  28381. }
  28382. },
  28383. },
  28384. [
  28385. {
  28386. name: "Normal",
  28387. height: math.unit(5, "stories"),
  28388. default: true
  28389. },
  28390. ]
  28391. ))
  28392. characterMakers.push(() => makeCharacter(
  28393. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28394. {
  28395. taurSfw: {
  28396. height: math.unit(10, "meters"),
  28397. weight: math.unit(17500, "kg"),
  28398. name: "Taur",
  28399. image: {
  28400. source: "./media/characters/faey/taur-sfw.svg",
  28401. extra: 1200 / 968,
  28402. bottom: 41 / 1241
  28403. }
  28404. },
  28405. chestmaw: {
  28406. height: math.unit(2.01, "meters"),
  28407. name: "Chestmaw",
  28408. image: {
  28409. source: "./media/characters/faey/chestmaw.svg"
  28410. }
  28411. },
  28412. foot: {
  28413. height: math.unit(2.43, "meters"),
  28414. name: "Foot",
  28415. image: {
  28416. source: "./media/characters/faey/foot.svg"
  28417. }
  28418. },
  28419. jaws: {
  28420. height: math.unit(1.66, "meters"),
  28421. name: "Jaws",
  28422. image: {
  28423. source: "./media/characters/faey/jaws.svg"
  28424. }
  28425. },
  28426. tongues: {
  28427. height: math.unit(2.01, "meters"),
  28428. name: "Tongues",
  28429. image: {
  28430. source: "./media/characters/faey/tongues.svg"
  28431. }
  28432. },
  28433. },
  28434. [
  28435. {
  28436. name: "Small",
  28437. height: math.unit(10, "meters"),
  28438. default: true
  28439. },
  28440. {
  28441. name: "Big",
  28442. height: math.unit(500000, "km")
  28443. },
  28444. ]
  28445. ))
  28446. characterMakers.push(() => makeCharacter(
  28447. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28448. {
  28449. front: {
  28450. height: math.unit(7, "feet"),
  28451. weight: math.unit(275, "lb"),
  28452. name: "Front",
  28453. image: {
  28454. source: "./media/characters/roku/front.svg",
  28455. extra: 903 / 878,
  28456. bottom: 37 / 940
  28457. }
  28458. },
  28459. },
  28460. [
  28461. {
  28462. name: "Normal",
  28463. height: math.unit(7, "feet"),
  28464. default: true
  28465. },
  28466. {
  28467. name: "Macro",
  28468. height: math.unit(500, "feet")
  28469. },
  28470. {
  28471. name: "Megamacro",
  28472. height: math.unit(200, "miles")
  28473. },
  28474. ]
  28475. ))
  28476. characterMakers.push(() => makeCharacter(
  28477. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28478. {
  28479. front: {
  28480. height: math.unit(6 + 2 / 12, "feet"),
  28481. weight: math.unit(150, "lb"),
  28482. name: "Front",
  28483. image: {
  28484. source: "./media/characters/lira/front.svg",
  28485. extra: 1727 / 1605,
  28486. bottom: 26 / 1753
  28487. }
  28488. },
  28489. back: {
  28490. height: math.unit(6 + 2 / 12, "feet"),
  28491. weight: math.unit(150, "lb"),
  28492. name: "Back",
  28493. image: {
  28494. source: "./media/characters/lira/back.svg",
  28495. extra: 1713/1621,
  28496. bottom: 20/1733
  28497. }
  28498. },
  28499. hand: {
  28500. height: math.unit(0.75, "feet"),
  28501. name: "Hand",
  28502. image: {
  28503. source: "./media/characters/lira/hand.svg"
  28504. }
  28505. },
  28506. maw: {
  28507. height: math.unit(0.65, "feet"),
  28508. name: "Maw",
  28509. image: {
  28510. source: "./media/characters/lira/maw.svg"
  28511. }
  28512. },
  28513. pawDigi: {
  28514. height: math.unit(1.6, "feet"),
  28515. name: "Paw Digi",
  28516. image: {
  28517. source: "./media/characters/lira/paw-digi.svg"
  28518. }
  28519. },
  28520. pawPlanti: {
  28521. height: math.unit(1.4, "feet"),
  28522. name: "Paw Planti",
  28523. image: {
  28524. source: "./media/characters/lira/paw-planti.svg"
  28525. }
  28526. },
  28527. },
  28528. [
  28529. {
  28530. name: "Normal",
  28531. height: math.unit(6 + 2 / 12, "feet"),
  28532. default: true
  28533. },
  28534. {
  28535. name: "Macro",
  28536. height: math.unit(100, "feet")
  28537. },
  28538. {
  28539. name: "Macro²",
  28540. height: math.unit(1600, "feet")
  28541. },
  28542. {
  28543. name: "Planetary",
  28544. height: math.unit(20, "earths")
  28545. },
  28546. ]
  28547. ))
  28548. characterMakers.push(() => makeCharacter(
  28549. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28550. {
  28551. front: {
  28552. height: math.unit(6, "feet"),
  28553. weight: math.unit(150, "lb"),
  28554. name: "Front",
  28555. image: {
  28556. source: "./media/characters/hadjet/front.svg",
  28557. extra: 1480 / 1346,
  28558. bottom: 26 / 1506
  28559. }
  28560. },
  28561. frontNsfw: {
  28562. height: math.unit(6, "feet"),
  28563. weight: math.unit(150, "lb"),
  28564. name: "Front (NSFW)",
  28565. image: {
  28566. source: "./media/characters/hadjet/front-nsfw.svg",
  28567. extra: 1440 / 1358,
  28568. bottom: 52 / 1492
  28569. }
  28570. },
  28571. },
  28572. [
  28573. {
  28574. name: "Macro",
  28575. height: math.unit(10, "stories"),
  28576. default: true
  28577. },
  28578. {
  28579. name: "Megamacro",
  28580. height: math.unit(1.5, "miles")
  28581. },
  28582. {
  28583. name: "Megamacro+",
  28584. height: math.unit(5, "miles")
  28585. },
  28586. ]
  28587. ))
  28588. characterMakers.push(() => makeCharacter(
  28589. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28590. {
  28591. side: {
  28592. height: math.unit(106, "feet"),
  28593. weight: math.unit(500, "tonnes"),
  28594. name: "Side",
  28595. image: {
  28596. source: "./media/characters/kodran/side.svg",
  28597. extra: 553 / 480,
  28598. bottom: 33 / 586
  28599. }
  28600. },
  28601. front: {
  28602. height: math.unit(132, "feet"),
  28603. weight: math.unit(500, "tonnes"),
  28604. name: "Front",
  28605. image: {
  28606. source: "./media/characters/kodran/front.svg",
  28607. extra: 667 / 643,
  28608. bottom: 42 / 709
  28609. }
  28610. },
  28611. flying: {
  28612. height: math.unit(350, "feet"),
  28613. weight: math.unit(500, "tonnes"),
  28614. name: "Flying",
  28615. image: {
  28616. source: "./media/characters/kodran/flying.svg"
  28617. }
  28618. },
  28619. foot: {
  28620. height: math.unit(33, "feet"),
  28621. name: "Foot",
  28622. image: {
  28623. source: "./media/characters/kodran/foot.svg"
  28624. }
  28625. },
  28626. footFront: {
  28627. height: math.unit(19, "feet"),
  28628. name: "Foot (Front)",
  28629. image: {
  28630. source: "./media/characters/kodran/foot-front.svg",
  28631. extra: 261 / 261,
  28632. bottom: 91 / 352
  28633. }
  28634. },
  28635. headFront: {
  28636. height: math.unit(53, "feet"),
  28637. name: "Head (Front)",
  28638. image: {
  28639. source: "./media/characters/kodran/head-front.svg"
  28640. }
  28641. },
  28642. headSide: {
  28643. height: math.unit(65, "feet"),
  28644. name: "Head (Side)",
  28645. image: {
  28646. source: "./media/characters/kodran/head-side.svg"
  28647. }
  28648. },
  28649. throat: {
  28650. height: math.unit(79, "feet"),
  28651. name: "Throat",
  28652. image: {
  28653. source: "./media/characters/kodran/throat.svg"
  28654. }
  28655. },
  28656. },
  28657. [
  28658. {
  28659. name: "Large",
  28660. height: math.unit(106, "feet"),
  28661. default: true
  28662. },
  28663. ]
  28664. ))
  28665. characterMakers.push(() => makeCharacter(
  28666. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28667. {
  28668. side: {
  28669. height: math.unit(11, "feet"),
  28670. weight: math.unit(150, "lb"),
  28671. name: "Side",
  28672. image: {
  28673. source: "./media/characters/pyxaron/side.svg",
  28674. extra: 305 / 195,
  28675. bottom: 17 / 322
  28676. }
  28677. },
  28678. },
  28679. [
  28680. {
  28681. name: "Normal",
  28682. height: math.unit(11, "feet"),
  28683. default: true
  28684. },
  28685. ]
  28686. ))
  28687. characterMakers.push(() => makeCharacter(
  28688. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28689. {
  28690. front: {
  28691. height: math.unit(6, "feet"),
  28692. weight: math.unit(150, "lb"),
  28693. name: "Front",
  28694. image: {
  28695. source: "./media/characters/meep/front.svg",
  28696. extra: 88 / 80,
  28697. bottom: 6 / 94
  28698. }
  28699. },
  28700. },
  28701. [
  28702. {
  28703. name: "Fun Sized",
  28704. height: math.unit(2, "inches"),
  28705. default: true
  28706. },
  28707. {
  28708. name: "Friend Sized",
  28709. height: math.unit(8, "inches")
  28710. },
  28711. ]
  28712. ))
  28713. characterMakers.push(() => makeCharacter(
  28714. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28715. {
  28716. front: {
  28717. height: math.unit(15, "feet"),
  28718. weight: math.unit(2500, "lb"),
  28719. name: "Front",
  28720. image: {
  28721. source: "./media/characters/holly-rabbit/front.svg",
  28722. extra: 1433 / 1233,
  28723. bottom: 125 / 1558
  28724. }
  28725. },
  28726. dick: {
  28727. height: math.unit(4.6, "feet"),
  28728. name: "Dick",
  28729. image: {
  28730. source: "./media/characters/holly-rabbit/dick.svg"
  28731. }
  28732. },
  28733. },
  28734. [
  28735. {
  28736. name: "Normal",
  28737. height: math.unit(15, "feet"),
  28738. default: true
  28739. },
  28740. {
  28741. name: "Macro",
  28742. height: math.unit(250, "feet")
  28743. },
  28744. {
  28745. name: "Macro+",
  28746. height: math.unit(2500, "feet")
  28747. },
  28748. ]
  28749. ))
  28750. characterMakers.push(() => makeCharacter(
  28751. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28752. {
  28753. front: {
  28754. height: math.unit(3.02, "meters"),
  28755. weight: math.unit(500, "kg"),
  28756. name: "Front",
  28757. image: {
  28758. source: "./media/characters/drena/front.svg",
  28759. extra: 282 / 243,
  28760. bottom: 8 / 290
  28761. }
  28762. },
  28763. side: {
  28764. height: math.unit(3.02, "meters"),
  28765. weight: math.unit(500, "kg"),
  28766. name: "Side",
  28767. image: {
  28768. source: "./media/characters/drena/side.svg",
  28769. extra: 280 / 245,
  28770. bottom: 10 / 290
  28771. }
  28772. },
  28773. back: {
  28774. height: math.unit(3.02, "meters"),
  28775. weight: math.unit(500, "kg"),
  28776. name: "Back",
  28777. image: {
  28778. source: "./media/characters/drena/back.svg",
  28779. extra: 278 / 243,
  28780. bottom: 2 / 280
  28781. }
  28782. },
  28783. foot: {
  28784. height: math.unit(0.75, "meters"),
  28785. name: "Foot",
  28786. image: {
  28787. source: "./media/characters/drena/foot.svg"
  28788. }
  28789. },
  28790. maw: {
  28791. height: math.unit(0.82, "meters"),
  28792. name: "Maw",
  28793. image: {
  28794. source: "./media/characters/drena/maw.svg"
  28795. }
  28796. },
  28797. rump: {
  28798. height: math.unit(0.93, "meters"),
  28799. name: "Rump",
  28800. image: {
  28801. source: "./media/characters/drena/rump.svg"
  28802. }
  28803. },
  28804. },
  28805. [
  28806. {
  28807. name: "Normal",
  28808. height: math.unit(3.02, "meters"),
  28809. default: true
  28810. },
  28811. ]
  28812. ))
  28813. characterMakers.push(() => makeCharacter(
  28814. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28815. {
  28816. front: {
  28817. height: math.unit(6 + 4 / 12, "feet"),
  28818. weight: math.unit(250, "lb"),
  28819. name: "Front",
  28820. image: {
  28821. source: "./media/characters/remmyzilla/front.svg",
  28822. extra: 4033 / 3588,
  28823. bottom: 123 / 4156
  28824. }
  28825. },
  28826. back: {
  28827. height: math.unit(6 + 4 / 12, "feet"),
  28828. weight: math.unit(250, "lb"),
  28829. name: "Back",
  28830. image: {
  28831. source: "./media/characters/remmyzilla/back.svg",
  28832. extra: 2687 / 2555,
  28833. bottom: 48 / 2735
  28834. }
  28835. },
  28836. paw: {
  28837. height: math.unit(1.73, "feet"),
  28838. name: "Paw",
  28839. image: {
  28840. source: "./media/characters/remmyzilla/paw.svg"
  28841. }
  28842. },
  28843. maw: {
  28844. height: math.unit(1.73, "feet"),
  28845. name: "Maw",
  28846. image: {
  28847. source: "./media/characters/remmyzilla/maw.svg"
  28848. }
  28849. },
  28850. },
  28851. [
  28852. {
  28853. name: "Normal",
  28854. height: math.unit(6 + 4 / 12, "feet")
  28855. },
  28856. {
  28857. name: "Minimacro",
  28858. height: math.unit(12 + 8 / 12, "feet")
  28859. },
  28860. {
  28861. name: "Normal",
  28862. height: math.unit(640, "feet"),
  28863. default: true
  28864. },
  28865. {
  28866. name: "Megamacro",
  28867. height: math.unit(6400, "feet")
  28868. },
  28869. {
  28870. name: "Gigamacro",
  28871. height: math.unit(64000, "miles")
  28872. },
  28873. ]
  28874. ))
  28875. characterMakers.push(() => makeCharacter(
  28876. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28877. {
  28878. front: {
  28879. height: math.unit(2.5, "meters"),
  28880. weight: math.unit(300, "lb"),
  28881. name: "Front",
  28882. image: {
  28883. source: "./media/characters/lawrence/front.svg",
  28884. extra: 357 / 335,
  28885. bottom: 30 / 387
  28886. }
  28887. },
  28888. back: {
  28889. height: math.unit(2.5, "meters"),
  28890. weight: math.unit(300, "lb"),
  28891. name: "Back",
  28892. image: {
  28893. source: "./media/characters/lawrence/back.svg",
  28894. extra: 357 / 338,
  28895. bottom: 16 / 373
  28896. }
  28897. },
  28898. head: {
  28899. height: math.unit(0.9, "meter"),
  28900. name: "Head",
  28901. image: {
  28902. source: "./media/characters/lawrence/head.svg"
  28903. }
  28904. },
  28905. maw: {
  28906. height: math.unit(0.7, "meter"),
  28907. name: "Maw",
  28908. image: {
  28909. source: "./media/characters/lawrence/maw.svg"
  28910. }
  28911. },
  28912. footBottom: {
  28913. height: math.unit(0.5, "meter"),
  28914. name: "Foot (Bottom)",
  28915. image: {
  28916. source: "./media/characters/lawrence/foot-bottom.svg"
  28917. }
  28918. },
  28919. footTop: {
  28920. height: math.unit(0.5, "meter"),
  28921. name: "Foot (Top)",
  28922. image: {
  28923. source: "./media/characters/lawrence/foot-top.svg"
  28924. }
  28925. },
  28926. },
  28927. [
  28928. {
  28929. name: "Normal",
  28930. height: math.unit(2.5, "meters"),
  28931. default: true
  28932. },
  28933. {
  28934. name: "Macro",
  28935. height: math.unit(95, "meters")
  28936. },
  28937. {
  28938. name: "Megamacro",
  28939. height: math.unit(150, "km")
  28940. },
  28941. ]
  28942. ))
  28943. characterMakers.push(() => makeCharacter(
  28944. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28945. {
  28946. front: {
  28947. height: math.unit(4.2, "meters"),
  28948. name: "Front",
  28949. image: {
  28950. source: "./media/characters/sydney/front.svg",
  28951. extra: 1323 / 1277,
  28952. bottom: 111 / 1434
  28953. }
  28954. },
  28955. },
  28956. [
  28957. {
  28958. name: "Normal",
  28959. height: math.unit(4.2, "meters"),
  28960. default: true
  28961. },
  28962. ]
  28963. ))
  28964. characterMakers.push(() => makeCharacter(
  28965. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28966. {
  28967. back: {
  28968. height: math.unit(201, "feet"),
  28969. name: "Back",
  28970. image: {
  28971. source: "./media/characters/jessica/back.svg",
  28972. extra: 273 / 259,
  28973. bottom: 7 / 280
  28974. }
  28975. },
  28976. },
  28977. [
  28978. {
  28979. name: "Normal",
  28980. height: math.unit(201, "feet"),
  28981. default: true
  28982. },
  28983. {
  28984. name: "Megamacro",
  28985. height: math.unit(8, "miles")
  28986. },
  28987. ]
  28988. ))
  28989. characterMakers.push(() => makeCharacter(
  28990. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28991. {
  28992. side: {
  28993. height: math.unit(5.6, "m"),
  28994. weight: math.unit(8000, "kg"),
  28995. name: "Side",
  28996. image: {
  28997. source: "./media/characters/victoria/side.svg",
  28998. extra: 1542/1229,
  28999. bottom: 124/1666
  29000. }
  29001. },
  29002. maw: {
  29003. height: math.unit(7.14, "feet"),
  29004. name: "Maw",
  29005. image: {
  29006. source: "./media/characters/victoria/maw.svg"
  29007. }
  29008. },
  29009. },
  29010. [
  29011. {
  29012. name: "Normal",
  29013. height: math.unit(5.6, "m"),
  29014. default: true
  29015. },
  29016. ]
  29017. ))
  29018. characterMakers.push(() => makeCharacter(
  29019. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29020. {
  29021. front: {
  29022. height: math.unit(5 + 6 / 12, "feet"),
  29023. name: "Front",
  29024. image: {
  29025. source: "./media/characters/cat/front.svg",
  29026. extra: 1449/1295,
  29027. bottom: 34/1483
  29028. },
  29029. form: "cat",
  29030. default: true
  29031. },
  29032. back: {
  29033. height: math.unit(5 + 6 / 12, "feet"),
  29034. name: "Back",
  29035. image: {
  29036. source: "./media/characters/cat/back.svg",
  29037. extra: 1466/1301,
  29038. bottom: 19/1485
  29039. },
  29040. form: "cat"
  29041. },
  29042. taur: {
  29043. height: math.unit(7, "feet"),
  29044. name: "Taur",
  29045. image: {
  29046. source: "./media/characters/cat/taur.svg",
  29047. extra: 1389/1233,
  29048. bottom: 83/1472
  29049. },
  29050. form: "taur",
  29051. default: true
  29052. },
  29053. lucarioFront: {
  29054. height: math.unit(4, "feet"),
  29055. name: "Lucario (Front)",
  29056. image: {
  29057. source: "./media/characters/cat/lucario-front.svg",
  29058. extra: 1149/1019,
  29059. bottom: 84/1233
  29060. },
  29061. form: "lucario",
  29062. default: true
  29063. },
  29064. lucarioBack: {
  29065. height: math.unit(4, "feet"),
  29066. name: "Lucario (Back)",
  29067. image: {
  29068. source: "./media/characters/cat/lucario-back.svg",
  29069. extra: 1190/1059,
  29070. bottom: 33/1223
  29071. },
  29072. form: "lucario"
  29073. },
  29074. megaLucario: {
  29075. height: math.unit(4, "feet"),
  29076. name: "Mega Lucario",
  29077. image: {
  29078. source: "./media/characters/cat/mega-lucario.svg",
  29079. extra: 1515 / 1319,
  29080. bottom: 63 / 1578
  29081. },
  29082. form: "lucario"
  29083. },
  29084. nickit: {
  29085. height: math.unit(2, "feet"),
  29086. name: "Nickit",
  29087. image: {
  29088. source: "./media/characters/cat/nickit.svg",
  29089. extra: 1980 / 1585,
  29090. bottom: 102 / 2082
  29091. },
  29092. form: "nickit",
  29093. default: true
  29094. },
  29095. lopunnyFront: {
  29096. height: math.unit(5, "feet"),
  29097. name: "Lopunny (Front)",
  29098. image: {
  29099. source: "./media/characters/cat/lopunny-front.svg",
  29100. extra: 1782 / 1469,
  29101. bottom: 38 / 1820
  29102. },
  29103. form: "lopunny",
  29104. default: true
  29105. },
  29106. lopunnyBack: {
  29107. height: math.unit(5, "feet"),
  29108. name: "Lopunny (Back)",
  29109. image: {
  29110. source: "./media/characters/cat/lopunny-back.svg",
  29111. extra: 1660 / 1490,
  29112. bottom: 25 / 1685
  29113. },
  29114. form: "lopunny"
  29115. },
  29116. },
  29117. [
  29118. {
  29119. name: "Really small",
  29120. height: math.unit(1, "nm")
  29121. },
  29122. {
  29123. name: "Micro",
  29124. height: math.unit(5, "inches")
  29125. },
  29126. {
  29127. name: "Normal",
  29128. height: math.unit(5 + 6 / 12, "feet"),
  29129. default: true
  29130. },
  29131. {
  29132. name: "Macro",
  29133. height: math.unit(50, "feet")
  29134. },
  29135. {
  29136. name: "Macro+",
  29137. height: math.unit(150, "feet")
  29138. },
  29139. {
  29140. name: "Megamacro",
  29141. height: math.unit(100, "miles")
  29142. },
  29143. ]
  29144. ))
  29145. characterMakers.push(() => makeCharacter(
  29146. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29147. {
  29148. front: {
  29149. height: math.unit(63.4, "meters"),
  29150. weight: math.unit(3.28349e+6, "kilograms"),
  29151. name: "Front",
  29152. image: {
  29153. source: "./media/characters/kirina-violet/front.svg",
  29154. extra: 2812 / 2725,
  29155. bottom: 0 / 2812
  29156. }
  29157. },
  29158. back: {
  29159. height: math.unit(63.4, "meters"),
  29160. weight: math.unit(3.28349e+6, "kilograms"),
  29161. name: "Back",
  29162. image: {
  29163. source: "./media/characters/kirina-violet/back.svg",
  29164. extra: 2812 / 2725,
  29165. bottom: 0 / 2812
  29166. }
  29167. },
  29168. mouth: {
  29169. height: math.unit(4.35, "meters"),
  29170. name: "Mouth",
  29171. image: {
  29172. source: "./media/characters/kirina-violet/mouth.svg"
  29173. }
  29174. },
  29175. paw: {
  29176. height: math.unit(5.6, "meters"),
  29177. name: "Paw",
  29178. image: {
  29179. source: "./media/characters/kirina-violet/paw.svg"
  29180. }
  29181. },
  29182. tail: {
  29183. height: math.unit(18, "meters"),
  29184. name: "Tail",
  29185. image: {
  29186. source: "./media/characters/kirina-violet/tail.svg"
  29187. }
  29188. },
  29189. },
  29190. [
  29191. {
  29192. name: "Macro",
  29193. height: math.unit(63.4, "meters"),
  29194. default: true
  29195. },
  29196. ]
  29197. ))
  29198. characterMakers.push(() => makeCharacter(
  29199. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29200. {
  29201. front: {
  29202. height: math.unit(75, "feet"),
  29203. name: "Front",
  29204. image: {
  29205. source: "./media/characters/cat-gigachu/front.svg",
  29206. extra: 1239/1027,
  29207. bottom: 32/1271
  29208. }
  29209. },
  29210. back: {
  29211. height: math.unit(75, "feet"),
  29212. name: "Back",
  29213. image: {
  29214. source: "./media/characters/cat-gigachu/back.svg",
  29215. extra: 1229/1030,
  29216. bottom: 9/1238
  29217. }
  29218. },
  29219. },
  29220. [
  29221. {
  29222. name: "Dynamax",
  29223. height: math.unit(75, "feet"),
  29224. default: true
  29225. },
  29226. ]
  29227. ))
  29228. characterMakers.push(() => makeCharacter(
  29229. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29230. {
  29231. front: {
  29232. height: math.unit(6, "feet"),
  29233. weight: math.unit(150, "lb"),
  29234. name: "Front",
  29235. image: {
  29236. source: "./media/characters/sfaiyan/front.svg",
  29237. extra: 999 / 978,
  29238. bottom: 5 / 1004
  29239. }
  29240. },
  29241. },
  29242. [
  29243. {
  29244. name: "Normal",
  29245. height: math.unit(1.82, "meters")
  29246. },
  29247. {
  29248. name: "Giant",
  29249. height: math.unit(2.27, "km"),
  29250. default: true
  29251. },
  29252. ]
  29253. ))
  29254. characterMakers.push(() => makeCharacter(
  29255. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29256. {
  29257. front: {
  29258. height: math.unit(179, "cm"),
  29259. weight: math.unit(100, "kg"),
  29260. name: "Front",
  29261. image: {
  29262. source: "./media/characters/raunehkeli/front.svg",
  29263. extra: 1934 / 1926,
  29264. bottom: 0 / 1934
  29265. }
  29266. },
  29267. },
  29268. [
  29269. {
  29270. name: "Normal",
  29271. height: math.unit(179, "cm")
  29272. },
  29273. {
  29274. name: "Maximum",
  29275. height: math.unit(575, "meters"),
  29276. default: true
  29277. },
  29278. ]
  29279. ))
  29280. characterMakers.push(() => makeCharacter(
  29281. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29282. {
  29283. front: {
  29284. height: math.unit(6, "feet"),
  29285. weight: math.unit(150, "lb"),
  29286. name: "Front",
  29287. image: {
  29288. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29289. extra: 2625 / 2518,
  29290. bottom: 60 / 2685
  29291. }
  29292. },
  29293. },
  29294. [
  29295. {
  29296. name: "Normal",
  29297. height: math.unit(6 + 2 / 12, "feet")
  29298. },
  29299. {
  29300. name: "Macro",
  29301. height: math.unit(1180, "feet"),
  29302. default: true
  29303. },
  29304. ]
  29305. ))
  29306. characterMakers.push(() => makeCharacter(
  29307. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29308. {
  29309. front: {
  29310. height: math.unit(5 + 6 / 12, "feet"),
  29311. weight: math.unit(108, "lb"),
  29312. name: "Front",
  29313. image: {
  29314. source: "./media/characters/lilith-zott/front.svg",
  29315. extra: 2510 / 2238,
  29316. bottom: 100 / 2610
  29317. }
  29318. },
  29319. frontDressed: {
  29320. height: math.unit(5 + 6 / 12, "feet"),
  29321. weight: math.unit(108, "lb"),
  29322. name: "Front (Dressed)",
  29323. image: {
  29324. source: "./media/characters/lilith-zott/front-dressed.svg",
  29325. extra: 2510 / 2238,
  29326. bottom: 100 / 2610
  29327. }
  29328. },
  29329. },
  29330. [
  29331. {
  29332. name: "Normal",
  29333. height: math.unit(5 + 6 / 12, "feet")
  29334. },
  29335. {
  29336. name: "Macro",
  29337. height: math.unit(1030, "feet"),
  29338. default: true
  29339. },
  29340. ]
  29341. ))
  29342. characterMakers.push(() => makeCharacter(
  29343. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29344. {
  29345. front: {
  29346. height: math.unit(6, "feet"),
  29347. weight: math.unit(150, "lb"),
  29348. name: "Front",
  29349. image: {
  29350. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29351. extra: 2567 / 2435,
  29352. bottom: 39 / 2606
  29353. }
  29354. },
  29355. frontSuper: {
  29356. height: math.unit(6, "feet"),
  29357. name: "Front (Super)",
  29358. image: {
  29359. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29360. extra: 2567 / 2435,
  29361. bottom: 39 / 2606
  29362. }
  29363. },
  29364. },
  29365. [
  29366. {
  29367. name: "Normal",
  29368. height: math.unit(5 + 10 / 12, "feet")
  29369. },
  29370. {
  29371. name: "Macro",
  29372. height: math.unit(1100, "feet"),
  29373. default: true
  29374. },
  29375. ]
  29376. ))
  29377. characterMakers.push(() => makeCharacter(
  29378. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29379. {
  29380. front: {
  29381. height: math.unit(100, "miles"),
  29382. name: "Front",
  29383. image: {
  29384. source: "./media/characters/sona/front.svg",
  29385. extra: 2433 / 2201,
  29386. bottom: 53 / 2486
  29387. }
  29388. },
  29389. foot: {
  29390. height: math.unit(16.1, "miles"),
  29391. name: "Foot",
  29392. image: {
  29393. source: "./media/characters/sona/foot.svg"
  29394. }
  29395. },
  29396. },
  29397. [
  29398. {
  29399. name: "Macro",
  29400. height: math.unit(100, "miles"),
  29401. default: true
  29402. },
  29403. ]
  29404. ))
  29405. characterMakers.push(() => makeCharacter(
  29406. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29407. {
  29408. front: {
  29409. height: math.unit(6, "feet"),
  29410. weight: math.unit(150, "lb"),
  29411. name: "Front",
  29412. image: {
  29413. source: "./media/characters/bailey/front.svg",
  29414. extra: 1778 / 1724,
  29415. bottom: 30 / 1808
  29416. }
  29417. },
  29418. },
  29419. [
  29420. {
  29421. name: "Micro",
  29422. height: math.unit(4, "inches")
  29423. },
  29424. {
  29425. name: "Normal",
  29426. height: math.unit(5 + 5 / 12, "feet"),
  29427. default: true
  29428. },
  29429. {
  29430. name: "Macro",
  29431. height: math.unit(250, "feet")
  29432. },
  29433. {
  29434. name: "Megamacro",
  29435. height: math.unit(100, "miles")
  29436. },
  29437. ]
  29438. ))
  29439. characterMakers.push(() => makeCharacter(
  29440. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29441. {
  29442. front: {
  29443. height: math.unit(5 + 2 / 12, "feet"),
  29444. weight: math.unit(120, "lb"),
  29445. name: "Front",
  29446. image: {
  29447. source: "./media/characters/snaps/front.svg",
  29448. extra: 2370 / 2177,
  29449. bottom: 48 / 2418
  29450. }
  29451. },
  29452. back: {
  29453. height: math.unit(5 + 2 / 12, "feet"),
  29454. weight: math.unit(120, "lb"),
  29455. name: "Back",
  29456. image: {
  29457. source: "./media/characters/snaps/back.svg",
  29458. extra: 2408 / 2258,
  29459. bottom: 15 / 2423
  29460. }
  29461. },
  29462. },
  29463. [
  29464. {
  29465. name: "Micro",
  29466. height: math.unit(9, "inches")
  29467. },
  29468. {
  29469. name: "Normal",
  29470. height: math.unit(5 + 2 / 12, "feet"),
  29471. default: true
  29472. },
  29473. {
  29474. name: "Mini Macro",
  29475. height: math.unit(10, "feet")
  29476. },
  29477. ]
  29478. ))
  29479. characterMakers.push(() => makeCharacter(
  29480. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29481. {
  29482. front: {
  29483. height: math.unit(1.8, "meters"),
  29484. weight: math.unit(85, "kg"),
  29485. name: "Front",
  29486. image: {
  29487. source: "./media/characters/azteck/front.svg",
  29488. extra: 2815 / 2625,
  29489. bottom: 89 / 2904
  29490. }
  29491. },
  29492. back: {
  29493. height: math.unit(1.8, "meters"),
  29494. weight: math.unit(85, "kg"),
  29495. name: "Back",
  29496. image: {
  29497. source: "./media/characters/azteck/back.svg",
  29498. extra: 2856 / 2648,
  29499. bottom: 85 / 2941
  29500. }
  29501. },
  29502. frontDressed: {
  29503. height: math.unit(1.8, "meters"),
  29504. weight: math.unit(85, "kg"),
  29505. name: "Front (Dressed)",
  29506. image: {
  29507. source: "./media/characters/azteck/front-dressed.svg",
  29508. extra: 2147 / 2003,
  29509. bottom: 68 / 2215
  29510. }
  29511. },
  29512. head: {
  29513. height: math.unit(0.47, "meters"),
  29514. weight: math.unit(85, "kg"),
  29515. name: "Head",
  29516. image: {
  29517. source: "./media/characters/azteck/head.svg"
  29518. }
  29519. },
  29520. },
  29521. [
  29522. {
  29523. name: "Bite sized",
  29524. height: math.unit(16, "cm")
  29525. },
  29526. {
  29527. name: "Normal",
  29528. height: math.unit(1.8, "meters"),
  29529. default: true
  29530. },
  29531. ]
  29532. ))
  29533. characterMakers.push(() => makeCharacter(
  29534. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29535. {
  29536. front: {
  29537. height: math.unit(6, "feet"),
  29538. weight: math.unit(150, "lb"),
  29539. name: "Front",
  29540. image: {
  29541. source: "./media/characters/pidge/front.svg",
  29542. extra: 620 / 588,
  29543. bottom: 9 / 629
  29544. }
  29545. },
  29546. back: {
  29547. height: math.unit(6, "feet"),
  29548. weight: math.unit(150, "lb"),
  29549. name: "Back",
  29550. image: {
  29551. source: "./media/characters/pidge/back.svg",
  29552. extra: 620 / 588,
  29553. bottom: 9 / 629
  29554. }
  29555. },
  29556. },
  29557. [
  29558. {
  29559. name: "Macro",
  29560. height: math.unit(1, "mile"),
  29561. default: true
  29562. },
  29563. ]
  29564. ))
  29565. characterMakers.push(() => makeCharacter(
  29566. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29567. {
  29568. front: {
  29569. height: math.unit(6, "feet"),
  29570. weight: math.unit(150, "lb"),
  29571. name: "Front",
  29572. image: {
  29573. source: "./media/characters/en/front.svg",
  29574. extra: 1697 / 1563,
  29575. bottom: 103 / 1800
  29576. }
  29577. },
  29578. back: {
  29579. height: math.unit(6, "feet"),
  29580. weight: math.unit(150, "lb"),
  29581. name: "Back",
  29582. image: {
  29583. source: "./media/characters/en/back.svg",
  29584. extra: 1700 / 1570,
  29585. bottom: 51 / 1751
  29586. }
  29587. },
  29588. frontDressed: {
  29589. height: math.unit(6, "feet"),
  29590. weight: math.unit(150, "lb"),
  29591. name: "Front (Dressed)",
  29592. image: {
  29593. source: "./media/characters/en/front-dressed.svg",
  29594. extra: 1697 / 1563,
  29595. bottom: 103 / 1800
  29596. }
  29597. },
  29598. backDressed: {
  29599. height: math.unit(6, "feet"),
  29600. weight: math.unit(150, "lb"),
  29601. name: "Back (Dressed)",
  29602. image: {
  29603. source: "./media/characters/en/back-dressed.svg",
  29604. extra: 1700 / 1570,
  29605. bottom: 51 / 1751
  29606. }
  29607. },
  29608. },
  29609. [
  29610. {
  29611. name: "Macro",
  29612. height: math.unit(210, "feet"),
  29613. default: true
  29614. },
  29615. ]
  29616. ))
  29617. characterMakers.push(() => makeCharacter(
  29618. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29619. {
  29620. front: {
  29621. height: math.unit(6, "feet"),
  29622. weight: math.unit(150, "lb"),
  29623. name: "Front",
  29624. image: {
  29625. source: "./media/characters/haze-orris/front.svg",
  29626. extra: 3975 / 3525,
  29627. bottom: 137 / 4112
  29628. }
  29629. },
  29630. },
  29631. [
  29632. {
  29633. name: "Micro",
  29634. height: math.unit(150, "mm"),
  29635. default: true
  29636. },
  29637. ]
  29638. ))
  29639. characterMakers.push(() => makeCharacter(
  29640. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29641. {
  29642. front: {
  29643. height: math.unit(6, "feet"),
  29644. weight: math.unit(150, "lb"),
  29645. name: "Front",
  29646. image: {
  29647. source: "./media/characters/casselene-yaro/front.svg",
  29648. extra: 4721 / 4541,
  29649. bottom: 82 / 4803
  29650. }
  29651. },
  29652. back: {
  29653. height: math.unit(6, "feet"),
  29654. weight: math.unit(150, "lb"),
  29655. name: "Back",
  29656. image: {
  29657. source: "./media/characters/casselene-yaro/back.svg",
  29658. extra: 4569 / 4377,
  29659. bottom: 69 / 4638
  29660. }
  29661. },
  29662. frontDressed: {
  29663. height: math.unit(6, "feet"),
  29664. weight: math.unit(150, "lb"),
  29665. name: "Front-dressed",
  29666. image: {
  29667. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29668. extra: 4721 / 4541,
  29669. bottom: 82 / 4803
  29670. }
  29671. },
  29672. },
  29673. [
  29674. {
  29675. name: "Macro",
  29676. height: math.unit(190, "feet"),
  29677. default: true
  29678. },
  29679. ]
  29680. ))
  29681. characterMakers.push(() => makeCharacter(
  29682. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29683. {
  29684. front: {
  29685. height: math.unit(6, "feet"),
  29686. weight: math.unit(150, "lb"),
  29687. name: "Front",
  29688. image: {
  29689. source: "./media/characters/myra-rue-delore/front.svg",
  29690. extra: 1340 / 1308,
  29691. bottom: 67 / 1407
  29692. }
  29693. },
  29694. back: {
  29695. height: math.unit(6, "feet"),
  29696. weight: math.unit(150, "lb"),
  29697. name: "Back",
  29698. image: {
  29699. source: "./media/characters/myra-rue-delore/back.svg",
  29700. extra: 1341 / 1310,
  29701. bottom: 40 / 1381
  29702. }
  29703. },
  29704. frontDressed: {
  29705. height: math.unit(6, "feet"),
  29706. weight: math.unit(150, "lb"),
  29707. name: "Front (Dressed)",
  29708. image: {
  29709. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29710. extra: 1340 / 1308,
  29711. bottom: 67 / 1407
  29712. }
  29713. },
  29714. },
  29715. [
  29716. {
  29717. name: "Macro",
  29718. height: math.unit(150, "feet"),
  29719. default: true
  29720. },
  29721. ]
  29722. ))
  29723. characterMakers.push(() => makeCharacter(
  29724. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29725. {
  29726. front: {
  29727. height: math.unit(10, "feet"),
  29728. weight: math.unit(15015, "lb"),
  29729. name: "Front",
  29730. image: {
  29731. source: "./media/characters/fem!plat/front.svg",
  29732. extra: 2799 / 2604,
  29733. bottom: 149 / 2948
  29734. }
  29735. },
  29736. },
  29737. [
  29738. {
  29739. name: "Normal",
  29740. height: math.unit(10, "feet"),
  29741. default: true
  29742. },
  29743. {
  29744. name: "Macro",
  29745. height: math.unit(100, "feet")
  29746. },
  29747. {
  29748. name: "Megamacro",
  29749. height: math.unit(1000, "feet")
  29750. },
  29751. ]
  29752. ))
  29753. characterMakers.push(() => makeCharacter(
  29754. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29755. {
  29756. front: {
  29757. height: math.unit(15 + 5 / 12, "feet"),
  29758. weight: math.unit(4600, "lb"),
  29759. name: "Front",
  29760. image: {
  29761. source: "./media/characters/neapolitan-ananassa/front.svg",
  29762. extra: 2903 / 2736,
  29763. bottom: 0 / 2903
  29764. }
  29765. },
  29766. side: {
  29767. height: math.unit(15 + 5 / 12, "feet"),
  29768. weight: math.unit(4600, "lb"),
  29769. name: "Side",
  29770. image: {
  29771. source: "./media/characters/neapolitan-ananassa/side.svg",
  29772. extra: 2925 / 2719,
  29773. bottom: 0 / 2925
  29774. }
  29775. },
  29776. back: {
  29777. height: math.unit(15 + 5 / 12, "feet"),
  29778. weight: math.unit(4600, "lb"),
  29779. name: "Back",
  29780. image: {
  29781. source: "./media/characters/neapolitan-ananassa/back.svg",
  29782. extra: 2903 / 2736,
  29783. bottom: 0 / 2903
  29784. }
  29785. },
  29786. },
  29787. [
  29788. {
  29789. name: "Normal",
  29790. height: math.unit(15 + 5 / 12, "feet"),
  29791. default: true
  29792. },
  29793. {
  29794. name: "Post-Millenium",
  29795. height: math.unit(35 + 5 / 12, "feet")
  29796. },
  29797. {
  29798. name: "Post-Era",
  29799. height: math.unit(450 + 5 / 12, "feet")
  29800. },
  29801. ]
  29802. ))
  29803. characterMakers.push(() => makeCharacter(
  29804. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29805. {
  29806. front: {
  29807. height: math.unit(300, "meters"),
  29808. weight: math.unit(125000, "tonnes"),
  29809. name: "Front",
  29810. image: {
  29811. source: "./media/characters/pazuzu/front.svg",
  29812. extra: 877 / 794,
  29813. bottom: 47 / 924
  29814. }
  29815. },
  29816. },
  29817. [
  29818. {
  29819. name: "Macro",
  29820. height: math.unit(300, "meters"),
  29821. default: true
  29822. },
  29823. ]
  29824. ))
  29825. characterMakers.push(() => makeCharacter(
  29826. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29827. {
  29828. side: {
  29829. height: math.unit(10 + 7 / 12, "feet"),
  29830. weight: math.unit(2.5, "tons"),
  29831. name: "Side",
  29832. image: {
  29833. source: "./media/characters/aasha/side.svg",
  29834. extra: 1345 / 1245,
  29835. bottom: 111 / 1456
  29836. }
  29837. },
  29838. back: {
  29839. height: math.unit(10 + 7 / 12, "feet"),
  29840. weight: math.unit(2.5, "tons"),
  29841. name: "Back",
  29842. image: {
  29843. source: "./media/characters/aasha/back.svg",
  29844. extra: 1133 / 1057,
  29845. bottom: 257 / 1390
  29846. }
  29847. },
  29848. },
  29849. [
  29850. {
  29851. name: "Normal",
  29852. height: math.unit(10 + 7 / 12, "feet"),
  29853. default: true
  29854. },
  29855. ]
  29856. ))
  29857. characterMakers.push(() => makeCharacter(
  29858. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29859. {
  29860. front: {
  29861. height: math.unit(6 + 3 / 12, "feet"),
  29862. name: "Front",
  29863. image: {
  29864. source: "./media/characters/nevan/front.svg",
  29865. extra: 704 / 704,
  29866. bottom: 28 / 732
  29867. }
  29868. },
  29869. back: {
  29870. height: math.unit(6 + 3 / 12, "feet"),
  29871. name: "Back",
  29872. image: {
  29873. source: "./media/characters/nevan/back.svg",
  29874. extra: 714 / 714,
  29875. bottom: 21 / 735
  29876. }
  29877. },
  29878. frontFlaccid: {
  29879. height: math.unit(6 + 3 / 12, "feet"),
  29880. name: "Front (Flaccid)",
  29881. image: {
  29882. source: "./media/characters/nevan/front-flaccid.svg",
  29883. extra: 704 / 704,
  29884. bottom: 28 / 732
  29885. }
  29886. },
  29887. frontErect: {
  29888. height: math.unit(6 + 3 / 12, "feet"),
  29889. name: "Front (Erect)",
  29890. image: {
  29891. source: "./media/characters/nevan/front-erect.svg",
  29892. extra: 704 / 704,
  29893. bottom: 28 / 732
  29894. }
  29895. },
  29896. backFlaccid: {
  29897. height: math.unit(6 + 3 / 12, "feet"),
  29898. name: "Back (Flaccid)",
  29899. image: {
  29900. source: "./media/characters/nevan/back-flaccid.svg",
  29901. extra: 714 / 714,
  29902. bottom: 21 / 735
  29903. }
  29904. },
  29905. },
  29906. [
  29907. {
  29908. name: "Normal",
  29909. height: math.unit(6 + 3 / 12, "feet"),
  29910. default: true
  29911. },
  29912. ]
  29913. ))
  29914. characterMakers.push(() => makeCharacter(
  29915. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29916. {
  29917. front: {
  29918. height: math.unit(4, "feet"),
  29919. name: "Front",
  29920. image: {
  29921. source: "./media/characters/arhan/front.svg",
  29922. extra: 3368 / 3133,
  29923. bottom: 0 / 3368
  29924. }
  29925. },
  29926. side: {
  29927. height: math.unit(4, "feet"),
  29928. name: "Side",
  29929. image: {
  29930. source: "./media/characters/arhan/side.svg",
  29931. extra: 3347 / 3105,
  29932. bottom: 0 / 3347
  29933. }
  29934. },
  29935. tongue: {
  29936. height: math.unit(1.42, "feet"),
  29937. name: "Tongue",
  29938. image: {
  29939. source: "./media/characters/arhan/tongue.svg"
  29940. }
  29941. },
  29942. head: {
  29943. height: math.unit(0.85, "feet"),
  29944. name: "Head",
  29945. image: {
  29946. source: "./media/characters/arhan/head.svg"
  29947. }
  29948. },
  29949. },
  29950. [
  29951. {
  29952. name: "Normal",
  29953. height: math.unit(4, "feet"),
  29954. default: true
  29955. },
  29956. ]
  29957. ))
  29958. characterMakers.push(() => makeCharacter(
  29959. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29960. {
  29961. front: {
  29962. height: math.unit(5 + 7.5 / 12, "feet"),
  29963. weight: math.unit(120, "lb"),
  29964. name: "Front",
  29965. image: {
  29966. source: "./media/characters/digi-duncan/front.svg",
  29967. extra: 330 / 326,
  29968. bottom: 16 / 346
  29969. }
  29970. },
  29971. side: {
  29972. height: math.unit(5 + 7.5 / 12, "feet"),
  29973. weight: math.unit(120, "lb"),
  29974. name: "Side",
  29975. image: {
  29976. source: "./media/characters/digi-duncan/side.svg",
  29977. extra: 341 / 337,
  29978. bottom: 1 / 342
  29979. }
  29980. },
  29981. back: {
  29982. height: math.unit(5 + 7.5 / 12, "feet"),
  29983. weight: math.unit(120, "lb"),
  29984. name: "Back",
  29985. image: {
  29986. source: "./media/characters/digi-duncan/back.svg",
  29987. extra: 330 / 326,
  29988. bottom: 12 / 342
  29989. }
  29990. },
  29991. },
  29992. [
  29993. {
  29994. name: "Speck",
  29995. height: math.unit(0.25, "mm")
  29996. },
  29997. {
  29998. name: "Micro",
  29999. height: math.unit(5, "mm")
  30000. },
  30001. {
  30002. name: "Tiny",
  30003. height: math.unit(0.5, "inches"),
  30004. default: true
  30005. },
  30006. {
  30007. name: "Human",
  30008. height: math.unit(5 + 7.5 / 12, "feet")
  30009. },
  30010. {
  30011. name: "Minigiant",
  30012. height: math.unit(8 + 5.25, "feet")
  30013. },
  30014. {
  30015. name: "Giant",
  30016. height: math.unit(2000, "feet")
  30017. },
  30018. {
  30019. name: "Mega",
  30020. height: math.unit(371.1, "miles")
  30021. },
  30022. ]
  30023. ))
  30024. characterMakers.push(() => makeCharacter(
  30025. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30026. {
  30027. front: {
  30028. height: math.unit(2, "meters"),
  30029. weight: math.unit(350, "kg"),
  30030. name: "Front",
  30031. image: {
  30032. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30033. extra: 898 / 838,
  30034. bottom: 9 / 907
  30035. }
  30036. },
  30037. },
  30038. [
  30039. {
  30040. name: "Micro",
  30041. height: math.unit(8, "meters")
  30042. },
  30043. {
  30044. name: "Normal",
  30045. height: math.unit(50, "meters"),
  30046. default: true
  30047. },
  30048. {
  30049. name: "Macro",
  30050. height: math.unit(500, "meters")
  30051. },
  30052. ]
  30053. ))
  30054. characterMakers.push(() => makeCharacter(
  30055. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30056. {
  30057. front: {
  30058. height: math.unit(6 + 6 / 12, "feet"),
  30059. name: "Front",
  30060. image: {
  30061. source: "./media/characters/khardesh/front.svg",
  30062. extra: 1788/1596,
  30063. bottom: 66/1854
  30064. }
  30065. },
  30066. back: {
  30067. height: math.unit(6 + 6 / 12, "feet"),
  30068. name: "Back",
  30069. image: {
  30070. source: "./media/characters/khardesh/back.svg",
  30071. extra: 1781/1584,
  30072. bottom: 68/1849
  30073. }
  30074. },
  30075. },
  30076. [
  30077. {
  30078. name: "Normal",
  30079. height: math.unit(6 + 6 / 12, "feet"),
  30080. default: true
  30081. },
  30082. {
  30083. name: "Normal+",
  30084. height: math.unit(4, "meters")
  30085. },
  30086. {
  30087. name: "Macro",
  30088. height: math.unit(50, "meters")
  30089. },
  30090. {
  30091. name: "Macro+",
  30092. height: math.unit(100, "meters")
  30093. },
  30094. {
  30095. name: "Megamacro",
  30096. height: math.unit(20, "km")
  30097. },
  30098. ]
  30099. ))
  30100. characterMakers.push(() => makeCharacter(
  30101. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30102. {
  30103. front: {
  30104. height: math.unit(6, "feet"),
  30105. weight: math.unit(150, "lb"),
  30106. name: "Front",
  30107. image: {
  30108. source: "./media/characters/kosho/front.svg",
  30109. extra: 1847 / 1847,
  30110. bottom: 86 / 1933
  30111. }
  30112. },
  30113. },
  30114. [
  30115. {
  30116. name: "Second-stage micro",
  30117. height: math.unit(0.5, "inches")
  30118. },
  30119. {
  30120. name: "First-stage micro",
  30121. height: math.unit(6, "inches")
  30122. },
  30123. {
  30124. name: "Normal",
  30125. height: math.unit(6, "feet"),
  30126. default: true
  30127. },
  30128. {
  30129. name: "First-stage macro",
  30130. height: math.unit(72, "feet")
  30131. },
  30132. {
  30133. name: "Second-stage macro",
  30134. height: math.unit(864, "feet")
  30135. },
  30136. ]
  30137. ))
  30138. characterMakers.push(() => makeCharacter(
  30139. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30140. {
  30141. normal: {
  30142. height: math.unit(4 + 6 / 12, "feet"),
  30143. name: "Normal",
  30144. image: {
  30145. source: "./media/characters/hydra/normal.svg",
  30146. extra: 2833 / 2634,
  30147. bottom: 68 / 2901
  30148. }
  30149. },
  30150. smol: {
  30151. height: math.unit(0.705, "inches"),
  30152. name: "Smol",
  30153. image: {
  30154. source: "./media/characters/hydra/smol.svg",
  30155. extra: 2715 / 2540,
  30156. bottom: 0 / 2715
  30157. }
  30158. },
  30159. },
  30160. [
  30161. {
  30162. name: "Normal",
  30163. height: math.unit(4 + 6 / 12, "feet"),
  30164. default: true
  30165. }
  30166. ]
  30167. ))
  30168. characterMakers.push(() => makeCharacter(
  30169. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30170. {
  30171. front: {
  30172. height: math.unit(0.6, "cm"),
  30173. name: "Front",
  30174. image: {
  30175. source: "./media/characters/daz/front.svg",
  30176. extra: 1682 / 1164,
  30177. bottom: 42 / 1724
  30178. }
  30179. },
  30180. },
  30181. [
  30182. {
  30183. name: "Normal",
  30184. height: math.unit(0.6, "cm"),
  30185. default: true
  30186. },
  30187. ]
  30188. ))
  30189. characterMakers.push(() => makeCharacter(
  30190. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30191. {
  30192. front: {
  30193. height: math.unit(6, "feet"),
  30194. weight: math.unit(235, "lb"),
  30195. name: "Front",
  30196. image: {
  30197. source: "./media/characters/theo-pangolin/front.svg",
  30198. extra: 1996 / 1969,
  30199. bottom: 115 / 2111
  30200. }
  30201. },
  30202. back: {
  30203. height: math.unit(6, "feet"),
  30204. weight: math.unit(235, "lb"),
  30205. name: "Back",
  30206. image: {
  30207. source: "./media/characters/theo-pangolin/back.svg",
  30208. extra: 1979 / 1979,
  30209. bottom: 40 / 2019
  30210. }
  30211. },
  30212. feral: {
  30213. height: math.unit(2, "feet"),
  30214. weight: math.unit(30, "lb"),
  30215. name: "Feral",
  30216. image: {
  30217. source: "./media/characters/theo-pangolin/feral.svg",
  30218. extra: 803 / 791,
  30219. bottom: 181 / 984
  30220. }
  30221. },
  30222. footFive: {
  30223. height: math.unit(1.43, "feet"),
  30224. name: "Foot (Five Toes)",
  30225. image: {
  30226. source: "./media/characters/theo-pangolin/foot-five.svg"
  30227. }
  30228. },
  30229. footFour: {
  30230. height: math.unit(1.43, "feet"),
  30231. name: "Foot (Four Toes)",
  30232. image: {
  30233. source: "./media/characters/theo-pangolin/foot-four.svg"
  30234. }
  30235. },
  30236. handFour: {
  30237. height: math.unit(0.81, "feet"),
  30238. name: "Hand (Four Fingers)",
  30239. image: {
  30240. source: "./media/characters/theo-pangolin/hand-four.svg"
  30241. }
  30242. },
  30243. handThree: {
  30244. height: math.unit(0.81, "feet"),
  30245. name: "Hand (Three Fingers)",
  30246. image: {
  30247. source: "./media/characters/theo-pangolin/hand-three.svg"
  30248. }
  30249. },
  30250. headFront: {
  30251. height: math.unit(1.37, "feet"),
  30252. name: "Head (Front)",
  30253. image: {
  30254. source: "./media/characters/theo-pangolin/head-front.svg"
  30255. }
  30256. },
  30257. headSide: {
  30258. height: math.unit(1.43, "feet"),
  30259. name: "Head (Side)",
  30260. image: {
  30261. source: "./media/characters/theo-pangolin/head-side.svg"
  30262. }
  30263. },
  30264. tongue: {
  30265. height: math.unit(2.29, "feet"),
  30266. name: "Tongue",
  30267. image: {
  30268. source: "./media/characters/theo-pangolin/tongue.svg"
  30269. }
  30270. },
  30271. },
  30272. [
  30273. {
  30274. name: "Normal",
  30275. height: math.unit(6, "feet")
  30276. },
  30277. {
  30278. name: "Macro",
  30279. height: math.unit(400, "feet"),
  30280. default: true
  30281. },
  30282. ]
  30283. ))
  30284. characterMakers.push(() => makeCharacter(
  30285. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30286. {
  30287. front: {
  30288. height: math.unit(6, "inches"),
  30289. weight: math.unit(0.036, "kg"),
  30290. name: "Front",
  30291. image: {
  30292. source: "./media/characters/renée/front.svg",
  30293. extra: 900 / 886,
  30294. bottom: 8 / 908
  30295. }
  30296. },
  30297. },
  30298. [
  30299. {
  30300. name: "Nano",
  30301. height: math.unit(1, "nm")
  30302. },
  30303. {
  30304. name: "Micro",
  30305. height: math.unit(1, "mm")
  30306. },
  30307. {
  30308. name: "Normal",
  30309. height: math.unit(6, "inches")
  30310. },
  30311. {
  30312. name: "Macro",
  30313. height: math.unit(2000, "feet"),
  30314. default: true
  30315. },
  30316. {
  30317. name: "Megamacro",
  30318. height: math.unit(2, "km")
  30319. },
  30320. {
  30321. name: "Gigamacro",
  30322. height: math.unit(2000, "km")
  30323. },
  30324. {
  30325. name: "Teramacro",
  30326. height: math.unit(250000, "km")
  30327. },
  30328. ]
  30329. ))
  30330. characterMakers.push(() => makeCharacter(
  30331. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30332. {
  30333. front: {
  30334. height: math.unit(4, "meters"),
  30335. weight: math.unit(150, "kg"),
  30336. name: "Front",
  30337. image: {
  30338. source: "./media/characters/caledvwlch/front.svg",
  30339. extra: 1760 / 1551,
  30340. bottom: 28 / 1788
  30341. }
  30342. },
  30343. side: {
  30344. height: math.unit(4, "meters"),
  30345. weight: math.unit(150, "kg"),
  30346. name: "Side",
  30347. image: {
  30348. source: "./media/characters/caledvwlch/side.svg",
  30349. extra: 1605 / 1536,
  30350. bottom: 31 / 1636
  30351. }
  30352. },
  30353. back: {
  30354. height: math.unit(4, "meters"),
  30355. weight: math.unit(150, "kg"),
  30356. name: "Back",
  30357. image: {
  30358. source: "./media/characters/caledvwlch/back.svg",
  30359. extra: 1635 / 1565,
  30360. bottom: 27 / 1662
  30361. }
  30362. },
  30363. },
  30364. [
  30365. {
  30366. name: "\"Incognito\"",
  30367. height: math.unit(4, "meters")
  30368. },
  30369. {
  30370. name: "Small rampage",
  30371. height: math.unit(600, "meters")
  30372. },
  30373. {
  30374. name: "Mega",
  30375. height: math.unit(30, "km")
  30376. },
  30377. {
  30378. name: "Home-size",
  30379. height: math.unit(50, "km"),
  30380. default: true
  30381. },
  30382. {
  30383. name: "Giga",
  30384. height: math.unit(300, "km")
  30385. },
  30386. {
  30387. name: "Lounging",
  30388. height: math.unit(11000, "km")
  30389. },
  30390. {
  30391. name: "Planet snacking",
  30392. height: math.unit(2000000, "km")
  30393. },
  30394. ]
  30395. ))
  30396. characterMakers.push(() => makeCharacter(
  30397. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30398. {
  30399. front: {
  30400. height: math.unit(6, "feet"),
  30401. weight: math.unit(215, "lb"),
  30402. name: "Front",
  30403. image: {
  30404. source: "./media/characters/sapphire-svell/front.svg",
  30405. extra: 495 / 455,
  30406. bottom: 20 / 515
  30407. }
  30408. },
  30409. back: {
  30410. height: math.unit(6, "feet"),
  30411. weight: math.unit(216, "lb"),
  30412. name: "Back",
  30413. image: {
  30414. source: "./media/characters/sapphire-svell/back.svg",
  30415. extra: 497 / 477,
  30416. bottom: 7 / 504
  30417. }
  30418. },
  30419. maw: {
  30420. height: math.unit(1.57, "feet"),
  30421. name: "Maw",
  30422. image: {
  30423. source: "./media/characters/sapphire-svell/maw.svg"
  30424. }
  30425. },
  30426. foot: {
  30427. height: math.unit(1.07, "feet"),
  30428. name: "Foot",
  30429. image: {
  30430. source: "./media/characters/sapphire-svell/foot.svg"
  30431. }
  30432. },
  30433. toering: {
  30434. height: math.unit(1.7, "inch"),
  30435. name: "Toering",
  30436. image: {
  30437. source: "./media/characters/sapphire-svell/toering.svg"
  30438. }
  30439. },
  30440. },
  30441. [
  30442. {
  30443. name: "Normal",
  30444. height: math.unit(300, "feet"),
  30445. default: true
  30446. },
  30447. {
  30448. name: "Augmented",
  30449. height: math.unit(1250, "feet")
  30450. },
  30451. {
  30452. name: "Unleashed",
  30453. height: math.unit(3000, "feet")
  30454. },
  30455. ]
  30456. ))
  30457. characterMakers.push(() => makeCharacter(
  30458. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30459. {
  30460. side: {
  30461. height: math.unit(2 + 3 / 12, "feet"),
  30462. weight: math.unit(110, "lb"),
  30463. name: "Side",
  30464. image: {
  30465. source: "./media/characters/glitch-flux/side.svg",
  30466. extra: 997 / 805,
  30467. bottom: 20 / 1017
  30468. }
  30469. },
  30470. },
  30471. [
  30472. {
  30473. name: "Normal",
  30474. height: math.unit(2 + 3 / 12, "feet"),
  30475. default: true
  30476. },
  30477. ]
  30478. ))
  30479. characterMakers.push(() => makeCharacter(
  30480. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30481. {
  30482. front: {
  30483. height: math.unit(4, "meters"),
  30484. name: "Front",
  30485. image: {
  30486. source: "./media/characters/mid/front.svg",
  30487. extra: 507 / 476,
  30488. bottom: 17 / 524
  30489. }
  30490. },
  30491. back: {
  30492. height: math.unit(4, "meters"),
  30493. name: "Back",
  30494. image: {
  30495. source: "./media/characters/mid/back.svg",
  30496. extra: 519 / 487,
  30497. bottom: 7 / 526
  30498. }
  30499. },
  30500. stuck: {
  30501. height: math.unit(2.2, "meters"),
  30502. name: "Stuck",
  30503. image: {
  30504. source: "./media/characters/mid/stuck.svg",
  30505. extra: 1951 / 1869,
  30506. bottom: 88 / 2039
  30507. }
  30508. }
  30509. },
  30510. [
  30511. {
  30512. name: "Normal",
  30513. height: math.unit(4, "meters"),
  30514. default: true
  30515. },
  30516. {
  30517. name: "Big",
  30518. height: math.unit(10, "meters")
  30519. },
  30520. {
  30521. name: "Macro",
  30522. height: math.unit(800, "meters")
  30523. },
  30524. {
  30525. name: "Megamacro",
  30526. height: math.unit(100, "km")
  30527. },
  30528. {
  30529. name: "Overgrown",
  30530. height: math.unit(1, "parsec")
  30531. },
  30532. ]
  30533. ))
  30534. characterMakers.push(() => makeCharacter(
  30535. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30536. {
  30537. front: {
  30538. height: math.unit(2.5, "meters"),
  30539. weight: math.unit(225, "kg"),
  30540. name: "Front",
  30541. image: {
  30542. source: "./media/characters/iris/front.svg",
  30543. extra: 3348 / 3251,
  30544. bottom: 205 / 3553
  30545. }
  30546. },
  30547. maw: {
  30548. height: math.unit(0.56, "meter"),
  30549. name: "Maw",
  30550. image: {
  30551. source: "./media/characters/iris/maw.svg"
  30552. }
  30553. },
  30554. },
  30555. [
  30556. {
  30557. name: "Mewter cat",
  30558. height: math.unit(1.2, "meters")
  30559. },
  30560. {
  30561. name: "Minimacro",
  30562. height: math.unit(2.5, "meters"),
  30563. default: true
  30564. },
  30565. {
  30566. name: "Macro",
  30567. height: math.unit(180, "meters")
  30568. },
  30569. {
  30570. name: "Megamacro",
  30571. height: math.unit(2746, "meters")
  30572. },
  30573. ]
  30574. ))
  30575. characterMakers.push(() => makeCharacter(
  30576. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30577. {
  30578. front: {
  30579. height: math.unit(6, "feet"),
  30580. weight: math.unit(135, "lb"),
  30581. name: "Front",
  30582. image: {
  30583. source: "./media/characters/axel/front.svg",
  30584. extra: 908 / 908,
  30585. bottom: 58 / 966
  30586. }
  30587. },
  30588. side: {
  30589. height: math.unit(6, "feet"),
  30590. weight: math.unit(135, "lb"),
  30591. name: "Side",
  30592. image: {
  30593. source: "./media/characters/axel/side.svg",
  30594. extra: 958 / 958,
  30595. bottom: 11 / 969
  30596. }
  30597. },
  30598. back: {
  30599. height: math.unit(6, "feet"),
  30600. weight: math.unit(135, "lb"),
  30601. name: "Back",
  30602. image: {
  30603. source: "./media/characters/axel/back.svg",
  30604. extra: 887 / 887,
  30605. bottom: 34 / 921
  30606. }
  30607. },
  30608. head: {
  30609. height: math.unit(1.07, "feet"),
  30610. name: "Head",
  30611. image: {
  30612. source: "./media/characters/axel/head.svg"
  30613. }
  30614. },
  30615. beak: {
  30616. height: math.unit(1.4, "feet"),
  30617. name: "Beak",
  30618. image: {
  30619. source: "./media/characters/axel/beak.svg"
  30620. }
  30621. },
  30622. beakSide: {
  30623. height: math.unit(1.4, "feet"),
  30624. name: "Beak Side",
  30625. image: {
  30626. source: "./media/characters/axel/beak-side.svg"
  30627. }
  30628. },
  30629. sheath: {
  30630. height: math.unit(0.5, "feet"),
  30631. name: "Sheath",
  30632. image: {
  30633. source: "./media/characters/axel/sheath.svg"
  30634. }
  30635. },
  30636. dick: {
  30637. height: math.unit(0.98, "feet"),
  30638. name: "Dick",
  30639. image: {
  30640. source: "./media/characters/axel/dick.svg"
  30641. }
  30642. },
  30643. },
  30644. [
  30645. {
  30646. name: "Macro",
  30647. height: math.unit(68, "meters"),
  30648. default: true
  30649. },
  30650. ]
  30651. ))
  30652. characterMakers.push(() => makeCharacter(
  30653. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30654. {
  30655. front: {
  30656. height: math.unit(3.5, "meters"),
  30657. weight: math.unit(1200, "kg"),
  30658. name: "Front",
  30659. image: {
  30660. source: "./media/characters/joanna/front.svg",
  30661. extra: 1596 / 1488,
  30662. bottom: 29 / 1625
  30663. }
  30664. },
  30665. back: {
  30666. height: math.unit(3.5, "meters"),
  30667. weight: math.unit(1200, "kg"),
  30668. name: "Back",
  30669. image: {
  30670. source: "./media/characters/joanna/back.svg",
  30671. extra: 1594 / 1495,
  30672. bottom: 26 / 1620
  30673. }
  30674. },
  30675. frontShorts: {
  30676. height: math.unit(3.5, "meters"),
  30677. weight: math.unit(1200, "kg"),
  30678. name: "Front (Shorts)",
  30679. image: {
  30680. source: "./media/characters/joanna/front-shorts.svg",
  30681. extra: 1596 / 1488,
  30682. bottom: 29 / 1625
  30683. }
  30684. },
  30685. frontBiker: {
  30686. height: math.unit(3.5, "meters"),
  30687. weight: math.unit(1200, "kg"),
  30688. name: "Front (Biker)",
  30689. image: {
  30690. source: "./media/characters/joanna/front-biker.svg",
  30691. extra: 1596 / 1488,
  30692. bottom: 29 / 1625
  30693. }
  30694. },
  30695. backBiker: {
  30696. height: math.unit(3.5, "meters"),
  30697. weight: math.unit(1200, "kg"),
  30698. name: "Back (Biker)",
  30699. image: {
  30700. source: "./media/characters/joanna/back-biker.svg",
  30701. extra: 1594 / 1495,
  30702. bottom: 88 / 1682
  30703. }
  30704. },
  30705. bikeLeft: {
  30706. height: math.unit(2.4, "meters"),
  30707. weight: math.unit(1600, "kg"),
  30708. name: "Bike (Left)",
  30709. image: {
  30710. source: "./media/characters/joanna/bike-left.svg",
  30711. extra: 720 / 720,
  30712. bottom: 8 / 728
  30713. }
  30714. },
  30715. bikeRight: {
  30716. height: math.unit(2.4, "meters"),
  30717. weight: math.unit(1600, "kg"),
  30718. name: "Bike (Right)",
  30719. image: {
  30720. source: "./media/characters/joanna/bike-right.svg",
  30721. extra: 720 / 720,
  30722. bottom: 8 / 728
  30723. }
  30724. },
  30725. },
  30726. [
  30727. {
  30728. name: "Incognito",
  30729. height: math.unit(3.5, "meters")
  30730. },
  30731. {
  30732. name: "Casual Big",
  30733. height: math.unit(200, "meters")
  30734. },
  30735. {
  30736. name: "Macro",
  30737. height: math.unit(600, "meters")
  30738. },
  30739. {
  30740. name: "Original",
  30741. height: math.unit(20, "km"),
  30742. default: true
  30743. },
  30744. {
  30745. name: "Giga",
  30746. height: math.unit(400, "km")
  30747. },
  30748. {
  30749. name: "Lounging",
  30750. height: math.unit(1500, "km")
  30751. },
  30752. {
  30753. name: "Planetary",
  30754. height: math.unit(200000, "km")
  30755. },
  30756. ]
  30757. ))
  30758. characterMakers.push(() => makeCharacter(
  30759. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30760. {
  30761. front: {
  30762. height: math.unit(6, "feet"),
  30763. weight: math.unit(150, "lb"),
  30764. name: "Front",
  30765. image: {
  30766. source: "./media/characters/hugo-sigil/front.svg",
  30767. extra: 522 / 500,
  30768. bottom: 2 / 524
  30769. }
  30770. },
  30771. back: {
  30772. height: math.unit(6, "feet"),
  30773. weight: math.unit(150, "lb"),
  30774. name: "Back",
  30775. image: {
  30776. source: "./media/characters/hugo-sigil/back.svg",
  30777. extra: 519 / 495,
  30778. bottom: 5 / 524
  30779. }
  30780. },
  30781. maw: {
  30782. height: math.unit(1.4, "feet"),
  30783. weight: math.unit(150, "lb"),
  30784. name: "Maw",
  30785. image: {
  30786. source: "./media/characters/hugo-sigil/maw.svg"
  30787. }
  30788. },
  30789. feet: {
  30790. height: math.unit(1.56, "feet"),
  30791. weight: math.unit(150, "lb"),
  30792. name: "Feet",
  30793. image: {
  30794. source: "./media/characters/hugo-sigil/feet.svg",
  30795. extra: 177 / 177,
  30796. bottom: 12 / 189
  30797. }
  30798. },
  30799. },
  30800. [
  30801. {
  30802. name: "Normal",
  30803. height: math.unit(6, "feet")
  30804. },
  30805. {
  30806. name: "Macro",
  30807. height: math.unit(200, "feet"),
  30808. default: true
  30809. },
  30810. ]
  30811. ))
  30812. characterMakers.push(() => makeCharacter(
  30813. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30814. {
  30815. front: {
  30816. height: math.unit(6, "feet"),
  30817. weight: math.unit(150, "lb"),
  30818. name: "Front",
  30819. image: {
  30820. source: "./media/characters/peri/front.svg",
  30821. extra: 2354 / 2233,
  30822. bottom: 49 / 2403
  30823. }
  30824. },
  30825. },
  30826. [
  30827. {
  30828. name: "Really Small",
  30829. height: math.unit(1, "nm")
  30830. },
  30831. {
  30832. name: "Micro",
  30833. height: math.unit(4, "inches")
  30834. },
  30835. {
  30836. name: "Normal",
  30837. height: math.unit(7, "inches"),
  30838. default: true
  30839. },
  30840. {
  30841. name: "Macro",
  30842. height: math.unit(400, "feet")
  30843. },
  30844. {
  30845. name: "Megamacro",
  30846. height: math.unit(100, "miles")
  30847. },
  30848. ]
  30849. ))
  30850. characterMakers.push(() => makeCharacter(
  30851. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30852. {
  30853. frontSlim: {
  30854. height: math.unit(7, "feet"),
  30855. name: "Front (Slim)",
  30856. image: {
  30857. source: "./media/characters/issilora/front-slim.svg",
  30858. extra: 529 / 449,
  30859. bottom: 53 / 582
  30860. }
  30861. },
  30862. sideSlim: {
  30863. height: math.unit(7, "feet"),
  30864. name: "Side (Slim)",
  30865. image: {
  30866. source: "./media/characters/issilora/side-slim.svg",
  30867. extra: 570 / 480,
  30868. bottom: 30 / 600
  30869. }
  30870. },
  30871. backSlim: {
  30872. height: math.unit(7, "feet"),
  30873. name: "Back (Slim)",
  30874. image: {
  30875. source: "./media/characters/issilora/back-slim.svg",
  30876. extra: 537 / 455,
  30877. bottom: 46 / 583
  30878. }
  30879. },
  30880. frontBuff: {
  30881. height: math.unit(7, "feet"),
  30882. name: "Front (Buff)",
  30883. image: {
  30884. source: "./media/characters/issilora/front-buff.svg",
  30885. extra: 2310 / 2035,
  30886. bottom: 335 / 2645
  30887. }
  30888. },
  30889. head: {
  30890. height: math.unit(1.94, "feet"),
  30891. name: "Head",
  30892. image: {
  30893. source: "./media/characters/issilora/head.svg"
  30894. }
  30895. },
  30896. },
  30897. [
  30898. {
  30899. name: "Minimum",
  30900. height: math.unit(7, "feet")
  30901. },
  30902. {
  30903. name: "Comfortable",
  30904. height: math.unit(17, "feet")
  30905. },
  30906. {
  30907. name: "Fun Size",
  30908. height: math.unit(47, "feet")
  30909. },
  30910. {
  30911. name: "Natural Macro",
  30912. height: math.unit(137, "feet"),
  30913. default: true
  30914. },
  30915. {
  30916. name: "Maximum Kaiju",
  30917. height: math.unit(397, "feet")
  30918. },
  30919. ]
  30920. ))
  30921. characterMakers.push(() => makeCharacter(
  30922. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30923. {
  30924. front: {
  30925. height: math.unit(50 + 9/12, "feet"),
  30926. weight: math.unit(32.8, "tons"),
  30927. name: "Front",
  30928. image: {
  30929. source: "./media/characters/irb'iiritaahn/front.svg",
  30930. extra: 1878/1826,
  30931. bottom: 326/2204
  30932. }
  30933. },
  30934. back: {
  30935. height: math.unit(50 + 9/12, "feet"),
  30936. weight: math.unit(32.8, "tons"),
  30937. name: "Back",
  30938. image: {
  30939. source: "./media/characters/irb'iiritaahn/back.svg",
  30940. extra: 2052/2018,
  30941. bottom: 152/2204
  30942. }
  30943. },
  30944. head: {
  30945. height: math.unit(12.86, "feet"),
  30946. name: "Head",
  30947. image: {
  30948. source: "./media/characters/irb'iiritaahn/head.svg"
  30949. }
  30950. },
  30951. maw: {
  30952. height: math.unit(9.66, "feet"),
  30953. name: "Maw",
  30954. image: {
  30955. source: "./media/characters/irb'iiritaahn/maw.svg"
  30956. }
  30957. },
  30958. frontDick: {
  30959. height: math.unit(8.78461, "feet"),
  30960. name: "Front Dick",
  30961. image: {
  30962. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30963. }
  30964. },
  30965. rearDick: {
  30966. height: math.unit(8.78461, "feet"),
  30967. name: "Rear Dick",
  30968. image: {
  30969. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30970. }
  30971. },
  30972. rearDickUnfolded: {
  30973. height: math.unit(8.78, "feet"),
  30974. name: "Rear Dick (Unfolded)",
  30975. image: {
  30976. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30977. }
  30978. },
  30979. wings: {
  30980. height: math.unit(43, "feet"),
  30981. name: "Wings",
  30982. image: {
  30983. source: "./media/characters/irb'iiritaahn/wings.svg"
  30984. }
  30985. },
  30986. },
  30987. [
  30988. {
  30989. name: "Macro",
  30990. height: math.unit(50 + 9/12, "feet"),
  30991. default: true
  30992. },
  30993. ]
  30994. ))
  30995. characterMakers.push(() => makeCharacter(
  30996. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30997. {
  30998. front: {
  30999. height: math.unit(205, "cm"),
  31000. weight: math.unit(102, "kg"),
  31001. name: "Front",
  31002. image: {
  31003. source: "./media/characters/irbisgreif/front.svg",
  31004. extra: 785/706,
  31005. bottom: 13/798
  31006. }
  31007. },
  31008. back: {
  31009. height: math.unit(205, "cm"),
  31010. weight: math.unit(102, "kg"),
  31011. name: "Back",
  31012. image: {
  31013. source: "./media/characters/irbisgreif/back.svg",
  31014. extra: 713/701,
  31015. bottom: 26/739
  31016. }
  31017. },
  31018. frontDressed: {
  31019. height: math.unit(216, "cm"),
  31020. weight: math.unit(102, "kg"),
  31021. name: "Front-dressed",
  31022. image: {
  31023. source: "./media/characters/irbisgreif/front-dressed.svg",
  31024. extra: 902/776,
  31025. bottom: 14/916
  31026. }
  31027. },
  31028. sideDressed: {
  31029. height: math.unit(195, "cm"),
  31030. weight: math.unit(102, "kg"),
  31031. name: "Side-dressed",
  31032. image: {
  31033. source: "./media/characters/irbisgreif/side-dressed.svg",
  31034. extra: 788/688,
  31035. bottom: 21/809
  31036. }
  31037. },
  31038. backDressed: {
  31039. height: math.unit(216, "cm"),
  31040. weight: math.unit(102, "kg"),
  31041. name: "Back-dressed",
  31042. image: {
  31043. source: "./media/characters/irbisgreif/back-dressed.svg",
  31044. extra: 901/783,
  31045. bottom: 10/911
  31046. }
  31047. },
  31048. dick: {
  31049. height: math.unit(0.49, "feet"),
  31050. name: "Dick",
  31051. image: {
  31052. source: "./media/characters/irbisgreif/dick.svg"
  31053. }
  31054. },
  31055. wingTop: {
  31056. height: math.unit(1.93 , "feet"),
  31057. name: "Wing-top",
  31058. image: {
  31059. source: "./media/characters/irbisgreif/wing-top.svg"
  31060. }
  31061. },
  31062. wingBottom: {
  31063. height: math.unit(1.93 , "feet"),
  31064. name: "Wing-bottom",
  31065. image: {
  31066. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31067. }
  31068. },
  31069. },
  31070. [
  31071. {
  31072. name: "Normal",
  31073. height: math.unit(216, "cm"),
  31074. default: true
  31075. },
  31076. ]
  31077. ))
  31078. characterMakers.push(() => makeCharacter(
  31079. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31080. {
  31081. front: {
  31082. height: math.unit(6, "feet"),
  31083. weight: math.unit(150, "lb"),
  31084. name: "Front",
  31085. image: {
  31086. source: "./media/characters/pride/front.svg",
  31087. extra: 1299/1230,
  31088. bottom: 18/1317
  31089. }
  31090. },
  31091. },
  31092. [
  31093. {
  31094. name: "Normal",
  31095. height: math.unit(7, "feet")
  31096. },
  31097. {
  31098. name: "Mini-macro",
  31099. height: math.unit(11, "feet")
  31100. },
  31101. {
  31102. name: "Macro",
  31103. height: math.unit(15, "meters"),
  31104. default: true
  31105. },
  31106. {
  31107. name: "Macro+",
  31108. height: math.unit(40, "meters")
  31109. },
  31110. ]
  31111. ))
  31112. characterMakers.push(() => makeCharacter(
  31113. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31114. {
  31115. front: {
  31116. height: math.unit(4 + 2 / 12, "feet"),
  31117. weight: math.unit(95, "lb"),
  31118. name: "Front",
  31119. image: {
  31120. source: "./media/characters/vaelophis-nyx/front.svg",
  31121. extra: 2532/2330,
  31122. bottom: 0/2532
  31123. }
  31124. },
  31125. back: {
  31126. height: math.unit(4 + 2 / 12, "feet"),
  31127. weight: math.unit(95, "lb"),
  31128. name: "Back",
  31129. image: {
  31130. source: "./media/characters/vaelophis-nyx/back.svg",
  31131. extra: 2484/2361,
  31132. bottom: 0/2484
  31133. }
  31134. },
  31135. feralSide: {
  31136. height: math.unit(2 + 1/12, "feet"),
  31137. weight: math.unit(20, "lb"),
  31138. name: "Feral (Side)",
  31139. image: {
  31140. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31141. extra: 1721/1581,
  31142. bottom: 70/1791
  31143. }
  31144. },
  31145. feralLazing: {
  31146. height: math.unit(1.08, "feet"),
  31147. weight: math.unit(20, "lb"),
  31148. name: "Feral (Lazing)",
  31149. image: {
  31150. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31151. extra: 822/822,
  31152. bottom: 248/1070
  31153. }
  31154. },
  31155. ear: {
  31156. height: math.unit(0.416, "feet"),
  31157. name: "Ear",
  31158. image: {
  31159. source: "./media/characters/vaelophis-nyx/ear.svg"
  31160. }
  31161. },
  31162. eye: {
  31163. height: math.unit(0.0748, "feet"),
  31164. name: "Eye",
  31165. image: {
  31166. source: "./media/characters/vaelophis-nyx/eye.svg"
  31167. }
  31168. },
  31169. mouth: {
  31170. height: math.unit(0.378, "feet"),
  31171. name: "Mouth",
  31172. image: {
  31173. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31174. }
  31175. },
  31176. spade: {
  31177. height: math.unit(0.55, "feet"),
  31178. name: "Spade",
  31179. image: {
  31180. source: "./media/characters/vaelophis-nyx/spade.svg"
  31181. }
  31182. },
  31183. },
  31184. [
  31185. {
  31186. name: "Normal",
  31187. height: math.unit(4 + 2/12, "feet"),
  31188. default: true
  31189. },
  31190. ]
  31191. ))
  31192. characterMakers.push(() => makeCharacter(
  31193. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31194. {
  31195. front: {
  31196. height: math.unit(7, "feet"),
  31197. weight: math.unit(231, "lb"),
  31198. name: "Front",
  31199. image: {
  31200. source: "./media/characters/flux/front.svg",
  31201. extra: 919/871,
  31202. bottom: 0/919
  31203. }
  31204. },
  31205. back: {
  31206. height: math.unit(7, "feet"),
  31207. weight: math.unit(231, "lb"),
  31208. name: "Back",
  31209. image: {
  31210. source: "./media/characters/flux/back.svg",
  31211. extra: 1040/992,
  31212. bottom: 0/1040
  31213. }
  31214. },
  31215. frontDressed: {
  31216. height: math.unit(7, "feet"),
  31217. weight: math.unit(231, "lb"),
  31218. name: "Front (Dressed)",
  31219. image: {
  31220. source: "./media/characters/flux/front-dressed.svg",
  31221. extra: 919/871,
  31222. bottom: 0/919
  31223. }
  31224. },
  31225. feralSide: {
  31226. height: math.unit(5, "feet"),
  31227. weight: math.unit(150, "lb"),
  31228. name: "Feral (Side)",
  31229. image: {
  31230. source: "./media/characters/flux/feral-side.svg",
  31231. extra: 598/528,
  31232. bottom: 28/626
  31233. }
  31234. },
  31235. head: {
  31236. height: math.unit(1.585, "feet"),
  31237. name: "Head",
  31238. image: {
  31239. source: "./media/characters/flux/head.svg"
  31240. }
  31241. },
  31242. headSide: {
  31243. height: math.unit(1.74, "feet"),
  31244. name: "Head (Side)",
  31245. image: {
  31246. source: "./media/characters/flux/head-side.svg"
  31247. }
  31248. },
  31249. headSideFire: {
  31250. height: math.unit(1.76, "feet"),
  31251. name: "Head (Side, Fire)",
  31252. image: {
  31253. source: "./media/characters/flux/head-side-fire.svg"
  31254. }
  31255. },
  31256. },
  31257. [
  31258. {
  31259. name: "Normal",
  31260. height: math.unit(7, "feet"),
  31261. default: true
  31262. },
  31263. ]
  31264. ))
  31265. characterMakers.push(() => makeCharacter(
  31266. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31267. {
  31268. front: {
  31269. height: math.unit(9, "feet"),
  31270. weight: math.unit(1012, "lb"),
  31271. name: "Front",
  31272. image: {
  31273. source: "./media/characters/ulfra-lupae/front.svg",
  31274. extra: 1083/1011,
  31275. bottom: 67/1150
  31276. }
  31277. },
  31278. },
  31279. [
  31280. {
  31281. name: "Micro",
  31282. height: math.unit(6, "inches")
  31283. },
  31284. {
  31285. name: "Socializing",
  31286. height: math.unit(6 + 5/12, "feet")
  31287. },
  31288. {
  31289. name: "Normal",
  31290. height: math.unit(9, "feet"),
  31291. default: true
  31292. },
  31293. {
  31294. name: "Macro",
  31295. height: math.unit(150, "feet")
  31296. },
  31297. ]
  31298. ))
  31299. characterMakers.push(() => makeCharacter(
  31300. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31301. {
  31302. front: {
  31303. height: math.unit(5 + 2/12, "feet"),
  31304. weight: math.unit(120, "lb"),
  31305. name: "Front",
  31306. image: {
  31307. source: "./media/characters/timber/front.svg",
  31308. extra: 2814/2705,
  31309. bottom: 181/2995
  31310. }
  31311. },
  31312. },
  31313. [
  31314. {
  31315. name: "Normal",
  31316. height: math.unit(5 + 2/12, "feet"),
  31317. default: true
  31318. },
  31319. ]
  31320. ))
  31321. characterMakers.push(() => makeCharacter(
  31322. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31323. {
  31324. front: {
  31325. height: math.unit(5 + 7/12, "feet"),
  31326. weight: math.unit(220, "lb"),
  31327. name: "Front",
  31328. image: {
  31329. source: "./media/characters/nicki/front.svg",
  31330. extra: 453/419,
  31331. bottom: 7/460
  31332. }
  31333. },
  31334. frontAlt: {
  31335. height: math.unit(5 + 7/12, "feet"),
  31336. weight: math.unit(220, "lb"),
  31337. name: "Front-alt",
  31338. image: {
  31339. source: "./media/characters/nicki/front-alt.svg",
  31340. extra: 435/411,
  31341. bottom: 12/447
  31342. }
  31343. },
  31344. back: {
  31345. height: math.unit(5 + 7/12, "feet"),
  31346. weight: math.unit(220, "lb"),
  31347. name: "Back",
  31348. image: {
  31349. source: "./media/characters/nicki/back.svg",
  31350. extra: 440/413,
  31351. bottom: 19/459
  31352. }
  31353. },
  31354. taur: {
  31355. height: math.unit(7 + 6/12, "feet"),
  31356. weight: math.unit(700, "lb"),
  31357. name: "Taur",
  31358. image: {
  31359. source: "./media/characters/nicki/taur.svg",
  31360. extra: 975/773,
  31361. bottom: 0/975
  31362. }
  31363. },
  31364. frontNsfw: {
  31365. height: math.unit(5 + 7/12, "feet"),
  31366. weight: math.unit(220, "lb"),
  31367. name: "Front (NSFW)",
  31368. image: {
  31369. source: "./media/characters/nicki/front-nsfw.svg",
  31370. extra: 453/419,
  31371. bottom: 7/460
  31372. }
  31373. },
  31374. frontNsfwAlt: {
  31375. height: math.unit(5 + 7/12, "feet"),
  31376. weight: math.unit(220, "lb"),
  31377. name: "Front (Alt, NSFW)",
  31378. image: {
  31379. source: "./media/characters/nicki/front-alt-nsfw.svg",
  31380. extra: 435/411,
  31381. bottom: 12/447
  31382. }
  31383. },
  31384. backNsfw: {
  31385. height: math.unit(5 + 7/12, "feet"),
  31386. weight: math.unit(220, "lb"),
  31387. name: "Back (NSFW)",
  31388. image: {
  31389. source: "./media/characters/nicki/back-nsfw.svg",
  31390. extra: 440/413,
  31391. bottom: 19/459
  31392. }
  31393. },
  31394. head: {
  31395. height: math.unit(2.1, "feet"),
  31396. name: "Head",
  31397. image: {
  31398. source: "./media/characters/nicki/head.svg"
  31399. }
  31400. },
  31401. paw: {
  31402. height: math.unit(1.88, "feet"),
  31403. name: "Paw",
  31404. image: {
  31405. source: "./media/characters/nicki/paw.svg"
  31406. }
  31407. },
  31408. },
  31409. [
  31410. {
  31411. name: "Normal",
  31412. height: math.unit(5 + 7/12, "feet"),
  31413. default: true
  31414. },
  31415. ]
  31416. ))
  31417. characterMakers.push(() => makeCharacter(
  31418. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31419. {
  31420. front: {
  31421. height: math.unit(7 + 10/12, "feet"),
  31422. weight: math.unit(3.5, "tons"),
  31423. name: "Front",
  31424. image: {
  31425. source: "./media/characters/lee/front.svg",
  31426. extra: 1773/1615,
  31427. bottom: 86/1859
  31428. }
  31429. },
  31430. hand: {
  31431. height: math.unit(1.78, "feet"),
  31432. name: "Hand",
  31433. image: {
  31434. source: "./media/characters/lee/hand.svg"
  31435. }
  31436. },
  31437. maw: {
  31438. height: math.unit(1.18, "feet"),
  31439. name: "Maw",
  31440. image: {
  31441. source: "./media/characters/lee/maw.svg"
  31442. }
  31443. },
  31444. },
  31445. [
  31446. {
  31447. name: "Normal",
  31448. height: math.unit(7 + 10/12, "feet"),
  31449. default: true
  31450. },
  31451. ]
  31452. ))
  31453. characterMakers.push(() => makeCharacter(
  31454. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31455. {
  31456. front: {
  31457. height: math.unit(9, "feet"),
  31458. name: "Front",
  31459. image: {
  31460. source: "./media/characters/guti/front.svg",
  31461. extra: 4551/4355,
  31462. bottom: 123/4674
  31463. }
  31464. },
  31465. tongue: {
  31466. height: math.unit(1, "feet"),
  31467. name: "Tongue",
  31468. image: {
  31469. source: "./media/characters/guti/tongue.svg"
  31470. }
  31471. },
  31472. paw: {
  31473. height: math.unit(1.18, "feet"),
  31474. name: "Paw",
  31475. image: {
  31476. source: "./media/characters/guti/paw.svg"
  31477. }
  31478. },
  31479. },
  31480. [
  31481. {
  31482. name: "Normal",
  31483. height: math.unit(9, "feet"),
  31484. default: true
  31485. },
  31486. ]
  31487. ))
  31488. characterMakers.push(() => makeCharacter(
  31489. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31490. {
  31491. side: {
  31492. height: math.unit(5, "meters"),
  31493. name: "Side",
  31494. image: {
  31495. source: "./media/characters/vesper/side.svg",
  31496. extra: 1605/1518,
  31497. bottom: 0/1605
  31498. }
  31499. },
  31500. },
  31501. [
  31502. {
  31503. name: "Small",
  31504. height: math.unit(5, "meters")
  31505. },
  31506. {
  31507. name: "Sage",
  31508. height: math.unit(100, "meters"),
  31509. default: true
  31510. },
  31511. {
  31512. name: "Fun Size",
  31513. height: math.unit(600, "meters")
  31514. },
  31515. {
  31516. name: "Goddess",
  31517. height: math.unit(20000, "km")
  31518. },
  31519. {
  31520. name: "Maximum",
  31521. height: math.unit(5, "galaxies")
  31522. },
  31523. ]
  31524. ))
  31525. characterMakers.push(() => makeCharacter(
  31526. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31527. {
  31528. front: {
  31529. height: math.unit(6 + 3/12, "feet"),
  31530. weight: math.unit(190, "lb"),
  31531. name: "Front",
  31532. image: {
  31533. source: "./media/characters/gawain/front.svg",
  31534. extra: 2222/2139,
  31535. bottom: 90/2312
  31536. }
  31537. },
  31538. back: {
  31539. height: math.unit(6 + 3/12, "feet"),
  31540. weight: math.unit(190, "lb"),
  31541. name: "Back",
  31542. image: {
  31543. source: "./media/characters/gawain/back.svg",
  31544. extra: 2199/2111,
  31545. bottom: 73/2272
  31546. }
  31547. },
  31548. },
  31549. [
  31550. {
  31551. name: "Normal",
  31552. height: math.unit(6 + 3/12, "feet"),
  31553. default: true
  31554. },
  31555. ]
  31556. ))
  31557. characterMakers.push(() => makeCharacter(
  31558. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31559. {
  31560. side: {
  31561. height: math.unit(3.5, "meters"),
  31562. weight: math.unit(16000, "lb"),
  31563. name: "Side",
  31564. image: {
  31565. source: "./media/characters/dascalti/side.svg",
  31566. extra: 392/273,
  31567. bottom: 47/439
  31568. }
  31569. },
  31570. breath: {
  31571. height: math.unit(7.4, "feet"),
  31572. name: "Breath",
  31573. image: {
  31574. source: "./media/characters/dascalti/breath.svg"
  31575. }
  31576. },
  31577. fed: {
  31578. height: math.unit(3.6, "meters"),
  31579. weight: math.unit(16000, "lb"),
  31580. name: "Fed",
  31581. image: {
  31582. source: "./media/characters/dascalti/fed.svg",
  31583. extra: 1419/820,
  31584. bottom: 95/1514
  31585. }
  31586. },
  31587. },
  31588. [
  31589. {
  31590. name: "Normal",
  31591. height: math.unit(3.5, "meters"),
  31592. default: true
  31593. },
  31594. ]
  31595. ))
  31596. characterMakers.push(() => makeCharacter(
  31597. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31598. {
  31599. front: {
  31600. height: math.unit(3 + 5/12, "feet"),
  31601. name: "Front",
  31602. image: {
  31603. source: "./media/characters/mauve/front.svg",
  31604. extra: 1126/1033,
  31605. bottom: 65/1191
  31606. }
  31607. },
  31608. side: {
  31609. height: math.unit(3 + 5/12, "feet"),
  31610. name: "Side",
  31611. image: {
  31612. source: "./media/characters/mauve/side.svg",
  31613. extra: 1089/1001,
  31614. bottom: 29/1118
  31615. }
  31616. },
  31617. back: {
  31618. height: math.unit(3 + 5/12, "feet"),
  31619. name: "Back",
  31620. image: {
  31621. source: "./media/characters/mauve/back.svg",
  31622. extra: 1173/1053,
  31623. bottom: 109/1282
  31624. }
  31625. },
  31626. },
  31627. [
  31628. {
  31629. name: "Normal",
  31630. height: math.unit(3 + 5/12, "feet"),
  31631. default: true
  31632. },
  31633. ]
  31634. ))
  31635. characterMakers.push(() => makeCharacter(
  31636. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31637. {
  31638. front: {
  31639. height: math.unit(6 + 3/12, "feet"),
  31640. weight: math.unit(430, "lb"),
  31641. name: "Front",
  31642. image: {
  31643. source: "./media/characters/carlos/front.svg",
  31644. extra: 1964/1913,
  31645. bottom: 70/2034
  31646. }
  31647. },
  31648. },
  31649. [
  31650. {
  31651. name: "Normal",
  31652. height: math.unit(6 + 3/12, "feet"),
  31653. default: true
  31654. },
  31655. ]
  31656. ))
  31657. characterMakers.push(() => makeCharacter(
  31658. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31659. {
  31660. back: {
  31661. height: math.unit(5 + 10/12, "feet"),
  31662. weight: math.unit(200, "lb"),
  31663. name: "Back",
  31664. image: {
  31665. source: "./media/characters/jax/back.svg",
  31666. extra: 764/739,
  31667. bottom: 25/789
  31668. }
  31669. },
  31670. },
  31671. [
  31672. {
  31673. name: "Normal",
  31674. height: math.unit(5 + 10/12, "feet"),
  31675. default: true
  31676. },
  31677. ]
  31678. ))
  31679. characterMakers.push(() => makeCharacter(
  31680. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31681. {
  31682. front: {
  31683. height: math.unit(8, "feet"),
  31684. weight: math.unit(250, "lb"),
  31685. name: "Front",
  31686. image: {
  31687. source: "./media/characters/eikthynir/front.svg",
  31688. extra: 1332/1166,
  31689. bottom: 82/1414
  31690. }
  31691. },
  31692. back: {
  31693. height: math.unit(8, "feet"),
  31694. weight: math.unit(250, "lb"),
  31695. name: "Back",
  31696. image: {
  31697. source: "./media/characters/eikthynir/back.svg",
  31698. extra: 1342/1190,
  31699. bottom: 19/1361
  31700. }
  31701. },
  31702. dick: {
  31703. height: math.unit(2.35, "feet"),
  31704. name: "Dick",
  31705. image: {
  31706. source: "./media/characters/eikthynir/dick.svg"
  31707. }
  31708. },
  31709. },
  31710. [
  31711. {
  31712. name: "Normal",
  31713. height: math.unit(8, "feet"),
  31714. default: true
  31715. },
  31716. ]
  31717. ))
  31718. characterMakers.push(() => makeCharacter(
  31719. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31720. {
  31721. front: {
  31722. height: math.unit(99, "meters"),
  31723. weight: math.unit(13000, "tons"),
  31724. name: "Front",
  31725. image: {
  31726. source: "./media/characters/zlmos/front.svg",
  31727. extra: 2202/1992,
  31728. bottom: 315/2517
  31729. }
  31730. },
  31731. },
  31732. [
  31733. {
  31734. name: "Macro",
  31735. height: math.unit(99, "meters"),
  31736. default: true
  31737. },
  31738. ]
  31739. ))
  31740. characterMakers.push(() => makeCharacter(
  31741. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31742. {
  31743. front: {
  31744. height: math.unit(6 + 5/12, "feet"),
  31745. name: "Front",
  31746. image: {
  31747. source: "./media/characters/purri/front.svg",
  31748. extra: 1698/1610,
  31749. bottom: 32/1730
  31750. }
  31751. },
  31752. frontAlt: {
  31753. height: math.unit(6 + 5/12, "feet"),
  31754. name: "Front (Alt)",
  31755. image: {
  31756. source: "./media/characters/purri/front-alt.svg",
  31757. extra: 450/420,
  31758. bottom: 26/476
  31759. }
  31760. },
  31761. boots: {
  31762. height: math.unit(5.5, "feet"),
  31763. name: "Boots",
  31764. image: {
  31765. source: "./media/characters/purri/boots.svg",
  31766. extra: 905/853,
  31767. bottom: 18/923
  31768. }
  31769. },
  31770. lying: {
  31771. height: math.unit(2, "feet"),
  31772. name: "Lying",
  31773. image: {
  31774. source: "./media/characters/purri/lying.svg",
  31775. extra: 940/843,
  31776. bottom: 146/1086
  31777. }
  31778. },
  31779. devious: {
  31780. height: math.unit(1.77, "feet"),
  31781. name: "Devious",
  31782. image: {
  31783. source: "./media/characters/purri/devious.svg",
  31784. extra: 1440/1155,
  31785. bottom: 147/1587
  31786. }
  31787. },
  31788. bean: {
  31789. height: math.unit(1.94, "feet"),
  31790. name: "Bean",
  31791. image: {
  31792. source: "./media/characters/purri/bean.svg"
  31793. }
  31794. },
  31795. },
  31796. [
  31797. {
  31798. name: "Micro",
  31799. height: math.unit(1, "mm")
  31800. },
  31801. {
  31802. name: "Normal",
  31803. height: math.unit(6 + 5/12, "feet"),
  31804. default: true
  31805. },
  31806. {
  31807. name: "Macro :3c",
  31808. height: math.unit(2, "miles")
  31809. },
  31810. ]
  31811. ))
  31812. characterMakers.push(() => makeCharacter(
  31813. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31814. {
  31815. front: {
  31816. height: math.unit(6 + 2/12, "feet"),
  31817. weight: math.unit(250, "lb"),
  31818. name: "Front",
  31819. image: {
  31820. source: "./media/characters/moonlight/front.svg",
  31821. extra: 1044/908,
  31822. bottom: 56/1100
  31823. }
  31824. },
  31825. feral: {
  31826. height: math.unit(3 + 1/12, "feet"),
  31827. weight: math.unit(50, "kg"),
  31828. name: "Feral",
  31829. image: {
  31830. source: "./media/characters/moonlight/feral.svg",
  31831. extra: 3705/2791,
  31832. bottom: 145/3850
  31833. }
  31834. },
  31835. paw: {
  31836. height: math.unit(1, "feet"),
  31837. name: "Paw",
  31838. image: {
  31839. source: "./media/characters/moonlight/paw.svg"
  31840. }
  31841. },
  31842. paws: {
  31843. height: math.unit(0.98, "feet"),
  31844. name: "Paws",
  31845. image: {
  31846. source: "./media/characters/moonlight/paws.svg",
  31847. extra: 939/939,
  31848. bottom: 50/989
  31849. }
  31850. },
  31851. mouth: {
  31852. height: math.unit(0.48, "feet"),
  31853. name: "Mouth",
  31854. image: {
  31855. source: "./media/characters/moonlight/mouth.svg"
  31856. }
  31857. },
  31858. dick: {
  31859. height: math.unit(1.46, "feet"),
  31860. name: "Dick",
  31861. image: {
  31862. source: "./media/characters/moonlight/dick.svg"
  31863. }
  31864. },
  31865. },
  31866. [
  31867. {
  31868. name: "Normal",
  31869. height: math.unit(6 + 2/12, "feet"),
  31870. default: true
  31871. },
  31872. {
  31873. name: "Macro",
  31874. height: math.unit(300, "feet")
  31875. },
  31876. {
  31877. name: "Macro+",
  31878. height: math.unit(1, "mile")
  31879. },
  31880. {
  31881. name: "Mt. Moon",
  31882. height: math.unit(5, "miles")
  31883. },
  31884. {
  31885. name: "Megamacro",
  31886. height: math.unit(15, "miles")
  31887. },
  31888. ]
  31889. ))
  31890. characterMakers.push(() => makeCharacter(
  31891. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31892. {
  31893. back: {
  31894. height: math.unit(6, "feet"),
  31895. weight: math.unit(150, "lb"),
  31896. name: "Back",
  31897. image: {
  31898. source: "./media/characters/sylen/back.svg",
  31899. extra: 1335/1273,
  31900. bottom: 107/1442
  31901. }
  31902. },
  31903. },
  31904. [
  31905. {
  31906. name: "Normal",
  31907. height: math.unit(5 + 5/12, "feet")
  31908. },
  31909. {
  31910. name: "Megamacro",
  31911. height: math.unit(3, "miles"),
  31912. default: true
  31913. },
  31914. ]
  31915. ))
  31916. characterMakers.push(() => makeCharacter(
  31917. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31918. {
  31919. front: {
  31920. height: math.unit(6, "feet"),
  31921. weight: math.unit(190, "lb"),
  31922. name: "Front",
  31923. image: {
  31924. source: "./media/characters/huttser/front.svg",
  31925. extra: 1152/1058,
  31926. bottom: 23/1175
  31927. }
  31928. },
  31929. side: {
  31930. height: math.unit(6, "feet"),
  31931. weight: math.unit(190, "lb"),
  31932. name: "Side",
  31933. image: {
  31934. source: "./media/characters/huttser/side.svg",
  31935. extra: 1174/1065,
  31936. bottom: 18/1192
  31937. }
  31938. },
  31939. back: {
  31940. height: math.unit(6, "feet"),
  31941. weight: math.unit(190, "lb"),
  31942. name: "Back",
  31943. image: {
  31944. source: "./media/characters/huttser/back.svg",
  31945. extra: 1158/1056,
  31946. bottom: 12/1170
  31947. }
  31948. },
  31949. },
  31950. [
  31951. ]
  31952. ))
  31953. characterMakers.push(() => makeCharacter(
  31954. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31955. {
  31956. side: {
  31957. height: math.unit(12 + 9/12, "feet"),
  31958. weight: math.unit(15000, "lb"),
  31959. name: "Side",
  31960. image: {
  31961. source: "./media/characters/faan/side.svg",
  31962. extra: 2747/2697,
  31963. bottom: 0/2747
  31964. }
  31965. },
  31966. front: {
  31967. height: math.unit(12 + 9/12, "feet"),
  31968. weight: math.unit(15000, "lb"),
  31969. name: "Front",
  31970. image: {
  31971. source: "./media/characters/faan/front.svg",
  31972. extra: 607/571,
  31973. bottom: 24/631
  31974. }
  31975. },
  31976. head: {
  31977. height: math.unit(2.85, "feet"),
  31978. name: "Head",
  31979. image: {
  31980. source: "./media/characters/faan/head.svg"
  31981. }
  31982. },
  31983. headAlt: {
  31984. height: math.unit(3.13, "feet"),
  31985. name: "Head-alt",
  31986. image: {
  31987. source: "./media/characters/faan/head-alt.svg"
  31988. }
  31989. },
  31990. },
  31991. [
  31992. {
  31993. name: "Normal",
  31994. height: math.unit(12 + 9/12, "feet"),
  31995. default: true
  31996. },
  31997. ]
  31998. ))
  31999. characterMakers.push(() => makeCharacter(
  32000. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32001. {
  32002. front: {
  32003. height: math.unit(6, "feet"),
  32004. weight: math.unit(300, "lb"),
  32005. name: "Front",
  32006. image: {
  32007. source: "./media/characters/tanio/front.svg",
  32008. extra: 711/673,
  32009. bottom: 25/736
  32010. }
  32011. },
  32012. },
  32013. [
  32014. {
  32015. name: "Normal",
  32016. height: math.unit(6, "feet"),
  32017. default: true
  32018. },
  32019. ]
  32020. ))
  32021. characterMakers.push(() => makeCharacter(
  32022. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32023. {
  32024. front: {
  32025. height: math.unit(3, "inches"),
  32026. name: "Front",
  32027. image: {
  32028. source: "./media/characters/noboru/front.svg",
  32029. extra: 1039/932,
  32030. bottom: 18/1057
  32031. }
  32032. },
  32033. },
  32034. [
  32035. {
  32036. name: "Micro",
  32037. height: math.unit(3, "inches"),
  32038. default: true
  32039. },
  32040. ]
  32041. ))
  32042. characterMakers.push(() => makeCharacter(
  32043. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32044. {
  32045. front: {
  32046. height: math.unit(1.85, "meters"),
  32047. weight: math.unit(80, "kg"),
  32048. name: "Front",
  32049. image: {
  32050. source: "./media/characters/daniel-barrett/front.svg",
  32051. extra: 355/337,
  32052. bottom: 9/364
  32053. }
  32054. },
  32055. },
  32056. [
  32057. {
  32058. name: "Pico",
  32059. height: math.unit(0.0433, "mm")
  32060. },
  32061. {
  32062. name: "Nano",
  32063. height: math.unit(1.5, "mm")
  32064. },
  32065. {
  32066. name: "Micro",
  32067. height: math.unit(5.3, "cm"),
  32068. default: true
  32069. },
  32070. {
  32071. name: "Normal",
  32072. height: math.unit(1.85, "meters")
  32073. },
  32074. {
  32075. name: "Macro",
  32076. height: math.unit(64.7, "meters")
  32077. },
  32078. {
  32079. name: "Megamacro",
  32080. height: math.unit(2.26, "km")
  32081. },
  32082. {
  32083. name: "Gigamacro",
  32084. height: math.unit(79, "km")
  32085. },
  32086. {
  32087. name: "Teramacro",
  32088. height: math.unit(2765, "km")
  32089. },
  32090. {
  32091. name: "Petamacro",
  32092. height: math.unit(96678, "km")
  32093. },
  32094. ]
  32095. ))
  32096. characterMakers.push(() => makeCharacter(
  32097. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32098. {
  32099. front: {
  32100. height: math.unit(30, "meters"),
  32101. weight: math.unit(400, "tons"),
  32102. name: "Front",
  32103. image: {
  32104. source: "./media/characters/zeel/front.svg",
  32105. extra: 2599/2599,
  32106. bottom: 226/2825
  32107. }
  32108. },
  32109. },
  32110. [
  32111. {
  32112. name: "Macro",
  32113. height: math.unit(30, "meters"),
  32114. default: true
  32115. },
  32116. ]
  32117. ))
  32118. characterMakers.push(() => makeCharacter(
  32119. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32120. {
  32121. front: {
  32122. height: math.unit(6 + 7/12, "feet"),
  32123. weight: math.unit(210, "lb"),
  32124. name: "Front",
  32125. image: {
  32126. source: "./media/characters/tarn/front.svg",
  32127. extra: 3517/3220,
  32128. bottom: 91/3608
  32129. }
  32130. },
  32131. back: {
  32132. height: math.unit(6 + 7/12, "feet"),
  32133. weight: math.unit(210, "lb"),
  32134. name: "Back",
  32135. image: {
  32136. source: "./media/characters/tarn/back.svg",
  32137. extra: 3566/3241,
  32138. bottom: 34/3600
  32139. }
  32140. },
  32141. dick: {
  32142. height: math.unit(1.65, "feet"),
  32143. name: "Dick",
  32144. image: {
  32145. source: "./media/characters/tarn/dick.svg"
  32146. }
  32147. },
  32148. paw: {
  32149. height: math.unit(1.80, "feet"),
  32150. name: "Paw",
  32151. image: {
  32152. source: "./media/characters/tarn/paw.svg"
  32153. }
  32154. },
  32155. tongue: {
  32156. height: math.unit(0.97, "feet"),
  32157. name: "Tongue",
  32158. image: {
  32159. source: "./media/characters/tarn/tongue.svg"
  32160. }
  32161. },
  32162. },
  32163. [
  32164. {
  32165. name: "Micro",
  32166. height: math.unit(4, "inches")
  32167. },
  32168. {
  32169. name: "Normal",
  32170. height: math.unit(6 + 7/12, "feet"),
  32171. default: true
  32172. },
  32173. {
  32174. name: "Macro",
  32175. height: math.unit(300, "feet")
  32176. },
  32177. ]
  32178. ))
  32179. characterMakers.push(() => makeCharacter(
  32180. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32181. {
  32182. front: {
  32183. height: math.unit(5 + 7/12, "feet"),
  32184. weight: math.unit(80, "kg"),
  32185. name: "Front",
  32186. image: {
  32187. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32188. extra: 3023/2865,
  32189. bottom: 33/3056
  32190. }
  32191. },
  32192. back: {
  32193. height: math.unit(5 + 7/12, "feet"),
  32194. weight: math.unit(80, "kg"),
  32195. name: "Back",
  32196. image: {
  32197. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32198. extra: 3020/2886,
  32199. bottom: 30/3050
  32200. }
  32201. },
  32202. dick: {
  32203. height: math.unit(0.98, "feet"),
  32204. name: "Dick",
  32205. image: {
  32206. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32207. }
  32208. },
  32209. anatomy: {
  32210. height: math.unit(2.86, "feet"),
  32211. name: "Anatomy",
  32212. image: {
  32213. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32214. }
  32215. },
  32216. },
  32217. [
  32218. {
  32219. name: "Really Small",
  32220. height: math.unit(2, "inches")
  32221. },
  32222. {
  32223. name: "Micro",
  32224. height: math.unit(5.583, "inches")
  32225. },
  32226. {
  32227. name: "Normal",
  32228. height: math.unit(5 + 7/12, "feet"),
  32229. default: true
  32230. },
  32231. {
  32232. name: "Macro",
  32233. height: math.unit(67, "feet")
  32234. },
  32235. {
  32236. name: "Megamacro",
  32237. height: math.unit(134, "feet")
  32238. },
  32239. ]
  32240. ))
  32241. characterMakers.push(() => makeCharacter(
  32242. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32243. {
  32244. front: {
  32245. height: math.unit(9, "feet"),
  32246. weight: math.unit(120, "lb"),
  32247. name: "Front",
  32248. image: {
  32249. source: "./media/characters/sally/front.svg",
  32250. extra: 1506/1349,
  32251. bottom: 66/1572
  32252. }
  32253. },
  32254. },
  32255. [
  32256. {
  32257. name: "Normal",
  32258. height: math.unit(9, "feet"),
  32259. default: true
  32260. },
  32261. ]
  32262. ))
  32263. characterMakers.push(() => makeCharacter(
  32264. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32265. {
  32266. front: {
  32267. height: math.unit(8, "feet"),
  32268. weight: math.unit(900, "lb"),
  32269. name: "Front",
  32270. image: {
  32271. source: "./media/characters/owen/front.svg",
  32272. extra: 1761/1657,
  32273. bottom: 74/1835
  32274. }
  32275. },
  32276. side: {
  32277. height: math.unit(8, "feet"),
  32278. weight: math.unit(900, "lb"),
  32279. name: "Side",
  32280. image: {
  32281. source: "./media/characters/owen/side.svg",
  32282. extra: 1797/1734,
  32283. bottom: 30/1827
  32284. }
  32285. },
  32286. back: {
  32287. height: math.unit(8, "feet"),
  32288. weight: math.unit(900, "lb"),
  32289. name: "Back",
  32290. image: {
  32291. source: "./media/characters/owen/back.svg",
  32292. extra: 1796/1706,
  32293. bottom: 59/1855
  32294. }
  32295. },
  32296. maw: {
  32297. height: math.unit(1.76, "feet"),
  32298. name: "Maw",
  32299. image: {
  32300. source: "./media/characters/owen/maw.svg"
  32301. }
  32302. },
  32303. },
  32304. [
  32305. {
  32306. name: "Normal",
  32307. height: math.unit(8, "feet"),
  32308. default: true
  32309. },
  32310. ]
  32311. ))
  32312. characterMakers.push(() => makeCharacter(
  32313. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32314. {
  32315. front: {
  32316. height: math.unit(4, "feet"),
  32317. weight: math.unit(400, "lb"),
  32318. name: "Front",
  32319. image: {
  32320. source: "./media/characters/ryth/front.svg",
  32321. extra: 1920/1748,
  32322. bottom: 42/1962
  32323. }
  32324. },
  32325. back: {
  32326. height: math.unit(4, "feet"),
  32327. weight: math.unit(400, "lb"),
  32328. name: "Back",
  32329. image: {
  32330. source: "./media/characters/ryth/back.svg",
  32331. extra: 1897/1690,
  32332. bottom: 89/1986
  32333. }
  32334. },
  32335. mouth: {
  32336. height: math.unit(1.39, "feet"),
  32337. name: "Mouth",
  32338. image: {
  32339. source: "./media/characters/ryth/mouth.svg"
  32340. }
  32341. },
  32342. tailmaw: {
  32343. height: math.unit(1.23, "feet"),
  32344. name: "Tailmaw",
  32345. image: {
  32346. source: "./media/characters/ryth/tailmaw.svg"
  32347. }
  32348. },
  32349. goia: {
  32350. height: math.unit(4, "meters"),
  32351. weight: math.unit(10800, "lb"),
  32352. name: "Goia",
  32353. image: {
  32354. source: "./media/characters/ryth/goia.svg",
  32355. extra: 745/640,
  32356. bottom: 107/852
  32357. }
  32358. },
  32359. goiaFront: {
  32360. height: math.unit(4, "meters"),
  32361. weight: math.unit(10800, "lb"),
  32362. name: "Goia (Front)",
  32363. image: {
  32364. source: "./media/characters/ryth/goia-front.svg",
  32365. extra: 750/586,
  32366. bottom: 114/864
  32367. }
  32368. },
  32369. goiaMaw: {
  32370. height: math.unit(5.55, "feet"),
  32371. name: "Goia Maw",
  32372. image: {
  32373. source: "./media/characters/ryth/goia-maw.svg"
  32374. }
  32375. },
  32376. goiaForepaw: {
  32377. height: math.unit(3.5, "feet"),
  32378. name: "Goia Forepaw",
  32379. image: {
  32380. source: "./media/characters/ryth/goia-forepaw.svg"
  32381. }
  32382. },
  32383. goiaHindpaw: {
  32384. height: math.unit(5.55, "feet"),
  32385. name: "Goia Hindpaw",
  32386. image: {
  32387. source: "./media/characters/ryth/goia-hindpaw.svg"
  32388. }
  32389. },
  32390. },
  32391. [
  32392. {
  32393. name: "Normal",
  32394. height: math.unit(4, "feet"),
  32395. default: true
  32396. },
  32397. ]
  32398. ))
  32399. characterMakers.push(() => makeCharacter(
  32400. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32401. {
  32402. front: {
  32403. height: math.unit(7, "feet"),
  32404. weight: math.unit(180, "lb"),
  32405. name: "Front",
  32406. image: {
  32407. source: "./media/characters/necrolance/front.svg",
  32408. extra: 1062/947,
  32409. bottom: 41/1103
  32410. }
  32411. },
  32412. back: {
  32413. height: math.unit(7, "feet"),
  32414. weight: math.unit(180, "lb"),
  32415. name: "Back",
  32416. image: {
  32417. source: "./media/characters/necrolance/back.svg",
  32418. extra: 1045/984,
  32419. bottom: 14/1059
  32420. }
  32421. },
  32422. wing: {
  32423. height: math.unit(2.67, "feet"),
  32424. name: "Wing",
  32425. image: {
  32426. source: "./media/characters/necrolance/wing.svg"
  32427. }
  32428. },
  32429. },
  32430. [
  32431. {
  32432. name: "Normal",
  32433. height: math.unit(7, "feet"),
  32434. default: true
  32435. },
  32436. ]
  32437. ))
  32438. characterMakers.push(() => makeCharacter(
  32439. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32440. {
  32441. front: {
  32442. height: math.unit(76, "meters"),
  32443. weight: math.unit(30000, "tons"),
  32444. name: "Front",
  32445. image: {
  32446. source: "./media/characters/tyler/front.svg",
  32447. extra: 1640/1640,
  32448. bottom: 114/1754
  32449. }
  32450. },
  32451. },
  32452. [
  32453. {
  32454. name: "Macro",
  32455. height: math.unit(76, "meters"),
  32456. default: true
  32457. },
  32458. ]
  32459. ))
  32460. characterMakers.push(() => makeCharacter(
  32461. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32462. {
  32463. front: {
  32464. height: math.unit(4 + 11/12, "feet"),
  32465. weight: math.unit(132, "lb"),
  32466. name: "Front",
  32467. image: {
  32468. source: "./media/characters/icey/front.svg",
  32469. extra: 2750/2550,
  32470. bottom: 33/2783
  32471. }
  32472. },
  32473. back: {
  32474. height: math.unit(4 + 11/12, "feet"),
  32475. weight: math.unit(132, "lb"),
  32476. name: "Back",
  32477. image: {
  32478. source: "./media/characters/icey/back.svg",
  32479. extra: 2624/2481,
  32480. bottom: 35/2659
  32481. }
  32482. },
  32483. },
  32484. [
  32485. {
  32486. name: "Normal",
  32487. height: math.unit(4 + 11/12, "feet"),
  32488. default: true
  32489. },
  32490. ]
  32491. ))
  32492. characterMakers.push(() => makeCharacter(
  32493. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32494. {
  32495. front: {
  32496. height: math.unit(100, "feet"),
  32497. weight: math.unit(0, "lb"),
  32498. name: "Front",
  32499. image: {
  32500. source: "./media/characters/smile/front.svg",
  32501. extra: 2983/2912,
  32502. bottom: 162/3145
  32503. }
  32504. },
  32505. back: {
  32506. height: math.unit(100, "feet"),
  32507. weight: math.unit(0, "lb"),
  32508. name: "Back",
  32509. image: {
  32510. source: "./media/characters/smile/back.svg",
  32511. extra: 3143/3031,
  32512. bottom: 91/3234
  32513. }
  32514. },
  32515. head: {
  32516. height: math.unit(26.3, "feet"),
  32517. weight: math.unit(0, "lb"),
  32518. name: "Head",
  32519. image: {
  32520. source: "./media/characters/smile/head.svg"
  32521. }
  32522. },
  32523. collar: {
  32524. height: math.unit(5.3, "feet"),
  32525. weight: math.unit(0, "lb"),
  32526. name: "Collar",
  32527. image: {
  32528. source: "./media/characters/smile/collar.svg"
  32529. }
  32530. },
  32531. },
  32532. [
  32533. {
  32534. name: "Macro",
  32535. height: math.unit(100, "feet"),
  32536. default: true
  32537. },
  32538. ]
  32539. ))
  32540. characterMakers.push(() => makeCharacter(
  32541. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32542. {
  32543. dragon: {
  32544. height: math.unit(26, "feet"),
  32545. weight: math.unit(36, "tons"),
  32546. name: "Dragon",
  32547. image: {
  32548. source: "./media/characters/arimphae/dragon.svg",
  32549. extra: 1574/983,
  32550. bottom: 357/1931
  32551. }
  32552. },
  32553. drake: {
  32554. height: math.unit(9, "feet"),
  32555. weight: math.unit(1.5, "tons"),
  32556. name: "Drake",
  32557. image: {
  32558. source: "./media/characters/arimphae/drake.svg",
  32559. extra: 1120/925,
  32560. bottom: 435/1555
  32561. }
  32562. },
  32563. },
  32564. [
  32565. {
  32566. name: "Small",
  32567. height: math.unit(26*5/9, "feet")
  32568. },
  32569. {
  32570. name: "Normal",
  32571. height: math.unit(26, "feet"),
  32572. default: true
  32573. },
  32574. ]
  32575. ))
  32576. characterMakers.push(() => makeCharacter(
  32577. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32578. {
  32579. front: {
  32580. height: math.unit(8 + 9/12, "feet"),
  32581. name: "Front",
  32582. image: {
  32583. source: "./media/characters/xander/front.svg",
  32584. extra: 1237/974,
  32585. bottom: 94/1331
  32586. }
  32587. },
  32588. },
  32589. [
  32590. {
  32591. name: "Normal",
  32592. height: math.unit(8 + 9/12, "feet"),
  32593. default: true
  32594. },
  32595. {
  32596. name: "Gaze Grabber",
  32597. height: math.unit(13 + 8/12, "feet")
  32598. },
  32599. {
  32600. name: "Jaw Dropper",
  32601. height: math.unit(27, "feet")
  32602. },
  32603. {
  32604. name: "Show Stopper",
  32605. height: math.unit(136, "feet")
  32606. },
  32607. {
  32608. name: "Superstar",
  32609. height: math.unit(1.9e6, "miles")
  32610. },
  32611. ]
  32612. ))
  32613. characterMakers.push(() => makeCharacter(
  32614. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32615. {
  32616. side: {
  32617. height: math.unit(2100, "feet"),
  32618. name: "Side",
  32619. image: {
  32620. source: "./media/characters/osiris/side.svg",
  32621. extra: 1105/939,
  32622. bottom: 167/1272
  32623. }
  32624. },
  32625. },
  32626. [
  32627. {
  32628. name: "Macro",
  32629. height: math.unit(2100, "feet"),
  32630. default: true
  32631. },
  32632. ]
  32633. ))
  32634. characterMakers.push(() => makeCharacter(
  32635. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32636. {
  32637. front: {
  32638. height: math.unit(6 + 8/12, "feet"),
  32639. weight: math.unit(225, "lb"),
  32640. name: "Front",
  32641. image: {
  32642. source: "./media/characters/rhys-londe/front.svg",
  32643. extra: 2258/2141,
  32644. bottom: 188/2446
  32645. }
  32646. },
  32647. back: {
  32648. height: math.unit(6 + 8/12, "feet"),
  32649. weight: math.unit(225, "lb"),
  32650. name: "Back",
  32651. image: {
  32652. source: "./media/characters/rhys-londe/back.svg",
  32653. extra: 2237/2137,
  32654. bottom: 63/2300
  32655. }
  32656. },
  32657. frontNsfw: {
  32658. height: math.unit(6 + 8/12, "feet"),
  32659. weight: math.unit(225, "lb"),
  32660. name: "Front (NSFW)",
  32661. image: {
  32662. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32663. extra: 2258/2141,
  32664. bottom: 188/2446
  32665. }
  32666. },
  32667. backNsfw: {
  32668. height: math.unit(6 + 8/12, "feet"),
  32669. weight: math.unit(225, "lb"),
  32670. name: "Back (NSFW)",
  32671. image: {
  32672. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32673. extra: 2237/2137,
  32674. bottom: 63/2300
  32675. }
  32676. },
  32677. dick: {
  32678. height: math.unit(30, "inches"),
  32679. name: "Dick",
  32680. image: {
  32681. source: "./media/characters/rhys-londe/dick.svg"
  32682. }
  32683. },
  32684. maw: {
  32685. height: math.unit(1.6, "feet"),
  32686. name: "Maw",
  32687. image: {
  32688. source: "./media/characters/rhys-londe/maw.svg"
  32689. }
  32690. },
  32691. },
  32692. [
  32693. {
  32694. name: "Normal",
  32695. height: math.unit(6 + 8/12, "feet"),
  32696. default: true
  32697. },
  32698. ]
  32699. ))
  32700. characterMakers.push(() => makeCharacter(
  32701. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32702. {
  32703. front: {
  32704. height: math.unit(3 + 10/12, "feet"),
  32705. weight: math.unit(90, "lb"),
  32706. name: "Front",
  32707. image: {
  32708. source: "./media/characters/taivas-ensim/front.svg",
  32709. extra: 1327/1216,
  32710. bottom: 96/1423
  32711. }
  32712. },
  32713. back: {
  32714. height: math.unit(3 + 10/12, "feet"),
  32715. weight: math.unit(90, "lb"),
  32716. name: "Back",
  32717. image: {
  32718. source: "./media/characters/taivas-ensim/back.svg",
  32719. extra: 1355/1247,
  32720. bottom: 11/1366
  32721. }
  32722. },
  32723. frontNsfw: {
  32724. height: math.unit(3 + 10/12, "feet"),
  32725. weight: math.unit(90, "lb"),
  32726. name: "Front (NSFW)",
  32727. image: {
  32728. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32729. extra: 1327/1216,
  32730. bottom: 96/1423
  32731. }
  32732. },
  32733. backNsfw: {
  32734. height: math.unit(3 + 10/12, "feet"),
  32735. weight: math.unit(90, "lb"),
  32736. name: "Back (NSFW)",
  32737. image: {
  32738. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32739. extra: 1355/1247,
  32740. bottom: 11/1366
  32741. }
  32742. },
  32743. },
  32744. [
  32745. {
  32746. name: "Normal",
  32747. height: math.unit(3 + 10/12, "feet"),
  32748. default: true
  32749. },
  32750. ]
  32751. ))
  32752. characterMakers.push(() => makeCharacter(
  32753. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32754. {
  32755. front: {
  32756. height: math.unit(9 + 6/12, "feet"),
  32757. weight: math.unit(940, "lb"),
  32758. name: "Front",
  32759. image: {
  32760. source: "./media/characters/byliss/front.svg",
  32761. extra: 1327/1290,
  32762. bottom: 82/1409
  32763. }
  32764. },
  32765. back: {
  32766. height: math.unit(9 + 6/12, "feet"),
  32767. weight: math.unit(940, "lb"),
  32768. name: "Back",
  32769. image: {
  32770. source: "./media/characters/byliss/back.svg",
  32771. extra: 1376/1349,
  32772. bottom: 9/1385
  32773. }
  32774. },
  32775. frontNsfw: {
  32776. height: math.unit(9 + 6/12, "feet"),
  32777. weight: math.unit(940, "lb"),
  32778. name: "Front (NSFW)",
  32779. image: {
  32780. source: "./media/characters/byliss/front-nsfw.svg",
  32781. extra: 1327/1290,
  32782. bottom: 82/1409
  32783. }
  32784. },
  32785. backNsfw: {
  32786. height: math.unit(9 + 6/12, "feet"),
  32787. weight: math.unit(940, "lb"),
  32788. name: "Back (NSFW)",
  32789. image: {
  32790. source: "./media/characters/byliss/back-nsfw.svg",
  32791. extra: 1376/1349,
  32792. bottom: 9/1385
  32793. }
  32794. },
  32795. },
  32796. [
  32797. {
  32798. name: "Normal",
  32799. height: math.unit(9 + 6/12, "feet"),
  32800. default: true
  32801. },
  32802. ]
  32803. ))
  32804. characterMakers.push(() => makeCharacter(
  32805. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32806. {
  32807. front: {
  32808. height: math.unit(5 + 2/12, "feet"),
  32809. weight: math.unit(200, "lb"),
  32810. name: "Front",
  32811. image: {
  32812. source: "./media/characters/noraly/front.svg",
  32813. extra: 4985/4773,
  32814. bottom: 150/5135
  32815. }
  32816. },
  32817. full: {
  32818. height: math.unit(5 + 2/12, "feet"),
  32819. weight: math.unit(164, "lb"),
  32820. name: "Full",
  32821. image: {
  32822. source: "./media/characters/noraly/full.svg",
  32823. extra: 1114/1059,
  32824. bottom: 35/1149
  32825. }
  32826. },
  32827. fuller: {
  32828. height: math.unit(5 + 2/12, "feet"),
  32829. weight: math.unit(230, "lb"),
  32830. name: "Fuller",
  32831. image: {
  32832. source: "./media/characters/noraly/fuller.svg",
  32833. extra: 1114/1059,
  32834. bottom: 35/1149
  32835. }
  32836. },
  32837. fullest: {
  32838. height: math.unit(5 + 2/12, "feet"),
  32839. weight: math.unit(300, "lb"),
  32840. name: "Fullest",
  32841. image: {
  32842. source: "./media/characters/noraly/fullest.svg",
  32843. extra: 1114/1059,
  32844. bottom: 35/1149
  32845. }
  32846. },
  32847. },
  32848. [
  32849. {
  32850. name: "Normal",
  32851. height: math.unit(5 + 2/12, "feet"),
  32852. default: true
  32853. },
  32854. ]
  32855. ))
  32856. characterMakers.push(() => makeCharacter(
  32857. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32858. {
  32859. front: {
  32860. height: math.unit(5 + 2/12, "feet"),
  32861. weight: math.unit(210, "lb"),
  32862. name: "Front",
  32863. image: {
  32864. source: "./media/characters/pera/front.svg",
  32865. extra: 1560/1531,
  32866. bottom: 165/1725
  32867. }
  32868. },
  32869. back: {
  32870. height: math.unit(5 + 2/12, "feet"),
  32871. weight: math.unit(210, "lb"),
  32872. name: "Back",
  32873. image: {
  32874. source: "./media/characters/pera/back.svg",
  32875. extra: 1523/1493,
  32876. bottom: 152/1675
  32877. }
  32878. },
  32879. dick: {
  32880. height: math.unit(2.4, "feet"),
  32881. name: "Dick",
  32882. image: {
  32883. source: "./media/characters/pera/dick.svg"
  32884. }
  32885. },
  32886. },
  32887. [
  32888. {
  32889. name: "Normal",
  32890. height: math.unit(5 + 2/12, "feet"),
  32891. default: true
  32892. },
  32893. ]
  32894. ))
  32895. characterMakers.push(() => makeCharacter(
  32896. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32897. {
  32898. front: {
  32899. height: math.unit(12, "feet"),
  32900. weight: math.unit(3200, "lb"),
  32901. name: "Front",
  32902. image: {
  32903. source: "./media/characters/julian/front.svg",
  32904. extra: 2962/2701,
  32905. bottom: 184/3146
  32906. }
  32907. },
  32908. maw: {
  32909. height: math.unit(5.35, "feet"),
  32910. name: "Maw",
  32911. image: {
  32912. source: "./media/characters/julian/maw.svg"
  32913. }
  32914. },
  32915. paw: {
  32916. height: math.unit(3.07, "feet"),
  32917. name: "Paw",
  32918. image: {
  32919. source: "./media/characters/julian/paw.svg"
  32920. }
  32921. },
  32922. },
  32923. [
  32924. {
  32925. name: "Default",
  32926. height: math.unit(12, "feet"),
  32927. default: true
  32928. },
  32929. {
  32930. name: "Big",
  32931. height: math.unit(50, "feet")
  32932. },
  32933. {
  32934. name: "Really Big",
  32935. height: math.unit(1, "mile")
  32936. },
  32937. {
  32938. name: "Extremely Big",
  32939. height: math.unit(100, "miles")
  32940. },
  32941. {
  32942. name: "Planet Hugger",
  32943. height: math.unit(200, "megameters")
  32944. },
  32945. {
  32946. name: "Unreasonably Big",
  32947. height: math.unit(1e300, "meters")
  32948. },
  32949. ]
  32950. ))
  32951. characterMakers.push(() => makeCharacter(
  32952. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32953. {
  32954. solgooleo: {
  32955. height: math.unit(4, "meters"),
  32956. weight: math.unit(6000*1.5, "kg"),
  32957. volume: math.unit(6000, "liters"),
  32958. name: "Solgooleo",
  32959. image: {
  32960. source: "./media/characters/pi/solgooleo.svg",
  32961. extra: 388/331,
  32962. bottom: 29/417
  32963. }
  32964. },
  32965. },
  32966. [
  32967. {
  32968. name: "Normal",
  32969. height: math.unit(4, "meters"),
  32970. default: true
  32971. },
  32972. ]
  32973. ))
  32974. characterMakers.push(() => makeCharacter(
  32975. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32976. {
  32977. front: {
  32978. height: math.unit(8, "feet"),
  32979. weight: math.unit(4, "tons"),
  32980. name: "Front",
  32981. image: {
  32982. source: "./media/characters/shaun/front.svg",
  32983. extra: 503/495,
  32984. bottom: 20/523
  32985. }
  32986. },
  32987. back: {
  32988. height: math.unit(8, "feet"),
  32989. weight: math.unit(4, "tons"),
  32990. name: "Back",
  32991. image: {
  32992. source: "./media/characters/shaun/back.svg",
  32993. extra: 487/480,
  32994. bottom: 20/507
  32995. }
  32996. },
  32997. },
  32998. [
  32999. {
  33000. name: "Lorg",
  33001. height: math.unit(8, "feet"),
  33002. default: true
  33003. },
  33004. ]
  33005. ))
  33006. characterMakers.push(() => makeCharacter(
  33007. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33008. {
  33009. frontAnthro: {
  33010. height: math.unit(7, "feet"),
  33011. name: "Front",
  33012. image: {
  33013. source: "./media/characters/sini/front-anthro.svg",
  33014. extra: 726/678,
  33015. bottom: 35/761
  33016. },
  33017. form: "anthro",
  33018. default: true
  33019. },
  33020. backAnthro: {
  33021. height: math.unit(7, "feet"),
  33022. name: "Back",
  33023. image: {
  33024. source: "./media/characters/sini/back-anthro.svg",
  33025. extra: 743/701,
  33026. bottom: 12/755
  33027. },
  33028. form: "anthro",
  33029. },
  33030. frontAnthroNsfw: {
  33031. height: math.unit(7, "feet"),
  33032. name: "Front (NSFW)",
  33033. image: {
  33034. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33035. extra: 726/678,
  33036. bottom: 35/761
  33037. },
  33038. form: "anthro"
  33039. },
  33040. backAnthroNsfw: {
  33041. height: math.unit(7, "feet"),
  33042. name: "Back (NSFW)",
  33043. image: {
  33044. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33045. extra: 743/701,
  33046. bottom: 12/755
  33047. },
  33048. form: "anthro",
  33049. },
  33050. mawAnthro: {
  33051. height: math.unit(2.14, "feet"),
  33052. name: "Maw",
  33053. image: {
  33054. source: "./media/characters/sini/maw-anthro.svg"
  33055. },
  33056. form: "anthro"
  33057. },
  33058. dick: {
  33059. height: math.unit(1.45, "feet"),
  33060. name: "Dick",
  33061. image: {
  33062. source: "./media/characters/sini/dick-anthro.svg"
  33063. },
  33064. form: "anthro"
  33065. },
  33066. feral: {
  33067. height: math.unit(16, "feet"),
  33068. name: "Feral",
  33069. image: {
  33070. source: "./media/characters/sini/feral.svg",
  33071. extra: 814/605,
  33072. bottom: 11/825
  33073. },
  33074. form: "feral",
  33075. default: true
  33076. },
  33077. feralNsfw: {
  33078. height: math.unit(16, "feet"),
  33079. name: "Feral (NSFW)",
  33080. image: {
  33081. source: "./media/characters/sini/feral-nsfw.svg",
  33082. extra: 814/605,
  33083. bottom: 11/825
  33084. },
  33085. form: "feral"
  33086. },
  33087. mawFeral: {
  33088. height: math.unit(5.66, "feet"),
  33089. name: "Maw",
  33090. image: {
  33091. source: "./media/characters/sini/maw-feral.svg"
  33092. },
  33093. form: "feral",
  33094. },
  33095. pawFeral: {
  33096. height: math.unit(5.17, "feet"),
  33097. name: "Paw",
  33098. image: {
  33099. source: "./media/characters/sini/paw-feral.svg"
  33100. },
  33101. form: "feral",
  33102. },
  33103. rumpFeral: {
  33104. height: math.unit(13.11, "feet"),
  33105. name: "Rump",
  33106. image: {
  33107. source: "./media/characters/sini/rump-feral.svg"
  33108. },
  33109. form: "feral",
  33110. },
  33111. dickFeral: {
  33112. height: math.unit(1, "feet"),
  33113. name: "Dick",
  33114. image: {
  33115. source: "./media/characters/sini/dick-feral.svg"
  33116. },
  33117. form: "feral",
  33118. },
  33119. eyeFeral: {
  33120. height: math.unit(1.23, "feet"),
  33121. name: "Eye",
  33122. image: {
  33123. source: "./media/characters/sini/eye-feral.svg"
  33124. },
  33125. form: "feral",
  33126. },
  33127. },
  33128. [
  33129. {
  33130. name: "Normal",
  33131. height: math.unit(7, "feet"),
  33132. default: true,
  33133. form: "anthro"
  33134. },
  33135. {
  33136. name: "Normal",
  33137. height: math.unit(16, "feet"),
  33138. default: true,
  33139. form: "feral"
  33140. },
  33141. ],
  33142. {
  33143. "anthro": {
  33144. name: "Anthro",
  33145. default: true
  33146. },
  33147. "feral": {
  33148. name: "Feral",
  33149. }
  33150. }
  33151. ))
  33152. characterMakers.push(() => makeCharacter(
  33153. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33154. {
  33155. side: {
  33156. height: math.unit(13, "meters"),
  33157. weight: math.unit(9072, "kg"),
  33158. name: "Side",
  33159. image: {
  33160. source: "./media/characters/raylldo/side.svg",
  33161. extra: 403/344,
  33162. bottom: 42/445
  33163. }
  33164. },
  33165. leaping: {
  33166. height: math.unit(12.3, "meters"),
  33167. weight: math.unit(9072, "kg"),
  33168. name: "Leaping",
  33169. image: {
  33170. source: "./media/characters/raylldo/leaping.svg",
  33171. extra: 470/249,
  33172. bottom: 13/483
  33173. }
  33174. },
  33175. flying: {
  33176. height: math.unit(18, "meters"),
  33177. weight: math.unit(9072, "kg"),
  33178. name: "Flying",
  33179. image: {
  33180. source: "./media/characters/raylldo/flying.svg"
  33181. }
  33182. },
  33183. head: {
  33184. height: math.unit(5.85, "meters"),
  33185. name: "Head",
  33186. image: {
  33187. source: "./media/characters/raylldo/head.svg"
  33188. }
  33189. },
  33190. maw: {
  33191. height: math.unit(5.32, "meters"),
  33192. name: "Maw",
  33193. image: {
  33194. source: "./media/characters/raylldo/maw.svg"
  33195. }
  33196. },
  33197. eye: {
  33198. height: math.unit(0.54, "meters"),
  33199. name: "Eye",
  33200. image: {
  33201. source: "./media/characters/raylldo/eye.svg"
  33202. }
  33203. },
  33204. },
  33205. [
  33206. {
  33207. name: "Normal",
  33208. height: math.unit(13, "meters"),
  33209. default: true
  33210. },
  33211. ]
  33212. ))
  33213. characterMakers.push(() => makeCharacter(
  33214. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33215. {
  33216. anthroFront: {
  33217. height: math.unit(9, "feet"),
  33218. weight: math.unit(600, "lb"),
  33219. name: "Anthro (Front)",
  33220. image: {
  33221. source: "./media/characters/glint/anthro-front.svg",
  33222. extra: 1097/1018,
  33223. bottom: 28/1125
  33224. }
  33225. },
  33226. anthroBack: {
  33227. height: math.unit(9, "feet"),
  33228. weight: math.unit(600, "lb"),
  33229. name: "Anthro (Back)",
  33230. image: {
  33231. source: "./media/characters/glint/anthro-back.svg",
  33232. extra: 1154/997,
  33233. bottom: 36/1190
  33234. }
  33235. },
  33236. feral: {
  33237. height: math.unit(11, "feet"),
  33238. weight: math.unit(50000, "lb"),
  33239. name: "Feral",
  33240. image: {
  33241. source: "./media/characters/glint/feral.svg",
  33242. extra: 3035/1585,
  33243. bottom: 1169/4204
  33244. }
  33245. },
  33246. dickAnthro: {
  33247. height: math.unit(0.7, "meters"),
  33248. name: "Dick (Anthro)",
  33249. image: {
  33250. source: "./media/characters/glint/dick-anthro.svg"
  33251. }
  33252. },
  33253. dickFeral: {
  33254. height: math.unit(2.65, "meters"),
  33255. name: "Dick (Feral)",
  33256. image: {
  33257. source: "./media/characters/glint/dick-feral.svg"
  33258. }
  33259. },
  33260. slitHidden: {
  33261. height: math.unit(5.85, "meters"),
  33262. name: "Slit (Hidden)",
  33263. image: {
  33264. source: "./media/characters/glint/slit-hidden.svg"
  33265. }
  33266. },
  33267. slitErect: {
  33268. height: math.unit(5.85, "meters"),
  33269. name: "Slit (Erect)",
  33270. image: {
  33271. source: "./media/characters/glint/slit-erect.svg"
  33272. }
  33273. },
  33274. mawAnthro: {
  33275. height: math.unit(0.63, "meters"),
  33276. name: "Maw (Anthro)",
  33277. image: {
  33278. source: "./media/characters/glint/maw.svg"
  33279. }
  33280. },
  33281. mawFeral: {
  33282. height: math.unit(2.89, "meters"),
  33283. name: "Maw (Feral)",
  33284. image: {
  33285. source: "./media/characters/glint/maw.svg"
  33286. }
  33287. },
  33288. },
  33289. [
  33290. {
  33291. name: "Normal",
  33292. height: math.unit(9, "feet"),
  33293. default: true
  33294. },
  33295. ]
  33296. ))
  33297. characterMakers.push(() => makeCharacter(
  33298. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33299. {
  33300. side: {
  33301. height: math.unit(15, "feet"),
  33302. weight: math.unit(5000, "kg"),
  33303. name: "Side",
  33304. image: {
  33305. source: "./media/characters/kairne/side.svg",
  33306. extra: 979/811,
  33307. bottom: 13/992
  33308. }
  33309. },
  33310. front: {
  33311. height: math.unit(15, "feet"),
  33312. weight: math.unit(5000, "kg"),
  33313. name: "Front",
  33314. image: {
  33315. source: "./media/characters/kairne/front.svg",
  33316. extra: 908/814,
  33317. bottom: 26/934
  33318. }
  33319. },
  33320. sideNsfw: {
  33321. height: math.unit(15, "feet"),
  33322. weight: math.unit(5000, "kg"),
  33323. name: "Side (NSFW)",
  33324. image: {
  33325. source: "./media/characters/kairne/side-nsfw.svg",
  33326. extra: 979/811,
  33327. bottom: 13/992
  33328. }
  33329. },
  33330. frontNsfw: {
  33331. height: math.unit(15, "feet"),
  33332. weight: math.unit(5000, "kg"),
  33333. name: "Front (NSFW)",
  33334. image: {
  33335. source: "./media/characters/kairne/front-nsfw.svg",
  33336. extra: 908/814,
  33337. bottom: 26/934
  33338. }
  33339. },
  33340. dickCaged: {
  33341. height: math.unit(0.65, "meters"),
  33342. name: "Dick-caged",
  33343. image: {
  33344. source: "./media/characters/kairne/dick-caged.svg"
  33345. }
  33346. },
  33347. dick: {
  33348. height: math.unit(0.79, "meters"),
  33349. name: "Dick",
  33350. image: {
  33351. source: "./media/characters/kairne/dick.svg"
  33352. }
  33353. },
  33354. genitals: {
  33355. height: math.unit(1.29, "meters"),
  33356. name: "Genitals",
  33357. image: {
  33358. source: "./media/characters/kairne/genitals.svg"
  33359. }
  33360. },
  33361. maw: {
  33362. height: math.unit(1.73, "meters"),
  33363. name: "Maw",
  33364. image: {
  33365. source: "./media/characters/kairne/maw.svg"
  33366. }
  33367. },
  33368. },
  33369. [
  33370. {
  33371. name: "Normal",
  33372. height: math.unit(15, "feet"),
  33373. default: true
  33374. },
  33375. ]
  33376. ))
  33377. characterMakers.push(() => makeCharacter(
  33378. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33379. {
  33380. front: {
  33381. height: math.unit(5 + 8/12, "feet"),
  33382. weight: math.unit(139, "lb"),
  33383. name: "Front",
  33384. image: {
  33385. source: "./media/characters/biscuit-jackal/front.svg",
  33386. extra: 2106/1961,
  33387. bottom: 58/2164
  33388. }
  33389. },
  33390. back: {
  33391. height: math.unit(5 + 8/12, "feet"),
  33392. weight: math.unit(139, "lb"),
  33393. name: "Back",
  33394. image: {
  33395. source: "./media/characters/biscuit-jackal/back.svg",
  33396. extra: 2132/1976,
  33397. bottom: 57/2189
  33398. }
  33399. },
  33400. werejackal: {
  33401. height: math.unit(6 + 3/12, "feet"),
  33402. weight: math.unit(188, "lb"),
  33403. name: "Werejackal",
  33404. image: {
  33405. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33406. extra: 2373/2178,
  33407. bottom: 53/2426
  33408. }
  33409. },
  33410. },
  33411. [
  33412. {
  33413. name: "Normal",
  33414. height: math.unit(5 + 8/12, "feet"),
  33415. default: true
  33416. },
  33417. ]
  33418. ))
  33419. characterMakers.push(() => makeCharacter(
  33420. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33421. {
  33422. front: {
  33423. height: math.unit(140, "cm"),
  33424. weight: math.unit(45, "kg"),
  33425. name: "Front",
  33426. image: {
  33427. source: "./media/characters/tayra-white/front.svg",
  33428. extra: 2229/2192,
  33429. bottom: 75/2304
  33430. }
  33431. },
  33432. },
  33433. [
  33434. {
  33435. name: "Normal",
  33436. height: math.unit(140, "cm"),
  33437. default: true
  33438. },
  33439. ]
  33440. ))
  33441. characterMakers.push(() => makeCharacter(
  33442. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  33443. {
  33444. front: {
  33445. height: math.unit(4 + 5/12, "feet"),
  33446. name: "Front",
  33447. image: {
  33448. source: "./media/characters/scoop/front.svg",
  33449. extra: 1257/1136,
  33450. bottom: 69/1326
  33451. }
  33452. },
  33453. back: {
  33454. height: math.unit(4 + 5/12, "feet"),
  33455. name: "Back",
  33456. image: {
  33457. source: "./media/characters/scoop/back.svg",
  33458. extra: 1321/1152,
  33459. bottom: 32/1353
  33460. }
  33461. },
  33462. maw: {
  33463. height: math.unit(0.68, "feet"),
  33464. name: "Maw",
  33465. image: {
  33466. source: "./media/characters/scoop/maw.svg"
  33467. }
  33468. },
  33469. },
  33470. [
  33471. {
  33472. name: "Really Small",
  33473. height: math.unit(1, "mm")
  33474. },
  33475. {
  33476. name: "Micro",
  33477. height: math.unit(1, "inch")
  33478. },
  33479. {
  33480. name: "Normal",
  33481. height: math.unit(4 + 5/12, "feet"),
  33482. default: true
  33483. },
  33484. {
  33485. name: "Macro",
  33486. height: math.unit(200, "feet")
  33487. },
  33488. {
  33489. name: "Megamacro",
  33490. height: math.unit(3240, "feet")
  33491. },
  33492. {
  33493. name: "Teramacro",
  33494. height: math.unit(2500, "miles")
  33495. },
  33496. ]
  33497. ))
  33498. characterMakers.push(() => makeCharacter(
  33499. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  33500. {
  33501. front: {
  33502. height: math.unit(15 + 7/12, "feet"),
  33503. name: "Front",
  33504. image: {
  33505. source: "./media/characters/saphinara/front.svg",
  33506. extra: 604/546,
  33507. bottom: 19/623
  33508. }
  33509. },
  33510. side: {
  33511. height: math.unit(15 + 7/12, "feet"),
  33512. name: "Side",
  33513. image: {
  33514. source: "./media/characters/saphinara/side.svg",
  33515. extra: 605/547,
  33516. bottom: 6/611
  33517. }
  33518. },
  33519. back: {
  33520. height: math.unit(15 + 7/12, "feet"),
  33521. name: "Back",
  33522. image: {
  33523. source: "./media/characters/saphinara/back.svg",
  33524. extra: 591/531,
  33525. bottom: 13/604
  33526. }
  33527. },
  33528. frontTail: {
  33529. height: math.unit(15 + 7/12, "feet"),
  33530. name: "Front (Full Tail)",
  33531. image: {
  33532. source: "./media/characters/saphinara/front-tail.svg",
  33533. extra: 748/547,
  33534. bottom: 66/814
  33535. }
  33536. },
  33537. },
  33538. [
  33539. {
  33540. name: "Normal",
  33541. height: math.unit(15 + 7/12, "feet"),
  33542. default: true
  33543. },
  33544. {
  33545. name: "Angry",
  33546. height: math.unit(30 + 6/12, "feet")
  33547. },
  33548. {
  33549. name: "Enraged",
  33550. height: math.unit(102 + 1/12, "feet")
  33551. },
  33552. ]
  33553. ))
  33554. characterMakers.push(() => makeCharacter(
  33555. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  33556. {
  33557. front: {
  33558. height: math.unit(6 + 8/12, "feet"),
  33559. weight: math.unit(300, "lb"),
  33560. name: "Front",
  33561. image: {
  33562. source: "./media/characters/jrain/front.svg",
  33563. extra: 3039/2865,
  33564. bottom: 399/3438
  33565. }
  33566. },
  33567. back: {
  33568. height: math.unit(6 + 8/12, "feet"),
  33569. weight: math.unit(300, "lb"),
  33570. name: "Back",
  33571. image: {
  33572. source: "./media/characters/jrain/back.svg",
  33573. extra: 3089/2938,
  33574. bottom: 172/3261
  33575. }
  33576. },
  33577. head: {
  33578. height: math.unit(2.14, "feet"),
  33579. name: "Head",
  33580. image: {
  33581. source: "./media/characters/jrain/head.svg"
  33582. }
  33583. },
  33584. maw: {
  33585. height: math.unit(1.77, "feet"),
  33586. name: "Maw",
  33587. image: {
  33588. source: "./media/characters/jrain/maw.svg"
  33589. }
  33590. },
  33591. leftHand: {
  33592. height: math.unit(1.1, "feet"),
  33593. name: "Left Hand",
  33594. image: {
  33595. source: "./media/characters/jrain/left-hand.svg"
  33596. }
  33597. },
  33598. rightHand: {
  33599. height: math.unit(1.1, "feet"),
  33600. name: "Right Hand",
  33601. image: {
  33602. source: "./media/characters/jrain/right-hand.svg"
  33603. }
  33604. },
  33605. eye: {
  33606. height: math.unit(0.35, "feet"),
  33607. name: "Eye",
  33608. image: {
  33609. source: "./media/characters/jrain/eye.svg"
  33610. }
  33611. },
  33612. },
  33613. [
  33614. {
  33615. name: "Normal",
  33616. height: math.unit(6 + 8/12, "feet"),
  33617. default: true
  33618. },
  33619. {
  33620. name: "Casually Large",
  33621. height: math.unit(25, "feet")
  33622. },
  33623. {
  33624. name: "Giant",
  33625. height: math.unit(100, "feet")
  33626. },
  33627. {
  33628. name: "Kaiju",
  33629. height: math.unit(300, "feet")
  33630. },
  33631. ]
  33632. ))
  33633. characterMakers.push(() => makeCharacter(
  33634. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33635. {
  33636. dragon: {
  33637. height: math.unit(5, "meters"),
  33638. name: "Dragon",
  33639. image: {
  33640. source: "./media/characters/sabrina/dragon.svg",
  33641. extra: 3670 / 2365,
  33642. bottom: 333 / 4003
  33643. }
  33644. },
  33645. gryphon: {
  33646. height: math.unit(3, "meters"),
  33647. name: "Gryphon",
  33648. image: {
  33649. source: "./media/characters/sabrina/gryphon.svg",
  33650. extra: 1576 / 945,
  33651. bottom: 71 / 1647
  33652. }
  33653. },
  33654. snake: {
  33655. height: math.unit(12, "meters"),
  33656. name: "Snake",
  33657. image: {
  33658. source: "./media/characters/sabrina/snake.svg",
  33659. extra: 1758 / 1320,
  33660. bottom: 186 / 1944
  33661. }
  33662. },
  33663. collar: {
  33664. height: math.unit(1.86, "meters"),
  33665. name: "Collar",
  33666. image: {
  33667. source: "./media/characters/sabrina/collar.svg"
  33668. }
  33669. },
  33670. eye: {
  33671. height: math.unit(0.53, "meters"),
  33672. name: "Eye",
  33673. image: {
  33674. source: "./media/characters/sabrina/eye.svg"
  33675. }
  33676. },
  33677. foot: {
  33678. height: math.unit(1.86, "meters"),
  33679. name: "Foot",
  33680. image: {
  33681. source: "./media/characters/sabrina/foot.svg"
  33682. }
  33683. },
  33684. hand: {
  33685. height: math.unit(1.32, "meters"),
  33686. name: "Hand",
  33687. image: {
  33688. source: "./media/characters/sabrina/hand.svg"
  33689. }
  33690. },
  33691. head: {
  33692. height: math.unit(2.44, "meters"),
  33693. name: "Head",
  33694. image: {
  33695. source: "./media/characters/sabrina/head.svg"
  33696. }
  33697. },
  33698. headAngry: {
  33699. height: math.unit(2.44, "meters"),
  33700. name: "Head (Angry))",
  33701. image: {
  33702. source: "./media/characters/sabrina/head-angry.svg"
  33703. }
  33704. },
  33705. maw: {
  33706. height: math.unit(1.65, "meters"),
  33707. name: "Maw",
  33708. image: {
  33709. source: "./media/characters/sabrina/maw.svg"
  33710. }
  33711. },
  33712. spikes: {
  33713. height: math.unit(1.69, "meters"),
  33714. name: "Spikes",
  33715. image: {
  33716. source: "./media/characters/sabrina/spikes.svg"
  33717. }
  33718. },
  33719. stomach: {
  33720. height: math.unit(1.15, "meters"),
  33721. name: "Stomach",
  33722. image: {
  33723. source: "./media/characters/sabrina/stomach.svg"
  33724. }
  33725. },
  33726. tongue: {
  33727. height: math.unit(1.27, "meters"),
  33728. name: "Tongue",
  33729. image: {
  33730. source: "./media/characters/sabrina/tongue.svg"
  33731. }
  33732. },
  33733. wingDorsal: {
  33734. height: math.unit(4.85, "meters"),
  33735. name: "Wing (Dorsal)",
  33736. image: {
  33737. source: "./media/characters/sabrina/wing-dorsal.svg"
  33738. }
  33739. },
  33740. wingVentral: {
  33741. height: math.unit(4.85, "meters"),
  33742. name: "Wing (Ventral)",
  33743. image: {
  33744. source: "./media/characters/sabrina/wing-ventral.svg"
  33745. }
  33746. },
  33747. },
  33748. [
  33749. {
  33750. name: "Normal",
  33751. height: math.unit(5, "meters"),
  33752. default: true
  33753. },
  33754. ]
  33755. ))
  33756. characterMakers.push(() => makeCharacter(
  33757. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33758. {
  33759. frontMaid: {
  33760. height: math.unit(5 + 5/12, "feet"),
  33761. weight: math.unit(130, "lb"),
  33762. name: "Front (Maid)",
  33763. image: {
  33764. source: "./media/characters/midnight-tales/front-maid.svg",
  33765. extra: 489/454,
  33766. bottom: 61/550
  33767. }
  33768. },
  33769. frontFormal: {
  33770. height: math.unit(5 + 5/12, "feet"),
  33771. weight: math.unit(130, "lb"),
  33772. name: "Front (Formal)",
  33773. image: {
  33774. source: "./media/characters/midnight-tales/front-formal.svg",
  33775. extra: 489/454,
  33776. bottom: 61/550
  33777. }
  33778. },
  33779. back: {
  33780. height: math.unit(5 + 5/12, "feet"),
  33781. weight: math.unit(130, "lb"),
  33782. name: "Back",
  33783. image: {
  33784. source: "./media/characters/midnight-tales/back.svg",
  33785. extra: 498/456,
  33786. bottom: 33/531
  33787. }
  33788. },
  33789. frontBeast: {
  33790. height: math.unit(40, "feet"),
  33791. weight: math.unit(64000, "lb"),
  33792. name: "Front (Beast)",
  33793. image: {
  33794. source: "./media/characters/midnight-tales/front-beast.svg",
  33795. extra: 927/860,
  33796. bottom: 53/980
  33797. }
  33798. },
  33799. backBeast: {
  33800. height: math.unit(40, "feet"),
  33801. weight: math.unit(64000, "lb"),
  33802. name: "Back (Beast)",
  33803. image: {
  33804. source: "./media/characters/midnight-tales/back-beast.svg",
  33805. extra: 929/855,
  33806. bottom: 16/945
  33807. }
  33808. },
  33809. footBeast: {
  33810. height: math.unit(6.7, "feet"),
  33811. name: "Foot (Beast)",
  33812. image: {
  33813. source: "./media/characters/midnight-tales/foot-beast.svg"
  33814. }
  33815. },
  33816. headBeast: {
  33817. height: math.unit(8, "feet"),
  33818. name: "Head (Beast)",
  33819. image: {
  33820. source: "./media/characters/midnight-tales/head-beast.svg"
  33821. }
  33822. },
  33823. },
  33824. [
  33825. {
  33826. name: "Normal",
  33827. height: math.unit(5 + 5 / 12, "feet"),
  33828. default: true
  33829. },
  33830. {
  33831. name: "Macro",
  33832. height: math.unit(25, "feet")
  33833. },
  33834. ]
  33835. ))
  33836. characterMakers.push(() => makeCharacter(
  33837. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33838. {
  33839. front: {
  33840. height: math.unit(5 + 10/12, "feet"),
  33841. name: "Front",
  33842. image: {
  33843. source: "./media/characters/argon/front.svg",
  33844. extra: 2009/1935,
  33845. bottom: 118/2127
  33846. }
  33847. },
  33848. back: {
  33849. height: math.unit(5 + 10/12, "feet"),
  33850. name: "Back",
  33851. image: {
  33852. source: "./media/characters/argon/back.svg",
  33853. extra: 2047/1992,
  33854. bottom: 20/2067
  33855. }
  33856. },
  33857. frontDressed: {
  33858. height: math.unit(5 + 10/12, "feet"),
  33859. name: "Front (Dressed)",
  33860. image: {
  33861. source: "./media/characters/argon/front-dressed.svg",
  33862. extra: 2009/1935,
  33863. bottom: 118/2127
  33864. }
  33865. },
  33866. },
  33867. [
  33868. {
  33869. name: "Normal",
  33870. height: math.unit(5 + 10/12, "feet"),
  33871. default: true
  33872. },
  33873. ]
  33874. ))
  33875. characterMakers.push(() => makeCharacter(
  33876. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33877. {
  33878. front: {
  33879. height: math.unit(8 + 6/12, "feet"),
  33880. weight: math.unit(1150, "lb"),
  33881. name: "Front",
  33882. image: {
  33883. source: "./media/characters/kichi/front.svg",
  33884. extra: 1267/1164,
  33885. bottom: 61/1328
  33886. }
  33887. },
  33888. back: {
  33889. height: math.unit(8 + 6/12, "feet"),
  33890. weight: math.unit(1150, "lb"),
  33891. name: "Back",
  33892. image: {
  33893. source: "./media/characters/kichi/back.svg",
  33894. extra: 1273/1166,
  33895. bottom: 33/1306
  33896. }
  33897. },
  33898. },
  33899. [
  33900. {
  33901. name: "Normal",
  33902. height: math.unit(8 + 6/12, "feet"),
  33903. default: true
  33904. },
  33905. ]
  33906. ))
  33907. characterMakers.push(() => makeCharacter(
  33908. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33909. {
  33910. front: {
  33911. height: math.unit(6, "feet"),
  33912. weight: math.unit(210, "lb"),
  33913. name: "Front",
  33914. image: {
  33915. source: "./media/characters/manetel-greyscale/front.svg",
  33916. extra: 350/312,
  33917. bottom: 8/358
  33918. }
  33919. },
  33920. },
  33921. [
  33922. {
  33923. name: "Micro",
  33924. height: math.unit(2, "inches")
  33925. },
  33926. {
  33927. name: "Normal",
  33928. height: math.unit(6, "feet"),
  33929. default: true
  33930. },
  33931. {
  33932. name: "Minimacro",
  33933. height: math.unit(17, "feet")
  33934. },
  33935. {
  33936. name: "Macro",
  33937. height: math.unit(117, "feet")
  33938. },
  33939. ]
  33940. ))
  33941. characterMakers.push(() => makeCharacter(
  33942. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33943. {
  33944. side: {
  33945. height: math.unit(5 + 1/12, "feet"),
  33946. weight: math.unit(418, "lb"),
  33947. name: "Side",
  33948. image: {
  33949. source: "./media/characters/softpurr/side.svg",
  33950. extra: 1993/1945,
  33951. bottom: 134/2127
  33952. }
  33953. },
  33954. front: {
  33955. height: math.unit(5 + 1/12, "feet"),
  33956. weight: math.unit(418, "lb"),
  33957. name: "Front",
  33958. image: {
  33959. source: "./media/characters/softpurr/front.svg",
  33960. extra: 1950/1856,
  33961. bottom: 174/2124
  33962. }
  33963. },
  33964. paw: {
  33965. height: math.unit(1, "feet"),
  33966. name: "Paw",
  33967. image: {
  33968. source: "./media/characters/softpurr/paw.svg"
  33969. }
  33970. },
  33971. },
  33972. [
  33973. {
  33974. name: "Normal",
  33975. height: math.unit(5 + 1/12, "feet"),
  33976. default: true
  33977. },
  33978. ]
  33979. ))
  33980. characterMakers.push(() => makeCharacter(
  33981. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33982. {
  33983. front: {
  33984. height: math.unit(260, "meters"),
  33985. name: "Front",
  33986. image: {
  33987. source: "./media/characters/anahita/front.svg",
  33988. extra: 665/635,
  33989. bottom: 89/754
  33990. }
  33991. },
  33992. },
  33993. [
  33994. {
  33995. name: "Macro",
  33996. height: math.unit(260, "meters"),
  33997. default: true
  33998. },
  33999. ]
  34000. ))
  34001. characterMakers.push(() => makeCharacter(
  34002. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  34003. {
  34004. front: {
  34005. height: math.unit(4 + 10/12, "feet"),
  34006. weight: math.unit(160, "lb"),
  34007. name: "Front",
  34008. image: {
  34009. source: "./media/characters/chip-mouse/front.svg",
  34010. extra: 3528/3408,
  34011. bottom: 0/3528
  34012. }
  34013. },
  34014. frontNsfw: {
  34015. height: math.unit(4 + 10/12, "feet"),
  34016. weight: math.unit(160, "lb"),
  34017. name: "Front (NSFW)",
  34018. image: {
  34019. source: "./media/characters/chip-mouse/front-nsfw.svg",
  34020. extra: 3528/3408,
  34021. bottom: 0/3528
  34022. }
  34023. },
  34024. },
  34025. [
  34026. {
  34027. name: "Normal",
  34028. height: math.unit(4 + 10/12, "feet"),
  34029. default: true
  34030. },
  34031. ]
  34032. ))
  34033. characterMakers.push(() => makeCharacter(
  34034. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  34035. {
  34036. side: {
  34037. height: math.unit(10, "feet"),
  34038. weight: math.unit(14000, "lb"),
  34039. name: "Side",
  34040. image: {
  34041. source: "./media/characters/kremm/side.svg",
  34042. extra: 1390/1053,
  34043. bottom: 90/1480
  34044. }
  34045. },
  34046. gut: {
  34047. height: math.unit(5.8, "feet"),
  34048. name: "Gut",
  34049. image: {
  34050. source: "./media/characters/kremm/gut.svg"
  34051. }
  34052. },
  34053. ass: {
  34054. height: math.unit(6.1, "feet"),
  34055. name: "Ass",
  34056. image: {
  34057. source: "./media/characters/kremm/ass.svg"
  34058. }
  34059. },
  34060. jaws: {
  34061. height: math.unit(2.2, "feet"),
  34062. name: "Jaws",
  34063. image: {
  34064. source: "./media/characters/kremm/jaws.svg"
  34065. }
  34066. },
  34067. dick: {
  34068. height: math.unit(4.26, "feet"),
  34069. name: "Dick",
  34070. image: {
  34071. source: "./media/characters/kremm/dick.svg"
  34072. }
  34073. },
  34074. },
  34075. [
  34076. {
  34077. name: "Normal",
  34078. height: math.unit(10, "feet"),
  34079. default: true
  34080. },
  34081. ]
  34082. ))
  34083. characterMakers.push(() => makeCharacter(
  34084. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  34085. {
  34086. front: {
  34087. height: math.unit(30, "stories"),
  34088. name: "Front",
  34089. image: {
  34090. source: "./media/characters/kai/front.svg",
  34091. extra: 1892/1718,
  34092. bottom: 162/2054
  34093. }
  34094. },
  34095. },
  34096. [
  34097. {
  34098. name: "Macro",
  34099. height: math.unit(30, "stories"),
  34100. default: true
  34101. },
  34102. ]
  34103. ))
  34104. characterMakers.push(() => makeCharacter(
  34105. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  34106. {
  34107. front: {
  34108. height: math.unit(6 + 4/12, "feet"),
  34109. weight: math.unit(145, "lb"),
  34110. name: "Front",
  34111. image: {
  34112. source: "./media/characters/sykes/front.svg",
  34113. extra: 1321 / 1187,
  34114. bottom: 66 / 1387
  34115. }
  34116. },
  34117. back: {
  34118. height: math.unit(6 + 4/12, "feet"),
  34119. weight: math.unit(145, "lb"),
  34120. name: "Back",
  34121. image: {
  34122. source: "./media/characters/sykes/back.svg",
  34123. extra: 1326/1181,
  34124. bottom: 31/1357
  34125. }
  34126. },
  34127. handBack: {
  34128. height: math.unit(0.9, "feet"),
  34129. name: "Hand (Back)",
  34130. image: {
  34131. source: "./media/characters/sykes/hand-back.svg"
  34132. }
  34133. },
  34134. handFront: {
  34135. height: math.unit(0.839, "feet"),
  34136. name: "Hand (Front)",
  34137. image: {
  34138. source: "./media/characters/sykes/hand-front.svg"
  34139. }
  34140. },
  34141. leftFoot: {
  34142. height: math.unit(1.2, "feet"),
  34143. name: "Foot (Left)",
  34144. image: {
  34145. source: "./media/characters/sykes/foot-left.svg"
  34146. }
  34147. },
  34148. rightFoot: {
  34149. height: math.unit(1.2, "feet"),
  34150. name: "Foot (Right)",
  34151. image: {
  34152. source: "./media/characters/sykes/foot-right.svg"
  34153. }
  34154. },
  34155. maw: {
  34156. height: math.unit(1.93, "feet"),
  34157. name: "Maw",
  34158. image: {
  34159. source: "./media/characters/sykes/maw.svg"
  34160. }
  34161. },
  34162. teeth: {
  34163. height: math.unit(0.51, "feet"),
  34164. name: "Teeth",
  34165. image: {
  34166. source: "./media/characters/sykes/teeth.svg"
  34167. }
  34168. },
  34169. tongue: {
  34170. height: math.unit(2.13, "feet"),
  34171. name: "Tongue",
  34172. image: {
  34173. source: "./media/characters/sykes/tongue.svg"
  34174. }
  34175. },
  34176. uvula: {
  34177. height: math.unit(0.16, "feet"),
  34178. name: "Uvula",
  34179. image: {
  34180. source: "./media/characters/sykes/uvula.svg"
  34181. }
  34182. },
  34183. collar: {
  34184. height: math.unit(0.287, "feet"),
  34185. name: "Collar",
  34186. image: {
  34187. source: "./media/characters/sykes/collar.svg"
  34188. }
  34189. },
  34190. },
  34191. [
  34192. {
  34193. name: "Shrunken",
  34194. height: math.unit(5, "inches")
  34195. },
  34196. {
  34197. name: "Normal",
  34198. height: math.unit(6 + 4 / 12, "feet"),
  34199. default: true
  34200. },
  34201. {
  34202. name: "Big",
  34203. height: math.unit(15, "feet")
  34204. },
  34205. ]
  34206. ))
  34207. characterMakers.push(() => makeCharacter(
  34208. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  34209. {
  34210. front: {
  34211. height: math.unit(5 + 8/12, "feet"),
  34212. weight: math.unit(190, "lb"),
  34213. name: "Front",
  34214. image: {
  34215. source: "./media/characters/oven-otter/front.svg",
  34216. extra: 1809/1740,
  34217. bottom: 181/1990
  34218. }
  34219. },
  34220. back: {
  34221. height: math.unit(5 + 8/12, "feet"),
  34222. weight: math.unit(190, "lb"),
  34223. name: "Back",
  34224. image: {
  34225. source: "./media/characters/oven-otter/back.svg",
  34226. extra: 1709/1635,
  34227. bottom: 118/1827
  34228. }
  34229. },
  34230. hand: {
  34231. height: math.unit(1.07, "feet"),
  34232. name: "Hand",
  34233. image: {
  34234. source: "./media/characters/oven-otter/hand.svg"
  34235. }
  34236. },
  34237. beans: {
  34238. height: math.unit(1.74, "feet"),
  34239. name: "Beans",
  34240. image: {
  34241. source: "./media/characters/oven-otter/beans.svg"
  34242. }
  34243. },
  34244. },
  34245. [
  34246. {
  34247. name: "Micro",
  34248. height: math.unit(0.5, "inches")
  34249. },
  34250. {
  34251. name: "Normal",
  34252. height: math.unit(5 + 8/12, "feet"),
  34253. default: true
  34254. },
  34255. {
  34256. name: "Macro",
  34257. height: math.unit(250, "feet")
  34258. },
  34259. {
  34260. name: "Really High",
  34261. height: math.unit(420, "feet")
  34262. },
  34263. ]
  34264. ))
  34265. characterMakers.push(() => makeCharacter(
  34266. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  34267. {
  34268. front: {
  34269. height: math.unit(5, "meters"),
  34270. weight: math.unit(292000000000000, "kg"),
  34271. name: "Front",
  34272. image: {
  34273. source: "./media/characters/devourer/front.svg",
  34274. extra: 1800/1733,
  34275. bottom: 211/2011
  34276. }
  34277. },
  34278. maw: {
  34279. height: math.unit(1.1, "meter"),
  34280. name: "Maw",
  34281. image: {
  34282. source: "./media/characters/devourer/maw.svg"
  34283. }
  34284. },
  34285. },
  34286. [
  34287. {
  34288. name: "Small",
  34289. height: math.unit(3, "meters")
  34290. },
  34291. {
  34292. name: "Large",
  34293. height: math.unit(5, "meters"),
  34294. default: true
  34295. },
  34296. ]
  34297. ))
  34298. characterMakers.push(() => makeCharacter(
  34299. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  34300. {
  34301. front: {
  34302. height: math.unit(6, "feet"),
  34303. weight: math.unit(400, "lb"),
  34304. name: "Front",
  34305. image: {
  34306. source: "./media/characters/ellarby/front.svg",
  34307. extra: 1909/1763,
  34308. bottom: 80/1989
  34309. }
  34310. },
  34311. back: {
  34312. height: math.unit(6, "feet"),
  34313. weight: math.unit(400, "lb"),
  34314. name: "Back",
  34315. image: {
  34316. source: "./media/characters/ellarby/back.svg",
  34317. extra: 1914/1784,
  34318. bottom: 172/2086
  34319. }
  34320. },
  34321. },
  34322. [
  34323. {
  34324. name: "Mischief",
  34325. height: math.unit(18, "inches")
  34326. },
  34327. {
  34328. name: "Trouble",
  34329. height: math.unit(12, "feet")
  34330. },
  34331. {
  34332. name: "Havoc",
  34333. height: math.unit(200, "feet"),
  34334. default: true
  34335. },
  34336. {
  34337. name: "Pandemonium",
  34338. height: math.unit(1, "mile")
  34339. },
  34340. {
  34341. name: "Catastrophe",
  34342. height: math.unit(100, "miles")
  34343. },
  34344. ]
  34345. ))
  34346. characterMakers.push(() => makeCharacter(
  34347. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  34348. {
  34349. front: {
  34350. height: math.unit(4.7, "meters"),
  34351. weight: math.unit(6500, "kg"),
  34352. name: "Front",
  34353. image: {
  34354. source: "./media/characters/vex/front.svg",
  34355. extra: 1288/1140,
  34356. bottom: 100/1388
  34357. }
  34358. },
  34359. },
  34360. [
  34361. {
  34362. name: "Normal",
  34363. height: math.unit(4.7, "meters"),
  34364. default: true
  34365. },
  34366. ]
  34367. ))
  34368. characterMakers.push(() => makeCharacter(
  34369. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  34370. {
  34371. normal: {
  34372. height: math.unit(6, "feet"),
  34373. weight: math.unit(350, "lb"),
  34374. name: "Normal",
  34375. image: {
  34376. source: "./media/characters/teshy/normal.svg",
  34377. extra: 1795/1735,
  34378. bottom: 16/1811
  34379. }
  34380. },
  34381. monsterFront: {
  34382. height: math.unit(12, "feet"),
  34383. weight: math.unit(4700, "lb"),
  34384. name: "Monster (Front)",
  34385. image: {
  34386. source: "./media/characters/teshy/monster-front.svg",
  34387. extra: 2042/2034,
  34388. bottom: 128/2170
  34389. }
  34390. },
  34391. monsterSide: {
  34392. height: math.unit(12, "feet"),
  34393. weight: math.unit(4700, "lb"),
  34394. name: "Monster (Side)",
  34395. image: {
  34396. source: "./media/characters/teshy/monster-side.svg",
  34397. extra: 2067/2056,
  34398. bottom: 70/2137
  34399. }
  34400. },
  34401. monsterBack: {
  34402. height: math.unit(12, "feet"),
  34403. weight: math.unit(4700, "lb"),
  34404. name: "Monster (Back)",
  34405. image: {
  34406. source: "./media/characters/teshy/monster-back.svg",
  34407. extra: 1921/1914,
  34408. bottom: 171/2092
  34409. }
  34410. },
  34411. },
  34412. [
  34413. {
  34414. name: "Normal",
  34415. height: math.unit(6, "feet"),
  34416. default: true
  34417. },
  34418. ]
  34419. ))
  34420. characterMakers.push(() => makeCharacter(
  34421. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  34422. {
  34423. front: {
  34424. height: math.unit(6, "feet"),
  34425. name: "Front",
  34426. image: {
  34427. source: "./media/characters/ramey/front.svg",
  34428. extra: 790/787,
  34429. bottom: 27/817
  34430. }
  34431. },
  34432. },
  34433. [
  34434. {
  34435. name: "Normal",
  34436. height: math.unit(6, "feet"),
  34437. default: true
  34438. },
  34439. ]
  34440. ))
  34441. characterMakers.push(() => makeCharacter(
  34442. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  34443. {
  34444. front: {
  34445. height: math.unit(5 + 5/12, "feet"),
  34446. weight: math.unit(120, "lb"),
  34447. name: "Front",
  34448. image: {
  34449. source: "./media/characters/phirae/front.svg",
  34450. extra: 2491/2436,
  34451. bottom: 38/2529
  34452. }
  34453. },
  34454. },
  34455. [
  34456. {
  34457. name: "Normal",
  34458. height: math.unit(5 + 5/12, "feet"),
  34459. default: true
  34460. },
  34461. ]
  34462. ))
  34463. characterMakers.push(() => makeCharacter(
  34464. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  34465. {
  34466. front: {
  34467. height: math.unit(5 + 3/12, "feet"),
  34468. name: "Front",
  34469. image: {
  34470. source: "./media/characters/stagglas/front.svg",
  34471. extra: 962/882,
  34472. bottom: 53/1015
  34473. }
  34474. },
  34475. feral: {
  34476. height: math.unit(335, "cm"),
  34477. name: "Feral",
  34478. image: {
  34479. source: "./media/characters/stagglas/feral.svg",
  34480. extra: 1732/1090,
  34481. bottom: 48/1780
  34482. }
  34483. },
  34484. },
  34485. [
  34486. {
  34487. name: "Normal",
  34488. height: math.unit(5 + 3/12, "feet"),
  34489. default: true
  34490. },
  34491. ]
  34492. ))
  34493. characterMakers.push(() => makeCharacter(
  34494. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  34495. {
  34496. front: {
  34497. height: math.unit(5 + 4/12, "feet"),
  34498. weight: math.unit(145, "lb"),
  34499. name: "Front",
  34500. image: {
  34501. source: "./media/characters/starra/front.svg",
  34502. extra: 1790/1691,
  34503. bottom: 91/1881
  34504. }
  34505. },
  34506. },
  34507. [
  34508. {
  34509. name: "Normal",
  34510. height: math.unit(5 + 4/12, "feet"),
  34511. default: true
  34512. },
  34513. ]
  34514. ))
  34515. characterMakers.push(() => makeCharacter(
  34516. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  34517. {
  34518. front: {
  34519. height: math.unit(2.2, "meters"),
  34520. name: "Front",
  34521. image: {
  34522. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  34523. extra: 1194/1005,
  34524. bottom: 25/1219
  34525. }
  34526. },
  34527. },
  34528. [
  34529. {
  34530. name: "Normal",
  34531. height: math.unit(2.2, "meters"),
  34532. default: true
  34533. },
  34534. ]
  34535. ))
  34536. characterMakers.push(() => makeCharacter(
  34537. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  34538. {
  34539. side: {
  34540. height: math.unit(8 + 2/12, "feet"),
  34541. weight: math.unit(1240, "lb"),
  34542. name: "Side",
  34543. image: {
  34544. source: "./media/characters/mika-valentine/side.svg",
  34545. extra: 2670/2501,
  34546. bottom: 250/2920
  34547. }
  34548. },
  34549. },
  34550. [
  34551. {
  34552. name: "Normal",
  34553. height: math.unit(8 + 2/12, "feet"),
  34554. default: true
  34555. },
  34556. ]
  34557. ))
  34558. characterMakers.push(() => makeCharacter(
  34559. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  34560. {
  34561. front: {
  34562. height: math.unit(7 + 2/12, "feet"),
  34563. name: "Front",
  34564. image: {
  34565. source: "./media/characters/xoltol/front.svg",
  34566. extra: 2212/2124,
  34567. bottom: 84/2296
  34568. }
  34569. },
  34570. side: {
  34571. height: math.unit(7 + 2/12, "feet"),
  34572. name: "Side",
  34573. image: {
  34574. source: "./media/characters/xoltol/side.svg",
  34575. extra: 2273/2197,
  34576. bottom: 26/2299
  34577. }
  34578. },
  34579. hand: {
  34580. height: math.unit(2.5, "feet"),
  34581. name: "Hand",
  34582. image: {
  34583. source: "./media/characters/xoltol/hand.svg"
  34584. }
  34585. },
  34586. },
  34587. [
  34588. {
  34589. name: "Small-ish",
  34590. height: math.unit(5 + 11/12, "feet")
  34591. },
  34592. {
  34593. name: "Normal",
  34594. height: math.unit(7 + 2/12, "feet")
  34595. },
  34596. {
  34597. name: "\"Macro\"",
  34598. height: math.unit(14 + 9/12, "feet"),
  34599. default: true
  34600. },
  34601. {
  34602. name: "Alternate Height",
  34603. height: math.unit(20, "feet")
  34604. },
  34605. {
  34606. name: "Actually Macro",
  34607. height: math.unit(100, "feet")
  34608. },
  34609. ]
  34610. ))
  34611. characterMakers.push(() => makeCharacter(
  34612. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  34613. {
  34614. front: {
  34615. height: math.unit(5 + 2/12, "feet"),
  34616. name: "Front",
  34617. image: {
  34618. source: "./media/characters/kotetsu-redwood/front.svg",
  34619. extra: 1053/942,
  34620. bottom: 60/1113
  34621. }
  34622. },
  34623. },
  34624. [
  34625. {
  34626. name: "Normal",
  34627. height: math.unit(5 + 2/12, "feet"),
  34628. default: true
  34629. },
  34630. ]
  34631. ))
  34632. characterMakers.push(() => makeCharacter(
  34633. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34634. {
  34635. front: {
  34636. height: math.unit(2.4, "meters"),
  34637. weight: math.unit(125, "kg"),
  34638. name: "Front",
  34639. image: {
  34640. source: "./media/characters/lilith/front.svg",
  34641. extra: 1590/1513,
  34642. bottom: 203/1793
  34643. }
  34644. },
  34645. },
  34646. [
  34647. {
  34648. name: "Humanoid",
  34649. height: math.unit(2.4, "meters")
  34650. },
  34651. {
  34652. name: "Normal",
  34653. height: math.unit(6, "meters"),
  34654. default: true
  34655. },
  34656. {
  34657. name: "Largest",
  34658. height: math.unit(55, "meters")
  34659. },
  34660. ]
  34661. ))
  34662. characterMakers.push(() => makeCharacter(
  34663. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34664. {
  34665. front: {
  34666. height: math.unit(8 + 4/12, "feet"),
  34667. weight: math.unit(535, "lb"),
  34668. name: "Front",
  34669. image: {
  34670. source: "./media/characters/beh'kah-bolger/front.svg",
  34671. extra: 1660/1603,
  34672. bottom: 37/1697
  34673. }
  34674. },
  34675. },
  34676. [
  34677. {
  34678. name: "Normal",
  34679. height: math.unit(8 + 4/12, "feet"),
  34680. default: true
  34681. },
  34682. {
  34683. name: "Kaiju",
  34684. height: math.unit(250, "feet")
  34685. },
  34686. {
  34687. name: "Still Growing",
  34688. height: math.unit(10, "miles")
  34689. },
  34690. {
  34691. name: "Continental",
  34692. height: math.unit(5000, "miles")
  34693. },
  34694. {
  34695. name: "Final Form",
  34696. height: math.unit(2500000, "miles")
  34697. },
  34698. ]
  34699. ))
  34700. characterMakers.push(() => makeCharacter(
  34701. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34702. {
  34703. front: {
  34704. height: math.unit(7 + 2/12, "feet"),
  34705. weight: math.unit(230, "kg"),
  34706. name: "Front",
  34707. image: {
  34708. source: "./media/characters/tatyana-milewska/front.svg",
  34709. extra: 1199/1150,
  34710. bottom: 86/1285
  34711. }
  34712. },
  34713. },
  34714. [
  34715. {
  34716. name: "Normal",
  34717. height: math.unit(7 + 2/12, "feet"),
  34718. default: true
  34719. },
  34720. {
  34721. name: "Big",
  34722. height: math.unit(12, "feet")
  34723. },
  34724. {
  34725. name: "Minimacro",
  34726. height: math.unit(20, "feet")
  34727. },
  34728. {
  34729. name: "Macro",
  34730. height: math.unit(120, "feet")
  34731. },
  34732. ]
  34733. ))
  34734. characterMakers.push(() => makeCharacter(
  34735. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34736. {
  34737. front: {
  34738. height: math.unit(7 + 8/12, "feet"),
  34739. weight: math.unit(152, "kg"),
  34740. name: "Front",
  34741. image: {
  34742. source: "./media/characters/helen-arri/front.svg",
  34743. extra: 440/423,
  34744. bottom: 14/454
  34745. }
  34746. },
  34747. back: {
  34748. height: math.unit(7 + 8/12, "feet"),
  34749. weight: math.unit(152, "kg"),
  34750. name: "Back",
  34751. image: {
  34752. source: "./media/characters/helen-arri/back.svg",
  34753. extra: 443/426,
  34754. bottom: 8/451
  34755. }
  34756. },
  34757. },
  34758. [
  34759. {
  34760. name: "Normal",
  34761. height: math.unit(7 + 8/12, "feet"),
  34762. default: true
  34763. },
  34764. {
  34765. name: "Big",
  34766. height: math.unit(14, "feet")
  34767. },
  34768. {
  34769. name: "Minimacro",
  34770. height: math.unit(24, "feet")
  34771. },
  34772. {
  34773. name: "Macro",
  34774. height: math.unit(140, "feet")
  34775. },
  34776. ]
  34777. ))
  34778. characterMakers.push(() => makeCharacter(
  34779. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34780. {
  34781. front: {
  34782. height: math.unit(6, "meters"),
  34783. name: "Front",
  34784. image: {
  34785. source: "./media/characters/ehanu-rehu/front.svg",
  34786. extra: 1800/1800,
  34787. bottom: 59/1859
  34788. }
  34789. },
  34790. },
  34791. [
  34792. {
  34793. name: "Normal",
  34794. height: math.unit(6, "meters"),
  34795. default: true
  34796. },
  34797. ]
  34798. ))
  34799. characterMakers.push(() => makeCharacter(
  34800. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34801. {
  34802. front: {
  34803. height: math.unit(7 + 3/12, "feet"),
  34804. name: "Front",
  34805. image: {
  34806. source: "./media/characters/renholder/front.svg",
  34807. extra: 3096/2960,
  34808. bottom: 250/3346
  34809. }
  34810. },
  34811. },
  34812. [
  34813. {
  34814. name: "Normal Bat",
  34815. height: math.unit(7 + 3/12, "feet"),
  34816. default: true
  34817. },
  34818. {
  34819. name: "Slightly Tall Bat",
  34820. height: math.unit(100, "feet")
  34821. },
  34822. {
  34823. name: "Big Bat",
  34824. height: math.unit(1000, "feet")
  34825. },
  34826. {
  34827. name: "City-Sized Bat",
  34828. height: math.unit(200000, "feet")
  34829. },
  34830. {
  34831. name: "Bigger Bat",
  34832. height: math.unit(10000, "miles")
  34833. },
  34834. {
  34835. name: "Solar Sized Bat",
  34836. height: math.unit(100, "AU")
  34837. },
  34838. {
  34839. name: "Galactic Bat",
  34840. height: math.unit(200000, "lightyears")
  34841. },
  34842. {
  34843. name: "Universally Known Bat",
  34844. height: math.unit(1, "universe")
  34845. },
  34846. ]
  34847. ))
  34848. characterMakers.push(() => makeCharacter(
  34849. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34850. {
  34851. front: {
  34852. height: math.unit(6 + 11/12, "feet"),
  34853. weight: math.unit(250, "lb"),
  34854. name: "Front",
  34855. image: {
  34856. source: "./media/characters/cookiecat/front.svg",
  34857. extra: 893/827,
  34858. bottom: 14/907
  34859. }
  34860. },
  34861. },
  34862. [
  34863. {
  34864. name: "Micro",
  34865. height: math.unit(3, "inches")
  34866. },
  34867. {
  34868. name: "Normal",
  34869. height: math.unit(6 + 11/12, "feet"),
  34870. default: true
  34871. },
  34872. {
  34873. name: "Macro",
  34874. height: math.unit(100, "feet")
  34875. },
  34876. {
  34877. name: "Macro+",
  34878. height: math.unit(404, "feet")
  34879. },
  34880. {
  34881. name: "Megamacro",
  34882. height: math.unit(165, "miles")
  34883. },
  34884. {
  34885. name: "Planetary",
  34886. height: math.unit(4600, "miles")
  34887. },
  34888. ]
  34889. ))
  34890. characterMakers.push(() => makeCharacter(
  34891. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34892. {
  34893. front: {
  34894. height: math.unit(10 + 3/12, "feet"),
  34895. weight: math.unit(1500, "lb"),
  34896. name: "Front",
  34897. image: {
  34898. source: "./media/characters/tux-kusanagi/front.svg",
  34899. extra: 944/840,
  34900. bottom: 39/983
  34901. }
  34902. },
  34903. back: {
  34904. height: math.unit(10 + 3/12, "feet"),
  34905. weight: math.unit(1500, "lb"),
  34906. name: "Back",
  34907. image: {
  34908. source: "./media/characters/tux-kusanagi/back.svg",
  34909. extra: 941/842,
  34910. bottom: 28/969
  34911. }
  34912. },
  34913. rump: {
  34914. height: math.unit(5.25, "feet"),
  34915. name: "Rump",
  34916. image: {
  34917. source: "./media/characters/tux-kusanagi/rump.svg"
  34918. }
  34919. },
  34920. beak: {
  34921. height: math.unit(1.54, "feet"),
  34922. name: "Beak",
  34923. image: {
  34924. source: "./media/characters/tux-kusanagi/beak.svg"
  34925. }
  34926. },
  34927. },
  34928. [
  34929. {
  34930. name: "Normal",
  34931. height: math.unit(10 + 3/12, "feet"),
  34932. default: true
  34933. },
  34934. ]
  34935. ))
  34936. characterMakers.push(() => makeCharacter(
  34937. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34938. {
  34939. front: {
  34940. height: math.unit(58, "feet"),
  34941. weight: math.unit(200, "tons"),
  34942. name: "Front",
  34943. image: {
  34944. source: "./media/characters/uzarmazari/front.svg",
  34945. extra: 1575/1455,
  34946. bottom: 152/1727
  34947. }
  34948. },
  34949. back: {
  34950. height: math.unit(58, "feet"),
  34951. weight: math.unit(200, "tons"),
  34952. name: "Back",
  34953. image: {
  34954. source: "./media/characters/uzarmazari/back.svg",
  34955. extra: 1585/1510,
  34956. bottom: 157/1742
  34957. }
  34958. },
  34959. head: {
  34960. height: math.unit(26, "feet"),
  34961. name: "Head",
  34962. image: {
  34963. source: "./media/characters/uzarmazari/head.svg"
  34964. }
  34965. },
  34966. },
  34967. [
  34968. {
  34969. name: "Normal",
  34970. height: math.unit(58, "feet"),
  34971. default: true
  34972. },
  34973. ]
  34974. ))
  34975. characterMakers.push(() => makeCharacter(
  34976. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34977. {
  34978. side: {
  34979. height: math.unit(15, "feet"),
  34980. name: "Side",
  34981. image: {
  34982. source: "./media/characters/akitu/side.svg",
  34983. extra: 1421/1321,
  34984. bottom: 157/1578
  34985. }
  34986. },
  34987. front: {
  34988. height: math.unit(15, "feet"),
  34989. name: "Front",
  34990. image: {
  34991. source: "./media/characters/akitu/front.svg",
  34992. extra: 1435/1326,
  34993. bottom: 232/1667
  34994. }
  34995. },
  34996. },
  34997. [
  34998. {
  34999. name: "Normal",
  35000. height: math.unit(15, "feet"),
  35001. default: true
  35002. },
  35003. ]
  35004. ))
  35005. characterMakers.push(() => makeCharacter(
  35006. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  35007. {
  35008. front: {
  35009. height: math.unit(10 + 8/12, "feet"),
  35010. name: "Front",
  35011. image: {
  35012. source: "./media/characters/azalie-croixland/front.svg",
  35013. extra: 1972/1856,
  35014. bottom: 31/2003
  35015. }
  35016. },
  35017. },
  35018. [
  35019. {
  35020. name: "Original Height",
  35021. height: math.unit(5 + 4/12, "feet")
  35022. },
  35023. {
  35024. name: "Normal Height",
  35025. height: math.unit(10 + 8/12, "feet"),
  35026. default: true
  35027. },
  35028. ]
  35029. ))
  35030. characterMakers.push(() => makeCharacter(
  35031. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  35032. {
  35033. side: {
  35034. height: math.unit(7 + 1/12, "feet"),
  35035. weight: math.unit(245, "lb"),
  35036. name: "Side",
  35037. image: {
  35038. source: "./media/characters/kavus-kazian/side.svg",
  35039. extra: 349/342,
  35040. bottom: 15/364
  35041. }
  35042. },
  35043. },
  35044. [
  35045. {
  35046. name: "Normal",
  35047. height: math.unit(7 + 1/12, "feet"),
  35048. default: true
  35049. },
  35050. ]
  35051. ))
  35052. characterMakers.push(() => makeCharacter(
  35053. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  35054. {
  35055. normalFront: {
  35056. height: math.unit(5 + 11/12, "feet"),
  35057. name: "Front",
  35058. image: {
  35059. source: "./media/characters/moonlight-rose/normal-front.svg",
  35060. extra: 1980/1825,
  35061. bottom: 18/1998
  35062. },
  35063. form: "normal",
  35064. default: true
  35065. },
  35066. normalBack: {
  35067. height: math.unit(5 + 11/12, "feet"),
  35068. name: "Back",
  35069. image: {
  35070. source: "./media/characters/moonlight-rose/normal-back.svg",
  35071. extra: 2010/1839,
  35072. bottom: 10/2020
  35073. },
  35074. form: "normal"
  35075. },
  35076. demonFront: {
  35077. height: math.unit(1.5, "earths"),
  35078. name: "Front",
  35079. image: {
  35080. source: "./media/characters/moonlight-rose/demon.svg",
  35081. extra: 1400/1294,
  35082. bottom: 45/1445
  35083. },
  35084. form: "demon",
  35085. default: true
  35086. },
  35087. terraFront: {
  35088. height: math.unit(1.5, "earths"),
  35089. name: "Front",
  35090. image: {
  35091. source: "./media/characters/moonlight-rose/terra.svg"
  35092. },
  35093. form: "terra",
  35094. default: true
  35095. },
  35096. jupiterFront: {
  35097. height: math.unit(69911*2, "km"),
  35098. name: "Front",
  35099. image: {
  35100. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  35101. extra: 1367/1286,
  35102. bottom: 55/1422
  35103. },
  35104. form: "jupiter",
  35105. default: true
  35106. },
  35107. neptuneFront: {
  35108. height: math.unit(24622*2, "feet"),
  35109. name: "Front",
  35110. image: {
  35111. source: "./media/characters/moonlight-rose/neptune-front.svg",
  35112. extra: 1851/1712,
  35113. bottom: 0/1851
  35114. },
  35115. form: "neptune",
  35116. default: true
  35117. },
  35118. },
  35119. [
  35120. {
  35121. name: "\"Natural\" Height",
  35122. height: math.unit(5 + 11/12, "feet"),
  35123. form: "normal"
  35124. },
  35125. {
  35126. name: "Smallest comfortable size",
  35127. height: math.unit(40, "meters"),
  35128. form: "normal"
  35129. },
  35130. {
  35131. name: "Common size",
  35132. height: math.unit(50, "km"),
  35133. form: "normal",
  35134. default: true
  35135. },
  35136. {
  35137. name: "Normal",
  35138. height: math.unit(1.5, "earths"),
  35139. form: "demon",
  35140. default: true
  35141. },
  35142. {
  35143. name: "Universal",
  35144. height: math.unit(15, "universes"),
  35145. form: "demon"
  35146. },
  35147. {
  35148. name: "Earth",
  35149. height: math.unit(1.5, "earths"),
  35150. form: "terra",
  35151. default: true
  35152. },
  35153. {
  35154. name: "Super Earth",
  35155. height: math.unit(67.5, "earths"),
  35156. form: "terra"
  35157. },
  35158. {
  35159. name: "Doesn't fit in a solar system...",
  35160. height: math.unit(1, "galaxy"),
  35161. form: "terra"
  35162. },
  35163. {
  35164. name: "Saturn",
  35165. height: math.unit(58232*2, "km"),
  35166. form: "jupiter"
  35167. },
  35168. {
  35169. name: "Jupiter",
  35170. height: math.unit(69911*2, "km"),
  35171. form: "jupiter",
  35172. default: true
  35173. },
  35174. {
  35175. name: "HD 100546 b",
  35176. height: math.unit(482938, "km"),
  35177. form: "jupiter"
  35178. },
  35179. {
  35180. name: "Enceladus",
  35181. height: math.unit(513*2, "km"),
  35182. form: "neptune"
  35183. },
  35184. {
  35185. name: "Europe",
  35186. height: math.unit(1560*2, "km"),
  35187. form: "neptune"
  35188. },
  35189. {
  35190. name: "Neptune",
  35191. height: math.unit(24622*2, "km"),
  35192. form: "neptune",
  35193. default: true
  35194. },
  35195. {
  35196. name: "CoRoT-9b",
  35197. height: math.unit(75067*2, "km"),
  35198. form: "neptune"
  35199. },
  35200. ],
  35201. {
  35202. "normal": {
  35203. name: "Normal",
  35204. default: true
  35205. },
  35206. "demon": {
  35207. name: "Demon"
  35208. },
  35209. "terra": {
  35210. name: "Terra"
  35211. },
  35212. "jupiter": {
  35213. name: "Jupiter"
  35214. },
  35215. "neptune": {
  35216. name: "Neptune"
  35217. }
  35218. }
  35219. ))
  35220. characterMakers.push(() => makeCharacter(
  35221. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  35222. {
  35223. front: {
  35224. height: math.unit(16, "feet"),
  35225. weight: math.unit(610, "kg"),
  35226. name: "Front",
  35227. image: {
  35228. source: "./media/characters/huckle/front.svg",
  35229. extra: 1731/1625,
  35230. bottom: 33/1764
  35231. }
  35232. },
  35233. back: {
  35234. height: math.unit(16, "feet"),
  35235. weight: math.unit(610, "kg"),
  35236. name: "Back",
  35237. image: {
  35238. source: "./media/characters/huckle/back.svg",
  35239. extra: 1738/1651,
  35240. bottom: 37/1775
  35241. }
  35242. },
  35243. laughing: {
  35244. height: math.unit(3.75, "feet"),
  35245. name: "Laughing",
  35246. image: {
  35247. source: "./media/characters/huckle/laughing.svg"
  35248. }
  35249. },
  35250. angry: {
  35251. height: math.unit(4.15, "feet"),
  35252. name: "Angry",
  35253. image: {
  35254. source: "./media/characters/huckle/angry.svg"
  35255. }
  35256. },
  35257. },
  35258. [
  35259. {
  35260. name: "Normal",
  35261. height: math.unit(16, "feet"),
  35262. default: true
  35263. },
  35264. {
  35265. name: "Mini Macro",
  35266. height: math.unit(463, "feet")
  35267. },
  35268. {
  35269. name: "Macro",
  35270. height: math.unit(1680, "meters")
  35271. },
  35272. {
  35273. name: "Mega Macro",
  35274. height: math.unit(175, "km")
  35275. },
  35276. {
  35277. name: "Terra Macro",
  35278. height: math.unit(32, "gigameters")
  35279. },
  35280. {
  35281. name: "Multiverse+",
  35282. height: math.unit(2.56e23, "yottameters")
  35283. },
  35284. ]
  35285. ))
  35286. characterMakers.push(() => makeCharacter(
  35287. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  35288. {
  35289. front: {
  35290. height: math.unit(6 + 9/12, "feet"),
  35291. weight: math.unit(280, "lb"),
  35292. name: "Front",
  35293. image: {
  35294. source: "./media/characters/candy/front.svg",
  35295. extra: 234/217,
  35296. bottom: 11/245
  35297. }
  35298. },
  35299. },
  35300. [
  35301. {
  35302. name: "Really Small",
  35303. height: math.unit(0.1, "nm")
  35304. },
  35305. {
  35306. name: "Micro",
  35307. height: math.unit(2, "inches")
  35308. },
  35309. {
  35310. name: "Normal",
  35311. height: math.unit(6 + 9/12, "feet"),
  35312. default: true
  35313. },
  35314. {
  35315. name: "Small Macro",
  35316. height: math.unit(69, "feet")
  35317. },
  35318. {
  35319. name: "Macro",
  35320. height: math.unit(160, "feet")
  35321. },
  35322. {
  35323. name: "Megamacro",
  35324. height: math.unit(22000, "miles")
  35325. },
  35326. {
  35327. name: "Gigamacro",
  35328. height: math.unit(50000, "miles")
  35329. },
  35330. ]
  35331. ))
  35332. characterMakers.push(() => makeCharacter(
  35333. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  35334. {
  35335. front: {
  35336. height: math.unit(4, "feet"),
  35337. weight: math.unit(90, "lb"),
  35338. name: "Front",
  35339. image: {
  35340. source: "./media/characters/joey-mcdonald/front.svg",
  35341. extra: 1059/852,
  35342. bottom: 33/1092
  35343. }
  35344. },
  35345. back: {
  35346. height: math.unit(4, "feet"),
  35347. weight: math.unit(90, "lb"),
  35348. name: "Back",
  35349. image: {
  35350. source: "./media/characters/joey-mcdonald/back.svg",
  35351. extra: 1077/879,
  35352. bottom: 5/1082
  35353. }
  35354. },
  35355. frontKobold: {
  35356. height: math.unit(4, "feet"),
  35357. weight: math.unit(100, "lb"),
  35358. name: "Front-kobold",
  35359. image: {
  35360. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  35361. extra: 1480/1367,
  35362. bottom: 0/1480
  35363. }
  35364. },
  35365. backKobold: {
  35366. height: math.unit(4, "feet"),
  35367. weight: math.unit(100, "lb"),
  35368. name: "Back-kobold",
  35369. image: {
  35370. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  35371. extra: 1449/1361,
  35372. bottom: 0/1449
  35373. }
  35374. },
  35375. },
  35376. [
  35377. {
  35378. name: "Normal",
  35379. height: math.unit(4, "feet"),
  35380. default: true
  35381. },
  35382. ]
  35383. ))
  35384. characterMakers.push(() => makeCharacter(
  35385. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  35386. {
  35387. front: {
  35388. height: math.unit(12 + 6/12, "feet"),
  35389. name: "Front",
  35390. image: {
  35391. source: "./media/characters/kass-lockheed/front.svg",
  35392. extra: 354/343,
  35393. bottom: 9/363
  35394. }
  35395. },
  35396. back: {
  35397. height: math.unit(12 + 6/12, "feet"),
  35398. name: "Back",
  35399. image: {
  35400. source: "./media/characters/kass-lockheed/back.svg",
  35401. extra: 364/352,
  35402. bottom: 3/367
  35403. }
  35404. },
  35405. dick: {
  35406. height: math.unit(3.12, "feet"),
  35407. name: "Dick",
  35408. image: {
  35409. source: "./media/characters/kass-lockheed/dick.svg"
  35410. }
  35411. },
  35412. head: {
  35413. height: math.unit(2.6, "feet"),
  35414. name: "Head",
  35415. image: {
  35416. source: "./media/characters/kass-lockheed/head.svg"
  35417. }
  35418. },
  35419. bleh: {
  35420. height: math.unit(2.85, "feet"),
  35421. name: "Bleh",
  35422. image: {
  35423. source: "./media/characters/kass-lockheed/bleh.svg"
  35424. }
  35425. },
  35426. smug: {
  35427. height: math.unit(2.85, "feet"),
  35428. name: "Smug",
  35429. image: {
  35430. source: "./media/characters/kass-lockheed/smug.svg"
  35431. }
  35432. },
  35433. },
  35434. [
  35435. {
  35436. name: "Normal",
  35437. height: math.unit(12 + 6/12, "feet"),
  35438. default: true
  35439. },
  35440. ]
  35441. ))
  35442. characterMakers.push(() => makeCharacter(
  35443. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  35444. {
  35445. front: {
  35446. height: math.unit(6 + 2/12, "feet"),
  35447. name: "Front",
  35448. image: {
  35449. source: "./media/characters/taylor/front.svg",
  35450. extra: 639/495,
  35451. bottom: 12/651
  35452. }
  35453. },
  35454. },
  35455. [
  35456. {
  35457. name: "Normal",
  35458. height: math.unit(6 + 2/12, "feet"),
  35459. default: true
  35460. },
  35461. {
  35462. name: "Big",
  35463. height: math.unit(15, "feet")
  35464. },
  35465. {
  35466. name: "Lorg",
  35467. height: math.unit(80, "feet")
  35468. },
  35469. {
  35470. name: "Too Lorg",
  35471. height: math.unit(120, "feet")
  35472. },
  35473. ]
  35474. ))
  35475. characterMakers.push(() => makeCharacter(
  35476. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  35477. {
  35478. front: {
  35479. height: math.unit(15, "feet"),
  35480. name: "Front",
  35481. image: {
  35482. source: "./media/characters/kaizer/front.svg",
  35483. extra: 1612/1436,
  35484. bottom: 43/1655
  35485. }
  35486. },
  35487. },
  35488. [
  35489. {
  35490. name: "Normal",
  35491. height: math.unit(15, "feet"),
  35492. default: true
  35493. },
  35494. ]
  35495. ))
  35496. characterMakers.push(() => makeCharacter(
  35497. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  35498. {
  35499. front: {
  35500. height: math.unit(2, "feet"),
  35501. weight: math.unit(30, "lb"),
  35502. name: "Front",
  35503. image: {
  35504. source: "./media/characters/sandy/front.svg",
  35505. extra: 1439/1307,
  35506. bottom: 194/1633
  35507. }
  35508. },
  35509. },
  35510. [
  35511. {
  35512. name: "Normal",
  35513. height: math.unit(2, "feet"),
  35514. default: true
  35515. },
  35516. ]
  35517. ))
  35518. characterMakers.push(() => makeCharacter(
  35519. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  35520. {
  35521. front: {
  35522. height: math.unit(3, "feet"),
  35523. name: "Front",
  35524. image: {
  35525. source: "./media/characters/mellvi/front.svg",
  35526. extra: 1831/1630,
  35527. bottom: 58/1889
  35528. }
  35529. },
  35530. },
  35531. [
  35532. {
  35533. name: "Normal",
  35534. height: math.unit(3, "feet"),
  35535. default: true
  35536. },
  35537. ]
  35538. ))
  35539. characterMakers.push(() => makeCharacter(
  35540. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  35541. {
  35542. front: {
  35543. height: math.unit(5 + 11/12, "feet"),
  35544. weight: math.unit(200, "lb"),
  35545. name: "Front",
  35546. image: {
  35547. source: "./media/characters/shirou/front.svg",
  35548. extra: 2491/2383,
  35549. bottom: 189/2680
  35550. }
  35551. },
  35552. back: {
  35553. height: math.unit(5 + 11/12, "feet"),
  35554. weight: math.unit(200, "lb"),
  35555. name: "Back",
  35556. image: {
  35557. source: "./media/characters/shirou/back.svg",
  35558. extra: 2554/2450,
  35559. bottom: 76/2630
  35560. }
  35561. },
  35562. },
  35563. [
  35564. {
  35565. name: "Normal",
  35566. height: math.unit(5 + 11/12, "feet"),
  35567. default: true
  35568. },
  35569. ]
  35570. ))
  35571. characterMakers.push(() => makeCharacter(
  35572. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  35573. {
  35574. front: {
  35575. height: math.unit(6 + 3/12, "feet"),
  35576. weight: math.unit(177, "lb"),
  35577. name: "Front",
  35578. image: {
  35579. source: "./media/characters/noryu/front.svg",
  35580. extra: 973/885,
  35581. bottom: 10/983
  35582. }
  35583. },
  35584. },
  35585. [
  35586. {
  35587. name: "Normal",
  35588. height: math.unit(6 + 3/12, "feet"),
  35589. default: true
  35590. },
  35591. ]
  35592. ))
  35593. characterMakers.push(() => makeCharacter(
  35594. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  35595. {
  35596. front: {
  35597. height: math.unit(5 + 6/12, "feet"),
  35598. weight: math.unit(170, "lb"),
  35599. name: "Front",
  35600. image: {
  35601. source: "./media/characters/mevolas-rubenido/front.svg",
  35602. extra: 2109/1901,
  35603. bottom: 96/2205
  35604. }
  35605. },
  35606. },
  35607. [
  35608. {
  35609. name: "Normal",
  35610. height: math.unit(5 + 6/12, "feet"),
  35611. default: true
  35612. },
  35613. ]
  35614. ))
  35615. characterMakers.push(() => makeCharacter(
  35616. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  35617. {
  35618. front: {
  35619. height: math.unit(100, "feet"),
  35620. name: "Front",
  35621. image: {
  35622. source: "./media/characters/dee/front.svg",
  35623. extra: 2153/2036,
  35624. bottom: 59/2212
  35625. }
  35626. },
  35627. back: {
  35628. height: math.unit(100, "feet"),
  35629. name: "Back",
  35630. image: {
  35631. source: "./media/characters/dee/back.svg",
  35632. extra: 2183/2058,
  35633. bottom: 75/2258
  35634. }
  35635. },
  35636. foot: {
  35637. height: math.unit(19.43, "feet"),
  35638. name: "Foot",
  35639. image: {
  35640. source: "./media/characters/dee/foot.svg"
  35641. }
  35642. },
  35643. hoof: {
  35644. height: math.unit(20.6, "feet"),
  35645. name: "Hoof",
  35646. image: {
  35647. source: "./media/characters/dee/hoof.svg"
  35648. }
  35649. },
  35650. },
  35651. [
  35652. {
  35653. name: "Macro",
  35654. height: math.unit(100, "feet"),
  35655. default: true
  35656. },
  35657. ]
  35658. ))
  35659. characterMakers.push(() => makeCharacter(
  35660. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  35661. {
  35662. front: {
  35663. height: math.unit(5 + 6/12, "feet"),
  35664. name: "Front",
  35665. image: {
  35666. source: "./media/characters/teh/front.svg",
  35667. extra: 1002/847,
  35668. bottom: 62/1064
  35669. }
  35670. },
  35671. },
  35672. [
  35673. {
  35674. name: "Normal",
  35675. height: math.unit(5 + 6/12, "feet"),
  35676. default: true
  35677. },
  35678. ]
  35679. ))
  35680. characterMakers.push(() => makeCharacter(
  35681. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  35682. {
  35683. side: {
  35684. height: math.unit(6 + 1/12, "feet"),
  35685. weight: math.unit(204, "lb"),
  35686. name: "Side",
  35687. image: {
  35688. source: "./media/characters/quicksilver-ayukoti/side.svg",
  35689. extra: 974/775,
  35690. bottom: 169/1143
  35691. }
  35692. },
  35693. sitting: {
  35694. height: math.unit(6 + 2/12, "feet"),
  35695. weight: math.unit(204, "lb"),
  35696. name: "Sitting",
  35697. image: {
  35698. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  35699. extra: 1175/964,
  35700. bottom: 378/1553
  35701. }
  35702. },
  35703. },
  35704. [
  35705. {
  35706. name: "Normal",
  35707. height: math.unit(6 + 1/12, "feet"),
  35708. default: true
  35709. },
  35710. ]
  35711. ))
  35712. characterMakers.push(() => makeCharacter(
  35713. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  35714. {
  35715. front: {
  35716. height: math.unit(6, "inches"),
  35717. name: "Front",
  35718. image: {
  35719. source: "./media/characters/tululi/front.svg",
  35720. extra: 1997/1876,
  35721. bottom: 20/2017
  35722. }
  35723. },
  35724. },
  35725. [
  35726. {
  35727. name: "Normal",
  35728. height: math.unit(6, "inches"),
  35729. default: true
  35730. },
  35731. ]
  35732. ))
  35733. characterMakers.push(() => makeCharacter(
  35734. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  35735. {
  35736. front: {
  35737. height: math.unit(4 + 1/12, "feet"),
  35738. name: "Front",
  35739. image: {
  35740. source: "./media/characters/star/front.svg",
  35741. extra: 1493/1189,
  35742. bottom: 48/1541
  35743. }
  35744. },
  35745. },
  35746. [
  35747. {
  35748. name: "Normal",
  35749. height: math.unit(4 + 1/12, "feet"),
  35750. default: true
  35751. },
  35752. ]
  35753. ))
  35754. characterMakers.push(() => makeCharacter(
  35755. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  35756. {
  35757. front: {
  35758. height: math.unit(6 + 3/12, "feet"),
  35759. name: "Front",
  35760. image: {
  35761. source: "./media/characters/comet/front.svg",
  35762. extra: 1681/1462,
  35763. bottom: 26/1707
  35764. }
  35765. },
  35766. },
  35767. [
  35768. {
  35769. name: "Normal",
  35770. height: math.unit(6 + 3/12, "feet"),
  35771. default: true
  35772. },
  35773. ]
  35774. ))
  35775. characterMakers.push(() => makeCharacter(
  35776. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35777. {
  35778. front: {
  35779. height: math.unit(950, "feet"),
  35780. name: "Front",
  35781. image: {
  35782. source: "./media/characters/vortex/front.svg",
  35783. extra: 1497/1434,
  35784. bottom: 56/1553
  35785. }
  35786. },
  35787. maw: {
  35788. height: math.unit(285, "feet"),
  35789. name: "Maw",
  35790. image: {
  35791. source: "./media/characters/vortex/maw.svg"
  35792. }
  35793. },
  35794. },
  35795. [
  35796. {
  35797. name: "Macro",
  35798. height: math.unit(950, "feet"),
  35799. default: true
  35800. },
  35801. ]
  35802. ))
  35803. characterMakers.push(() => makeCharacter(
  35804. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  35805. {
  35806. front: {
  35807. height: math.unit(600, "feet"),
  35808. weight: math.unit(0.02, "grams"),
  35809. name: "Front",
  35810. image: {
  35811. source: "./media/characters/doodle/front.svg",
  35812. extra: 1578/1413,
  35813. bottom: 37/1615
  35814. }
  35815. },
  35816. },
  35817. [
  35818. {
  35819. name: "Macro",
  35820. height: math.unit(600, "feet"),
  35821. default: true
  35822. },
  35823. ]
  35824. ))
  35825. characterMakers.push(() => makeCharacter(
  35826. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35827. {
  35828. front: {
  35829. height: math.unit(6 + 6/12, "feet"),
  35830. name: "Front",
  35831. image: {
  35832. source: "./media/characters/jai/front.svg",
  35833. extra: 1645/1534,
  35834. bottom: 115/1760
  35835. }
  35836. },
  35837. },
  35838. [
  35839. {
  35840. name: "Normal",
  35841. height: math.unit(6 + 6/12, "feet"),
  35842. default: true
  35843. },
  35844. ]
  35845. ))
  35846. characterMakers.push(() => makeCharacter(
  35847. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35848. {
  35849. front: {
  35850. height: math.unit(6 + 8/12, "feet"),
  35851. name: "Front",
  35852. image: {
  35853. source: "./media/characters/pixel/front.svg",
  35854. extra: 1900/1735,
  35855. bottom: 63/1963
  35856. }
  35857. },
  35858. },
  35859. [
  35860. {
  35861. name: "Normal",
  35862. height: math.unit(6 + 8/12, "feet"),
  35863. default: true
  35864. },
  35865. ]
  35866. ))
  35867. characterMakers.push(() => makeCharacter(
  35868. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35869. {
  35870. back: {
  35871. height: math.unit(4 + 1/12, "feet"),
  35872. weight: math.unit(75, "lb"),
  35873. name: "Back",
  35874. image: {
  35875. source: "./media/characters/rhett/back.svg",
  35876. extra: 930/878,
  35877. bottom: 25/955
  35878. }
  35879. },
  35880. front: {
  35881. height: math.unit(4 + 1/12, "feet"),
  35882. weight: math.unit(75, "lb"),
  35883. name: "Front",
  35884. image: {
  35885. source: "./media/characters/rhett/front.svg",
  35886. extra: 1682/1586,
  35887. bottom: 92/1774
  35888. }
  35889. },
  35890. },
  35891. [
  35892. {
  35893. name: "Micro",
  35894. height: math.unit(8, "inches")
  35895. },
  35896. {
  35897. name: "Tiny",
  35898. height: math.unit(2, "feet")
  35899. },
  35900. {
  35901. name: "Normal",
  35902. height: math.unit(4 + 1/12, "feet"),
  35903. default: true
  35904. },
  35905. ]
  35906. ))
  35907. characterMakers.push(() => makeCharacter(
  35908. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35909. {
  35910. front: {
  35911. height: math.unit(3 + 3/12, "feet"),
  35912. name: "Front",
  35913. image: {
  35914. source: "./media/characters/penny/front.svg",
  35915. extra: 1406/1311,
  35916. bottom: 26/1432
  35917. }
  35918. },
  35919. },
  35920. [
  35921. {
  35922. name: "Normal",
  35923. height: math.unit(3 + 3/12, "feet"),
  35924. default: true
  35925. },
  35926. ]
  35927. ))
  35928. characterMakers.push(() => makeCharacter(
  35929. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35930. {
  35931. front: {
  35932. height: math.unit(4 + 11/12, "feet"),
  35933. name: "Front",
  35934. image: {
  35935. source: "./media/characters/monty/front.svg",
  35936. extra: 1479/1209,
  35937. bottom: 0/1479
  35938. }
  35939. },
  35940. },
  35941. [
  35942. {
  35943. name: "Normal",
  35944. height: math.unit(4 + 11/12, "feet"),
  35945. default: true
  35946. },
  35947. ]
  35948. ))
  35949. characterMakers.push(() => makeCharacter(
  35950. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35951. {
  35952. front: {
  35953. height: math.unit(8 + 4/12, "feet"),
  35954. name: "Front",
  35955. image: {
  35956. source: "./media/characters/sterling/front.svg",
  35957. extra: 1420/1236,
  35958. bottom: 27/1447
  35959. }
  35960. },
  35961. },
  35962. [
  35963. {
  35964. name: "Normal",
  35965. height: math.unit(8 + 4/12, "feet"),
  35966. default: true
  35967. },
  35968. ]
  35969. ))
  35970. characterMakers.push(() => makeCharacter(
  35971. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35972. {
  35973. front: {
  35974. height: math.unit(15, "feet"),
  35975. name: "Front",
  35976. image: {
  35977. source: "./media/characters/marble/front.svg",
  35978. extra: 973/937,
  35979. bottom: 32/1005
  35980. }
  35981. },
  35982. },
  35983. [
  35984. {
  35985. name: "Normal",
  35986. height: math.unit(15, "feet"),
  35987. default: true
  35988. },
  35989. ]
  35990. ))
  35991. characterMakers.push(() => makeCharacter(
  35992. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35993. {
  35994. front: {
  35995. height: math.unit(3, "inches"),
  35996. name: "Front",
  35997. image: {
  35998. source: "./media/characters/powder/front.svg",
  35999. extra: 1504/1334,
  36000. bottom: 518/2022
  36001. }
  36002. },
  36003. },
  36004. [
  36005. {
  36006. name: "Normal",
  36007. height: math.unit(3, "inches"),
  36008. default: true
  36009. },
  36010. ]
  36011. ))
  36012. characterMakers.push(() => makeCharacter(
  36013. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  36014. {
  36015. front: {
  36016. height: math.unit(4 + 5/12, "feet"),
  36017. name: "Front",
  36018. image: {
  36019. source: "./media/characters/joey-raccoon/front.svg",
  36020. extra: 1273/1197,
  36021. bottom: 0/1273
  36022. }
  36023. },
  36024. },
  36025. [
  36026. {
  36027. name: "Normal",
  36028. height: math.unit(4 + 5/12, "feet"),
  36029. default: true
  36030. },
  36031. ]
  36032. ))
  36033. characterMakers.push(() => makeCharacter(
  36034. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  36035. {
  36036. front: {
  36037. height: math.unit(8 + 4/12, "feet"),
  36038. name: "Front",
  36039. image: {
  36040. source: "./media/characters/vick/front.svg",
  36041. extra: 2187/2118,
  36042. bottom: 47/2234
  36043. }
  36044. },
  36045. },
  36046. [
  36047. {
  36048. name: "Normal",
  36049. height: math.unit(8 + 4/12, "feet"),
  36050. default: true
  36051. },
  36052. ]
  36053. ))
  36054. characterMakers.push(() => makeCharacter(
  36055. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  36056. {
  36057. front: {
  36058. height: math.unit(5 + 5/12, "feet"),
  36059. name: "Front",
  36060. image: {
  36061. source: "./media/characters/mitsy/front.svg",
  36062. extra: 1842/1695,
  36063. bottom: 0/1842
  36064. }
  36065. },
  36066. },
  36067. [
  36068. {
  36069. name: "Normal",
  36070. height: math.unit(5 + 5/12, "feet"),
  36071. default: true
  36072. },
  36073. ]
  36074. ))
  36075. characterMakers.push(() => makeCharacter(
  36076. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  36077. {
  36078. front: {
  36079. height: math.unit(6 + 3/12, "feet"),
  36080. name: "Front",
  36081. image: {
  36082. source: "./media/characters/silvy/front.svg",
  36083. extra: 1995/1836,
  36084. bottom: 225/2220
  36085. }
  36086. },
  36087. },
  36088. [
  36089. {
  36090. name: "Normal",
  36091. height: math.unit(6 + 3/12, "feet"),
  36092. default: true
  36093. },
  36094. ]
  36095. ))
  36096. characterMakers.push(() => makeCharacter(
  36097. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  36098. {
  36099. front: {
  36100. height: math.unit(3 + 8/12, "feet"),
  36101. name: "Front",
  36102. image: {
  36103. source: "./media/characters/rodney/front.svg",
  36104. extra: 1956/1747,
  36105. bottom: 31/1987
  36106. }
  36107. },
  36108. frontDressed: {
  36109. height: math.unit(2.9, "feet"),
  36110. name: "Front (Dressed)",
  36111. image: {
  36112. source: "./media/characters/rodney/front-dressed.svg",
  36113. extra: 1382/1241,
  36114. bottom: 385/1767
  36115. }
  36116. },
  36117. },
  36118. [
  36119. {
  36120. name: "Normal",
  36121. height: math.unit(3 + 8/12, "feet"),
  36122. default: true
  36123. },
  36124. ]
  36125. ))
  36126. characterMakers.push(() => makeCharacter(
  36127. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  36128. {
  36129. front: {
  36130. height: math.unit(5 + 9/12, "feet"),
  36131. weight: math.unit(194, "lbs"),
  36132. name: "Front",
  36133. image: {
  36134. source: "./media/characters/zakail-sudekai/front.svg",
  36135. extra: 2696/2533,
  36136. bottom: 248/2944
  36137. }
  36138. },
  36139. maw: {
  36140. height: math.unit(1.35, "feet"),
  36141. name: "Maw",
  36142. image: {
  36143. source: "./media/characters/zakail-sudekai/maw.svg"
  36144. }
  36145. },
  36146. },
  36147. [
  36148. {
  36149. name: "Normal",
  36150. height: math.unit(5 + 9/12, "feet"),
  36151. default: true
  36152. },
  36153. ]
  36154. ))
  36155. characterMakers.push(() => makeCharacter(
  36156. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  36157. {
  36158. front: {
  36159. height: math.unit(8 + 4/12, "feet"),
  36160. weight: math.unit(1200, "lb"),
  36161. name: "Front",
  36162. image: {
  36163. source: "./media/characters/eleanor/front.svg",
  36164. extra: 1226/1192,
  36165. bottom: 52/1278
  36166. }
  36167. },
  36168. back: {
  36169. height: math.unit(8 + 4/12, "feet"),
  36170. weight: math.unit(1200, "lb"),
  36171. name: "Back",
  36172. image: {
  36173. source: "./media/characters/eleanor/back.svg",
  36174. extra: 1242/1184,
  36175. bottom: 60/1302
  36176. }
  36177. },
  36178. head: {
  36179. height: math.unit(2.62, "feet"),
  36180. name: "Head",
  36181. image: {
  36182. source: "./media/characters/eleanor/head.svg"
  36183. }
  36184. },
  36185. },
  36186. [
  36187. {
  36188. name: "Normal",
  36189. height: math.unit(8 + 4/12, "feet"),
  36190. default: true
  36191. },
  36192. ]
  36193. ))
  36194. characterMakers.push(() => makeCharacter(
  36195. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  36196. {
  36197. front: {
  36198. height: math.unit(8 + 4/12, "feet"),
  36199. weight: math.unit(750, "lb"),
  36200. name: "Front",
  36201. image: {
  36202. source: "./media/characters/tanya/front.svg",
  36203. extra: 1749/1615,
  36204. bottom: 33/1782
  36205. }
  36206. },
  36207. },
  36208. [
  36209. {
  36210. name: "Normal",
  36211. height: math.unit(8 + 4/12, "feet"),
  36212. default: true
  36213. },
  36214. ]
  36215. ))
  36216. characterMakers.push(() => makeCharacter(
  36217. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  36218. {
  36219. front: {
  36220. height: math.unit(5, "feet"),
  36221. weight: math.unit(225, "lb"),
  36222. name: "Front",
  36223. image: {
  36224. source: "./media/characters/cindy/front.svg",
  36225. extra: 1320/1250,
  36226. bottom: 42/1362
  36227. }
  36228. },
  36229. frontDressed: {
  36230. height: math.unit(5, "feet"),
  36231. weight: math.unit(225, "lb"),
  36232. name: "Front (Dressed)",
  36233. image: {
  36234. source: "./media/characters/cindy/front-dressed.svg",
  36235. extra: 1320/1250,
  36236. bottom: 42/1362
  36237. }
  36238. },
  36239. back: {
  36240. height: math.unit(5, "feet"),
  36241. weight: math.unit(225, "lb"),
  36242. name: "Back",
  36243. image: {
  36244. source: "./media/characters/cindy/back.svg",
  36245. extra: 1384/1346,
  36246. bottom: 14/1398
  36247. }
  36248. },
  36249. },
  36250. [
  36251. {
  36252. name: "Normal",
  36253. height: math.unit(5, "feet"),
  36254. default: true
  36255. },
  36256. ]
  36257. ))
  36258. characterMakers.push(() => makeCharacter(
  36259. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  36260. {
  36261. front: {
  36262. height: math.unit(6 + 9/12, "feet"),
  36263. weight: math.unit(440, "lb"),
  36264. name: "Front",
  36265. image: {
  36266. source: "./media/characters/wilbur-owen/front.svg",
  36267. extra: 1575/1448,
  36268. bottom: 72/1647
  36269. }
  36270. },
  36271. back: {
  36272. height: math.unit(6 + 9/12, "feet"),
  36273. weight: math.unit(440, "lb"),
  36274. name: "Back",
  36275. image: {
  36276. source: "./media/characters/wilbur-owen/back.svg",
  36277. extra: 1578/1445,
  36278. bottom: 36/1614
  36279. }
  36280. },
  36281. },
  36282. [
  36283. {
  36284. name: "Normal",
  36285. height: math.unit(6 + 9/12, "feet"),
  36286. default: true
  36287. },
  36288. ]
  36289. ))
  36290. characterMakers.push(() => makeCharacter(
  36291. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  36292. {
  36293. front: {
  36294. height: math.unit(6 + 5/12, "feet"),
  36295. weight: math.unit(650, "lb"),
  36296. name: "Front",
  36297. image: {
  36298. source: "./media/characters/keegan/front.svg",
  36299. extra: 2387/2198,
  36300. bottom: 33/2420
  36301. }
  36302. },
  36303. side: {
  36304. height: math.unit(6 + 5/12, "feet"),
  36305. weight: math.unit(650, "lb"),
  36306. name: "Side",
  36307. image: {
  36308. source: "./media/characters/keegan/side.svg",
  36309. extra: 2390/2202,
  36310. bottom: 47/2437
  36311. }
  36312. },
  36313. back: {
  36314. height: math.unit(6 + 5/12, "feet"),
  36315. weight: math.unit(650, "lb"),
  36316. name: "Back",
  36317. image: {
  36318. source: "./media/characters/keegan/back.svg",
  36319. extra: 2418/2268,
  36320. bottom: 15/2433
  36321. }
  36322. },
  36323. frontSfw: {
  36324. height: math.unit(6 + 5/12, "feet"),
  36325. weight: math.unit(650, "lb"),
  36326. name: "Front (SFW)",
  36327. image: {
  36328. source: "./media/characters/keegan/front-sfw.svg",
  36329. extra: 2387/2198,
  36330. bottom: 33/2420
  36331. }
  36332. },
  36333. beans: {
  36334. height: math.unit(1.85, "feet"),
  36335. name: "Beans",
  36336. image: {
  36337. source: "./media/characters/keegan/beans.svg"
  36338. }
  36339. },
  36340. },
  36341. [
  36342. {
  36343. name: "Normal",
  36344. height: math.unit(6 + 5/12, "feet"),
  36345. default: true
  36346. },
  36347. ]
  36348. ))
  36349. characterMakers.push(() => makeCharacter(
  36350. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  36351. {
  36352. front: {
  36353. height: math.unit(9, "feet"),
  36354. name: "Front",
  36355. image: {
  36356. source: "./media/characters/colton/front.svg",
  36357. extra: 1589/1326,
  36358. bottom: 139/1728
  36359. }
  36360. },
  36361. },
  36362. [
  36363. {
  36364. name: "Normal",
  36365. height: math.unit(9, "feet"),
  36366. default: true
  36367. },
  36368. ]
  36369. ))
  36370. characterMakers.push(() => makeCharacter(
  36371. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  36372. {
  36373. front: {
  36374. height: math.unit(2 + 9/12, "feet"),
  36375. name: "Front",
  36376. image: {
  36377. source: "./media/characters/bora/front.svg",
  36378. extra: 1265/1250,
  36379. bottom: 24/1289
  36380. }
  36381. },
  36382. },
  36383. [
  36384. {
  36385. name: "Normal",
  36386. height: math.unit(2 + 9/12, "feet"),
  36387. default: true
  36388. },
  36389. ]
  36390. ))
  36391. characterMakers.push(() => makeCharacter(
  36392. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  36393. {
  36394. front: {
  36395. height: math.unit(8, "feet"),
  36396. name: "Front",
  36397. image: {
  36398. source: "./media/characters/myu-myu/front.svg",
  36399. extra: 1949/1857,
  36400. bottom: 90/2039
  36401. }
  36402. },
  36403. },
  36404. [
  36405. {
  36406. name: "Normal",
  36407. height: math.unit(8, "feet"),
  36408. default: true
  36409. },
  36410. {
  36411. name: "Big",
  36412. height: math.unit(15, "feet")
  36413. },
  36414. {
  36415. name: "BIG",
  36416. height: math.unit(25, "feet")
  36417. },
  36418. ]
  36419. ))
  36420. characterMakers.push(() => makeCharacter(
  36421. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  36422. {
  36423. side: {
  36424. height: math.unit(7 + 5/12, "feet"),
  36425. weight: math.unit(2800, "lb"),
  36426. name: "Side",
  36427. image: {
  36428. source: "./media/characters/haloren/side.svg",
  36429. extra: 1793/409,
  36430. bottom: 59/1852
  36431. }
  36432. },
  36433. frontPaw: {
  36434. height: math.unit(2.36, "feet"),
  36435. name: "Front paw",
  36436. image: {
  36437. source: "./media/characters/haloren/front-paw.svg"
  36438. }
  36439. },
  36440. hindPaw: {
  36441. height: math.unit(3.18, "feet"),
  36442. name: "Hind paw",
  36443. image: {
  36444. source: "./media/characters/haloren/hind-paw.svg"
  36445. }
  36446. },
  36447. maw: {
  36448. height: math.unit(5.05, "feet"),
  36449. name: "Maw",
  36450. image: {
  36451. source: "./media/characters/haloren/maw.svg"
  36452. }
  36453. },
  36454. dick: {
  36455. height: math.unit(2.90, "feet"),
  36456. name: "Dick",
  36457. image: {
  36458. source: "./media/characters/haloren/dick.svg"
  36459. }
  36460. },
  36461. },
  36462. [
  36463. {
  36464. name: "Normal",
  36465. height: math.unit(7 + 5/12, "feet"),
  36466. default: true
  36467. },
  36468. {
  36469. name: "Enhanced",
  36470. height: math.unit(14 + 3/12, "feet")
  36471. },
  36472. ]
  36473. ))
  36474. characterMakers.push(() => makeCharacter(
  36475. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  36476. {
  36477. front: {
  36478. height: math.unit(171, "cm"),
  36479. name: "Front",
  36480. image: {
  36481. source: "./media/characters/kimmy/front.svg",
  36482. extra: 1491/1435,
  36483. bottom: 53/1544
  36484. }
  36485. },
  36486. },
  36487. [
  36488. {
  36489. name: "Small",
  36490. height: math.unit(9, "cm")
  36491. },
  36492. {
  36493. name: "Normal",
  36494. height: math.unit(171, "cm"),
  36495. default: true
  36496. },
  36497. ]
  36498. ))
  36499. characterMakers.push(() => makeCharacter(
  36500. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  36501. {
  36502. front: {
  36503. height: math.unit(8, "feet"),
  36504. weight: math.unit(300, "lb"),
  36505. name: "Front",
  36506. image: {
  36507. source: "./media/characters/galeboomer/front.svg",
  36508. extra: 4651/4415,
  36509. bottom: 162/4813
  36510. }
  36511. },
  36512. back: {
  36513. height: math.unit(8, "feet"),
  36514. weight: math.unit(300, "lb"),
  36515. name: "Back",
  36516. image: {
  36517. source: "./media/characters/galeboomer/back.svg",
  36518. extra: 4544/4314,
  36519. bottom: 16/4560
  36520. }
  36521. },
  36522. frontAlt: {
  36523. height: math.unit(8, "feet"),
  36524. weight: math.unit(300, "lb"),
  36525. name: "Front (Alt)",
  36526. image: {
  36527. source: "./media/characters/galeboomer/front-alt.svg",
  36528. extra: 4458/4228,
  36529. bottom: 68/4526
  36530. }
  36531. },
  36532. maw: {
  36533. height: math.unit(1.2, "feet"),
  36534. name: "Maw",
  36535. image: {
  36536. source: "./media/characters/galeboomer/maw.svg"
  36537. }
  36538. },
  36539. },
  36540. [
  36541. {
  36542. name: "Normal",
  36543. height: math.unit(8, "feet"),
  36544. default: true
  36545. },
  36546. ]
  36547. ))
  36548. characterMakers.push(() => makeCharacter(
  36549. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  36550. {
  36551. front: {
  36552. height: math.unit(5 + 9/12, "feet"),
  36553. weight: math.unit(120, "lb"),
  36554. name: "Front",
  36555. image: {
  36556. source: "./media/characters/chyr/front.svg",
  36557. extra: 1323/1254,
  36558. bottom: 63/1386
  36559. }
  36560. },
  36561. back: {
  36562. height: math.unit(5 + 9/12, "feet"),
  36563. weight: math.unit(120, "lb"),
  36564. name: "Back",
  36565. image: {
  36566. source: "./media/characters/chyr/back.svg",
  36567. extra: 1323/1252,
  36568. bottom: 48/1371
  36569. }
  36570. },
  36571. },
  36572. [
  36573. {
  36574. name: "Normal",
  36575. height: math.unit(5 + 9/12, "feet"),
  36576. default: true
  36577. },
  36578. ]
  36579. ))
  36580. characterMakers.push(() => makeCharacter(
  36581. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  36582. {
  36583. front: {
  36584. height: math.unit(7, "feet"),
  36585. weight: math.unit(310, "lb"),
  36586. name: "Front",
  36587. image: {
  36588. source: "./media/characters/solarus/front.svg",
  36589. extra: 2415/2021,
  36590. bottom: 103/2518
  36591. }
  36592. },
  36593. back: {
  36594. height: math.unit(7, "feet"),
  36595. weight: math.unit(310, "lb"),
  36596. name: "Back",
  36597. image: {
  36598. source: "./media/characters/solarus/back.svg",
  36599. extra: 2463/2089,
  36600. bottom: 79/2542
  36601. }
  36602. },
  36603. },
  36604. [
  36605. {
  36606. name: "Normal",
  36607. height: math.unit(7, "feet"),
  36608. default: true
  36609. },
  36610. ]
  36611. ))
  36612. characterMakers.push(() => makeCharacter(
  36613. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  36614. {
  36615. front: {
  36616. height: math.unit(16, "feet"),
  36617. name: "Front",
  36618. image: {
  36619. source: "./media/characters/mutsuju-koizaemon/front.svg",
  36620. extra: 1844/1780,
  36621. bottom: 58/1902
  36622. }
  36623. },
  36624. winterCoat: {
  36625. height: math.unit(16, "feet"),
  36626. name: "Winter Coat",
  36627. image: {
  36628. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  36629. extra: 1807/1775,
  36630. bottom: 69/1876
  36631. }
  36632. },
  36633. },
  36634. [
  36635. {
  36636. name: "Normal",
  36637. height: math.unit(16, "feet"),
  36638. default: true
  36639. },
  36640. {
  36641. name: "Chicago Size",
  36642. height: math.unit(560, "feet")
  36643. },
  36644. ]
  36645. ))
  36646. characterMakers.push(() => makeCharacter(
  36647. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  36648. {
  36649. front: {
  36650. height: math.unit(11 + 6/12, "feet"),
  36651. weight: math.unit(1366, "lb"),
  36652. name: "Front",
  36653. image: {
  36654. source: "./media/characters/lexor/front.svg",
  36655. extra: 1560/1481,
  36656. bottom: 211/1771
  36657. }
  36658. },
  36659. back: {
  36660. height: math.unit(11 + 6/12, "feet"),
  36661. weight: math.unit(1366, "lb"),
  36662. name: "Back",
  36663. image: {
  36664. source: "./media/characters/lexor/back.svg",
  36665. extra: 1614/1533,
  36666. bottom: 76/1690
  36667. }
  36668. },
  36669. maw: {
  36670. height: math.unit(3, "feet"),
  36671. name: "Maw",
  36672. image: {
  36673. source: "./media/characters/lexor/maw.svg"
  36674. }
  36675. },
  36676. dick: {
  36677. height: math.unit(2.59, "feet"),
  36678. name: "Dick",
  36679. image: {
  36680. source: "./media/characters/lexor/dick.svg"
  36681. }
  36682. },
  36683. },
  36684. [
  36685. {
  36686. name: "Normal",
  36687. height: math.unit(11 + 6/12, "feet"),
  36688. default: true
  36689. },
  36690. ]
  36691. ))
  36692. characterMakers.push(() => makeCharacter(
  36693. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  36694. {
  36695. front: {
  36696. height: math.unit(5 + 8/12, "feet"),
  36697. name: "Front",
  36698. image: {
  36699. source: "./media/characters/magnum/front.svg",
  36700. extra: 942/855,
  36701. bottom: 26/968
  36702. }
  36703. },
  36704. },
  36705. [
  36706. {
  36707. name: "Normal",
  36708. height: math.unit(5 + 8/12, "feet"),
  36709. default: true
  36710. },
  36711. ]
  36712. ))
  36713. characterMakers.push(() => makeCharacter(
  36714. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  36715. {
  36716. front: {
  36717. height: math.unit(18 + 4/12, "feet"),
  36718. weight: math.unit(1500, "kg"),
  36719. name: "Front",
  36720. image: {
  36721. source: "./media/characters/solas-sharpsman/front.svg",
  36722. extra: 1698/1589,
  36723. bottom: 0/1698
  36724. }
  36725. },
  36726. },
  36727. [
  36728. {
  36729. name: "Normal",
  36730. height: math.unit(18 + 4/12, "feet"),
  36731. default: true
  36732. },
  36733. ]
  36734. ))
  36735. characterMakers.push(() => makeCharacter(
  36736. { name: "October", species: ["tiger"], tags: ["anthro"] },
  36737. {
  36738. front: {
  36739. height: math.unit(5 + 5/12, "feet"),
  36740. weight: math.unit(180, "lb"),
  36741. name: "Front",
  36742. image: {
  36743. source: "./media/characters/october/front.svg",
  36744. extra: 1800/1650,
  36745. bottom: 0/1800
  36746. }
  36747. },
  36748. frontNsfw: {
  36749. height: math.unit(5 + 5/12, "feet"),
  36750. weight: math.unit(180, "lb"),
  36751. name: "Front (NSFW)",
  36752. image: {
  36753. source: "./media/characters/october/front-nsfw.svg",
  36754. extra: 1392/1307,
  36755. bottom: 42/1434
  36756. }
  36757. },
  36758. },
  36759. [
  36760. {
  36761. name: "Normal",
  36762. height: math.unit(5 + 5/12, "feet"),
  36763. default: true
  36764. },
  36765. ]
  36766. ))
  36767. characterMakers.push(() => makeCharacter(
  36768. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  36769. {
  36770. front: {
  36771. height: math.unit(8 + 6/12, "feet"),
  36772. name: "Front",
  36773. image: {
  36774. source: "./media/characters/essynkardi/front.svg",
  36775. extra: 1914/1846,
  36776. bottom: 22/1936
  36777. }
  36778. },
  36779. },
  36780. [
  36781. {
  36782. name: "Normal",
  36783. height: math.unit(8 + 6/12, "feet"),
  36784. default: true
  36785. },
  36786. ]
  36787. ))
  36788. characterMakers.push(() => makeCharacter(
  36789. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36790. {
  36791. front: {
  36792. height: math.unit(6 + 6/12, "feet"),
  36793. weight: math.unit(7, "lb"),
  36794. name: "Front",
  36795. image: {
  36796. source: "./media/characters/icky/front.svg",
  36797. extra: 813/782,
  36798. bottom: 66/879
  36799. }
  36800. },
  36801. back: {
  36802. height: math.unit(6 + 6/12, "feet"),
  36803. weight: math.unit(7, "lb"),
  36804. name: "Back",
  36805. image: {
  36806. source: "./media/characters/icky/back.svg",
  36807. extra: 754/735,
  36808. bottom: 56/810
  36809. }
  36810. },
  36811. },
  36812. [
  36813. {
  36814. name: "Normal",
  36815. height: math.unit(6 + 6/12, "feet"),
  36816. default: true
  36817. },
  36818. ]
  36819. ))
  36820. characterMakers.push(() => makeCharacter(
  36821. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36822. {
  36823. front: {
  36824. height: math.unit(15, "feet"),
  36825. name: "Front",
  36826. image: {
  36827. source: "./media/characters/rojas/front.svg",
  36828. extra: 1462/1408,
  36829. bottom: 95/1557
  36830. }
  36831. },
  36832. back: {
  36833. height: math.unit(15, "feet"),
  36834. name: "Back",
  36835. image: {
  36836. source: "./media/characters/rojas/back.svg",
  36837. extra: 1023/954,
  36838. bottom: 28/1051
  36839. }
  36840. },
  36841. },
  36842. [
  36843. {
  36844. name: "Normal",
  36845. height: math.unit(15, "feet"),
  36846. default: true
  36847. },
  36848. ]
  36849. ))
  36850. characterMakers.push(() => makeCharacter(
  36851. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36852. {
  36853. frontHuman: {
  36854. height: math.unit(5 + 7/12, "feet"),
  36855. name: "Front (Human)",
  36856. image: {
  36857. source: "./media/characters/alek-dryagan/front-human.svg",
  36858. extra: 1687/1667,
  36859. bottom: 69/1756
  36860. }
  36861. },
  36862. backHuman: {
  36863. height: math.unit(5 + 7/12, "feet"),
  36864. name: "Back (Human)",
  36865. image: {
  36866. source: "./media/characters/alek-dryagan/back-human.svg",
  36867. extra: 1670/1649,
  36868. bottom: 65/1735
  36869. }
  36870. },
  36871. frontDemi: {
  36872. height: math.unit(65, "feet"),
  36873. name: "Front (Demi)",
  36874. image: {
  36875. source: "./media/characters/alek-dryagan/front-demi.svg",
  36876. extra: 1669/1642,
  36877. bottom: 49/1718
  36878. }
  36879. },
  36880. backDemi: {
  36881. height: math.unit(65, "feet"),
  36882. name: "Back (Demi)",
  36883. image: {
  36884. source: "./media/characters/alek-dryagan/back-demi.svg",
  36885. extra: 1658/1637,
  36886. bottom: 40/1698
  36887. }
  36888. },
  36889. mawHuman: {
  36890. height: math.unit(0.3, "feet"),
  36891. name: "Maw (Human)",
  36892. image: {
  36893. source: "./media/characters/alek-dryagan/maw-human.svg"
  36894. }
  36895. },
  36896. mawDemi: {
  36897. height: math.unit(3.8, "feet"),
  36898. name: "Maw (Demi)",
  36899. image: {
  36900. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36901. }
  36902. },
  36903. },
  36904. [
  36905. {
  36906. name: "Normal",
  36907. height: math.unit(5 + 7/12, "feet"),
  36908. default: true
  36909. },
  36910. ]
  36911. ))
  36912. characterMakers.push(() => makeCharacter(
  36913. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36914. {
  36915. frontHuman: {
  36916. height: math.unit(5 + 2/12, "feet"),
  36917. name: "Front (Human)",
  36918. image: {
  36919. source: "./media/characters/gen/front-human.svg",
  36920. extra: 1627/1538,
  36921. bottom: 71/1698
  36922. }
  36923. },
  36924. backHuman: {
  36925. height: math.unit(5 + 2/12, "feet"),
  36926. name: "Back (Human)",
  36927. image: {
  36928. source: "./media/characters/gen/back-human.svg",
  36929. extra: 1638/1548,
  36930. bottom: 69/1707
  36931. }
  36932. },
  36933. frontDemi: {
  36934. height: math.unit(5 + 2/12, "feet"),
  36935. name: "Front (Demi)",
  36936. image: {
  36937. source: "./media/characters/gen/front-demi.svg",
  36938. extra: 1627/1538,
  36939. bottom: 71/1698
  36940. }
  36941. },
  36942. backDemi: {
  36943. height: math.unit(5 + 2/12, "feet"),
  36944. name: "Back (Demi)",
  36945. image: {
  36946. source: "./media/characters/gen/back-demi.svg",
  36947. extra: 1638/1548,
  36948. bottom: 69/1707
  36949. }
  36950. },
  36951. },
  36952. [
  36953. {
  36954. name: "Normal",
  36955. height: math.unit(5 + 2/12, "feet"),
  36956. default: true
  36957. },
  36958. ]
  36959. ))
  36960. characterMakers.push(() => makeCharacter(
  36961. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36962. {
  36963. frontImp: {
  36964. height: math.unit(1 + 11/12, "feet"),
  36965. name: "Front (Imp)",
  36966. image: {
  36967. source: "./media/characters/max-kobold/front-imp.svg",
  36968. extra: 1238/1134,
  36969. bottom: 81/1319
  36970. }
  36971. },
  36972. backImp: {
  36973. height: math.unit(1 + 11/12, "feet"),
  36974. name: "Back (Imp)",
  36975. image: {
  36976. source: "./media/characters/max-kobold/back-imp.svg",
  36977. extra: 1334/1175,
  36978. bottom: 34/1368
  36979. }
  36980. },
  36981. frontDemi: {
  36982. height: math.unit(5 + 9/12, "feet"),
  36983. name: "Front (Demi)",
  36984. image: {
  36985. source: "./media/characters/max-kobold/front-demi.svg",
  36986. extra: 1715/1685,
  36987. bottom: 54/1769
  36988. }
  36989. },
  36990. backDemi: {
  36991. height: math.unit(5 + 9/12, "feet"),
  36992. name: "Back (Demi)",
  36993. image: {
  36994. source: "./media/characters/max-kobold/back-demi.svg",
  36995. extra: 1752/1729,
  36996. bottom: 41/1793
  36997. }
  36998. },
  36999. handImp: {
  37000. height: math.unit(0.45, "feet"),
  37001. name: "Hand (Imp)",
  37002. image: {
  37003. source: "./media/characters/max-kobold/hand.svg"
  37004. }
  37005. },
  37006. pawImp: {
  37007. height: math.unit(0.46, "feet"),
  37008. name: "Paw (Imp)",
  37009. image: {
  37010. source: "./media/characters/max-kobold/paw.svg"
  37011. }
  37012. },
  37013. handDemi: {
  37014. height: math.unit(0.80, "feet"),
  37015. name: "Hand (Demi)",
  37016. image: {
  37017. source: "./media/characters/max-kobold/hand.svg"
  37018. }
  37019. },
  37020. pawDemi: {
  37021. height: math.unit(1.1, "feet"),
  37022. name: "Paw (Demi)",
  37023. image: {
  37024. source: "./media/characters/max-kobold/paw.svg"
  37025. }
  37026. },
  37027. headImp: {
  37028. height: math.unit(1.33, "feet"),
  37029. name: "Head (Imp)",
  37030. image: {
  37031. source: "./media/characters/max-kobold/head-imp.svg"
  37032. }
  37033. },
  37034. mawImp: {
  37035. height: math.unit(0.75, "feet"),
  37036. name: "Maw (Imp)",
  37037. image: {
  37038. source: "./media/characters/max-kobold/maw-imp.svg"
  37039. }
  37040. },
  37041. mawDemi: {
  37042. height: math.unit(0.42, "feet"),
  37043. name: "Maw (Demi)",
  37044. image: {
  37045. source: "./media/characters/max-kobold/maw-demi.svg"
  37046. }
  37047. },
  37048. },
  37049. [
  37050. {
  37051. name: "Normal",
  37052. height: math.unit(1 + 11/12, "feet"),
  37053. default: true
  37054. },
  37055. ]
  37056. ))
  37057. characterMakers.push(() => makeCharacter(
  37058. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  37059. {
  37060. front: {
  37061. height: math.unit(7 + 5/12, "feet"),
  37062. name: "Front",
  37063. image: {
  37064. source: "./media/characters/carbon/front.svg",
  37065. extra: 1754/1689,
  37066. bottom: 65/1819
  37067. }
  37068. },
  37069. back: {
  37070. height: math.unit(7 + 5/12, "feet"),
  37071. name: "Back",
  37072. image: {
  37073. source: "./media/characters/carbon/back.svg",
  37074. extra: 1762/1695,
  37075. bottom: 24/1786
  37076. }
  37077. },
  37078. frontGigantamax: {
  37079. height: math.unit(150, "feet"),
  37080. name: "Front (Gigantamax)",
  37081. image: {
  37082. source: "./media/characters/carbon/front-gigantamax.svg",
  37083. extra: 1826/1669,
  37084. bottom: 59/1885
  37085. }
  37086. },
  37087. backGigantamax: {
  37088. height: math.unit(150, "feet"),
  37089. name: "Back (Gigantamax)",
  37090. image: {
  37091. source: "./media/characters/carbon/back-gigantamax.svg",
  37092. extra: 1796/1653,
  37093. bottom: 53/1849
  37094. }
  37095. },
  37096. maw: {
  37097. height: math.unit(0.48, "feet"),
  37098. name: "Maw",
  37099. image: {
  37100. source: "./media/characters/carbon/maw.svg"
  37101. }
  37102. },
  37103. mawGigantamax: {
  37104. height: math.unit(7.5, "feet"),
  37105. name: "Maw (Gigantamax)",
  37106. image: {
  37107. source: "./media/characters/carbon/maw-gigantamax.svg"
  37108. }
  37109. },
  37110. },
  37111. [
  37112. {
  37113. name: "Normal",
  37114. height: math.unit(7 + 5/12, "feet"),
  37115. default: true
  37116. },
  37117. ]
  37118. ))
  37119. characterMakers.push(() => makeCharacter(
  37120. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  37121. {
  37122. front: {
  37123. height: math.unit(6, "feet"),
  37124. name: "Front",
  37125. image: {
  37126. source: "./media/characters/maverick/front.svg",
  37127. extra: 1672/1661,
  37128. bottom: 85/1757
  37129. }
  37130. },
  37131. back: {
  37132. height: math.unit(6, "feet"),
  37133. name: "Back",
  37134. image: {
  37135. source: "./media/characters/maverick/back.svg",
  37136. extra: 1642/1631,
  37137. bottom: 38/1680
  37138. }
  37139. },
  37140. },
  37141. [
  37142. {
  37143. name: "Normal",
  37144. height: math.unit(6, "feet"),
  37145. default: true
  37146. },
  37147. ]
  37148. ))
  37149. characterMakers.push(() => makeCharacter(
  37150. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  37151. {
  37152. front: {
  37153. height: math.unit(15, "feet"),
  37154. weight: math.unit(615, "lb"),
  37155. name: "Front",
  37156. image: {
  37157. source: "./media/characters/grockle/front.svg",
  37158. extra: 1535/1427,
  37159. bottom: 56/1591
  37160. }
  37161. },
  37162. },
  37163. [
  37164. {
  37165. name: "Normal",
  37166. height: math.unit(15, "feet"),
  37167. default: true
  37168. },
  37169. {
  37170. name: "Large",
  37171. height: math.unit(150, "feet")
  37172. },
  37173. {
  37174. name: "Macro",
  37175. height: math.unit(1876, "feet")
  37176. },
  37177. {
  37178. name: "Mega Macro",
  37179. height: math.unit(121940, "feet")
  37180. },
  37181. {
  37182. name: "Giga Macro",
  37183. height: math.unit(750, "km")
  37184. },
  37185. {
  37186. name: "Tera Macro",
  37187. height: math.unit(750000, "km")
  37188. },
  37189. {
  37190. name: "Galactic",
  37191. height: math.unit(1.4e5, "km")
  37192. },
  37193. {
  37194. name: "Godlike",
  37195. height: math.unit(9.8e280, "galaxies")
  37196. },
  37197. ]
  37198. ))
  37199. characterMakers.push(() => makeCharacter(
  37200. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  37201. {
  37202. front: {
  37203. height: math.unit(11, "meters"),
  37204. weight: math.unit(20, "tonnes"),
  37205. name: "Front",
  37206. image: {
  37207. source: "./media/characters/alistair/front.svg",
  37208. extra: 1265/1009,
  37209. bottom: 93/1358
  37210. }
  37211. },
  37212. },
  37213. [
  37214. {
  37215. name: "Normal",
  37216. height: math.unit(11, "meters"),
  37217. default: true
  37218. },
  37219. ]
  37220. ))
  37221. characterMakers.push(() => makeCharacter(
  37222. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  37223. {
  37224. front: {
  37225. height: math.unit(5 + 8/12, "feet"),
  37226. name: "Front",
  37227. image: {
  37228. source: "./media/characters/haruka/front.svg",
  37229. extra: 2012/1952,
  37230. bottom: 0/2012
  37231. }
  37232. },
  37233. },
  37234. [
  37235. {
  37236. name: "Normal",
  37237. height: math.unit(5 + 8/12, "feet"),
  37238. default: true
  37239. },
  37240. ]
  37241. ))
  37242. characterMakers.push(() => makeCharacter(
  37243. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  37244. {
  37245. back: {
  37246. height: math.unit(9, "feet"),
  37247. name: "Back",
  37248. image: {
  37249. source: "./media/characters/vivian-sylveon/back.svg",
  37250. extra: 1853/1714,
  37251. bottom: 0/1853
  37252. }
  37253. },
  37254. },
  37255. [
  37256. {
  37257. name: "Normal",
  37258. height: math.unit(9, "feet"),
  37259. default: true
  37260. },
  37261. {
  37262. name: "Macro",
  37263. height: math.unit(500, "feet")
  37264. },
  37265. {
  37266. name: "Megamacro",
  37267. height: math.unit(600, "miles")
  37268. },
  37269. {
  37270. name: "Gigamacro",
  37271. height: math.unit(30000, "miles")
  37272. },
  37273. ]
  37274. ))
  37275. characterMakers.push(() => makeCharacter(
  37276. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  37277. {
  37278. anthro: {
  37279. height: math.unit(5 + 10/12, "feet"),
  37280. weight: math.unit(100, "lb"),
  37281. name: "Anthro",
  37282. image: {
  37283. source: "./media/characters/daiki/anthro.svg",
  37284. extra: 1115/1027,
  37285. bottom: 69/1184
  37286. }
  37287. },
  37288. feral: {
  37289. height: math.unit(200, "feet"),
  37290. name: "Feral",
  37291. image: {
  37292. source: "./media/characters/daiki/feral.svg",
  37293. extra: 1256/313,
  37294. bottom: 39/1295
  37295. }
  37296. },
  37297. feralHead: {
  37298. height: math.unit(171, "feet"),
  37299. name: "Feral Head",
  37300. image: {
  37301. source: "./media/characters/daiki/feral-head.svg"
  37302. }
  37303. },
  37304. manaDragon: {
  37305. height: math.unit(170, "meters"),
  37306. name: "Mana-dragon",
  37307. image: {
  37308. source: "./media/characters/daiki/mana-dragon.svg",
  37309. extra: 763/420,
  37310. bottom: 97/860
  37311. }
  37312. },
  37313. },
  37314. [
  37315. {
  37316. name: "Normal",
  37317. height: math.unit(5 + 10/12, "feet"),
  37318. default: true
  37319. },
  37320. ]
  37321. ))
  37322. characterMakers.push(() => makeCharacter(
  37323. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  37324. {
  37325. fullyEquippedFront: {
  37326. height: math.unit(3 + 1/12, "feet"),
  37327. weight: math.unit(24, "lb"),
  37328. name: "Fully Equipped (Front)",
  37329. image: {
  37330. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  37331. extra: 687/605,
  37332. bottom: 18/705
  37333. }
  37334. },
  37335. fullyEquippedBack: {
  37336. height: math.unit(3 + 1/12, "feet"),
  37337. weight: math.unit(24, "lb"),
  37338. name: "Fully Equipped (Back)",
  37339. image: {
  37340. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  37341. extra: 689/590,
  37342. bottom: 18/707
  37343. }
  37344. },
  37345. dailyWear: {
  37346. height: math.unit(3 + 1/12, "feet"),
  37347. weight: math.unit(24, "lb"),
  37348. name: "Daily Wear",
  37349. image: {
  37350. source: "./media/characters/tea-spot/daily-wear.svg",
  37351. extra: 701/620,
  37352. bottom: 21/722
  37353. }
  37354. },
  37355. maidWork: {
  37356. height: math.unit(3 + 1/12, "feet"),
  37357. weight: math.unit(24, "lb"),
  37358. name: "Maid Work",
  37359. image: {
  37360. source: "./media/characters/tea-spot/maid-work.svg",
  37361. extra: 693/609,
  37362. bottom: 15/708
  37363. }
  37364. },
  37365. },
  37366. [
  37367. {
  37368. name: "Normal",
  37369. height: math.unit(3 + 1/12, "feet"),
  37370. default: true
  37371. },
  37372. ]
  37373. ))
  37374. characterMakers.push(() => makeCharacter(
  37375. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  37376. {
  37377. front: {
  37378. height: math.unit(175, "cm"),
  37379. weight: math.unit(75, "kg"),
  37380. name: "Front",
  37381. image: {
  37382. source: "./media/characters/chee/front.svg",
  37383. extra: 1796/1740,
  37384. bottom: 40/1836
  37385. }
  37386. },
  37387. },
  37388. [
  37389. {
  37390. name: "Micro-Micro",
  37391. height: math.unit(1, "nm")
  37392. },
  37393. {
  37394. name: "Micro-erst",
  37395. height: math.unit(1, "micrometer")
  37396. },
  37397. {
  37398. name: "Micro-er",
  37399. height: math.unit(1, "cm")
  37400. },
  37401. {
  37402. name: "Normal",
  37403. height: math.unit(175, "cm"),
  37404. default: true
  37405. },
  37406. {
  37407. name: "Macro",
  37408. height: math.unit(100, "m")
  37409. },
  37410. {
  37411. name: "Macro-er",
  37412. height: math.unit(1, "km")
  37413. },
  37414. {
  37415. name: "Macro-erst",
  37416. height: math.unit(10, "km")
  37417. },
  37418. {
  37419. name: "Macro-Macro",
  37420. height: math.unit(100, "km")
  37421. },
  37422. ]
  37423. ))
  37424. characterMakers.push(() => makeCharacter(
  37425. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  37426. {
  37427. front: {
  37428. height: math.unit(11 + 9/12, "feet"),
  37429. weight: math.unit(935, "lb"),
  37430. name: "Front",
  37431. image: {
  37432. source: "./media/characters/kingsley/front.svg",
  37433. extra: 1803/1674,
  37434. bottom: 127/1930
  37435. }
  37436. },
  37437. frontNude: {
  37438. height: math.unit(11 + 9/12, "feet"),
  37439. weight: math.unit(935, "lb"),
  37440. name: "Front (Nude)",
  37441. image: {
  37442. source: "./media/characters/kingsley/front-nude.svg",
  37443. extra: 1803/1674,
  37444. bottom: 127/1930
  37445. }
  37446. },
  37447. },
  37448. [
  37449. {
  37450. name: "Normal",
  37451. height: math.unit(11 + 9/12, "feet"),
  37452. default: true
  37453. },
  37454. ]
  37455. ))
  37456. characterMakers.push(() => makeCharacter(
  37457. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  37458. {
  37459. side: {
  37460. height: math.unit(9, "feet"),
  37461. name: "Side",
  37462. image: {
  37463. source: "./media/characters/rymel/side.svg",
  37464. extra: 792/469,
  37465. bottom: 121/913
  37466. }
  37467. },
  37468. maw: {
  37469. height: math.unit(2.4, "meters"),
  37470. name: "Maw",
  37471. image: {
  37472. source: "./media/characters/rymel/maw.svg"
  37473. }
  37474. },
  37475. },
  37476. [
  37477. {
  37478. name: "House Drake",
  37479. height: math.unit(2, "feet")
  37480. },
  37481. {
  37482. name: "Reduced",
  37483. height: math.unit(4.5, "feet")
  37484. },
  37485. {
  37486. name: "Normal",
  37487. height: math.unit(9, "feet"),
  37488. default: true
  37489. },
  37490. ]
  37491. ))
  37492. characterMakers.push(() => makeCharacter(
  37493. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  37494. {
  37495. front: {
  37496. height: math.unit(1.74, "meters"),
  37497. weight: math.unit(55, "kg"),
  37498. name: "Front",
  37499. image: {
  37500. source: "./media/characters/rubus/front.svg",
  37501. extra: 1894/1742,
  37502. bottom: 44/1938
  37503. }
  37504. },
  37505. },
  37506. [
  37507. {
  37508. name: "Normal",
  37509. height: math.unit(1.74, "meters"),
  37510. default: true
  37511. },
  37512. ]
  37513. ))
  37514. characterMakers.push(() => makeCharacter(
  37515. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  37516. {
  37517. front: {
  37518. height: math.unit(5 + 2/12, "feet"),
  37519. weight: math.unit(112, "lb"),
  37520. name: "Front",
  37521. image: {
  37522. source: "./media/characters/cassie-kingston/front.svg",
  37523. extra: 1438/1390,
  37524. bottom: 47/1485
  37525. }
  37526. },
  37527. },
  37528. [
  37529. {
  37530. name: "Normal",
  37531. height: math.unit(5 + 2/12, "feet"),
  37532. default: true
  37533. },
  37534. {
  37535. name: "Macro",
  37536. height: math.unit(128, "feet")
  37537. },
  37538. {
  37539. name: "Megamacro",
  37540. height: math.unit(2.56, "miles")
  37541. },
  37542. ]
  37543. ))
  37544. characterMakers.push(() => makeCharacter(
  37545. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  37546. {
  37547. front: {
  37548. height: math.unit(7, "feet"),
  37549. name: "Front",
  37550. image: {
  37551. source: "./media/characters/fox/front.svg",
  37552. extra: 1798/1703,
  37553. bottom: 55/1853
  37554. }
  37555. },
  37556. back: {
  37557. height: math.unit(7, "feet"),
  37558. name: "Back",
  37559. image: {
  37560. source: "./media/characters/fox/back.svg",
  37561. extra: 1748/1649,
  37562. bottom: 32/1780
  37563. }
  37564. },
  37565. head: {
  37566. height: math.unit(1.95, "feet"),
  37567. name: "Head",
  37568. image: {
  37569. source: "./media/characters/fox/head.svg"
  37570. }
  37571. },
  37572. dick: {
  37573. height: math.unit(1.33, "feet"),
  37574. name: "Dick",
  37575. image: {
  37576. source: "./media/characters/fox/dick.svg"
  37577. }
  37578. },
  37579. foot: {
  37580. height: math.unit(1, "feet"),
  37581. name: "Foot",
  37582. image: {
  37583. source: "./media/characters/fox/foot.svg"
  37584. }
  37585. },
  37586. paw: {
  37587. height: math.unit(0.92, "feet"),
  37588. name: "Paw",
  37589. image: {
  37590. source: "./media/characters/fox/paw.svg"
  37591. }
  37592. },
  37593. },
  37594. [
  37595. {
  37596. name: "Small",
  37597. height: math.unit(3, "inches")
  37598. },
  37599. {
  37600. name: "\"Realistic\"",
  37601. height: math.unit(7, "feet")
  37602. },
  37603. {
  37604. name: "Normal",
  37605. height: math.unit(150, "feet"),
  37606. default: true
  37607. },
  37608. {
  37609. name: "BIG",
  37610. height: math.unit(1200, "feet")
  37611. },
  37612. {
  37613. name: "👀",
  37614. height: math.unit(5, "miles")
  37615. },
  37616. {
  37617. name: "👀👀👀",
  37618. height: math.unit(64, "miles")
  37619. },
  37620. ]
  37621. ))
  37622. characterMakers.push(() => makeCharacter(
  37623. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  37624. {
  37625. front: {
  37626. height: math.unit(625, "feet"),
  37627. name: "Front",
  37628. image: {
  37629. source: "./media/characters/asonja-rossa/front.svg",
  37630. extra: 1833/1686,
  37631. bottom: 24/1857
  37632. }
  37633. },
  37634. back: {
  37635. height: math.unit(625, "feet"),
  37636. name: "Back",
  37637. image: {
  37638. source: "./media/characters/asonja-rossa/back.svg",
  37639. extra: 1852/1753,
  37640. bottom: 26/1878
  37641. }
  37642. },
  37643. },
  37644. [
  37645. {
  37646. name: "Macro",
  37647. height: math.unit(625, "feet"),
  37648. default: true
  37649. },
  37650. ]
  37651. ))
  37652. characterMakers.push(() => makeCharacter(
  37653. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  37654. {
  37655. side: {
  37656. height: math.unit(8, "feet"),
  37657. name: "Side",
  37658. image: {
  37659. source: "./media/characters/rezukii/side.svg",
  37660. extra: 979/542,
  37661. bottom: 87/1066
  37662. }
  37663. },
  37664. sitting: {
  37665. height: math.unit(14.6, "feet"),
  37666. name: "Sitting",
  37667. image: {
  37668. source: "./media/characters/rezukii/sitting.svg",
  37669. extra: 1023/813,
  37670. bottom: 45/1068
  37671. }
  37672. },
  37673. },
  37674. [
  37675. {
  37676. name: "Tiny",
  37677. height: math.unit(2, "feet")
  37678. },
  37679. {
  37680. name: "Smol",
  37681. height: math.unit(4, "feet")
  37682. },
  37683. {
  37684. name: "Normal",
  37685. height: math.unit(8, "feet"),
  37686. default: true
  37687. },
  37688. {
  37689. name: "Big",
  37690. height: math.unit(12, "feet")
  37691. },
  37692. {
  37693. name: "Macro",
  37694. height: math.unit(30, "feet")
  37695. },
  37696. ]
  37697. ))
  37698. characterMakers.push(() => makeCharacter(
  37699. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  37700. {
  37701. front: {
  37702. height: math.unit(14, "feet"),
  37703. weight: math.unit(9.5, "tonnes"),
  37704. name: "Front",
  37705. image: {
  37706. source: "./media/characters/dawnheart/front.svg",
  37707. extra: 2792/2675,
  37708. bottom: 64/2856
  37709. }
  37710. },
  37711. },
  37712. [
  37713. {
  37714. name: "Normal",
  37715. height: math.unit(14, "feet"),
  37716. default: true
  37717. },
  37718. ]
  37719. ))
  37720. characterMakers.push(() => makeCharacter(
  37721. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  37722. {
  37723. front: {
  37724. height: math.unit(1.7, "m"),
  37725. name: "Front",
  37726. image: {
  37727. source: "./media/characters/gladi/front.svg",
  37728. extra: 1460/1362,
  37729. bottom: 19/1479
  37730. }
  37731. },
  37732. back: {
  37733. height: math.unit(1.7, "m"),
  37734. name: "Back",
  37735. image: {
  37736. source: "./media/characters/gladi/back.svg",
  37737. extra: 1459/1357,
  37738. bottom: 12/1471
  37739. }
  37740. },
  37741. feral: {
  37742. height: math.unit(2.05, "m"),
  37743. name: "Feral",
  37744. image: {
  37745. source: "./media/characters/gladi/feral.svg",
  37746. extra: 821/557,
  37747. bottom: 91/912
  37748. }
  37749. },
  37750. },
  37751. [
  37752. {
  37753. name: "Shortest",
  37754. height: math.unit(70, "cm")
  37755. },
  37756. {
  37757. name: "Normal",
  37758. height: math.unit(1.7, "m")
  37759. },
  37760. {
  37761. name: "Macro",
  37762. height: math.unit(10, "m"),
  37763. default: true
  37764. },
  37765. {
  37766. name: "Tallest",
  37767. height: math.unit(200, "m")
  37768. },
  37769. ]
  37770. ))
  37771. characterMakers.push(() => makeCharacter(
  37772. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  37773. {
  37774. front: {
  37775. height: math.unit(5 + 7/12, "feet"),
  37776. weight: math.unit(2, "tons"),
  37777. name: "Front",
  37778. image: {
  37779. source: "./media/characters/erdno/front.svg",
  37780. extra: 1234/1129,
  37781. bottom: 35/1269
  37782. }
  37783. },
  37784. angled: {
  37785. height: math.unit(5 + 7/12, "feet"),
  37786. weight: math.unit(2, "tons"),
  37787. name: "Angled",
  37788. image: {
  37789. source: "./media/characters/erdno/angled.svg",
  37790. extra: 1185/1139,
  37791. bottom: 36/1221
  37792. }
  37793. },
  37794. side: {
  37795. height: math.unit(5 + 7/12, "feet"),
  37796. weight: math.unit(2, "tons"),
  37797. name: "Side",
  37798. image: {
  37799. source: "./media/characters/erdno/side.svg",
  37800. extra: 1191/1144,
  37801. bottom: 40/1231
  37802. }
  37803. },
  37804. back: {
  37805. height: math.unit(5 + 7/12, "feet"),
  37806. weight: math.unit(2, "tons"),
  37807. name: "Back",
  37808. image: {
  37809. source: "./media/characters/erdno/back.svg",
  37810. extra: 1202/1146,
  37811. bottom: 17/1219
  37812. }
  37813. },
  37814. frontNsfw: {
  37815. height: math.unit(5 + 7/12, "feet"),
  37816. weight: math.unit(2, "tons"),
  37817. name: "Front (NSFW)",
  37818. image: {
  37819. source: "./media/characters/erdno/front-nsfw.svg",
  37820. extra: 1234/1129,
  37821. bottom: 35/1269
  37822. }
  37823. },
  37824. angledNsfw: {
  37825. height: math.unit(5 + 7/12, "feet"),
  37826. weight: math.unit(2, "tons"),
  37827. name: "Angled (NSFW)",
  37828. image: {
  37829. source: "./media/characters/erdno/angled-nsfw.svg",
  37830. extra: 1185/1139,
  37831. bottom: 36/1221
  37832. }
  37833. },
  37834. sideNsfw: {
  37835. height: math.unit(5 + 7/12, "feet"),
  37836. weight: math.unit(2, "tons"),
  37837. name: "Side (NSFW)",
  37838. image: {
  37839. source: "./media/characters/erdno/side-nsfw.svg",
  37840. extra: 1191/1144,
  37841. bottom: 40/1231
  37842. }
  37843. },
  37844. backNsfw: {
  37845. height: math.unit(5 + 7/12, "feet"),
  37846. weight: math.unit(2, "tons"),
  37847. name: "Back (NSFW)",
  37848. image: {
  37849. source: "./media/characters/erdno/back-nsfw.svg",
  37850. extra: 1202/1146,
  37851. bottom: 17/1219
  37852. }
  37853. },
  37854. frontHyper: {
  37855. height: math.unit(5 + 7/12, "feet"),
  37856. weight: math.unit(2, "tons"),
  37857. name: "Front (Hyper)",
  37858. image: {
  37859. source: "./media/characters/erdno/front-hyper.svg",
  37860. extra: 1298/1136,
  37861. bottom: 35/1333
  37862. }
  37863. },
  37864. },
  37865. [
  37866. {
  37867. name: "Normal",
  37868. height: math.unit(5 + 7/12, "feet"),
  37869. default: true
  37870. },
  37871. {
  37872. name: "Big",
  37873. height: math.unit(5.7, "meters")
  37874. },
  37875. {
  37876. name: "Macro",
  37877. height: math.unit(5.7, "kilometers")
  37878. },
  37879. {
  37880. name: "Megamacro",
  37881. height: math.unit(5.7, "earths")
  37882. },
  37883. ]
  37884. ))
  37885. characterMakers.push(() => makeCharacter(
  37886. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37887. {
  37888. front: {
  37889. height: math.unit(5 + 10/12, "feet"),
  37890. weight: math.unit(150, "lb"),
  37891. name: "Front",
  37892. image: {
  37893. source: "./media/characters/jamie/front.svg",
  37894. extra: 1908/1768,
  37895. bottom: 19/1927
  37896. }
  37897. },
  37898. },
  37899. [
  37900. {
  37901. name: "Minimum",
  37902. height: math.unit(2, "cm")
  37903. },
  37904. {
  37905. name: "Micro",
  37906. height: math.unit(3, "inches")
  37907. },
  37908. {
  37909. name: "Normal",
  37910. height: math.unit(5 + 10/12, "feet"),
  37911. default: true
  37912. },
  37913. {
  37914. name: "Macro",
  37915. height: math.unit(150, "feet")
  37916. },
  37917. {
  37918. name: "Megamacro",
  37919. height: math.unit(10000, "m")
  37920. },
  37921. ]
  37922. ))
  37923. characterMakers.push(() => makeCharacter(
  37924. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  37925. {
  37926. front: {
  37927. height: math.unit(2, "meters"),
  37928. weight: math.unit(100, "kg"),
  37929. name: "Front",
  37930. image: {
  37931. source: "./media/characters/shiron/front.svg",
  37932. extra: 2103/1985,
  37933. bottom: 98/2201
  37934. }
  37935. },
  37936. back: {
  37937. height: math.unit(2, "meters"),
  37938. weight: math.unit(100, "kg"),
  37939. name: "Back",
  37940. image: {
  37941. source: "./media/characters/shiron/back.svg",
  37942. extra: 2110/2015,
  37943. bottom: 89/2199
  37944. }
  37945. },
  37946. hand: {
  37947. height: math.unit(0.96, "feet"),
  37948. name: "Hand",
  37949. image: {
  37950. source: "./media/characters/shiron/hand.svg"
  37951. }
  37952. },
  37953. foot: {
  37954. height: math.unit(1.464, "feet"),
  37955. name: "Foot",
  37956. image: {
  37957. source: "./media/characters/shiron/foot.svg"
  37958. }
  37959. },
  37960. },
  37961. [
  37962. {
  37963. name: "Normal",
  37964. height: math.unit(2, "meters")
  37965. },
  37966. {
  37967. name: "Macro",
  37968. height: math.unit(500, "meters"),
  37969. default: true
  37970. },
  37971. {
  37972. name: "Megamacro",
  37973. height: math.unit(20, "km")
  37974. },
  37975. ]
  37976. ))
  37977. characterMakers.push(() => makeCharacter(
  37978. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  37979. {
  37980. front: {
  37981. height: math.unit(6, "feet"),
  37982. name: "Front",
  37983. image: {
  37984. source: "./media/characters/sam/front.svg",
  37985. extra: 849/826,
  37986. bottom: 19/868
  37987. }
  37988. },
  37989. },
  37990. [
  37991. {
  37992. name: "Normal",
  37993. height: math.unit(6, "feet"),
  37994. default: true
  37995. },
  37996. ]
  37997. ))
  37998. characterMakers.push(() => makeCharacter(
  37999. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  38000. {
  38001. front: {
  38002. height: math.unit(8 + 4/12, "feet"),
  38003. weight: math.unit(122, "kg"),
  38004. name: "Front",
  38005. image: {
  38006. source: "./media/characters/namori-kurogawa/front.svg",
  38007. extra: 1894/1576,
  38008. bottom: 34/1928
  38009. }
  38010. },
  38011. },
  38012. [
  38013. {
  38014. name: "Normal",
  38015. height: math.unit(8 + 4/12, "feet"),
  38016. default: true
  38017. },
  38018. ]
  38019. ))
  38020. characterMakers.push(() => makeCharacter(
  38021. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  38022. {
  38023. front: {
  38024. height: math.unit(9, "feet"),
  38025. weight: math.unit(621, "lb"),
  38026. name: "Front",
  38027. image: {
  38028. source: "./media/characters/unmru/front.svg",
  38029. extra: 1853/1747,
  38030. bottom: 73/1926
  38031. }
  38032. },
  38033. side: {
  38034. height: math.unit(9, "feet"),
  38035. weight: math.unit(621, "lb"),
  38036. name: "Side",
  38037. image: {
  38038. source: "./media/characters/unmru/side.svg",
  38039. extra: 1781/1671,
  38040. bottom: 127/1908
  38041. }
  38042. },
  38043. back: {
  38044. height: math.unit(9, "feet"),
  38045. weight: math.unit(621, "lb"),
  38046. name: "Back",
  38047. image: {
  38048. source: "./media/characters/unmru/back.svg",
  38049. extra: 1894/1765,
  38050. bottom: 75/1969
  38051. }
  38052. },
  38053. dick: {
  38054. height: math.unit(3, "feet"),
  38055. weight: math.unit(35, "lb"),
  38056. name: "Dick",
  38057. image: {
  38058. source: "./media/characters/unmru/dick.svg"
  38059. }
  38060. },
  38061. },
  38062. [
  38063. {
  38064. name: "Normal",
  38065. height: math.unit(9, "feet")
  38066. },
  38067. {
  38068. name: "Natural",
  38069. height: math.unit(27, "feet"),
  38070. default: true
  38071. },
  38072. {
  38073. name: "Giant",
  38074. height: math.unit(90, "feet")
  38075. },
  38076. {
  38077. name: "Kaiju",
  38078. height: math.unit(270, "feet")
  38079. },
  38080. {
  38081. name: "Macro",
  38082. height: math.unit(900, "feet")
  38083. },
  38084. {
  38085. name: "Macro+",
  38086. height: math.unit(2700, "feet")
  38087. },
  38088. {
  38089. name: "Megamacro",
  38090. height: math.unit(9000, "feet")
  38091. },
  38092. {
  38093. name: "City-Crushing",
  38094. height: math.unit(27000, "feet")
  38095. },
  38096. {
  38097. name: "Mountain-Mashing",
  38098. height: math.unit(90000, "feet")
  38099. },
  38100. {
  38101. name: "Earth-Eclipsing",
  38102. height: math.unit(2.7e8, "feet")
  38103. },
  38104. {
  38105. name: "Sol-Swallowing",
  38106. height: math.unit(9e10, "feet")
  38107. },
  38108. {
  38109. name: "Majoris-Munching",
  38110. height: math.unit(2.7e13, "feet")
  38111. },
  38112. ]
  38113. ))
  38114. characterMakers.push(() => makeCharacter(
  38115. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  38116. {
  38117. front: {
  38118. height: math.unit(1, "inch"),
  38119. name: "Front",
  38120. image: {
  38121. source: "./media/characters/squeaks-mouse/front.svg",
  38122. extra: 352/308,
  38123. bottom: 25/377
  38124. }
  38125. },
  38126. },
  38127. [
  38128. {
  38129. name: "Micro",
  38130. height: math.unit(1, "inch"),
  38131. default: true
  38132. },
  38133. ]
  38134. ))
  38135. characterMakers.push(() => makeCharacter(
  38136. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  38137. {
  38138. side: {
  38139. height: math.unit(35, "feet"),
  38140. name: "Side",
  38141. image: {
  38142. source: "./media/characters/sayko/side.svg",
  38143. extra: 1697/1021,
  38144. bottom: 82/1779
  38145. }
  38146. },
  38147. head: {
  38148. height: math.unit(16, "feet"),
  38149. name: "Head",
  38150. image: {
  38151. source: "./media/characters/sayko/head.svg"
  38152. }
  38153. },
  38154. forepaw: {
  38155. height: math.unit(7.85, "feet"),
  38156. name: "Forepaw",
  38157. image: {
  38158. source: "./media/characters/sayko/forepaw.svg"
  38159. }
  38160. },
  38161. hindpaw: {
  38162. height: math.unit(8.8, "feet"),
  38163. name: "Hindpaw",
  38164. image: {
  38165. source: "./media/characters/sayko/hindpaw.svg"
  38166. }
  38167. },
  38168. },
  38169. [
  38170. {
  38171. name: "Normal",
  38172. height: math.unit(35, "feet"),
  38173. default: true
  38174. },
  38175. {
  38176. name: "Colossus",
  38177. height: math.unit(100, "meters")
  38178. },
  38179. {
  38180. name: "\"Small\" Deity",
  38181. height: math.unit(1, "km")
  38182. },
  38183. {
  38184. name: "\"Large\" Deity",
  38185. height: math.unit(15, "km")
  38186. },
  38187. ]
  38188. ))
  38189. characterMakers.push(() => makeCharacter(
  38190. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  38191. {
  38192. front: {
  38193. height: math.unit(6, "feet"),
  38194. weight: math.unit(250, "lb"),
  38195. name: "Front",
  38196. image: {
  38197. source: "./media/characters/mukiro/front.svg",
  38198. extra: 1368/1310,
  38199. bottom: 34/1402
  38200. }
  38201. },
  38202. },
  38203. [
  38204. {
  38205. name: "Normal",
  38206. height: math.unit(6, "feet"),
  38207. default: true
  38208. },
  38209. ]
  38210. ))
  38211. characterMakers.push(() => makeCharacter(
  38212. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  38213. {
  38214. front: {
  38215. height: math.unit(12 + 4/12, "feet"),
  38216. name: "Front",
  38217. image: {
  38218. source: "./media/characters/zeph-the-tiger-god/front.svg",
  38219. extra: 1346/1311,
  38220. bottom: 65/1411
  38221. }
  38222. },
  38223. },
  38224. [
  38225. {
  38226. name: "Base",
  38227. height: math.unit(12 + 4/12, "feet"),
  38228. default: true
  38229. },
  38230. {
  38231. name: "Macro",
  38232. height: math.unit(150, "feet")
  38233. },
  38234. {
  38235. name: "Mega",
  38236. height: math.unit(2, "miles")
  38237. },
  38238. {
  38239. name: "Demi God",
  38240. height: math.unit(4, "AU")
  38241. },
  38242. {
  38243. name: "God Size",
  38244. height: math.unit(1, "universe")
  38245. },
  38246. ]
  38247. ))
  38248. characterMakers.push(() => makeCharacter(
  38249. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  38250. {
  38251. front: {
  38252. height: math.unit(3 + 3/12, "feet"),
  38253. weight: math.unit(88, "lb"),
  38254. name: "Front",
  38255. image: {
  38256. source: "./media/characters/trey/front.svg",
  38257. extra: 1815/1509,
  38258. bottom: 60/1875
  38259. }
  38260. },
  38261. },
  38262. [
  38263. {
  38264. name: "Normal",
  38265. height: math.unit(3 + 3/12, "feet"),
  38266. default: true
  38267. },
  38268. ]
  38269. ))
  38270. characterMakers.push(() => makeCharacter(
  38271. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  38272. {
  38273. front: {
  38274. height: math.unit(4, "meters"),
  38275. name: "Front",
  38276. image: {
  38277. source: "./media/characters/adelonda/front.svg",
  38278. extra: 1077/982,
  38279. bottom: 39/1116
  38280. }
  38281. },
  38282. back: {
  38283. height: math.unit(4, "meters"),
  38284. name: "Back",
  38285. image: {
  38286. source: "./media/characters/adelonda/back.svg",
  38287. extra: 1105/1003,
  38288. bottom: 25/1130
  38289. }
  38290. },
  38291. feral: {
  38292. height: math.unit(40/1.5, "meters"),
  38293. name: "Feral",
  38294. image: {
  38295. source: "./media/characters/adelonda/feral.svg",
  38296. extra: 597/271,
  38297. bottom: 387/984
  38298. }
  38299. },
  38300. },
  38301. [
  38302. {
  38303. name: "Normal",
  38304. height: math.unit(4, "meters"),
  38305. default: true
  38306. },
  38307. ]
  38308. ))
  38309. characterMakers.push(() => makeCharacter(
  38310. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  38311. {
  38312. front: {
  38313. height: math.unit(8 + 4/12, "feet"),
  38314. weight: math.unit(670, "lb"),
  38315. name: "Front",
  38316. image: {
  38317. source: "./media/characters/acadiel/front.svg",
  38318. extra: 1901/1595,
  38319. bottom: 142/2043
  38320. }
  38321. },
  38322. },
  38323. [
  38324. {
  38325. name: "Normal",
  38326. height: math.unit(8 + 4/12, "feet"),
  38327. default: true
  38328. },
  38329. {
  38330. name: "Macro",
  38331. height: math.unit(200, "feet")
  38332. },
  38333. ]
  38334. ))
  38335. characterMakers.push(() => makeCharacter(
  38336. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  38337. {
  38338. front: {
  38339. height: math.unit(6 + 2/12, "feet"),
  38340. weight: math.unit(185, "lb"),
  38341. name: "Front",
  38342. image: {
  38343. source: "./media/characters/kayne-ein/front.svg",
  38344. extra: 1780/1560,
  38345. bottom: 81/1861
  38346. }
  38347. },
  38348. },
  38349. [
  38350. {
  38351. name: "Normal",
  38352. height: math.unit(6 + 2/12, "feet"),
  38353. default: true
  38354. },
  38355. {
  38356. name: "Transformation Stage",
  38357. height: math.unit(15, "feet")
  38358. },
  38359. {
  38360. name: "Macro",
  38361. height: math.unit(150, "feet")
  38362. },
  38363. {
  38364. name: "Earth's Shadow",
  38365. height: math.unit(6200, "miles")
  38366. },
  38367. {
  38368. name: "Universal Demon",
  38369. height: math.unit(28e9, "parsecs")
  38370. },
  38371. {
  38372. name: "Multiverse God",
  38373. height: math.unit(3, "multiverses")
  38374. },
  38375. ]
  38376. ))
  38377. characterMakers.push(() => makeCharacter(
  38378. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  38379. {
  38380. front: {
  38381. height: math.unit(5 + 5/12, "feet"),
  38382. name: "Front",
  38383. image: {
  38384. source: "./media/characters/fawn/front.svg",
  38385. extra: 1873/1731,
  38386. bottom: 95/1968
  38387. }
  38388. },
  38389. back: {
  38390. height: math.unit(5 + 5/12, "feet"),
  38391. name: "Back",
  38392. image: {
  38393. source: "./media/characters/fawn/back.svg",
  38394. extra: 1813/1700,
  38395. bottom: 14/1827
  38396. }
  38397. },
  38398. hoof: {
  38399. height: math.unit(1.45, "feet"),
  38400. name: "Hoof",
  38401. image: {
  38402. source: "./media/characters/fawn/hoof.svg"
  38403. }
  38404. },
  38405. },
  38406. [
  38407. {
  38408. name: "Normal",
  38409. height: math.unit(5 + 5/12, "feet"),
  38410. default: true
  38411. },
  38412. ]
  38413. ))
  38414. characterMakers.push(() => makeCharacter(
  38415. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  38416. {
  38417. front: {
  38418. height: math.unit(2 + 5/12, "feet"),
  38419. name: "Front",
  38420. image: {
  38421. source: "./media/characters/orion/front.svg",
  38422. extra: 1366/1304,
  38423. bottom: 43/1409
  38424. }
  38425. },
  38426. paw: {
  38427. height: math.unit(0.52, "feet"),
  38428. name: "Paw",
  38429. image: {
  38430. source: "./media/characters/orion/paw.svg"
  38431. }
  38432. },
  38433. },
  38434. [
  38435. {
  38436. name: "Normal",
  38437. height: math.unit(2 + 5/12, "feet"),
  38438. default: true
  38439. },
  38440. ]
  38441. ))
  38442. characterMakers.push(() => makeCharacter(
  38443. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  38444. {
  38445. front: {
  38446. height: math.unit(5 + 10/12, "feet"),
  38447. name: "Front",
  38448. image: {
  38449. source: "./media/characters/vera/front.svg",
  38450. extra: 1680/1575,
  38451. bottom: 49/1729
  38452. }
  38453. },
  38454. back: {
  38455. height: math.unit(5 + 10/12, "feet"),
  38456. name: "Back",
  38457. image: {
  38458. source: "./media/characters/vera/back.svg",
  38459. extra: 1700/1588,
  38460. bottom: 18/1718
  38461. }
  38462. },
  38463. arcanine: {
  38464. height: math.unit(6 + 8/12, "feet"),
  38465. name: "Arcanine",
  38466. image: {
  38467. source: "./media/characters/vera/arcanine.svg",
  38468. extra: 1590/1511,
  38469. bottom: 71/1661
  38470. }
  38471. },
  38472. maw: {
  38473. height: math.unit(0.82, "feet"),
  38474. name: "Maw",
  38475. image: {
  38476. source: "./media/characters/vera/maw.svg"
  38477. }
  38478. },
  38479. mawArcanine: {
  38480. height: math.unit(0.97, "feet"),
  38481. name: "Maw (Arcanine)",
  38482. image: {
  38483. source: "./media/characters/vera/maw-arcanine.svg"
  38484. }
  38485. },
  38486. paw: {
  38487. height: math.unit(0.75, "feet"),
  38488. name: "Paw",
  38489. image: {
  38490. source: "./media/characters/vera/paw.svg"
  38491. }
  38492. },
  38493. pawprint: {
  38494. height: math.unit(0.52, "feet"),
  38495. name: "Pawprint",
  38496. image: {
  38497. source: "./media/characters/vera/pawprint.svg"
  38498. }
  38499. },
  38500. },
  38501. [
  38502. {
  38503. name: "Normal",
  38504. height: math.unit(5 + 10/12, "feet"),
  38505. default: true
  38506. },
  38507. {
  38508. name: "Macro",
  38509. height: math.unit(75, "feet")
  38510. },
  38511. ]
  38512. ))
  38513. characterMakers.push(() => makeCharacter(
  38514. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  38515. {
  38516. front: {
  38517. height: math.unit(4, "feet"),
  38518. weight: math.unit(40, "lb"),
  38519. name: "Front",
  38520. image: {
  38521. source: "./media/characters/orvan-rabbit/front.svg",
  38522. extra: 1896/1642,
  38523. bottom: 29/1925
  38524. }
  38525. },
  38526. },
  38527. [
  38528. {
  38529. name: "Normal",
  38530. height: math.unit(4, "feet"),
  38531. default: true
  38532. },
  38533. ]
  38534. ))
  38535. characterMakers.push(() => makeCharacter(
  38536. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  38537. {
  38538. front: {
  38539. height: math.unit(6, "feet"),
  38540. weight: math.unit(168, "lb"),
  38541. name: "Front",
  38542. image: {
  38543. source: "./media/characters/lisa/front.svg",
  38544. extra: 2065/1867,
  38545. bottom: 46/2111
  38546. }
  38547. },
  38548. back: {
  38549. height: math.unit(6, "feet"),
  38550. weight: math.unit(168, "lb"),
  38551. name: "Back",
  38552. image: {
  38553. source: "./media/characters/lisa/back.svg",
  38554. extra: 1982/1838,
  38555. bottom: 29/2011
  38556. }
  38557. },
  38558. maw: {
  38559. height: math.unit(0.81, "feet"),
  38560. name: "Maw",
  38561. image: {
  38562. source: "./media/characters/lisa/maw.svg"
  38563. }
  38564. },
  38565. paw: {
  38566. height: math.unit(0.9, "feet"),
  38567. name: "Paw",
  38568. image: {
  38569. source: "./media/characters/lisa/paw.svg"
  38570. }
  38571. },
  38572. caribousune: {
  38573. height: math.unit(7 + 2/12, "feet"),
  38574. weight: math.unit(268, "lb"),
  38575. name: "Caribousune",
  38576. image: {
  38577. source: "./media/characters/lisa/caribousune.svg",
  38578. extra: 1843/1633,
  38579. bottom: 29/1872
  38580. }
  38581. },
  38582. frontCaribousune: {
  38583. height: math.unit(7 + 2/12, "feet"),
  38584. weight: math.unit(268, "lb"),
  38585. name: "Front (Caribousune)",
  38586. image: {
  38587. source: "./media/characters/lisa/front-caribousune.svg",
  38588. extra: 1818/1638,
  38589. bottom: 52/1870
  38590. }
  38591. },
  38592. sideCaribousune: {
  38593. height: math.unit(7 + 2/12, "feet"),
  38594. weight: math.unit(268, "lb"),
  38595. name: "Side (Caribousune)",
  38596. image: {
  38597. source: "./media/characters/lisa/side-caribousune.svg",
  38598. extra: 1851/1635,
  38599. bottom: 16/1867
  38600. }
  38601. },
  38602. backCaribousune: {
  38603. height: math.unit(7 + 2/12, "feet"),
  38604. weight: math.unit(268, "lb"),
  38605. name: "Back (Caribousune)",
  38606. image: {
  38607. source: "./media/characters/lisa/back-caribousune.svg",
  38608. extra: 1801/1604,
  38609. bottom: 44/1845
  38610. }
  38611. },
  38612. caribou: {
  38613. height: math.unit(7 + 2/12, "feet"),
  38614. weight: math.unit(268, "lb"),
  38615. name: "Caribou",
  38616. image: {
  38617. source: "./media/characters/lisa/caribou.svg",
  38618. extra: 1843/1633,
  38619. bottom: 29/1872
  38620. }
  38621. },
  38622. frontCaribou: {
  38623. height: math.unit(7 + 2/12, "feet"),
  38624. weight: math.unit(268, "lb"),
  38625. name: "Front (Caribou)",
  38626. image: {
  38627. source: "./media/characters/lisa/front-caribou.svg",
  38628. extra: 1818/1638,
  38629. bottom: 52/1870
  38630. }
  38631. },
  38632. sideCaribou: {
  38633. height: math.unit(7 + 2/12, "feet"),
  38634. weight: math.unit(268, "lb"),
  38635. name: "Side (Caribou)",
  38636. image: {
  38637. source: "./media/characters/lisa/side-caribou.svg",
  38638. extra: 1851/1635,
  38639. bottom: 16/1867
  38640. }
  38641. },
  38642. backCaribou: {
  38643. height: math.unit(7 + 2/12, "feet"),
  38644. weight: math.unit(268, "lb"),
  38645. name: "Back (Caribou)",
  38646. image: {
  38647. source: "./media/characters/lisa/back-caribou.svg",
  38648. extra: 1801/1604,
  38649. bottom: 44/1845
  38650. }
  38651. },
  38652. mawCaribou: {
  38653. height: math.unit(1.45, "feet"),
  38654. name: "Maw (Caribou)",
  38655. image: {
  38656. source: "./media/characters/lisa/maw-caribou.svg"
  38657. }
  38658. },
  38659. mawCaribousune: {
  38660. height: math.unit(1.45, "feet"),
  38661. name: "Maw (Caribousune)",
  38662. image: {
  38663. source: "./media/characters/lisa/maw-caribousune.svg"
  38664. }
  38665. },
  38666. pawCaribousune: {
  38667. height: math.unit(1.61, "feet"),
  38668. name: "Paw (Caribou)",
  38669. image: {
  38670. source: "./media/characters/lisa/paw-caribousune.svg"
  38671. }
  38672. },
  38673. },
  38674. [
  38675. {
  38676. name: "Normal",
  38677. height: math.unit(6, "feet")
  38678. },
  38679. {
  38680. name: "God Size",
  38681. height: math.unit(72, "feet"),
  38682. default: true
  38683. },
  38684. {
  38685. name: "Towering",
  38686. height: math.unit(288, "feet")
  38687. },
  38688. {
  38689. name: "City Size",
  38690. height: math.unit(48384, "feet")
  38691. },
  38692. {
  38693. name: "Continental",
  38694. height: math.unit(4200, "miles")
  38695. },
  38696. {
  38697. name: "Planet Eater",
  38698. height: math.unit(42, "earths")
  38699. },
  38700. {
  38701. name: "Star Swallower",
  38702. height: math.unit(42, "solarradii")
  38703. },
  38704. {
  38705. name: "System Swallower",
  38706. height: math.unit(84000, "AU")
  38707. },
  38708. {
  38709. name: "Galaxy Gobbler",
  38710. height: math.unit(42, "galaxies")
  38711. },
  38712. {
  38713. name: "Universe Devourer",
  38714. height: math.unit(42, "universes")
  38715. },
  38716. {
  38717. name: "Multiverse Muncher",
  38718. height: math.unit(42, "multiverses")
  38719. },
  38720. ]
  38721. ))
  38722. characterMakers.push(() => makeCharacter(
  38723. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  38724. {
  38725. front: {
  38726. height: math.unit(36, "feet"),
  38727. name: "Front",
  38728. image: {
  38729. source: "./media/characters/shadow-rat/front.svg",
  38730. extra: 1845/1758,
  38731. bottom: 83/1928
  38732. }
  38733. },
  38734. },
  38735. [
  38736. {
  38737. name: "Macro",
  38738. height: math.unit(36, "feet"),
  38739. default: true
  38740. },
  38741. ]
  38742. ))
  38743. characterMakers.push(() => makeCharacter(
  38744. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  38745. {
  38746. side: {
  38747. height: math.unit(8, "feet"),
  38748. weight: math.unit(2630, "lb"),
  38749. name: "Side",
  38750. image: {
  38751. source: "./media/characters/torallia/side.svg",
  38752. extra: 2164/2021,
  38753. bottom: 371/2535
  38754. }
  38755. },
  38756. },
  38757. [
  38758. {
  38759. name: "Mortal Interaction",
  38760. height: math.unit(8, "feet")
  38761. },
  38762. {
  38763. name: "Natural",
  38764. height: math.unit(24, "feet"),
  38765. default: true
  38766. },
  38767. {
  38768. name: "Giant",
  38769. height: math.unit(80, "feet")
  38770. },
  38771. {
  38772. name: "Kaiju",
  38773. height: math.unit(240, "feet")
  38774. },
  38775. {
  38776. name: "Macro",
  38777. height: math.unit(800, "feet")
  38778. },
  38779. {
  38780. name: "Macro+",
  38781. height: math.unit(2400, "feet")
  38782. },
  38783. {
  38784. name: "Macro++",
  38785. height: math.unit(8000, "feet")
  38786. },
  38787. {
  38788. name: "City-Crushing",
  38789. height: math.unit(24000, "feet")
  38790. },
  38791. {
  38792. name: "Mountain-Mashing",
  38793. height: math.unit(80000, "feet")
  38794. },
  38795. {
  38796. name: "District Demolisher",
  38797. height: math.unit(240000, "feet")
  38798. },
  38799. {
  38800. name: "Tri-County Terror",
  38801. height: math.unit(800000, "feet")
  38802. },
  38803. {
  38804. name: "State Smasher",
  38805. height: math.unit(2.4e6, "feet")
  38806. },
  38807. {
  38808. name: "Nation Nemesis",
  38809. height: math.unit(8e6, "feet")
  38810. },
  38811. {
  38812. name: "Continent Cracker",
  38813. height: math.unit(2.4e7, "feet")
  38814. },
  38815. {
  38816. name: "Planet-Pillaging",
  38817. height: math.unit(8e7, "feet")
  38818. },
  38819. {
  38820. name: "Earth-Eclipsing",
  38821. height: math.unit(2.4e8, "feet")
  38822. },
  38823. {
  38824. name: "Jovian-Jostling",
  38825. height: math.unit(8e8, "feet")
  38826. },
  38827. {
  38828. name: "Gas Giant Gulper",
  38829. height: math.unit(2.4e9, "feet")
  38830. },
  38831. {
  38832. name: "Astral Annihilator",
  38833. height: math.unit(8e9, "feet")
  38834. },
  38835. {
  38836. name: "Celestial Conqueror",
  38837. height: math.unit(2.4e10, "feet")
  38838. },
  38839. {
  38840. name: "Sol-Swallowing",
  38841. height: math.unit(8e10, "feet")
  38842. },
  38843. {
  38844. name: "Hunter of the Heavens",
  38845. height: math.unit(2.4e13, "feet")
  38846. },
  38847. ]
  38848. ))
  38849. characterMakers.push(() => makeCharacter(
  38850. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38851. {
  38852. front: {
  38853. height: math.unit(6 + 8/12, "feet"),
  38854. name: "Front",
  38855. image: {
  38856. source: "./media/characters/rebecca-pawlson/front.svg",
  38857. extra: 1737/1596,
  38858. bottom: 107/1844
  38859. }
  38860. },
  38861. back: {
  38862. height: math.unit(6 + 8/12, "feet"),
  38863. name: "Back",
  38864. image: {
  38865. source: "./media/characters/rebecca-pawlson/back.svg",
  38866. extra: 1702/1523,
  38867. bottom: 86/1788
  38868. }
  38869. },
  38870. },
  38871. [
  38872. {
  38873. name: "Normal",
  38874. height: math.unit(6 + 8/12, "feet")
  38875. },
  38876. {
  38877. name: "Mini Macro",
  38878. height: math.unit(10, "feet"),
  38879. default: true
  38880. },
  38881. {
  38882. name: "Macro",
  38883. height: math.unit(100, "feet")
  38884. },
  38885. {
  38886. name: "Mega Macro",
  38887. height: math.unit(2500, "feet")
  38888. },
  38889. {
  38890. name: "Giga Macro",
  38891. height: math.unit(50, "miles")
  38892. },
  38893. ]
  38894. ))
  38895. characterMakers.push(() => makeCharacter(
  38896. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38897. {
  38898. front: {
  38899. height: math.unit(7 + 6/12, "feet"),
  38900. weight: math.unit(600, "lb"),
  38901. name: "Front",
  38902. image: {
  38903. source: "./media/characters/moxie-nova/front.svg",
  38904. extra: 1734/1652,
  38905. bottom: 41/1775
  38906. }
  38907. },
  38908. },
  38909. [
  38910. {
  38911. name: "Normal",
  38912. height: math.unit(7 + 6/12, "feet"),
  38913. default: true
  38914. },
  38915. ]
  38916. ))
  38917. characterMakers.push(() => makeCharacter(
  38918. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  38919. {
  38920. goat: {
  38921. height: math.unit(4, "feet"),
  38922. weight: math.unit(180, "lb"),
  38923. name: "Goat",
  38924. image: {
  38925. source: "./media/characters/tiffany/goat.svg",
  38926. extra: 1845/1595,
  38927. bottom: 106/1951
  38928. }
  38929. },
  38930. front: {
  38931. height: math.unit(5, "feet"),
  38932. weight: math.unit(150, "lb"),
  38933. name: "Foxcoon",
  38934. image: {
  38935. source: "./media/characters/tiffany/foxcoon.svg",
  38936. extra: 1941/1845,
  38937. bottom: 58/1999
  38938. }
  38939. },
  38940. },
  38941. [
  38942. {
  38943. name: "Normal",
  38944. height: math.unit(5, "feet"),
  38945. default: true
  38946. },
  38947. ]
  38948. ))
  38949. characterMakers.push(() => makeCharacter(
  38950. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  38951. {
  38952. front: {
  38953. height: math.unit(8, "feet"),
  38954. weight: math.unit(300, "lb"),
  38955. name: "Front",
  38956. image: {
  38957. source: "./media/characters/raxinath/front.svg",
  38958. extra: 1407/1309,
  38959. bottom: 39/1446
  38960. }
  38961. },
  38962. back: {
  38963. height: math.unit(8, "feet"),
  38964. weight: math.unit(300, "lb"),
  38965. name: "Back",
  38966. image: {
  38967. source: "./media/characters/raxinath/back.svg",
  38968. extra: 1405/1315,
  38969. bottom: 9/1414
  38970. }
  38971. },
  38972. },
  38973. [
  38974. {
  38975. name: "Speck",
  38976. height: math.unit(0.5, "nm")
  38977. },
  38978. {
  38979. name: "Micro",
  38980. height: math.unit(3, "inches")
  38981. },
  38982. {
  38983. name: "Kobold",
  38984. height: math.unit(3, "feet")
  38985. },
  38986. {
  38987. name: "Normal",
  38988. height: math.unit(8, "feet"),
  38989. default: true
  38990. },
  38991. {
  38992. name: "Giant",
  38993. height: math.unit(50, "feet")
  38994. },
  38995. {
  38996. name: "Macro",
  38997. height: math.unit(1000, "feet")
  38998. },
  38999. {
  39000. name: "Megamacro",
  39001. height: math.unit(1, "mile")
  39002. },
  39003. ]
  39004. ))
  39005. characterMakers.push(() => makeCharacter(
  39006. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  39007. {
  39008. front: {
  39009. height: math.unit(10, "feet"),
  39010. weight: math.unit(1442, "lb"),
  39011. name: "Front",
  39012. image: {
  39013. source: "./media/characters/mal-dragon/front.svg",
  39014. extra: 1515/1444,
  39015. bottom: 113/1628
  39016. }
  39017. },
  39018. back: {
  39019. height: math.unit(10, "feet"),
  39020. weight: math.unit(1442, "lb"),
  39021. name: "Back",
  39022. image: {
  39023. source: "./media/characters/mal-dragon/back.svg",
  39024. extra: 1527/1434,
  39025. bottom: 25/1552
  39026. }
  39027. },
  39028. },
  39029. [
  39030. {
  39031. name: "Mortal Interaction",
  39032. height: math.unit(10, "feet"),
  39033. default: true
  39034. },
  39035. {
  39036. name: "Large",
  39037. height: math.unit(30, "feet")
  39038. },
  39039. {
  39040. name: "Kaiju",
  39041. height: math.unit(300, "feet")
  39042. },
  39043. {
  39044. name: "Megamacro",
  39045. height: math.unit(10000, "feet")
  39046. },
  39047. {
  39048. name: "Continent Cracker",
  39049. height: math.unit(30000000, "feet")
  39050. },
  39051. {
  39052. name: "Sol-Swallowing",
  39053. height: math.unit(1e11, "feet")
  39054. },
  39055. {
  39056. name: "Light Universal",
  39057. height: math.unit(5, "universes")
  39058. },
  39059. {
  39060. name: "Universe Atoms",
  39061. height: math.unit(1.829e9, "universes")
  39062. },
  39063. {
  39064. name: "Light Multiversal",
  39065. height: math.unit(5, "multiverses")
  39066. },
  39067. {
  39068. name: "Multiverse Atoms",
  39069. height: math.unit(1.829e9, "multiverses")
  39070. },
  39071. {
  39072. name: "Fabric of Time",
  39073. height: math.unit(1e262, "multiverses")
  39074. },
  39075. ]
  39076. ))
  39077. characterMakers.push(() => makeCharacter(
  39078. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  39079. {
  39080. front: {
  39081. height: math.unit(9, "feet"),
  39082. weight: math.unit(1050, "lb"),
  39083. name: "Front",
  39084. image: {
  39085. source: "./media/characters/tabitha/front.svg",
  39086. extra: 2083/1994,
  39087. bottom: 68/2151
  39088. }
  39089. },
  39090. },
  39091. [
  39092. {
  39093. name: "Baseline",
  39094. height: math.unit(9, "feet"),
  39095. default: true
  39096. },
  39097. {
  39098. name: "Giant",
  39099. height: math.unit(90, "feet")
  39100. },
  39101. {
  39102. name: "Macro",
  39103. height: math.unit(900, "feet")
  39104. },
  39105. {
  39106. name: "Megamacro",
  39107. height: math.unit(9000, "feet")
  39108. },
  39109. {
  39110. name: "City-Crushing",
  39111. height: math.unit(27000, "feet")
  39112. },
  39113. {
  39114. name: "Mountain-Mashing",
  39115. height: math.unit(90000, "feet")
  39116. },
  39117. {
  39118. name: "Nation Nemesis",
  39119. height: math.unit(9e6, "feet")
  39120. },
  39121. {
  39122. name: "Continent Cracker",
  39123. height: math.unit(27e6, "feet")
  39124. },
  39125. {
  39126. name: "Earth-Eclipsing",
  39127. height: math.unit(2.7e8, "feet")
  39128. },
  39129. {
  39130. name: "Gas Giant Gulper",
  39131. height: math.unit(2.7e9, "feet")
  39132. },
  39133. {
  39134. name: "Sol-Swallowing",
  39135. height: math.unit(9e10, "feet")
  39136. },
  39137. {
  39138. name: "Galaxy Gulper",
  39139. height: math.unit(9, "galaxies")
  39140. },
  39141. {
  39142. name: "Cosmos Churner",
  39143. height: math.unit(9, "universes")
  39144. },
  39145. ]
  39146. ))
  39147. characterMakers.push(() => makeCharacter(
  39148. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  39149. {
  39150. front: {
  39151. height: math.unit(160, "cm"),
  39152. weight: math.unit(55, "kg"),
  39153. name: "Front",
  39154. image: {
  39155. source: "./media/characters/tow/front.svg",
  39156. extra: 1751/1722,
  39157. bottom: 74/1825
  39158. }
  39159. },
  39160. },
  39161. [
  39162. {
  39163. name: "Norm",
  39164. height: math.unit(160, "cm")
  39165. },
  39166. {
  39167. name: "Casual",
  39168. height: math.unit(3200, "m"),
  39169. default: true
  39170. },
  39171. {
  39172. name: "Show-Off",
  39173. height: math.unit(160, "km")
  39174. },
  39175. ]
  39176. ))
  39177. characterMakers.push(() => makeCharacter(
  39178. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  39179. {
  39180. front: {
  39181. height: math.unit(7 + 11/12, "feet"),
  39182. weight: math.unit(342.8, "lb"),
  39183. name: "Front",
  39184. image: {
  39185. source: "./media/characters/vivian-orca-dragon/front.svg",
  39186. extra: 1890/1865,
  39187. bottom: 28/1918
  39188. }
  39189. },
  39190. },
  39191. [
  39192. {
  39193. name: "Micro",
  39194. height: math.unit(5, "inches")
  39195. },
  39196. {
  39197. name: "Normal",
  39198. height: math.unit(7 + 11/12, "feet"),
  39199. default: true
  39200. },
  39201. {
  39202. name: "Macro",
  39203. height: math.unit(395 + 7/12, "feet")
  39204. },
  39205. ]
  39206. ))
  39207. characterMakers.push(() => makeCharacter(
  39208. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  39209. {
  39210. side: {
  39211. height: math.unit(10, "feet"),
  39212. weight: math.unit(1442, "lb"),
  39213. name: "Side",
  39214. image: {
  39215. source: "./media/characters/lotherakon/side.svg",
  39216. extra: 1604/1497,
  39217. bottom: 89/1693
  39218. }
  39219. },
  39220. },
  39221. [
  39222. {
  39223. name: "Mortal Interaction",
  39224. height: math.unit(10, "feet")
  39225. },
  39226. {
  39227. name: "Large",
  39228. height: math.unit(30, "feet"),
  39229. default: true
  39230. },
  39231. {
  39232. name: "Giant",
  39233. height: math.unit(100, "feet")
  39234. },
  39235. {
  39236. name: "Kaiju",
  39237. height: math.unit(300, "feet")
  39238. },
  39239. {
  39240. name: "Macro",
  39241. height: math.unit(1000, "feet")
  39242. },
  39243. {
  39244. name: "Macro+",
  39245. height: math.unit(3000, "feet")
  39246. },
  39247. {
  39248. name: "Megamacro",
  39249. height: math.unit(10000, "feet")
  39250. },
  39251. {
  39252. name: "City-Crushing",
  39253. height: math.unit(30000, "feet")
  39254. },
  39255. {
  39256. name: "Continent Cracker",
  39257. height: math.unit(30e6, "feet")
  39258. },
  39259. {
  39260. name: "Earth Eclipsing",
  39261. height: math.unit(3e8, "feet")
  39262. },
  39263. {
  39264. name: "Gas Giant Gulper",
  39265. height: math.unit(3e9, "feet")
  39266. },
  39267. {
  39268. name: "Sol-Swallowing",
  39269. height: math.unit(1e11, "feet")
  39270. },
  39271. {
  39272. name: "System Swallower",
  39273. height: math.unit(3e14, "feet")
  39274. },
  39275. {
  39276. name: "Galaxy Gulper",
  39277. height: math.unit(10, "galaxies")
  39278. },
  39279. {
  39280. name: "Light Universal",
  39281. height: math.unit(5, "universes")
  39282. },
  39283. {
  39284. name: "Universe Palm",
  39285. height: math.unit(20, "universes")
  39286. },
  39287. {
  39288. name: "Light Multiversal",
  39289. height: math.unit(5, "multiverses")
  39290. },
  39291. {
  39292. name: "Multiverse Palm",
  39293. height: math.unit(20, "multiverses")
  39294. },
  39295. {
  39296. name: "Inferno Incarnate",
  39297. height: math.unit(1e7, "multiverses")
  39298. },
  39299. ]
  39300. ))
  39301. characterMakers.push(() => makeCharacter(
  39302. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  39303. {
  39304. front: {
  39305. height: math.unit(8, "feet"),
  39306. weight: math.unit(1200, "lb"),
  39307. name: "Front",
  39308. image: {
  39309. source: "./media/characters/malithee/front.svg",
  39310. extra: 1675/1640,
  39311. bottom: 162/1837
  39312. }
  39313. },
  39314. },
  39315. [
  39316. {
  39317. name: "Mortal Interaction",
  39318. height: math.unit(8, "feet"),
  39319. default: true
  39320. },
  39321. {
  39322. name: "Large",
  39323. height: math.unit(24, "feet")
  39324. },
  39325. {
  39326. name: "Kaiju",
  39327. height: math.unit(240, "feet")
  39328. },
  39329. {
  39330. name: "Megamacro",
  39331. height: math.unit(8000, "feet")
  39332. },
  39333. {
  39334. name: "Continent Cracker",
  39335. height: math.unit(24e6, "feet")
  39336. },
  39337. {
  39338. name: "Earth-Eclipsing",
  39339. height: math.unit(2.4e8, "feet")
  39340. },
  39341. {
  39342. name: "Sol-Swallowing",
  39343. height: math.unit(8e10, "feet")
  39344. },
  39345. {
  39346. name: "Galaxy Gulper",
  39347. height: math.unit(8, "galaxies")
  39348. },
  39349. {
  39350. name: "Light Universal",
  39351. height: math.unit(4, "universes")
  39352. },
  39353. {
  39354. name: "Universe Atoms",
  39355. height: math.unit(1.829e9, "universes")
  39356. },
  39357. {
  39358. name: "Light Multiversal",
  39359. height: math.unit(4, "multiverses")
  39360. },
  39361. {
  39362. name: "Multiverse Atoms",
  39363. height: math.unit(1.829e9, "multiverses")
  39364. },
  39365. {
  39366. name: "Nigh-Omnipresence",
  39367. height: math.unit(8e261, "multiverses")
  39368. },
  39369. ]
  39370. ))
  39371. characterMakers.push(() => makeCharacter(
  39372. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  39373. {
  39374. front: {
  39375. height: math.unit(10, "feet"),
  39376. weight: math.unit(1500, "lb"),
  39377. name: "Front",
  39378. image: {
  39379. source: "./media/characters/miles-thestia/front.svg",
  39380. extra: 1812/1727,
  39381. bottom: 86/1898
  39382. }
  39383. },
  39384. back: {
  39385. height: math.unit(10, "feet"),
  39386. weight: math.unit(1500, "lb"),
  39387. name: "Back",
  39388. image: {
  39389. source: "./media/characters/miles-thestia/back.svg",
  39390. extra: 1799/1690,
  39391. bottom: 47/1846
  39392. }
  39393. },
  39394. frontNsfw: {
  39395. height: math.unit(10, "feet"),
  39396. weight: math.unit(1500, "lb"),
  39397. name: "Front (NSFW)",
  39398. image: {
  39399. source: "./media/characters/miles-thestia/front-nsfw.svg",
  39400. extra: 1812/1727,
  39401. bottom: 86/1898
  39402. }
  39403. },
  39404. },
  39405. [
  39406. {
  39407. name: "Mini-Macro",
  39408. height: math.unit(10, "feet"),
  39409. default: true
  39410. },
  39411. ]
  39412. ))
  39413. characterMakers.push(() => makeCharacter(
  39414. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  39415. {
  39416. front: {
  39417. height: math.unit(25, "feet"),
  39418. name: "Front",
  39419. image: {
  39420. source: "./media/characters/titan-s-wulf/front.svg",
  39421. extra: 1560/1484,
  39422. bottom: 76/1636
  39423. }
  39424. },
  39425. },
  39426. [
  39427. {
  39428. name: "Smallest",
  39429. height: math.unit(25, "feet"),
  39430. default: true
  39431. },
  39432. {
  39433. name: "Normal",
  39434. height: math.unit(200, "feet")
  39435. },
  39436. {
  39437. name: "Macro",
  39438. height: math.unit(200000, "feet")
  39439. },
  39440. {
  39441. name: "Multiversal Original",
  39442. height: math.unit(10000, "multiverses")
  39443. },
  39444. ]
  39445. ))
  39446. characterMakers.push(() => makeCharacter(
  39447. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  39448. {
  39449. front: {
  39450. height: math.unit(8, "feet"),
  39451. weight: math.unit(553, "lb"),
  39452. name: "Front",
  39453. image: {
  39454. source: "./media/characters/tawendeh/front.svg",
  39455. extra: 2365/2268,
  39456. bottom: 83/2448
  39457. }
  39458. },
  39459. frontClothed: {
  39460. height: math.unit(8, "feet"),
  39461. weight: math.unit(553, "lb"),
  39462. name: "Front (Clothed)",
  39463. image: {
  39464. source: "./media/characters/tawendeh/front-clothed.svg",
  39465. extra: 2365/2268,
  39466. bottom: 83/2448
  39467. }
  39468. },
  39469. back: {
  39470. height: math.unit(8, "feet"),
  39471. weight: math.unit(553, "lb"),
  39472. name: "Back",
  39473. image: {
  39474. source: "./media/characters/tawendeh/back.svg",
  39475. extra: 2397/2294,
  39476. bottom: 42/2439
  39477. }
  39478. },
  39479. },
  39480. [
  39481. {
  39482. name: "Mortal Interaction",
  39483. height: math.unit(8, "feet"),
  39484. default: true
  39485. },
  39486. {
  39487. name: "Giant",
  39488. height: math.unit(80, "feet")
  39489. },
  39490. {
  39491. name: "Macro",
  39492. height: math.unit(800, "feet")
  39493. },
  39494. {
  39495. name: "Megamacro",
  39496. height: math.unit(8000, "feet")
  39497. },
  39498. {
  39499. name: "City-Crushing",
  39500. height: math.unit(24000, "feet")
  39501. },
  39502. {
  39503. name: "Mountain-Mashing",
  39504. height: math.unit(80000, "feet")
  39505. },
  39506. {
  39507. name: "Nation Nemesis",
  39508. height: math.unit(8e6, "feet")
  39509. },
  39510. {
  39511. name: "Continent Cracker",
  39512. height: math.unit(24e6, "feet")
  39513. },
  39514. {
  39515. name: "Earth-Eclipsing",
  39516. height: math.unit(2.4e8, "feet")
  39517. },
  39518. {
  39519. name: "Gas Giant Gulper",
  39520. height: math.unit(2.4e9, "feet")
  39521. },
  39522. {
  39523. name: "Sol-Swallowing",
  39524. height: math.unit(8e10, "feet")
  39525. },
  39526. {
  39527. name: "Galaxy Gulper",
  39528. height: math.unit(8, "galaxies")
  39529. },
  39530. {
  39531. name: "Cosmos Churner",
  39532. height: math.unit(8, "universes")
  39533. },
  39534. {
  39535. name: "Omnipotent Otter",
  39536. height: math.unit(80, "universes")
  39537. },
  39538. ]
  39539. ))
  39540. characterMakers.push(() => makeCharacter(
  39541. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  39542. {
  39543. front: {
  39544. height: math.unit(2.6, "meters"),
  39545. weight: math.unit(900, "kg"),
  39546. name: "Front",
  39547. image: {
  39548. source: "./media/characters/neesha/front.svg",
  39549. extra: 1803/1653,
  39550. bottom: 128/1931
  39551. }
  39552. },
  39553. },
  39554. [
  39555. {
  39556. name: "Normal",
  39557. height: math.unit(2.6, "meters"),
  39558. default: true
  39559. },
  39560. {
  39561. name: "Macro",
  39562. height: math.unit(50, "meters")
  39563. },
  39564. ]
  39565. ))
  39566. characterMakers.push(() => makeCharacter(
  39567. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  39568. {
  39569. front: {
  39570. height: math.unit(5, "feet"),
  39571. weight: math.unit(185, "lb"),
  39572. name: "Front",
  39573. image: {
  39574. source: "./media/characters/kyera/front.svg",
  39575. extra: 1875/1790,
  39576. bottom: 96/1971
  39577. }
  39578. },
  39579. },
  39580. [
  39581. {
  39582. name: "Normal",
  39583. height: math.unit(5, "feet"),
  39584. default: true
  39585. },
  39586. ]
  39587. ))
  39588. characterMakers.push(() => makeCharacter(
  39589. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  39590. {
  39591. front: {
  39592. height: math.unit(7 + 6/12, "feet"),
  39593. weight: math.unit(540, "lb"),
  39594. name: "Front",
  39595. image: {
  39596. source: "./media/characters/yuko/front.svg",
  39597. extra: 1282/1222,
  39598. bottom: 101/1383
  39599. }
  39600. },
  39601. frontClothed: {
  39602. height: math.unit(7 + 6/12, "feet"),
  39603. weight: math.unit(540, "lb"),
  39604. name: "Front (Clothed)",
  39605. image: {
  39606. source: "./media/characters/yuko/front-clothed.svg",
  39607. extra: 1282/1222,
  39608. bottom: 101/1383
  39609. }
  39610. },
  39611. },
  39612. [
  39613. {
  39614. name: "Normal",
  39615. height: math.unit(7 + 6/12, "feet"),
  39616. default: true
  39617. },
  39618. {
  39619. name: "Macro",
  39620. height: math.unit(26 + 9/12, "feet")
  39621. },
  39622. {
  39623. name: "Megamacro",
  39624. height: math.unit(300, "feet")
  39625. },
  39626. {
  39627. name: "Gigamacro",
  39628. height: math.unit(5000, "feet")
  39629. },
  39630. {
  39631. name: "Planetary",
  39632. height: math.unit(10000, "miles")
  39633. },
  39634. ]
  39635. ))
  39636. characterMakers.push(() => makeCharacter(
  39637. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  39638. {
  39639. front: {
  39640. height: math.unit(8 + 2/12, "feet"),
  39641. weight: math.unit(600, "lb"),
  39642. name: "Front",
  39643. image: {
  39644. source: "./media/characters/deam-nitrel/front.svg",
  39645. extra: 1308/1234,
  39646. bottom: 125/1433
  39647. }
  39648. },
  39649. },
  39650. [
  39651. {
  39652. name: "Normal",
  39653. height: math.unit(8 + 2/12, "feet"),
  39654. default: true
  39655. },
  39656. ]
  39657. ))
  39658. characterMakers.push(() => makeCharacter(
  39659. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  39660. {
  39661. front: {
  39662. height: math.unit(6.1, "feet"),
  39663. weight: math.unit(180, "lb"),
  39664. name: "Front",
  39665. image: {
  39666. source: "./media/characters/skyress/front.svg",
  39667. extra: 1045/915,
  39668. bottom: 28/1073
  39669. }
  39670. },
  39671. maw: {
  39672. height: math.unit(1, "feet"),
  39673. name: "Maw",
  39674. image: {
  39675. source: "./media/characters/skyress/maw.svg"
  39676. }
  39677. },
  39678. },
  39679. [
  39680. {
  39681. name: "Normal",
  39682. height: math.unit(6.1, "feet"),
  39683. default: true
  39684. },
  39685. {
  39686. name: "Macro",
  39687. height: math.unit(200, "feet")
  39688. },
  39689. ]
  39690. ))
  39691. characterMakers.push(() => makeCharacter(
  39692. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  39693. {
  39694. front: {
  39695. height: math.unit(4 + 2/12, "feet"),
  39696. weight: math.unit(40, "kg"),
  39697. name: "Front",
  39698. image: {
  39699. source: "./media/characters/amethyst-jones/front.svg",
  39700. extra: 1220/1150,
  39701. bottom: 101/1321
  39702. }
  39703. },
  39704. },
  39705. [
  39706. {
  39707. name: "Normal",
  39708. height: math.unit(4 + 2/12, "feet"),
  39709. default: true
  39710. },
  39711. ]
  39712. ))
  39713. characterMakers.push(() => makeCharacter(
  39714. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  39715. {
  39716. front: {
  39717. height: math.unit(1.7, "m"),
  39718. weight: math.unit(135, "lb"),
  39719. name: "Front",
  39720. image: {
  39721. source: "./media/characters/jade/front.svg",
  39722. extra: 1818/1767,
  39723. bottom: 32/1850
  39724. }
  39725. },
  39726. back: {
  39727. height: math.unit(1.7, "m"),
  39728. weight: math.unit(135, "lb"),
  39729. name: "Back",
  39730. image: {
  39731. source: "./media/characters/jade/back.svg",
  39732. extra: 1869/1809,
  39733. bottom: 35/1904
  39734. }
  39735. },
  39736. hand: {
  39737. height: math.unit(0.24, "m"),
  39738. name: "Hand",
  39739. image: {
  39740. source: "./media/characters/jade/hand.svg"
  39741. }
  39742. },
  39743. foot: {
  39744. height: math.unit(0.263, "m"),
  39745. name: "Foot",
  39746. image: {
  39747. source: "./media/characters/jade/foot.svg"
  39748. }
  39749. },
  39750. dick: {
  39751. height: math.unit(0.47, "m"),
  39752. name: "Dick",
  39753. image: {
  39754. source: "./media/characters/jade/dick.svg"
  39755. }
  39756. },
  39757. },
  39758. [
  39759. {
  39760. name: "Micro",
  39761. height: math.unit(22, "cm")
  39762. },
  39763. {
  39764. name: "Normal",
  39765. height: math.unit(1.7, "m"),
  39766. default: true
  39767. },
  39768. {
  39769. name: "Macro",
  39770. height: math.unit(152, "m")
  39771. },
  39772. ]
  39773. ))
  39774. characterMakers.push(() => makeCharacter(
  39775. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  39776. {
  39777. front: {
  39778. height: math.unit(100, "miles"),
  39779. weight: math.unit(20000, "tons"),
  39780. name: "Front",
  39781. image: {
  39782. source: "./media/characters/cookie/front.svg",
  39783. extra: 1125/1070,
  39784. bottom: 30/1155
  39785. }
  39786. },
  39787. },
  39788. [
  39789. {
  39790. name: "Big",
  39791. height: math.unit(50, "feet")
  39792. },
  39793. {
  39794. name: "Macro",
  39795. height: math.unit(100, "miles"),
  39796. default: true
  39797. },
  39798. {
  39799. name: "Megamacro",
  39800. height: math.unit(90000, "miles")
  39801. },
  39802. ]
  39803. ))
  39804. characterMakers.push(() => makeCharacter(
  39805. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  39806. {
  39807. front: {
  39808. height: math.unit(6, "feet"),
  39809. weight: math.unit(145, "lb"),
  39810. name: "Front",
  39811. image: {
  39812. source: "./media/characters/farzian/front.svg",
  39813. extra: 1902/1693,
  39814. bottom: 108/2010
  39815. }
  39816. },
  39817. },
  39818. [
  39819. {
  39820. name: "Macro",
  39821. height: math.unit(500, "feet"),
  39822. default: true
  39823. },
  39824. ]
  39825. ))
  39826. characterMakers.push(() => makeCharacter(
  39827. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  39828. {
  39829. front: {
  39830. height: math.unit(3 + 6/12, "feet"),
  39831. weight: math.unit(50, "lb"),
  39832. name: "Front",
  39833. image: {
  39834. source: "./media/characters/kimberly-tilson/front.svg",
  39835. extra: 1400/1322,
  39836. bottom: 36/1436
  39837. }
  39838. },
  39839. back: {
  39840. height: math.unit(3 + 6/12, "feet"),
  39841. weight: math.unit(50, "lb"),
  39842. name: "Back",
  39843. image: {
  39844. source: "./media/characters/kimberly-tilson/back.svg",
  39845. extra: 1370/1307,
  39846. bottom: 20/1390
  39847. }
  39848. },
  39849. },
  39850. [
  39851. {
  39852. name: "Normal",
  39853. height: math.unit(3 + 6/12, "feet"),
  39854. default: true
  39855. },
  39856. ]
  39857. ))
  39858. characterMakers.push(() => makeCharacter(
  39859. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39860. {
  39861. front: {
  39862. height: math.unit(1148, "feet"),
  39863. weight: math.unit(34057, "lb"),
  39864. name: "Front",
  39865. image: {
  39866. source: "./media/characters/harthos/front.svg",
  39867. extra: 1391/1339,
  39868. bottom: 13/1404
  39869. }
  39870. },
  39871. },
  39872. [
  39873. {
  39874. name: "Macro",
  39875. height: math.unit(1148, "feet"),
  39876. default: true
  39877. },
  39878. ]
  39879. ))
  39880. characterMakers.push(() => makeCharacter(
  39881. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39882. {
  39883. front: {
  39884. height: math.unit(15, "feet"),
  39885. name: "Front",
  39886. image: {
  39887. source: "./media/characters/hypatia/front.svg",
  39888. extra: 1653/1591,
  39889. bottom: 79/1732
  39890. }
  39891. },
  39892. },
  39893. [
  39894. {
  39895. name: "Normal",
  39896. height: math.unit(15, "feet")
  39897. },
  39898. {
  39899. name: "Small",
  39900. height: math.unit(300, "feet")
  39901. },
  39902. {
  39903. name: "Macro",
  39904. height: math.unit(2500, "feet"),
  39905. default: true
  39906. },
  39907. {
  39908. name: "Mega Macro",
  39909. height: math.unit(1500, "miles")
  39910. },
  39911. {
  39912. name: "Giga Macro",
  39913. height: math.unit(1.5e6, "miles")
  39914. },
  39915. ]
  39916. ))
  39917. characterMakers.push(() => makeCharacter(
  39918. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  39919. {
  39920. front: {
  39921. height: math.unit(6, "feet"),
  39922. weight: math.unit(200, "lb"),
  39923. name: "Front",
  39924. image: {
  39925. source: "./media/characters/wulver/front.svg",
  39926. extra: 1724/1632,
  39927. bottom: 130/1854
  39928. }
  39929. },
  39930. frontNsfw: {
  39931. height: math.unit(6, "feet"),
  39932. weight: math.unit(200, "lb"),
  39933. name: "Front (NSFW)",
  39934. image: {
  39935. source: "./media/characters/wulver/front-nsfw.svg",
  39936. extra: 1724/1632,
  39937. bottom: 130/1854
  39938. }
  39939. },
  39940. },
  39941. [
  39942. {
  39943. name: "Human-Sized",
  39944. height: math.unit(6, "feet")
  39945. },
  39946. {
  39947. name: "Normal",
  39948. height: math.unit(4, "meters"),
  39949. default: true
  39950. },
  39951. {
  39952. name: "Large",
  39953. height: math.unit(6, "m")
  39954. },
  39955. ]
  39956. ))
  39957. characterMakers.push(() => makeCharacter(
  39958. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  39959. {
  39960. front: {
  39961. height: math.unit(7, "feet"),
  39962. name: "Front",
  39963. image: {
  39964. source: "./media/characters/maru/front.svg",
  39965. extra: 1595/1570,
  39966. bottom: 0/1595
  39967. }
  39968. },
  39969. },
  39970. [
  39971. {
  39972. name: "Normal",
  39973. height: math.unit(7, "feet"),
  39974. default: true
  39975. },
  39976. {
  39977. name: "Macro",
  39978. height: math.unit(700, "feet")
  39979. },
  39980. {
  39981. name: "Mega Macro",
  39982. height: math.unit(25, "miles")
  39983. },
  39984. ]
  39985. ))
  39986. characterMakers.push(() => makeCharacter(
  39987. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  39988. {
  39989. front: {
  39990. height: math.unit(6, "feet"),
  39991. weight: math.unit(170, "lb"),
  39992. name: "Front",
  39993. image: {
  39994. source: "./media/characters/xenon/front.svg",
  39995. extra: 1376/1305,
  39996. bottom: 56/1432
  39997. }
  39998. },
  39999. back: {
  40000. height: math.unit(6, "feet"),
  40001. weight: math.unit(170, "lb"),
  40002. name: "Back",
  40003. image: {
  40004. source: "./media/characters/xenon/back.svg",
  40005. extra: 1328/1259,
  40006. bottom: 95/1423
  40007. }
  40008. },
  40009. maw: {
  40010. height: math.unit(0.52, "feet"),
  40011. name: "Maw",
  40012. image: {
  40013. source: "./media/characters/xenon/maw.svg"
  40014. }
  40015. },
  40016. hand: {
  40017. height: math.unit(0.82, "feet"),
  40018. name: "Hand",
  40019. image: {
  40020. source: "./media/characters/xenon/hand.svg"
  40021. }
  40022. },
  40023. foot: {
  40024. height: math.unit(1.13, "feet"),
  40025. name: "Foot",
  40026. image: {
  40027. source: "./media/characters/xenon/foot.svg"
  40028. }
  40029. },
  40030. },
  40031. [
  40032. {
  40033. name: "Micro",
  40034. height: math.unit(0.8, "inches")
  40035. },
  40036. {
  40037. name: "Normal",
  40038. height: math.unit(6, "feet")
  40039. },
  40040. {
  40041. name: "Macro",
  40042. height: math.unit(50, "feet"),
  40043. default: true
  40044. },
  40045. {
  40046. name: "Macro+",
  40047. height: math.unit(250, "feet")
  40048. },
  40049. {
  40050. name: "Megamacro",
  40051. height: math.unit(1500, "feet")
  40052. },
  40053. ]
  40054. ))
  40055. characterMakers.push(() => makeCharacter(
  40056. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  40057. {
  40058. front: {
  40059. height: math.unit(7 + 5/12, "feet"),
  40060. name: "Front",
  40061. image: {
  40062. source: "./media/characters/zane/front.svg",
  40063. extra: 1260/1203,
  40064. bottom: 94/1354
  40065. }
  40066. },
  40067. back: {
  40068. height: math.unit(5.05, "feet"),
  40069. name: "Back",
  40070. image: {
  40071. source: "./media/characters/zane/back.svg",
  40072. extra: 893/829,
  40073. bottom: 30/923
  40074. }
  40075. },
  40076. werewolf: {
  40077. height: math.unit(11, "feet"),
  40078. name: "Werewolf",
  40079. image: {
  40080. source: "./media/characters/zane/werewolf.svg",
  40081. extra: 1383/1323,
  40082. bottom: 89/1472
  40083. }
  40084. },
  40085. foot: {
  40086. height: math.unit(1.46, "feet"),
  40087. name: "Foot",
  40088. image: {
  40089. source: "./media/characters/zane/foot.svg"
  40090. }
  40091. },
  40092. footFront: {
  40093. height: math.unit(0.784, "feet"),
  40094. name: "Foot (Front)",
  40095. image: {
  40096. source: "./media/characters/zane/foot-front.svg"
  40097. }
  40098. },
  40099. dick: {
  40100. height: math.unit(1.95, "feet"),
  40101. name: "Dick",
  40102. image: {
  40103. source: "./media/characters/zane/dick.svg"
  40104. }
  40105. },
  40106. dickWerewolf: {
  40107. height: math.unit(3.77, "feet"),
  40108. name: "Dick (Werewolf)",
  40109. image: {
  40110. source: "./media/characters/zane/dick.svg"
  40111. }
  40112. },
  40113. },
  40114. [
  40115. {
  40116. name: "Normal",
  40117. height: math.unit(7 + 5/12, "feet"),
  40118. default: true
  40119. },
  40120. ]
  40121. ))
  40122. characterMakers.push(() => makeCharacter(
  40123. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  40124. {
  40125. front: {
  40126. height: math.unit(6 + 2/12, "feet"),
  40127. weight: math.unit(284, "lb"),
  40128. name: "Front",
  40129. image: {
  40130. source: "./media/characters/benni-desparque/front.svg",
  40131. extra: 1353/1126,
  40132. bottom: 69/1422
  40133. }
  40134. },
  40135. },
  40136. [
  40137. {
  40138. name: "Civilian",
  40139. height: math.unit(6 + 2/12, "feet")
  40140. },
  40141. {
  40142. name: "Normal",
  40143. height: math.unit(98, "feet"),
  40144. default: true
  40145. },
  40146. {
  40147. name: "Kaiju Fighter",
  40148. height: math.unit(268, "feet")
  40149. },
  40150. ]
  40151. ))
  40152. characterMakers.push(() => makeCharacter(
  40153. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  40154. {
  40155. front: {
  40156. height: math.unit(5, "feet"),
  40157. weight: math.unit(105, "lb"),
  40158. name: "Front",
  40159. image: {
  40160. source: "./media/characters/maxine/front.svg",
  40161. extra: 1386/1250,
  40162. bottom: 71/1457
  40163. }
  40164. },
  40165. },
  40166. [
  40167. {
  40168. name: "Normal",
  40169. height: math.unit(5, "feet"),
  40170. default: true
  40171. },
  40172. ]
  40173. ))
  40174. characterMakers.push(() => makeCharacter(
  40175. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  40176. {
  40177. front: {
  40178. height: math.unit(11 + 7/12, "feet"),
  40179. weight: math.unit(9576, "lb"),
  40180. name: "Front",
  40181. image: {
  40182. source: "./media/characters/scaly/front.svg",
  40183. extra: 888/867,
  40184. bottom: 36/924
  40185. }
  40186. },
  40187. },
  40188. [
  40189. {
  40190. name: "Normal",
  40191. height: math.unit(11 + 7/12, "feet"),
  40192. default: true
  40193. },
  40194. ]
  40195. ))
  40196. characterMakers.push(() => makeCharacter(
  40197. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  40198. {
  40199. front: {
  40200. height: math.unit(6 + 3/12, "feet"),
  40201. name: "Front",
  40202. image: {
  40203. source: "./media/characters/saelria/front.svg",
  40204. extra: 1243/1138,
  40205. bottom: 46/1289
  40206. }
  40207. },
  40208. },
  40209. [
  40210. {
  40211. name: "Micro",
  40212. height: math.unit(6, "inches"),
  40213. },
  40214. {
  40215. name: "Normal",
  40216. height: math.unit(6 + 3/12, "feet"),
  40217. default: true
  40218. },
  40219. {
  40220. name: "Macro",
  40221. height: math.unit(25, "feet")
  40222. },
  40223. ]
  40224. ))
  40225. characterMakers.push(() => makeCharacter(
  40226. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  40227. {
  40228. front: {
  40229. height: math.unit(80, "meters"),
  40230. weight: math.unit(7000, "tonnes"),
  40231. name: "Front",
  40232. image: {
  40233. source: "./media/characters/tef/front.svg",
  40234. extra: 2036/1991,
  40235. bottom: 54/2090
  40236. }
  40237. },
  40238. back: {
  40239. height: math.unit(80, "meters"),
  40240. weight: math.unit(7000, "tonnes"),
  40241. name: "Back",
  40242. image: {
  40243. source: "./media/characters/tef/back.svg",
  40244. extra: 2036/1991,
  40245. bottom: 54/2090
  40246. }
  40247. },
  40248. },
  40249. [
  40250. {
  40251. name: "Macro",
  40252. height: math.unit(80, "meters"),
  40253. default: true
  40254. },
  40255. ]
  40256. ))
  40257. characterMakers.push(() => makeCharacter(
  40258. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  40259. {
  40260. front: {
  40261. height: math.unit(13, "feet"),
  40262. weight: math.unit(6, "tons"),
  40263. name: "Front",
  40264. image: {
  40265. source: "./media/characters/rover/front.svg",
  40266. extra: 1233/1156,
  40267. bottom: 50/1283
  40268. }
  40269. },
  40270. back: {
  40271. height: math.unit(13, "feet"),
  40272. weight: math.unit(6, "tons"),
  40273. name: "Back",
  40274. image: {
  40275. source: "./media/characters/rover/back.svg",
  40276. extra: 1327/1258,
  40277. bottom: 39/1366
  40278. }
  40279. },
  40280. },
  40281. [
  40282. {
  40283. name: "Normal",
  40284. height: math.unit(13, "feet"),
  40285. default: true
  40286. },
  40287. {
  40288. name: "Macro",
  40289. height: math.unit(1300, "feet")
  40290. },
  40291. {
  40292. name: "Megamacro",
  40293. height: math.unit(1300, "miles")
  40294. },
  40295. {
  40296. name: "Gigamacro",
  40297. height: math.unit(1300000, "miles")
  40298. },
  40299. ]
  40300. ))
  40301. characterMakers.push(() => makeCharacter(
  40302. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  40303. {
  40304. front: {
  40305. height: math.unit(6, "feet"),
  40306. weight: math.unit(150, "lb"),
  40307. name: "Front",
  40308. image: {
  40309. source: "./media/characters/ariz/front.svg",
  40310. extra: 1401/1346,
  40311. bottom: 5/1406
  40312. }
  40313. },
  40314. },
  40315. [
  40316. {
  40317. name: "Normal",
  40318. height: math.unit(10, "feet"),
  40319. default: true
  40320. },
  40321. ]
  40322. ))
  40323. characterMakers.push(() => makeCharacter(
  40324. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  40325. {
  40326. front: {
  40327. height: math.unit(6, "feet"),
  40328. weight: math.unit(140, "lb"),
  40329. name: "Front",
  40330. image: {
  40331. source: "./media/characters/sigrun/front.svg",
  40332. extra: 1418/1359,
  40333. bottom: 27/1445
  40334. }
  40335. },
  40336. },
  40337. [
  40338. {
  40339. name: "Macro",
  40340. height: math.unit(35, "feet"),
  40341. default: true
  40342. },
  40343. ]
  40344. ))
  40345. characterMakers.push(() => makeCharacter(
  40346. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  40347. {
  40348. front: {
  40349. height: math.unit(6, "feet"),
  40350. weight: math.unit(150, "lb"),
  40351. name: "Front",
  40352. image: {
  40353. source: "./media/characters/numin/front.svg",
  40354. extra: 1433/1388,
  40355. bottom: 12/1445
  40356. }
  40357. },
  40358. },
  40359. [
  40360. {
  40361. name: "Macro",
  40362. height: math.unit(21.5, "km"),
  40363. default: true
  40364. },
  40365. ]
  40366. ))
  40367. characterMakers.push(() => makeCharacter(
  40368. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  40369. {
  40370. front: {
  40371. height: math.unit(6, "feet"),
  40372. weight: math.unit(463, "lb"),
  40373. name: "Front",
  40374. image: {
  40375. source: "./media/characters/melwa/front.svg",
  40376. extra: 1307/1248,
  40377. bottom: 93/1400
  40378. }
  40379. },
  40380. },
  40381. [
  40382. {
  40383. name: "Macro",
  40384. height: math.unit(50, "meters"),
  40385. default: true
  40386. },
  40387. ]
  40388. ))
  40389. characterMakers.push(() => makeCharacter(
  40390. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  40391. {
  40392. front: {
  40393. height: math.unit(325, "feet"),
  40394. name: "Front",
  40395. image: {
  40396. source: "./media/characters/zorkaiju/front.svg",
  40397. extra: 1955/1814,
  40398. bottom: 40/1995
  40399. }
  40400. },
  40401. frontExtended: {
  40402. height: math.unit(325, "feet"),
  40403. name: "Front (Extended)",
  40404. image: {
  40405. source: "./media/characters/zorkaiju/front-extended.svg",
  40406. extra: 1955/1814,
  40407. bottom: 40/1995
  40408. }
  40409. },
  40410. side: {
  40411. height: math.unit(325, "feet"),
  40412. name: "Side",
  40413. image: {
  40414. source: "./media/characters/zorkaiju/side.svg",
  40415. extra: 1495/1396,
  40416. bottom: 17/1512
  40417. }
  40418. },
  40419. sideExtended: {
  40420. height: math.unit(325, "feet"),
  40421. name: "Side (Extended)",
  40422. image: {
  40423. source: "./media/characters/zorkaiju/side-extended.svg",
  40424. extra: 1495/1396,
  40425. bottom: 17/1512
  40426. }
  40427. },
  40428. back: {
  40429. height: math.unit(325, "feet"),
  40430. name: "Back",
  40431. image: {
  40432. source: "./media/characters/zorkaiju/back.svg",
  40433. extra: 1959/1821,
  40434. bottom: 31/1990
  40435. }
  40436. },
  40437. backExtended: {
  40438. height: math.unit(325, "feet"),
  40439. name: "Back (Extended)",
  40440. image: {
  40441. source: "./media/characters/zorkaiju/back-extended.svg",
  40442. extra: 1959/1821,
  40443. bottom: 31/1990
  40444. }
  40445. },
  40446. hand: {
  40447. height: math.unit(58.4, "feet"),
  40448. name: "Hand",
  40449. image: {
  40450. source: "./media/characters/zorkaiju/hand.svg"
  40451. }
  40452. },
  40453. handExtended: {
  40454. height: math.unit(61.4, "feet"),
  40455. name: "Hand (Extended)",
  40456. image: {
  40457. source: "./media/characters/zorkaiju/hand-extended.svg"
  40458. }
  40459. },
  40460. foot: {
  40461. height: math.unit(95, "feet"),
  40462. name: "Foot",
  40463. image: {
  40464. source: "./media/characters/zorkaiju/foot.svg"
  40465. }
  40466. },
  40467. leftArm: {
  40468. height: math.unit(59, "feet"),
  40469. name: "Left Arm",
  40470. image: {
  40471. source: "./media/characters/zorkaiju/left-arm.svg"
  40472. }
  40473. },
  40474. rightArm: {
  40475. height: math.unit(59, "feet"),
  40476. name: "Right Arm",
  40477. image: {
  40478. source: "./media/characters/zorkaiju/right-arm.svg"
  40479. }
  40480. },
  40481. tail: {
  40482. height: math.unit(104, "feet"),
  40483. name: "Tail",
  40484. image: {
  40485. source: "./media/characters/zorkaiju/tail.svg"
  40486. }
  40487. },
  40488. tailExtended: {
  40489. height: math.unit(104, "feet"),
  40490. name: "Tail (Extended)",
  40491. image: {
  40492. source: "./media/characters/zorkaiju/tail-extended.svg"
  40493. }
  40494. },
  40495. tailBottom: {
  40496. height: math.unit(104, "feet"),
  40497. name: "Tail Bottom",
  40498. image: {
  40499. source: "./media/characters/zorkaiju/tail-bottom.svg"
  40500. }
  40501. },
  40502. crystal: {
  40503. height: math.unit(27.54, "feet"),
  40504. name: "Crystal",
  40505. image: {
  40506. source: "./media/characters/zorkaiju/crystal.svg"
  40507. }
  40508. },
  40509. },
  40510. [
  40511. {
  40512. name: "Kaiju",
  40513. height: math.unit(325, "feet"),
  40514. default: true
  40515. },
  40516. ]
  40517. ))
  40518. characterMakers.push(() => makeCharacter(
  40519. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  40520. {
  40521. front: {
  40522. height: math.unit(6 + 1/12, "feet"),
  40523. weight: math.unit(115, "lb"),
  40524. name: "Front",
  40525. image: {
  40526. source: "./media/characters/bailey-belfry/front.svg",
  40527. extra: 1240/1121,
  40528. bottom: 101/1341
  40529. }
  40530. },
  40531. },
  40532. [
  40533. {
  40534. name: "Normal",
  40535. height: math.unit(6 + 1/12, "feet"),
  40536. default: true
  40537. },
  40538. ]
  40539. ))
  40540. characterMakers.push(() => makeCharacter(
  40541. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  40542. {
  40543. side: {
  40544. height: math.unit(4, "meters"),
  40545. weight: math.unit(250, "kg"),
  40546. name: "Side",
  40547. image: {
  40548. source: "./media/characters/blacky/side.svg",
  40549. extra: 1027/919,
  40550. bottom: 43/1070
  40551. }
  40552. },
  40553. maw: {
  40554. height: math.unit(1, "meters"),
  40555. name: "Maw",
  40556. image: {
  40557. source: "./media/characters/blacky/maw.svg"
  40558. }
  40559. },
  40560. paw: {
  40561. height: math.unit(1, "meters"),
  40562. name: "Paw",
  40563. image: {
  40564. source: "./media/characters/blacky/paw.svg"
  40565. }
  40566. },
  40567. },
  40568. [
  40569. {
  40570. name: "Normal",
  40571. height: math.unit(4, "meters"),
  40572. default: true
  40573. },
  40574. ]
  40575. ))
  40576. characterMakers.push(() => makeCharacter(
  40577. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  40578. {
  40579. front: {
  40580. height: math.unit(170, "cm"),
  40581. weight: math.unit(66, "kg"),
  40582. name: "Front",
  40583. image: {
  40584. source: "./media/characters/thux-ei/front.svg",
  40585. extra: 1109/1011,
  40586. bottom: 8/1117
  40587. }
  40588. },
  40589. },
  40590. [
  40591. {
  40592. name: "Normal",
  40593. height: math.unit(170, "cm"),
  40594. default: true
  40595. },
  40596. ]
  40597. ))
  40598. characterMakers.push(() => makeCharacter(
  40599. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  40600. {
  40601. front: {
  40602. height: math.unit(5, "feet"),
  40603. weight: math.unit(120, "lb"),
  40604. name: "Front",
  40605. image: {
  40606. source: "./media/characters/roxanne-voltaire/front.svg",
  40607. extra: 1901/1779,
  40608. bottom: 53/1954
  40609. }
  40610. },
  40611. },
  40612. [
  40613. {
  40614. name: "Normal",
  40615. height: math.unit(5, "feet"),
  40616. default: true
  40617. },
  40618. {
  40619. name: "Giant",
  40620. height: math.unit(50, "feet")
  40621. },
  40622. {
  40623. name: "Titan",
  40624. height: math.unit(500, "feet")
  40625. },
  40626. {
  40627. name: "Macro",
  40628. height: math.unit(5000, "feet")
  40629. },
  40630. {
  40631. name: "Megamacro",
  40632. height: math.unit(50000, "feet")
  40633. },
  40634. {
  40635. name: "Gigamacro",
  40636. height: math.unit(500000, "feet")
  40637. },
  40638. {
  40639. name: "Teramacro",
  40640. height: math.unit(5e6, "feet")
  40641. },
  40642. ]
  40643. ))
  40644. characterMakers.push(() => makeCharacter(
  40645. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  40646. {
  40647. front: {
  40648. height: math.unit(6 + 2/12, "feet"),
  40649. name: "Front",
  40650. image: {
  40651. source: "./media/characters/squeaks/front.svg",
  40652. extra: 1823/1768,
  40653. bottom: 138/1961
  40654. }
  40655. },
  40656. },
  40657. [
  40658. {
  40659. name: "Micro",
  40660. height: math.unit(0.5, "inches")
  40661. },
  40662. {
  40663. name: "Normal",
  40664. height: math.unit(6 + 2/12, "feet"),
  40665. default: true
  40666. },
  40667. {
  40668. name: "Macro",
  40669. height: math.unit(600, "feet")
  40670. },
  40671. ]
  40672. ))
  40673. characterMakers.push(() => makeCharacter(
  40674. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  40675. {
  40676. front: {
  40677. height: math.unit(1.72, "meters"),
  40678. name: "Front",
  40679. image: {
  40680. source: "./media/characters/archinger/front.svg",
  40681. extra: 1861/1675,
  40682. bottom: 125/1986
  40683. }
  40684. },
  40685. back: {
  40686. height: math.unit(1.72, "meters"),
  40687. name: "Back",
  40688. image: {
  40689. source: "./media/characters/archinger/back.svg",
  40690. extra: 1844/1701,
  40691. bottom: 104/1948
  40692. }
  40693. },
  40694. cock: {
  40695. height: math.unit(0.59, "feet"),
  40696. name: "Cock",
  40697. image: {
  40698. source: "./media/characters/archinger/cock.svg"
  40699. }
  40700. },
  40701. },
  40702. [
  40703. {
  40704. name: "Normal",
  40705. height: math.unit(1.72, "meters"),
  40706. default: true
  40707. },
  40708. {
  40709. name: "Macro",
  40710. height: math.unit(84, "meters")
  40711. },
  40712. {
  40713. name: "Macro+",
  40714. height: math.unit(112, "meters")
  40715. },
  40716. {
  40717. name: "Macro++",
  40718. height: math.unit(960, "meters")
  40719. },
  40720. {
  40721. name: "Macro+++",
  40722. height: math.unit(4, "km")
  40723. },
  40724. {
  40725. name: "Macro++++",
  40726. height: math.unit(48, "km")
  40727. },
  40728. {
  40729. name: "Macro+++++",
  40730. height: math.unit(4500, "km")
  40731. },
  40732. ]
  40733. ))
  40734. characterMakers.push(() => makeCharacter(
  40735. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  40736. {
  40737. front: {
  40738. height: math.unit(5 + 5/12, "feet"),
  40739. name: "Front",
  40740. image: {
  40741. source: "./media/characters/alsnapz/front.svg",
  40742. extra: 1157/1065,
  40743. bottom: 42/1199
  40744. }
  40745. },
  40746. },
  40747. [
  40748. {
  40749. name: "Normal",
  40750. height: math.unit(5 + 5/12, "feet"),
  40751. default: true
  40752. },
  40753. ]
  40754. ))
  40755. characterMakers.push(() => makeCharacter(
  40756. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  40757. {
  40758. side: {
  40759. height: math.unit(3.2, "earths"),
  40760. name: "Side",
  40761. image: {
  40762. source: "./media/characters/mag/side.svg",
  40763. extra: 1331/1008,
  40764. bottom: 52/1383
  40765. }
  40766. },
  40767. wing: {
  40768. height: math.unit(1.94, "earths"),
  40769. name: "Wing",
  40770. image: {
  40771. source: "./media/characters/mag/wing.svg"
  40772. }
  40773. },
  40774. dick: {
  40775. height: math.unit(1.8, "earths"),
  40776. name: "Dick",
  40777. image: {
  40778. source: "./media/characters/mag/dick.svg"
  40779. }
  40780. },
  40781. ass: {
  40782. height: math.unit(1.33, "earths"),
  40783. name: "Ass",
  40784. image: {
  40785. source: "./media/characters/mag/ass.svg"
  40786. }
  40787. },
  40788. head: {
  40789. height: math.unit(1.1, "earths"),
  40790. name: "Head",
  40791. image: {
  40792. source: "./media/characters/mag/head.svg"
  40793. }
  40794. },
  40795. maw: {
  40796. height: math.unit(1.62, "earths"),
  40797. name: "Maw",
  40798. image: {
  40799. source: "./media/characters/mag/maw.svg"
  40800. }
  40801. },
  40802. },
  40803. [
  40804. {
  40805. name: "Small",
  40806. height: math.unit(162, "feet")
  40807. },
  40808. {
  40809. name: "Normal",
  40810. height: math.unit(3.2, "earths"),
  40811. default: true
  40812. },
  40813. ]
  40814. ))
  40815. characterMakers.push(() => makeCharacter(
  40816. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  40817. {
  40818. front: {
  40819. height: math.unit(512, "feet"),
  40820. weight: math.unit(63509, "tonnes"),
  40821. name: "Front",
  40822. image: {
  40823. source: "./media/characters/vorrel-harroc/front.svg",
  40824. extra: 1075/1063,
  40825. bottom: 62/1137
  40826. }
  40827. },
  40828. },
  40829. [
  40830. {
  40831. name: "Normal",
  40832. height: math.unit(10, "feet")
  40833. },
  40834. {
  40835. name: "Macro",
  40836. height: math.unit(512, "feet"),
  40837. default: true
  40838. },
  40839. {
  40840. name: "Megamacro",
  40841. height: math.unit(256, "miles")
  40842. },
  40843. {
  40844. name: "Gigamacro",
  40845. height: math.unit(4096, "miles")
  40846. },
  40847. ]
  40848. ))
  40849. characterMakers.push(() => makeCharacter(
  40850. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40851. {
  40852. side: {
  40853. height: math.unit(50, "feet"),
  40854. name: "Side",
  40855. image: {
  40856. source: "./media/characters/froimar/side.svg",
  40857. extra: 855/638,
  40858. bottom: 99/954
  40859. }
  40860. },
  40861. },
  40862. [
  40863. {
  40864. name: "Macro",
  40865. height: math.unit(50, "feet"),
  40866. default: true
  40867. },
  40868. ]
  40869. ))
  40870. characterMakers.push(() => makeCharacter(
  40871. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40872. {
  40873. front: {
  40874. height: math.unit(210, "miles"),
  40875. name: "Front",
  40876. image: {
  40877. source: "./media/characters/timothy/front.svg",
  40878. extra: 1007/943,
  40879. bottom: 62/1069
  40880. }
  40881. },
  40882. frontSkirt: {
  40883. height: math.unit(210, "miles"),
  40884. name: "Front (Skirt)",
  40885. image: {
  40886. source: "./media/characters/timothy/front-skirt.svg",
  40887. extra: 1007/943,
  40888. bottom: 62/1069
  40889. }
  40890. },
  40891. frontCoat: {
  40892. height: math.unit(210, "miles"),
  40893. name: "Front (Coat)",
  40894. image: {
  40895. source: "./media/characters/timothy/front-coat.svg",
  40896. extra: 1007/943,
  40897. bottom: 62/1069
  40898. }
  40899. },
  40900. },
  40901. [
  40902. {
  40903. name: "Macro",
  40904. height: math.unit(210, "miles"),
  40905. default: true
  40906. },
  40907. {
  40908. name: "Megamacro",
  40909. height: math.unit(210000, "miles")
  40910. },
  40911. ]
  40912. ))
  40913. characterMakers.push(() => makeCharacter(
  40914. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  40915. {
  40916. front: {
  40917. height: math.unit(188, "feet"),
  40918. name: "Front",
  40919. image: {
  40920. source: "./media/characters/pyotr/front.svg",
  40921. extra: 1912/1826,
  40922. bottom: 18/1930
  40923. }
  40924. },
  40925. },
  40926. [
  40927. {
  40928. name: "Macro",
  40929. height: math.unit(188, "feet"),
  40930. default: true
  40931. },
  40932. {
  40933. name: "Megamacro",
  40934. height: math.unit(8, "miles")
  40935. },
  40936. ]
  40937. ))
  40938. characterMakers.push(() => makeCharacter(
  40939. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  40940. {
  40941. side: {
  40942. height: math.unit(10, "feet"),
  40943. weight: math.unit(4500, "lb"),
  40944. name: "Side",
  40945. image: {
  40946. source: "./media/characters/ackart/side.svg",
  40947. extra: 1776/1668,
  40948. bottom: 116/1892
  40949. }
  40950. },
  40951. },
  40952. [
  40953. {
  40954. name: "Normal",
  40955. height: math.unit(10, "feet"),
  40956. default: true
  40957. },
  40958. ]
  40959. ))
  40960. characterMakers.push(() => makeCharacter(
  40961. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  40962. {
  40963. side: {
  40964. height: math.unit(21, "feet"),
  40965. name: "Side",
  40966. image: {
  40967. source: "./media/characters/nolow/side.svg",
  40968. extra: 1484/1434,
  40969. bottom: 85/1569
  40970. }
  40971. },
  40972. sideErect: {
  40973. height: math.unit(21, "feet"),
  40974. name: "Side-erect",
  40975. image: {
  40976. source: "./media/characters/nolow/side-erect.svg",
  40977. extra: 1484/1434,
  40978. bottom: 85/1569
  40979. }
  40980. },
  40981. },
  40982. [
  40983. {
  40984. name: "Regular",
  40985. height: math.unit(12, "feet")
  40986. },
  40987. {
  40988. name: "Big Chee",
  40989. height: math.unit(21, "feet"),
  40990. default: true
  40991. },
  40992. ]
  40993. ))
  40994. characterMakers.push(() => makeCharacter(
  40995. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  40996. {
  40997. front: {
  40998. height: math.unit(7, "feet"),
  40999. weight: math.unit(250, "lb"),
  41000. name: "Front",
  41001. image: {
  41002. source: "./media/characters/nines/front.svg",
  41003. extra: 1741/1607,
  41004. bottom: 41/1782
  41005. }
  41006. },
  41007. side: {
  41008. height: math.unit(7, "feet"),
  41009. weight: math.unit(250, "lb"),
  41010. name: "Side",
  41011. image: {
  41012. source: "./media/characters/nines/side.svg",
  41013. extra: 1854/1735,
  41014. bottom: 93/1947
  41015. }
  41016. },
  41017. back: {
  41018. height: math.unit(7, "feet"),
  41019. weight: math.unit(250, "lb"),
  41020. name: "Back",
  41021. image: {
  41022. source: "./media/characters/nines/back.svg",
  41023. extra: 1748/1615,
  41024. bottom: 20/1768
  41025. }
  41026. },
  41027. },
  41028. [
  41029. {
  41030. name: "Megamacro",
  41031. height: math.unit(99, "km"),
  41032. default: true
  41033. },
  41034. ]
  41035. ))
  41036. characterMakers.push(() => makeCharacter(
  41037. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  41038. {
  41039. front: {
  41040. height: math.unit(5 + 10/12, "feet"),
  41041. weight: math.unit(210, "lb"),
  41042. name: "Front",
  41043. image: {
  41044. source: "./media/characters/zenith/front.svg",
  41045. extra: 1531/1452,
  41046. bottom: 198/1729
  41047. }
  41048. },
  41049. back: {
  41050. height: math.unit(5 + 10/12, "feet"),
  41051. weight: math.unit(210, "lb"),
  41052. name: "Back",
  41053. image: {
  41054. source: "./media/characters/zenith/back.svg",
  41055. extra: 1571/1487,
  41056. bottom: 75/1646
  41057. }
  41058. },
  41059. },
  41060. [
  41061. {
  41062. name: "Normal",
  41063. height: math.unit(5 + 10/12, "feet"),
  41064. default: true
  41065. }
  41066. ]
  41067. ))
  41068. characterMakers.push(() => makeCharacter(
  41069. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  41070. {
  41071. front: {
  41072. height: math.unit(4, "feet"),
  41073. weight: math.unit(60, "lb"),
  41074. name: "Front",
  41075. image: {
  41076. source: "./media/characters/jasper/front.svg",
  41077. extra: 1450/1379,
  41078. bottom: 19/1469
  41079. }
  41080. },
  41081. },
  41082. [
  41083. {
  41084. name: "Normal",
  41085. height: math.unit(4, "feet"),
  41086. default: true
  41087. },
  41088. ]
  41089. ))
  41090. characterMakers.push(() => makeCharacter(
  41091. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  41092. {
  41093. front: {
  41094. height: math.unit(6 + 5/12, "feet"),
  41095. weight: math.unit(290, "lb"),
  41096. name: "Front",
  41097. image: {
  41098. source: "./media/characters/tiberius-thyben/front.svg",
  41099. extra: 757/739,
  41100. bottom: 39/796
  41101. }
  41102. },
  41103. },
  41104. [
  41105. {
  41106. name: "Micro",
  41107. height: math.unit(1.5, "inches")
  41108. },
  41109. {
  41110. name: "Normal",
  41111. height: math.unit(6 + 5/12, "feet"),
  41112. default: true
  41113. },
  41114. {
  41115. name: "Macro",
  41116. height: math.unit(300, "feet")
  41117. },
  41118. ]
  41119. ))
  41120. characterMakers.push(() => makeCharacter(
  41121. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  41122. {
  41123. front: {
  41124. height: math.unit(5 + 6/12, "feet"),
  41125. weight: math.unit(60, "kg"),
  41126. name: "Front",
  41127. image: {
  41128. source: "./media/characters/sabre/front.svg",
  41129. extra: 738/671,
  41130. bottom: 27/765
  41131. }
  41132. },
  41133. },
  41134. [
  41135. {
  41136. name: "Teeny",
  41137. height: math.unit(2, "inches")
  41138. },
  41139. {
  41140. name: "Smol",
  41141. height: math.unit(8, "inches")
  41142. },
  41143. {
  41144. name: "Normal",
  41145. height: math.unit(5 + 6/12, "feet"),
  41146. default: true
  41147. },
  41148. {
  41149. name: "Mini-Macro",
  41150. height: math.unit(15, "feet")
  41151. },
  41152. {
  41153. name: "Macro",
  41154. height: math.unit(50, "feet")
  41155. },
  41156. ]
  41157. ))
  41158. characterMakers.push(() => makeCharacter(
  41159. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  41160. {
  41161. front: {
  41162. height: math.unit(6 + 4/12, "feet"),
  41163. weight: math.unit(170, "lb"),
  41164. name: "Front",
  41165. image: {
  41166. source: "./media/characters/charlie/front.svg",
  41167. extra: 1348/1228,
  41168. bottom: 15/1363
  41169. }
  41170. },
  41171. },
  41172. [
  41173. {
  41174. name: "Macro",
  41175. height: math.unit(1700, "meters"),
  41176. default: true
  41177. },
  41178. {
  41179. name: "MegaMacro",
  41180. height: math.unit(20400, "meters")
  41181. },
  41182. ]
  41183. ))
  41184. characterMakers.push(() => makeCharacter(
  41185. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  41186. {
  41187. front: {
  41188. height: math.unit(6 + 3/12, "feet"),
  41189. weight: math.unit(185, "lb"),
  41190. name: "Front",
  41191. image: {
  41192. source: "./media/characters/susan-grant/front.svg",
  41193. extra: 1351/1327,
  41194. bottom: 26/1377
  41195. }
  41196. },
  41197. },
  41198. [
  41199. {
  41200. name: "Normal",
  41201. height: math.unit(6 + 3/12, "feet"),
  41202. default: true
  41203. },
  41204. {
  41205. name: "Macro",
  41206. height: math.unit(225, "feet")
  41207. },
  41208. {
  41209. name: "Macro+",
  41210. height: math.unit(900, "feet")
  41211. },
  41212. {
  41213. name: "MegaMacro",
  41214. height: math.unit(14400, "feet")
  41215. },
  41216. ]
  41217. ))
  41218. characterMakers.push(() => makeCharacter(
  41219. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  41220. {
  41221. front: {
  41222. height: math.unit(5 + 4/12, "feet"),
  41223. weight: math.unit(110, "lb"),
  41224. name: "Front",
  41225. image: {
  41226. source: "./media/characters/axel-isanov/front.svg",
  41227. extra: 1096/1065,
  41228. bottom: 13/1109
  41229. }
  41230. },
  41231. },
  41232. [
  41233. {
  41234. name: "Normal",
  41235. height: math.unit(5 + 4/12, "feet"),
  41236. default: true
  41237. },
  41238. ]
  41239. ))
  41240. characterMakers.push(() => makeCharacter(
  41241. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  41242. {
  41243. front: {
  41244. height: math.unit(9, "feet"),
  41245. weight: math.unit(467, "lb"),
  41246. name: "Front",
  41247. image: {
  41248. source: "./media/characters/necahual/front.svg",
  41249. extra: 920/873,
  41250. bottom: 26/946
  41251. }
  41252. },
  41253. back: {
  41254. height: math.unit(9, "feet"),
  41255. weight: math.unit(467, "lb"),
  41256. name: "Back",
  41257. image: {
  41258. source: "./media/characters/necahual/back.svg",
  41259. extra: 930/884,
  41260. bottom: 16/946
  41261. }
  41262. },
  41263. frontUnderwear: {
  41264. height: math.unit(9, "feet"),
  41265. weight: math.unit(467, "lb"),
  41266. name: "Front (Underwear)",
  41267. image: {
  41268. source: "./media/characters/necahual/front-underwear.svg",
  41269. extra: 920/873,
  41270. bottom: 26/946
  41271. }
  41272. },
  41273. frontDressed: {
  41274. height: math.unit(9, "feet"),
  41275. weight: math.unit(467, "lb"),
  41276. name: "Front (Dressed)",
  41277. image: {
  41278. source: "./media/characters/necahual/front-dressed.svg",
  41279. extra: 920/873,
  41280. bottom: 26/946
  41281. }
  41282. },
  41283. },
  41284. [
  41285. {
  41286. name: "Comprsesed",
  41287. height: math.unit(9, "feet")
  41288. },
  41289. {
  41290. name: "Natural",
  41291. height: math.unit(15, "feet"),
  41292. default: true
  41293. },
  41294. {
  41295. name: "Boosted",
  41296. height: math.unit(50, "feet")
  41297. },
  41298. {
  41299. name: "Boosted+",
  41300. height: math.unit(150, "feet")
  41301. },
  41302. {
  41303. name: "Max",
  41304. height: math.unit(500, "feet")
  41305. },
  41306. ]
  41307. ))
  41308. characterMakers.push(() => makeCharacter(
  41309. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  41310. {
  41311. front: {
  41312. height: math.unit(22 + 1/12, "feet"),
  41313. weight: math.unit(3200, "lb"),
  41314. name: "Front",
  41315. image: {
  41316. source: "./media/characters/theo-acacia/front.svg",
  41317. extra: 1796/1741,
  41318. bottom: 83/1879
  41319. }
  41320. },
  41321. frontUnderwear: {
  41322. height: math.unit(22 + 1/12, "feet"),
  41323. weight: math.unit(3200, "lb"),
  41324. name: "Front (Underwear)",
  41325. image: {
  41326. source: "./media/characters/theo-acacia/front-underwear.svg",
  41327. extra: 1796/1741,
  41328. bottom: 83/1879
  41329. }
  41330. },
  41331. frontNude: {
  41332. height: math.unit(22 + 1/12, "feet"),
  41333. weight: math.unit(3200, "lb"),
  41334. name: "Front (Nude)",
  41335. image: {
  41336. source: "./media/characters/theo-acacia/front-nude.svg",
  41337. extra: 1796/1741,
  41338. bottom: 83/1879
  41339. }
  41340. },
  41341. },
  41342. [
  41343. {
  41344. name: "Normal",
  41345. height: math.unit(22 + 1/12, "feet"),
  41346. default: true
  41347. },
  41348. ]
  41349. ))
  41350. characterMakers.push(() => makeCharacter(
  41351. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41352. {
  41353. front: {
  41354. height: math.unit(20, "feet"),
  41355. name: "Front",
  41356. image: {
  41357. source: "./media/characters/astra/front.svg",
  41358. extra: 1850/1714,
  41359. bottom: 106/1956
  41360. }
  41361. },
  41362. frontUndressed: {
  41363. height: math.unit(20, "feet"),
  41364. name: "Front (Undressed)",
  41365. image: {
  41366. source: "./media/characters/astra/front-undressed.svg",
  41367. extra: 1926/1749,
  41368. bottom: 0/1926
  41369. }
  41370. },
  41371. hand: {
  41372. height: math.unit(1.53, "feet"),
  41373. name: "Hand",
  41374. image: {
  41375. source: "./media/characters/astra/hand.svg"
  41376. }
  41377. },
  41378. paw: {
  41379. height: math.unit(1.53, "feet"),
  41380. name: "Paw",
  41381. image: {
  41382. source: "./media/characters/astra/paw.svg"
  41383. }
  41384. },
  41385. },
  41386. [
  41387. {
  41388. name: "Smallest",
  41389. height: math.unit(20, "feet")
  41390. },
  41391. {
  41392. name: "Normal",
  41393. height: math.unit(1e9, "miles"),
  41394. default: true
  41395. },
  41396. {
  41397. name: "Larger",
  41398. height: math.unit(5, "multiverses")
  41399. },
  41400. {
  41401. name: "Largest",
  41402. height: math.unit(1e9, "multiverses")
  41403. },
  41404. ]
  41405. ))
  41406. characterMakers.push(() => makeCharacter(
  41407. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41408. {
  41409. front: {
  41410. height: math.unit(8, "feet"),
  41411. name: "Front",
  41412. image: {
  41413. source: "./media/characters/breanna/front.svg",
  41414. extra: 1912/1632,
  41415. bottom: 33/1945
  41416. }
  41417. },
  41418. },
  41419. [
  41420. {
  41421. name: "Smallest",
  41422. height: math.unit(8, "feet")
  41423. },
  41424. {
  41425. name: "Normal",
  41426. height: math.unit(1, "mile"),
  41427. default: true
  41428. },
  41429. {
  41430. name: "Maximum",
  41431. height: math.unit(1500000000000, "lightyears")
  41432. },
  41433. ]
  41434. ))
  41435. characterMakers.push(() => makeCharacter(
  41436. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  41437. {
  41438. front: {
  41439. height: math.unit(5 + 11/12, "feet"),
  41440. weight: math.unit(155, "lb"),
  41441. name: "Front",
  41442. image: {
  41443. source: "./media/characters/cai/front.svg",
  41444. extra: 1823/1702,
  41445. bottom: 32/1855
  41446. }
  41447. },
  41448. back: {
  41449. height: math.unit(5 + 11/12, "feet"),
  41450. weight: math.unit(155, "lb"),
  41451. name: "Back",
  41452. image: {
  41453. source: "./media/characters/cai/back.svg",
  41454. extra: 1809/1708,
  41455. bottom: 31/1840
  41456. }
  41457. },
  41458. },
  41459. [
  41460. {
  41461. name: "Normal",
  41462. height: math.unit(5 + 11/12, "feet"),
  41463. default: true
  41464. },
  41465. {
  41466. name: "Big",
  41467. height: math.unit(15, "feet")
  41468. },
  41469. {
  41470. name: "Macro",
  41471. height: math.unit(200, "feet")
  41472. },
  41473. ]
  41474. ))
  41475. characterMakers.push(() => makeCharacter(
  41476. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  41477. {
  41478. front: {
  41479. height: math.unit(5 + 6/12, "feet"),
  41480. weight: math.unit(160, "lb"),
  41481. name: "Front",
  41482. image: {
  41483. source: "./media/characters/zanna-virtuedòttir/front.svg",
  41484. extra: 1227/1174,
  41485. bottom: 37/1264
  41486. }
  41487. },
  41488. },
  41489. [
  41490. {
  41491. name: "Macro",
  41492. height: math.unit(444, "meters"),
  41493. default: true
  41494. },
  41495. ]
  41496. ))
  41497. characterMakers.push(() => makeCharacter(
  41498. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  41499. {
  41500. front: {
  41501. height: math.unit(18 + 7/12, "feet"),
  41502. name: "Front",
  41503. image: {
  41504. source: "./media/characters/rex/front.svg",
  41505. extra: 1941/1807,
  41506. bottom: 66/2007
  41507. }
  41508. },
  41509. back: {
  41510. height: math.unit(18 + 7/12, "feet"),
  41511. name: "Back",
  41512. image: {
  41513. source: "./media/characters/rex/back.svg",
  41514. extra: 1937/1822,
  41515. bottom: 42/1979
  41516. }
  41517. },
  41518. boot: {
  41519. height: math.unit(3.45, "feet"),
  41520. name: "Boot",
  41521. image: {
  41522. source: "./media/characters/rex/boot.svg"
  41523. }
  41524. },
  41525. paw: {
  41526. height: math.unit(4.17, "feet"),
  41527. name: "Paw",
  41528. image: {
  41529. source: "./media/characters/rex/paw.svg"
  41530. }
  41531. },
  41532. head: {
  41533. height: math.unit(6.728, "feet"),
  41534. name: "Head",
  41535. image: {
  41536. source: "./media/characters/rex/head.svg"
  41537. }
  41538. },
  41539. },
  41540. [
  41541. {
  41542. name: "Nano",
  41543. height: math.unit(18 + 7/12, "feet")
  41544. },
  41545. {
  41546. name: "Micro",
  41547. height: math.unit(1.5, "megameters")
  41548. },
  41549. {
  41550. name: "Normal",
  41551. height: math.unit(440, "megameters"),
  41552. default: true
  41553. },
  41554. {
  41555. name: "Macro",
  41556. height: math.unit(2.5, "gigameters")
  41557. },
  41558. {
  41559. name: "Gigamacro",
  41560. height: math.unit(2, "galaxies")
  41561. },
  41562. ]
  41563. ))
  41564. characterMakers.push(() => makeCharacter(
  41565. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  41566. {
  41567. side: {
  41568. height: math.unit(32, "feet"),
  41569. weight: math.unit(250000, "lb"),
  41570. name: "Side",
  41571. image: {
  41572. source: "./media/characters/silverwing/side.svg",
  41573. extra: 1100/1019,
  41574. bottom: 204/1304
  41575. }
  41576. },
  41577. },
  41578. [
  41579. {
  41580. name: "Normal",
  41581. height: math.unit(32, "feet"),
  41582. default: true
  41583. },
  41584. ]
  41585. ))
  41586. characterMakers.push(() => makeCharacter(
  41587. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  41588. {
  41589. front: {
  41590. height: math.unit(6 + 6/12, "feet"),
  41591. weight: math.unit(350, "lb"),
  41592. name: "Front",
  41593. image: {
  41594. source: "./media/characters/tristan-hawthorne/front.svg",
  41595. extra: 1159/1124,
  41596. bottom: 37/1196
  41597. }
  41598. },
  41599. },
  41600. [
  41601. {
  41602. name: "Normal",
  41603. height: math.unit(6 + 6/12, "feet"),
  41604. default: true
  41605. },
  41606. ]
  41607. ))
  41608. characterMakers.push(() => makeCharacter(
  41609. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  41610. {
  41611. front: {
  41612. height: math.unit(5 + 11/12, "feet"),
  41613. weight: math.unit(190, "lb"),
  41614. name: "Front",
  41615. image: {
  41616. source: "./media/characters/mizu/front.svg",
  41617. extra: 1988/1788,
  41618. bottom: 14/2002
  41619. }
  41620. },
  41621. },
  41622. [
  41623. {
  41624. name: "Normal",
  41625. height: math.unit(5 + 11/12, "feet"),
  41626. default: true
  41627. },
  41628. ]
  41629. ))
  41630. characterMakers.push(() => makeCharacter(
  41631. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  41632. {
  41633. front: {
  41634. height: math.unit(1.7, "feet"),
  41635. weight: math.unit(50, "lb"),
  41636. name: "Front",
  41637. image: {
  41638. source: "./media/characters/dechroma/front.svg",
  41639. extra: 1095/859,
  41640. bottom: 64/1159
  41641. }
  41642. },
  41643. },
  41644. [
  41645. {
  41646. name: "Normal",
  41647. height: math.unit(1.7, "feet"),
  41648. default: true
  41649. },
  41650. ]
  41651. ))
  41652. characterMakers.push(() => makeCharacter(
  41653. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  41654. {
  41655. side: {
  41656. height: math.unit(30, "feet"),
  41657. name: "Side",
  41658. image: {
  41659. source: "./media/characters/veluren-thanazel/side.svg",
  41660. extra: 1611/633,
  41661. bottom: 118/1729
  41662. }
  41663. },
  41664. front: {
  41665. height: math.unit(30, "feet"),
  41666. name: "Front",
  41667. image: {
  41668. source: "./media/characters/veluren-thanazel/front.svg",
  41669. extra: 1486/636,
  41670. bottom: 238/1724
  41671. }
  41672. },
  41673. head: {
  41674. height: math.unit(21.4, "feet"),
  41675. name: "Head",
  41676. image: {
  41677. source: "./media/characters/veluren-thanazel/head.svg"
  41678. }
  41679. },
  41680. genitals: {
  41681. height: math.unit(19.4, "feet"),
  41682. name: "Genitals",
  41683. image: {
  41684. source: "./media/characters/veluren-thanazel/genitals.svg"
  41685. }
  41686. },
  41687. },
  41688. [
  41689. {
  41690. name: "Social",
  41691. height: math.unit(6, "feet")
  41692. },
  41693. {
  41694. name: "Play",
  41695. height: math.unit(12, "feet")
  41696. },
  41697. {
  41698. name: "True",
  41699. height: math.unit(30, "feet"),
  41700. default: true
  41701. },
  41702. ]
  41703. ))
  41704. characterMakers.push(() => makeCharacter(
  41705. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  41706. {
  41707. front: {
  41708. height: math.unit(7 + 6/12, "feet"),
  41709. weight: math.unit(500, "kg"),
  41710. name: "Front",
  41711. image: {
  41712. source: "./media/characters/arcturas/front.svg",
  41713. extra: 1700/1500,
  41714. bottom: 145/1845
  41715. }
  41716. },
  41717. },
  41718. [
  41719. {
  41720. name: "Normal",
  41721. height: math.unit(7 + 6/12, "feet"),
  41722. default: true
  41723. },
  41724. ]
  41725. ))
  41726. characterMakers.push(() => makeCharacter(
  41727. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41728. {
  41729. side: {
  41730. height: math.unit(6, "feet"),
  41731. weight: math.unit(2, "tons"),
  41732. name: "Side",
  41733. image: {
  41734. source: "./media/characters/vitaen/side.svg",
  41735. extra: 1157/617,
  41736. bottom: 122/1279
  41737. }
  41738. },
  41739. },
  41740. [
  41741. {
  41742. name: "Normal",
  41743. height: math.unit(6, "feet"),
  41744. default: true
  41745. },
  41746. ]
  41747. ))
  41748. characterMakers.push(() => makeCharacter(
  41749. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41750. {
  41751. front: {
  41752. height: math.unit(19, "feet"),
  41753. name: "Front",
  41754. image: {
  41755. source: "./media/characters/fia-dreamweaver/front.svg",
  41756. extra: 1630/1504,
  41757. bottom: 25/1655
  41758. }
  41759. },
  41760. },
  41761. [
  41762. {
  41763. name: "Normal",
  41764. height: math.unit(19, "feet"),
  41765. default: true
  41766. },
  41767. ]
  41768. ))
  41769. characterMakers.push(() => makeCharacter(
  41770. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41771. {
  41772. front: {
  41773. height: math.unit(5 + 4/12, "feet"),
  41774. name: "Front",
  41775. image: {
  41776. source: "./media/characters/artan/front.svg",
  41777. extra: 1618/1535,
  41778. bottom: 46/1664
  41779. }
  41780. },
  41781. back: {
  41782. height: math.unit(5 + 4/12, "feet"),
  41783. name: "Back",
  41784. image: {
  41785. source: "./media/characters/artan/back.svg",
  41786. extra: 1618/1543,
  41787. bottom: 31/1649
  41788. }
  41789. },
  41790. },
  41791. [
  41792. {
  41793. name: "Normal",
  41794. height: math.unit(5 + 4/12, "feet"),
  41795. default: true
  41796. },
  41797. ]
  41798. ))
  41799. characterMakers.push(() => makeCharacter(
  41800. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41801. {
  41802. side: {
  41803. height: math.unit(182, "cm"),
  41804. weight: math.unit(1000, "lb"),
  41805. name: "Side",
  41806. image: {
  41807. source: "./media/characters/silver-dragon/side.svg",
  41808. extra: 710/287,
  41809. bottom: 88/798
  41810. }
  41811. },
  41812. },
  41813. [
  41814. {
  41815. name: "Normal",
  41816. height: math.unit(182, "cm"),
  41817. default: true
  41818. },
  41819. ]
  41820. ))
  41821. characterMakers.push(() => makeCharacter(
  41822. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41823. {
  41824. side: {
  41825. height: math.unit(6 + 6/12, "feet"),
  41826. weight: math.unit(1.5, "tons"),
  41827. name: "Side",
  41828. image: {
  41829. source: "./media/characters/zephyr/side.svg",
  41830. extra: 1433/586,
  41831. bottom: 109/1542
  41832. }
  41833. },
  41834. },
  41835. [
  41836. {
  41837. name: "Normal",
  41838. height: math.unit(6 + 6/12, "feet"),
  41839. default: true
  41840. },
  41841. ]
  41842. ))
  41843. characterMakers.push(() => makeCharacter(
  41844. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41845. {
  41846. side: {
  41847. height: math.unit(1, "feet"),
  41848. name: "Side",
  41849. image: {
  41850. source: "./media/characters/vixye/side.svg",
  41851. extra: 632/541,
  41852. bottom: 0/632
  41853. }
  41854. },
  41855. },
  41856. [
  41857. {
  41858. name: "Normal",
  41859. height: math.unit(1, "feet"),
  41860. default: true
  41861. },
  41862. {
  41863. name: "True",
  41864. height: math.unit(1e15, "multiverses")
  41865. },
  41866. ]
  41867. ))
  41868. characterMakers.push(() => makeCharacter(
  41869. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41870. {
  41871. front: {
  41872. height: math.unit(8 + 2/12, "feet"),
  41873. weight: math.unit(650, "lb"),
  41874. name: "Front",
  41875. image: {
  41876. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41877. extra: 1174/1137,
  41878. bottom: 82/1256
  41879. }
  41880. },
  41881. back: {
  41882. height: math.unit(8 + 2/12, "feet"),
  41883. weight: math.unit(650, "lb"),
  41884. name: "Back",
  41885. image: {
  41886. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41887. extra: 1204/1157,
  41888. bottom: 46/1250
  41889. }
  41890. },
  41891. },
  41892. [
  41893. {
  41894. name: "Wildform",
  41895. height: math.unit(8 + 2/12, "feet"),
  41896. default: true
  41897. },
  41898. ]
  41899. ))
  41900. characterMakers.push(() => makeCharacter(
  41901. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41902. {
  41903. front: {
  41904. height: math.unit(18, "feet"),
  41905. name: "Front",
  41906. image: {
  41907. source: "./media/characters/cyphin/front.svg",
  41908. extra: 970/886,
  41909. bottom: 42/1012
  41910. }
  41911. },
  41912. back: {
  41913. height: math.unit(18, "feet"),
  41914. name: "Back",
  41915. image: {
  41916. source: "./media/characters/cyphin/back.svg",
  41917. extra: 1009/894,
  41918. bottom: 24/1033
  41919. }
  41920. },
  41921. head: {
  41922. height: math.unit(5.05, "feet"),
  41923. name: "Head",
  41924. image: {
  41925. source: "./media/characters/cyphin/head.svg"
  41926. }
  41927. },
  41928. tailbud: {
  41929. height: math.unit(5, "feet"),
  41930. name: "Tailbud",
  41931. image: {
  41932. source: "./media/characters/cyphin/tailbud.svg"
  41933. }
  41934. },
  41935. },
  41936. [
  41937. ]
  41938. ))
  41939. characterMakers.push(() => makeCharacter(
  41940. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41941. {
  41942. side: {
  41943. height: math.unit(10, "feet"),
  41944. weight: math.unit(6, "tons"),
  41945. name: "Side",
  41946. image: {
  41947. source: "./media/characters/raijin/side.svg",
  41948. extra: 1529/613,
  41949. bottom: 337/1866
  41950. }
  41951. },
  41952. },
  41953. [
  41954. {
  41955. name: "Normal",
  41956. height: math.unit(10, "feet"),
  41957. default: true
  41958. },
  41959. ]
  41960. ))
  41961. characterMakers.push(() => makeCharacter(
  41962. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41963. {
  41964. side: {
  41965. height: math.unit(9, "feet"),
  41966. name: "Side",
  41967. image: {
  41968. source: "./media/characters/nilghais/side.svg",
  41969. extra: 1047/744,
  41970. bottom: 91/1138
  41971. }
  41972. },
  41973. head: {
  41974. height: math.unit(3.14, "feet"),
  41975. name: "Head",
  41976. image: {
  41977. source: "./media/characters/nilghais/head.svg"
  41978. }
  41979. },
  41980. mouth: {
  41981. height: math.unit(4.6, "feet"),
  41982. name: "Mouth",
  41983. image: {
  41984. source: "./media/characters/nilghais/mouth.svg"
  41985. }
  41986. },
  41987. wings: {
  41988. height: math.unit(24, "feet"),
  41989. name: "Wings",
  41990. image: {
  41991. source: "./media/characters/nilghais/wings.svg"
  41992. }
  41993. },
  41994. ass: {
  41995. height: math.unit(6.12, "feet"),
  41996. name: "Ass",
  41997. image: {
  41998. source: "./media/characters/nilghais/ass.svg"
  41999. }
  42000. },
  42001. },
  42002. [
  42003. {
  42004. name: "Normal",
  42005. height: math.unit(9, "feet"),
  42006. default: true
  42007. },
  42008. ]
  42009. ))
  42010. characterMakers.push(() => makeCharacter(
  42011. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  42012. {
  42013. regular: {
  42014. height: math.unit(16 + 2/12, "feet"),
  42015. weight: math.unit(2300, "lb"),
  42016. name: "Regular",
  42017. image: {
  42018. source: "./media/characters/zolgar/regular.svg",
  42019. extra: 1246/1004,
  42020. bottom: 124/1370
  42021. }
  42022. },
  42023. boxers: {
  42024. height: math.unit(16 + 2/12, "feet"),
  42025. weight: math.unit(2300, "lb"),
  42026. name: "Boxers",
  42027. image: {
  42028. source: "./media/characters/zolgar/boxers.svg",
  42029. extra: 1246/1004,
  42030. bottom: 124/1370
  42031. }
  42032. },
  42033. armored: {
  42034. height: math.unit(16 + 2/12, "feet"),
  42035. weight: math.unit(2300, "lb"),
  42036. name: "Armored",
  42037. image: {
  42038. source: "./media/characters/zolgar/armored.svg",
  42039. extra: 1246/1004,
  42040. bottom: 124/1370
  42041. }
  42042. },
  42043. goth: {
  42044. height: math.unit(16 + 2/12, "feet"),
  42045. weight: math.unit(2300, "lb"),
  42046. name: "Goth",
  42047. image: {
  42048. source: "./media/characters/zolgar/goth.svg",
  42049. extra: 1246/1004,
  42050. bottom: 124/1370
  42051. }
  42052. },
  42053. },
  42054. [
  42055. {
  42056. name: "Shrunken Down",
  42057. height: math.unit(9 + 2/12, "feet")
  42058. },
  42059. {
  42060. name: "Normal",
  42061. height: math.unit(16 + 2/12, "feet"),
  42062. default: true
  42063. },
  42064. ]
  42065. ))
  42066. characterMakers.push(() => makeCharacter(
  42067. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  42068. {
  42069. front: {
  42070. height: math.unit(6, "feet"),
  42071. weight: math.unit(168, "lb"),
  42072. name: "Front",
  42073. image: {
  42074. source: "./media/characters/luca/front.svg",
  42075. extra: 841/667,
  42076. bottom: 102/943
  42077. }
  42078. },
  42079. },
  42080. [
  42081. {
  42082. name: "Normal",
  42083. height: math.unit(6, "feet"),
  42084. default: true
  42085. },
  42086. ]
  42087. ))
  42088. characterMakers.push(() => makeCharacter(
  42089. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  42090. {
  42091. side: {
  42092. height: math.unit(7 + 3/12, "feet"),
  42093. weight: math.unit(312, "lb"),
  42094. name: "Side",
  42095. image: {
  42096. source: "./media/characters/zezo/side.svg",
  42097. extra: 1192/1067,
  42098. bottom: 63/1255
  42099. }
  42100. },
  42101. },
  42102. [
  42103. {
  42104. name: "Normal",
  42105. height: math.unit(7 + 3/12, "feet"),
  42106. default: true
  42107. },
  42108. ]
  42109. ))
  42110. characterMakers.push(() => makeCharacter(
  42111. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  42112. {
  42113. front: {
  42114. height: math.unit(5 + 5/12, "feet"),
  42115. weight: math.unit(170, "lb"),
  42116. name: "Front",
  42117. image: {
  42118. source: "./media/characters/mayso/front.svg",
  42119. extra: 1215/1108,
  42120. bottom: 16/1231
  42121. }
  42122. },
  42123. },
  42124. [
  42125. {
  42126. name: "Normal",
  42127. height: math.unit(5 + 5/12, "feet"),
  42128. default: true
  42129. },
  42130. ]
  42131. ))
  42132. characterMakers.push(() => makeCharacter(
  42133. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  42134. {
  42135. front: {
  42136. height: math.unit(4 + 3/12, "feet"),
  42137. weight: math.unit(80, "lb"),
  42138. name: "Front",
  42139. image: {
  42140. source: "./media/characters/hess/front.svg",
  42141. extra: 1200/1123,
  42142. bottom: 16/1216
  42143. }
  42144. },
  42145. },
  42146. [
  42147. {
  42148. name: "Normal",
  42149. height: math.unit(4 + 3/12, "feet"),
  42150. default: true
  42151. },
  42152. ]
  42153. ))
  42154. characterMakers.push(() => makeCharacter(
  42155. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  42156. {
  42157. front: {
  42158. height: math.unit(1.9, "meters"),
  42159. name: "Front",
  42160. image: {
  42161. source: "./media/characters/ashgar/front.svg",
  42162. extra: 1177/1146,
  42163. bottom: 99/1276
  42164. }
  42165. },
  42166. back: {
  42167. height: math.unit(1.9, "meters"),
  42168. name: "Back",
  42169. image: {
  42170. source: "./media/characters/ashgar/back.svg",
  42171. extra: 1201/1183,
  42172. bottom: 53/1254
  42173. }
  42174. },
  42175. feral: {
  42176. height: math.unit(1.4, "meters"),
  42177. name: "Feral",
  42178. image: {
  42179. source: "./media/characters/ashgar/feral.svg",
  42180. extra: 370/345,
  42181. bottom: 45/415
  42182. }
  42183. },
  42184. },
  42185. [
  42186. {
  42187. name: "Normal",
  42188. height: math.unit(1.9, "meters"),
  42189. default: true
  42190. },
  42191. ]
  42192. ))
  42193. characterMakers.push(() => makeCharacter(
  42194. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  42195. {
  42196. regular: {
  42197. height: math.unit(6, "feet"),
  42198. weight: math.unit(220, "lb"),
  42199. name: "Regular",
  42200. image: {
  42201. source: "./media/characters/phillip/regular.svg",
  42202. extra: 1373/1277,
  42203. bottom: 75/1448
  42204. }
  42205. },
  42206. dressed: {
  42207. height: math.unit(6, "feet"),
  42208. weight: math.unit(220, "lb"),
  42209. name: "Dressed",
  42210. image: {
  42211. source: "./media/characters/phillip/dressed.svg",
  42212. extra: 1373/1277,
  42213. bottom: 75/1448
  42214. }
  42215. },
  42216. paw: {
  42217. height: math.unit(1.44, "feet"),
  42218. name: "Paw",
  42219. image: {
  42220. source: "./media/characters/phillip/paw.svg"
  42221. }
  42222. },
  42223. },
  42224. [
  42225. {
  42226. name: "Normal",
  42227. height: math.unit(6, "feet"),
  42228. default: true
  42229. },
  42230. ]
  42231. ))
  42232. characterMakers.push(() => makeCharacter(
  42233. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  42234. {
  42235. side: {
  42236. height: math.unit(42, "feet"),
  42237. name: "Side",
  42238. image: {
  42239. source: "./media/characters/uvula/side.svg",
  42240. extra: 683/586,
  42241. bottom: 60/743
  42242. }
  42243. },
  42244. front: {
  42245. height: math.unit(42, "feet"),
  42246. name: "Front",
  42247. image: {
  42248. source: "./media/characters/uvula/front.svg",
  42249. extra: 705/613,
  42250. bottom: 54/759
  42251. }
  42252. },
  42253. maw: {
  42254. height: math.unit(23.5, "feet"),
  42255. name: "Maw",
  42256. image: {
  42257. source: "./media/characters/uvula/maw.svg"
  42258. }
  42259. },
  42260. },
  42261. [
  42262. {
  42263. name: "Original Size",
  42264. height: math.unit(14, "inches")
  42265. },
  42266. {
  42267. name: "Human Size",
  42268. height: math.unit(6, "feet")
  42269. },
  42270. {
  42271. name: "Big",
  42272. height: math.unit(42, "feet"),
  42273. default: true
  42274. },
  42275. {
  42276. name: "Bigger",
  42277. height: math.unit(100, "feet")
  42278. },
  42279. ]
  42280. ))
  42281. characterMakers.push(() => makeCharacter(
  42282. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  42283. {
  42284. front: {
  42285. height: math.unit(5 + 11/12, "feet"),
  42286. name: "Front",
  42287. image: {
  42288. source: "./media/characters/lannah/front.svg",
  42289. extra: 1208/1113,
  42290. bottom: 97/1305
  42291. }
  42292. },
  42293. },
  42294. [
  42295. {
  42296. name: "Normal",
  42297. height: math.unit(5 + 11/12, "feet"),
  42298. default: true
  42299. },
  42300. ]
  42301. ))
  42302. characterMakers.push(() => makeCharacter(
  42303. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  42304. {
  42305. front: {
  42306. height: math.unit(6 + 3/12, "feet"),
  42307. weight: math.unit(3.5, "tons"),
  42308. name: "Front",
  42309. image: {
  42310. source: "./media/characters/emberflame/front.svg",
  42311. extra: 1198/672,
  42312. bottom: 82/1280
  42313. }
  42314. },
  42315. side: {
  42316. height: math.unit(6 + 3/12, "feet"),
  42317. weight: math.unit(3.5, "tons"),
  42318. name: "Side",
  42319. image: {
  42320. source: "./media/characters/emberflame/side.svg",
  42321. extra: 938/527,
  42322. bottom: 56/994
  42323. }
  42324. },
  42325. },
  42326. [
  42327. {
  42328. name: "Normal",
  42329. height: math.unit(6 + 3/12, "feet"),
  42330. default: true
  42331. },
  42332. ]
  42333. ))
  42334. characterMakers.push(() => makeCharacter(
  42335. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  42336. {
  42337. side: {
  42338. height: math.unit(17.5, "feet"),
  42339. weight: math.unit(35, "tons"),
  42340. name: "Side",
  42341. image: {
  42342. source: "./media/characters/sophie-ambrose/side.svg",
  42343. extra: 1573/1242,
  42344. bottom: 71/1644
  42345. }
  42346. },
  42347. maw: {
  42348. height: math.unit(7.4, "feet"),
  42349. name: "Maw",
  42350. image: {
  42351. source: "./media/characters/sophie-ambrose/maw.svg"
  42352. }
  42353. },
  42354. },
  42355. [
  42356. {
  42357. name: "Normal",
  42358. height: math.unit(17.5, "feet"),
  42359. default: true
  42360. },
  42361. ]
  42362. ))
  42363. characterMakers.push(() => makeCharacter(
  42364. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  42365. {
  42366. front: {
  42367. height: math.unit(280, "feet"),
  42368. weight: math.unit(550, "tons"),
  42369. name: "Front",
  42370. image: {
  42371. source: "./media/characters/king-mugi/front.svg",
  42372. extra: 1102/947,
  42373. bottom: 104/1206
  42374. }
  42375. },
  42376. },
  42377. [
  42378. {
  42379. name: "King Mugi",
  42380. height: math.unit(280, "feet"),
  42381. default: true
  42382. },
  42383. ]
  42384. ))
  42385. characterMakers.push(() => makeCharacter(
  42386. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  42387. {
  42388. front: {
  42389. height: math.unit(64, "meters"),
  42390. name: "Front",
  42391. image: {
  42392. source: "./media/characters/nova-fox/front.svg",
  42393. extra: 1310/1246,
  42394. bottom: 65/1375
  42395. }
  42396. },
  42397. },
  42398. [
  42399. {
  42400. name: "Macro",
  42401. height: math.unit(64, "meters"),
  42402. default: true
  42403. },
  42404. ]
  42405. ))
  42406. characterMakers.push(() => makeCharacter(
  42407. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  42408. {
  42409. front: {
  42410. height: math.unit(6 + 3/12, "feet"),
  42411. weight: math.unit(170, "lb"),
  42412. name: "Front",
  42413. image: {
  42414. source: "./media/characters/sam-bat/front.svg",
  42415. extra: 1601/1411,
  42416. bottom: 125/1726
  42417. }
  42418. },
  42419. back: {
  42420. height: math.unit(6 + 3/12, "feet"),
  42421. weight: math.unit(170, "lb"),
  42422. name: "Back",
  42423. image: {
  42424. source: "./media/characters/sam-bat/back.svg",
  42425. extra: 1577/1405,
  42426. bottom: 58/1635
  42427. }
  42428. },
  42429. },
  42430. [
  42431. {
  42432. name: "Normal",
  42433. height: math.unit(6 + 3/12, "feet"),
  42434. default: true
  42435. },
  42436. ]
  42437. ))
  42438. characterMakers.push(() => makeCharacter(
  42439. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  42440. {
  42441. front: {
  42442. height: math.unit(59, "feet"),
  42443. weight: math.unit(40000, "lb"),
  42444. name: "Front",
  42445. image: {
  42446. source: "./media/characters/inari/front.svg",
  42447. extra: 1884/1350,
  42448. bottom: 95/1979
  42449. }
  42450. },
  42451. },
  42452. [
  42453. {
  42454. name: "Gigantamax",
  42455. height: math.unit(59, "feet"),
  42456. default: true
  42457. },
  42458. ]
  42459. ))
  42460. characterMakers.push(() => makeCharacter(
  42461. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  42462. {
  42463. front: {
  42464. height: math.unit(5 + 8/12, "feet"),
  42465. name: "Front",
  42466. image: {
  42467. source: "./media/characters/elizabeth/front.svg",
  42468. extra: 1395/1298,
  42469. bottom: 54/1449
  42470. }
  42471. },
  42472. mouth: {
  42473. height: math.unit(1.97, "feet"),
  42474. name: "Mouth",
  42475. image: {
  42476. source: "./media/characters/elizabeth/mouth.svg"
  42477. }
  42478. },
  42479. foot: {
  42480. height: math.unit(1.17, "feet"),
  42481. name: "Foot",
  42482. image: {
  42483. source: "./media/characters/elizabeth/foot.svg"
  42484. }
  42485. },
  42486. },
  42487. [
  42488. {
  42489. name: "Normal",
  42490. height: math.unit(5 + 8/12, "feet"),
  42491. default: true
  42492. },
  42493. {
  42494. name: "Minimacro",
  42495. height: math.unit(18, "feet")
  42496. },
  42497. {
  42498. name: "Macro",
  42499. height: math.unit(180, "feet")
  42500. },
  42501. ]
  42502. ))
  42503. characterMakers.push(() => makeCharacter(
  42504. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  42505. {
  42506. front: {
  42507. height: math.unit(5 + 2/12, "feet"),
  42508. name: "Front",
  42509. image: {
  42510. source: "./media/characters/october-gossamer/front.svg",
  42511. extra: 505/454,
  42512. bottom: 7/512
  42513. }
  42514. },
  42515. back: {
  42516. height: math.unit(5 + 2/12, "feet"),
  42517. name: "Back",
  42518. image: {
  42519. source: "./media/characters/october-gossamer/back.svg",
  42520. extra: 501/454,
  42521. bottom: 11/512
  42522. }
  42523. },
  42524. },
  42525. [
  42526. {
  42527. name: "Normal",
  42528. height: math.unit(5 + 2/12, "feet"),
  42529. default: true
  42530. },
  42531. ]
  42532. ))
  42533. characterMakers.push(() => makeCharacter(
  42534. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  42535. {
  42536. front: {
  42537. height: math.unit(5, "feet"),
  42538. name: "Front",
  42539. image: {
  42540. source: "./media/characters/epiglottis/front.svg",
  42541. extra: 923/849,
  42542. bottom: 17/940
  42543. }
  42544. },
  42545. },
  42546. [
  42547. {
  42548. name: "Original Size",
  42549. height: math.unit(10, "inches")
  42550. },
  42551. {
  42552. name: "Human Size",
  42553. height: math.unit(5, "feet"),
  42554. default: true
  42555. },
  42556. {
  42557. name: "Big",
  42558. height: math.unit(25, "feet")
  42559. },
  42560. {
  42561. name: "Bigger",
  42562. height: math.unit(50, "feet")
  42563. },
  42564. {
  42565. name: "oh lawd",
  42566. height: math.unit(75, "feet")
  42567. },
  42568. ]
  42569. ))
  42570. characterMakers.push(() => makeCharacter(
  42571. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  42572. {
  42573. front: {
  42574. height: math.unit(2 + 4/12, "feet"),
  42575. weight: math.unit(60, "lb"),
  42576. name: "Front",
  42577. image: {
  42578. source: "./media/characters/lerm/front.svg",
  42579. extra: 796/790,
  42580. bottom: 79/875
  42581. }
  42582. },
  42583. },
  42584. [
  42585. {
  42586. name: "Normal",
  42587. height: math.unit(2 + 4/12, "feet"),
  42588. default: true
  42589. },
  42590. ]
  42591. ))
  42592. characterMakers.push(() => makeCharacter(
  42593. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  42594. {
  42595. front: {
  42596. height: math.unit(5.5, "feet"),
  42597. weight: math.unit(130, "lb"),
  42598. name: "Front",
  42599. image: {
  42600. source: "./media/characters/xena-nebadon/front.svg",
  42601. extra: 1828/1730,
  42602. bottom: 79/1907
  42603. }
  42604. },
  42605. },
  42606. [
  42607. {
  42608. name: "Tiny Puppy",
  42609. height: math.unit(3, "inches")
  42610. },
  42611. {
  42612. name: "Normal",
  42613. height: math.unit(5.5, "feet"),
  42614. default: true
  42615. },
  42616. {
  42617. name: "Lotta Lady",
  42618. height: math.unit(12, "feet")
  42619. },
  42620. {
  42621. name: "Pretty Big",
  42622. height: math.unit(100, "feet")
  42623. },
  42624. {
  42625. name: "Big",
  42626. height: math.unit(500, "feet")
  42627. },
  42628. {
  42629. name: "Skyscraper Toys",
  42630. height: math.unit(2500, "feet")
  42631. },
  42632. {
  42633. name: "Plane Catcher",
  42634. height: math.unit(8, "miles")
  42635. },
  42636. {
  42637. name: "Planet Toys",
  42638. height: math.unit(15, "earths")
  42639. },
  42640. {
  42641. name: "Stardust",
  42642. height: math.unit(0.25, "galaxies")
  42643. },
  42644. {
  42645. name: "Snacks",
  42646. height: math.unit(70, "universes")
  42647. },
  42648. ]
  42649. ))
  42650. characterMakers.push(() => makeCharacter(
  42651. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  42652. {
  42653. front: {
  42654. height: math.unit(1.6, "meters"),
  42655. weight: math.unit(60, "kg"),
  42656. name: "Front",
  42657. image: {
  42658. source: "./media/characters/bounty/front.svg",
  42659. extra: 1426/1308,
  42660. bottom: 15/1441
  42661. }
  42662. },
  42663. back: {
  42664. height: math.unit(1.6, "meters"),
  42665. weight: math.unit(60, "kg"),
  42666. name: "Back",
  42667. image: {
  42668. source: "./media/characters/bounty/back.svg",
  42669. extra: 1417/1307,
  42670. bottom: 8/1425
  42671. }
  42672. },
  42673. },
  42674. [
  42675. {
  42676. name: "Normal",
  42677. height: math.unit(1.6, "meters"),
  42678. default: true
  42679. },
  42680. {
  42681. name: "Macro",
  42682. height: math.unit(300, "meters")
  42683. },
  42684. ]
  42685. ))
  42686. characterMakers.push(() => makeCharacter(
  42687. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  42688. {
  42689. front: {
  42690. height: math.unit(2 + 8/12, "feet"),
  42691. weight: math.unit(15, "lb"),
  42692. name: "Front",
  42693. image: {
  42694. source: "./media/characters/mochi/front.svg",
  42695. extra: 1022/852,
  42696. bottom: 435/1457
  42697. }
  42698. },
  42699. back: {
  42700. height: math.unit(2 + 8/12, "feet"),
  42701. weight: math.unit(15, "lb"),
  42702. name: "Back",
  42703. image: {
  42704. source: "./media/characters/mochi/back.svg",
  42705. extra: 1335/1119,
  42706. bottom: 39/1374
  42707. }
  42708. },
  42709. bird: {
  42710. height: math.unit(2 + 8/12, "feet"),
  42711. weight: math.unit(15, "lb"),
  42712. name: "Bird",
  42713. image: {
  42714. source: "./media/characters/mochi/bird.svg",
  42715. extra: 1251/1113,
  42716. bottom: 178/1429
  42717. }
  42718. },
  42719. kaiju: {
  42720. height: math.unit(154, "feet"),
  42721. weight: math.unit(1e7, "lb"),
  42722. name: "Kaiju",
  42723. image: {
  42724. source: "./media/characters/mochi/kaiju.svg",
  42725. extra: 460/324,
  42726. bottom: 40/500
  42727. }
  42728. },
  42729. head: {
  42730. height: math.unit(1.21, "feet"),
  42731. name: "Head",
  42732. image: {
  42733. source: "./media/characters/mochi/head.svg"
  42734. }
  42735. },
  42736. alternateTail: {
  42737. height: math.unit(2 + 8/12, "feet"),
  42738. weight: math.unit(45, "lb"),
  42739. name: "Alternate Tail",
  42740. image: {
  42741. source: "./media/characters/mochi/alternate-tail.svg",
  42742. extra: 139/76,
  42743. bottom: 45/184
  42744. }
  42745. },
  42746. },
  42747. [
  42748. {
  42749. name: "Micro",
  42750. height: math.unit(2, "inches")
  42751. },
  42752. {
  42753. name: "Normal",
  42754. height: math.unit(2 + 8/12, "feet"),
  42755. default: true
  42756. },
  42757. {
  42758. name: "Macro",
  42759. height: math.unit(106, "feet")
  42760. },
  42761. ]
  42762. ))
  42763. characterMakers.push(() => makeCharacter(
  42764. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42765. {
  42766. front: {
  42767. height: math.unit(5.67, "feet"),
  42768. weight: math.unit(135, "lb"),
  42769. name: "Front",
  42770. image: {
  42771. source: "./media/characters/sarel/front.svg",
  42772. extra: 865/788,
  42773. bottom: 97/962
  42774. }
  42775. },
  42776. back: {
  42777. height: math.unit(5.67, "feet"),
  42778. weight: math.unit(135, "lb"),
  42779. name: "Back",
  42780. image: {
  42781. source: "./media/characters/sarel/back.svg",
  42782. extra: 857/777,
  42783. bottom: 32/889
  42784. }
  42785. },
  42786. chozoan: {
  42787. height: math.unit(5.67, "feet"),
  42788. weight: math.unit(135, "lb"),
  42789. name: "Chozoan",
  42790. image: {
  42791. source: "./media/characters/sarel/chozoan.svg",
  42792. extra: 865/788,
  42793. bottom: 97/962
  42794. }
  42795. },
  42796. current: {
  42797. height: math.unit(5.67, "feet"),
  42798. weight: math.unit(135, "lb"),
  42799. name: "Current",
  42800. image: {
  42801. source: "./media/characters/sarel/current.svg",
  42802. extra: 865/788,
  42803. bottom: 97/962
  42804. }
  42805. },
  42806. head: {
  42807. height: math.unit(1.77, "feet"),
  42808. name: "Head",
  42809. image: {
  42810. source: "./media/characters/sarel/head.svg"
  42811. }
  42812. },
  42813. claws: {
  42814. height: math.unit(1.8, "feet"),
  42815. name: "Claws",
  42816. image: {
  42817. source: "./media/characters/sarel/claws.svg"
  42818. }
  42819. },
  42820. clawsAlt: {
  42821. height: math.unit(1.8, "feet"),
  42822. name: "Claws-alt",
  42823. image: {
  42824. source: "./media/characters/sarel/claws-alt.svg"
  42825. }
  42826. },
  42827. },
  42828. [
  42829. {
  42830. name: "Normal",
  42831. height: math.unit(5.67, "feet"),
  42832. default: true
  42833. },
  42834. ]
  42835. ))
  42836. characterMakers.push(() => makeCharacter(
  42837. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42838. {
  42839. front: {
  42840. height: math.unit(5500, "feet"),
  42841. name: "Front",
  42842. image: {
  42843. source: "./media/characters/alyonia/front.svg",
  42844. extra: 1200/1135,
  42845. bottom: 29/1229
  42846. }
  42847. },
  42848. back: {
  42849. height: math.unit(5500, "feet"),
  42850. name: "Back",
  42851. image: {
  42852. source: "./media/characters/alyonia/back.svg",
  42853. extra: 1205/1138,
  42854. bottom: 10/1215
  42855. }
  42856. },
  42857. },
  42858. [
  42859. {
  42860. name: "Small",
  42861. height: math.unit(10, "feet")
  42862. },
  42863. {
  42864. name: "Macro",
  42865. height: math.unit(500, "feet")
  42866. },
  42867. {
  42868. name: "Mega Macro",
  42869. height: math.unit(5500, "feet"),
  42870. default: true
  42871. },
  42872. {
  42873. name: "Mega Macro+",
  42874. height: math.unit(500000, "feet")
  42875. },
  42876. {
  42877. name: "Giga Macro",
  42878. height: math.unit(3000, "miles")
  42879. },
  42880. {
  42881. name: "Tera Macro",
  42882. height: math.unit(2.8e6, "miles")
  42883. },
  42884. {
  42885. name: "Galactic",
  42886. height: math.unit(120000, "lightyears")
  42887. },
  42888. ]
  42889. ))
  42890. characterMakers.push(() => makeCharacter(
  42891. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42892. {
  42893. werewolf: {
  42894. height: math.unit(8, "feet"),
  42895. weight: math.unit(425, "lb"),
  42896. name: "Werewolf",
  42897. image: {
  42898. source: "./media/characters/autumn/werewolf.svg",
  42899. extra: 2154/2031,
  42900. bottom: 160/2314
  42901. }
  42902. },
  42903. human: {
  42904. height: math.unit(5 + 8/12, "feet"),
  42905. weight: math.unit(150, "lb"),
  42906. name: "Human",
  42907. image: {
  42908. source: "./media/characters/autumn/human.svg",
  42909. extra: 1200/1149,
  42910. bottom: 30/1230
  42911. }
  42912. },
  42913. },
  42914. [
  42915. {
  42916. name: "Normal",
  42917. height: math.unit(8, "feet"),
  42918. default: true
  42919. },
  42920. ]
  42921. ))
  42922. characterMakers.push(() => makeCharacter(
  42923. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  42924. {
  42925. front: {
  42926. height: math.unit(8 + 5/12, "feet"),
  42927. weight: math.unit(825, "lb"),
  42928. name: "Front",
  42929. image: {
  42930. source: "./media/characters/cobalt-charizard/front.svg",
  42931. extra: 1268/1155,
  42932. bottom: 122/1390
  42933. }
  42934. },
  42935. side: {
  42936. height: math.unit(8 + 5/12, "feet"),
  42937. weight: math.unit(825, "lb"),
  42938. name: "Side",
  42939. image: {
  42940. source: "./media/characters/cobalt-charizard/side.svg",
  42941. extra: 1348/1257,
  42942. bottom: 58/1406
  42943. }
  42944. },
  42945. gMax: {
  42946. height: math.unit(134 + 11/12, "feet"),
  42947. name: "G-Max",
  42948. image: {
  42949. source: "./media/characters/cobalt-charizard/g-max.svg",
  42950. extra: 1835/1541,
  42951. bottom: 151/1986
  42952. }
  42953. },
  42954. },
  42955. [
  42956. {
  42957. name: "Normal",
  42958. height: math.unit(8 + 5/12, "feet"),
  42959. default: true
  42960. },
  42961. ]
  42962. ))
  42963. characterMakers.push(() => makeCharacter(
  42964. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  42965. {
  42966. front: {
  42967. height: math.unit(6 + 3/12, "feet"),
  42968. weight: math.unit(210, "lb"),
  42969. name: "Front",
  42970. image: {
  42971. source: "./media/characters/stella/front.svg",
  42972. extra: 3549/3335,
  42973. bottom: 51/3600
  42974. }
  42975. },
  42976. },
  42977. [
  42978. {
  42979. name: "Normal",
  42980. height: math.unit(6 + 3/12, "feet"),
  42981. default: true
  42982. },
  42983. ]
  42984. ))
  42985. characterMakers.push(() => makeCharacter(
  42986. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  42987. {
  42988. front: {
  42989. height: math.unit(5, "feet"),
  42990. weight: math.unit(90, "lb"),
  42991. name: "Front",
  42992. image: {
  42993. source: "./media/characters/riley-bishop/front.svg",
  42994. extra: 1450/1428,
  42995. bottom: 152/1602
  42996. }
  42997. },
  42998. },
  42999. [
  43000. {
  43001. name: "Normal",
  43002. height: math.unit(5, "feet"),
  43003. default: true
  43004. },
  43005. ]
  43006. ))
  43007. characterMakers.push(() => makeCharacter(
  43008. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  43009. {
  43010. side: {
  43011. height: math.unit(8 + 2/12, "feet"),
  43012. weight: math.unit(500, "kg"),
  43013. name: "Side",
  43014. image: {
  43015. source: "./media/characters/theo-arcanine/side.svg",
  43016. extra: 1342/1074,
  43017. bottom: 111/1453
  43018. }
  43019. },
  43020. },
  43021. [
  43022. {
  43023. name: "Normal",
  43024. height: math.unit(8 + 2/12, "feet"),
  43025. default: true
  43026. },
  43027. ]
  43028. ))
  43029. characterMakers.push(() => makeCharacter(
  43030. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  43031. {
  43032. front: {
  43033. height: math.unit(4, "feet"),
  43034. name: "Front",
  43035. image: {
  43036. source: "./media/characters/kali/front.svg",
  43037. extra: 1921/1357,
  43038. bottom: 70/1991
  43039. }
  43040. },
  43041. },
  43042. [
  43043. {
  43044. name: "Normal",
  43045. height: math.unit(4, "feet"),
  43046. default: true
  43047. },
  43048. {
  43049. name: "Macro",
  43050. height: math.unit(32, "meters")
  43051. },
  43052. {
  43053. name: "Macro+",
  43054. height: math.unit(150, "meters")
  43055. },
  43056. {
  43057. name: "Megamacro",
  43058. height: math.unit(7500, "meters")
  43059. },
  43060. {
  43061. name: "Megamacro+",
  43062. height: math.unit(80, "kilometers")
  43063. },
  43064. ]
  43065. ))
  43066. characterMakers.push(() => makeCharacter(
  43067. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  43068. {
  43069. side: {
  43070. height: math.unit(5 + 11/12, "feet"),
  43071. weight: math.unit(236, "lb"),
  43072. name: "Side",
  43073. image: {
  43074. source: "./media/characters/gapp/side.svg",
  43075. extra: 775/340,
  43076. bottom: 58/833
  43077. }
  43078. },
  43079. mouth: {
  43080. height: math.unit(2.98, "feet"),
  43081. name: "Mouth",
  43082. image: {
  43083. source: "./media/characters/gapp/mouth.svg"
  43084. }
  43085. },
  43086. },
  43087. [
  43088. {
  43089. name: "Normal",
  43090. height: math.unit(5 + 1/12, "feet"),
  43091. default: true
  43092. },
  43093. ]
  43094. ))
  43095. characterMakers.push(() => makeCharacter(
  43096. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  43097. {
  43098. front: {
  43099. height: math.unit(6, "feet"),
  43100. name: "Front",
  43101. image: {
  43102. source: "./media/characters/persephone/front.svg",
  43103. extra: 1895/1717,
  43104. bottom: 96/1991
  43105. }
  43106. },
  43107. back: {
  43108. height: math.unit(6, "feet"),
  43109. name: "Back",
  43110. image: {
  43111. source: "./media/characters/persephone/back.svg",
  43112. extra: 1868/1679,
  43113. bottom: 26/1894
  43114. }
  43115. },
  43116. casual: {
  43117. height: math.unit(6, "feet"),
  43118. name: "Casual",
  43119. image: {
  43120. source: "./media/characters/persephone/casual.svg",
  43121. extra: 1713/1541,
  43122. bottom: 76/1789
  43123. }
  43124. },
  43125. },
  43126. [
  43127. {
  43128. name: "Human Size",
  43129. height: math.unit(6, "feet")
  43130. },
  43131. {
  43132. name: "Big Steppy",
  43133. height: math.unit(600, "meters"),
  43134. default: true
  43135. },
  43136. {
  43137. name: "Galaxy Brain",
  43138. height: math.unit(1, "zettameter")
  43139. },
  43140. ]
  43141. ))
  43142. characterMakers.push(() => makeCharacter(
  43143. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  43144. {
  43145. front: {
  43146. height: math.unit(1.85, "meters"),
  43147. name: "Front",
  43148. image: {
  43149. source: "./media/characters/riley-foxthing/front.svg",
  43150. extra: 1495/1354,
  43151. bottom: 122/1617
  43152. }
  43153. },
  43154. frontAlt: {
  43155. height: math.unit(1.85, "meters"),
  43156. name: "Front (Alt)",
  43157. image: {
  43158. source: "./media/characters/riley-foxthing/front-alt.svg",
  43159. extra: 1572/1389,
  43160. bottom: 116/1688
  43161. }
  43162. },
  43163. },
  43164. [
  43165. {
  43166. name: "Normal Sized",
  43167. height: math.unit(1.85, "meters"),
  43168. default: true
  43169. },
  43170. {
  43171. name: "Quite Sizable",
  43172. height: math.unit(5, "meters")
  43173. },
  43174. {
  43175. name: "Rather Large",
  43176. height: math.unit(20, "meters")
  43177. },
  43178. {
  43179. name: "Macro",
  43180. height: math.unit(450, "meters")
  43181. },
  43182. {
  43183. name: "Giga",
  43184. height: math.unit(5, "km")
  43185. },
  43186. ]
  43187. ))
  43188. characterMakers.push(() => makeCharacter(
  43189. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  43190. {
  43191. front: {
  43192. height: math.unit(6, "feet"),
  43193. weight: math.unit(200, "lb"),
  43194. name: "Front",
  43195. image: {
  43196. source: "./media/characters/blizzard/front.svg",
  43197. extra: 1136/990,
  43198. bottom: 136/1272
  43199. }
  43200. },
  43201. back: {
  43202. height: math.unit(6, "feet"),
  43203. weight: math.unit(200, "lb"),
  43204. name: "Back",
  43205. image: {
  43206. source: "./media/characters/blizzard/back.svg",
  43207. extra: 1175/1034,
  43208. bottom: 97/1272
  43209. }
  43210. },
  43211. sitting: {
  43212. height: math.unit(3.725, "feet"),
  43213. weight: math.unit(200, "lb"),
  43214. name: "Sitting",
  43215. image: {
  43216. source: "./media/characters/blizzard/sitting.svg",
  43217. extra: 581/485,
  43218. bottom: 90/671
  43219. }
  43220. },
  43221. frontWizard: {
  43222. height: math.unit(7.9, "feet"),
  43223. weight: math.unit(200, "lb"),
  43224. name: "Front (Wizard)",
  43225. image: {
  43226. source: "./media/characters/blizzard/front-wizard.svg"
  43227. }
  43228. },
  43229. backWizard: {
  43230. height: math.unit(7.9, "feet"),
  43231. weight: math.unit(200, "lb"),
  43232. name: "Back (Wizard)",
  43233. image: {
  43234. source: "./media/characters/blizzard/back-wizard.svg"
  43235. }
  43236. },
  43237. frontNsfw: {
  43238. height: math.unit(6, "feet"),
  43239. weight: math.unit(200, "lb"),
  43240. name: "Front (NSFW)",
  43241. image: {
  43242. source: "./media/characters/blizzard/front-nsfw.svg",
  43243. extra: 1136/990,
  43244. bottom: 136/1272
  43245. }
  43246. },
  43247. backNsfw: {
  43248. height: math.unit(6, "feet"),
  43249. weight: math.unit(200, "lb"),
  43250. name: "Back (NSFW)",
  43251. image: {
  43252. source: "./media/characters/blizzard/back-nsfw.svg",
  43253. extra: 1175/1034,
  43254. bottom: 97/1272
  43255. }
  43256. },
  43257. sittingNsfw: {
  43258. height: math.unit(3.725, "feet"),
  43259. weight: math.unit(200, "lb"),
  43260. name: "Sitting (NSFW)",
  43261. image: {
  43262. source: "./media/characters/blizzard/sitting-nsfw.svg",
  43263. extra: 581/485,
  43264. bottom: 90/671
  43265. }
  43266. },
  43267. wizardFrontNsfw: {
  43268. height: math.unit(7.9, "feet"),
  43269. weight: math.unit(200, "lb"),
  43270. name: "Wizard (Front, NSFW)",
  43271. image: {
  43272. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  43273. }
  43274. },
  43275. },
  43276. [
  43277. {
  43278. name: "Normal",
  43279. height: math.unit(6, "feet"),
  43280. default: true
  43281. },
  43282. ]
  43283. ))
  43284. characterMakers.push(() => makeCharacter(
  43285. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  43286. {
  43287. front: {
  43288. height: math.unit(5 + 2/12, "feet"),
  43289. name: "Front",
  43290. image: {
  43291. source: "./media/characters/lumi/front.svg",
  43292. extra: 1328/1268,
  43293. bottom: 103/1431
  43294. }
  43295. },
  43296. back: {
  43297. height: math.unit(5 + 2/12, "feet"),
  43298. name: "Back",
  43299. image: {
  43300. source: "./media/characters/lumi/back.svg",
  43301. extra: 1381/1327,
  43302. bottom: 43/1424
  43303. }
  43304. },
  43305. },
  43306. [
  43307. {
  43308. name: "Normal",
  43309. height: math.unit(5 + 2/12, "feet"),
  43310. default: true
  43311. },
  43312. ]
  43313. ))
  43314. characterMakers.push(() => makeCharacter(
  43315. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  43316. {
  43317. front: {
  43318. height: math.unit(5 + 9/12, "feet"),
  43319. name: "Front",
  43320. image: {
  43321. source: "./media/characters/aliya-cotton/front.svg",
  43322. extra: 577/564,
  43323. bottom: 29/606
  43324. }
  43325. },
  43326. },
  43327. [
  43328. {
  43329. name: "Normal",
  43330. height: math.unit(5 + 9/12, "feet"),
  43331. default: true
  43332. },
  43333. ]
  43334. ))
  43335. characterMakers.push(() => makeCharacter(
  43336. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  43337. {
  43338. front: {
  43339. height: math.unit(2.7, "meters"),
  43340. weight: math.unit(25000, "lb"),
  43341. name: "Front",
  43342. image: {
  43343. source: "./media/characters/noah-luxray/front.svg",
  43344. extra: 1644/825,
  43345. bottom: 339/1983
  43346. }
  43347. },
  43348. side: {
  43349. height: math.unit(2.97, "meters"),
  43350. weight: math.unit(25000, "lb"),
  43351. name: "Side",
  43352. image: {
  43353. source: "./media/characters/noah-luxray/side.svg",
  43354. extra: 1319/650,
  43355. bottom: 163/1482
  43356. }
  43357. },
  43358. dick: {
  43359. height: math.unit(7.4, "feet"),
  43360. weight: math.unit(2500, "lb"),
  43361. name: "Dick",
  43362. image: {
  43363. source: "./media/characters/noah-luxray/dick.svg"
  43364. }
  43365. },
  43366. dickAlt: {
  43367. height: math.unit(10.83, "feet"),
  43368. weight: math.unit(2500, "lb"),
  43369. name: "Dick-alt",
  43370. image: {
  43371. source: "./media/characters/noah-luxray/dick-alt.svg"
  43372. }
  43373. },
  43374. },
  43375. [
  43376. {
  43377. name: "BIG",
  43378. height: math.unit(2.7, "meters"),
  43379. default: true
  43380. },
  43381. ]
  43382. ))
  43383. characterMakers.push(() => makeCharacter(
  43384. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  43385. {
  43386. standing: {
  43387. height: math.unit(183, "cm"),
  43388. weight: math.unit(68, "kg"),
  43389. name: "Standing",
  43390. image: {
  43391. source: "./media/characters/arion/standing.svg",
  43392. extra: 1869/1807,
  43393. bottom: 93/1962
  43394. }
  43395. },
  43396. reclining: {
  43397. height: math.unit(70.5, "cm"),
  43398. weight: math.unit(68, "lb"),
  43399. name: "Reclining",
  43400. image: {
  43401. source: "./media/characters/arion/reclining.svg",
  43402. extra: 937/870,
  43403. bottom: 63/1000
  43404. }
  43405. },
  43406. },
  43407. [
  43408. {
  43409. name: "Colossus Size, Low",
  43410. height: math.unit(33, "meters"),
  43411. default: true
  43412. },
  43413. {
  43414. name: "Colossus Size, Mid",
  43415. height: math.unit(52, "meters")
  43416. },
  43417. {
  43418. name: "Colossus Size, High",
  43419. height: math.unit(60, "meters")
  43420. },
  43421. {
  43422. name: "Titan Size, Low",
  43423. height: math.unit(91, "meters"),
  43424. },
  43425. {
  43426. name: "Titan Size, Mid",
  43427. height: math.unit(122, "meters")
  43428. },
  43429. {
  43430. name: "Titan Size, High",
  43431. height: math.unit(162, "meters")
  43432. },
  43433. ]
  43434. ))
  43435. characterMakers.push(() => makeCharacter(
  43436. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  43437. {
  43438. front: {
  43439. height: math.unit(53, "meters"),
  43440. name: "Front",
  43441. image: {
  43442. source: "./media/characters/stellar-marbey/front.svg",
  43443. extra: 1913/1805,
  43444. bottom: 92/2005
  43445. }
  43446. },
  43447. back: {
  43448. height: math.unit(53, "meters"),
  43449. name: "Back",
  43450. image: {
  43451. source: "./media/characters/stellar-marbey/back.svg",
  43452. extra: 1960/1851,
  43453. bottom: 28/1988
  43454. }
  43455. },
  43456. mouth: {
  43457. height: math.unit(3.5, "meters"),
  43458. name: "Mouth",
  43459. image: {
  43460. source: "./media/characters/stellar-marbey/mouth.svg"
  43461. }
  43462. },
  43463. },
  43464. [
  43465. {
  43466. name: "Macro",
  43467. height: math.unit(53, "meters"),
  43468. default: true
  43469. },
  43470. ]
  43471. ))
  43472. characterMakers.push(() => makeCharacter(
  43473. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  43474. {
  43475. front: {
  43476. height: math.unit(8 + 1/12, "feet"),
  43477. weight: math.unit(233, "lb"),
  43478. name: "Front",
  43479. image: {
  43480. source: "./media/characters/matsu/front.svg",
  43481. extra: 832/772,
  43482. bottom: 40/872
  43483. }
  43484. },
  43485. back: {
  43486. height: math.unit(8 + 1/12, "feet"),
  43487. weight: math.unit(233, "lb"),
  43488. name: "Back",
  43489. image: {
  43490. source: "./media/characters/matsu/back.svg",
  43491. extra: 839/780,
  43492. bottom: 47/886
  43493. }
  43494. },
  43495. },
  43496. [
  43497. {
  43498. name: "Normal",
  43499. height: math.unit(8 + 1/12, "feet"),
  43500. default: true
  43501. },
  43502. ]
  43503. ))
  43504. characterMakers.push(() => makeCharacter(
  43505. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  43506. {
  43507. front: {
  43508. height: math.unit(4, "feet"),
  43509. weight: math.unit(148, "lb"),
  43510. name: "Front",
  43511. image: {
  43512. source: "./media/characters/thiz/front.svg",
  43513. extra: 1913/1748,
  43514. bottom: 62/1975
  43515. }
  43516. },
  43517. },
  43518. [
  43519. {
  43520. name: "Normal",
  43521. height: math.unit(4, "feet"),
  43522. default: true
  43523. },
  43524. ]
  43525. ))
  43526. characterMakers.push(() => makeCharacter(
  43527. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  43528. {
  43529. front: {
  43530. height: math.unit(7 + 6/12, "feet"),
  43531. weight: math.unit(267, "lb"),
  43532. name: "Front",
  43533. image: {
  43534. source: "./media/characters/marcel/front.svg",
  43535. extra: 1221/1096,
  43536. bottom: 76/1297
  43537. }
  43538. },
  43539. },
  43540. [
  43541. {
  43542. name: "Normal",
  43543. height: math.unit(7 + 6/12, "feet"),
  43544. default: true
  43545. },
  43546. ]
  43547. ))
  43548. characterMakers.push(() => makeCharacter(
  43549. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  43550. {
  43551. side: {
  43552. height: math.unit(42, "meters"),
  43553. name: "Side",
  43554. image: {
  43555. source: "./media/characters/flake/side.svg",
  43556. extra: 1525/1306,
  43557. bottom: 209/1734
  43558. }
  43559. },
  43560. },
  43561. [
  43562. {
  43563. name: "Normal",
  43564. height: math.unit(42, "meters"),
  43565. default: true
  43566. },
  43567. ]
  43568. ))
  43569. characterMakers.push(() => makeCharacter(
  43570. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  43571. {
  43572. dressed: {
  43573. height: math.unit(6 + 4/12, "feet"),
  43574. weight: math.unit(520, "lb"),
  43575. name: "Dressed",
  43576. image: {
  43577. source: "./media/characters/someonne/dressed.svg",
  43578. extra: 1020/1010,
  43579. bottom: 178/1198
  43580. }
  43581. },
  43582. undressed: {
  43583. height: math.unit(6 + 4/12, "feet"),
  43584. weight: math.unit(520, "lb"),
  43585. name: "Undressed",
  43586. image: {
  43587. source: "./media/characters/someonne/undressed.svg",
  43588. extra: 1019/1014,
  43589. bottom: 169/1188
  43590. }
  43591. },
  43592. },
  43593. [
  43594. {
  43595. name: "Normal",
  43596. height: math.unit(6 + 4/12, "feet"),
  43597. default: true
  43598. },
  43599. ]
  43600. ))
  43601. characterMakers.push(() => makeCharacter(
  43602. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  43603. {
  43604. front: {
  43605. height: math.unit(3, "feet"),
  43606. weight: math.unit(30, "lb"),
  43607. name: "Front",
  43608. image: {
  43609. source: "./media/characters/till/front.svg",
  43610. extra: 892/823,
  43611. bottom: 55/947
  43612. }
  43613. },
  43614. },
  43615. [
  43616. {
  43617. name: "Normal",
  43618. height: math.unit(3, "feet"),
  43619. default: true
  43620. },
  43621. ]
  43622. ))
  43623. characterMakers.push(() => makeCharacter(
  43624. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  43625. {
  43626. front: {
  43627. height: math.unit(9 + 8/12, "feet"),
  43628. weight: math.unit(800, "lb"),
  43629. name: "Front",
  43630. image: {
  43631. source: "./media/characters/sydney-heki/front.svg",
  43632. extra: 1360/1300,
  43633. bottom: 22/1382
  43634. }
  43635. },
  43636. back: {
  43637. height: math.unit(9 + 8/12, "feet"),
  43638. weight: math.unit(800, "lb"),
  43639. name: "Back",
  43640. image: {
  43641. source: "./media/characters/sydney-heki/back.svg",
  43642. extra: 1356/1293,
  43643. bottom: 12/1368
  43644. }
  43645. },
  43646. frontDressed: {
  43647. height: math.unit(9 + 8/12, "feet"),
  43648. weight: math.unit(800, "lb"),
  43649. name: "Front-dressed",
  43650. image: {
  43651. source: "./media/characters/sydney-heki/front-dressed.svg",
  43652. extra: 1360/1300,
  43653. bottom: 22/1382
  43654. }
  43655. },
  43656. },
  43657. [
  43658. {
  43659. name: "Normal",
  43660. height: math.unit(9 + 8/12, "feet"),
  43661. default: true
  43662. },
  43663. {
  43664. name: "Macro",
  43665. height: math.unit(500, "feet")
  43666. },
  43667. {
  43668. name: "Megamacro",
  43669. height: math.unit(3.6, "miles")
  43670. },
  43671. ]
  43672. ))
  43673. characterMakers.push(() => makeCharacter(
  43674. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  43675. {
  43676. front: {
  43677. height: math.unit(200, "cm"),
  43678. weight: math.unit(250, "lb"),
  43679. name: "Front",
  43680. image: {
  43681. source: "./media/characters/fowler-karlsson/front.svg",
  43682. extra: 897/845,
  43683. bottom: 123/1020
  43684. }
  43685. },
  43686. back: {
  43687. height: math.unit(200, "cm"),
  43688. weight: math.unit(250, "lb"),
  43689. name: "Back",
  43690. image: {
  43691. source: "./media/characters/fowler-karlsson/back.svg",
  43692. extra: 999/944,
  43693. bottom: 26/1025
  43694. }
  43695. },
  43696. dick: {
  43697. height: math.unit(1.92, "feet"),
  43698. weight: math.unit(150, "lb"),
  43699. name: "Dick",
  43700. image: {
  43701. source: "./media/characters/fowler-karlsson/dick.svg"
  43702. }
  43703. },
  43704. },
  43705. [
  43706. {
  43707. name: "Normal",
  43708. height: math.unit(200, "cm"),
  43709. default: true
  43710. },
  43711. {
  43712. name: "Smaller Macro",
  43713. height: math.unit(90, "m")
  43714. },
  43715. {
  43716. name: "Macro",
  43717. height: math.unit(150, "m")
  43718. },
  43719. {
  43720. name: "Bigger Macro",
  43721. height: math.unit(300, "m")
  43722. },
  43723. ]
  43724. ))
  43725. characterMakers.push(() => makeCharacter(
  43726. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  43727. {
  43728. side: {
  43729. height: math.unit(8 + 2/12, "feet"),
  43730. weight: math.unit(1, "tonne"),
  43731. name: "Side",
  43732. image: {
  43733. source: "./media/characters/rylide/side.svg",
  43734. extra: 1318/1034,
  43735. bottom: 106/1424
  43736. }
  43737. },
  43738. sitting: {
  43739. height: math.unit(303, "cm"),
  43740. weight: math.unit(1, "tonne"),
  43741. name: "Sitting",
  43742. image: {
  43743. source: "./media/characters/rylide/sitting.svg",
  43744. extra: 1303/1103,
  43745. bottom: 36/1339
  43746. }
  43747. },
  43748. },
  43749. [
  43750. {
  43751. name: "Normal",
  43752. height: math.unit(8 + 2/12, "feet"),
  43753. default: true
  43754. },
  43755. ]
  43756. ))
  43757. characterMakers.push(() => makeCharacter(
  43758. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  43759. {
  43760. front: {
  43761. height: math.unit(5 + 10/12, "feet"),
  43762. weight: math.unit(160, "lb"),
  43763. name: "Front",
  43764. image: {
  43765. source: "./media/characters/pudask/front.svg",
  43766. extra: 1616/1590,
  43767. bottom: 161/1777
  43768. }
  43769. },
  43770. },
  43771. [
  43772. {
  43773. name: "Ferret Height",
  43774. height: math.unit(2 + 5/12, "feet")
  43775. },
  43776. {
  43777. name: "Canon Height",
  43778. height: math.unit(5 + 10/12, "feet"),
  43779. default: true
  43780. },
  43781. ]
  43782. ))
  43783. characterMakers.push(() => makeCharacter(
  43784. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  43785. {
  43786. front: {
  43787. height: math.unit(3 + 6/12, "feet"),
  43788. weight: math.unit(60, "lb"),
  43789. name: "Front",
  43790. image: {
  43791. source: "./media/characters/ramita/front.svg",
  43792. extra: 1402/1232,
  43793. bottom: 62/1464
  43794. }
  43795. },
  43796. dressed: {
  43797. height: math.unit(3 + 6/12, "feet"),
  43798. weight: math.unit(60, "lb"),
  43799. name: "Dressed",
  43800. image: {
  43801. source: "./media/characters/ramita/dressed.svg",
  43802. extra: 1534/1249,
  43803. bottom: 50/1584
  43804. }
  43805. },
  43806. },
  43807. [
  43808. {
  43809. name: "Normal",
  43810. height: math.unit(3 + 6/12, "feet"),
  43811. default: true
  43812. },
  43813. ]
  43814. ))
  43815. characterMakers.push(() => makeCharacter(
  43816. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  43817. {
  43818. front: {
  43819. height: math.unit(8, "feet"),
  43820. name: "Front",
  43821. image: {
  43822. source: "./media/characters/ark/front.svg",
  43823. extra: 772/693,
  43824. bottom: 45/817
  43825. }
  43826. },
  43827. },
  43828. [
  43829. {
  43830. name: "Normal",
  43831. height: math.unit(8, "feet"),
  43832. default: true
  43833. },
  43834. ]
  43835. ))
  43836. characterMakers.push(() => makeCharacter(
  43837. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  43838. {
  43839. front: {
  43840. height: math.unit(6, "feet"),
  43841. weight: math.unit(250, "lb"),
  43842. volume: math.unit(5/8, "gallons"),
  43843. name: "Front",
  43844. image: {
  43845. source: "./media/characters/ludwig-horn/front.svg",
  43846. extra: 1782/1635,
  43847. bottom: 96/1878
  43848. }
  43849. },
  43850. back: {
  43851. height: math.unit(6, "feet"),
  43852. weight: math.unit(250, "lb"),
  43853. volume: math.unit(5/8, "gallons"),
  43854. name: "Back",
  43855. image: {
  43856. source: "./media/characters/ludwig-horn/back.svg",
  43857. extra: 1874/1729,
  43858. bottom: 27/1901
  43859. }
  43860. },
  43861. dick: {
  43862. height: math.unit(1.05, "feet"),
  43863. weight: math.unit(15, "lb"),
  43864. volume: math.unit(5/8, "gallons"),
  43865. name: "Dick",
  43866. image: {
  43867. source: "./media/characters/ludwig-horn/dick.svg"
  43868. }
  43869. },
  43870. },
  43871. [
  43872. {
  43873. name: "Small",
  43874. height: math.unit(6, "feet")
  43875. },
  43876. {
  43877. name: "Typical",
  43878. height: math.unit(12, "feet"),
  43879. default: true
  43880. },
  43881. {
  43882. name: "Building",
  43883. height: math.unit(80, "feet")
  43884. },
  43885. {
  43886. name: "Town",
  43887. height: math.unit(800, "feet")
  43888. },
  43889. {
  43890. name: "Kingdom",
  43891. height: math.unit(80000, "feet")
  43892. },
  43893. {
  43894. name: "Planet",
  43895. height: math.unit(8000000, "feet")
  43896. },
  43897. {
  43898. name: "Universe",
  43899. height: math.unit(8000000000, "feet")
  43900. },
  43901. {
  43902. name: "Transcended",
  43903. height: math.unit(8e27, "feet")
  43904. },
  43905. ]
  43906. ))
  43907. characterMakers.push(() => makeCharacter(
  43908. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  43909. {
  43910. front: {
  43911. height: math.unit(5, "feet"),
  43912. weight: math.unit(50, "kg"),
  43913. name: "Front",
  43914. image: {
  43915. source: "./media/characters/biot-avery/front.svg",
  43916. extra: 1295/1232,
  43917. bottom: 86/1381
  43918. }
  43919. },
  43920. },
  43921. [
  43922. {
  43923. name: "Normal",
  43924. height: math.unit(5, "feet"),
  43925. default: true
  43926. },
  43927. ]
  43928. ))
  43929. characterMakers.push(() => makeCharacter(
  43930. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  43931. {
  43932. front: {
  43933. height: math.unit(6, "feet"),
  43934. name: "Front",
  43935. image: {
  43936. source: "./media/characters/kitsune-kiro/front.svg",
  43937. extra: 1270/1158,
  43938. bottom: 42/1312
  43939. }
  43940. },
  43941. frontAlt: {
  43942. height: math.unit(6, "feet"),
  43943. name: "Front-alt",
  43944. image: {
  43945. source: "./media/characters/kitsune-kiro/front-alt.svg",
  43946. extra: 1130/1081,
  43947. bottom: 36/1166
  43948. }
  43949. },
  43950. },
  43951. [
  43952. {
  43953. name: "Smol",
  43954. height: math.unit(3, "feet")
  43955. },
  43956. {
  43957. name: "Normal",
  43958. height: math.unit(6, "feet"),
  43959. default: true
  43960. },
  43961. ]
  43962. ))
  43963. characterMakers.push(() => makeCharacter(
  43964. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  43965. {
  43966. front: {
  43967. height: math.unit(6, "feet"),
  43968. weight: math.unit(125, "lb"),
  43969. name: "Front",
  43970. image: {
  43971. source: "./media/characters/jack-thatcher/front.svg",
  43972. extra: 1474/1370,
  43973. bottom: 26/1500
  43974. }
  43975. },
  43976. back: {
  43977. height: math.unit(6, "feet"),
  43978. weight: math.unit(125, "lb"),
  43979. name: "Back",
  43980. image: {
  43981. source: "./media/characters/jack-thatcher/back.svg",
  43982. extra: 1489/1384,
  43983. bottom: 18/1507
  43984. }
  43985. },
  43986. },
  43987. [
  43988. {
  43989. name: "Normal",
  43990. height: math.unit(6, "feet"),
  43991. default: true
  43992. },
  43993. {
  43994. name: "Macro",
  43995. height: math.unit(75, "feet")
  43996. },
  43997. {
  43998. name: "Macro-er",
  43999. height: math.unit(250, "feet")
  44000. },
  44001. ]
  44002. ))
  44003. characterMakers.push(() => makeCharacter(
  44004. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  44005. {
  44006. front: {
  44007. height: math.unit(7, "feet"),
  44008. weight: math.unit(110, "kg"),
  44009. name: "Front",
  44010. image: {
  44011. source: "./media/characters/max-hyper/front.svg",
  44012. extra: 1969/1881,
  44013. bottom: 49/2018
  44014. }
  44015. },
  44016. },
  44017. [
  44018. {
  44019. name: "Normal",
  44020. height: math.unit(7, "feet"),
  44021. default: true
  44022. },
  44023. ]
  44024. ))
  44025. characterMakers.push(() => makeCharacter(
  44026. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  44027. {
  44028. front: {
  44029. height: math.unit(5 + 5/12, "feet"),
  44030. weight: math.unit(160, "lb"),
  44031. name: "Front",
  44032. image: {
  44033. source: "./media/characters/spook/front.svg",
  44034. extra: 794/791,
  44035. bottom: 54/848
  44036. }
  44037. },
  44038. back: {
  44039. height: math.unit(5 + 5/12, "feet"),
  44040. weight: math.unit(160, "lb"),
  44041. name: "Back",
  44042. image: {
  44043. source: "./media/characters/spook/back.svg",
  44044. extra: 812/798,
  44045. bottom: 32/844
  44046. }
  44047. },
  44048. },
  44049. [
  44050. {
  44051. name: "Normal",
  44052. height: math.unit(5 + 5/12, "feet"),
  44053. default: true
  44054. },
  44055. ]
  44056. ))
  44057. characterMakers.push(() => makeCharacter(
  44058. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  44059. {
  44060. front: {
  44061. height: math.unit(18, "feet"),
  44062. name: "Front",
  44063. image: {
  44064. source: "./media/characters/xeaduulix/front.svg",
  44065. extra: 1380/1166,
  44066. bottom: 110/1490
  44067. }
  44068. },
  44069. back: {
  44070. height: math.unit(18, "feet"),
  44071. name: "Back",
  44072. image: {
  44073. source: "./media/characters/xeaduulix/back.svg",
  44074. extra: 1592/1170,
  44075. bottom: 128/1720
  44076. }
  44077. },
  44078. frontNsfw: {
  44079. height: math.unit(18, "feet"),
  44080. name: "Front (NSFW)",
  44081. image: {
  44082. source: "./media/characters/xeaduulix/front-nsfw.svg",
  44083. extra: 1380/1166,
  44084. bottom: 110/1490
  44085. }
  44086. },
  44087. backNsfw: {
  44088. height: math.unit(18, "feet"),
  44089. name: "Back (NSFW)",
  44090. image: {
  44091. source: "./media/characters/xeaduulix/back-nsfw.svg",
  44092. extra: 1592/1170,
  44093. bottom: 128/1720
  44094. }
  44095. },
  44096. },
  44097. [
  44098. {
  44099. name: "Normal",
  44100. height: math.unit(18, "feet"),
  44101. default: true
  44102. },
  44103. ]
  44104. ))
  44105. characterMakers.push(() => makeCharacter(
  44106. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  44107. {
  44108. spreadWings: {
  44109. height: math.unit(20, "feet"),
  44110. name: "Spread Wings",
  44111. image: {
  44112. source: "./media/characters/fledge/spread-wings.svg",
  44113. extra: 693/635,
  44114. bottom: 26/719
  44115. }
  44116. },
  44117. front: {
  44118. height: math.unit(20, "feet"),
  44119. name: "Front",
  44120. image: {
  44121. source: "./media/characters/fledge/front.svg",
  44122. extra: 684/637,
  44123. bottom: 18/702
  44124. }
  44125. },
  44126. frontAlt: {
  44127. height: math.unit(20, "feet"),
  44128. name: "Front (Alt)",
  44129. image: {
  44130. source: "./media/characters/fledge/front-alt.svg",
  44131. extra: 708/664,
  44132. bottom: 13/721
  44133. }
  44134. },
  44135. back: {
  44136. height: math.unit(20, "feet"),
  44137. name: "Back",
  44138. image: {
  44139. source: "./media/characters/fledge/back.svg",
  44140. extra: 718/634,
  44141. bottom: 22/740
  44142. }
  44143. },
  44144. head: {
  44145. height: math.unit(5.55, "feet"),
  44146. name: "Head",
  44147. image: {
  44148. source: "./media/characters/fledge/head.svg"
  44149. }
  44150. },
  44151. headAlt: {
  44152. height: math.unit(5.1, "feet"),
  44153. name: "Head (Alt)",
  44154. image: {
  44155. source: "./media/characters/fledge/head-alt.svg"
  44156. }
  44157. },
  44158. },
  44159. [
  44160. {
  44161. name: "Small",
  44162. height: math.unit(6 + 2/12, "feet")
  44163. },
  44164. {
  44165. name: "Big",
  44166. height: math.unit(20, "feet"),
  44167. default: true
  44168. },
  44169. {
  44170. name: "Giant",
  44171. height: math.unit(100, "feet")
  44172. },
  44173. {
  44174. name: "Macro",
  44175. height: math.unit(200, "feet")
  44176. },
  44177. ]
  44178. ))
  44179. characterMakers.push(() => makeCharacter(
  44180. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  44181. {
  44182. front: {
  44183. height: math.unit(1, "meter"),
  44184. name: "Front",
  44185. image: {
  44186. source: "./media/characters/atlas-morenai/front.svg",
  44187. extra: 1275/1043,
  44188. bottom: 19/1294
  44189. }
  44190. },
  44191. back: {
  44192. height: math.unit(1, "meter"),
  44193. name: "Back",
  44194. image: {
  44195. source: "./media/characters/atlas-morenai/back.svg",
  44196. extra: 1141/1001,
  44197. bottom: 25/1166
  44198. }
  44199. },
  44200. },
  44201. [
  44202. {
  44203. name: "Normal",
  44204. height: math.unit(1, "meter"),
  44205. default: true
  44206. },
  44207. {
  44208. name: "Magic-Infused",
  44209. height: math.unit(5, "meters")
  44210. },
  44211. ]
  44212. ))
  44213. characterMakers.push(() => makeCharacter(
  44214. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  44215. {
  44216. front: {
  44217. height: math.unit(5, "meters"),
  44218. name: "Front",
  44219. image: {
  44220. source: "./media/characters/cintia/front.svg",
  44221. extra: 1312/1228,
  44222. bottom: 38/1350
  44223. }
  44224. },
  44225. back: {
  44226. height: math.unit(5, "meters"),
  44227. name: "Back",
  44228. image: {
  44229. source: "./media/characters/cintia/back.svg",
  44230. extra: 1260/1166,
  44231. bottom: 98/1358
  44232. }
  44233. },
  44234. frontDick: {
  44235. height: math.unit(5, "meters"),
  44236. name: "Front (Dick)",
  44237. image: {
  44238. source: "./media/characters/cintia/front-dick.svg",
  44239. extra: 1312/1228,
  44240. bottom: 38/1350
  44241. }
  44242. },
  44243. backDick: {
  44244. height: math.unit(5, "meters"),
  44245. name: "Back (Dick)",
  44246. image: {
  44247. source: "./media/characters/cintia/back-dick.svg",
  44248. extra: 1260/1166,
  44249. bottom: 98/1358
  44250. }
  44251. },
  44252. bust: {
  44253. height: math.unit(1.97, "meters"),
  44254. name: "Bust",
  44255. image: {
  44256. source: "./media/characters/cintia/bust.svg",
  44257. extra: 617/565,
  44258. bottom: 0/617
  44259. }
  44260. },
  44261. },
  44262. [
  44263. {
  44264. name: "Normal",
  44265. height: math.unit(5, "meters"),
  44266. default: true
  44267. },
  44268. ]
  44269. ))
  44270. characterMakers.push(() => makeCharacter(
  44271. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  44272. {
  44273. side: {
  44274. height: math.unit(100, "feet"),
  44275. name: "Side",
  44276. image: {
  44277. source: "./media/characters/denora/side.svg",
  44278. extra: 875/803,
  44279. bottom: 9/884
  44280. }
  44281. },
  44282. },
  44283. [
  44284. {
  44285. name: "Standard",
  44286. height: math.unit(100, "feet"),
  44287. default: true
  44288. },
  44289. {
  44290. name: "Grand",
  44291. height: math.unit(1000, "feet")
  44292. },
  44293. {
  44294. name: "Conquering",
  44295. height: math.unit(10000, "feet")
  44296. },
  44297. ]
  44298. ))
  44299. characterMakers.push(() => makeCharacter(
  44300. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  44301. {
  44302. dressed: {
  44303. height: math.unit(8 + 5/12, "feet"),
  44304. weight: math.unit(700, "lb"),
  44305. name: "Dressed",
  44306. image: {
  44307. source: "./media/characters/kiva/dressed.svg",
  44308. extra: 1102/1055,
  44309. bottom: 60/1162
  44310. }
  44311. },
  44312. nude: {
  44313. height: math.unit(8 + 5/12, "feet"),
  44314. weight: math.unit(700, "lb"),
  44315. name: "Nude",
  44316. image: {
  44317. source: "./media/characters/kiva/nude.svg",
  44318. extra: 1102/1055,
  44319. bottom: 60/1162
  44320. }
  44321. },
  44322. },
  44323. [
  44324. {
  44325. name: "Base Height",
  44326. height: math.unit(8 + 5/12, "feet"),
  44327. default: true
  44328. },
  44329. {
  44330. name: "Macro",
  44331. height: math.unit(100, "feet")
  44332. },
  44333. {
  44334. name: "Max",
  44335. height: math.unit(3280, "feet")
  44336. },
  44337. ]
  44338. ))
  44339. characterMakers.push(() => makeCharacter(
  44340. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  44341. {
  44342. front: {
  44343. height: math.unit(6 + 8/12, "feet"),
  44344. weight: math.unit(250, "lb"),
  44345. name: "Front",
  44346. image: {
  44347. source: "./media/characters/ztragon/front.svg",
  44348. extra: 1825/1684,
  44349. bottom: 98/1923
  44350. }
  44351. },
  44352. },
  44353. [
  44354. {
  44355. name: "Normal",
  44356. height: math.unit(6 + 8/12, "feet"),
  44357. default: true
  44358. },
  44359. {
  44360. name: "Macro",
  44361. height: math.unit(80, "feet")
  44362. },
  44363. ]
  44364. ))
  44365. characterMakers.push(() => makeCharacter(
  44366. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  44367. {
  44368. front: {
  44369. height: math.unit(10.4, "feet"),
  44370. weight: math.unit(2, "tons"),
  44371. name: "Front",
  44372. image: {
  44373. source: "./media/characters/yesenia/front.svg",
  44374. extra: 1479/1474,
  44375. bottom: 233/1712
  44376. }
  44377. },
  44378. },
  44379. [
  44380. {
  44381. name: "Normal",
  44382. height: math.unit(10.4, "feet"),
  44383. default: true
  44384. },
  44385. ]
  44386. ))
  44387. characterMakers.push(() => makeCharacter(
  44388. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  44389. {
  44390. normal: {
  44391. height: math.unit(6 + 1/12, "feet"),
  44392. weight: math.unit(180, "lb"),
  44393. name: "Normal",
  44394. image: {
  44395. source: "./media/characters/leanne-lycheborne/normal.svg",
  44396. extra: 1748/1660,
  44397. bottom: 98/1846
  44398. }
  44399. },
  44400. were: {
  44401. height: math.unit(12, "feet"),
  44402. weight: math.unit(1600, "lb"),
  44403. name: "Were",
  44404. image: {
  44405. source: "./media/characters/leanne-lycheborne/were.svg",
  44406. extra: 1485/1432,
  44407. bottom: 66/1551
  44408. }
  44409. },
  44410. },
  44411. [
  44412. {
  44413. name: "Normal",
  44414. height: math.unit(6 + 1/12, "feet"),
  44415. default: true
  44416. },
  44417. ]
  44418. ))
  44419. characterMakers.push(() => makeCharacter(
  44420. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  44421. {
  44422. side: {
  44423. height: math.unit(13, "feet"),
  44424. name: "Side",
  44425. image: {
  44426. source: "./media/characters/kira-tyler/side.svg",
  44427. extra: 693/393,
  44428. bottom: 58/751
  44429. }
  44430. },
  44431. },
  44432. [
  44433. {
  44434. name: "Normal",
  44435. height: math.unit(13, "feet"),
  44436. default: true
  44437. },
  44438. ]
  44439. ))
  44440. characterMakers.push(() => makeCharacter(
  44441. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  44442. {
  44443. front: {
  44444. height: math.unit(10.3, "feet"),
  44445. weight: math.unit(150, "lb"),
  44446. name: "Front",
  44447. image: {
  44448. source: "./media/characters/blaze/front.svg",
  44449. extra: 1378/1286,
  44450. bottom: 172/1550
  44451. }
  44452. },
  44453. },
  44454. [
  44455. {
  44456. name: "Normal",
  44457. height: math.unit(10.3, "feet"),
  44458. default: true
  44459. },
  44460. ]
  44461. ))
  44462. characterMakers.push(() => makeCharacter(
  44463. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  44464. {
  44465. side: {
  44466. height: math.unit(2, "meters"),
  44467. weight: math.unit(400, "kg"),
  44468. name: "Side",
  44469. image: {
  44470. source: "./media/characters/anu/side.svg",
  44471. extra: 506/394,
  44472. bottom: 18/524
  44473. }
  44474. },
  44475. },
  44476. [
  44477. {
  44478. name: "Humanoid",
  44479. height: math.unit(2, "meters")
  44480. },
  44481. {
  44482. name: "Normal",
  44483. height: math.unit(5, "meters"),
  44484. default: true
  44485. },
  44486. ]
  44487. ))
  44488. characterMakers.push(() => makeCharacter(
  44489. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  44490. {
  44491. front: {
  44492. height: math.unit(5 + 5/12, "feet"),
  44493. weight: math.unit(170, "lb"),
  44494. name: "Front",
  44495. image: {
  44496. source: "./media/characters/synx-the-lynx/front.svg",
  44497. extra: 1893/1745,
  44498. bottom: 17/1910
  44499. }
  44500. },
  44501. side: {
  44502. height: math.unit(5 + 5/12, "feet"),
  44503. weight: math.unit(170, "lb"),
  44504. name: "Side",
  44505. image: {
  44506. source: "./media/characters/synx-the-lynx/side.svg",
  44507. extra: 1884/1740,
  44508. bottom: 39/1923
  44509. }
  44510. },
  44511. back: {
  44512. height: math.unit(5 + 5/12, "feet"),
  44513. weight: math.unit(170, "lb"),
  44514. name: "Back",
  44515. image: {
  44516. source: "./media/characters/synx-the-lynx/back.svg",
  44517. extra: 1903/1755,
  44518. bottom: 14/1917
  44519. }
  44520. },
  44521. },
  44522. [
  44523. {
  44524. name: "Normal",
  44525. height: math.unit(5 + 5/12, "feet"),
  44526. default: true
  44527. },
  44528. ]
  44529. ))
  44530. characterMakers.push(() => makeCharacter(
  44531. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  44532. {
  44533. back: {
  44534. height: math.unit(15, "feet"),
  44535. name: "Back",
  44536. image: {
  44537. source: "./media/characters/nadezda-fex/back.svg",
  44538. extra: 1695/1481,
  44539. bottom: 25/1720
  44540. }
  44541. },
  44542. },
  44543. [
  44544. {
  44545. name: "Normal",
  44546. height: math.unit(15, "feet"),
  44547. default: true
  44548. },
  44549. {
  44550. name: "Macro",
  44551. height: math.unit(2.5, "miles")
  44552. },
  44553. {
  44554. name: "Goddess",
  44555. height: math.unit(2, "multiverses")
  44556. },
  44557. ]
  44558. ))
  44559. characterMakers.push(() => makeCharacter(
  44560. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  44561. {
  44562. front: {
  44563. height: math.unit(216, "cm"),
  44564. name: "Front",
  44565. image: {
  44566. source: "./media/characters/lev/front.svg",
  44567. extra: 1728/1670,
  44568. bottom: 82/1810
  44569. }
  44570. },
  44571. back: {
  44572. height: math.unit(216, "cm"),
  44573. name: "Back",
  44574. image: {
  44575. source: "./media/characters/lev/back.svg",
  44576. extra: 1738/1675,
  44577. bottom: 24/1762
  44578. }
  44579. },
  44580. dressed: {
  44581. height: math.unit(216, "cm"),
  44582. name: "Dressed",
  44583. image: {
  44584. source: "./media/characters/lev/dressed.svg",
  44585. extra: 1397/1351,
  44586. bottom: 73/1470
  44587. }
  44588. },
  44589. head: {
  44590. height: math.unit(0.51, "meter"),
  44591. name: "Head",
  44592. image: {
  44593. source: "./media/characters/lev/head.svg"
  44594. }
  44595. },
  44596. },
  44597. [
  44598. {
  44599. name: "Normal",
  44600. height: math.unit(216, "cm"),
  44601. default: true
  44602. },
  44603. {
  44604. name: "Relatively Macro",
  44605. height: math.unit(80, "meters")
  44606. },
  44607. {
  44608. name: "Megamacro",
  44609. height: math.unit(21600, "meters")
  44610. },
  44611. {
  44612. name: "Megamacro+",
  44613. height: math.unit(64800, "meters")
  44614. },
  44615. ]
  44616. ))
  44617. characterMakers.push(() => makeCharacter(
  44618. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  44619. {
  44620. front: {
  44621. height: math.unit(2, "meters"),
  44622. weight: math.unit(80, "kg"),
  44623. name: "Front",
  44624. image: {
  44625. source: "./media/characters/moka/front.svg",
  44626. extra: 1337/1255,
  44627. bottom: 58/1395
  44628. }
  44629. },
  44630. },
  44631. [
  44632. {
  44633. name: "Micro",
  44634. height: math.unit(15, "cm")
  44635. },
  44636. {
  44637. name: "Normal",
  44638. height: math.unit(2, "meters"),
  44639. default: true
  44640. },
  44641. {
  44642. name: "Macro",
  44643. height: math.unit(20, "meters"),
  44644. },
  44645. ]
  44646. ))
  44647. characterMakers.push(() => makeCharacter(
  44648. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  44649. {
  44650. front: {
  44651. height: math.unit(9, "feet"),
  44652. weight: math.unit(240, "lb"),
  44653. name: "Front",
  44654. image: {
  44655. source: "./media/characters/kuzco/front.svg",
  44656. extra: 1593/1487,
  44657. bottom: 32/1625
  44658. }
  44659. },
  44660. side: {
  44661. height: math.unit(9, "feet"),
  44662. weight: math.unit(240, "lb"),
  44663. name: "Side",
  44664. image: {
  44665. source: "./media/characters/kuzco/side.svg",
  44666. extra: 1575/1485,
  44667. bottom: 30/1605
  44668. }
  44669. },
  44670. back: {
  44671. height: math.unit(9, "feet"),
  44672. weight: math.unit(240, "lb"),
  44673. name: "Back",
  44674. image: {
  44675. source: "./media/characters/kuzco/back.svg",
  44676. extra: 1603/1514,
  44677. bottom: 14/1617
  44678. }
  44679. },
  44680. },
  44681. [
  44682. {
  44683. name: "Normal",
  44684. height: math.unit(9, "feet"),
  44685. default: true
  44686. },
  44687. ]
  44688. ))
  44689. characterMakers.push(() => makeCharacter(
  44690. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  44691. {
  44692. side: {
  44693. height: math.unit(2, "meters"),
  44694. weight: math.unit(300, "kg"),
  44695. name: "Side",
  44696. image: {
  44697. source: "./media/characters/ceruleus/side.svg",
  44698. extra: 1068/974,
  44699. bottom: 126/1194
  44700. }
  44701. },
  44702. },
  44703. [
  44704. {
  44705. name: "Normal",
  44706. height: math.unit(16, "meters"),
  44707. default: true
  44708. },
  44709. ]
  44710. ))
  44711. characterMakers.push(() => makeCharacter(
  44712. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  44713. {
  44714. front: {
  44715. height: math.unit(9, "feet"),
  44716. weight: math.unit(500, "kg"),
  44717. name: "Front",
  44718. image: {
  44719. source: "./media/characters/acouya/front.svg",
  44720. extra: 1660/1473,
  44721. bottom: 28/1688
  44722. }
  44723. },
  44724. },
  44725. [
  44726. {
  44727. name: "Normal",
  44728. height: math.unit(9, "feet"),
  44729. default: true
  44730. },
  44731. ]
  44732. ))
  44733. characterMakers.push(() => makeCharacter(
  44734. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  44735. {
  44736. front: {
  44737. height: math.unit(5 + 6/12, "feet"),
  44738. weight: math.unit(195, "lb"),
  44739. name: "Front",
  44740. image: {
  44741. source: "./media/characters/vant/front.svg",
  44742. extra: 1396/1320,
  44743. bottom: 20/1416
  44744. }
  44745. },
  44746. back: {
  44747. height: math.unit(5 + 6/12, "feet"),
  44748. weight: math.unit(195, "lb"),
  44749. name: "Back",
  44750. image: {
  44751. source: "./media/characters/vant/back.svg",
  44752. extra: 1396/1320,
  44753. bottom: 20/1416
  44754. }
  44755. },
  44756. maw: {
  44757. height: math.unit(0.75, "feet"),
  44758. name: "Maw",
  44759. image: {
  44760. source: "./media/characters/vant/maw.svg"
  44761. }
  44762. },
  44763. paw: {
  44764. height: math.unit(1.07, "feet"),
  44765. name: "Paw",
  44766. image: {
  44767. source: "./media/characters/vant/paw.svg"
  44768. }
  44769. },
  44770. },
  44771. [
  44772. {
  44773. name: "Micro",
  44774. height: math.unit(0.25, "inches")
  44775. },
  44776. {
  44777. name: "Normal",
  44778. height: math.unit(5 + 6/12, "feet"),
  44779. default: true
  44780. },
  44781. {
  44782. name: "Macro",
  44783. height: math.unit(75, "feet")
  44784. },
  44785. ]
  44786. ))
  44787. characterMakers.push(() => makeCharacter(
  44788. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  44789. {
  44790. front: {
  44791. height: math.unit(30, "meters"),
  44792. weight: math.unit(363, "tons"),
  44793. name: "Front",
  44794. image: {
  44795. source: "./media/characters/ahra/front.svg",
  44796. extra: 1914/1814,
  44797. bottom: 46/1960
  44798. }
  44799. },
  44800. },
  44801. [
  44802. {
  44803. name: "Macro",
  44804. height: math.unit(30, "meters"),
  44805. default: true
  44806. },
  44807. ]
  44808. ))
  44809. characterMakers.push(() => makeCharacter(
  44810. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  44811. {
  44812. undressed: {
  44813. height: math.unit(2, "m"),
  44814. weight: math.unit(250, "kg"),
  44815. name: "Undressed",
  44816. image: {
  44817. source: "./media/characters/coriander/undressed.svg",
  44818. extra: 1757/1606,
  44819. bottom: 107/1864
  44820. }
  44821. },
  44822. dressed: {
  44823. height: math.unit(2, "m"),
  44824. weight: math.unit(250, "kg"),
  44825. name: "Dressed",
  44826. image: {
  44827. source: "./media/characters/coriander/dressed.svg",
  44828. extra: 1757/1606,
  44829. bottom: 107/1864
  44830. }
  44831. },
  44832. },
  44833. [
  44834. {
  44835. name: "Normal",
  44836. height: math.unit(4, "meters"),
  44837. default: true
  44838. },
  44839. {
  44840. name: "XL",
  44841. height: math.unit(6, "meters")
  44842. },
  44843. {
  44844. name: "XXL",
  44845. height: math.unit(8, "meters")
  44846. },
  44847. ]
  44848. ))
  44849. characterMakers.push(() => makeCharacter(
  44850. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  44851. {
  44852. front: {
  44853. height: math.unit(6, "feet"),
  44854. name: "Front",
  44855. image: {
  44856. source: "./media/characters/syrinx/front.svg",
  44857. extra: 1557/1259,
  44858. bottom: 171/1728
  44859. }
  44860. },
  44861. },
  44862. [
  44863. {
  44864. name: "Normal",
  44865. height: math.unit(6 + 3/12, "feet"),
  44866. default: true
  44867. },
  44868. ]
  44869. ))
  44870. characterMakers.push(() => makeCharacter(
  44871. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  44872. {
  44873. front: {
  44874. height: math.unit(11 + 6/12, "feet"),
  44875. weight: math.unit(1.5, "tons"),
  44876. name: "Front",
  44877. image: {
  44878. source: "./media/characters/bor/front.svg",
  44879. extra: 1189/1109,
  44880. bottom: 170/1359
  44881. }
  44882. },
  44883. },
  44884. [
  44885. {
  44886. name: "Normal",
  44887. height: math.unit(11 + 6/12, "feet"),
  44888. default: true
  44889. },
  44890. {
  44891. name: "Macro",
  44892. height: math.unit(32 + 9/12, "feet")
  44893. },
  44894. ]
  44895. ))
  44896. characterMakers.push(() => makeCharacter(
  44897. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  44898. {
  44899. anthro: {
  44900. height: math.unit(9, "feet"),
  44901. weight: math.unit(2076, "lb"),
  44902. name: "Anthro",
  44903. image: {
  44904. source: "./media/characters/abacus/anthro.svg",
  44905. extra: 1540/1494,
  44906. bottom: 233/1773
  44907. }
  44908. },
  44909. pigeon: {
  44910. height: math.unit(1, "feet"),
  44911. name: "Pigeon",
  44912. image: {
  44913. source: "./media/characters/abacus/pigeon.svg",
  44914. extra: 528/525,
  44915. bottom: 46/574
  44916. }
  44917. },
  44918. },
  44919. [
  44920. {
  44921. name: "Normal",
  44922. height: math.unit(9, "feet"),
  44923. default: true
  44924. },
  44925. ]
  44926. ))
  44927. characterMakers.push(() => makeCharacter(
  44928. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  44929. {
  44930. side: {
  44931. height: math.unit(6, "feet"),
  44932. name: "Side",
  44933. image: {
  44934. source: "./media/characters/delkhan/side.svg",
  44935. extra: 1884/1786,
  44936. bottom: 308/2192
  44937. }
  44938. },
  44939. head: {
  44940. height: math.unit(3.38, "feet"),
  44941. name: "Head",
  44942. image: {
  44943. source: "./media/characters/delkhan/head.svg"
  44944. }
  44945. },
  44946. },
  44947. [
  44948. {
  44949. name: "Normal",
  44950. height: math.unit(72, "feet"),
  44951. default: true
  44952. },
  44953. {
  44954. name: "Giant",
  44955. height: math.unit(172, "feet")
  44956. },
  44957. ]
  44958. ))
  44959. characterMakers.push(() => makeCharacter(
  44960. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  44961. {
  44962. standing: {
  44963. height: math.unit(6, "feet"),
  44964. name: "Standing",
  44965. image: {
  44966. source: "./media/characters/euchidat/standing.svg",
  44967. extra: 1612/1553,
  44968. bottom: 116/1728
  44969. }
  44970. },
  44971. leaning: {
  44972. height: math.unit(6, "feet"),
  44973. name: "Leaning",
  44974. image: {
  44975. source: "./media/characters/euchidat/leaning.svg",
  44976. extra: 1719/1674,
  44977. bottom: 27/1746
  44978. }
  44979. },
  44980. },
  44981. [
  44982. {
  44983. name: "Normal",
  44984. height: math.unit(175, "feet"),
  44985. default: true
  44986. },
  44987. {
  44988. name: "Megamacro",
  44989. height: math.unit(190, "miles")
  44990. },
  44991. {
  44992. name: "Gigamacro",
  44993. height: math.unit(190000, "miles")
  44994. },
  44995. ]
  44996. ))
  44997. characterMakers.push(() => makeCharacter(
  44998. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  44999. {
  45000. front: {
  45001. height: math.unit(6, "feet"),
  45002. weight: math.unit(150, "lb"),
  45003. name: "Front",
  45004. image: {
  45005. source: "./media/characters/rebecca-stack/front.svg",
  45006. extra: 1256/1201,
  45007. bottom: 18/1274
  45008. }
  45009. },
  45010. },
  45011. [
  45012. {
  45013. name: "Normal",
  45014. height: math.unit(5 + 8/12, "feet"),
  45015. default: true
  45016. },
  45017. {
  45018. name: "Demolitionist",
  45019. height: math.unit(200, "feet")
  45020. },
  45021. {
  45022. name: "Out of Control",
  45023. height: math.unit(2, "miles")
  45024. },
  45025. {
  45026. name: "Giga",
  45027. height: math.unit(7200, "miles")
  45028. },
  45029. ]
  45030. ))
  45031. characterMakers.push(() => makeCharacter(
  45032. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  45033. {
  45034. front: {
  45035. height: math.unit(6, "feet"),
  45036. weight: math.unit(150, "lb"),
  45037. name: "Front",
  45038. image: {
  45039. source: "./media/characters/jenny-cartwright/front.svg",
  45040. extra: 1384/1376,
  45041. bottom: 58/1442
  45042. }
  45043. },
  45044. },
  45045. [
  45046. {
  45047. name: "Normal",
  45048. height: math.unit(6 + 7/12, "feet"),
  45049. default: true
  45050. },
  45051. {
  45052. name: "Librarian",
  45053. height: math.unit(55, "feet")
  45054. },
  45055. {
  45056. name: "Sightseer",
  45057. height: math.unit(50, "miles")
  45058. },
  45059. {
  45060. name: "Giga",
  45061. height: math.unit(30000, "miles")
  45062. },
  45063. ]
  45064. ))
  45065. characterMakers.push(() => makeCharacter(
  45066. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  45067. {
  45068. nude: {
  45069. height: math.unit(8, "feet"),
  45070. weight: math.unit(225, "lb"),
  45071. name: "Nude",
  45072. image: {
  45073. source: "./media/characters/marvy/nude.svg",
  45074. extra: 1900/1683,
  45075. bottom: 89/1989
  45076. }
  45077. },
  45078. dressed: {
  45079. height: math.unit(8, "feet"),
  45080. weight: math.unit(225, "lb"),
  45081. name: "Dressed",
  45082. image: {
  45083. source: "./media/characters/marvy/dressed.svg",
  45084. extra: 1900/1683,
  45085. bottom: 89/1989
  45086. }
  45087. },
  45088. head: {
  45089. height: math.unit(2.85, "feet"),
  45090. name: "Head",
  45091. image: {
  45092. source: "./media/characters/marvy/head.svg"
  45093. }
  45094. },
  45095. },
  45096. [
  45097. {
  45098. name: "Normal",
  45099. height: math.unit(8, "feet"),
  45100. default: true
  45101. },
  45102. ]
  45103. ))
  45104. characterMakers.push(() => makeCharacter(
  45105. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  45106. {
  45107. front: {
  45108. height: math.unit(8, "feet"),
  45109. weight: math.unit(250, "lb"),
  45110. name: "Front",
  45111. image: {
  45112. source: "./media/characters/leah/front.svg",
  45113. extra: 1257/1149,
  45114. bottom: 109/1366
  45115. }
  45116. },
  45117. },
  45118. [
  45119. {
  45120. name: "Normal",
  45121. height: math.unit(8, "feet"),
  45122. default: true
  45123. },
  45124. {
  45125. name: "Minimacro",
  45126. height: math.unit(40, "feet")
  45127. },
  45128. {
  45129. name: "Macro",
  45130. height: math.unit(124, "feet")
  45131. },
  45132. {
  45133. name: "Megamacro",
  45134. height: math.unit(850, "feet")
  45135. },
  45136. ]
  45137. ))
  45138. characterMakers.push(() => makeCharacter(
  45139. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  45140. {
  45141. side: {
  45142. height: math.unit(13 + 6/12, "feet"),
  45143. weight: math.unit(3200, "lb"),
  45144. name: "Side",
  45145. image: {
  45146. source: "./media/characters/alvir/side.svg",
  45147. extra: 896/589,
  45148. bottom: 26/922
  45149. }
  45150. },
  45151. },
  45152. [
  45153. {
  45154. name: "Normal",
  45155. height: math.unit(13 + 6/12, "feet"),
  45156. default: true
  45157. },
  45158. ]
  45159. ))
  45160. characterMakers.push(() => makeCharacter(
  45161. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  45162. {
  45163. front: {
  45164. height: math.unit(5 + 4/12, "feet"),
  45165. weight: math.unit(236, "lb"),
  45166. name: "Front",
  45167. image: {
  45168. source: "./media/characters/zaina-khalil/front.svg",
  45169. extra: 1533/1485,
  45170. bottom: 94/1627
  45171. }
  45172. },
  45173. side: {
  45174. height: math.unit(5 + 4/12, "feet"),
  45175. weight: math.unit(236, "lb"),
  45176. name: "Side",
  45177. image: {
  45178. source: "./media/characters/zaina-khalil/side.svg",
  45179. extra: 1537/1498,
  45180. bottom: 66/1603
  45181. }
  45182. },
  45183. back: {
  45184. height: math.unit(5 + 4/12, "feet"),
  45185. weight: math.unit(236, "lb"),
  45186. name: "Back",
  45187. image: {
  45188. source: "./media/characters/zaina-khalil/back.svg",
  45189. extra: 1546/1494,
  45190. bottom: 89/1635
  45191. }
  45192. },
  45193. },
  45194. [
  45195. {
  45196. name: "Normal",
  45197. height: math.unit(5 + 4/12, "feet"),
  45198. default: true
  45199. },
  45200. ]
  45201. ))
  45202. characterMakers.push(() => makeCharacter(
  45203. { name: "Terry", species: ["husky"], tags: ["taur"] },
  45204. {
  45205. side: {
  45206. height: math.unit(12, "feet"),
  45207. weight: math.unit(4000, "lb"),
  45208. name: "Side",
  45209. image: {
  45210. source: "./media/characters/terry/side.svg",
  45211. extra: 1518/1439,
  45212. bottom: 149/1667
  45213. }
  45214. },
  45215. },
  45216. [
  45217. {
  45218. name: "Normal",
  45219. height: math.unit(12, "feet"),
  45220. default: true
  45221. },
  45222. ]
  45223. ))
  45224. characterMakers.push(() => makeCharacter(
  45225. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  45226. {
  45227. front: {
  45228. height: math.unit(12, "feet"),
  45229. weight: math.unit(1500, "lb"),
  45230. name: "Front",
  45231. image: {
  45232. source: "./media/characters/kahea/front.svg",
  45233. extra: 1722/1617,
  45234. bottom: 179/1901
  45235. }
  45236. },
  45237. },
  45238. [
  45239. {
  45240. name: "Normal",
  45241. height: math.unit(12, "feet"),
  45242. default: true
  45243. },
  45244. ]
  45245. ))
  45246. characterMakers.push(() => makeCharacter(
  45247. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  45248. {
  45249. demonFront: {
  45250. height: math.unit(36, "feet"),
  45251. name: "Front",
  45252. image: {
  45253. source: "./media/characters/alex-xuria/demon-front.svg",
  45254. extra: 1705/1673,
  45255. bottom: 198/1903
  45256. },
  45257. form: "demon",
  45258. default: true
  45259. },
  45260. demonBack: {
  45261. height: math.unit(36, "feet"),
  45262. name: "Back",
  45263. image: {
  45264. source: "./media/characters/alex-xuria/demon-back.svg",
  45265. extra: 1725/1693,
  45266. bottom: 70/1795
  45267. },
  45268. form: "demon"
  45269. },
  45270. demonHead: {
  45271. height: math.unit(2.14, "meters"),
  45272. name: "Head",
  45273. image: {
  45274. source: "./media/characters/alex-xuria/demon-head.svg"
  45275. },
  45276. form: "demon"
  45277. },
  45278. demonHand: {
  45279. height: math.unit(1.61, "meters"),
  45280. name: "Hand",
  45281. image: {
  45282. source: "./media/characters/alex-xuria/demon-hand.svg"
  45283. },
  45284. form: "demon"
  45285. },
  45286. demonPaw: {
  45287. height: math.unit(1.35, "meters"),
  45288. name: "Paw",
  45289. image: {
  45290. source: "./media/characters/alex-xuria/demon-paw.svg"
  45291. },
  45292. form: "demon"
  45293. },
  45294. demonFoot: {
  45295. height: math.unit(2.2, "meters"),
  45296. name: "Foot",
  45297. image: {
  45298. source: "./media/characters/alex-xuria/demon-foot.svg"
  45299. },
  45300. form: "demon"
  45301. },
  45302. demonCock: {
  45303. height: math.unit(1.74, "meters"),
  45304. name: "Cock",
  45305. image: {
  45306. source: "./media/characters/alex-xuria/demon-cock.svg"
  45307. },
  45308. form: "demon"
  45309. },
  45310. demonTailClosed: {
  45311. height: math.unit(1.47, "meters"),
  45312. name: "Tail (Closed)",
  45313. image: {
  45314. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  45315. },
  45316. form: "demon"
  45317. },
  45318. demonTailOpen: {
  45319. height: math.unit(2.85, "meters"),
  45320. name: "Tail (Open)",
  45321. image: {
  45322. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  45323. },
  45324. form: "demon"
  45325. },
  45326. incubusFront: {
  45327. height: math.unit(12, "feet"),
  45328. name: "Front",
  45329. image: {
  45330. source: "./media/characters/alex-xuria/incubus-front.svg",
  45331. extra: 1754/1677,
  45332. bottom: 125/1879
  45333. },
  45334. form: "incubus",
  45335. default: true
  45336. },
  45337. incubusBack: {
  45338. height: math.unit(12, "feet"),
  45339. name: "Back",
  45340. image: {
  45341. source: "./media/characters/alex-xuria/incubus-back.svg",
  45342. extra: 1702/1647,
  45343. bottom: 30/1732
  45344. },
  45345. form: "incubus"
  45346. },
  45347. incubusHead: {
  45348. height: math.unit(3.45, "feet"),
  45349. name: "Head",
  45350. image: {
  45351. source: "./media/characters/alex-xuria/incubus-head.svg"
  45352. },
  45353. form: "incubus"
  45354. },
  45355. rabbitFront: {
  45356. height: math.unit(6, "feet"),
  45357. name: "Front",
  45358. image: {
  45359. source: "./media/characters/alex-xuria/rabbit-front.svg",
  45360. extra: 1369/1349,
  45361. bottom: 45/1414
  45362. },
  45363. form: "rabbit",
  45364. default: true
  45365. },
  45366. rabbitSide: {
  45367. height: math.unit(6, "feet"),
  45368. name: "Side",
  45369. image: {
  45370. source: "./media/characters/alex-xuria/rabbit-side.svg",
  45371. extra: 1370/1356,
  45372. bottom: 37/1407
  45373. },
  45374. form: "rabbit"
  45375. },
  45376. rabbitBack: {
  45377. height: math.unit(6, "feet"),
  45378. name: "Back",
  45379. image: {
  45380. source: "./media/characters/alex-xuria/rabbit-back.svg",
  45381. extra: 1375/1358,
  45382. bottom: 43/1418
  45383. },
  45384. form: "rabbit"
  45385. },
  45386. },
  45387. [
  45388. {
  45389. name: "Normal",
  45390. height: math.unit(6, "feet"),
  45391. default: true,
  45392. form: "rabbit"
  45393. },
  45394. {
  45395. name: "Incubus",
  45396. height: math.unit(12, "feet"),
  45397. default: true,
  45398. form: "incubus"
  45399. },
  45400. {
  45401. name: "Demon",
  45402. height: math.unit(36, "feet"),
  45403. default: true,
  45404. form: "demon"
  45405. }
  45406. ],
  45407. {
  45408. "demon": {
  45409. name: "Demon",
  45410. default: true
  45411. },
  45412. "incubus": {
  45413. name: "Incubus",
  45414. },
  45415. "rabbit": {
  45416. name: "Rabbit"
  45417. }
  45418. }
  45419. ))
  45420. characterMakers.push(() => makeCharacter(
  45421. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  45422. {
  45423. front: {
  45424. height: math.unit(7 + 5/12, "feet"),
  45425. weight: math.unit(510, "lb"),
  45426. name: "Front",
  45427. image: {
  45428. source: "./media/characters/syrup/front.svg",
  45429. extra: 932/916,
  45430. bottom: 26/958
  45431. }
  45432. },
  45433. },
  45434. [
  45435. {
  45436. name: "Normal",
  45437. height: math.unit(7 + 5/12, "feet"),
  45438. default: true
  45439. },
  45440. {
  45441. name: "Big",
  45442. height: math.unit(50, "feet")
  45443. },
  45444. {
  45445. name: "Macro",
  45446. height: math.unit(300, "feet")
  45447. },
  45448. {
  45449. name: "Megamacro",
  45450. height: math.unit(1, "mile")
  45451. },
  45452. ]
  45453. ))
  45454. characterMakers.push(() => makeCharacter(
  45455. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  45456. {
  45457. front: {
  45458. height: math.unit(6 + 9/12, "feet"),
  45459. name: "Front",
  45460. image: {
  45461. source: "./media/characters/zeimne/front.svg",
  45462. extra: 1969/1806,
  45463. bottom: 53/2022
  45464. }
  45465. },
  45466. },
  45467. [
  45468. {
  45469. name: "Normal",
  45470. height: math.unit(6 + 9/12, "feet"),
  45471. default: true
  45472. },
  45473. {
  45474. name: "Giant",
  45475. height: math.unit(550, "feet")
  45476. },
  45477. {
  45478. name: "Mega",
  45479. height: math.unit(3, "miles")
  45480. },
  45481. {
  45482. name: "Giga",
  45483. height: math.unit(250, "miles")
  45484. },
  45485. {
  45486. name: "Tera",
  45487. height: math.unit(1, "AU")
  45488. },
  45489. ]
  45490. ))
  45491. characterMakers.push(() => makeCharacter(
  45492. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  45493. {
  45494. front: {
  45495. height: math.unit(5 + 2/12, "feet"),
  45496. name: "Front",
  45497. image: {
  45498. source: "./media/characters/grar/front.svg",
  45499. extra: 1331/1119,
  45500. bottom: 60/1391
  45501. }
  45502. },
  45503. back: {
  45504. height: math.unit(5 + 2/12, "feet"),
  45505. name: "Back",
  45506. image: {
  45507. source: "./media/characters/grar/back.svg",
  45508. extra: 1385/1169,
  45509. bottom: 23/1408
  45510. }
  45511. },
  45512. },
  45513. [
  45514. {
  45515. name: "Normal",
  45516. height: math.unit(5 + 2/12, "feet"),
  45517. default: true
  45518. },
  45519. ]
  45520. ))
  45521. characterMakers.push(() => makeCharacter(
  45522. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  45523. {
  45524. front: {
  45525. height: math.unit(13 + 7/12, "feet"),
  45526. weight: math.unit(2200, "lb"),
  45527. name: "Front",
  45528. image: {
  45529. source: "./media/characters/endraya/front.svg",
  45530. extra: 1289/1215,
  45531. bottom: 50/1339
  45532. }
  45533. },
  45534. nude: {
  45535. height: math.unit(13 + 7/12, "feet"),
  45536. weight: math.unit(2200, "lb"),
  45537. name: "Nude",
  45538. image: {
  45539. source: "./media/characters/endraya/nude.svg",
  45540. extra: 1247/1171,
  45541. bottom: 40/1287
  45542. }
  45543. },
  45544. head: {
  45545. height: math.unit(2.6, "feet"),
  45546. name: "Head",
  45547. image: {
  45548. source: "./media/characters/endraya/head.svg"
  45549. }
  45550. },
  45551. slit: {
  45552. height: math.unit(3.4, "feet"),
  45553. name: "Slit",
  45554. image: {
  45555. source: "./media/characters/endraya/slit.svg"
  45556. }
  45557. },
  45558. },
  45559. [
  45560. {
  45561. name: "Normal",
  45562. height: math.unit(13 + 7/12, "feet"),
  45563. default: true
  45564. },
  45565. {
  45566. name: "Macro",
  45567. height: math.unit(200, "feet")
  45568. },
  45569. ]
  45570. ))
  45571. characterMakers.push(() => makeCharacter(
  45572. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  45573. {
  45574. front: {
  45575. height: math.unit(412, "meters"),
  45576. name: "Front",
  45577. image: {
  45578. source: "./media/characters/rodryana/front.svg",
  45579. extra: 2002/1921,
  45580. bottom: 53/2055
  45581. }
  45582. },
  45583. back: {
  45584. height: math.unit(412, "meters"),
  45585. name: "Back",
  45586. image: {
  45587. source: "./media/characters/rodryana/back.svg",
  45588. extra: 1993/1926,
  45589. bottom: 48/2041
  45590. }
  45591. },
  45592. maw: {
  45593. height: math.unit(45, "meters"),
  45594. name: "Maw",
  45595. image: {
  45596. source: "./media/characters/rodryana/maw.svg"
  45597. }
  45598. },
  45599. slit: {
  45600. height: math.unit(72, "meters"),
  45601. name: "Slit",
  45602. image: {
  45603. source: "./media/characters/rodryana/slit.svg"
  45604. }
  45605. },
  45606. },
  45607. [
  45608. {
  45609. name: "Macro",
  45610. height: math.unit(412, "meters"),
  45611. default: true
  45612. },
  45613. ]
  45614. ))
  45615. characterMakers.push(() => makeCharacter(
  45616. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  45617. {
  45618. front: {
  45619. height: math.unit(6, "feet"),
  45620. weight: math.unit(1000, "lb"),
  45621. name: "Front",
  45622. image: {
  45623. source: "./media/characters/asaya/front.svg",
  45624. extra: 1460/1200,
  45625. bottom: 71/1531
  45626. }
  45627. },
  45628. },
  45629. [
  45630. {
  45631. name: "Normal",
  45632. height: math.unit(8, "km"),
  45633. default: true
  45634. },
  45635. ]
  45636. ))
  45637. characterMakers.push(() => makeCharacter(
  45638. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  45639. {
  45640. front: {
  45641. height: math.unit(3.5, "meters"),
  45642. name: "Front",
  45643. image: {
  45644. source: "./media/characters/sarzu-and-israz/front.svg",
  45645. extra: 1570/1558,
  45646. bottom: 150/1720
  45647. },
  45648. },
  45649. back: {
  45650. height: math.unit(3.5, "meters"),
  45651. name: "Back",
  45652. image: {
  45653. source: "./media/characters/sarzu-and-israz/back.svg",
  45654. extra: 1523/1509,
  45655. bottom: 132/1655
  45656. },
  45657. },
  45658. frontFemale: {
  45659. height: math.unit(3.5, "meters"),
  45660. name: "Front (Female)",
  45661. image: {
  45662. source: "./media/characters/sarzu-and-israz/front-female.svg",
  45663. extra: 1570/1558,
  45664. bottom: 150/1720
  45665. },
  45666. },
  45667. frontHerm: {
  45668. height: math.unit(3.5, "meters"),
  45669. name: "Front (Herm)",
  45670. image: {
  45671. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  45672. extra: 1570/1558,
  45673. bottom: 150/1720
  45674. },
  45675. },
  45676. },
  45677. [
  45678. {
  45679. name: "Normal",
  45680. height: math.unit(3.5, "meters"),
  45681. default: true,
  45682. },
  45683. {
  45684. name: "Macro",
  45685. height: math.unit(65.5, "meters"),
  45686. },
  45687. ],
  45688. ))
  45689. characterMakers.push(() => makeCharacter(
  45690. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  45691. {
  45692. front: {
  45693. height: math.unit(6, "feet"),
  45694. weight: math.unit(250, "lb"),
  45695. name: "Front",
  45696. image: {
  45697. source: "./media/characters/zenimma/front.svg",
  45698. extra: 1346/1320,
  45699. bottom: 58/1404
  45700. }
  45701. },
  45702. back: {
  45703. height: math.unit(6, "feet"),
  45704. weight: math.unit(250, "lb"),
  45705. name: "Back",
  45706. image: {
  45707. source: "./media/characters/zenimma/back.svg",
  45708. extra: 1324/1308,
  45709. bottom: 44/1368
  45710. }
  45711. },
  45712. dick: {
  45713. height: math.unit(1.44, "feet"),
  45714. name: "Dick",
  45715. image: {
  45716. source: "./media/characters/zenimma/dick.svg"
  45717. }
  45718. },
  45719. },
  45720. [
  45721. {
  45722. name: "Canon Height",
  45723. height: math.unit(66, "miles"),
  45724. default: true
  45725. },
  45726. ]
  45727. ))
  45728. characterMakers.push(() => makeCharacter(
  45729. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  45730. {
  45731. nude: {
  45732. height: math.unit(6, "feet"),
  45733. weight: math.unit(150, "lb"),
  45734. name: "Nude",
  45735. image: {
  45736. source: "./media/characters/shavon/nude.svg",
  45737. extra: 1242/1096,
  45738. bottom: 98/1340
  45739. }
  45740. },
  45741. dressed: {
  45742. height: math.unit(6, "feet"),
  45743. weight: math.unit(150, "lb"),
  45744. name: "Dressed",
  45745. image: {
  45746. source: "./media/characters/shavon/dressed.svg",
  45747. extra: 1242/1096,
  45748. bottom: 98/1340
  45749. }
  45750. },
  45751. },
  45752. [
  45753. {
  45754. name: "Macro",
  45755. height: math.unit(255, "feet"),
  45756. default: true
  45757. },
  45758. ]
  45759. ))
  45760. characterMakers.push(() => makeCharacter(
  45761. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  45762. {
  45763. front: {
  45764. height: math.unit(6, "feet"),
  45765. name: "Front",
  45766. image: {
  45767. source: "./media/characters/steph/front.svg",
  45768. extra: 1430/1330,
  45769. bottom: 54/1484
  45770. }
  45771. },
  45772. },
  45773. [
  45774. {
  45775. name: "Normal",
  45776. height: math.unit(6, "feet"),
  45777. default: true
  45778. },
  45779. ]
  45780. ))
  45781. characterMakers.push(() => makeCharacter(
  45782. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  45783. {
  45784. front: {
  45785. height: math.unit(9, "feet"),
  45786. weight: math.unit(400, "lb"),
  45787. name: "Front",
  45788. image: {
  45789. source: "./media/characters/kil'aman/front.svg",
  45790. extra: 1210/1159,
  45791. bottom: 109/1319
  45792. }
  45793. },
  45794. head: {
  45795. height: math.unit(2.14, "feet"),
  45796. name: "Head",
  45797. image: {
  45798. source: "./media/characters/kil'aman/head.svg"
  45799. }
  45800. },
  45801. maw: {
  45802. height: math.unit(1.21, "feet"),
  45803. name: "Maw",
  45804. image: {
  45805. source: "./media/characters/kil'aman/maw.svg"
  45806. }
  45807. },
  45808. foot: {
  45809. height: math.unit(1.7, "feet"),
  45810. name: "Foot",
  45811. image: {
  45812. source: "./media/characters/kil'aman/foot.svg"
  45813. }
  45814. },
  45815. dick: {
  45816. height: math.unit(2.1, "feet"),
  45817. name: "Dick",
  45818. image: {
  45819. source: "./media/characters/kil'aman/dick.svg"
  45820. }
  45821. },
  45822. },
  45823. [
  45824. {
  45825. name: "Normal",
  45826. height: math.unit(9, "feet")
  45827. },
  45828. {
  45829. name: "Canon Height",
  45830. height: math.unit(10, "miles"),
  45831. default: true
  45832. },
  45833. {
  45834. name: "Maximum",
  45835. height: math.unit(6e9, "miles")
  45836. },
  45837. ]
  45838. ))
  45839. characterMakers.push(() => makeCharacter(
  45840. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  45841. {
  45842. front: {
  45843. height: math.unit(90, "feet"),
  45844. weight: math.unit(675000, "lb"),
  45845. name: "Front",
  45846. image: {
  45847. source: "./media/characters/qadan/front.svg",
  45848. extra: 1012/1004,
  45849. bottom: 78/1090
  45850. }
  45851. },
  45852. back: {
  45853. height: math.unit(90, "feet"),
  45854. weight: math.unit(675000, "lb"),
  45855. name: "Back",
  45856. image: {
  45857. source: "./media/characters/qadan/back.svg",
  45858. extra: 1042/1031,
  45859. bottom: 55/1097
  45860. }
  45861. },
  45862. armored: {
  45863. height: math.unit(90, "feet"),
  45864. weight: math.unit(675000, "lb"),
  45865. name: "Armored",
  45866. image: {
  45867. source: "./media/characters/qadan/armored.svg",
  45868. extra: 1047/1037,
  45869. bottom: 48/1095
  45870. }
  45871. },
  45872. },
  45873. [
  45874. {
  45875. name: "Normal",
  45876. height: math.unit(90, "feet"),
  45877. default: true
  45878. },
  45879. ]
  45880. ))
  45881. characterMakers.push(() => makeCharacter(
  45882. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  45883. {
  45884. front: {
  45885. height: math.unit(6, "feet"),
  45886. weight: math.unit(225, "lb"),
  45887. name: "Front",
  45888. image: {
  45889. source: "./media/characters/brooke/front.svg",
  45890. extra: 1050/1010,
  45891. bottom: 66/1116
  45892. }
  45893. },
  45894. back: {
  45895. height: math.unit(6, "feet"),
  45896. weight: math.unit(225, "lb"),
  45897. name: "Back",
  45898. image: {
  45899. source: "./media/characters/brooke/back.svg",
  45900. extra: 1053/1013,
  45901. bottom: 41/1094
  45902. }
  45903. },
  45904. dressed: {
  45905. height: math.unit(6, "feet"),
  45906. weight: math.unit(225, "lb"),
  45907. name: "Dressed",
  45908. image: {
  45909. source: "./media/characters/brooke/dressed.svg",
  45910. extra: 1050/1010,
  45911. bottom: 66/1116
  45912. }
  45913. },
  45914. },
  45915. [
  45916. {
  45917. name: "Canon Height",
  45918. height: math.unit(500, "miles"),
  45919. default: true
  45920. },
  45921. ]
  45922. ))
  45923. characterMakers.push(() => makeCharacter(
  45924. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  45925. {
  45926. front: {
  45927. height: math.unit(6 + 2/12, "feet"),
  45928. weight: math.unit(210, "lb"),
  45929. name: "Front",
  45930. image: {
  45931. source: "./media/characters/wubs/front.svg",
  45932. extra: 1345/1325,
  45933. bottom: 70/1415
  45934. }
  45935. },
  45936. back: {
  45937. height: math.unit(6 + 2/12, "feet"),
  45938. weight: math.unit(210, "lb"),
  45939. name: "Back",
  45940. image: {
  45941. source: "./media/characters/wubs/back.svg",
  45942. extra: 1296/1275,
  45943. bottom: 58/1354
  45944. }
  45945. },
  45946. },
  45947. [
  45948. {
  45949. name: "Normal",
  45950. height: math.unit(6 + 2/12, "feet"),
  45951. default: true
  45952. },
  45953. {
  45954. name: "Macro",
  45955. height: math.unit(1000, "feet")
  45956. },
  45957. {
  45958. name: "Megamacro",
  45959. height: math.unit(1, "mile")
  45960. },
  45961. ]
  45962. ))
  45963. characterMakers.push(() => makeCharacter(
  45964. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  45965. {
  45966. front: {
  45967. height: math.unit(4, "feet"),
  45968. weight: math.unit(120, "lb"),
  45969. name: "Front",
  45970. image: {
  45971. source: "./media/characters/blue/front.svg",
  45972. extra: 1636/1525,
  45973. bottom: 43/1679
  45974. }
  45975. },
  45976. back: {
  45977. height: math.unit(4, "feet"),
  45978. weight: math.unit(120, "lb"),
  45979. name: "Back",
  45980. image: {
  45981. source: "./media/characters/blue/back.svg",
  45982. extra: 1660/1560,
  45983. bottom: 57/1717
  45984. }
  45985. },
  45986. paws: {
  45987. height: math.unit(0.826, "feet"),
  45988. name: "Paws",
  45989. image: {
  45990. source: "./media/characters/blue/paws.svg"
  45991. }
  45992. },
  45993. },
  45994. [
  45995. {
  45996. name: "Micro",
  45997. height: math.unit(3, "inches")
  45998. },
  45999. {
  46000. name: "Normal",
  46001. height: math.unit(4, "feet"),
  46002. default: true
  46003. },
  46004. {
  46005. name: "Femenine Form",
  46006. height: math.unit(14, "feet")
  46007. },
  46008. {
  46009. name: "Werebat Form",
  46010. height: math.unit(18, "feet")
  46011. },
  46012. ]
  46013. ))
  46014. characterMakers.push(() => makeCharacter(
  46015. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  46016. {
  46017. female: {
  46018. height: math.unit(7 + 4/12, "feet"),
  46019. weight: math.unit(243, "lb"),
  46020. name: "Female",
  46021. image: {
  46022. source: "./media/characters/kaya/female.svg",
  46023. extra: 975/898,
  46024. bottom: 34/1009
  46025. }
  46026. },
  46027. herm: {
  46028. height: math.unit(7 + 4/12, "feet"),
  46029. weight: math.unit(243, "lb"),
  46030. name: "Herm",
  46031. image: {
  46032. source: "./media/characters/kaya/herm.svg",
  46033. extra: 975/898,
  46034. bottom: 34/1009
  46035. }
  46036. },
  46037. },
  46038. [
  46039. {
  46040. name: "Normal",
  46041. height: math.unit(7 + 4/12, "feet"),
  46042. default: true
  46043. },
  46044. ]
  46045. ))
  46046. characterMakers.push(() => makeCharacter(
  46047. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  46048. {
  46049. female: {
  46050. height: math.unit(9 + 4/12, "feet"),
  46051. weight: math.unit(398, "lb"),
  46052. name: "Female",
  46053. image: {
  46054. source: "./media/characters/kassandra/female.svg",
  46055. extra: 908/839,
  46056. bottom: 61/969
  46057. }
  46058. },
  46059. intersex: {
  46060. height: math.unit(9 + 4/12, "feet"),
  46061. weight: math.unit(398, "lb"),
  46062. name: "Intersex",
  46063. image: {
  46064. source: "./media/characters/kassandra/intersex.svg",
  46065. extra: 908/839,
  46066. bottom: 61/969
  46067. }
  46068. },
  46069. },
  46070. [
  46071. {
  46072. name: "Normal",
  46073. height: math.unit(9 + 4/12, "feet"),
  46074. default: true
  46075. },
  46076. ]
  46077. ))
  46078. characterMakers.push(() => makeCharacter(
  46079. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  46080. {
  46081. front: {
  46082. height: math.unit(3, "meters"),
  46083. name: "Front",
  46084. image: {
  46085. source: "./media/characters/amy/front.svg",
  46086. extra: 1380/1343,
  46087. bottom: 70/1450
  46088. }
  46089. },
  46090. back: {
  46091. height: math.unit(3, "meters"),
  46092. name: "Back",
  46093. image: {
  46094. source: "./media/characters/amy/back.svg",
  46095. extra: 1380/1347,
  46096. bottom: 66/1446
  46097. }
  46098. },
  46099. },
  46100. [
  46101. {
  46102. name: "Normal",
  46103. height: math.unit(3, "meters"),
  46104. default: true
  46105. },
  46106. ]
  46107. ))
  46108. characterMakers.push(() => makeCharacter(
  46109. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  46110. {
  46111. side: {
  46112. height: math.unit(47, "cm"),
  46113. weight: math.unit(10.8, "kg"),
  46114. name: "Side",
  46115. image: {
  46116. source: "./media/characters/alphaschakal/side.svg",
  46117. extra: 1058/568,
  46118. bottom: 62/1120
  46119. }
  46120. },
  46121. back: {
  46122. height: math.unit(78, "cm"),
  46123. weight: math.unit(10.8, "kg"),
  46124. name: "Back",
  46125. image: {
  46126. source: "./media/characters/alphaschakal/back.svg",
  46127. extra: 1102/942,
  46128. bottom: 185/1287
  46129. }
  46130. },
  46131. head: {
  46132. height: math.unit(28, "cm"),
  46133. name: "Head",
  46134. image: {
  46135. source: "./media/characters/alphaschakal/head.svg",
  46136. extra: 696/508,
  46137. bottom: 0/696
  46138. }
  46139. },
  46140. paw: {
  46141. height: math.unit(16, "cm"),
  46142. name: "Paw",
  46143. image: {
  46144. source: "./media/characters/alphaschakal/paw.svg"
  46145. }
  46146. },
  46147. },
  46148. [
  46149. {
  46150. name: "Normal",
  46151. height: math.unit(47, "cm"),
  46152. default: true
  46153. },
  46154. {
  46155. name: "Macro",
  46156. height: math.unit(340, "cm")
  46157. },
  46158. ]
  46159. ))
  46160. characterMakers.push(() => makeCharacter(
  46161. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  46162. {
  46163. front: {
  46164. height: math.unit(36, "earths"),
  46165. name: "Front",
  46166. image: {
  46167. source: "./media/characters/ecobyss/front.svg",
  46168. extra: 1282/1215,
  46169. bottom: 11/1293
  46170. }
  46171. },
  46172. back: {
  46173. height: math.unit(36, "earths"),
  46174. name: "Back",
  46175. image: {
  46176. source: "./media/characters/ecobyss/back.svg",
  46177. extra: 1291/1222,
  46178. bottom: 8/1299
  46179. }
  46180. },
  46181. },
  46182. [
  46183. {
  46184. name: "Normal",
  46185. height: math.unit(36, "earths"),
  46186. default: true
  46187. },
  46188. ]
  46189. ))
  46190. characterMakers.push(() => makeCharacter(
  46191. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  46192. {
  46193. front: {
  46194. height: math.unit(12, "feet"),
  46195. name: "Front",
  46196. image: {
  46197. source: "./media/characters/vasuk/front.svg",
  46198. extra: 1326/1207,
  46199. bottom: 64/1390
  46200. }
  46201. },
  46202. },
  46203. [
  46204. {
  46205. name: "Normal",
  46206. height: math.unit(12, "feet"),
  46207. default: true
  46208. },
  46209. ]
  46210. ))
  46211. characterMakers.push(() => makeCharacter(
  46212. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  46213. {
  46214. side: {
  46215. height: math.unit(100, "feet"),
  46216. name: "Side",
  46217. image: {
  46218. source: "./media/characters/linneaus/side.svg",
  46219. extra: 987/807,
  46220. bottom: 47/1034
  46221. }
  46222. },
  46223. },
  46224. [
  46225. {
  46226. name: "Macro",
  46227. height: math.unit(100, "feet"),
  46228. default: true
  46229. },
  46230. ]
  46231. ))
  46232. characterMakers.push(() => makeCharacter(
  46233. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  46234. {
  46235. front: {
  46236. height: math.unit(8, "feet"),
  46237. weight: math.unit(1200, "lb"),
  46238. name: "Front",
  46239. image: {
  46240. source: "./media/characters/nyterious-daligdig/front.svg",
  46241. extra: 1284/1094,
  46242. bottom: 84/1368
  46243. }
  46244. },
  46245. back: {
  46246. height: math.unit(8, "feet"),
  46247. weight: math.unit(1200, "lb"),
  46248. name: "Back",
  46249. image: {
  46250. source: "./media/characters/nyterious-daligdig/back.svg",
  46251. extra: 1301/1121,
  46252. bottom: 129/1430
  46253. }
  46254. },
  46255. mouth: {
  46256. height: math.unit(1.464, "feet"),
  46257. name: "Mouth",
  46258. image: {
  46259. source: "./media/characters/nyterious-daligdig/mouth.svg"
  46260. }
  46261. },
  46262. },
  46263. [
  46264. {
  46265. name: "Small",
  46266. height: math.unit(8, "feet"),
  46267. default: true
  46268. },
  46269. {
  46270. name: "Normal",
  46271. height: math.unit(15, "feet")
  46272. },
  46273. {
  46274. name: "Macro",
  46275. height: math.unit(90, "feet")
  46276. },
  46277. ]
  46278. ))
  46279. characterMakers.push(() => makeCharacter(
  46280. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  46281. {
  46282. front: {
  46283. height: math.unit(7 + 4/12, "feet"),
  46284. weight: math.unit(252, "lb"),
  46285. name: "Front",
  46286. image: {
  46287. source: "./media/characters/bandel/front.svg",
  46288. extra: 1946/1775,
  46289. bottom: 26/1972
  46290. }
  46291. },
  46292. back: {
  46293. height: math.unit(7 + 4/12, "feet"),
  46294. weight: math.unit(252, "lb"),
  46295. name: "Back",
  46296. image: {
  46297. source: "./media/characters/bandel/back.svg",
  46298. extra: 1940/1770,
  46299. bottom: 25/1965
  46300. }
  46301. },
  46302. maw: {
  46303. height: math.unit(2.15, "feet"),
  46304. name: "Maw",
  46305. image: {
  46306. source: "./media/characters/bandel/maw.svg"
  46307. }
  46308. },
  46309. stomach: {
  46310. height: math.unit(1.95, "feet"),
  46311. name: "Stomach",
  46312. image: {
  46313. source: "./media/characters/bandel/stomach.svg"
  46314. }
  46315. },
  46316. },
  46317. [
  46318. {
  46319. name: "Normal",
  46320. height: math.unit(7 + 4/12, "feet"),
  46321. default: true
  46322. },
  46323. ]
  46324. ))
  46325. characterMakers.push(() => makeCharacter(
  46326. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  46327. {
  46328. front: {
  46329. height: math.unit(10 + 5/12, "feet"),
  46330. weight: math.unit(773.5, "kg"),
  46331. name: "Front",
  46332. image: {
  46333. source: "./media/characters/zed/front.svg",
  46334. extra: 987/941,
  46335. bottom: 52/1039
  46336. }
  46337. },
  46338. },
  46339. [
  46340. {
  46341. name: "Short",
  46342. height: math.unit(5 + 4/12, "feet")
  46343. },
  46344. {
  46345. name: "Average",
  46346. height: math.unit(10 + 5/12, "feet"),
  46347. default: true
  46348. },
  46349. {
  46350. name: "Mini-Macro",
  46351. height: math.unit(24 + 9/12, "feet")
  46352. },
  46353. {
  46354. name: "Macro",
  46355. height: math.unit(249, "feet")
  46356. },
  46357. {
  46358. name: "Mega-Macro",
  46359. height: math.unit(12490, "feet")
  46360. },
  46361. {
  46362. name: "Giga-Macro",
  46363. height: math.unit(24.9, "miles")
  46364. },
  46365. {
  46366. name: "Tera-Macro",
  46367. height: math.unit(24900, "miles")
  46368. },
  46369. {
  46370. name: "Cosmic Scale",
  46371. height: math.unit(38.9, "lightyears")
  46372. },
  46373. {
  46374. name: "Universal Scale",
  46375. height: math.unit(138e12, "lightyears")
  46376. },
  46377. ]
  46378. ))
  46379. //characters
  46380. function makeCharacters() {
  46381. const results = [];
  46382. characterMakers.forEach(character => {
  46383. results.push(character());
  46384. });
  46385. return results;
  46386. }