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

44985 wiersze
1.1 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  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. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.volume) {
  29. views[key].attributes.volume = {
  30. name: "Volume",
  31. power: 3,
  32. type: "volume",
  33. base: value.volume
  34. };
  35. }
  36. if (value.capacity) {
  37. views[key].attributes.capacity = {
  38. name: "Capacity",
  39. power: 3,
  40. type: "volume",
  41. base: value.capacity
  42. }
  43. }
  44. if (value.energyNeed) {
  45. views[key].attributes.capacity = {
  46. name: "Food Intake",
  47. power: 3,
  48. type: "energy",
  49. base: value.energyNeed
  50. }
  51. }
  52. });
  53. return createEntityMaker(info, views, defaultSizes);
  54. }
  55. const speciesData = {
  56. animal: {
  57. name: "Animal"
  58. },
  59. dog: {
  60. name: "Dog",
  61. parents: [
  62. "canine"
  63. ]
  64. },
  65. canine: {
  66. name: "Canine",
  67. parents: [
  68. "mammal"
  69. ]
  70. },
  71. crux: {
  72. name: "Crux",
  73. parents: [
  74. "mammal"
  75. ]
  76. },
  77. mammal: {
  78. name: "Mammal",
  79. parents: [
  80. "animal"
  81. ]
  82. },
  83. "rough-collie": {
  84. name: "Rough Collie",
  85. parents: [
  86. "dog"
  87. ]
  88. },
  89. dragon: {
  90. name: "Dragon",
  91. parents: [
  92. "reptile"
  93. ]
  94. },
  95. reptile: {
  96. name: "Reptile",
  97. parents: [
  98. "animal"
  99. ]
  100. },
  101. woodpecker: {
  102. name: "Woodpecker",
  103. parents: [
  104. "avian"
  105. ]
  106. },
  107. avian: {
  108. name: "Avian",
  109. parents: [
  110. "animal"
  111. ]
  112. },
  113. kitsune: {
  114. name: "Kitsune",
  115. parents: [
  116. "fox"
  117. ]
  118. },
  119. fox: {
  120. name: "Fox",
  121. parents: [
  122. "mammal"
  123. ]
  124. },
  125. pokemon: {
  126. name: "Pokemon"
  127. },
  128. tiger: {
  129. name: "Tiger",
  130. parents: [
  131. "cat"
  132. ]
  133. },
  134. cat: {
  135. name: "Cat",
  136. parents: [
  137. "feliform"
  138. ]
  139. },
  140. "blue-jay": {
  141. name: "Blue Jay",
  142. parents: [
  143. "avian"
  144. ]
  145. },
  146. wolf: {
  147. name: "Wolf",
  148. parents: [
  149. "mammal"
  150. ]
  151. },
  152. coyote: {
  153. name: "Coyote",
  154. parents: [
  155. "mammal"
  156. ]
  157. },
  158. raccoon: {
  159. name: "Raccoon",
  160. parents: [
  161. "mammal"
  162. ]
  163. },
  164. weasel: {
  165. name: "Weasel",
  166. parents: [
  167. "mustelid"
  168. ]
  169. },
  170. "red-panda": {
  171. name: "Red Panda",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. dolphin: {
  177. name: "Dolphin",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. "african-wild-dog": {
  183. name: "African Wild Dog",
  184. parents: [
  185. "canine"
  186. ]
  187. },
  188. "hyena": {
  189. name: "Hyena",
  190. parents: [
  191. "feliform"
  192. ]
  193. },
  194. "carbuncle": {
  195. name: "Carbuncle",
  196. parents: [
  197. "animal"
  198. ]
  199. },
  200. bat: {
  201. name: "Bat",
  202. parents: [
  203. "mammal"
  204. ]
  205. },
  206. "leaf-nosed-bat": {
  207. name: "Leaf-Nosed Bat",
  208. parents: [
  209. "bat"
  210. ]
  211. },
  212. "fish": {
  213. name: "Fish",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. "ram": {
  219. name: "Ram",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "demon": {
  225. name: "Demon",
  226. parents: [
  227. "supernatural"
  228. ]
  229. },
  230. "cougar": {
  231. name: "Cougar",
  232. parents: [
  233. "cat"
  234. ]
  235. },
  236. "goat": {
  237. name: "Goat",
  238. parents: [
  239. "mammal"
  240. ]
  241. },
  242. "lion": {
  243. name: "Lion",
  244. parents: [
  245. "cat"
  246. ]
  247. },
  248. "harpy-eager": {
  249. name: "Harpy Eagle",
  250. parents: [
  251. "avian"
  252. ]
  253. },
  254. "deer": {
  255. name: "Deer",
  256. parents: [
  257. "mammal"
  258. ]
  259. },
  260. "phoenix": {
  261. name: "Phoenix",
  262. parents: [
  263. "avian"
  264. ]
  265. },
  266. "aeromorph": {
  267. name: "Aeromorph",
  268. parents: [
  269. "machine"
  270. ]
  271. },
  272. "machine": {
  273. name: "Machine",
  274. },
  275. "android": {
  276. name: "Android",
  277. parents: [
  278. "machine"
  279. ]
  280. },
  281. "jackal": {
  282. name: "Jackal",
  283. parents: [
  284. "canine"
  285. ]
  286. },
  287. "corvid": {
  288. name: "Corvid",
  289. parents: [
  290. "avian"
  291. ]
  292. },
  293. "pharaoh-hound": {
  294. name: "Pharaoh Hound",
  295. parents: [
  296. "dog"
  297. ]
  298. },
  299. "skunk": {
  300. name: "Skunk",
  301. parents: [
  302. "mammal"
  303. ]
  304. },
  305. "shark": {
  306. name: "Shark",
  307. parents: [
  308. "fish"
  309. ]
  310. },
  311. "black-panther": {
  312. name: "Black Panther",
  313. parents: [
  314. "cat"
  315. ]
  316. },
  317. "umbra": {
  318. name: "Umbra",
  319. parents: [
  320. "animal"
  321. ]
  322. },
  323. "raven": {
  324. name: "Raven",
  325. parents: [
  326. "corvid"
  327. ]
  328. },
  329. "snow-leopard": {
  330. name: "Snow Leopard",
  331. parents: [
  332. "cat"
  333. ]
  334. },
  335. "barbary-lion": {
  336. name: "Barbary Lion",
  337. parents: [
  338. "lion"
  339. ]
  340. },
  341. "dra'gal": {
  342. name: "Dra'Gal",
  343. parents: [
  344. "mammal"
  345. ]
  346. },
  347. "german-shepherd": {
  348. name: "German Shepherd",
  349. parents: [
  350. "dog"
  351. ]
  352. },
  353. "bayleef": {
  354. name: "Bayleef",
  355. parents: [
  356. "pokemon"
  357. ]
  358. },
  359. "mouse": {
  360. name: "Mouse",
  361. parents: [
  362. "rodent"
  363. ]
  364. },
  365. "rat": {
  366. name: "Rat",
  367. parents: [
  368. "mammal"
  369. ]
  370. },
  371. "hoshiko-beast": {
  372. name: "Hoshiko Beast",
  373. parents: ["animal"]
  374. },
  375. "snow-jugani": {
  376. name: "Snow Jugani",
  377. parents: ["cat"]
  378. },
  379. "patamon": {
  380. name: "Patamon",
  381. parents: ["digimon"]
  382. },
  383. "digimon": {
  384. name: "Digimon",
  385. },
  386. "jugani": {
  387. name: "Jugani",
  388. parents: ["cat"]
  389. },
  390. "luxray": {
  391. name: "Luxray",
  392. parents: ["pokemon"]
  393. },
  394. "mech": {
  395. name: "Mech",
  396. parents: ["machine"]
  397. },
  398. "zoid": {
  399. name: "Zoid",
  400. parents: ["mech"]
  401. },
  402. "monster": {
  403. name: "Monster",
  404. parents: ["animal"]
  405. },
  406. "foo-dog": {
  407. name: "Foo Dog",
  408. parents: ["mammal"]
  409. },
  410. "elephant": {
  411. name: "Elephant",
  412. parents: ["mammal"]
  413. },
  414. "eagle": {
  415. name: "Eagle",
  416. parents: ["avian"]
  417. },
  418. "cow": {
  419. name: "Cow",
  420. parents: ["mammal"]
  421. },
  422. "crocodile": {
  423. name: "Crocodile",
  424. parents: ["reptile"]
  425. },
  426. "borzoi": {
  427. name: "Borzoi",
  428. parents: ["dog"]
  429. },
  430. "snake": {
  431. name: "Snake",
  432. parents: ["reptile"]
  433. },
  434. "horned-bush-viper": {
  435. name: "Horned Bush Viper",
  436. parents: ["snake"]
  437. },
  438. "cobra": {
  439. name: "Cobra",
  440. parents: ["snake"]
  441. },
  442. "harpy-eagle": {
  443. name: "Harpy Eagle",
  444. parents: ["eagle"]
  445. },
  446. "raptor": {
  447. name: "Raptor",
  448. parents: ["dinosaur"]
  449. },
  450. "dinosaur": {
  451. name: "Dinosaur",
  452. parents: ["reptile"]
  453. },
  454. "veilhound": {
  455. name: "Veilhound",
  456. parents: ["hellhound"]
  457. },
  458. "hellhound": {
  459. name: "Hellhound",
  460. parents: ["canine", "demon"]
  461. },
  462. "insect": {
  463. name: "Insect",
  464. parents: ["animal"]
  465. },
  466. "beetle": {
  467. name: "Beetle",
  468. parents: ["insect"]
  469. },
  470. "moth": {
  471. name: "Moth",
  472. parents: ["insect"]
  473. },
  474. "eastern-dragon": {
  475. name: "Eastern Dragon",
  476. parents: ["dragon"]
  477. },
  478. "jaguar": {
  479. name: "Jaguar",
  480. parents: ["cat"]
  481. },
  482. "horse": {
  483. name: "Horse",
  484. parents: ["mammal"]
  485. },
  486. "sergal": {
  487. name: "Sergal",
  488. parents: ["mammal"]
  489. },
  490. "gryphon": {
  491. name: "Gryphon",
  492. parents: ["lion", "eagle"]
  493. },
  494. "robot": {
  495. name: "Robot",
  496. parents: ["machine"]
  497. },
  498. "medihound": {
  499. name: "Medihound",
  500. parents: ["robot", "dog"]
  501. },
  502. "sylveon": {
  503. name: "Sylveon",
  504. parents: ["pokemon"]
  505. },
  506. "catgirl": {
  507. name: "Catgirl",
  508. parents: ["mammal"]
  509. },
  510. "cowgirl": {
  511. name: "Cowgirl",
  512. parents: ["mammal"]
  513. },
  514. "pony": {
  515. name: "Pony",
  516. parents: ["horse"]
  517. },
  518. "rabbit": {
  519. name: "Rabbit",
  520. parents: ["mammal"]
  521. },
  522. "fennec-fox": {
  523. name: "Fennec Fox",
  524. parents: ["fox"]
  525. },
  526. "azodian": {
  527. name: "Azodian",
  528. parents: ["mouse"]
  529. },
  530. "shiba-inu": {
  531. name: "Shiba Inu",
  532. parents: ["dog"]
  533. },
  534. "changeling": {
  535. name: "Changeling",
  536. parents: ["insect"]
  537. },
  538. "cheetah": {
  539. name: "Cheetah",
  540. parents: ["cat"]
  541. },
  542. "golden-jackal": {
  543. name: "Golden Jackal",
  544. parents: ["jackal"]
  545. },
  546. "manectric": {
  547. name: "Manectric",
  548. parents: ["pokemon"]
  549. },
  550. "rat": {
  551. name: "Rat",
  552. parents: ["rodent"]
  553. },
  554. "rodent": {
  555. name: "Rodent",
  556. parents: ["mammal"]
  557. },
  558. "octocoon": {
  559. name: "Octocoon",
  560. parents: ["raccoon", "octopus"]
  561. },
  562. "octopus": {
  563. name: "Octopus",
  564. parents: ["fish"]
  565. },
  566. "werewolf": {
  567. name: "Werewolf",
  568. parents: ["wolf", "werebeast"]
  569. },
  570. "werebeast": {
  571. name: "Werebeast",
  572. parents: ["monster"]
  573. },
  574. "meerkat": {
  575. name: "Meerkat",
  576. parents: ["mammal"]
  577. },
  578. "human": {
  579. name: "Human",
  580. parents: ["mammal"]
  581. },
  582. "geth": {
  583. name: "Geth",
  584. parents: ["android"]
  585. },
  586. "husky": {
  587. name: "Husky",
  588. parents: ["dog"]
  589. },
  590. "long-eared-bat": {
  591. name: "Long Eared Bat",
  592. parents: ["bat"]
  593. },
  594. "lizard": {
  595. name: "Lizard",
  596. parents: ["reptile"]
  597. },
  598. "salamander": {
  599. name: "Salamander",
  600. parents: ["lizard"]
  601. },
  602. "chameleon": {
  603. name: "Chameleon",
  604. parents: ["lizard"]
  605. },
  606. "gecko": {
  607. name: "Gecko",
  608. parents: ["lizard"]
  609. },
  610. "kobold": {
  611. name: "Kobold",
  612. parents: ["reptile"]
  613. },
  614. "charizard": {
  615. name: "Charizard",
  616. parents: ["pokemon"]
  617. },
  618. "lugia": {
  619. name: "Lugia",
  620. parents: ["pokemon"]
  621. },
  622. "cerberus": {
  623. name: "Cerberus",
  624. parents: ["dog"]
  625. },
  626. "tyrantrum": {
  627. name: "Tyrantrum",
  628. parents: ["pokemon"]
  629. },
  630. "lemur": {
  631. name: "Lemur",
  632. parents: ["mammal"]
  633. },
  634. "kelpie": {
  635. name: "Kelpie",
  636. parents: ["horse", "monster"]
  637. },
  638. "labrador": {
  639. name: "Labrador",
  640. parents: ["dog"]
  641. },
  642. "sylveon": {
  643. name: "Sylveon",
  644. parents: ["eeveelution"]
  645. },
  646. "eeveelution": {
  647. name: "Eeveelution",
  648. parents: ["pokemon"]
  649. },
  650. "polar-bear": {
  651. name: "Polar Bear",
  652. parents: ["bear"]
  653. },
  654. "bear": {
  655. name: "Bear",
  656. parents: ["mammal"]
  657. },
  658. "absol": {
  659. name: "Absol",
  660. parents: ["pokemon"]
  661. },
  662. "wolver": {
  663. name: "Wolver",
  664. parents: ["mammal"]
  665. },
  666. "rottweiler": {
  667. name: "Rottweiler",
  668. parents: ["dog"]
  669. },
  670. "zebra": {
  671. name: "Zebra",
  672. parents: ["horse"]
  673. },
  674. "yoshi": {
  675. name: "Yoshi",
  676. parents: ["lizard"]
  677. },
  678. "lynx": {
  679. name: "Lynx",
  680. parents: ["cat"]
  681. },
  682. "unknown": {
  683. name: "Unknown",
  684. parents: []
  685. },
  686. "thylacine": {
  687. name: "Thylacine",
  688. parents: ["mammal"]
  689. },
  690. "gabumon": {
  691. name: "Gabumon",
  692. parents: ["digimon"]
  693. },
  694. "border-collie": {
  695. name: "Border Collie",
  696. parents: ["dog"]
  697. },
  698. "imp": {
  699. name: "Imp",
  700. parents: ["demon"]
  701. },
  702. "kangaroo": {
  703. name: "Kangaroo",
  704. parents: ["marsupial"]
  705. },
  706. "renamon": {
  707. name: "Renamon",
  708. parents: ["digimon"]
  709. },
  710. "candy-orca-dragon": {
  711. name: "Candy Orca Dragon",
  712. parents: ["fish", "dragon", "candy"]
  713. },
  714. "sabertooth-tiger": {
  715. name: "Sabertooth Tiger",
  716. parents: ["cat"]
  717. },
  718. "espurr": {
  719. name: "Espurr",
  720. parents: ["pokemon"]
  721. },
  722. "otter": {
  723. name: "Otter",
  724. parents: ["mustelid"]
  725. },
  726. "elemental": {
  727. name: "Elemental",
  728. parents: ["mammal"]
  729. },
  730. "mew": {
  731. name: "Mew",
  732. parents: ["pokemon"]
  733. },
  734. "goodra": {
  735. name: "Goodra",
  736. parents: ["pokemon"]
  737. },
  738. "fairy": {
  739. name: "Fairy",
  740. parents: ["magical"]
  741. },
  742. "typhlosion": {
  743. name: "Typhlosion",
  744. parents: ["pokemon"]
  745. },
  746. "magical": {
  747. name: "Magical",
  748. parents: []
  749. },
  750. "xenomorph": {
  751. name: "Xenomorph",
  752. parents: ["monster", "alien"]
  753. },
  754. "charr": {
  755. name: "Charr",
  756. parents: ["cat"]
  757. },
  758. "siberian-husky": {
  759. name: "Siberian Husky",
  760. parents: ["husky"]
  761. },
  762. "alligator": {
  763. name: "Alligator",
  764. parents: ["reptile"]
  765. },
  766. "bernese-mountain-dog": {
  767. name: "Bernese Mountain Dog",
  768. parents: ["dog"]
  769. },
  770. "reshiram": {
  771. name: "Reshiram",
  772. parents: ["pokemon"]
  773. },
  774. "grizzly-bear": {
  775. name: "Grizzly Bear",
  776. parents: ["bear"]
  777. },
  778. "water-monitor": {
  779. name: "Water Monitor",
  780. parents: ["lizard"]
  781. },
  782. "banchofossa": {
  783. name: "Banchofossa",
  784. parents: ["mammal"]
  785. },
  786. "kirin": {
  787. name: "Kirin",
  788. parents: ["monster"]
  789. },
  790. "quilava": {
  791. name: "Quilava",
  792. parents: ["pokemon"]
  793. },
  794. "seviper": {
  795. name: "Seviper",
  796. parents: ["pokemon"]
  797. },
  798. "flying-fox": {
  799. name: "Flying Fox",
  800. parents: ["bat"]
  801. },
  802. "keynain": {
  803. name: "Keynain",
  804. parents: ["avian"]
  805. },
  806. "lucario": {
  807. name: "Lucario",
  808. parents: ["pokemon"]
  809. },
  810. "siamese-cat": {
  811. name: "Siamese Cat",
  812. parents: ["cat"]
  813. },
  814. "spider": {
  815. name: "Spider",
  816. parents: ["insect"]
  817. },
  818. "samurott": {
  819. name: "Samurott",
  820. parents: ["pokemon"]
  821. },
  822. "megalodon": {
  823. name: "Megalodon",
  824. parents: ["shark"]
  825. },
  826. "unicorn": {
  827. name: "Unicorn",
  828. parents: ["horse"]
  829. },
  830. "greninja": {
  831. name: "Greninja",
  832. parents: ["pokemon"]
  833. },
  834. "water-dragon": {
  835. name: "Water Dragon",
  836. parents: ["dragon"]
  837. },
  838. "cross-fox": {
  839. name: "Cross Fox",
  840. parents: ["fox"]
  841. },
  842. "synth": {
  843. name: "Synth",
  844. parents: ["machine"]
  845. },
  846. "construct": {
  847. name: "Construct",
  848. parents: []
  849. },
  850. "mexican-wolf": {
  851. name: "Mexican Wolf",
  852. parents: ["wolf"]
  853. },
  854. "leopard": {
  855. name: "Leopard",
  856. parents: ["cat"]
  857. },
  858. "pig": {
  859. name: "Pig",
  860. parents: ["mammal"]
  861. },
  862. "ampharos": {
  863. name: "Ampharos",
  864. parents: ["pokemon"]
  865. },
  866. "orca": {
  867. name: "Orca",
  868. parents: ["fish"]
  869. },
  870. "lycanroc": {
  871. name: "Lycanroc",
  872. parents: ["pokemon"]
  873. },
  874. "surkanu": {
  875. name: "Surkanu",
  876. parents: ["monster"]
  877. },
  878. "seal": {
  879. name: "Seal",
  880. parents: ["mammal"]
  881. },
  882. "keldeo": {
  883. name: "Keldeo",
  884. parents: ["pokemon"]
  885. },
  886. "great-dane": {
  887. name: "Great Dane",
  888. parents: ["dog"]
  889. },
  890. "black-backed-jackal": {
  891. name: "Black Backed Jackal",
  892. parents: ["jackal"]
  893. },
  894. "sheep": {
  895. name: "Sheep",
  896. parents: ["mammal"]
  897. },
  898. "leopard-seal": {
  899. name: "Leopard Seal",
  900. parents: ["seal"]
  901. },
  902. "zoroark": {
  903. name: "Zoroark",
  904. parents: ["pokemon"]
  905. },
  906. "maned-wolf": {
  907. name: "Maned Wolf",
  908. parents: ["canine"]
  909. },
  910. "dracha": {
  911. name: "Dracha",
  912. parents: ["dragon"]
  913. },
  914. "wolxi": {
  915. name: "Wolxi",
  916. parents: ["mammal", "alien"]
  917. },
  918. "dratini": {
  919. name: "Dratini",
  920. parents: ["pokemon", "dragon"]
  921. },
  922. "skaven": {
  923. name: "Skaven",
  924. parents: ["rat"]
  925. },
  926. "mongoose": {
  927. name: "Mongoose",
  928. parents: ["mammal"]
  929. },
  930. "lopunny": {
  931. name: "Lopunny",
  932. parents: ["pokemon", "rabbit"]
  933. },
  934. "feraligatr": {
  935. name: "Feraligatr",
  936. parents: ["pokemon", "alligator"]
  937. },
  938. "houndoom": {
  939. name: "Houndoom",
  940. parents: ["pokemon", "dog"]
  941. },
  942. "protogen": {
  943. name: "Protogen",
  944. parents: ["machine"]
  945. },
  946. "saint-bernard": {
  947. name: "Saint Bernard",
  948. parents: ["dog"]
  949. },
  950. "crow": {
  951. name: "Crow",
  952. parents: ["corvid"]
  953. },
  954. "delphox": {
  955. name: "Delphox",
  956. parents: ["pokemon", "fox"]
  957. },
  958. "moose": {
  959. name: "Moose",
  960. parents: ["mammal"]
  961. },
  962. "joraxian": {
  963. name: "Joraxian",
  964. parents: ["monster", "canine", "demon"]
  965. },
  966. "nimbat": {
  967. name: "Nimbat",
  968. parents: ["mammal"]
  969. },
  970. "aardwolf": {
  971. name: "Aardwolf",
  972. parents: ["canine"]
  973. },
  974. "fluudrani": {
  975. name: "Fluudrani",
  976. parents: ["animal"]
  977. },
  978. "arcanine": {
  979. name: "Arcanine",
  980. parents: ["pokemon", "dog"]
  981. },
  982. "inteleon": {
  983. name: "Inteleon",
  984. parents: ["pokemon", "fish"]
  985. },
  986. "ninetales": {
  987. name: "Ninetales",
  988. parents: ["pokemon", "kitsune"]
  989. },
  990. "tigrex": {
  991. name: "Tigrex",
  992. parents: ["tiger"]
  993. },
  994. "zorua": {
  995. name: "Zorua",
  996. parents: ["pokemon", "fox"]
  997. },
  998. "vulpix": {
  999. name: "Vulpix",
  1000. parents: ["pokemon", "fox"]
  1001. },
  1002. "barghest": {
  1003. name: "Barghest",
  1004. parents: ["monster"]
  1005. },
  1006. "gray-wolf": {
  1007. name: "Gray Wolf",
  1008. parents: ["wolf"]
  1009. },
  1010. "ruppells-fox": {
  1011. name: "Rüppell's Fox",
  1012. parents: ["fox"]
  1013. },
  1014. "bull-terrier": {
  1015. name: "Bull Terrier",
  1016. parents: ["dog"]
  1017. },
  1018. "european-honey-buzzard": {
  1019. name: "European Honey Buzzard",
  1020. parents: ["avian"]
  1021. },
  1022. "t-rex": {
  1023. name: "Tyrannosaurus Rex",
  1024. parents: ["dinosaur"]
  1025. },
  1026. "mactarian": {
  1027. name: "Mactarian",
  1028. parents: ["shark", "monster"]
  1029. },
  1030. "mewtwo-y": {
  1031. name: "Mewtwo Y",
  1032. parents: ["mewtwo"]
  1033. },
  1034. "mewtwo": {
  1035. name: "Mewtwo",
  1036. parents: ["pokemon"]
  1037. },
  1038. "mew": {
  1039. name: "Mew",
  1040. parents: ["pokemon"]
  1041. },
  1042. "eevee": {
  1043. name: "Eevee",
  1044. parents: ["eeveelution"]
  1045. },
  1046. "mienshao": {
  1047. name: "Mienshao",
  1048. parents: ["pokemon"]
  1049. },
  1050. "sugar-glider": {
  1051. name: "Sugar Glider",
  1052. parents: ["opossum"]
  1053. },
  1054. "spectral-bat": {
  1055. name: "Spectral Bat",
  1056. parents: ["bat"]
  1057. },
  1058. "scolipede": {
  1059. name: "Scolipede",
  1060. parents: ["pokemon", "insect"]
  1061. },
  1062. "jackalope": {
  1063. name: "Jackalope",
  1064. parents: ["rabbit", "antelope"]
  1065. },
  1066. "caracal": {
  1067. name: "Caracal",
  1068. parents: ["cat"]
  1069. },
  1070. "stoat": {
  1071. name: "Stoat",
  1072. parents: ["mammal"]
  1073. },
  1074. "african-golden-cat": {
  1075. name: "African Golden Cat",
  1076. parents: ["cat"]
  1077. },
  1078. "gigantosaurus": {
  1079. name: "Gigantosaurus",
  1080. parents: ["dinosaur"]
  1081. },
  1082. "zorgoia": {
  1083. name: "Zorgoia",
  1084. parents: ["mammal"]
  1085. },
  1086. "monitor-lizard": {
  1087. name: "Monitor Lizard",
  1088. parents: ["lizard"]
  1089. },
  1090. "ziralkia": {
  1091. name: "Ziralkia",
  1092. parents: ["mammal"]
  1093. },
  1094. "kiiasi": {
  1095. name: "Kiiasi",
  1096. parents: ["animal"]
  1097. },
  1098. "synx": {
  1099. name: "Synx",
  1100. parents: ["monster"]
  1101. },
  1102. "panther": {
  1103. name: "Panther",
  1104. parents: ["cat"]
  1105. },
  1106. "azumarill": {
  1107. name: "Azumarill",
  1108. parents: ["pokemon"]
  1109. },
  1110. "river-snaptail": {
  1111. name: "River Snaptail",
  1112. parents: ["otter", "crocodile"]
  1113. },
  1114. "great-blue-heron": {
  1115. name: "Great Blue Heron",
  1116. parents: ["avian"]
  1117. },
  1118. "smeargle": {
  1119. name: "Smeargle",
  1120. parents: ["pokemon"]
  1121. },
  1122. "vendeilen": {
  1123. name: "Vendeilen",
  1124. parents: ["monster"]
  1125. },
  1126. "ventura": {
  1127. name: "Ventura",
  1128. parents: ["canine"]
  1129. },
  1130. "clouded-leopard": {
  1131. name: "Clouded Leopard",
  1132. parents: ["leopard"]
  1133. },
  1134. "argonian": {
  1135. name: "Argonian",
  1136. parents: ["lizard"]
  1137. },
  1138. "salazzle": {
  1139. name: "Salazzle",
  1140. parents: ["pokemon", "lizard"]
  1141. },
  1142. "je-stoff-drachen": {
  1143. name: "Je-Stoff Drachen",
  1144. parents: ["dragon"]
  1145. },
  1146. "finnish-spitz-dog": {
  1147. name: "Finnish Spitz Dog",
  1148. parents: ["dog"]
  1149. },
  1150. "gray-fox": {
  1151. name: "Gray Fox",
  1152. parents: ["fox"]
  1153. },
  1154. "opossum": {
  1155. name: "opossum",
  1156. parents: ["mammal"]
  1157. },
  1158. "antelope": {
  1159. name: "Antelope",
  1160. parents: ["mammal"]
  1161. },
  1162. "weavile": {
  1163. name: "Weavile",
  1164. parents: ["pokemon"]
  1165. },
  1166. "pikachu": {
  1167. name: "Pikachu",
  1168. parents: ["pokemon", "mouse"]
  1169. },
  1170. "grovyle": {
  1171. name: "Grovyle",
  1172. parents: ["pokemon", "plant"]
  1173. },
  1174. "sthara": {
  1175. name: "Sthara",
  1176. parents: ["snow-leopard", "reptile"]
  1177. },
  1178. "star-warrior": {
  1179. name: "Star Warrior",
  1180. parents: ["magical"]
  1181. },
  1182. "dragonoid": {
  1183. name: "Dragonoid",
  1184. parents: ["dragon"]
  1185. },
  1186. "suicune": {
  1187. name: "Suicune",
  1188. parents: ["pokemon"]
  1189. },
  1190. "vole": {
  1191. name: "Vole",
  1192. parents: ["mammal"]
  1193. },
  1194. "blaziken": {
  1195. name: "Blaziken",
  1196. parents: ["pokemon", "avian"]
  1197. },
  1198. "buizel": {
  1199. name: "Buizel",
  1200. parents: ["pokemon", "fish"]
  1201. },
  1202. "floatzel": {
  1203. name: "Floatzel",
  1204. parents: ["pokemon", "fish"]
  1205. },
  1206. "umok": {
  1207. name: "Umok",
  1208. parents: ["avian"]
  1209. },
  1210. "sea-monster": {
  1211. name: "Sea Monster",
  1212. parents: ["monster", "fish"]
  1213. },
  1214. "egyptian-vulture": {
  1215. name: "Egyptian Vulture",
  1216. parents: ["avian"]
  1217. },
  1218. "doberman": {
  1219. name: "Doberman",
  1220. parents: ["dog"]
  1221. },
  1222. "zangoose": {
  1223. name: "Zangoose",
  1224. parents: ["pokemon", "mongoose"]
  1225. },
  1226. "mongoose": {
  1227. name: "Mongoose",
  1228. parents: ["mammal"]
  1229. },
  1230. "wickerbeast": {
  1231. name: "Wickerbeast",
  1232. parents: ["monster"]
  1233. },
  1234. "zenari": {
  1235. name: "Zenari",
  1236. parents: ["lizard"]
  1237. },
  1238. "plant": {
  1239. name: "Plant",
  1240. parents: []
  1241. },
  1242. "raskatox": {
  1243. name: "Raskatox",
  1244. parents: ["raccoon", "skunk", "cat", "fox"]
  1245. },
  1246. "mikromare": {
  1247. name: "mikromare",
  1248. parents: ["alien"]
  1249. },
  1250. "alien": {
  1251. name: "Alien",
  1252. parents: ["animal"]
  1253. },
  1254. "deity": {
  1255. name: "Deity",
  1256. parents: []
  1257. },
  1258. "skarlan": {
  1259. name: "Skarlan",
  1260. parents: ["slug", "dragon"]
  1261. },
  1262. "slug": {
  1263. name: "Slug",
  1264. parents: ["mollusk"]
  1265. },
  1266. "mollusk": {
  1267. name: "Mollusk",
  1268. parents: ["animal"]
  1269. },
  1270. "chimera": {
  1271. name: "Chimera",
  1272. parents: ["monster"]
  1273. },
  1274. "gestalt": {
  1275. name: "Gestalt",
  1276. parents: ["construct"]
  1277. },
  1278. "mimic": {
  1279. name: "Mimic",
  1280. parents: ["monster"]
  1281. },
  1282. "calico-rat": {
  1283. name: "Calico Rat",
  1284. parents: ["rat"]
  1285. },
  1286. "panda": {
  1287. name: "Panda",
  1288. parents: ["mammal"]
  1289. },
  1290. "oni": {
  1291. name: "Oni",
  1292. parents: ["monster"]
  1293. },
  1294. "pegasus": {
  1295. name: "Pegasus",
  1296. parents: ["horse"]
  1297. },
  1298. "vulpera": {
  1299. name: "Vulpera",
  1300. parents: ["fennec-fox"]
  1301. },
  1302. "ceratosaurus": {
  1303. name: "Ceratosaurus",
  1304. parents: ["dinosaur"]
  1305. },
  1306. "nykur": {
  1307. name: "Nykur",
  1308. parents: ["horse", "monster"]
  1309. },
  1310. "giraffe": {
  1311. name: "Giraffe",
  1312. parents: ["mammal"]
  1313. },
  1314. "tauren": {
  1315. name: "Tauren",
  1316. parents: ["cow"]
  1317. },
  1318. "draconi": {
  1319. name: "Draconi",
  1320. parents: ["alien", "cat", "cyborg"]
  1321. },
  1322. "dire-wolf": {
  1323. name: "Dire Wolf",
  1324. parents: ["wolf"]
  1325. },
  1326. "ferromorph": {
  1327. name: "Ferromorph",
  1328. parents: ["construct"]
  1329. },
  1330. "meowth": {
  1331. name: "Meowth",
  1332. parents: ["cat", "pokemon"]
  1333. },
  1334. "pavodragon": {
  1335. name: "Pavodragon",
  1336. parents: ["dragon"]
  1337. },
  1338. "aaltranae": {
  1339. name: "Aaltranae",
  1340. parents: ["dragon"]
  1341. },
  1342. "cyborg": {
  1343. name: "Cyborg",
  1344. parents: ["machine"]
  1345. },
  1346. "draptor": {
  1347. name: "Draptor",
  1348. parents: ["dragon"]
  1349. },
  1350. "candy": {
  1351. name: "Candy",
  1352. parents: []
  1353. },
  1354. "drenath": {
  1355. name: "Drenath",
  1356. parents: ["dragon", "snake", "rabbit"]
  1357. },
  1358. "coyju": {
  1359. name: "Coyju",
  1360. parents: ["coyote", "kaiju"]
  1361. },
  1362. "kaiju": {
  1363. name: "Kaiju",
  1364. parents: ["monster"]
  1365. },
  1366. "nickit": {
  1367. name: "Nickit",
  1368. parents: ["pokemon", "cat"]
  1369. },
  1370. "lopunny": {
  1371. name: "Lopunny",
  1372. parents: ["pokemon", "rabbit"]
  1373. },
  1374. "korean-jindo-dog": {
  1375. name: "Korean Jindo Dog",
  1376. parents: ["dog"]
  1377. },
  1378. "naga": {
  1379. name: "Naga",
  1380. parents: ["snake", "monster"]
  1381. },
  1382. "undead": {
  1383. name: "Undead",
  1384. parents: ["monster"]
  1385. },
  1386. "whale": {
  1387. name: "Whale",
  1388. parents: ["fish"]
  1389. },
  1390. "gelato-bee": {
  1391. name: "Gelato Bee",
  1392. parents: ["bee"]
  1393. },
  1394. "bee": {
  1395. name: "Bee",
  1396. parents: ["insect"]
  1397. },
  1398. "gardevoir": {
  1399. name: "Gardevoir",
  1400. parents: ["pokemon"]
  1401. },
  1402. "ant": {
  1403. name: "Ant",
  1404. parents: ["insect"]
  1405. },
  1406. "frog": {
  1407. name: "Frog",
  1408. parents: ["amphibian"]
  1409. },
  1410. "amphibian": {
  1411. name: "Amphibian",
  1412. parents: ["animal"]
  1413. },
  1414. "pangolin": {
  1415. name: "Pangolin",
  1416. parents: ["mammal"]
  1417. },
  1418. "uragi'viidorn": {
  1419. name: "Uragi'viidorn",
  1420. parents: ["avian", "bear"]
  1421. },
  1422. "gryphdelphais": {
  1423. name: "Gryphdelphais",
  1424. parents: ["dolphin", "gryphon"]
  1425. },
  1426. "plush": {
  1427. name: "Plush",
  1428. parents: ["construct"]
  1429. },
  1430. "draiger": {
  1431. name: "Draiger",
  1432. parents: ["dragon","tiger"]
  1433. },
  1434. "foxsky": {
  1435. name: "Foxsky",
  1436. parents: ["fox", "husky"]
  1437. },
  1438. "umbreon": {
  1439. name: "Umbreon",
  1440. parents: ["eeveelution"]
  1441. },
  1442. "slime-dragon": {
  1443. name: "Slime Dragon",
  1444. parents: ["dragon", "goo"]
  1445. },
  1446. "enderman": {
  1447. name: "Enderman",
  1448. parents: ["monster"]
  1449. },
  1450. "gremlin": {
  1451. name: "Gremlin",
  1452. parents: ["monster"]
  1453. },
  1454. "dragonsune": {
  1455. name: "Dragonsune",
  1456. parents: ["dragon", "kitsune"]
  1457. },
  1458. "ghost": {
  1459. name: "Ghost",
  1460. parents: ["supernatural"]
  1461. },
  1462. "false-vampire-bat": {
  1463. name: "False Vampire Bat",
  1464. parents: ["bat"]
  1465. },
  1466. "succubus": {
  1467. name: "Succubus",
  1468. parents: ["demon"]
  1469. },
  1470. "mia": {
  1471. name: "Mia",
  1472. parents: ["canine"]
  1473. },
  1474. "rainbow": {
  1475. name: "Rainbow",
  1476. parents: ["monster"]
  1477. },
  1478. "solgaleo": {
  1479. name: "Solgaleo",
  1480. parents: ["pokemon"]
  1481. },
  1482. "lucent-nargacuga": {
  1483. name: "Lucent Nargacuga",
  1484. parents: ["monster-hunter"]
  1485. },
  1486. "monster-hunter": {
  1487. name: "Monster Hunter",
  1488. parents: ["monster"]
  1489. },
  1490. "leviathan": {
  1491. "name": "Leviathan",
  1492. "url": "sea-monster"
  1493. },
  1494. "bull": {
  1495. name: "Bull",
  1496. parents: ["mammal"]
  1497. },
  1498. "tanuki": {
  1499. name: "Tanuki",
  1500. parents: ["monster"]
  1501. },
  1502. "chakat": {
  1503. name: "Chakat",
  1504. parents: ["cat"]
  1505. },
  1506. "hydra": {
  1507. name: "Hydra",
  1508. parents: ["monster"]
  1509. },
  1510. "zigzagoon": {
  1511. name: "Zigzagoon",
  1512. parents: ["raccoon", "pokemon"]
  1513. },
  1514. "vulture": {
  1515. name: "Vulture",
  1516. parents: ["avian"]
  1517. },
  1518. "eastern-dragon": {
  1519. name: "Eastern Dragon",
  1520. parents: ["dragon"]
  1521. },
  1522. "gryffon": {
  1523. name: "Gryffon",
  1524. parents: ["phoenix", "red-panda"]
  1525. },
  1526. "amtsvane": {
  1527. name: "Amtsvane",
  1528. parents: ["reptile"]
  1529. },
  1530. "kigavi": {
  1531. name: "Kigavi",
  1532. parents: ["avian"]
  1533. },
  1534. "turian": {
  1535. name: "Turian",
  1536. parents: ["avian"]
  1537. },
  1538. "zeraora": {
  1539. name: "Zeraora",
  1540. parents: ["pokemon"]
  1541. },
  1542. "sandshrew": {
  1543. name: "Sandshrew",
  1544. parents: ["pokemon", "pangolin"]
  1545. },
  1546. "valais-blacknose-sheep": {
  1547. name: "Valais Blacknose Sheep",
  1548. parents: ["sheep"]
  1549. },
  1550. "novaleit": {
  1551. name: "Novaleit",
  1552. parents: ["mammal"]
  1553. },
  1554. "dunnoh": {
  1555. name: "Dunnoh",
  1556. parents: ["mammal"]
  1557. },
  1558. "lunaral-dragon": {
  1559. name: "Lunaral Dragon",
  1560. parents: ["dragon"]
  1561. },
  1562. "arctic-wolf": {
  1563. name: "Arctic Wolf",
  1564. parents: ["wolf"]
  1565. },
  1566. "donkey": {
  1567. name: "Donkey",
  1568. parents: ["horse"]
  1569. },
  1570. "chinchilla": {
  1571. name: "Chinchilla",
  1572. parents: ["rodent"]
  1573. },
  1574. "felkin": {
  1575. name: "Felkin",
  1576. parents: ["dragon"]
  1577. },
  1578. "tykeriel": {
  1579. name: "Tykeriel",
  1580. parents: ["avian"]
  1581. },
  1582. "folf": {
  1583. name: "Folf",
  1584. parents: ["fox", "wolf"]
  1585. },
  1586. "pooltoy": {
  1587. name: "Pooltoy",
  1588. parents: ["construct"]
  1589. },
  1590. "demi": {
  1591. name: "Demi",
  1592. parents: ["human"]
  1593. },
  1594. "stegosaurus": {
  1595. name: "Stegosaurus",
  1596. parents: ["dinosaur"]
  1597. },
  1598. "computer-virus": {
  1599. name: "Computer Virus",
  1600. parents: ["program"]
  1601. },
  1602. "program": {
  1603. name: "Program",
  1604. parents: ["construct"]
  1605. },
  1606. "space-springhare": {
  1607. name: "Space Springhare",
  1608. parents: ["rabbit"]
  1609. },
  1610. "river-drake": {
  1611. name: "River Drake",
  1612. parents: ["dragon"]
  1613. },
  1614. "djinn": {
  1615. "name": "Djinn",
  1616. "url": "supernatural"
  1617. },
  1618. "supernatural": {
  1619. name: "Supernatural",
  1620. parents: ["monster"]
  1621. },
  1622. "grasshopper-mouse": {
  1623. name: "Grasshopper Mouse",
  1624. parents: ["mouse"]
  1625. },
  1626. "somali-cat": {
  1627. name: "Somali Cat",
  1628. parents: ["cat"]
  1629. },
  1630. "minccino": {
  1631. name: "Minccino",
  1632. parents: ["pokemon", "chinchilla"]
  1633. },
  1634. "pine-marten": {
  1635. name: "Pine Marten",
  1636. parents: ["marten"]
  1637. },
  1638. "marten": {
  1639. name: "Marten",
  1640. parents: ["mustelid"]
  1641. },
  1642. "mustelid": {
  1643. name: "Mustelid",
  1644. parents: ["mammal"]
  1645. },
  1646. "caribou": {
  1647. name: "Caribou",
  1648. parents: ["deer"]
  1649. },
  1650. "gnoll": {
  1651. name: "Gnoll",
  1652. parents: ["hyena", "monster"]
  1653. },
  1654. "peacekeeper": {
  1655. name: "Peacekeeper",
  1656. parents: ["human"]
  1657. },
  1658. "river-otter": {
  1659. name: "River Otter",
  1660. parents: ["otter"]
  1661. },
  1662. "dhole": {
  1663. name: "Dhole",
  1664. parents: ["canine"]
  1665. },
  1666. "springbok": {
  1667. name: "Springbok",
  1668. parents: ["antelope"]
  1669. },
  1670. "marsupial": {
  1671. name: "Marsupial",
  1672. parents: ["mammal"]
  1673. },
  1674. "townsend-big-eared-bat": {
  1675. name: "Townsend Big-eared Bat",
  1676. parents: ["bat"]
  1677. },
  1678. "squirrel": {
  1679. name: "Squirrel",
  1680. parents: ["rodent"]
  1681. },
  1682. "magpie": {
  1683. name: "Magpie",
  1684. parents: ["corvid"]
  1685. },
  1686. "civet": {
  1687. name: "Civet",
  1688. parents: ["feliform"]
  1689. },
  1690. "feliform": {
  1691. name: "Feliform",
  1692. parents: ["mammal"]
  1693. },
  1694. "tiefling": {
  1695. name: "Tiefling",
  1696. parents: ["devil"]
  1697. },
  1698. "devil": {
  1699. name: "Devil",
  1700. parents: ["supernatural"]
  1701. },
  1702. "sika-deer": {
  1703. name: "Sika Deer",
  1704. parents: ["deer"]
  1705. },
  1706. "vaporeon": {
  1707. name: "Vaporeon",
  1708. parents: ["eeveelution"]
  1709. },
  1710. "leafeon": {
  1711. name: "Leafeon",
  1712. parents: ["eeveelution"]
  1713. },
  1714. "jolteon": {
  1715. name: "Jolteon",
  1716. parents: ["eeveelution"]
  1717. },
  1718. "spireborn": {
  1719. name: "Spireborn",
  1720. parents: ["zorgoia"]
  1721. },
  1722. "vampire": {
  1723. name: "Vampire",
  1724. parents: ["monster"]
  1725. },
  1726. "extraplanar": {
  1727. name: "Extraplanar",
  1728. parents: []
  1729. },
  1730. "goo": {
  1731. name: "Goo",
  1732. parents: []
  1733. },
  1734. "skink": {
  1735. name: "Skink",
  1736. parents: ["lizard"]
  1737. },
  1738. "bat-eared-fox": {
  1739. name: "Bat-eared Fox",
  1740. parents: ["fox"]
  1741. },
  1742. "belted-kingfisher": {
  1743. name: "Belted Kingfisher",
  1744. parents: ["avian"]
  1745. },
  1746. "omnifalcon": {
  1747. name: "Omnifalcon",
  1748. parents: ["gryphon", "falcon", "harpy-eagle"]
  1749. },
  1750. "falcon": {
  1751. name: "Falcon",
  1752. parents: ["avian"]
  1753. },
  1754. "avali": {
  1755. name: "Avali",
  1756. parents: ["avian", "alien"]
  1757. },
  1758. "arctic-fox": {
  1759. name: "Arctic Fox",
  1760. parents: ["fox"]
  1761. },
  1762. "snow-tiger": {
  1763. name: "Snow Tiger",
  1764. parents: ["tiger"]
  1765. },
  1766. "marble-fox": {
  1767. name: "Marble Fox",
  1768. parents: ["fox"]
  1769. },
  1770. "king-wickerbeast": {
  1771. name: "King Wickerbeast",
  1772. parents: ["wickerbeast"]
  1773. },
  1774. "wickerbeast": {
  1775. name: "Wickerbeast",
  1776. parents: ["mammal"]
  1777. },
  1778. "european-polecat": {
  1779. name: "European Polecat",
  1780. parents: ["mustelid"]
  1781. },
  1782. "teshari": {
  1783. name: "Teshari",
  1784. parents: ["avian", "raptor"]
  1785. },
  1786. "alicorn": {
  1787. name: "Alicorn",
  1788. parents: ["horse"]
  1789. },
  1790. "atlas-moth": {
  1791. name: "Atlas Moth",
  1792. parents: ["moth"]
  1793. },
  1794. }
  1795. //species
  1796. function getSpeciesInfo(speciesList) {
  1797. let result = new Set();
  1798. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1799. result.add(entry)
  1800. });
  1801. return Array.from(result);
  1802. };
  1803. function getSpeciesInfoHelper(species) {
  1804. if (!speciesData[species]) {
  1805. console.warn(species + " doesn't exist");
  1806. return [];
  1807. }
  1808. if (speciesData[species].parents) {
  1809. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1810. } else {
  1811. return [species];
  1812. }
  1813. }
  1814. characterMakers.push(() => makeCharacter(
  1815. {
  1816. name: "Fen",
  1817. species: ["crux"],
  1818. description: {
  1819. title: "Bio",
  1820. text: "Very furry. Sheds on everything."
  1821. },
  1822. tags: [
  1823. "anthro",
  1824. "goo"
  1825. ]
  1826. },
  1827. {
  1828. back: {
  1829. height: math.unit(2.2428, "meter"),
  1830. weight: math.unit(124.738, "kg"),
  1831. name: "Back",
  1832. image: {
  1833. source: "./media/characters/fen/back.svg",
  1834. },
  1835. info: {
  1836. description: {
  1837. mode: "append",
  1838. text: "\n\nHe is not currently looking at you."
  1839. }
  1840. }
  1841. },
  1842. full: {
  1843. height: math.unit(0.91, "meter"),
  1844. weight: math.unit(225, "kg"),
  1845. name: "Full",
  1846. image: {
  1847. source: "./media/characters/fen/full.svg",
  1848. extra: 1133/859,
  1849. bottom: 145/1278
  1850. },
  1851. info: {
  1852. description: {
  1853. mode: "append",
  1854. text: "\n\nMunch."
  1855. }
  1856. }
  1857. },
  1858. kneeling: {
  1859. height: math.unit(5.4, "feet"),
  1860. weight: math.unit(124.738, "kg"),
  1861. name: "Kneeling",
  1862. image: {
  1863. source: "./media/characters/fen/kneeling.svg",
  1864. extra: 563 / 507
  1865. }
  1866. },
  1867. goo: {
  1868. height: math.unit(2.8, "feet"),
  1869. weight: math.unit(125, "kg"),
  1870. capacity: math.unit(1, "people"),
  1871. name: "Goo",
  1872. image: {
  1873. source: "./media/characters/fen/goo.svg",
  1874. bottom: 116 / 613
  1875. }
  1876. },
  1877. lounging: {
  1878. height: math.unit(6.5, "feet"),
  1879. weight: math.unit(125, "kg"),
  1880. name: "Lounging",
  1881. image: {
  1882. source: "./media/characters/fen/lounging.svg"
  1883. }
  1884. },
  1885. },
  1886. [
  1887. {
  1888. name: "Small",
  1889. height: math.unit(2.2428, "meter")
  1890. },
  1891. {
  1892. name: "Normal",
  1893. height: math.unit(12, "feet"),
  1894. default: true,
  1895. },
  1896. {
  1897. name: "Minimacro",
  1898. height: math.unit(40, "feet"),
  1899. info: {
  1900. description: {
  1901. mode: "append",
  1902. text: "\n\nTOO DAMN BIG"
  1903. }
  1904. }
  1905. },
  1906. {
  1907. name: "Macro",
  1908. height: math.unit(100, "feet"),
  1909. info: {
  1910. description: {
  1911. mode: "append",
  1912. text: "\n\nTOO DAMN BIG"
  1913. }
  1914. }
  1915. },
  1916. {
  1917. name: "Macro+",
  1918. height: math.unit(300, "feet")
  1919. },
  1920. {
  1921. name: "Megamacro",
  1922. height: math.unit(2, "miles")
  1923. }
  1924. ]
  1925. ))
  1926. characterMakers.push(() => makeCharacter(
  1927. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1928. {
  1929. front: {
  1930. height: math.unit(183, "cm"),
  1931. weight: math.unit(80, "kg"),
  1932. name: "Front",
  1933. image: {
  1934. source: "./media/characters/sofia-fluttertail/front.svg",
  1935. bottom: 0.01,
  1936. extra: 2154 / 2081
  1937. }
  1938. },
  1939. frontAlt: {
  1940. height: math.unit(183, "cm"),
  1941. weight: math.unit(80, "kg"),
  1942. name: "Front (alt)",
  1943. image: {
  1944. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1945. }
  1946. },
  1947. back: {
  1948. height: math.unit(183, "cm"),
  1949. weight: math.unit(80, "kg"),
  1950. name: "Back",
  1951. image: {
  1952. source: "./media/characters/sofia-fluttertail/back.svg"
  1953. }
  1954. },
  1955. kneeling: {
  1956. height: math.unit(125, "cm"),
  1957. weight: math.unit(80, "kg"),
  1958. name: "Kneeling",
  1959. image: {
  1960. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1961. extra: 1033 / 977,
  1962. bottom: 23.7 / 1057
  1963. }
  1964. },
  1965. maw: {
  1966. height: math.unit(183 / 5, "cm"),
  1967. name: "Maw",
  1968. image: {
  1969. source: "./media/characters/sofia-fluttertail/maw.svg"
  1970. }
  1971. },
  1972. mawcloseup: {
  1973. height: math.unit(183 / 5 * 0.41, "cm"),
  1974. name: "Maw (Closeup)",
  1975. image: {
  1976. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1977. }
  1978. },
  1979. paws: {
  1980. height: math.unit(1.17, "feet"),
  1981. name: "Paws",
  1982. image: {
  1983. source: "./media/characters/sofia-fluttertail/paws.svg",
  1984. extra: 851 / 851,
  1985. bottom: 17 / 868
  1986. }
  1987. },
  1988. },
  1989. [
  1990. {
  1991. name: "Normal",
  1992. height: math.unit(1.83, "meter")
  1993. },
  1994. {
  1995. name: "Size Thief",
  1996. height: math.unit(18, "feet")
  1997. },
  1998. {
  1999. name: "50 Foot Collie",
  2000. height: math.unit(50, "feet")
  2001. },
  2002. {
  2003. name: "Macro",
  2004. height: math.unit(96, "feet"),
  2005. default: true
  2006. },
  2007. {
  2008. name: "Megamerger",
  2009. height: math.unit(650, "feet")
  2010. },
  2011. ]
  2012. ))
  2013. characterMakers.push(() => makeCharacter(
  2014. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2015. {
  2016. front: {
  2017. height: math.unit(7, "feet"),
  2018. weight: math.unit(100, "kg"),
  2019. name: "Front",
  2020. image: {
  2021. source: "./media/characters/march/front.svg",
  2022. extra: 1992/1851,
  2023. bottom: 39/2031
  2024. }
  2025. },
  2026. foot: {
  2027. height: math.unit(0.9, "feet"),
  2028. name: "Foot",
  2029. image: {
  2030. source: "./media/characters/march/foot.svg"
  2031. }
  2032. },
  2033. },
  2034. [
  2035. {
  2036. name: "Normal",
  2037. height: math.unit(7.9, "feet")
  2038. },
  2039. {
  2040. name: "Macro",
  2041. height: math.unit(220, "meters")
  2042. },
  2043. {
  2044. name: "Megamacro",
  2045. height: math.unit(2.98, "km"),
  2046. default: true
  2047. },
  2048. {
  2049. name: "Gigamacro",
  2050. height: math.unit(15963, "km")
  2051. },
  2052. {
  2053. name: "Teramacro",
  2054. height: math.unit(2980000000, "km")
  2055. },
  2056. {
  2057. name: "Examacro",
  2058. height: math.unit(250, "parsecs")
  2059. },
  2060. ]
  2061. ))
  2062. characterMakers.push(() => makeCharacter(
  2063. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2064. {
  2065. front: {
  2066. height: math.unit(6, "feet"),
  2067. weight: math.unit(60, "kg"),
  2068. name: "Front",
  2069. image: {
  2070. source: "./media/characters/noir/front.svg",
  2071. extra: 1,
  2072. bottom: 0.032
  2073. }
  2074. },
  2075. },
  2076. [
  2077. {
  2078. name: "Normal",
  2079. height: math.unit(6.6, "feet")
  2080. },
  2081. {
  2082. name: "Macro",
  2083. height: math.unit(500, "feet")
  2084. },
  2085. {
  2086. name: "Megamacro",
  2087. height: math.unit(2.5, "km"),
  2088. default: true
  2089. },
  2090. {
  2091. name: "Gigamacro",
  2092. height: math.unit(22500, "km")
  2093. },
  2094. {
  2095. name: "Teramacro",
  2096. height: math.unit(2500000000, "km")
  2097. },
  2098. {
  2099. name: "Examacro",
  2100. height: math.unit(200, "parsecs")
  2101. },
  2102. ]
  2103. ))
  2104. characterMakers.push(() => makeCharacter(
  2105. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2106. {
  2107. front: {
  2108. height: math.unit(7, "feet"),
  2109. weight: math.unit(100, "kg"),
  2110. name: "Front",
  2111. image: {
  2112. source: "./media/characters/okuri/front.svg",
  2113. extra: 1,
  2114. bottom: 0.037
  2115. }
  2116. },
  2117. back: {
  2118. height: math.unit(7, "feet"),
  2119. weight: math.unit(100, "kg"),
  2120. name: "Back",
  2121. image: {
  2122. source: "./media/characters/okuri/back.svg",
  2123. extra: 1,
  2124. bottom: 0.007
  2125. }
  2126. },
  2127. },
  2128. [
  2129. {
  2130. name: "Megamacro",
  2131. height: math.unit(100, "miles"),
  2132. default: true
  2133. },
  2134. ]
  2135. ))
  2136. characterMakers.push(() => makeCharacter(
  2137. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2138. {
  2139. front: {
  2140. height: math.unit(7, "feet"),
  2141. weight: math.unit(100, "kg"),
  2142. name: "Front",
  2143. image: {
  2144. source: "./media/characters/manny/front.svg",
  2145. extra: 1,
  2146. bottom: 0.06
  2147. }
  2148. },
  2149. back: {
  2150. height: math.unit(7, "feet"),
  2151. weight: math.unit(100, "kg"),
  2152. name: "Back",
  2153. image: {
  2154. source: "./media/characters/manny/back.svg",
  2155. extra: 1,
  2156. bottom: 0.014
  2157. }
  2158. },
  2159. },
  2160. [
  2161. {
  2162. name: "Normal",
  2163. height: math.unit(7, "feet"),
  2164. },
  2165. {
  2166. name: "Macro",
  2167. height: math.unit(78, "feet"),
  2168. default: true
  2169. },
  2170. {
  2171. name: "Macro+",
  2172. height: math.unit(300, "meters")
  2173. },
  2174. {
  2175. name: "Macro++",
  2176. height: math.unit(2400, "meters")
  2177. },
  2178. {
  2179. name: "Megamacro",
  2180. height: math.unit(5167, "meters")
  2181. },
  2182. {
  2183. name: "Gigamacro",
  2184. height: math.unit(41769, "miles")
  2185. },
  2186. ]
  2187. ))
  2188. characterMakers.push(() => makeCharacter(
  2189. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2190. {
  2191. front: {
  2192. height: math.unit(7, "feet"),
  2193. weight: math.unit(100, "kg"),
  2194. name: "Front",
  2195. image: {
  2196. source: "./media/characters/adake/front-1.svg"
  2197. }
  2198. },
  2199. frontAlt: {
  2200. height: math.unit(7, "feet"),
  2201. weight: math.unit(100, "kg"),
  2202. name: "Front (Alt)",
  2203. image: {
  2204. source: "./media/characters/adake/front-2.svg",
  2205. extra: 1,
  2206. bottom: 0.01
  2207. }
  2208. },
  2209. back: {
  2210. height: math.unit(7, "feet"),
  2211. weight: math.unit(100, "kg"),
  2212. name: "Back",
  2213. image: {
  2214. source: "./media/characters/adake/back.svg",
  2215. }
  2216. },
  2217. kneel: {
  2218. height: math.unit(5.385, "feet"),
  2219. weight: math.unit(100, "kg"),
  2220. name: "Kneeling",
  2221. image: {
  2222. source: "./media/characters/adake/kneel.svg",
  2223. bottom: 0.052
  2224. }
  2225. },
  2226. },
  2227. [
  2228. {
  2229. name: "Normal",
  2230. height: math.unit(7, "feet"),
  2231. },
  2232. {
  2233. name: "Macro",
  2234. height: math.unit(78, "feet"),
  2235. default: true
  2236. },
  2237. {
  2238. name: "Macro+",
  2239. height: math.unit(300, "meters")
  2240. },
  2241. {
  2242. name: "Macro++",
  2243. height: math.unit(2400, "meters")
  2244. },
  2245. {
  2246. name: "Megamacro",
  2247. height: math.unit(5167, "meters")
  2248. },
  2249. {
  2250. name: "Gigamacro",
  2251. height: math.unit(41769, "miles")
  2252. },
  2253. ]
  2254. ))
  2255. characterMakers.push(() => makeCharacter(
  2256. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2257. {
  2258. front: {
  2259. height: math.unit(1.65, "meters"),
  2260. weight: math.unit(50, "kg"),
  2261. name: "Front",
  2262. image: {
  2263. source: "./media/characters/elijah/front.svg",
  2264. extra: 858 / 830,
  2265. bottom: 95.5 / 953.8559
  2266. }
  2267. },
  2268. back: {
  2269. height: math.unit(1.65, "meters"),
  2270. weight: math.unit(50, "kg"),
  2271. name: "Back",
  2272. image: {
  2273. source: "./media/characters/elijah/back.svg",
  2274. extra: 895 / 850,
  2275. bottom: 5.3 / 897.956
  2276. }
  2277. },
  2278. frontNsfw: {
  2279. height: math.unit(1.65, "meters"),
  2280. weight: math.unit(50, "kg"),
  2281. name: "Front (NSFW)",
  2282. image: {
  2283. source: "./media/characters/elijah/front-nsfw.svg",
  2284. extra: 858 / 830,
  2285. bottom: 95.5 / 953.8559
  2286. }
  2287. },
  2288. backNsfw: {
  2289. height: math.unit(1.65, "meters"),
  2290. weight: math.unit(50, "kg"),
  2291. name: "Back (NSFW)",
  2292. image: {
  2293. source: "./media/characters/elijah/back-nsfw.svg",
  2294. extra: 895 / 850,
  2295. bottom: 5.3 / 897.956
  2296. }
  2297. },
  2298. dick: {
  2299. height: math.unit(1, "feet"),
  2300. name: "Dick",
  2301. image: {
  2302. source: "./media/characters/elijah/dick.svg"
  2303. }
  2304. },
  2305. beakOpen: {
  2306. height: math.unit(1.25, "feet"),
  2307. name: "Beak (Open)",
  2308. image: {
  2309. source: "./media/characters/elijah/beak-open.svg"
  2310. }
  2311. },
  2312. beakShut: {
  2313. height: math.unit(1.25, "feet"),
  2314. name: "Beak (Shut)",
  2315. image: {
  2316. source: "./media/characters/elijah/beak-shut.svg"
  2317. }
  2318. },
  2319. footFlexing: {
  2320. height: math.unit(1.61, "feet"),
  2321. name: "Foot (Flexing)",
  2322. image: {
  2323. source: "./media/characters/elijah/foot-flexing.svg"
  2324. }
  2325. },
  2326. footStepping: {
  2327. height: math.unit(1.44, "feet"),
  2328. name: "Foot (Stepping)",
  2329. image: {
  2330. source: "./media/characters/elijah/foot-stepping.svg"
  2331. }
  2332. },
  2333. plantigradeLeg: {
  2334. height: math.unit(2.34, "feet"),
  2335. name: "Plantigrade Leg",
  2336. image: {
  2337. source: "./media/characters/elijah/plantigrade-leg.svg"
  2338. }
  2339. },
  2340. plantigradeFootLeft: {
  2341. height: math.unit(0.9, "feet"),
  2342. name: "Plantigrade Foot (Left)",
  2343. image: {
  2344. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2345. }
  2346. },
  2347. plantigradeFootRight: {
  2348. height: math.unit(0.9, "feet"),
  2349. name: "Plantigrade Foot (Right)",
  2350. image: {
  2351. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2352. }
  2353. },
  2354. },
  2355. [
  2356. {
  2357. name: "Normal",
  2358. height: math.unit(1.65, "meters")
  2359. },
  2360. {
  2361. name: "Macro",
  2362. height: math.unit(55, "meters"),
  2363. default: true
  2364. },
  2365. {
  2366. name: "Macro+",
  2367. height: math.unit(105, "meters")
  2368. },
  2369. ]
  2370. ))
  2371. characterMakers.push(() => makeCharacter(
  2372. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2373. {
  2374. front: {
  2375. height: math.unit(7 + 2/12, "feet"),
  2376. weight: math.unit(320, "kg"),
  2377. name: "Front",
  2378. image: {
  2379. source: "./media/characters/rai/front.svg",
  2380. extra: 1802/1696,
  2381. bottom: 68/1870
  2382. }
  2383. },
  2384. frontDressed: {
  2385. height: math.unit(7 + 2/12, "feet"),
  2386. weight: math.unit(320, "kg"),
  2387. name: "Front (Dressed)",
  2388. image: {
  2389. source: "./media/characters/rai/front-dressed.svg",
  2390. extra: 1802/1696,
  2391. bottom: 68/1870
  2392. }
  2393. },
  2394. side: {
  2395. height: math.unit(7 + 2/12, "feet"),
  2396. weight: math.unit(320, "kg"),
  2397. name: "Side",
  2398. image: {
  2399. source: "./media/characters/rai/side.svg",
  2400. extra: 1789/1710,
  2401. bottom: 115/1904
  2402. }
  2403. },
  2404. back: {
  2405. height: math.unit(7 + 2/12, "feet"),
  2406. weight: math.unit(320, "kg"),
  2407. name: "Back",
  2408. image: {
  2409. source: "./media/characters/rai/back.svg",
  2410. extra: 1770/1707,
  2411. bottom: 28/1798
  2412. }
  2413. },
  2414. feral: {
  2415. height: math.unit(9.5, "feet"),
  2416. weight: math.unit(640, "kg"),
  2417. name: "Feral",
  2418. image: {
  2419. source: "./media/characters/rai/feral.svg",
  2420. extra: 945/553,
  2421. bottom: 176/1121
  2422. }
  2423. },
  2424. dragon: {
  2425. height: math.unit(23, "feet"),
  2426. weight: math.unit(50000, "lb"),
  2427. name: "Dragon",
  2428. image: {
  2429. source: "./media/characters/rai/dragon.svg",
  2430. extra: 2498 / 2030,
  2431. bottom: 85.2 / 2584
  2432. }
  2433. },
  2434. maw: {
  2435. height: math.unit(1.69, "feet"),
  2436. name: "Maw",
  2437. image: {
  2438. source: "./media/characters/rai/maw.svg"
  2439. }
  2440. },
  2441. },
  2442. [
  2443. {
  2444. name: "Normal",
  2445. height: math.unit(7 + 2/12, "feet")
  2446. },
  2447. {
  2448. name: "Big",
  2449. height: math.unit(11, "feet")
  2450. },
  2451. {
  2452. name: "Macro",
  2453. height: math.unit(302, "feet"),
  2454. default: true
  2455. },
  2456. ]
  2457. ))
  2458. characterMakers.push(() => makeCharacter(
  2459. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2460. {
  2461. frontDressed: {
  2462. height: math.unit(216, "feet"),
  2463. weight: math.unit(7000000, "lb"),
  2464. name: "Front (Dressed)",
  2465. image: {
  2466. source: "./media/characters/jazzy/front-dressed.svg",
  2467. extra: 2738 / 2651,
  2468. bottom: 41.8 / 2786
  2469. }
  2470. },
  2471. backDressed: {
  2472. height: math.unit(216, "feet"),
  2473. weight: math.unit(7000000, "lb"),
  2474. name: "Back (Dressed)",
  2475. image: {
  2476. source: "./media/characters/jazzy/back-dressed.svg",
  2477. extra: 2775 / 2673,
  2478. bottom: 36.8 / 2817
  2479. }
  2480. },
  2481. front: {
  2482. height: math.unit(216, "feet"),
  2483. weight: math.unit(7000000, "lb"),
  2484. name: "Front",
  2485. image: {
  2486. source: "./media/characters/jazzy/front.svg",
  2487. extra: 2738 / 2651,
  2488. bottom: 41.8 / 2786
  2489. }
  2490. },
  2491. back: {
  2492. height: math.unit(216, "feet"),
  2493. weight: math.unit(7000000, "lb"),
  2494. name: "Back",
  2495. image: {
  2496. source: "./media/characters/jazzy/back.svg",
  2497. extra: 2775 / 2673,
  2498. bottom: 36.8 / 2817
  2499. }
  2500. },
  2501. maw: {
  2502. height: math.unit(20, "feet"),
  2503. name: "Maw",
  2504. image: {
  2505. source: "./media/characters/jazzy/maw.svg"
  2506. }
  2507. },
  2508. paws: {
  2509. height: math.unit(27.5, "feet"),
  2510. name: "Paws",
  2511. image: {
  2512. source: "./media/characters/jazzy/paws.svg"
  2513. }
  2514. },
  2515. eye: {
  2516. height: math.unit(4.4, "feet"),
  2517. name: "Eye",
  2518. image: {
  2519. source: "./media/characters/jazzy/eye.svg"
  2520. }
  2521. },
  2522. droneOffense: {
  2523. height: math.unit(9.5, "inches"),
  2524. name: "Drone (Offense)",
  2525. image: {
  2526. source: "./media/characters/jazzy/drone-offense.svg"
  2527. }
  2528. },
  2529. droneRecon: {
  2530. height: math.unit(9.5, "inches"),
  2531. name: "Drone (Recon)",
  2532. image: {
  2533. source: "./media/characters/jazzy/drone-recon.svg"
  2534. }
  2535. },
  2536. droneDefense: {
  2537. height: math.unit(9.5, "inches"),
  2538. name: "Drone (Defense)",
  2539. image: {
  2540. source: "./media/characters/jazzy/drone-defense.svg"
  2541. }
  2542. },
  2543. },
  2544. [
  2545. {
  2546. name: "Macro",
  2547. height: math.unit(216, "feet"),
  2548. default: true
  2549. },
  2550. ]
  2551. ))
  2552. characterMakers.push(() => makeCharacter(
  2553. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2554. {
  2555. front: {
  2556. height: math.unit(9 + 6/12, "feet"),
  2557. weight: math.unit(700, "lb"),
  2558. name: "Front",
  2559. image: {
  2560. source: "./media/characters/flamm/front.svg",
  2561. extra: 1751/1632,
  2562. bottom: 46/1797
  2563. }
  2564. },
  2565. buff: {
  2566. height: math.unit(9 + 6/12, "feet"),
  2567. weight: math.unit(950, "lb"),
  2568. name: "Buff",
  2569. image: {
  2570. source: "./media/characters/flamm/buff.svg",
  2571. extra: 3018/2874,
  2572. bottom: 221/3239
  2573. }
  2574. },
  2575. },
  2576. [
  2577. {
  2578. name: "Normal",
  2579. height: math.unit(9.5, "feet")
  2580. },
  2581. {
  2582. name: "Macro",
  2583. height: math.unit(200, "feet"),
  2584. default: true
  2585. },
  2586. ]
  2587. ))
  2588. characterMakers.push(() => makeCharacter(
  2589. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2590. {
  2591. front: {
  2592. height: math.unit(5 + 3/12, "feet"),
  2593. weight: math.unit(60, "kg"),
  2594. name: "Front",
  2595. image: {
  2596. source: "./media/characters/zephiro/front.svg",
  2597. extra: 2309 / 2162,
  2598. bottom: 0.069
  2599. }
  2600. },
  2601. side: {
  2602. height: math.unit(5 + 3/12, "feet"),
  2603. weight: math.unit(60, "kg"),
  2604. name: "Side",
  2605. image: {
  2606. source: "./media/characters/zephiro/side.svg",
  2607. extra: 2403 / 2279,
  2608. bottom: 0.015
  2609. }
  2610. },
  2611. back: {
  2612. height: math.unit(5 + 3/12, "feet"),
  2613. weight: math.unit(60, "kg"),
  2614. name: "Back",
  2615. image: {
  2616. source: "./media/characters/zephiro/back.svg",
  2617. extra: 2373 / 2244,
  2618. bottom: 0.013
  2619. }
  2620. },
  2621. hand: {
  2622. height: math.unit(0.68, "feet"),
  2623. name: "Hand",
  2624. image: {
  2625. source: "./media/characters/zephiro/hand.svg"
  2626. }
  2627. },
  2628. paw: {
  2629. height: math.unit(1, "feet"),
  2630. name: "Paw",
  2631. image: {
  2632. source: "./media/characters/zephiro/paw.svg"
  2633. }
  2634. },
  2635. beans: {
  2636. height: math.unit(0.93, "feet"),
  2637. name: "Beans",
  2638. image: {
  2639. source: "./media/characters/zephiro/beans.svg"
  2640. }
  2641. },
  2642. },
  2643. [
  2644. {
  2645. name: "Micro",
  2646. height: math.unit(3, "inches")
  2647. },
  2648. {
  2649. name: "Normal",
  2650. height: math.unit(5 + 3 / 12, "feet"),
  2651. default: true
  2652. },
  2653. {
  2654. name: "Macro",
  2655. height: math.unit(118, "feet")
  2656. },
  2657. ]
  2658. ))
  2659. characterMakers.push(() => makeCharacter(
  2660. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2661. {
  2662. front: {
  2663. height: math.unit(5, "feet"),
  2664. weight: math.unit(90, "kg"),
  2665. name: "Front",
  2666. image: {
  2667. source: "./media/characters/fory/front.svg",
  2668. extra: 2862 / 2674,
  2669. bottom: 180 / 3043.8
  2670. }
  2671. },
  2672. back: {
  2673. height: math.unit(5, "feet"),
  2674. weight: math.unit(90, "kg"),
  2675. name: "Back",
  2676. image: {
  2677. source: "./media/characters/fory/back.svg",
  2678. extra: 2962 / 2791,
  2679. bottom: 106 / 3071.8
  2680. }
  2681. },
  2682. foot: {
  2683. height: math.unit(2.14, "feet"),
  2684. name: "Foot",
  2685. image: {
  2686. source: "./media/characters/fory/foot.svg"
  2687. }
  2688. },
  2689. },
  2690. [
  2691. {
  2692. name: "Normal",
  2693. height: math.unit(5, "feet")
  2694. },
  2695. {
  2696. name: "Macro",
  2697. height: math.unit(50, "feet"),
  2698. default: true
  2699. },
  2700. {
  2701. name: "Megamacro",
  2702. height: math.unit(10, "miles")
  2703. },
  2704. {
  2705. name: "Gigamacro",
  2706. height: math.unit(5, "earths")
  2707. },
  2708. ]
  2709. ))
  2710. characterMakers.push(() => makeCharacter(
  2711. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2712. {
  2713. front: {
  2714. height: math.unit(7, "feet"),
  2715. weight: math.unit(90, "kg"),
  2716. name: "Front",
  2717. image: {
  2718. source: "./media/characters/kurrikage/front.svg",
  2719. extra: 1,
  2720. bottom: 0.035
  2721. }
  2722. },
  2723. back: {
  2724. height: math.unit(7, "feet"),
  2725. weight: math.unit(90, "lb"),
  2726. name: "Back",
  2727. image: {
  2728. source: "./media/characters/kurrikage/back.svg"
  2729. }
  2730. },
  2731. paw: {
  2732. height: math.unit(1.5, "feet"),
  2733. name: "Paw",
  2734. image: {
  2735. source: "./media/characters/kurrikage/paw.svg"
  2736. }
  2737. },
  2738. staff: {
  2739. height: math.unit(6.7, "feet"),
  2740. name: "Staff",
  2741. image: {
  2742. source: "./media/characters/kurrikage/staff.svg"
  2743. }
  2744. },
  2745. peek: {
  2746. height: math.unit(1.05, "feet"),
  2747. name: "Peeking",
  2748. image: {
  2749. source: "./media/characters/kurrikage/peek.svg",
  2750. bottom: 0.08
  2751. }
  2752. },
  2753. },
  2754. [
  2755. {
  2756. name: "Normal",
  2757. height: math.unit(12, "feet"),
  2758. default: true
  2759. },
  2760. {
  2761. name: "Big",
  2762. height: math.unit(20, "feet")
  2763. },
  2764. {
  2765. name: "Macro",
  2766. height: math.unit(500, "feet")
  2767. },
  2768. {
  2769. name: "Megamacro",
  2770. height: math.unit(20, "miles")
  2771. },
  2772. ]
  2773. ))
  2774. characterMakers.push(() => makeCharacter(
  2775. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2776. {
  2777. front: {
  2778. height: math.unit(6, "feet"),
  2779. weight: math.unit(75, "kg"),
  2780. name: "Front",
  2781. image: {
  2782. source: "./media/characters/shingo/front.svg",
  2783. extra: 1900/1825,
  2784. bottom: 82/1982
  2785. }
  2786. },
  2787. side: {
  2788. height: math.unit(6, "feet"),
  2789. weight: math.unit(75, "kg"),
  2790. name: "Side",
  2791. image: {
  2792. source: "./media/characters/shingo/side.svg",
  2793. extra: 1930/1865,
  2794. bottom: 16/1946
  2795. }
  2796. },
  2797. back: {
  2798. height: math.unit(6, "feet"),
  2799. weight: math.unit(75, "kg"),
  2800. name: "Back",
  2801. image: {
  2802. source: "./media/characters/shingo/back.svg",
  2803. extra: 1922/1852,
  2804. bottom: 16/1938
  2805. }
  2806. },
  2807. frontDressed: {
  2808. height: math.unit(6, "feet"),
  2809. weight: math.unit(150, "lb"),
  2810. name: "Front-dressed",
  2811. image: {
  2812. source: "./media/characters/shingo/front-dressed.svg",
  2813. extra: 1900/1825,
  2814. bottom: 82/1982
  2815. }
  2816. },
  2817. paw: {
  2818. height: math.unit(1.29, "feet"),
  2819. name: "Paw",
  2820. image: {
  2821. source: "./media/characters/shingo/paw.svg"
  2822. }
  2823. },
  2824. hand: {
  2825. height: math.unit(1.07, "feet"),
  2826. name: "Hand",
  2827. image: {
  2828. source: "./media/characters/shingo/hand.svg"
  2829. }
  2830. },
  2831. frontAlt: {
  2832. height: math.unit(6, "feet"),
  2833. weight: math.unit(75, "kg"),
  2834. name: "Front (Alt)",
  2835. image: {
  2836. source: "./media/characters/shingo/front-alt.svg",
  2837. extra: 3511 / 3338,
  2838. bottom: 0.005
  2839. }
  2840. },
  2841. frontAlt2: {
  2842. height: math.unit(6, "feet"),
  2843. weight: math.unit(75, "kg"),
  2844. name: "Front (Alt 2)",
  2845. image: {
  2846. source: "./media/characters/shingo/front-alt-2.svg",
  2847. extra: 706/681,
  2848. bottom: 11/717
  2849. }
  2850. },
  2851. pawAlt: {
  2852. height: math.unit(1, "feet"),
  2853. name: "Paw (Alt)",
  2854. image: {
  2855. source: "./media/characters/shingo/paw-alt.svg"
  2856. }
  2857. },
  2858. },
  2859. [
  2860. {
  2861. name: "Micro",
  2862. height: math.unit(4, "inches")
  2863. },
  2864. {
  2865. name: "Normal",
  2866. height: math.unit(6, "feet"),
  2867. default: true
  2868. },
  2869. {
  2870. name: "Macro",
  2871. height: math.unit(108, "feet")
  2872. },
  2873. {
  2874. name: "Macro+",
  2875. height: math.unit(1500, "feet")
  2876. },
  2877. ]
  2878. ))
  2879. characterMakers.push(() => makeCharacter(
  2880. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2881. {
  2882. side: {
  2883. height: math.unit(6, "feet"),
  2884. weight: math.unit(75, "kg"),
  2885. name: "Side",
  2886. image: {
  2887. source: "./media/characters/aigey/side.svg"
  2888. }
  2889. },
  2890. },
  2891. [
  2892. {
  2893. name: "Macro",
  2894. height: math.unit(200, "feet"),
  2895. default: true
  2896. },
  2897. {
  2898. name: "Megamacro",
  2899. height: math.unit(100, "miles")
  2900. },
  2901. ]
  2902. )
  2903. )
  2904. characterMakers.push(() => makeCharacter(
  2905. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2906. {
  2907. front: {
  2908. height: math.unit(5 + 5 / 12, "feet"),
  2909. weight: math.unit(75, "kg"),
  2910. name: "Front",
  2911. image: {
  2912. source: "./media/characters/natasha/front.svg",
  2913. extra: 859 / 824,
  2914. bottom: 23 / 879.6
  2915. }
  2916. },
  2917. frontNsfw: {
  2918. height: math.unit(5 + 5 / 12, "feet"),
  2919. weight: math.unit(75, "kg"),
  2920. name: "Front (NSFW)",
  2921. image: {
  2922. source: "./media/characters/natasha/front-nsfw.svg",
  2923. extra: 859 / 824,
  2924. bottom: 23 / 879.6
  2925. }
  2926. },
  2927. frontErect: {
  2928. height: math.unit(5 + 5 / 12, "feet"),
  2929. weight: math.unit(75, "kg"),
  2930. name: "Front (Erect)",
  2931. image: {
  2932. source: "./media/characters/natasha/front-erect.svg",
  2933. extra: 859 / 824,
  2934. bottom: 23 / 879.6
  2935. }
  2936. },
  2937. back: {
  2938. height: math.unit(5 + 5 / 12, "feet"),
  2939. weight: math.unit(75, "kg"),
  2940. name: "Back",
  2941. image: {
  2942. source: "./media/characters/natasha/back.svg",
  2943. extra: 887.9 / 852.6,
  2944. bottom: 9.7 / 896.4
  2945. }
  2946. },
  2947. backAlt: {
  2948. height: math.unit(5 + 5 / 12, "feet"),
  2949. weight: math.unit(75, "kg"),
  2950. name: "Back (Alt)",
  2951. image: {
  2952. source: "./media/characters/natasha/back-alt.svg",
  2953. extra: 1236.7 / 1192,
  2954. bottom: 22.3 / 1258.2
  2955. }
  2956. },
  2957. dick: {
  2958. height: math.unit(1.772, "feet"),
  2959. name: "Dick",
  2960. image: {
  2961. source: "./media/characters/natasha/dick.svg"
  2962. }
  2963. },
  2964. paw: {
  2965. height: math.unit(0.250, "meters"),
  2966. name: "Paw",
  2967. image: {
  2968. source: "./media/characters/natasha/paw.svg"
  2969. }
  2970. },
  2971. },
  2972. [
  2973. {
  2974. name: "Normal",
  2975. height: math.unit(5 + 5 / 12, "feet")
  2976. },
  2977. {
  2978. name: "Large",
  2979. height: math.unit(12, "feet")
  2980. },
  2981. {
  2982. name: "Macro",
  2983. height: math.unit(100, "feet"),
  2984. default: true
  2985. },
  2986. {
  2987. name: "Macro+",
  2988. height: math.unit(260, "feet")
  2989. },
  2990. {
  2991. name: "Macro++",
  2992. height: math.unit(1, "mile")
  2993. },
  2994. ]
  2995. ))
  2996. characterMakers.push(() => makeCharacter(
  2997. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2998. {
  2999. front: {
  3000. height: math.unit(6, "feet"),
  3001. weight: math.unit(75, "kg"),
  3002. name: "Front",
  3003. image: {
  3004. source: "./media/characters/malik/front.svg"
  3005. }
  3006. },
  3007. side: {
  3008. height: math.unit(6, "feet"),
  3009. weight: math.unit(75, "kg"),
  3010. name: "Side",
  3011. image: {
  3012. source: "./media/characters/malik/side.svg",
  3013. extra: 1.1539
  3014. }
  3015. },
  3016. back: {
  3017. height: math.unit(6, "feet"),
  3018. weight: math.unit(75, "kg"),
  3019. name: "Back",
  3020. image: {
  3021. source: "./media/characters/malik/back.svg"
  3022. }
  3023. },
  3024. },
  3025. [
  3026. {
  3027. name: "Macro",
  3028. height: math.unit(156, "feet"),
  3029. default: true
  3030. },
  3031. {
  3032. name: "Macro+",
  3033. height: math.unit(1188, "feet")
  3034. },
  3035. ]
  3036. ))
  3037. characterMakers.push(() => makeCharacter(
  3038. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3039. {
  3040. front: {
  3041. height: math.unit(6, "feet"),
  3042. weight: math.unit(75, "kg"),
  3043. name: "Front",
  3044. image: {
  3045. source: "./media/characters/sefer/front.svg",
  3046. extra: 848 / 659,
  3047. bottom: 28.3 / 876.442
  3048. }
  3049. },
  3050. back: {
  3051. height: math.unit(6, "feet"),
  3052. weight: math.unit(75, "kg"),
  3053. name: "Back",
  3054. image: {
  3055. source: "./media/characters/sefer/back.svg",
  3056. extra: 864 / 695,
  3057. bottom: 10 / 871
  3058. }
  3059. },
  3060. frontDressed: {
  3061. height: math.unit(6, "feet"),
  3062. weight: math.unit(75, "kg"),
  3063. name: "Front (Dressed)",
  3064. image: {
  3065. source: "./media/characters/sefer/front-dressed.svg",
  3066. extra: 839 / 653,
  3067. bottom: 37.6 / 878
  3068. }
  3069. },
  3070. },
  3071. [
  3072. {
  3073. name: "Normal",
  3074. height: math.unit(6, "feet"),
  3075. default: true
  3076. },
  3077. ]
  3078. ))
  3079. characterMakers.push(() => makeCharacter(
  3080. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3081. {
  3082. body: {
  3083. height: math.unit(2.2428, "meter"),
  3084. weight: math.unit(124.738, "kg"),
  3085. name: "Body",
  3086. image: {
  3087. extra: 1225 / 1050,
  3088. source: "./media/characters/north/front.svg"
  3089. }
  3090. }
  3091. },
  3092. [
  3093. {
  3094. name: "Micro",
  3095. height: math.unit(4, "inches")
  3096. },
  3097. {
  3098. name: "Macro",
  3099. height: math.unit(63, "meters")
  3100. },
  3101. {
  3102. name: "Megamacro",
  3103. height: math.unit(101, "miles"),
  3104. default: true
  3105. }
  3106. ]
  3107. ))
  3108. characterMakers.push(() => makeCharacter(
  3109. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3110. {
  3111. angled: {
  3112. height: math.unit(4, "meter"),
  3113. weight: math.unit(150, "kg"),
  3114. name: "Angled",
  3115. image: {
  3116. source: "./media/characters/talan/angled-sfw.svg",
  3117. bottom: 29 / 3734
  3118. }
  3119. },
  3120. angledNsfw: {
  3121. height: math.unit(4, "meter"),
  3122. weight: math.unit(150, "kg"),
  3123. name: "Angled (NSFW)",
  3124. image: {
  3125. source: "./media/characters/talan/angled-nsfw.svg",
  3126. bottom: 29 / 3734
  3127. }
  3128. },
  3129. frontNsfw: {
  3130. height: math.unit(4, "meter"),
  3131. weight: math.unit(150, "kg"),
  3132. name: "Front (NSFW)",
  3133. image: {
  3134. source: "./media/characters/talan/front-nsfw.svg",
  3135. bottom: 29 / 3734
  3136. }
  3137. },
  3138. sideNsfw: {
  3139. height: math.unit(4, "meter"),
  3140. weight: math.unit(150, "kg"),
  3141. name: "Side (NSFW)",
  3142. image: {
  3143. source: "./media/characters/talan/side-nsfw.svg",
  3144. bottom: 29 / 3734
  3145. }
  3146. },
  3147. back: {
  3148. height: math.unit(4, "meter"),
  3149. weight: math.unit(150, "kg"),
  3150. name: "Back",
  3151. image: {
  3152. source: "./media/characters/talan/back.svg"
  3153. }
  3154. },
  3155. dickBottom: {
  3156. height: math.unit(0.621, "meter"),
  3157. name: "Dick (Bottom)",
  3158. image: {
  3159. source: "./media/characters/talan/dick-bottom.svg"
  3160. }
  3161. },
  3162. dickTop: {
  3163. height: math.unit(0.621, "meter"),
  3164. name: "Dick (Top)",
  3165. image: {
  3166. source: "./media/characters/talan/dick-top.svg"
  3167. }
  3168. },
  3169. dickSide: {
  3170. height: math.unit(0.305, "meter"),
  3171. name: "Dick (Side)",
  3172. image: {
  3173. source: "./media/characters/talan/dick-side.svg"
  3174. }
  3175. },
  3176. dickFront: {
  3177. height: math.unit(0.305, "meter"),
  3178. name: "Dick (Front)",
  3179. image: {
  3180. source: "./media/characters/talan/dick-front.svg"
  3181. }
  3182. },
  3183. },
  3184. [
  3185. {
  3186. name: "Normal",
  3187. height: math.unit(4, "meters")
  3188. },
  3189. {
  3190. name: "Macro",
  3191. height: math.unit(100, "meters")
  3192. },
  3193. {
  3194. name: "Megamacro",
  3195. height: math.unit(2, "miles"),
  3196. default: true
  3197. },
  3198. {
  3199. name: "Gigamacro",
  3200. height: math.unit(5000, "miles")
  3201. },
  3202. {
  3203. name: "Teramacro",
  3204. height: math.unit(100, "parsecs")
  3205. }
  3206. ]
  3207. ))
  3208. characterMakers.push(() => makeCharacter(
  3209. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3210. {
  3211. front: {
  3212. height: math.unit(2, "meter"),
  3213. weight: math.unit(90, "kg"),
  3214. name: "Front",
  3215. image: {
  3216. source: "./media/characters/gael'rathus/front.svg"
  3217. }
  3218. },
  3219. frontAlt: {
  3220. height: math.unit(2, "meter"),
  3221. weight: math.unit(90, "kg"),
  3222. name: "Front (alt)",
  3223. image: {
  3224. source: "./media/characters/gael'rathus/front-alt.svg"
  3225. }
  3226. },
  3227. frontAlt2: {
  3228. height: math.unit(2, "meter"),
  3229. weight: math.unit(90, "kg"),
  3230. name: "Front (alt 2)",
  3231. image: {
  3232. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3233. }
  3234. }
  3235. },
  3236. [
  3237. {
  3238. name: "Normal",
  3239. height: math.unit(9, "feet"),
  3240. default: true
  3241. },
  3242. {
  3243. name: "Large",
  3244. height: math.unit(25, "feet")
  3245. },
  3246. {
  3247. name: "Macro",
  3248. height: math.unit(0.25, "miles")
  3249. },
  3250. {
  3251. name: "Megamacro",
  3252. height: math.unit(10, "miles")
  3253. }
  3254. ]
  3255. ))
  3256. characterMakers.push(() => makeCharacter(
  3257. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3258. {
  3259. side: {
  3260. height: math.unit(2, "meter"),
  3261. weight: math.unit(140, "kg"),
  3262. name: "Side",
  3263. image: {
  3264. source: "./media/characters/sosha/side.svg",
  3265. bottom: 0.042
  3266. }
  3267. },
  3268. },
  3269. [
  3270. {
  3271. name: "Normal",
  3272. height: math.unit(12, "feet"),
  3273. default: true
  3274. }
  3275. ]
  3276. ))
  3277. characterMakers.push(() => makeCharacter(
  3278. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3279. {
  3280. side: {
  3281. height: math.unit(5 + 5 / 12, "feet"),
  3282. weight: math.unit(170, "kg"),
  3283. name: "Side",
  3284. image: {
  3285. source: "./media/characters/runnola/side.svg",
  3286. extra: 741 / 448,
  3287. bottom: 0.05
  3288. }
  3289. },
  3290. },
  3291. [
  3292. {
  3293. name: "Small",
  3294. height: math.unit(3, "feet")
  3295. },
  3296. {
  3297. name: "Normal",
  3298. height: math.unit(5 + 5 / 12, "feet"),
  3299. default: true
  3300. },
  3301. {
  3302. name: "Big",
  3303. height: math.unit(10, "feet")
  3304. },
  3305. ]
  3306. ))
  3307. characterMakers.push(() => makeCharacter(
  3308. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3309. {
  3310. front: {
  3311. height: math.unit(2, "meter"),
  3312. weight: math.unit(50, "kg"),
  3313. name: "Front",
  3314. image: {
  3315. source: "./media/characters/kurribird/front.svg",
  3316. bottom: 0.015
  3317. }
  3318. },
  3319. frontAlt: {
  3320. height: math.unit(1.5, "meter"),
  3321. weight: math.unit(50, "kg"),
  3322. name: "Front (Alt)",
  3323. image: {
  3324. source: "./media/characters/kurribird/front-alt.svg",
  3325. extra: 1.45
  3326. }
  3327. },
  3328. },
  3329. [
  3330. {
  3331. name: "Normal",
  3332. height: math.unit(7, "feet")
  3333. },
  3334. {
  3335. name: "Big",
  3336. height: math.unit(12, "feet"),
  3337. default: true
  3338. },
  3339. {
  3340. name: "Macro",
  3341. height: math.unit(1500, "feet")
  3342. },
  3343. {
  3344. name: "Megamacro",
  3345. height: math.unit(2, "miles")
  3346. }
  3347. ]
  3348. ))
  3349. characterMakers.push(() => makeCharacter(
  3350. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3351. {
  3352. front: {
  3353. height: math.unit(2, "meter"),
  3354. weight: math.unit(80, "kg"),
  3355. name: "Front",
  3356. image: {
  3357. source: "./media/characters/elbial/front.svg",
  3358. extra: 1643 / 1556,
  3359. bottom: 60.2 / 1696
  3360. }
  3361. },
  3362. side: {
  3363. height: math.unit(2, "meter"),
  3364. weight: math.unit(80, "kg"),
  3365. name: "Side",
  3366. image: {
  3367. source: "./media/characters/elbial/side.svg",
  3368. extra: 1630 / 1565,
  3369. bottom: 71.5 / 1697
  3370. }
  3371. },
  3372. back: {
  3373. height: math.unit(2, "meter"),
  3374. weight: math.unit(80, "kg"),
  3375. name: "Back",
  3376. image: {
  3377. source: "./media/characters/elbial/back.svg",
  3378. extra: 1668 / 1595,
  3379. bottom: 5.6 / 1672
  3380. }
  3381. },
  3382. frontDressed: {
  3383. height: math.unit(2, "meter"),
  3384. weight: math.unit(80, "kg"),
  3385. name: "Front (Dressed)",
  3386. image: {
  3387. source: "./media/characters/elbial/front-dressed.svg",
  3388. extra: 1653 / 1584,
  3389. bottom: 57 / 1708
  3390. }
  3391. },
  3392. genitals: {
  3393. height: math.unit(2 / 3.367, "meter"),
  3394. name: "Genitals",
  3395. image: {
  3396. source: "./media/characters/elbial/genitals.svg"
  3397. }
  3398. },
  3399. },
  3400. [
  3401. {
  3402. name: "Large",
  3403. height: math.unit(100, "feet")
  3404. },
  3405. {
  3406. name: "Macro",
  3407. height: math.unit(500, "feet"),
  3408. default: true
  3409. },
  3410. {
  3411. name: "Megamacro",
  3412. height: math.unit(10, "miles")
  3413. },
  3414. {
  3415. name: "Gigamacro",
  3416. height: math.unit(25000, "miles")
  3417. },
  3418. {
  3419. name: "Full-Size",
  3420. height: math.unit(8000000, "gigaparsecs")
  3421. }
  3422. ]
  3423. ))
  3424. characterMakers.push(() => makeCharacter(
  3425. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3426. {
  3427. front: {
  3428. height: math.unit(2, "meter"),
  3429. weight: math.unit(60, "kg"),
  3430. name: "Front",
  3431. image: {
  3432. source: "./media/characters/noah/front.svg"
  3433. }
  3434. },
  3435. talons: {
  3436. height: math.unit(0.315, "meter"),
  3437. name: "Talons",
  3438. image: {
  3439. source: "./media/characters/noah/talons.svg"
  3440. }
  3441. }
  3442. },
  3443. [
  3444. {
  3445. name: "Large",
  3446. height: math.unit(50, "feet")
  3447. },
  3448. {
  3449. name: "Macro",
  3450. height: math.unit(750, "feet"),
  3451. default: true
  3452. },
  3453. {
  3454. name: "Megamacro",
  3455. height: math.unit(50, "miles")
  3456. },
  3457. {
  3458. name: "Gigamacro",
  3459. height: math.unit(100000, "miles")
  3460. },
  3461. {
  3462. name: "Full-Size",
  3463. height: math.unit(3000000000, "miles")
  3464. }
  3465. ]
  3466. ))
  3467. characterMakers.push(() => makeCharacter(
  3468. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3469. {
  3470. front: {
  3471. height: math.unit(2, "meter"),
  3472. weight: math.unit(80, "kg"),
  3473. name: "Front",
  3474. image: {
  3475. source: "./media/characters/natalya/front.svg"
  3476. }
  3477. },
  3478. back: {
  3479. height: math.unit(2, "meter"),
  3480. weight: math.unit(80, "kg"),
  3481. name: "Back",
  3482. image: {
  3483. source: "./media/characters/natalya/back.svg"
  3484. }
  3485. }
  3486. },
  3487. [
  3488. {
  3489. name: "Normal",
  3490. height: math.unit(150, "feet"),
  3491. default: true
  3492. },
  3493. {
  3494. name: "Megamacro",
  3495. height: math.unit(5, "miles")
  3496. },
  3497. {
  3498. name: "Full-Size",
  3499. height: math.unit(600, "kiloparsecs")
  3500. }
  3501. ]
  3502. ))
  3503. characterMakers.push(() => makeCharacter(
  3504. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3505. {
  3506. front: {
  3507. height: math.unit(2, "meter"),
  3508. weight: math.unit(50, "kg"),
  3509. name: "Front",
  3510. image: {
  3511. source: "./media/characters/erestrebah/front.svg",
  3512. extra: 208 / 193,
  3513. bottom: 0.055
  3514. }
  3515. },
  3516. back: {
  3517. height: math.unit(2, "meter"),
  3518. weight: math.unit(50, "kg"),
  3519. name: "Back",
  3520. image: {
  3521. source: "./media/characters/erestrebah/back.svg",
  3522. extra: 1.3
  3523. }
  3524. }
  3525. },
  3526. [
  3527. {
  3528. name: "Normal",
  3529. height: math.unit(10, "feet")
  3530. },
  3531. {
  3532. name: "Large",
  3533. height: math.unit(50, "feet"),
  3534. default: true
  3535. },
  3536. {
  3537. name: "Macro",
  3538. height: math.unit(300, "feet")
  3539. },
  3540. {
  3541. name: "Macro+",
  3542. height: math.unit(750, "feet")
  3543. },
  3544. {
  3545. name: "Megamacro",
  3546. height: math.unit(3, "miles")
  3547. }
  3548. ]
  3549. ))
  3550. characterMakers.push(() => makeCharacter(
  3551. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3552. {
  3553. front: {
  3554. height: math.unit(2, "meter"),
  3555. weight: math.unit(80, "kg"),
  3556. name: "Front",
  3557. image: {
  3558. source: "./media/characters/jennifer/front.svg",
  3559. bottom: 0.11,
  3560. extra: 1.16
  3561. }
  3562. },
  3563. frontAlt: {
  3564. height: math.unit(2, "meter"),
  3565. weight: math.unit(80, "kg"),
  3566. name: "Front (Alt)",
  3567. image: {
  3568. source: "./media/characters/jennifer/front-alt.svg"
  3569. }
  3570. }
  3571. },
  3572. [
  3573. {
  3574. name: "Canon Height",
  3575. height: math.unit(120, "feet"),
  3576. default: true
  3577. },
  3578. {
  3579. name: "Macro+",
  3580. height: math.unit(300, "feet")
  3581. },
  3582. {
  3583. name: "Megamacro",
  3584. height: math.unit(20000, "feet")
  3585. }
  3586. ]
  3587. ))
  3588. characterMakers.push(() => makeCharacter(
  3589. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3590. {
  3591. front: {
  3592. height: math.unit(2, "meter"),
  3593. weight: math.unit(50, "kg"),
  3594. name: "Front",
  3595. image: {
  3596. source: "./media/characters/kalista/front.svg",
  3597. extra: 1947 / 1700,
  3598. bottom: 76.6 / 1412.98
  3599. }
  3600. },
  3601. back: {
  3602. height: math.unit(2, "meter"),
  3603. weight: math.unit(50, "kg"),
  3604. name: "Back",
  3605. image: {
  3606. source: "./media/characters/kalista/back.svg",
  3607. extra: 1366 / 1156,
  3608. bottom: 33.9 / 1362.78
  3609. }
  3610. }
  3611. },
  3612. [
  3613. {
  3614. name: "Uncomfortably Small",
  3615. height: math.unit(10, "feet")
  3616. },
  3617. {
  3618. name: "Small",
  3619. height: math.unit(30, "feet")
  3620. },
  3621. {
  3622. name: "Macro",
  3623. height: math.unit(100, "feet"),
  3624. default: true
  3625. },
  3626. {
  3627. name: "Macro+",
  3628. height: math.unit(2000, "feet")
  3629. },
  3630. {
  3631. name: "True Form",
  3632. height: math.unit(8924, "miles")
  3633. }
  3634. ]
  3635. ))
  3636. characterMakers.push(() => makeCharacter(
  3637. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3638. {
  3639. front: {
  3640. height: math.unit(2, "meter"),
  3641. weight: math.unit(120, "kg"),
  3642. name: "Front",
  3643. image: {
  3644. source: "./media/characters/ggv/front.svg"
  3645. }
  3646. },
  3647. side: {
  3648. height: math.unit(2, "meter"),
  3649. weight: math.unit(120, "kg"),
  3650. name: "Side",
  3651. image: {
  3652. source: "./media/characters/ggv/side.svg"
  3653. }
  3654. }
  3655. },
  3656. [
  3657. {
  3658. name: "Extremely Puny",
  3659. height: math.unit(9 + 5 / 12, "feet")
  3660. },
  3661. {
  3662. name: "Horribly Small",
  3663. height: math.unit(47.7, "miles"),
  3664. default: true
  3665. },
  3666. {
  3667. name: "Reasonably Sized",
  3668. height: math.unit(25000, "parsecs")
  3669. },
  3670. {
  3671. name: "Slightly Uncompressed",
  3672. height: math.unit(7.77e31, "parsecs")
  3673. },
  3674. {
  3675. name: "Omniversal",
  3676. height: math.unit(1e300, "meters")
  3677. },
  3678. ]
  3679. ))
  3680. characterMakers.push(() => makeCharacter(
  3681. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3682. {
  3683. front: {
  3684. height: math.unit(2, "meter"),
  3685. weight: math.unit(75, "lb"),
  3686. name: "Front",
  3687. image: {
  3688. source: "./media/characters/napalm/front.svg"
  3689. }
  3690. },
  3691. back: {
  3692. height: math.unit(2, "meter"),
  3693. weight: math.unit(75, "lb"),
  3694. name: "Back",
  3695. image: {
  3696. source: "./media/characters/napalm/back.svg"
  3697. }
  3698. }
  3699. },
  3700. [
  3701. {
  3702. name: "Standard",
  3703. height: math.unit(55, "feet"),
  3704. default: true
  3705. }
  3706. ]
  3707. ))
  3708. characterMakers.push(() => makeCharacter(
  3709. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3710. {
  3711. front: {
  3712. height: math.unit(7 + 5 / 6, "feet"),
  3713. weight: math.unit(325, "lb"),
  3714. name: "Front",
  3715. image: {
  3716. source: "./media/characters/asana/front.svg",
  3717. extra: 1133 / 1060,
  3718. bottom: 15.2 / 1148.6
  3719. }
  3720. },
  3721. back: {
  3722. height: math.unit(7 + 5 / 6, "feet"),
  3723. weight: math.unit(325, "lb"),
  3724. name: "Back",
  3725. image: {
  3726. source: "./media/characters/asana/back.svg",
  3727. extra: 1114 / 1043,
  3728. bottom: 5 / 1120
  3729. }
  3730. },
  3731. dressedDark: {
  3732. height: math.unit(7 + 5 / 6, "feet"),
  3733. weight: math.unit(325, "lb"),
  3734. name: "Dressed (Dark)",
  3735. image: {
  3736. source: "./media/characters/asana/dressed-dark.svg",
  3737. extra: 1133 / 1060,
  3738. bottom: 15.2 / 1148.6
  3739. }
  3740. },
  3741. dressedLight: {
  3742. height: math.unit(7 + 5 / 6, "feet"),
  3743. weight: math.unit(325, "lb"),
  3744. name: "Dressed (Light)",
  3745. image: {
  3746. source: "./media/characters/asana/dressed-light.svg",
  3747. extra: 1133 / 1060,
  3748. bottom: 15.2 / 1148.6
  3749. }
  3750. },
  3751. },
  3752. [
  3753. {
  3754. name: "Standard",
  3755. height: math.unit(7 + 5 / 6, "feet"),
  3756. default: true
  3757. },
  3758. {
  3759. name: "Large",
  3760. height: math.unit(10, "meters")
  3761. },
  3762. {
  3763. name: "Macro",
  3764. height: math.unit(2500, "meters")
  3765. },
  3766. {
  3767. name: "Megamacro",
  3768. height: math.unit(5e6, "meters")
  3769. },
  3770. {
  3771. name: "Examacro",
  3772. height: math.unit(5e12, "lightyears")
  3773. },
  3774. {
  3775. name: "Max Size",
  3776. height: math.unit(1e31, "lightyears")
  3777. }
  3778. ]
  3779. ))
  3780. characterMakers.push(() => makeCharacter(
  3781. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3782. {
  3783. front: {
  3784. height: math.unit(2, "meter"),
  3785. weight: math.unit(60, "kg"),
  3786. name: "Front",
  3787. image: {
  3788. source: "./media/characters/ebony/front.svg",
  3789. bottom: 0.03,
  3790. extra: 1045 / 810 + 0.03
  3791. }
  3792. },
  3793. side: {
  3794. height: math.unit(2, "meter"),
  3795. weight: math.unit(60, "kg"),
  3796. name: "Side",
  3797. image: {
  3798. source: "./media/characters/ebony/side.svg",
  3799. bottom: 0.03,
  3800. extra: 1045 / 810 + 0.03
  3801. }
  3802. },
  3803. back: {
  3804. height: math.unit(2, "meter"),
  3805. weight: math.unit(60, "kg"),
  3806. name: "Back",
  3807. image: {
  3808. source: "./media/characters/ebony/back.svg",
  3809. bottom: 0.01,
  3810. extra: 1045 / 810 + 0.01
  3811. }
  3812. },
  3813. },
  3814. [
  3815. // TODO check why I did this lol
  3816. {
  3817. name: "Standard",
  3818. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3819. default: true
  3820. },
  3821. {
  3822. name: "Macro",
  3823. height: math.unit(200, "feet")
  3824. },
  3825. {
  3826. name: "Gigamacro",
  3827. height: math.unit(13000, "km")
  3828. }
  3829. ]
  3830. ))
  3831. characterMakers.push(() => makeCharacter(
  3832. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3833. {
  3834. front: {
  3835. height: math.unit(6, "feet"),
  3836. weight: math.unit(175, "lb"),
  3837. name: "Front",
  3838. image: {
  3839. source: "./media/characters/mountain/front.svg",
  3840. extra: 972 / 955,
  3841. bottom: 64 / 1036.6
  3842. }
  3843. },
  3844. back: {
  3845. height: math.unit(6, "feet"),
  3846. weight: math.unit(175, "lb"),
  3847. name: "Back",
  3848. image: {
  3849. source: "./media/characters/mountain/back.svg",
  3850. extra: 970 / 950,
  3851. bottom: 28.25 / 999
  3852. }
  3853. },
  3854. },
  3855. [
  3856. {
  3857. name: "Large",
  3858. height: math.unit(20, "meters")
  3859. },
  3860. {
  3861. name: "Macro",
  3862. height: math.unit(300, "meters")
  3863. },
  3864. {
  3865. name: "Gigamacro",
  3866. height: math.unit(10000, "km"),
  3867. default: true
  3868. },
  3869. {
  3870. name: "Examacro",
  3871. height: math.unit(10e9, "lightyears")
  3872. }
  3873. ]
  3874. ))
  3875. characterMakers.push(() => makeCharacter(
  3876. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3877. {
  3878. front: {
  3879. height: math.unit(8, "feet"),
  3880. weight: math.unit(500, "lb"),
  3881. name: "Front",
  3882. image: {
  3883. source: "./media/characters/rick/front.svg"
  3884. }
  3885. }
  3886. },
  3887. [
  3888. {
  3889. name: "Normal",
  3890. height: math.unit(8, "feet"),
  3891. default: true
  3892. },
  3893. {
  3894. name: "Macro",
  3895. height: math.unit(5, "km")
  3896. }
  3897. ]
  3898. ))
  3899. characterMakers.push(() => makeCharacter(
  3900. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3901. {
  3902. front: {
  3903. height: math.unit(8, "feet"),
  3904. weight: math.unit(120, "lb"),
  3905. name: "Front",
  3906. image: {
  3907. source: "./media/characters/ona/front.svg"
  3908. }
  3909. },
  3910. frontAlt: {
  3911. height: math.unit(8, "feet"),
  3912. weight: math.unit(120, "lb"),
  3913. name: "Front (Alt)",
  3914. image: {
  3915. source: "./media/characters/ona/front-alt.svg"
  3916. }
  3917. },
  3918. back: {
  3919. height: math.unit(8, "feet"),
  3920. weight: math.unit(120, "lb"),
  3921. name: "Back",
  3922. image: {
  3923. source: "./media/characters/ona/back.svg"
  3924. }
  3925. },
  3926. foot: {
  3927. height: math.unit(1.1, "feet"),
  3928. name: "Foot",
  3929. image: {
  3930. source: "./media/characters/ona/foot.svg"
  3931. }
  3932. }
  3933. },
  3934. [
  3935. {
  3936. name: "Megamacro",
  3937. height: math.unit(70, "km"),
  3938. default: true
  3939. },
  3940. {
  3941. name: "Gigamacro",
  3942. height: math.unit(681818, "miles")
  3943. },
  3944. {
  3945. name: "Examacro",
  3946. height: math.unit(3800000, "lightyears")
  3947. },
  3948. ]
  3949. ))
  3950. characterMakers.push(() => makeCharacter(
  3951. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3952. {
  3953. front: {
  3954. height: math.unit(12, "feet"),
  3955. weight: math.unit(3000, "lb"),
  3956. name: "Front",
  3957. image: {
  3958. source: "./media/characters/mech/front.svg",
  3959. extra: 2900 / 2770,
  3960. bottom: 110 / 3010
  3961. }
  3962. },
  3963. back: {
  3964. height: math.unit(12, "feet"),
  3965. weight: math.unit(3000, "lb"),
  3966. name: "Back",
  3967. image: {
  3968. source: "./media/characters/mech/back.svg",
  3969. extra: 3011 / 2890,
  3970. bottom: 94 / 3105
  3971. }
  3972. },
  3973. maw: {
  3974. height: math.unit(3.07, "feet"),
  3975. name: "Maw",
  3976. image: {
  3977. source: "./media/characters/mech/maw.svg"
  3978. }
  3979. },
  3980. head: {
  3981. height: math.unit(2.82, "feet"),
  3982. name: "Head",
  3983. image: {
  3984. source: "./media/characters/mech/head.svg"
  3985. }
  3986. },
  3987. dick: {
  3988. height: math.unit(1.43, "feet"),
  3989. name: "Dick",
  3990. image: {
  3991. source: "./media/characters/mech/dick.svg"
  3992. }
  3993. },
  3994. },
  3995. [
  3996. {
  3997. name: "Normal",
  3998. height: math.unit(12, "feet")
  3999. },
  4000. {
  4001. name: "Macro",
  4002. height: math.unit(300, "feet"),
  4003. default: true
  4004. },
  4005. {
  4006. name: "Macro+",
  4007. height: math.unit(1500, "feet")
  4008. },
  4009. ]
  4010. ))
  4011. characterMakers.push(() => makeCharacter(
  4012. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4013. {
  4014. front: {
  4015. height: math.unit(1.3, "meter"),
  4016. weight: math.unit(30, "kg"),
  4017. name: "Front",
  4018. image: {
  4019. source: "./media/characters/gregory/front.svg",
  4020. }
  4021. }
  4022. },
  4023. [
  4024. {
  4025. name: "Normal",
  4026. height: math.unit(1.3, "meter"),
  4027. default: true
  4028. },
  4029. {
  4030. name: "Macro",
  4031. height: math.unit(20, "meter")
  4032. }
  4033. ]
  4034. ))
  4035. characterMakers.push(() => makeCharacter(
  4036. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4037. {
  4038. front: {
  4039. height: math.unit(2.8, "meter"),
  4040. weight: math.unit(200, "kg"),
  4041. name: "Front",
  4042. image: {
  4043. source: "./media/characters/elory/front.svg",
  4044. }
  4045. }
  4046. },
  4047. [
  4048. {
  4049. name: "Normal",
  4050. height: math.unit(2.8, "meter"),
  4051. default: true
  4052. },
  4053. {
  4054. name: "Macro",
  4055. height: math.unit(38, "meter")
  4056. }
  4057. ]
  4058. ))
  4059. characterMakers.push(() => makeCharacter(
  4060. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4061. {
  4062. front: {
  4063. height: math.unit(470, "feet"),
  4064. weight: math.unit(924, "tons"),
  4065. name: "Front",
  4066. image: {
  4067. source: "./media/characters/angelpatamon/front.svg",
  4068. }
  4069. }
  4070. },
  4071. [
  4072. {
  4073. name: "Normal",
  4074. height: math.unit(470, "feet"),
  4075. default: true
  4076. },
  4077. {
  4078. name: "Deity Size I",
  4079. height: math.unit(28651.2, "km")
  4080. },
  4081. {
  4082. name: "Deity Size II",
  4083. height: math.unit(171907.2, "km")
  4084. }
  4085. ]
  4086. ))
  4087. characterMakers.push(() => makeCharacter(
  4088. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4089. {
  4090. side: {
  4091. height: math.unit(7.2, "meter"),
  4092. weight: math.unit(8.2, "tons"),
  4093. name: "Side",
  4094. image: {
  4095. source: "./media/characters/cryae/side.svg",
  4096. extra: 3500 / 1500
  4097. }
  4098. }
  4099. },
  4100. [
  4101. {
  4102. name: "Normal",
  4103. height: math.unit(7.2, "meter"),
  4104. default: true
  4105. }
  4106. ]
  4107. ))
  4108. characterMakers.push(() => makeCharacter(
  4109. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4110. {
  4111. front: {
  4112. height: math.unit(6, "feet"),
  4113. weight: math.unit(175, "lb"),
  4114. name: "Front",
  4115. image: {
  4116. source: "./media/characters/xera/front.svg",
  4117. extra: 2377 / 1972,
  4118. bottom: 75.5 / 2452
  4119. }
  4120. },
  4121. side: {
  4122. height: math.unit(6, "feet"),
  4123. weight: math.unit(175, "lb"),
  4124. name: "Side",
  4125. image: {
  4126. source: "./media/characters/xera/side.svg",
  4127. extra: 2345 / 2019,
  4128. bottom: 39.7 / 2384
  4129. }
  4130. },
  4131. back: {
  4132. height: math.unit(6, "feet"),
  4133. weight: math.unit(175, "lb"),
  4134. name: "Back",
  4135. image: {
  4136. source: "./media/characters/xera/back.svg",
  4137. extra: 2095 / 1984,
  4138. bottom: 67 / 2166
  4139. }
  4140. },
  4141. },
  4142. [
  4143. {
  4144. name: "Small",
  4145. height: math.unit(10, "feet")
  4146. },
  4147. {
  4148. name: "Macro",
  4149. height: math.unit(500, "meters"),
  4150. default: true
  4151. },
  4152. {
  4153. name: "Macro+",
  4154. height: math.unit(10, "km")
  4155. },
  4156. {
  4157. name: "Gigamacro",
  4158. height: math.unit(25000, "km")
  4159. },
  4160. {
  4161. name: "Teramacro",
  4162. height: math.unit(3e6, "km")
  4163. }
  4164. ]
  4165. ))
  4166. characterMakers.push(() => makeCharacter(
  4167. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4168. {
  4169. front: {
  4170. height: math.unit(6, "feet"),
  4171. weight: math.unit(175, "lb"),
  4172. name: "Front",
  4173. image: {
  4174. source: "./media/characters/nebula/front.svg",
  4175. extra: 2566 / 2362,
  4176. bottom: 81 / 2644
  4177. }
  4178. }
  4179. },
  4180. [
  4181. {
  4182. name: "Small",
  4183. height: math.unit(4.5, "meters")
  4184. },
  4185. {
  4186. name: "Macro",
  4187. height: math.unit(1500, "meters"),
  4188. default: true
  4189. },
  4190. {
  4191. name: "Megamacro",
  4192. height: math.unit(150, "km")
  4193. },
  4194. {
  4195. name: "Gigamacro",
  4196. height: math.unit(27000, "km")
  4197. }
  4198. ]
  4199. ))
  4200. characterMakers.push(() => makeCharacter(
  4201. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4202. {
  4203. front: {
  4204. height: math.unit(6, "feet"),
  4205. weight: math.unit(225, "lb"),
  4206. name: "Front",
  4207. image: {
  4208. source: "./media/characters/abysgar/front.svg"
  4209. }
  4210. }
  4211. },
  4212. [
  4213. {
  4214. name: "Small",
  4215. height: math.unit(4.5, "meters")
  4216. },
  4217. {
  4218. name: "Macro",
  4219. height: math.unit(1250, "meters"),
  4220. default: true
  4221. },
  4222. {
  4223. name: "Megamacro",
  4224. height: math.unit(125, "km")
  4225. },
  4226. {
  4227. name: "Gigamacro",
  4228. height: math.unit(26000, "km")
  4229. }
  4230. ]
  4231. ))
  4232. characterMakers.push(() => makeCharacter(
  4233. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4234. {
  4235. front: {
  4236. height: math.unit(6, "feet"),
  4237. weight: math.unit(180, "lb"),
  4238. name: "Front",
  4239. image: {
  4240. source: "./media/characters/yakuz/front.svg"
  4241. }
  4242. }
  4243. },
  4244. [
  4245. {
  4246. name: "Small",
  4247. height: math.unit(5, "meters")
  4248. },
  4249. {
  4250. name: "Macro",
  4251. height: math.unit(1500, "meters"),
  4252. default: true
  4253. },
  4254. {
  4255. name: "Megamacro",
  4256. height: math.unit(200, "km")
  4257. },
  4258. {
  4259. name: "Gigamacro",
  4260. height: math.unit(100000, "km")
  4261. }
  4262. ]
  4263. ))
  4264. characterMakers.push(() => makeCharacter(
  4265. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4266. {
  4267. front: {
  4268. height: math.unit(6, "feet"),
  4269. weight: math.unit(175, "lb"),
  4270. name: "Front",
  4271. image: {
  4272. source: "./media/characters/mirova/front.svg",
  4273. extra: 3334 / 3071,
  4274. bottom: 42 / 3375.6
  4275. }
  4276. }
  4277. },
  4278. [
  4279. {
  4280. name: "Small",
  4281. height: math.unit(5, "meters")
  4282. },
  4283. {
  4284. name: "Macro",
  4285. height: math.unit(900, "meters"),
  4286. default: true
  4287. },
  4288. {
  4289. name: "Megamacro",
  4290. height: math.unit(135, "km")
  4291. },
  4292. {
  4293. name: "Gigamacro",
  4294. height: math.unit(20000, "km")
  4295. }
  4296. ]
  4297. ))
  4298. characterMakers.push(() => makeCharacter(
  4299. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4300. {
  4301. side: {
  4302. height: math.unit(28.35, "feet"),
  4303. weight: math.unit(99.75, "tons"),
  4304. name: "Side",
  4305. image: {
  4306. source: "./media/characters/asana-mech/side.svg",
  4307. extra: 923 / 699,
  4308. bottom: 50 / 975
  4309. }
  4310. },
  4311. chaingun: {
  4312. height: math.unit(7, "feet"),
  4313. weight: math.unit(2400, "lb"),
  4314. name: "Chaingun",
  4315. image: {
  4316. source: "./media/characters/asana-mech/chaingun.svg"
  4317. }
  4318. },
  4319. laser: {
  4320. height: math.unit(7.12, "feet"),
  4321. weight: math.unit(2000, "lb"),
  4322. name: "Laser",
  4323. image: {
  4324. source: "./media/characters/asana-mech/laser.svg"
  4325. }
  4326. },
  4327. },
  4328. [
  4329. {
  4330. name: "Normal",
  4331. height: math.unit(28.35, "feet"),
  4332. default: true
  4333. },
  4334. {
  4335. name: "Macro",
  4336. height: math.unit(2500, "feet")
  4337. },
  4338. {
  4339. name: "Megamacro",
  4340. height: math.unit(25, "miles")
  4341. },
  4342. {
  4343. name: "Examacro",
  4344. height: math.unit(6e8, "lightyears")
  4345. },
  4346. ]
  4347. ))
  4348. characterMakers.push(() => makeCharacter(
  4349. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4350. {
  4351. front: {
  4352. height: math.unit(5, "meters"),
  4353. weight: math.unit(1000, "kg"),
  4354. name: "Front",
  4355. image: {
  4356. source: "./media/characters/asche/front.svg",
  4357. extra: 1258 / 1190,
  4358. bottom: 47 / 1305
  4359. }
  4360. },
  4361. frontUnderwear: {
  4362. height: math.unit(5, "meters"),
  4363. weight: math.unit(1000, "kg"),
  4364. name: "Front (Underwear)",
  4365. image: {
  4366. source: "./media/characters/asche/front-underwear.svg",
  4367. extra: 1258 / 1190,
  4368. bottom: 47 / 1305
  4369. }
  4370. },
  4371. frontDressed: {
  4372. height: math.unit(5, "meters"),
  4373. weight: math.unit(1000, "kg"),
  4374. name: "Front (Dressed)",
  4375. image: {
  4376. source: "./media/characters/asche/front-dressed.svg",
  4377. extra: 1258 / 1190,
  4378. bottom: 47 / 1305
  4379. }
  4380. },
  4381. frontArmor: {
  4382. height: math.unit(5, "meters"),
  4383. weight: math.unit(1000, "kg"),
  4384. name: "Front (Armored)",
  4385. image: {
  4386. source: "./media/characters/asche/front-armored.svg",
  4387. extra: 1374 / 1308,
  4388. bottom: 23 / 1397
  4389. }
  4390. },
  4391. mp724: {
  4392. height: math.unit(0.96, "meters"),
  4393. weight: math.unit(38, "kg"),
  4394. name: "H&K MP724",
  4395. image: {
  4396. source: "./media/characters/asche/h&k-mp724.svg"
  4397. }
  4398. },
  4399. side: {
  4400. height: math.unit(5, "meters"),
  4401. weight: math.unit(1000, "kg"),
  4402. name: "Side",
  4403. image: {
  4404. source: "./media/characters/asche/side.svg",
  4405. extra: 1717 / 1609,
  4406. bottom: 0.005
  4407. }
  4408. },
  4409. back: {
  4410. height: math.unit(5, "meters"),
  4411. weight: math.unit(1000, "kg"),
  4412. name: "Back",
  4413. image: {
  4414. source: "./media/characters/asche/back.svg",
  4415. extra: 1570 / 1501
  4416. }
  4417. },
  4418. },
  4419. [
  4420. {
  4421. name: "DEFCON 5",
  4422. height: math.unit(5, "meters")
  4423. },
  4424. {
  4425. name: "DEFCON 4",
  4426. height: math.unit(500, "meters"),
  4427. default: true
  4428. },
  4429. {
  4430. name: "DEFCON 3",
  4431. height: math.unit(5, "km")
  4432. },
  4433. {
  4434. name: "DEFCON 2",
  4435. height: math.unit(500, "km")
  4436. },
  4437. {
  4438. name: "DEFCON 1",
  4439. height: math.unit(500000, "km")
  4440. },
  4441. {
  4442. name: "DEFCON 0",
  4443. height: math.unit(3, "gigaparsecs")
  4444. },
  4445. ]
  4446. ))
  4447. characterMakers.push(() => makeCharacter(
  4448. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4449. {
  4450. front: {
  4451. height: math.unit(2, "meters"),
  4452. weight: math.unit(76, "kg"),
  4453. name: "Front",
  4454. image: {
  4455. source: "./media/characters/gale/front.svg"
  4456. }
  4457. },
  4458. frontAlt1: {
  4459. height: math.unit(2, "meters"),
  4460. weight: math.unit(76, "kg"),
  4461. name: "Front (Alt 1)",
  4462. image: {
  4463. source: "./media/characters/gale/front-alt-1.svg"
  4464. }
  4465. },
  4466. frontAlt2: {
  4467. height: math.unit(2, "meters"),
  4468. weight: math.unit(76, "kg"),
  4469. name: "Front (Alt 2)",
  4470. image: {
  4471. source: "./media/characters/gale/front-alt-2.svg"
  4472. }
  4473. },
  4474. },
  4475. [
  4476. {
  4477. name: "Normal",
  4478. height: math.unit(7, "feet")
  4479. },
  4480. {
  4481. name: "Macro",
  4482. height: math.unit(150, "feet"),
  4483. default: true
  4484. },
  4485. {
  4486. name: "Macro+",
  4487. height: math.unit(300, "feet")
  4488. },
  4489. ]
  4490. ))
  4491. characterMakers.push(() => makeCharacter(
  4492. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4493. {
  4494. front: {
  4495. height: math.unit(5 + 10/12, "feet"),
  4496. weight: math.unit(67, "kg"),
  4497. name: "Front",
  4498. image: {
  4499. source: "./media/characters/draylen/front.svg",
  4500. extra: 832/777,
  4501. bottom: 85/917
  4502. }
  4503. }
  4504. },
  4505. [
  4506. {
  4507. name: "Normal",
  4508. height: math.unit(5 + 10/12, "feet")
  4509. },
  4510. {
  4511. name: "Macro",
  4512. height: math.unit(150, "feet"),
  4513. default: true
  4514. }
  4515. ]
  4516. ))
  4517. characterMakers.push(() => makeCharacter(
  4518. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4519. {
  4520. front: {
  4521. height: math.unit(7 + 9 / 12, "feet"),
  4522. weight: math.unit(379, "lbs"),
  4523. name: "Front",
  4524. image: {
  4525. source: "./media/characters/chez/front.svg"
  4526. }
  4527. },
  4528. side: {
  4529. height: math.unit(7 + 9 / 12, "feet"),
  4530. weight: math.unit(379, "lbs"),
  4531. name: "Side",
  4532. image: {
  4533. source: "./media/characters/chez/side.svg"
  4534. }
  4535. }
  4536. },
  4537. [
  4538. {
  4539. name: "Normal",
  4540. height: math.unit(7 + 9 / 12, "feet"),
  4541. default: true
  4542. },
  4543. {
  4544. name: "God King",
  4545. height: math.unit(9750000, "meters")
  4546. }
  4547. ]
  4548. ))
  4549. characterMakers.push(() => makeCharacter(
  4550. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4551. {
  4552. front: {
  4553. height: math.unit(6, "feet"),
  4554. weight: math.unit(275, "lbs"),
  4555. name: "Front",
  4556. image: {
  4557. source: "./media/characters/kaylum/front.svg",
  4558. bottom: 0.01,
  4559. extra: 1166 / 1031
  4560. }
  4561. },
  4562. frontWingless: {
  4563. height: math.unit(6, "feet"),
  4564. weight: math.unit(275, "lbs"),
  4565. name: "Front (Wingless)",
  4566. image: {
  4567. source: "./media/characters/kaylum/front-wingless.svg",
  4568. bottom: 0.01,
  4569. extra: 1117 / 1031
  4570. }
  4571. }
  4572. },
  4573. [
  4574. {
  4575. name: "Normal",
  4576. height: math.unit(3.05, "meters")
  4577. },
  4578. {
  4579. name: "Master",
  4580. height: math.unit(5.5, "meters")
  4581. },
  4582. {
  4583. name: "Rampage",
  4584. height: math.unit(19, "meters")
  4585. },
  4586. {
  4587. name: "Macro Lite",
  4588. height: math.unit(37, "meters")
  4589. },
  4590. {
  4591. name: "Hyper Predator",
  4592. height: math.unit(61, "meters")
  4593. },
  4594. {
  4595. name: "Macro",
  4596. height: math.unit(138, "meters"),
  4597. default: true
  4598. }
  4599. ]
  4600. ))
  4601. characterMakers.push(() => makeCharacter(
  4602. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4603. {
  4604. front: {
  4605. height: math.unit(6, "feet"),
  4606. weight: math.unit(150, "lbs"),
  4607. name: "Front",
  4608. image: {
  4609. source: "./media/characters/geta/front.svg"
  4610. }
  4611. }
  4612. },
  4613. [
  4614. {
  4615. name: "Micro",
  4616. height: math.unit(3, "inches"),
  4617. default: true
  4618. },
  4619. {
  4620. name: "Normal",
  4621. height: math.unit(5 + 5 / 12, "feet")
  4622. }
  4623. ]
  4624. ))
  4625. characterMakers.push(() => makeCharacter(
  4626. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4627. {
  4628. front: {
  4629. height: math.unit(6, "feet"),
  4630. weight: math.unit(300, "lbs"),
  4631. name: "Front",
  4632. image: {
  4633. source: "./media/characters/tyrnn/front.svg"
  4634. }
  4635. }
  4636. },
  4637. [
  4638. {
  4639. name: "Main Height",
  4640. height: math.unit(355, "feet"),
  4641. default: true
  4642. },
  4643. {
  4644. name: "Fave. Height",
  4645. height: math.unit(2400, "feet")
  4646. }
  4647. ]
  4648. ))
  4649. characterMakers.push(() => makeCharacter(
  4650. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4651. {
  4652. front: {
  4653. height: math.unit(6, "feet"),
  4654. weight: math.unit(300, "lbs"),
  4655. name: "Front",
  4656. image: {
  4657. source: "./media/characters/appledectomy/front.svg"
  4658. }
  4659. }
  4660. },
  4661. [
  4662. {
  4663. name: "Macro",
  4664. height: math.unit(2500, "feet")
  4665. },
  4666. {
  4667. name: "Megamacro",
  4668. height: math.unit(50, "miles"),
  4669. default: true
  4670. },
  4671. {
  4672. name: "Gigamacro",
  4673. height: math.unit(5000, "miles")
  4674. },
  4675. {
  4676. name: "Teramacro",
  4677. height: math.unit(250000, "miles")
  4678. },
  4679. ]
  4680. ))
  4681. characterMakers.push(() => makeCharacter(
  4682. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4683. {
  4684. front: {
  4685. height: math.unit(6, "feet"),
  4686. weight: math.unit(200, "lbs"),
  4687. name: "Front",
  4688. image: {
  4689. source: "./media/characters/vulpes/front.svg",
  4690. extra: 573 / 543,
  4691. bottom: 0.033
  4692. }
  4693. },
  4694. side: {
  4695. height: math.unit(6, "feet"),
  4696. weight: math.unit(200, "lbs"),
  4697. name: "Side",
  4698. image: {
  4699. source: "./media/characters/vulpes/side.svg",
  4700. extra: 577 / 549,
  4701. bottom: 11 / 588
  4702. }
  4703. },
  4704. back: {
  4705. height: math.unit(6, "feet"),
  4706. weight: math.unit(200, "lbs"),
  4707. name: "Back",
  4708. image: {
  4709. source: "./media/characters/vulpes/back.svg",
  4710. extra: 573 / 549,
  4711. bottom: 20 / 593
  4712. }
  4713. },
  4714. feet: {
  4715. height: math.unit(1.276, "feet"),
  4716. name: "Feet",
  4717. image: {
  4718. source: "./media/characters/vulpes/feet.svg"
  4719. }
  4720. },
  4721. maw: {
  4722. height: math.unit(1.18, "feet"),
  4723. name: "Maw",
  4724. image: {
  4725. source: "./media/characters/vulpes/maw.svg"
  4726. }
  4727. },
  4728. },
  4729. [
  4730. {
  4731. name: "Micro",
  4732. height: math.unit(2, "inches")
  4733. },
  4734. {
  4735. name: "Normal",
  4736. height: math.unit(6.3, "feet")
  4737. },
  4738. {
  4739. name: "Macro",
  4740. height: math.unit(850, "feet")
  4741. },
  4742. {
  4743. name: "Megamacro",
  4744. height: math.unit(7500, "feet"),
  4745. default: true
  4746. },
  4747. {
  4748. name: "Gigamacro",
  4749. height: math.unit(570000, "miles")
  4750. }
  4751. ]
  4752. ))
  4753. characterMakers.push(() => makeCharacter(
  4754. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4755. {
  4756. front: {
  4757. height: math.unit(6, "feet"),
  4758. weight: math.unit(210, "lbs"),
  4759. name: "Front",
  4760. image: {
  4761. source: "./media/characters/rain-fallen/front.svg"
  4762. }
  4763. },
  4764. side: {
  4765. height: math.unit(6, "feet"),
  4766. weight: math.unit(210, "lbs"),
  4767. name: "Side",
  4768. image: {
  4769. source: "./media/characters/rain-fallen/side.svg"
  4770. }
  4771. },
  4772. back: {
  4773. height: math.unit(6, "feet"),
  4774. weight: math.unit(210, "lbs"),
  4775. name: "Back",
  4776. image: {
  4777. source: "./media/characters/rain-fallen/back.svg"
  4778. }
  4779. },
  4780. feral: {
  4781. height: math.unit(9, "feet"),
  4782. weight: math.unit(700, "lbs"),
  4783. name: "Feral",
  4784. image: {
  4785. source: "./media/characters/rain-fallen/feral.svg"
  4786. }
  4787. },
  4788. },
  4789. [
  4790. {
  4791. name: "Meddling with Mortals",
  4792. height: math.unit(8 + 8/12, "feet")
  4793. },
  4794. {
  4795. name: "Normal",
  4796. height: math.unit(5, "meter")
  4797. },
  4798. {
  4799. name: "Macro",
  4800. height: math.unit(150, "meter"),
  4801. default: true
  4802. },
  4803. {
  4804. name: "Megamacro",
  4805. height: math.unit(278e6, "meter")
  4806. },
  4807. {
  4808. name: "Gigamacro",
  4809. height: math.unit(2e9, "meter")
  4810. },
  4811. {
  4812. name: "Teramacro",
  4813. height: math.unit(8e12, "meter")
  4814. },
  4815. {
  4816. name: "Devourer",
  4817. height: math.unit(14, "zettameters")
  4818. },
  4819. {
  4820. name: "Scarlet King",
  4821. height: math.unit(18, "yottameters")
  4822. },
  4823. {
  4824. name: "Void",
  4825. height: math.unit(1e88, "yottameters")
  4826. }
  4827. ]
  4828. ))
  4829. characterMakers.push(() => makeCharacter(
  4830. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4831. {
  4832. standing: {
  4833. height: math.unit(6, "feet"),
  4834. weight: math.unit(180, "lbs"),
  4835. name: "Standing",
  4836. image: {
  4837. source: "./media/characters/zaakira/standing.svg",
  4838. extra: 1599/1504,
  4839. bottom: 39/1638
  4840. }
  4841. },
  4842. laying: {
  4843. height: math.unit(3, "feet"),
  4844. weight: math.unit(180, "lbs"),
  4845. name: "Laying",
  4846. image: {
  4847. source: "./media/characters/zaakira/laying.svg"
  4848. }
  4849. },
  4850. },
  4851. [
  4852. {
  4853. name: "Normal",
  4854. height: math.unit(12, "feet")
  4855. },
  4856. {
  4857. name: "Macro",
  4858. height: math.unit(279, "feet"),
  4859. default: true
  4860. }
  4861. ]
  4862. ))
  4863. characterMakers.push(() => makeCharacter(
  4864. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4865. {
  4866. femSfw: {
  4867. height: math.unit(8, "feet"),
  4868. weight: math.unit(350, "lb"),
  4869. name: "Fem",
  4870. image: {
  4871. source: "./media/characters/sigvald/fem-sfw.svg",
  4872. extra: 182 / 164,
  4873. bottom: 8.7 / 190.5
  4874. }
  4875. },
  4876. femNsfw: {
  4877. height: math.unit(8, "feet"),
  4878. weight: math.unit(350, "lb"),
  4879. name: "Fem (NSFW)",
  4880. image: {
  4881. source: "./media/characters/sigvald/fem-nsfw.svg",
  4882. extra: 182 / 164,
  4883. bottom: 8.7 / 190.5
  4884. }
  4885. },
  4886. maleNsfw: {
  4887. height: math.unit(8, "feet"),
  4888. weight: math.unit(350, "lb"),
  4889. name: "Male (NSFW)",
  4890. image: {
  4891. source: "./media/characters/sigvald/male-nsfw.svg",
  4892. extra: 182 / 164,
  4893. bottom: 8.7 / 190.5
  4894. }
  4895. },
  4896. hermNsfw: {
  4897. height: math.unit(8, "feet"),
  4898. weight: math.unit(350, "lb"),
  4899. name: "Herm (NSFW)",
  4900. image: {
  4901. source: "./media/characters/sigvald/herm-nsfw.svg",
  4902. extra: 182 / 164,
  4903. bottom: 8.7 / 190.5
  4904. }
  4905. },
  4906. dick: {
  4907. height: math.unit(2.36, "feet"),
  4908. name: "Dick",
  4909. image: {
  4910. source: "./media/characters/sigvald/dick.svg"
  4911. }
  4912. },
  4913. eye: {
  4914. height: math.unit(0.31, "feet"),
  4915. name: "Eye",
  4916. image: {
  4917. source: "./media/characters/sigvald/eye.svg"
  4918. }
  4919. },
  4920. mouth: {
  4921. height: math.unit(0.92, "feet"),
  4922. name: "Mouth",
  4923. image: {
  4924. source: "./media/characters/sigvald/mouth.svg"
  4925. }
  4926. },
  4927. paws: {
  4928. height: math.unit(2.2, "feet"),
  4929. name: "Paws",
  4930. image: {
  4931. source: "./media/characters/sigvald/paws.svg"
  4932. }
  4933. }
  4934. },
  4935. [
  4936. {
  4937. name: "Normal",
  4938. height: math.unit(8, "feet")
  4939. },
  4940. {
  4941. name: "Large",
  4942. height: math.unit(12, "feet")
  4943. },
  4944. {
  4945. name: "Larger",
  4946. height: math.unit(20, "feet")
  4947. },
  4948. {
  4949. name: "Macro",
  4950. height: math.unit(150, "feet")
  4951. },
  4952. {
  4953. name: "Macro+",
  4954. height: math.unit(200, "feet"),
  4955. default: true
  4956. },
  4957. ]
  4958. ))
  4959. characterMakers.push(() => makeCharacter(
  4960. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4961. {
  4962. side: {
  4963. height: math.unit(12, "feet"),
  4964. weight: math.unit(2000, "kg"),
  4965. name: "Side",
  4966. image: {
  4967. source: "./media/characters/scott/side.svg",
  4968. extra: 754 / 724,
  4969. bottom: 0.069
  4970. }
  4971. },
  4972. upright: {
  4973. height: math.unit(12, "feet"),
  4974. weight: math.unit(2000, "kg"),
  4975. name: "Upright",
  4976. image: {
  4977. source: "./media/characters/scott/upright.svg",
  4978. extra: 3881 / 3722,
  4979. bottom: 0.05
  4980. }
  4981. },
  4982. },
  4983. [
  4984. {
  4985. name: "Normal",
  4986. height: math.unit(12, "feet"),
  4987. default: true
  4988. },
  4989. ]
  4990. ))
  4991. characterMakers.push(() => makeCharacter(
  4992. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4993. {
  4994. side: {
  4995. height: math.unit(8, "meters"),
  4996. weight: math.unit(84755, "lbs"),
  4997. name: "Side",
  4998. image: {
  4999. source: "./media/characters/tobias/side.svg",
  5000. extra: 1474 / 1096,
  5001. bottom: 38.9 / 1513.1235
  5002. }
  5003. },
  5004. },
  5005. [
  5006. {
  5007. name: "Normal",
  5008. height: math.unit(8, "meters"),
  5009. default: true
  5010. },
  5011. ]
  5012. ))
  5013. characterMakers.push(() => makeCharacter(
  5014. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5015. {
  5016. front: {
  5017. height: math.unit(5.5, "feet"),
  5018. weight: math.unit(400, "lbs"),
  5019. name: "Front",
  5020. image: {
  5021. source: "./media/characters/kieran/front.svg",
  5022. extra: 2694 / 2364,
  5023. bottom: 217 / 2908
  5024. }
  5025. },
  5026. side: {
  5027. height: math.unit(5.5, "feet"),
  5028. weight: math.unit(400, "lbs"),
  5029. name: "Side",
  5030. image: {
  5031. source: "./media/characters/kieran/side.svg",
  5032. extra: 875 / 777,
  5033. bottom: 84.6 / 959
  5034. }
  5035. },
  5036. },
  5037. [
  5038. {
  5039. name: "Normal",
  5040. height: math.unit(5.5, "feet"),
  5041. default: true
  5042. },
  5043. ]
  5044. ))
  5045. characterMakers.push(() => makeCharacter(
  5046. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5047. {
  5048. side: {
  5049. height: math.unit(2, "meters"),
  5050. weight: math.unit(70, "kg"),
  5051. name: "Side",
  5052. image: {
  5053. source: "./media/characters/sanya/side.svg",
  5054. bottom: 0.02,
  5055. extra: 1.02
  5056. }
  5057. },
  5058. },
  5059. [
  5060. {
  5061. name: "Small",
  5062. height: math.unit(2, "meters")
  5063. },
  5064. {
  5065. name: "Normal",
  5066. height: math.unit(3, "meters")
  5067. },
  5068. {
  5069. name: "Macro",
  5070. height: math.unit(16, "meters"),
  5071. default: true
  5072. },
  5073. ]
  5074. ))
  5075. characterMakers.push(() => makeCharacter(
  5076. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5077. {
  5078. front: {
  5079. height: math.unit(2, "meters"),
  5080. weight: math.unit(120, "kg"),
  5081. name: "Front",
  5082. image: {
  5083. source: "./media/characters/miranda/front.svg",
  5084. extra: 195 / 185,
  5085. bottom: 10.9 / 206.5
  5086. }
  5087. },
  5088. back: {
  5089. height: math.unit(2, "meters"),
  5090. weight: math.unit(120, "kg"),
  5091. name: "Back",
  5092. image: {
  5093. source: "./media/characters/miranda/back.svg",
  5094. extra: 201 / 193,
  5095. bottom: 2.3 / 203.7
  5096. }
  5097. },
  5098. },
  5099. [
  5100. {
  5101. name: "Normal",
  5102. height: math.unit(10, "feet"),
  5103. default: true
  5104. }
  5105. ]
  5106. ))
  5107. characterMakers.push(() => makeCharacter(
  5108. { name: "James", species: ["deer"], tags: ["anthro"] },
  5109. {
  5110. side: {
  5111. height: math.unit(2, "meters"),
  5112. weight: math.unit(100, "kg"),
  5113. name: "Front",
  5114. image: {
  5115. source: "./media/characters/james/front.svg",
  5116. extra: 10 / 8.5
  5117. }
  5118. },
  5119. },
  5120. [
  5121. {
  5122. name: "Normal",
  5123. height: math.unit(8.5, "feet"),
  5124. default: true
  5125. }
  5126. ]
  5127. ))
  5128. characterMakers.push(() => makeCharacter(
  5129. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5130. {
  5131. side: {
  5132. height: math.unit(9.5, "feet"),
  5133. weight: math.unit(2500, "lbs"),
  5134. name: "Side",
  5135. image: {
  5136. source: "./media/characters/heather/side.svg"
  5137. }
  5138. },
  5139. },
  5140. [
  5141. {
  5142. name: "Normal",
  5143. height: math.unit(9.5, "feet"),
  5144. default: true
  5145. }
  5146. ]
  5147. ))
  5148. characterMakers.push(() => makeCharacter(
  5149. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5150. {
  5151. side: {
  5152. height: math.unit(6.5, "feet"),
  5153. weight: math.unit(400, "lbs"),
  5154. name: "Side",
  5155. image: {
  5156. source: "./media/characters/lukas/side.svg",
  5157. extra: 7.25 / 6.5
  5158. }
  5159. },
  5160. },
  5161. [
  5162. {
  5163. name: "Normal",
  5164. height: math.unit(6.5, "feet"),
  5165. default: true
  5166. }
  5167. ]
  5168. ))
  5169. characterMakers.push(() => makeCharacter(
  5170. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5171. {
  5172. side: {
  5173. height: math.unit(5, "feet"),
  5174. weight: math.unit(3000, "lbs"),
  5175. name: "Side",
  5176. image: {
  5177. source: "./media/characters/louise/side.svg"
  5178. }
  5179. },
  5180. },
  5181. [
  5182. {
  5183. name: "Normal",
  5184. height: math.unit(5, "feet"),
  5185. default: true
  5186. }
  5187. ]
  5188. ))
  5189. characterMakers.push(() => makeCharacter(
  5190. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5191. {
  5192. side: {
  5193. height: math.unit(6, "feet"),
  5194. weight: math.unit(150, "lbs"),
  5195. name: "Side",
  5196. image: {
  5197. source: "./media/characters/ramona/side.svg"
  5198. }
  5199. },
  5200. },
  5201. [
  5202. {
  5203. name: "Normal",
  5204. height: math.unit(5.3, "meters"),
  5205. default: true
  5206. },
  5207. {
  5208. name: "Macro",
  5209. height: math.unit(20, "stories")
  5210. },
  5211. {
  5212. name: "Macro+",
  5213. height: math.unit(50, "stories")
  5214. },
  5215. ]
  5216. ))
  5217. characterMakers.push(() => makeCharacter(
  5218. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5219. {
  5220. standing: {
  5221. height: math.unit(5.75, "feet"),
  5222. weight: math.unit(160, "lbs"),
  5223. name: "Standing",
  5224. image: {
  5225. source: "./media/characters/deerpuff/standing.svg",
  5226. extra: 682 / 624
  5227. }
  5228. },
  5229. sitting: {
  5230. height: math.unit(5.75 / 1.79, "feet"),
  5231. weight: math.unit(160, "lbs"),
  5232. name: "Sitting",
  5233. image: {
  5234. source: "./media/characters/deerpuff/sitting.svg",
  5235. bottom: 44 / 400,
  5236. extra: 1
  5237. }
  5238. },
  5239. taurLaying: {
  5240. height: math.unit(6, "feet"),
  5241. weight: math.unit(400, "lbs"),
  5242. name: "Taur (Laying)",
  5243. image: {
  5244. source: "./media/characters/deerpuff/taur-laying.svg"
  5245. }
  5246. },
  5247. },
  5248. [
  5249. {
  5250. name: "Puffball",
  5251. height: math.unit(6, "inches")
  5252. },
  5253. {
  5254. name: "Normalpuff",
  5255. height: math.unit(5.75, "feet")
  5256. },
  5257. {
  5258. name: "Macropuff",
  5259. height: math.unit(1500, "feet"),
  5260. default: true
  5261. },
  5262. {
  5263. name: "Megapuff",
  5264. height: math.unit(500, "miles")
  5265. },
  5266. {
  5267. name: "Gigapuff",
  5268. height: math.unit(250000, "miles")
  5269. },
  5270. {
  5271. name: "Omegapuff",
  5272. height: math.unit(1000, "lightyears")
  5273. },
  5274. ]
  5275. ))
  5276. characterMakers.push(() => makeCharacter(
  5277. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5278. {
  5279. stomping: {
  5280. height: math.unit(6, "feet"),
  5281. weight: math.unit(170, "lbs"),
  5282. name: "Stomping",
  5283. image: {
  5284. source: "./media/characters/vivian/stomping.svg"
  5285. }
  5286. },
  5287. sitting: {
  5288. height: math.unit(6 / 1.75, "feet"),
  5289. weight: math.unit(170, "lbs"),
  5290. name: "Sitting",
  5291. image: {
  5292. source: "./media/characters/vivian/sitting.svg",
  5293. bottom: 1 / 6.4,
  5294. extra: 1,
  5295. }
  5296. },
  5297. },
  5298. [
  5299. {
  5300. name: "Normal",
  5301. height: math.unit(7, "feet"),
  5302. default: true
  5303. },
  5304. {
  5305. name: "Macro",
  5306. height: math.unit(10, "stories")
  5307. },
  5308. {
  5309. name: "Macro+",
  5310. height: math.unit(30, "stories")
  5311. },
  5312. {
  5313. name: "Megamacro",
  5314. height: math.unit(10, "miles")
  5315. },
  5316. {
  5317. name: "Megamacro+",
  5318. height: math.unit(2750000, "meters")
  5319. },
  5320. ]
  5321. ))
  5322. characterMakers.push(() => makeCharacter(
  5323. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5324. {
  5325. front: {
  5326. height: math.unit(6, "feet"),
  5327. weight: math.unit(160, "lbs"),
  5328. name: "Front",
  5329. image: {
  5330. source: "./media/characters/prince/front.svg",
  5331. extra: 3400 / 3000
  5332. }
  5333. },
  5334. jumping: {
  5335. height: math.unit(6, "feet"),
  5336. weight: math.unit(160, "lbs"),
  5337. name: "Jumping",
  5338. image: {
  5339. source: "./media/characters/prince/jump.svg",
  5340. extra: 2555 / 2134
  5341. }
  5342. },
  5343. },
  5344. [
  5345. {
  5346. name: "Normal",
  5347. height: math.unit(7.75, "feet"),
  5348. default: true
  5349. },
  5350. {
  5351. name: "Not cute",
  5352. height: math.unit(17, "feet")
  5353. },
  5354. {
  5355. name: "I said NOT",
  5356. height: math.unit(91, "feet")
  5357. },
  5358. {
  5359. name: "Please stop",
  5360. height: math.unit(560, "feet")
  5361. },
  5362. {
  5363. name: "What have you done",
  5364. height: math.unit(2200, "feet")
  5365. },
  5366. {
  5367. name: "Deer God",
  5368. height: math.unit(3.6, "miles")
  5369. },
  5370. ]
  5371. ))
  5372. characterMakers.push(() => makeCharacter(
  5373. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5374. {
  5375. standing: {
  5376. height: math.unit(6, "feet"),
  5377. weight: math.unit(300, "lbs"),
  5378. name: "Standing",
  5379. image: {
  5380. source: "./media/characters/psymon/standing.svg",
  5381. extra: 1888 / 1810,
  5382. bottom: 0.05
  5383. }
  5384. },
  5385. slithering: {
  5386. height: math.unit(6, "feet"),
  5387. weight: math.unit(300, "lbs"),
  5388. name: "Slithering",
  5389. image: {
  5390. source: "./media/characters/psymon/slithering.svg",
  5391. extra: 1330 / 1224
  5392. }
  5393. },
  5394. slitheringAlt: {
  5395. height: math.unit(6, "feet"),
  5396. weight: math.unit(300, "lbs"),
  5397. name: "Slithering (Alt)",
  5398. image: {
  5399. source: "./media/characters/psymon/slithering-alt.svg",
  5400. extra: 1330 / 1224
  5401. }
  5402. },
  5403. },
  5404. [
  5405. {
  5406. name: "Normal",
  5407. height: math.unit(11.25, "feet"),
  5408. default: true
  5409. },
  5410. {
  5411. name: "Large",
  5412. height: math.unit(27, "feet")
  5413. },
  5414. {
  5415. name: "Giant",
  5416. height: math.unit(87, "feet")
  5417. },
  5418. {
  5419. name: "Macro",
  5420. height: math.unit(365, "feet")
  5421. },
  5422. {
  5423. name: "Megamacro",
  5424. height: math.unit(3, "miles")
  5425. },
  5426. {
  5427. name: "World Serpent",
  5428. height: math.unit(8000, "miles")
  5429. },
  5430. ]
  5431. ))
  5432. characterMakers.push(() => makeCharacter(
  5433. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5434. {
  5435. front: {
  5436. height: math.unit(6, "feet"),
  5437. weight: math.unit(180, "lbs"),
  5438. name: "Front",
  5439. image: {
  5440. source: "./media/characters/daimos/front.svg",
  5441. extra: 4160 / 3897,
  5442. bottom: 0.021
  5443. }
  5444. }
  5445. },
  5446. [
  5447. {
  5448. name: "Normal",
  5449. height: math.unit(8, "feet"),
  5450. default: true
  5451. },
  5452. {
  5453. name: "Big Dog",
  5454. height: math.unit(22, "feet")
  5455. },
  5456. {
  5457. name: "Macro",
  5458. height: math.unit(127, "feet")
  5459. },
  5460. {
  5461. name: "Megamacro",
  5462. height: math.unit(3600, "feet")
  5463. },
  5464. ]
  5465. ))
  5466. characterMakers.push(() => makeCharacter(
  5467. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5468. {
  5469. side: {
  5470. height: math.unit(6, "feet"),
  5471. weight: math.unit(180, "lbs"),
  5472. name: "Side",
  5473. image: {
  5474. source: "./media/characters/blake/side.svg",
  5475. extra: 1212 / 1120,
  5476. bottom: 0.05
  5477. }
  5478. },
  5479. crouched: {
  5480. height: math.unit(6 * 0.57, "feet"),
  5481. weight: math.unit(180, "lbs"),
  5482. name: "Crouched",
  5483. image: {
  5484. source: "./media/characters/blake/crouched.svg",
  5485. extra: 840 / 587,
  5486. bottom: 0.04
  5487. }
  5488. },
  5489. bent: {
  5490. height: math.unit(6 * 0.75, "feet"),
  5491. weight: math.unit(180, "lbs"),
  5492. name: "Bent",
  5493. image: {
  5494. source: "./media/characters/blake/bent.svg",
  5495. extra: 592 / 544,
  5496. bottom: 0.035
  5497. }
  5498. },
  5499. },
  5500. [
  5501. {
  5502. name: "Normal",
  5503. height: math.unit(8 + 1 / 6, "feet"),
  5504. default: true
  5505. },
  5506. {
  5507. name: "Big Backside",
  5508. height: math.unit(37, "feet")
  5509. },
  5510. {
  5511. name: "Subway Shredder",
  5512. height: math.unit(72, "feet")
  5513. },
  5514. {
  5515. name: "City Carver",
  5516. height: math.unit(1675, "feet")
  5517. },
  5518. {
  5519. name: "Tectonic Tweaker",
  5520. height: math.unit(2300, "miles")
  5521. },
  5522. ]
  5523. ))
  5524. characterMakers.push(() => makeCharacter(
  5525. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5526. {
  5527. front: {
  5528. height: math.unit(6, "feet"),
  5529. weight: math.unit(180, "lbs"),
  5530. name: "Front",
  5531. image: {
  5532. source: "./media/characters/guisetto/front.svg",
  5533. extra: 856 / 817,
  5534. bottom: 0.06
  5535. }
  5536. },
  5537. airborne: {
  5538. height: math.unit(6, "feet"),
  5539. weight: math.unit(180, "lbs"),
  5540. name: "Airborne",
  5541. image: {
  5542. source: "./media/characters/guisetto/airborne.svg",
  5543. extra: 584 / 525
  5544. }
  5545. },
  5546. },
  5547. [
  5548. {
  5549. name: "Normal",
  5550. height: math.unit(10 + 11 / 12, "feet"),
  5551. default: true
  5552. },
  5553. {
  5554. name: "Large",
  5555. height: math.unit(35, "feet")
  5556. },
  5557. {
  5558. name: "Macro",
  5559. height: math.unit(475, "feet")
  5560. },
  5561. ]
  5562. ))
  5563. characterMakers.push(() => makeCharacter(
  5564. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5565. {
  5566. front: {
  5567. height: math.unit(6, "feet"),
  5568. weight: math.unit(180, "lbs"),
  5569. name: "Front",
  5570. image: {
  5571. source: "./media/characters/luxor/front.svg",
  5572. extra: 2940 / 2152
  5573. }
  5574. },
  5575. back: {
  5576. height: math.unit(6, "feet"),
  5577. weight: math.unit(180, "lbs"),
  5578. name: "Back",
  5579. image: {
  5580. source: "./media/characters/luxor/back.svg",
  5581. extra: 1083 / 960
  5582. }
  5583. },
  5584. },
  5585. [
  5586. {
  5587. name: "Normal",
  5588. height: math.unit(5 + 5 / 6, "feet"),
  5589. default: true
  5590. },
  5591. {
  5592. name: "Lamp",
  5593. height: math.unit(50, "feet")
  5594. },
  5595. {
  5596. name: "Lämp",
  5597. height: math.unit(300, "feet")
  5598. },
  5599. {
  5600. name: "The sun is a lamp",
  5601. height: math.unit(250000, "miles")
  5602. },
  5603. ]
  5604. ))
  5605. characterMakers.push(() => makeCharacter(
  5606. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5607. {
  5608. front: {
  5609. height: math.unit(6, "feet"),
  5610. weight: math.unit(50, "lbs"),
  5611. name: "Front",
  5612. image: {
  5613. source: "./media/characters/huoyan/front.svg"
  5614. }
  5615. },
  5616. side: {
  5617. height: math.unit(6, "feet"),
  5618. weight: math.unit(180, "lbs"),
  5619. name: "Side",
  5620. image: {
  5621. source: "./media/characters/huoyan/side.svg"
  5622. }
  5623. },
  5624. },
  5625. [
  5626. {
  5627. name: "Chef",
  5628. height: math.unit(9, "feet")
  5629. },
  5630. {
  5631. name: "Normal",
  5632. height: math.unit(65, "feet"),
  5633. default: true
  5634. },
  5635. {
  5636. name: "Macro",
  5637. height: math.unit(780, "feet")
  5638. },
  5639. {
  5640. name: "Flaming Mountain",
  5641. height: math.unit(4.8, "miles")
  5642. },
  5643. {
  5644. name: "Celestial",
  5645. height: math.unit(765000, "miles")
  5646. },
  5647. ]
  5648. ))
  5649. characterMakers.push(() => makeCharacter(
  5650. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5651. {
  5652. front: {
  5653. height: math.unit(5 + 3 / 4, "feet"),
  5654. weight: math.unit(120, "lbs"),
  5655. name: "Front",
  5656. image: {
  5657. source: "./media/characters/tails/front.svg"
  5658. }
  5659. }
  5660. },
  5661. [
  5662. {
  5663. name: "Normal",
  5664. height: math.unit(5 + 3 / 4, "feet"),
  5665. default: true
  5666. }
  5667. ]
  5668. ))
  5669. characterMakers.push(() => makeCharacter(
  5670. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5671. {
  5672. front: {
  5673. height: math.unit(4, "feet"),
  5674. weight: math.unit(50, "lbs"),
  5675. name: "Front",
  5676. image: {
  5677. source: "./media/characters/rainy/front.svg"
  5678. }
  5679. }
  5680. },
  5681. [
  5682. {
  5683. name: "Macro",
  5684. height: math.unit(800, "feet"),
  5685. default: true
  5686. }
  5687. ]
  5688. ))
  5689. characterMakers.push(() => makeCharacter(
  5690. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5691. {
  5692. front: {
  5693. height: math.unit(6, "feet"),
  5694. weight: math.unit(150, "lbs"),
  5695. name: "Front",
  5696. image: {
  5697. source: "./media/characters/rainier/front.svg"
  5698. }
  5699. }
  5700. },
  5701. [
  5702. {
  5703. name: "Micro",
  5704. height: math.unit(2, "mm"),
  5705. default: true
  5706. }
  5707. ]
  5708. ))
  5709. characterMakers.push(() => makeCharacter(
  5710. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5711. {
  5712. front: {
  5713. height: math.unit(8 + 4/12, "feet"),
  5714. name: "Front",
  5715. image: {
  5716. source: "./media/characters/andy-renard/front.svg",
  5717. extra: 1839/1726,
  5718. bottom: 134/1973
  5719. }
  5720. },
  5721. back: {
  5722. height: math.unit(8 + 4/12, "feet"),
  5723. name: "Back",
  5724. image: {
  5725. source: "./media/characters/andy-renard/back.svg",
  5726. extra: 1838/1710,
  5727. bottom: 105/1943
  5728. }
  5729. },
  5730. },
  5731. [
  5732. {
  5733. name: "Tall",
  5734. height: math.unit(8 + 4/12, "feet")
  5735. },
  5736. {
  5737. name: "Mini Macro",
  5738. height: math.unit(15, "feet"),
  5739. default: true
  5740. },
  5741. {
  5742. name: "Macro",
  5743. height: math.unit(100, "feet")
  5744. },
  5745. {
  5746. name: "Mega Macro",
  5747. height: math.unit(1000, "feet")
  5748. },
  5749. {
  5750. name: "Giga Macro",
  5751. height: math.unit(10, "miles")
  5752. },
  5753. {
  5754. name: "God Macro",
  5755. height: math.unit(1, "multiverse")
  5756. },
  5757. ]
  5758. ))
  5759. characterMakers.push(() => makeCharacter(
  5760. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5761. {
  5762. front: {
  5763. height: math.unit(6, "feet"),
  5764. weight: math.unit(210, "lbs"),
  5765. name: "Front",
  5766. image: {
  5767. source: "./media/characters/cimmaron/front-sfw.svg",
  5768. extra: 701 / 676,
  5769. bottom: 0.046
  5770. }
  5771. },
  5772. back: {
  5773. height: math.unit(6, "feet"),
  5774. weight: math.unit(210, "lbs"),
  5775. name: "Back",
  5776. image: {
  5777. source: "./media/characters/cimmaron/back-sfw.svg",
  5778. extra: 701 / 676,
  5779. bottom: 0.046
  5780. }
  5781. },
  5782. frontNsfw: {
  5783. height: math.unit(6, "feet"),
  5784. weight: math.unit(210, "lbs"),
  5785. name: "Front (NSFW)",
  5786. image: {
  5787. source: "./media/characters/cimmaron/front-nsfw.svg",
  5788. extra: 701 / 676,
  5789. bottom: 0.046
  5790. }
  5791. },
  5792. backNsfw: {
  5793. height: math.unit(6, "feet"),
  5794. weight: math.unit(210, "lbs"),
  5795. name: "Back (NSFW)",
  5796. image: {
  5797. source: "./media/characters/cimmaron/back-nsfw.svg",
  5798. extra: 701 / 676,
  5799. bottom: 0.046
  5800. }
  5801. },
  5802. dick: {
  5803. height: math.unit(1.714, "feet"),
  5804. name: "Dick",
  5805. image: {
  5806. source: "./media/characters/cimmaron/dick.svg"
  5807. }
  5808. },
  5809. },
  5810. [
  5811. {
  5812. name: "Normal",
  5813. height: math.unit(6, "feet"),
  5814. default: true
  5815. },
  5816. {
  5817. name: "Macro Mayor",
  5818. height: math.unit(350, "meters")
  5819. },
  5820. ]
  5821. ))
  5822. characterMakers.push(() => makeCharacter(
  5823. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5824. {
  5825. front: {
  5826. height: math.unit(6, "feet"),
  5827. weight: math.unit(200, "lbs"),
  5828. name: "Front",
  5829. image: {
  5830. source: "./media/characters/akari/front.svg",
  5831. extra: 962 / 901,
  5832. bottom: 0.04
  5833. }
  5834. }
  5835. },
  5836. [
  5837. {
  5838. name: "Micro",
  5839. height: math.unit(5, "inches"),
  5840. default: true
  5841. },
  5842. {
  5843. name: "Normal",
  5844. height: math.unit(7, "feet")
  5845. },
  5846. ]
  5847. ))
  5848. characterMakers.push(() => makeCharacter(
  5849. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5850. {
  5851. front: {
  5852. height: math.unit(6, "feet"),
  5853. weight: math.unit(140, "lbs"),
  5854. name: "Front",
  5855. image: {
  5856. source: "./media/characters/cynosura/front.svg",
  5857. extra: 896 / 847
  5858. }
  5859. },
  5860. back: {
  5861. height: math.unit(6, "feet"),
  5862. weight: math.unit(140, "lbs"),
  5863. name: "Back",
  5864. image: {
  5865. source: "./media/characters/cynosura/back.svg",
  5866. extra: 1365 / 1250
  5867. }
  5868. },
  5869. },
  5870. [
  5871. {
  5872. name: "Micro",
  5873. height: math.unit(4, "inches")
  5874. },
  5875. {
  5876. name: "Normal",
  5877. height: math.unit(5.75, "feet"),
  5878. default: true
  5879. },
  5880. {
  5881. name: "Tall",
  5882. height: math.unit(10, "feet")
  5883. },
  5884. {
  5885. name: "Big",
  5886. height: math.unit(20, "feet")
  5887. },
  5888. {
  5889. name: "Macro",
  5890. height: math.unit(50, "feet")
  5891. },
  5892. ]
  5893. ))
  5894. characterMakers.push(() => makeCharacter(
  5895. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5896. {
  5897. front: {
  5898. height: math.unit(13 + 2/12, "feet"),
  5899. weight: math.unit(800, "kg"),
  5900. name: "Front",
  5901. image: {
  5902. source: "./media/characters/gin/front.svg",
  5903. extra: 1312/1191,
  5904. bottom: 45/1357
  5905. }
  5906. },
  5907. mouth: {
  5908. height: math.unit(2.39 * 1.8, "feet"),
  5909. name: "Mouth",
  5910. image: {
  5911. source: "./media/characters/gin/mouth.svg"
  5912. }
  5913. },
  5914. hand: {
  5915. height: math.unit(1.57 * 2.19, "feet"),
  5916. name: "Hand",
  5917. image: {
  5918. source: "./media/characters/gin/hand.svg"
  5919. }
  5920. },
  5921. foot: {
  5922. height: math.unit(6 / 4.25 * 2.19, "feet"),
  5923. name: "Foot",
  5924. image: {
  5925. source: "./media/characters/gin/foot.svg"
  5926. }
  5927. },
  5928. sole: {
  5929. height: math.unit(6 / 4.40 * 2.19, "feet"),
  5930. name: "Sole",
  5931. image: {
  5932. source: "./media/characters/gin/sole.svg"
  5933. }
  5934. },
  5935. },
  5936. [
  5937. {
  5938. name: "Very Small",
  5939. height: math.unit(13 + 2 / 12, "feet")
  5940. },
  5941. {
  5942. name: "Micro",
  5943. height: math.unit(600, "miles")
  5944. },
  5945. {
  5946. name: "Regular",
  5947. height: math.unit(20, "earths"),
  5948. default: true
  5949. },
  5950. {
  5951. name: "Macro",
  5952. height: math.unit(2.2, "solarradii")
  5953. },
  5954. {
  5955. name: "Teramacro",
  5956. height: math.unit(1.2, "galaxies")
  5957. },
  5958. {
  5959. name: "Omegamacro",
  5960. height: math.unit(200, "universes")
  5961. },
  5962. ]
  5963. ))
  5964. characterMakers.push(() => makeCharacter(
  5965. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5966. {
  5967. front: {
  5968. height: math.unit(6 + 1 / 6, "feet"),
  5969. weight: math.unit(178, "lbs"),
  5970. name: "Front",
  5971. image: {
  5972. source: "./media/characters/guy/front.svg"
  5973. }
  5974. }
  5975. },
  5976. [
  5977. {
  5978. name: "Normal",
  5979. height: math.unit(6 + 1 / 6, "feet"),
  5980. default: true
  5981. },
  5982. {
  5983. name: "Large",
  5984. height: math.unit(25 + 7 / 12, "feet")
  5985. },
  5986. {
  5987. name: "Macro",
  5988. height: math.unit(60 + 9 / 12, "feet")
  5989. },
  5990. {
  5991. name: "Macro+",
  5992. height: math.unit(246, "feet")
  5993. },
  5994. {
  5995. name: "Macro++",
  5996. height: math.unit(878, "feet")
  5997. }
  5998. ]
  5999. ))
  6000. characterMakers.push(() => makeCharacter(
  6001. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6002. {
  6003. front: {
  6004. height: math.unit(9, "feet"),
  6005. weight: math.unit(800, "lbs"),
  6006. name: "Front",
  6007. image: {
  6008. source: "./media/characters/tiberius/front.svg",
  6009. extra: 2295 / 2071
  6010. }
  6011. },
  6012. back: {
  6013. height: math.unit(9, "feet"),
  6014. weight: math.unit(800, "lbs"),
  6015. name: "Back",
  6016. image: {
  6017. source: "./media/characters/tiberius/back.svg",
  6018. extra: 2373 / 2160
  6019. }
  6020. },
  6021. },
  6022. [
  6023. {
  6024. name: "Normal",
  6025. height: math.unit(9, "feet"),
  6026. default: true
  6027. }
  6028. ]
  6029. ))
  6030. characterMakers.push(() => makeCharacter(
  6031. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6032. {
  6033. front: {
  6034. height: math.unit(6, "feet"),
  6035. weight: math.unit(600, "lbs"),
  6036. name: "Front",
  6037. image: {
  6038. source: "./media/characters/surgo/front.svg",
  6039. extra: 3591 / 2227
  6040. }
  6041. },
  6042. back: {
  6043. height: math.unit(6, "feet"),
  6044. weight: math.unit(600, "lbs"),
  6045. name: "Back",
  6046. image: {
  6047. source: "./media/characters/surgo/back.svg",
  6048. extra: 3557 / 2228
  6049. }
  6050. },
  6051. laying: {
  6052. height: math.unit(6 * 0.85, "feet"),
  6053. weight: math.unit(600, "lbs"),
  6054. name: "Laying",
  6055. image: {
  6056. source: "./media/characters/surgo/laying.svg"
  6057. }
  6058. },
  6059. },
  6060. [
  6061. {
  6062. name: "Normal",
  6063. height: math.unit(6, "feet"),
  6064. default: true
  6065. }
  6066. ]
  6067. ))
  6068. characterMakers.push(() => makeCharacter(
  6069. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6070. {
  6071. side: {
  6072. height: math.unit(6, "feet"),
  6073. weight: math.unit(150, "lbs"),
  6074. name: "Side",
  6075. image: {
  6076. source: "./media/characters/cibus/side.svg",
  6077. extra: 800 / 400
  6078. }
  6079. },
  6080. },
  6081. [
  6082. {
  6083. name: "Normal",
  6084. height: math.unit(6, "feet"),
  6085. default: true
  6086. }
  6087. ]
  6088. ))
  6089. characterMakers.push(() => makeCharacter(
  6090. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6091. {
  6092. front: {
  6093. height: math.unit(6, "feet"),
  6094. weight: math.unit(240, "lbs"),
  6095. name: "Front",
  6096. image: {
  6097. source: "./media/characters/nibbles/front.svg"
  6098. }
  6099. },
  6100. side: {
  6101. height: math.unit(6, "feet"),
  6102. weight: math.unit(240, "lbs"),
  6103. name: "Side",
  6104. image: {
  6105. source: "./media/characters/nibbles/side.svg"
  6106. }
  6107. },
  6108. },
  6109. [
  6110. {
  6111. name: "Normal",
  6112. height: math.unit(9, "feet"),
  6113. default: true
  6114. }
  6115. ]
  6116. ))
  6117. characterMakers.push(() => makeCharacter(
  6118. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6119. {
  6120. side: {
  6121. height: math.unit(5 + 1 / 6, "feet"),
  6122. weight: math.unit(130, "lbs"),
  6123. name: "Side",
  6124. image: {
  6125. source: "./media/characters/rikky/side.svg",
  6126. extra: 851 / 801
  6127. }
  6128. },
  6129. },
  6130. [
  6131. {
  6132. name: "Normal",
  6133. height: math.unit(5 + 1 / 6, "feet")
  6134. },
  6135. {
  6136. name: "Macro",
  6137. height: math.unit(152, "feet"),
  6138. default: true
  6139. },
  6140. {
  6141. name: "Megamacro",
  6142. height: math.unit(7, "miles")
  6143. }
  6144. ]
  6145. ))
  6146. characterMakers.push(() => makeCharacter(
  6147. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6148. {
  6149. side: {
  6150. height: math.unit(370, "cm"),
  6151. weight: math.unit(350, "lbs"),
  6152. name: "Side",
  6153. image: {
  6154. source: "./media/characters/malfressa/side.svg"
  6155. }
  6156. },
  6157. walking: {
  6158. height: math.unit(370, "cm"),
  6159. weight: math.unit(350, "lbs"),
  6160. name: "Walking",
  6161. image: {
  6162. source: "./media/characters/malfressa/walking.svg"
  6163. }
  6164. },
  6165. feral: {
  6166. height: math.unit(2500, "cm"),
  6167. weight: math.unit(100000, "lbs"),
  6168. name: "Feral",
  6169. image: {
  6170. source: "./media/characters/malfressa/feral.svg",
  6171. extra: 2108 / 837,
  6172. bottom: 0.02
  6173. }
  6174. },
  6175. },
  6176. [
  6177. {
  6178. name: "Normal",
  6179. height: math.unit(370, "cm")
  6180. },
  6181. {
  6182. name: "Macro",
  6183. height: math.unit(300, "meters"),
  6184. default: true
  6185. }
  6186. ]
  6187. ))
  6188. characterMakers.push(() => makeCharacter(
  6189. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6190. {
  6191. front: {
  6192. height: math.unit(6, "feet"),
  6193. weight: math.unit(60, "kg"),
  6194. name: "Front",
  6195. image: {
  6196. source: "./media/characters/jaro/front.svg"
  6197. }
  6198. },
  6199. back: {
  6200. height: math.unit(6, "feet"),
  6201. weight: math.unit(60, "kg"),
  6202. name: "Back",
  6203. image: {
  6204. source: "./media/characters/jaro/back.svg"
  6205. }
  6206. },
  6207. },
  6208. [
  6209. {
  6210. name: "Micro",
  6211. height: math.unit(7, "inches")
  6212. },
  6213. {
  6214. name: "Normal",
  6215. height: math.unit(5.5, "feet"),
  6216. default: true
  6217. },
  6218. {
  6219. name: "Minimacro",
  6220. height: math.unit(20, "feet")
  6221. },
  6222. {
  6223. name: "Macro",
  6224. height: math.unit(200, "meters")
  6225. }
  6226. ]
  6227. ))
  6228. characterMakers.push(() => makeCharacter(
  6229. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6230. {
  6231. front: {
  6232. height: math.unit(6, "feet"),
  6233. weight: math.unit(195, "lb"),
  6234. name: "Front",
  6235. image: {
  6236. source: "./media/characters/rogue/front.svg"
  6237. }
  6238. },
  6239. },
  6240. [
  6241. {
  6242. name: "Macro",
  6243. height: math.unit(90, "feet"),
  6244. default: true
  6245. },
  6246. ]
  6247. ))
  6248. characterMakers.push(() => makeCharacter(
  6249. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6250. {
  6251. front: {
  6252. height: math.unit(5 + 8 / 12, "feet"),
  6253. weight: math.unit(140, "lb"),
  6254. name: "Front",
  6255. image: {
  6256. source: "./media/characters/piper/front.svg",
  6257. extra: 3948/3655,
  6258. bottom: 0/3948
  6259. }
  6260. },
  6261. },
  6262. [
  6263. {
  6264. name: "Micro",
  6265. height: math.unit(2, "inches")
  6266. },
  6267. {
  6268. name: "Normal",
  6269. height: math.unit(5 + 8 / 12, "feet")
  6270. },
  6271. {
  6272. name: "Macro",
  6273. height: math.unit(250, "feet"),
  6274. default: true
  6275. },
  6276. {
  6277. name: "Megamacro",
  6278. height: math.unit(7, "miles")
  6279. },
  6280. ]
  6281. ))
  6282. characterMakers.push(() => makeCharacter(
  6283. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6284. {
  6285. front: {
  6286. height: math.unit(6, "feet"),
  6287. weight: math.unit(220, "lb"),
  6288. name: "Front",
  6289. image: {
  6290. source: "./media/characters/gemini/front.svg"
  6291. }
  6292. },
  6293. back: {
  6294. height: math.unit(6, "feet"),
  6295. weight: math.unit(220, "lb"),
  6296. name: "Back",
  6297. image: {
  6298. source: "./media/characters/gemini/back.svg"
  6299. }
  6300. },
  6301. kneeling: {
  6302. height: math.unit(6 / 1.5, "feet"),
  6303. weight: math.unit(220, "lb"),
  6304. name: "Kneeling",
  6305. image: {
  6306. source: "./media/characters/gemini/kneeling.svg",
  6307. bottom: 0.02
  6308. }
  6309. },
  6310. },
  6311. [
  6312. {
  6313. name: "Macro",
  6314. height: math.unit(300, "meters"),
  6315. default: true
  6316. },
  6317. {
  6318. name: "Megamacro",
  6319. height: math.unit(6900, "meters")
  6320. },
  6321. ]
  6322. ))
  6323. characterMakers.push(() => makeCharacter(
  6324. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6325. {
  6326. anthro: {
  6327. height: math.unit(2.35, "meters"),
  6328. weight: math.unit(73, "kg"),
  6329. name: "Anthro",
  6330. image: {
  6331. source: "./media/characters/alicia/anthro.svg",
  6332. extra: 2571 / 2385,
  6333. bottom: 75 / 2648
  6334. }
  6335. },
  6336. paw: {
  6337. height: math.unit(1.32, "feet"),
  6338. name: "Paw",
  6339. image: {
  6340. source: "./media/characters/alicia/paw.svg"
  6341. }
  6342. },
  6343. feral: {
  6344. height: math.unit(1.69, "meters"),
  6345. weight: math.unit(73, "kg"),
  6346. name: "Feral",
  6347. image: {
  6348. source: "./media/characters/alicia/feral.svg",
  6349. extra: 2123 / 1715,
  6350. bottom: 222 / 2349
  6351. }
  6352. },
  6353. },
  6354. [
  6355. {
  6356. name: "Normal",
  6357. height: math.unit(2.35, "meters")
  6358. },
  6359. {
  6360. name: "Macro",
  6361. height: math.unit(60, "meters"),
  6362. default: true
  6363. },
  6364. {
  6365. name: "Megamacro",
  6366. height: math.unit(10000, "kilometers")
  6367. },
  6368. ]
  6369. ))
  6370. characterMakers.push(() => makeCharacter(
  6371. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6372. {
  6373. front: {
  6374. height: math.unit(7, "feet"),
  6375. weight: math.unit(250, "lbs"),
  6376. name: "Front",
  6377. image: {
  6378. source: "./media/characters/archy/front.svg"
  6379. }
  6380. }
  6381. },
  6382. [
  6383. {
  6384. name: "Micro",
  6385. height: math.unit(1, "inch")
  6386. },
  6387. {
  6388. name: "Shorty",
  6389. height: math.unit(5, "feet")
  6390. },
  6391. {
  6392. name: "Normal",
  6393. height: math.unit(7, "feet")
  6394. },
  6395. {
  6396. name: "Macro",
  6397. height: math.unit(600, "meters"),
  6398. default: true
  6399. },
  6400. {
  6401. name: "Megamacro",
  6402. height: math.unit(1, "mile")
  6403. },
  6404. ]
  6405. ))
  6406. characterMakers.push(() => makeCharacter(
  6407. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6408. {
  6409. front: {
  6410. height: math.unit(1.65, "meters"),
  6411. weight: math.unit(74, "kg"),
  6412. name: "Front",
  6413. image: {
  6414. source: "./media/characters/berri/front.svg",
  6415. extra: 857 / 837,
  6416. bottom: 18 / 877
  6417. }
  6418. },
  6419. bum: {
  6420. height: math.unit(1.46, "feet"),
  6421. name: "Bum",
  6422. image: {
  6423. source: "./media/characters/berri/bum.svg"
  6424. }
  6425. },
  6426. mouth: {
  6427. height: math.unit(0.44, "feet"),
  6428. name: "Mouth",
  6429. image: {
  6430. source: "./media/characters/berri/mouth.svg"
  6431. }
  6432. },
  6433. paw: {
  6434. height: math.unit(0.826, "feet"),
  6435. name: "Paw",
  6436. image: {
  6437. source: "./media/characters/berri/paw.svg"
  6438. }
  6439. },
  6440. },
  6441. [
  6442. {
  6443. name: "Normal",
  6444. height: math.unit(1.65, "meters")
  6445. },
  6446. {
  6447. name: "Macro",
  6448. height: math.unit(60, "m"),
  6449. default: true
  6450. },
  6451. {
  6452. name: "Megamacro",
  6453. height: math.unit(9.213, "km")
  6454. },
  6455. {
  6456. name: "Planet Eater",
  6457. height: math.unit(489, "megameters")
  6458. },
  6459. {
  6460. name: "Teramacro",
  6461. height: math.unit(2471635000000, "meters")
  6462. },
  6463. {
  6464. name: "Examacro",
  6465. height: math.unit(8.0624e+26, "meters")
  6466. }
  6467. ]
  6468. ))
  6469. characterMakers.push(() => makeCharacter(
  6470. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6471. {
  6472. front: {
  6473. height: math.unit(1.72, "meters"),
  6474. weight: math.unit(68, "kg"),
  6475. name: "Front",
  6476. image: {
  6477. source: "./media/characters/lexi/front.svg"
  6478. }
  6479. }
  6480. },
  6481. [
  6482. {
  6483. name: "Very Smol",
  6484. height: math.unit(10, "mm")
  6485. },
  6486. {
  6487. name: "Micro",
  6488. height: math.unit(6.8, "cm"),
  6489. default: true
  6490. },
  6491. {
  6492. name: "Normal",
  6493. height: math.unit(1.72, "m")
  6494. }
  6495. ]
  6496. ))
  6497. characterMakers.push(() => makeCharacter(
  6498. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6499. {
  6500. front: {
  6501. height: math.unit(1.69, "meters"),
  6502. weight: math.unit(68, "kg"),
  6503. name: "Front",
  6504. image: {
  6505. source: "./media/characters/martin/front.svg",
  6506. extra: 596 / 581
  6507. }
  6508. }
  6509. },
  6510. [
  6511. {
  6512. name: "Micro",
  6513. height: math.unit(6.85, "cm"),
  6514. default: true
  6515. },
  6516. {
  6517. name: "Normal",
  6518. height: math.unit(1.69, "m")
  6519. }
  6520. ]
  6521. ))
  6522. characterMakers.push(() => makeCharacter(
  6523. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6524. {
  6525. front: {
  6526. height: math.unit(1.69, "meters"),
  6527. weight: math.unit(68, "kg"),
  6528. name: "Front",
  6529. image: {
  6530. source: "./media/characters/juno/front.svg"
  6531. }
  6532. }
  6533. },
  6534. [
  6535. {
  6536. name: "Micro",
  6537. height: math.unit(7, "cm")
  6538. },
  6539. {
  6540. name: "Normal",
  6541. height: math.unit(1.89, "m")
  6542. },
  6543. {
  6544. name: "Macro",
  6545. height: math.unit(353, "meters"),
  6546. default: true
  6547. }
  6548. ]
  6549. ))
  6550. characterMakers.push(() => makeCharacter(
  6551. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6552. {
  6553. front: {
  6554. height: math.unit(1.93, "meters"),
  6555. weight: math.unit(83, "kg"),
  6556. name: "Front",
  6557. image: {
  6558. source: "./media/characters/samantha/front.svg"
  6559. }
  6560. },
  6561. frontClothed: {
  6562. height: math.unit(1.93, "meters"),
  6563. weight: math.unit(83, "kg"),
  6564. name: "Front (Clothed)",
  6565. image: {
  6566. source: "./media/characters/samantha/front-clothed.svg"
  6567. }
  6568. },
  6569. back: {
  6570. height: math.unit(1.93, "meters"),
  6571. weight: math.unit(83, "kg"),
  6572. name: "Back",
  6573. image: {
  6574. source: "./media/characters/samantha/back.svg"
  6575. }
  6576. },
  6577. },
  6578. [
  6579. {
  6580. name: "Normal",
  6581. height: math.unit(1.93, "m")
  6582. },
  6583. {
  6584. name: "Macro",
  6585. height: math.unit(74, "meters"),
  6586. default: true
  6587. },
  6588. {
  6589. name: "Macro+",
  6590. height: math.unit(223, "meters"),
  6591. },
  6592. {
  6593. name: "Megamacro",
  6594. height: math.unit(8381, "meters"),
  6595. },
  6596. {
  6597. name: "Megamacro+",
  6598. height: math.unit(12000, "kilometers")
  6599. },
  6600. ]
  6601. ))
  6602. characterMakers.push(() => makeCharacter(
  6603. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6604. {
  6605. front: {
  6606. height: math.unit(1.92, "meters"),
  6607. weight: math.unit(80, "kg"),
  6608. name: "Front",
  6609. image: {
  6610. source: "./media/characters/dr-clay/front.svg"
  6611. }
  6612. },
  6613. frontClothed: {
  6614. height: math.unit(1.92, "meters"),
  6615. weight: math.unit(80, "kg"),
  6616. name: "Front (Clothed)",
  6617. image: {
  6618. source: "./media/characters/dr-clay/front-clothed.svg"
  6619. }
  6620. }
  6621. },
  6622. [
  6623. {
  6624. name: "Normal",
  6625. height: math.unit(1.92, "m")
  6626. },
  6627. {
  6628. name: "Macro",
  6629. height: math.unit(214, "meters"),
  6630. default: true
  6631. },
  6632. {
  6633. name: "Macro+",
  6634. height: math.unit(12.237, "meters"),
  6635. },
  6636. {
  6637. name: "Megamacro",
  6638. height: math.unit(557, "megameters"),
  6639. },
  6640. {
  6641. name: "Unimaginable",
  6642. height: math.unit(120e9, "lightyears")
  6643. },
  6644. ]
  6645. ))
  6646. characterMakers.push(() => makeCharacter(
  6647. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6648. {
  6649. front: {
  6650. height: math.unit(2, "meters"),
  6651. weight: math.unit(80, "kg"),
  6652. name: "Front",
  6653. image: {
  6654. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6655. }
  6656. }
  6657. },
  6658. [
  6659. {
  6660. name: "Teramacro",
  6661. height: math.unit(500000, "lightyears"),
  6662. default: true
  6663. },
  6664. ]
  6665. ))
  6666. characterMakers.push(() => makeCharacter(
  6667. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6668. {
  6669. crux: {
  6670. height: math.unit(2, "meters"),
  6671. weight: math.unit(150, "kg"),
  6672. name: "Crux",
  6673. image: {
  6674. source: "./media/characters/vemus/crux.svg",
  6675. extra: 1074/936,
  6676. bottom: 23/1097
  6677. }
  6678. },
  6679. skunkTanuki: {
  6680. height: math.unit(2, "meters"),
  6681. weight: math.unit(150, "kg"),
  6682. name: "Skunk-Tanuki",
  6683. image: {
  6684. source: "./media/characters/vemus/skunk-tanuki.svg",
  6685. extra: 926/893,
  6686. bottom: 20/946
  6687. }
  6688. },
  6689. },
  6690. [
  6691. {
  6692. name: "Normal",
  6693. height: math.unit(3.75, "meters"),
  6694. default: true
  6695. },
  6696. {
  6697. name: "Big",
  6698. height: math.unit(8, "meters")
  6699. },
  6700. {
  6701. name: "Macro",
  6702. height: math.unit(100, "meters")
  6703. },
  6704. {
  6705. name: "Macro+",
  6706. height: math.unit(1500, "meters")
  6707. },
  6708. {
  6709. name: "Stellar",
  6710. height: math.unit(14e8, "meters")
  6711. },
  6712. ]
  6713. ))
  6714. characterMakers.push(() => makeCharacter(
  6715. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6716. {
  6717. front: {
  6718. height: math.unit(2, "meters"),
  6719. weight: math.unit(70, "kg"),
  6720. name: "Front",
  6721. image: {
  6722. source: "./media/characters/beherit/front.svg",
  6723. extra: 1408 / 1242
  6724. }
  6725. }
  6726. },
  6727. [
  6728. {
  6729. name: "Normal",
  6730. height: math.unit(6, "feet")
  6731. },
  6732. {
  6733. name: "Lorg",
  6734. height: math.unit(25, "feet"),
  6735. default: true
  6736. },
  6737. {
  6738. name: "Lorger",
  6739. height: math.unit(75, "feet")
  6740. },
  6741. {
  6742. name: "Macro",
  6743. height: math.unit(200, "meters")
  6744. },
  6745. ]
  6746. ))
  6747. characterMakers.push(() => makeCharacter(
  6748. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6749. {
  6750. front: {
  6751. height: math.unit(2, "meters"),
  6752. weight: math.unit(150, "kg"),
  6753. name: "Front",
  6754. image: {
  6755. source: "./media/characters/everett/front.svg",
  6756. extra: 2038 / 1737,
  6757. bottom: 0.03
  6758. }
  6759. },
  6760. paw: {
  6761. height: math.unit(2 / 3.6, "meters"),
  6762. name: "Paw",
  6763. image: {
  6764. source: "./media/characters/everett/paw.svg"
  6765. }
  6766. },
  6767. },
  6768. [
  6769. {
  6770. name: "Normal",
  6771. height: math.unit(15, "feet"),
  6772. default: true
  6773. },
  6774. {
  6775. name: "Lorg",
  6776. height: math.unit(70, "feet"),
  6777. default: true
  6778. },
  6779. {
  6780. name: "Lorger",
  6781. height: math.unit(250, "feet")
  6782. },
  6783. {
  6784. name: "Macro",
  6785. height: math.unit(500, "meters")
  6786. },
  6787. ]
  6788. ))
  6789. characterMakers.push(() => makeCharacter(
  6790. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6791. {
  6792. front: {
  6793. height: math.unit(2, "meters"),
  6794. weight: math.unit(86, "kg"),
  6795. name: "Front",
  6796. image: {
  6797. source: "./media/characters/rose/front.svg",
  6798. extra: 1785/1636,
  6799. bottom: 30/1815
  6800. }
  6801. },
  6802. frontSporty: {
  6803. height: math.unit(2, "meters"),
  6804. weight: math.unit(86, "kg"),
  6805. name: "Front (Sporty)",
  6806. image: {
  6807. source: "./media/characters/rose/front-sporty.svg",
  6808. extra: 350/335,
  6809. bottom: 10/360
  6810. }
  6811. },
  6812. frontAlt: {
  6813. height: math.unit(1.6, "meters"),
  6814. weight: math.unit(86, "kg"),
  6815. name: "Front (Alt)",
  6816. image: {
  6817. source: "./media/characters/rose/front-alt.svg",
  6818. extra: 299/283,
  6819. bottom: 3/302
  6820. }
  6821. },
  6822. plush: {
  6823. height: math.unit(2, "meters"),
  6824. weight: math.unit(86/3, "kg"),
  6825. name: "Plush",
  6826. image: {
  6827. source: "./media/characters/rose/plush.svg",
  6828. extra: 361/337,
  6829. bottom: 11/372
  6830. }
  6831. },
  6832. },
  6833. [
  6834. {
  6835. name: "True Micro",
  6836. height: math.unit(9, "cm")
  6837. },
  6838. {
  6839. name: "Micro",
  6840. height: math.unit(16, "cm")
  6841. },
  6842. {
  6843. name: "Normal",
  6844. height: math.unit(1.85, "meters"),
  6845. default: true
  6846. },
  6847. {
  6848. name: "Mini-Macro",
  6849. height: math.unit(5, "meters")
  6850. },
  6851. {
  6852. name: "Macro",
  6853. height: math.unit(15, "meters")
  6854. },
  6855. {
  6856. name: "True Macro",
  6857. height: math.unit(40, "meters")
  6858. },
  6859. {
  6860. name: "City Scale",
  6861. height: math.unit(1, "km")
  6862. },
  6863. ]
  6864. ))
  6865. characterMakers.push(() => makeCharacter(
  6866. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6867. {
  6868. front: {
  6869. height: math.unit(2, "meters"),
  6870. weight: math.unit(350, "lbs"),
  6871. name: "Front",
  6872. image: {
  6873. source: "./media/characters/regal/front.svg"
  6874. }
  6875. },
  6876. back: {
  6877. height: math.unit(2, "meters"),
  6878. weight: math.unit(350, "lbs"),
  6879. name: "Back",
  6880. image: {
  6881. source: "./media/characters/regal/back.svg"
  6882. }
  6883. },
  6884. },
  6885. [
  6886. {
  6887. name: "Macro",
  6888. height: math.unit(350, "feet"),
  6889. default: true
  6890. }
  6891. ]
  6892. ))
  6893. characterMakers.push(() => makeCharacter(
  6894. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6895. {
  6896. front: {
  6897. height: math.unit(4 + 11 / 12, "feet"),
  6898. weight: math.unit(100, "lbs"),
  6899. name: "Front",
  6900. image: {
  6901. source: "./media/characters/opal/front.svg"
  6902. }
  6903. },
  6904. frontAlt: {
  6905. height: math.unit(4 + 11 / 12, "feet"),
  6906. weight: math.unit(100, "lbs"),
  6907. name: "Front (Alt)",
  6908. image: {
  6909. source: "./media/characters/opal/front-alt.svg"
  6910. }
  6911. },
  6912. },
  6913. [
  6914. {
  6915. name: "Small",
  6916. height: math.unit(4 + 11 / 12, "feet")
  6917. },
  6918. {
  6919. name: "Normal",
  6920. height: math.unit(20, "feet"),
  6921. default: true
  6922. },
  6923. {
  6924. name: "Macro",
  6925. height: math.unit(120, "feet")
  6926. },
  6927. {
  6928. name: "Megamacro",
  6929. height: math.unit(80, "miles")
  6930. },
  6931. {
  6932. name: "True Size",
  6933. height: math.unit(100000, "lightyears")
  6934. },
  6935. ]
  6936. ))
  6937. characterMakers.push(() => makeCharacter(
  6938. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6939. {
  6940. front: {
  6941. height: math.unit(6, "feet"),
  6942. weight: math.unit(200, "lbs"),
  6943. name: "Front",
  6944. image: {
  6945. source: "./media/characters/vector-wuff/front.svg"
  6946. }
  6947. }
  6948. },
  6949. [
  6950. {
  6951. name: "Normal",
  6952. height: math.unit(2.8, "meters")
  6953. },
  6954. {
  6955. name: "Macro",
  6956. height: math.unit(450, "meters"),
  6957. default: true
  6958. },
  6959. {
  6960. name: "Megamacro",
  6961. height: math.unit(15, "kilometers")
  6962. }
  6963. ]
  6964. ))
  6965. characterMakers.push(() => makeCharacter(
  6966. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6967. {
  6968. front: {
  6969. height: math.unit(6, "feet"),
  6970. weight: math.unit(256, "lbs"),
  6971. name: "Front",
  6972. image: {
  6973. source: "./media/characters/dannik/front.svg"
  6974. }
  6975. }
  6976. },
  6977. [
  6978. {
  6979. name: "Macro",
  6980. height: math.unit(69.57, "meters"),
  6981. default: true
  6982. },
  6983. ]
  6984. ))
  6985. characterMakers.push(() => makeCharacter(
  6986. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6987. {
  6988. front: {
  6989. height: math.unit(6, "feet"),
  6990. weight: math.unit(120, "lbs"),
  6991. name: "Front",
  6992. image: {
  6993. source: "./media/characters/azura-saharah/front.svg"
  6994. }
  6995. },
  6996. back: {
  6997. height: math.unit(6, "feet"),
  6998. weight: math.unit(120, "lbs"),
  6999. name: "Back",
  7000. image: {
  7001. source: "./media/characters/azura-saharah/back.svg"
  7002. }
  7003. },
  7004. },
  7005. [
  7006. {
  7007. name: "Macro",
  7008. height: math.unit(100, "feet"),
  7009. default: true
  7010. },
  7011. ]
  7012. ))
  7013. characterMakers.push(() => makeCharacter(
  7014. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7015. {
  7016. side: {
  7017. height: math.unit(5 + 4 / 12, "feet"),
  7018. weight: math.unit(163, "lbs"),
  7019. name: "Side",
  7020. image: {
  7021. source: "./media/characters/kennedy/side.svg"
  7022. }
  7023. }
  7024. },
  7025. [
  7026. {
  7027. name: "Standard Doggo",
  7028. height: math.unit(5 + 4 / 12, "feet")
  7029. },
  7030. {
  7031. name: "Big Doggo",
  7032. height: math.unit(25 + 3 / 12, "feet"),
  7033. default: true
  7034. },
  7035. ]
  7036. ))
  7037. characterMakers.push(() => makeCharacter(
  7038. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7039. {
  7040. front: {
  7041. height: math.unit(6, "feet"),
  7042. weight: math.unit(90, "lbs"),
  7043. name: "Front",
  7044. image: {
  7045. source: "./media/characters/odi-lunar/front.svg"
  7046. }
  7047. }
  7048. },
  7049. [
  7050. {
  7051. name: "Micro",
  7052. height: math.unit(3, "inches"),
  7053. default: true
  7054. },
  7055. {
  7056. name: "Normal",
  7057. height: math.unit(5.5, "feet")
  7058. }
  7059. ]
  7060. ))
  7061. characterMakers.push(() => makeCharacter(
  7062. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7063. {
  7064. back: {
  7065. height: math.unit(6, "feet"),
  7066. weight: math.unit(220, "lbs"),
  7067. name: "Back",
  7068. image: {
  7069. source: "./media/characters/mandake/back.svg"
  7070. }
  7071. }
  7072. },
  7073. [
  7074. {
  7075. name: "Normal",
  7076. height: math.unit(7, "feet"),
  7077. default: true
  7078. },
  7079. {
  7080. name: "Macro",
  7081. height: math.unit(78, "feet")
  7082. },
  7083. {
  7084. name: "Macro+",
  7085. height: math.unit(300, "meters")
  7086. },
  7087. {
  7088. name: "Macro++",
  7089. height: math.unit(2400, "feet")
  7090. },
  7091. {
  7092. name: "Megamacro",
  7093. height: math.unit(5167, "meters")
  7094. },
  7095. {
  7096. name: "Gigamacro",
  7097. height: math.unit(41769, "miles")
  7098. },
  7099. ]
  7100. ))
  7101. characterMakers.push(() => makeCharacter(
  7102. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7103. {
  7104. front: {
  7105. height: math.unit(6, "feet"),
  7106. weight: math.unit(120, "lbs"),
  7107. name: "Front",
  7108. image: {
  7109. source: "./media/characters/yozey/front.svg"
  7110. }
  7111. },
  7112. frontAlt: {
  7113. height: math.unit(6, "feet"),
  7114. weight: math.unit(120, "lbs"),
  7115. name: "Front (Alt)",
  7116. image: {
  7117. source: "./media/characters/yozey/front-alt.svg"
  7118. }
  7119. },
  7120. side: {
  7121. height: math.unit(6, "feet"),
  7122. weight: math.unit(120, "lbs"),
  7123. name: "Side",
  7124. image: {
  7125. source: "./media/characters/yozey/side.svg"
  7126. }
  7127. },
  7128. },
  7129. [
  7130. {
  7131. name: "Micro",
  7132. height: math.unit(3, "inches"),
  7133. default: true
  7134. },
  7135. {
  7136. name: "Normal",
  7137. height: math.unit(6, "feet")
  7138. }
  7139. ]
  7140. ))
  7141. characterMakers.push(() => makeCharacter(
  7142. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7143. {
  7144. front: {
  7145. height: math.unit(6, "feet"),
  7146. weight: math.unit(103, "lbs"),
  7147. name: "Front",
  7148. image: {
  7149. source: "./media/characters/valeska-voss/front.svg"
  7150. }
  7151. }
  7152. },
  7153. [
  7154. {
  7155. name: "Mini-Sized Sub",
  7156. height: math.unit(3.1, "inches")
  7157. },
  7158. {
  7159. name: "Mid-Sized Sub",
  7160. height: math.unit(6.2, "inches")
  7161. },
  7162. {
  7163. name: "Full-Sized Sub",
  7164. height: math.unit(9.3, "inches")
  7165. },
  7166. {
  7167. name: "Normal",
  7168. height: math.unit(5 + 2 / 12, "foot"),
  7169. default: true
  7170. },
  7171. ]
  7172. ))
  7173. characterMakers.push(() => makeCharacter(
  7174. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7175. {
  7176. front: {
  7177. height: math.unit(6, "feet"),
  7178. weight: math.unit(160, "lbs"),
  7179. name: "Front",
  7180. image: {
  7181. source: "./media/characters/gene-zeta/front.svg",
  7182. extra: 3006 / 2826,
  7183. bottom: 182 / 3188
  7184. }
  7185. }
  7186. },
  7187. [
  7188. {
  7189. name: "Micro",
  7190. height: math.unit(6, "inches")
  7191. },
  7192. {
  7193. name: "Normal",
  7194. height: math.unit(5 + 11 / 12, "foot"),
  7195. default: true
  7196. },
  7197. {
  7198. name: "Macro",
  7199. height: math.unit(140, "feet")
  7200. },
  7201. {
  7202. name: "Supercharged",
  7203. height: math.unit(2500, "feet")
  7204. },
  7205. ]
  7206. ))
  7207. characterMakers.push(() => makeCharacter(
  7208. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7209. {
  7210. front: {
  7211. height: math.unit(6, "feet"),
  7212. weight: math.unit(350, "lbs"),
  7213. name: "Front",
  7214. image: {
  7215. source: "./media/characters/razinox/front.svg",
  7216. extra: 1686 / 1548,
  7217. bottom: 28.2 / 1868
  7218. }
  7219. },
  7220. back: {
  7221. height: math.unit(6, "feet"),
  7222. weight: math.unit(350, "lbs"),
  7223. name: "Back",
  7224. image: {
  7225. source: "./media/characters/razinox/back.svg",
  7226. extra: 1660 / 1590,
  7227. bottom: 15 / 1665
  7228. }
  7229. },
  7230. },
  7231. [
  7232. {
  7233. name: "Normal",
  7234. height: math.unit(10 + 8 / 12, "foot")
  7235. },
  7236. {
  7237. name: "Minimacro",
  7238. height: math.unit(15, "foot")
  7239. },
  7240. {
  7241. name: "Macro",
  7242. height: math.unit(60, "foot"),
  7243. default: true
  7244. },
  7245. {
  7246. name: "Megamacro",
  7247. height: math.unit(5, "miles")
  7248. },
  7249. {
  7250. name: "Gigamacro",
  7251. height: math.unit(6000, "miles")
  7252. },
  7253. ]
  7254. ))
  7255. characterMakers.push(() => makeCharacter(
  7256. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7257. {
  7258. front: {
  7259. height: math.unit(6, "feet"),
  7260. weight: math.unit(150, "lbs"),
  7261. name: "Front",
  7262. image: {
  7263. source: "./media/characters/cobalt/front.svg"
  7264. }
  7265. }
  7266. },
  7267. [
  7268. {
  7269. name: "Normal",
  7270. height: math.unit(8 + 1 / 12, "foot")
  7271. },
  7272. {
  7273. name: "Macro",
  7274. height: math.unit(111, "foot"),
  7275. default: true
  7276. },
  7277. {
  7278. name: "Supracosmic",
  7279. height: math.unit(1e42, "feet")
  7280. },
  7281. ]
  7282. ))
  7283. characterMakers.push(() => makeCharacter(
  7284. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7285. {
  7286. front: {
  7287. height: math.unit(6, "feet"),
  7288. weight: math.unit(140, "lbs"),
  7289. name: "Front",
  7290. image: {
  7291. source: "./media/characters/amanda/front.svg"
  7292. }
  7293. }
  7294. },
  7295. [
  7296. {
  7297. name: "Micro",
  7298. height: math.unit(5, "inches"),
  7299. default: true
  7300. },
  7301. ]
  7302. ))
  7303. characterMakers.push(() => makeCharacter(
  7304. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7305. {
  7306. front: {
  7307. height: math.unit(2.75, "meters"),
  7308. weight: math.unit(1200, "lb"),
  7309. name: "Front",
  7310. image: {
  7311. source: "./media/characters/teal/front.svg",
  7312. extra: 2463 / 2320,
  7313. bottom: 166 / 2629
  7314. }
  7315. },
  7316. back: {
  7317. height: math.unit(2.75, "meters"),
  7318. weight: math.unit(1200, "lb"),
  7319. name: "Back",
  7320. image: {
  7321. source: "./media/characters/teal/back.svg",
  7322. extra: 2580 / 2489,
  7323. bottom: 151 / 2731
  7324. }
  7325. },
  7326. sitting: {
  7327. height: math.unit(1.9, "meters"),
  7328. weight: math.unit(1200, "lb"),
  7329. name: "Sitting",
  7330. image: {
  7331. source: "./media/characters/teal/sitting.svg",
  7332. extra: 623 / 590,
  7333. bottom: 121 / 744
  7334. }
  7335. },
  7336. standing: {
  7337. height: math.unit(2.75, "meters"),
  7338. weight: math.unit(1200, "lb"),
  7339. name: "Standing",
  7340. image: {
  7341. source: "./media/characters/teal/standing.svg",
  7342. extra: 923 / 893,
  7343. bottom: 60 / 983
  7344. }
  7345. },
  7346. stretching: {
  7347. height: math.unit(3.65, "meters"),
  7348. weight: math.unit(1200, "lb"),
  7349. name: "Stretching",
  7350. image: {
  7351. source: "./media/characters/teal/stretching.svg",
  7352. extra: 1276 / 1244,
  7353. bottom: 0 / 1276
  7354. }
  7355. },
  7356. legged: {
  7357. height: math.unit(1.3, "meters"),
  7358. weight: math.unit(100, "lb"),
  7359. name: "Legged",
  7360. image: {
  7361. source: "./media/characters/teal/legged.svg",
  7362. extra: 462 / 437,
  7363. bottom: 24 / 486
  7364. }
  7365. },
  7366. naga: {
  7367. height: math.unit(5.4, "meters"),
  7368. weight: math.unit(4000, "lb"),
  7369. name: "Naga",
  7370. image: {
  7371. source: "./media/characters/teal/naga.svg",
  7372. extra: 1902 / 1858,
  7373. bottom: 0 / 1902
  7374. }
  7375. },
  7376. hand: {
  7377. height: math.unit(0.52, "meters"),
  7378. name: "Hand",
  7379. image: {
  7380. source: "./media/characters/teal/hand.svg"
  7381. }
  7382. },
  7383. maw: {
  7384. height: math.unit(0.43, "meters"),
  7385. name: "Maw",
  7386. image: {
  7387. source: "./media/characters/teal/maw.svg"
  7388. }
  7389. },
  7390. slit: {
  7391. height: math.unit(0.25, "meters"),
  7392. name: "Slit",
  7393. image: {
  7394. source: "./media/characters/teal/slit.svg"
  7395. }
  7396. },
  7397. },
  7398. [
  7399. {
  7400. name: "Normal",
  7401. height: math.unit(2.75, "meters"),
  7402. default: true
  7403. },
  7404. {
  7405. name: "Macro",
  7406. height: math.unit(300, "feet")
  7407. },
  7408. {
  7409. name: "Macro+",
  7410. height: math.unit(2000, "feet")
  7411. },
  7412. ]
  7413. ))
  7414. characterMakers.push(() => makeCharacter(
  7415. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7416. {
  7417. frontCat: {
  7418. height: math.unit(6, "feet"),
  7419. weight: math.unit(180, "lbs"),
  7420. name: "Front (Cat)",
  7421. image: {
  7422. source: "./media/characters/ravin-amulet/front-cat.svg"
  7423. }
  7424. },
  7425. frontCatAlt: {
  7426. height: math.unit(6, "feet"),
  7427. weight: math.unit(180, "lbs"),
  7428. name: "Front (Alt, Cat)",
  7429. image: {
  7430. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7431. }
  7432. },
  7433. frontWerewolf: {
  7434. height: math.unit(6 * 1.2, "feet"),
  7435. weight: math.unit(225, "lbs"),
  7436. name: "Front (Werewolf)",
  7437. image: {
  7438. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7439. }
  7440. },
  7441. backWerewolf: {
  7442. height: math.unit(6 * 1.2, "feet"),
  7443. weight: math.unit(225, "lbs"),
  7444. name: "Back (Werewolf)",
  7445. image: {
  7446. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7447. }
  7448. },
  7449. },
  7450. [
  7451. {
  7452. name: "Nano",
  7453. height: math.unit(1, "micrometer")
  7454. },
  7455. {
  7456. name: "Micro",
  7457. height: math.unit(1, "inch")
  7458. },
  7459. {
  7460. name: "Normal",
  7461. height: math.unit(6, "feet"),
  7462. default: true
  7463. },
  7464. {
  7465. name: "Macro",
  7466. height: math.unit(60, "feet")
  7467. }
  7468. ]
  7469. ))
  7470. characterMakers.push(() => makeCharacter(
  7471. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7472. {
  7473. front: {
  7474. height: math.unit(6, "feet"),
  7475. weight: math.unit(165, "lbs"),
  7476. name: "Front",
  7477. image: {
  7478. source: "./media/characters/fluoresce/front.svg"
  7479. }
  7480. }
  7481. },
  7482. [
  7483. {
  7484. name: "Micro",
  7485. height: math.unit(6, "cm")
  7486. },
  7487. {
  7488. name: "Normal",
  7489. height: math.unit(5 + 7 / 12, "feet"),
  7490. default: true
  7491. },
  7492. {
  7493. name: "Macro",
  7494. height: math.unit(56, "feet")
  7495. },
  7496. {
  7497. name: "Megamacro",
  7498. height: math.unit(1.9, "miles")
  7499. },
  7500. ]
  7501. ))
  7502. characterMakers.push(() => makeCharacter(
  7503. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7504. {
  7505. front: {
  7506. height: math.unit(9 + 6 / 12, "feet"),
  7507. weight: math.unit(523, "lbs"),
  7508. name: "Side",
  7509. image: {
  7510. source: "./media/characters/aurora/side.svg"
  7511. }
  7512. }
  7513. },
  7514. [
  7515. {
  7516. name: "Normal",
  7517. height: math.unit(9 + 6 / 12, "feet")
  7518. },
  7519. {
  7520. name: "Macro",
  7521. height: math.unit(96, "feet"),
  7522. default: true
  7523. },
  7524. {
  7525. name: "Macro+",
  7526. height: math.unit(243, "feet")
  7527. },
  7528. ]
  7529. ))
  7530. characterMakers.push(() => makeCharacter(
  7531. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7532. {
  7533. front: {
  7534. height: math.unit(194, "cm"),
  7535. weight: math.unit(90, "kg"),
  7536. name: "Front",
  7537. image: {
  7538. source: "./media/characters/ranek/front.svg"
  7539. }
  7540. },
  7541. side: {
  7542. height: math.unit(194, "cm"),
  7543. weight: math.unit(90, "kg"),
  7544. name: "Side",
  7545. image: {
  7546. source: "./media/characters/ranek/side.svg"
  7547. }
  7548. },
  7549. back: {
  7550. height: math.unit(194, "cm"),
  7551. weight: math.unit(90, "kg"),
  7552. name: "Back",
  7553. image: {
  7554. source: "./media/characters/ranek/back.svg"
  7555. }
  7556. },
  7557. feral: {
  7558. height: math.unit(30, "cm"),
  7559. weight: math.unit(1.6, "lbs"),
  7560. name: "Feral",
  7561. image: {
  7562. source: "./media/characters/ranek/feral.svg"
  7563. }
  7564. },
  7565. },
  7566. [
  7567. {
  7568. name: "Normal",
  7569. height: math.unit(194, "cm"),
  7570. default: true
  7571. },
  7572. {
  7573. name: "Macro",
  7574. height: math.unit(100, "meters")
  7575. },
  7576. ]
  7577. ))
  7578. characterMakers.push(() => makeCharacter(
  7579. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7580. {
  7581. front: {
  7582. height: math.unit(5 + 6 / 12, "feet"),
  7583. weight: math.unit(153, "lbs"),
  7584. name: "Front",
  7585. image: {
  7586. source: "./media/characters/andrew-cooper/front.svg"
  7587. }
  7588. },
  7589. },
  7590. [
  7591. {
  7592. name: "Nano",
  7593. height: math.unit(1, "mm")
  7594. },
  7595. {
  7596. name: "Micro",
  7597. height: math.unit(2, "inches")
  7598. },
  7599. {
  7600. name: "Normal",
  7601. height: math.unit(5 + 6 / 12, "feet"),
  7602. default: true
  7603. }
  7604. ]
  7605. ))
  7606. characterMakers.push(() => makeCharacter(
  7607. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7608. {
  7609. front: {
  7610. height: math.unit(6, "feet"),
  7611. weight: math.unit(180, "lbs"),
  7612. name: "Front",
  7613. image: {
  7614. source: "./media/characters/akane-sato/front.svg",
  7615. extra: 1219 / 1140
  7616. }
  7617. },
  7618. back: {
  7619. height: math.unit(6, "feet"),
  7620. weight: math.unit(180, "lbs"),
  7621. name: "Back",
  7622. image: {
  7623. source: "./media/characters/akane-sato/back.svg",
  7624. extra: 1219 / 1170
  7625. }
  7626. },
  7627. },
  7628. [
  7629. {
  7630. name: "Normal",
  7631. height: math.unit(2.5, "meters")
  7632. },
  7633. {
  7634. name: "Macro",
  7635. height: math.unit(250, "meters"),
  7636. default: true
  7637. },
  7638. {
  7639. name: "Megamacro",
  7640. height: math.unit(25, "km")
  7641. },
  7642. ]
  7643. ))
  7644. characterMakers.push(() => makeCharacter(
  7645. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7646. {
  7647. front: {
  7648. height: math.unit(6, "feet"),
  7649. weight: math.unit(65, "kg"),
  7650. name: "Front",
  7651. image: {
  7652. source: "./media/characters/rook/front.svg",
  7653. extra: 960 / 950
  7654. }
  7655. }
  7656. },
  7657. [
  7658. {
  7659. name: "Normal",
  7660. height: math.unit(8.8, "feet")
  7661. },
  7662. {
  7663. name: "Macro",
  7664. height: math.unit(88, "feet"),
  7665. default: true
  7666. },
  7667. {
  7668. name: "Megamacro",
  7669. height: math.unit(8, "miles")
  7670. },
  7671. ]
  7672. ))
  7673. characterMakers.push(() => makeCharacter(
  7674. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7675. {
  7676. front: {
  7677. height: math.unit(12 + 2 / 12, "feet"),
  7678. weight: math.unit(808, "lbs"),
  7679. name: "Front",
  7680. image: {
  7681. source: "./media/characters/prodigy/front.svg"
  7682. }
  7683. }
  7684. },
  7685. [
  7686. {
  7687. name: "Normal",
  7688. height: math.unit(12 + 2 / 12, "feet"),
  7689. default: true
  7690. },
  7691. {
  7692. name: "Macro",
  7693. height: math.unit(143, "feet")
  7694. },
  7695. {
  7696. name: "Macro+",
  7697. height: math.unit(400, "feet")
  7698. },
  7699. ]
  7700. ))
  7701. characterMakers.push(() => makeCharacter(
  7702. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7703. {
  7704. front: {
  7705. height: math.unit(6, "feet"),
  7706. weight: math.unit(225, "lbs"),
  7707. name: "Front",
  7708. image: {
  7709. source: "./media/characters/daniel/front.svg"
  7710. }
  7711. },
  7712. leaning: {
  7713. height: math.unit(6, "feet"),
  7714. weight: math.unit(225, "lbs"),
  7715. name: "Leaning",
  7716. image: {
  7717. source: "./media/characters/daniel/leaning.svg"
  7718. }
  7719. },
  7720. },
  7721. [
  7722. {
  7723. name: "Macro",
  7724. height: math.unit(1000, "feet"),
  7725. default: true
  7726. },
  7727. ]
  7728. ))
  7729. characterMakers.push(() => makeCharacter(
  7730. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7731. {
  7732. front: {
  7733. height: math.unit(6, "feet"),
  7734. weight: math.unit(88, "lbs"),
  7735. name: "Front",
  7736. image: {
  7737. source: "./media/characters/chiros/front.svg",
  7738. extra: 306 / 226
  7739. }
  7740. },
  7741. side: {
  7742. height: math.unit(6, "feet"),
  7743. weight: math.unit(88, "lbs"),
  7744. name: "Side",
  7745. image: {
  7746. source: "./media/characters/chiros/side.svg",
  7747. extra: 306 / 226
  7748. }
  7749. },
  7750. },
  7751. [
  7752. {
  7753. name: "Normal",
  7754. height: math.unit(6, "cm"),
  7755. default: true
  7756. },
  7757. ]
  7758. ))
  7759. characterMakers.push(() => makeCharacter(
  7760. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7761. {
  7762. front: {
  7763. height: math.unit(6, "feet"),
  7764. weight: math.unit(100, "lbs"),
  7765. name: "Front",
  7766. image: {
  7767. source: "./media/characters/selka/front.svg",
  7768. extra: 947 / 887
  7769. }
  7770. }
  7771. },
  7772. [
  7773. {
  7774. name: "Normal",
  7775. height: math.unit(5, "cm"),
  7776. default: true
  7777. },
  7778. ]
  7779. ))
  7780. characterMakers.push(() => makeCharacter(
  7781. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7782. {
  7783. front: {
  7784. height: math.unit(8 + 3 / 12, "feet"),
  7785. weight: math.unit(424, "lbs"),
  7786. name: "Front",
  7787. image: {
  7788. source: "./media/characters/verin/front.svg",
  7789. extra: 1845 / 1550
  7790. }
  7791. },
  7792. frontArmored: {
  7793. height: math.unit(8 + 3 / 12, "feet"),
  7794. weight: math.unit(424, "lbs"),
  7795. name: "Front (Armored)",
  7796. image: {
  7797. source: "./media/characters/verin/front-armor.svg",
  7798. extra: 1845 / 1550,
  7799. bottom: 0.01
  7800. }
  7801. },
  7802. back: {
  7803. height: math.unit(8 + 3 / 12, "feet"),
  7804. weight: math.unit(424, "lbs"),
  7805. name: "Back",
  7806. image: {
  7807. source: "./media/characters/verin/back.svg",
  7808. bottom: 0.1,
  7809. extra: 1
  7810. }
  7811. },
  7812. foot: {
  7813. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7814. name: "Foot",
  7815. image: {
  7816. source: "./media/characters/verin/foot.svg"
  7817. }
  7818. },
  7819. },
  7820. [
  7821. {
  7822. name: "Normal",
  7823. height: math.unit(8 + 3 / 12, "feet")
  7824. },
  7825. {
  7826. name: "Minimacro",
  7827. height: math.unit(21, "feet"),
  7828. default: true
  7829. },
  7830. {
  7831. name: "Macro",
  7832. height: math.unit(626, "feet")
  7833. },
  7834. ]
  7835. ))
  7836. characterMakers.push(() => makeCharacter(
  7837. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7838. {
  7839. front: {
  7840. height: math.unit(2.718, "meters"),
  7841. weight: math.unit(150, "lbs"),
  7842. name: "Front",
  7843. image: {
  7844. source: "./media/characters/sovrim-terraquian/front.svg"
  7845. }
  7846. },
  7847. back: {
  7848. height: math.unit(2.718, "meters"),
  7849. weight: math.unit(150, "lbs"),
  7850. name: "Back",
  7851. image: {
  7852. source: "./media/characters/sovrim-terraquian/back.svg"
  7853. }
  7854. }
  7855. },
  7856. [
  7857. {
  7858. name: "Micro",
  7859. height: math.unit(2, "inches")
  7860. },
  7861. {
  7862. name: "Small",
  7863. height: math.unit(1, "meter")
  7864. },
  7865. {
  7866. name: "Normal",
  7867. height: math.unit(Math.E, "meters"),
  7868. default: true
  7869. },
  7870. {
  7871. name: "Macro",
  7872. height: math.unit(20, "meters")
  7873. },
  7874. {
  7875. name: "Macro+",
  7876. height: math.unit(400, "meters")
  7877. },
  7878. ]
  7879. ))
  7880. characterMakers.push(() => makeCharacter(
  7881. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7882. {
  7883. front: {
  7884. height: math.unit(7, "feet"),
  7885. weight: math.unit(489, "lbs"),
  7886. name: "Front",
  7887. image: {
  7888. source: "./media/characters/reece-silvermane/front.svg",
  7889. bottom: 0.02,
  7890. extra: 1
  7891. }
  7892. },
  7893. },
  7894. [
  7895. {
  7896. name: "Macro",
  7897. height: math.unit(1.5, "miles"),
  7898. default: true
  7899. },
  7900. ]
  7901. ))
  7902. characterMakers.push(() => makeCharacter(
  7903. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7904. {
  7905. front: {
  7906. height: math.unit(6, "feet"),
  7907. weight: math.unit(78, "kg"),
  7908. name: "Front",
  7909. image: {
  7910. source: "./media/characters/kane/front.svg",
  7911. extra: 978 / 899
  7912. }
  7913. },
  7914. },
  7915. [
  7916. {
  7917. name: "Normal",
  7918. height: math.unit(2.1, "m"),
  7919. },
  7920. {
  7921. name: "Macro",
  7922. height: math.unit(1, "km"),
  7923. default: true
  7924. },
  7925. ]
  7926. ))
  7927. characterMakers.push(() => makeCharacter(
  7928. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7929. {
  7930. front: {
  7931. height: math.unit(6, "feet"),
  7932. weight: math.unit(200, "kg"),
  7933. name: "Front",
  7934. image: {
  7935. source: "./media/characters/tegon/front.svg",
  7936. bottom: 0.01,
  7937. extra: 1
  7938. }
  7939. },
  7940. },
  7941. [
  7942. {
  7943. name: "Micro",
  7944. height: math.unit(1, "inch")
  7945. },
  7946. {
  7947. name: "Normal",
  7948. height: math.unit(6 + 3 / 12, "feet"),
  7949. default: true
  7950. },
  7951. {
  7952. name: "Macro",
  7953. height: math.unit(300, "feet")
  7954. },
  7955. {
  7956. name: "Megamacro",
  7957. height: math.unit(69, "miles")
  7958. },
  7959. ]
  7960. ))
  7961. characterMakers.push(() => makeCharacter(
  7962. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7963. {
  7964. side: {
  7965. height: math.unit(6, "feet"),
  7966. weight: math.unit(2304, "lbs"),
  7967. name: "Side",
  7968. image: {
  7969. source: "./media/characters/arcturax/side.svg",
  7970. extra: 790 / 376,
  7971. bottom: 0.01
  7972. }
  7973. },
  7974. },
  7975. [
  7976. {
  7977. name: "Micro",
  7978. height: math.unit(2, "inch")
  7979. },
  7980. {
  7981. name: "Normal",
  7982. height: math.unit(6, "feet")
  7983. },
  7984. {
  7985. name: "Macro",
  7986. height: math.unit(39, "feet"),
  7987. default: true
  7988. },
  7989. {
  7990. name: "Megamacro",
  7991. height: math.unit(7, "miles")
  7992. },
  7993. ]
  7994. ))
  7995. characterMakers.push(() => makeCharacter(
  7996. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7997. {
  7998. front: {
  7999. height: math.unit(6, "feet"),
  8000. weight: math.unit(50, "lbs"),
  8001. name: "Front",
  8002. image: {
  8003. source: "./media/characters/sentri/front.svg",
  8004. extra: 1750 / 1570,
  8005. bottom: 0.025
  8006. }
  8007. },
  8008. frontAlt: {
  8009. height: math.unit(6, "feet"),
  8010. weight: math.unit(50, "lbs"),
  8011. name: "Front (Alt)",
  8012. image: {
  8013. source: "./media/characters/sentri/front-alt.svg",
  8014. extra: 1750 / 1570,
  8015. bottom: 0.025
  8016. }
  8017. },
  8018. },
  8019. [
  8020. {
  8021. name: "Normal",
  8022. height: math.unit(15, "feet"),
  8023. default: true
  8024. },
  8025. {
  8026. name: "Macro",
  8027. height: math.unit(2500, "feet")
  8028. }
  8029. ]
  8030. ))
  8031. characterMakers.push(() => makeCharacter(
  8032. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8033. {
  8034. front: {
  8035. height: math.unit(5 + 8 / 12, "feet"),
  8036. weight: math.unit(130, "lbs"),
  8037. name: "Front",
  8038. image: {
  8039. source: "./media/characters/corvin/front.svg",
  8040. extra: 1803 / 1629
  8041. }
  8042. },
  8043. frontShirt: {
  8044. height: math.unit(5 + 8 / 12, "feet"),
  8045. weight: math.unit(130, "lbs"),
  8046. name: "Front (Shirt)",
  8047. image: {
  8048. source: "./media/characters/corvin/front-shirt.svg",
  8049. extra: 1803 / 1629
  8050. }
  8051. },
  8052. frontPoncho: {
  8053. height: math.unit(5 + 8 / 12, "feet"),
  8054. weight: math.unit(130, "lbs"),
  8055. name: "Front (Poncho)",
  8056. image: {
  8057. source: "./media/characters/corvin/front-poncho.svg",
  8058. extra: 1803 / 1629
  8059. }
  8060. },
  8061. side: {
  8062. height: math.unit(5 + 8 / 12, "feet"),
  8063. weight: math.unit(130, "lbs"),
  8064. name: "Side",
  8065. image: {
  8066. source: "./media/characters/corvin/side.svg",
  8067. extra: 1012 / 945
  8068. }
  8069. },
  8070. back: {
  8071. height: math.unit(5 + 8 / 12, "feet"),
  8072. weight: math.unit(130, "lbs"),
  8073. name: "Back",
  8074. image: {
  8075. source: "./media/characters/corvin/back.svg",
  8076. extra: 1803 / 1629
  8077. }
  8078. },
  8079. },
  8080. [
  8081. {
  8082. name: "Micro",
  8083. height: math.unit(3, "inches")
  8084. },
  8085. {
  8086. name: "Normal",
  8087. height: math.unit(5 + 8 / 12, "feet")
  8088. },
  8089. {
  8090. name: "Macro",
  8091. height: math.unit(300, "feet"),
  8092. default: true
  8093. },
  8094. {
  8095. name: "Megamacro",
  8096. height: math.unit(500, "miles")
  8097. }
  8098. ]
  8099. ))
  8100. characterMakers.push(() => makeCharacter(
  8101. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8102. {
  8103. front: {
  8104. height: math.unit(6, "feet"),
  8105. weight: math.unit(135, "lbs"),
  8106. name: "Front",
  8107. image: {
  8108. source: "./media/characters/q/front.svg",
  8109. extra: 854 / 752,
  8110. bottom: 0.005
  8111. }
  8112. },
  8113. back: {
  8114. height: math.unit(6, "feet"),
  8115. weight: math.unit(130, "lbs"),
  8116. name: "Back",
  8117. image: {
  8118. source: "./media/characters/q/back.svg",
  8119. extra: 854 / 752
  8120. }
  8121. },
  8122. },
  8123. [
  8124. {
  8125. name: "Macro",
  8126. height: math.unit(90, "feet"),
  8127. default: true
  8128. },
  8129. {
  8130. name: "Extra Macro",
  8131. height: math.unit(300, "feet"),
  8132. },
  8133. {
  8134. name: "BIG WALF",
  8135. height: math.unit(750, "feet"),
  8136. },
  8137. ]
  8138. ))
  8139. characterMakers.push(() => makeCharacter(
  8140. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8141. {
  8142. front: {
  8143. height: math.unit(6, "feet"),
  8144. weight: math.unit(150, "lbs"),
  8145. name: "Front",
  8146. image: {
  8147. source: "./media/characters/carley/front.svg",
  8148. extra: 3927 / 3540,
  8149. bottom: 29.2 / 735
  8150. }
  8151. }
  8152. },
  8153. [
  8154. {
  8155. name: "Normal",
  8156. height: math.unit(6 + 3 / 12, "feet")
  8157. },
  8158. {
  8159. name: "Macro",
  8160. height: math.unit(185, "feet"),
  8161. default: true
  8162. },
  8163. {
  8164. name: "Megamacro",
  8165. height: math.unit(8, "miles"),
  8166. },
  8167. ]
  8168. ))
  8169. characterMakers.push(() => makeCharacter(
  8170. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8171. {
  8172. front: {
  8173. height: math.unit(3, "feet"),
  8174. weight: math.unit(28, "lbs"),
  8175. name: "Front",
  8176. image: {
  8177. source: "./media/characters/citrine/front.svg"
  8178. }
  8179. }
  8180. },
  8181. [
  8182. {
  8183. name: "Normal",
  8184. height: math.unit(3, "feet"),
  8185. default: true
  8186. }
  8187. ]
  8188. ))
  8189. characterMakers.push(() => makeCharacter(
  8190. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8191. {
  8192. front: {
  8193. height: math.unit(14, "feet"),
  8194. weight: math.unit(1450, "kg"),
  8195. capacity: math.unit(15, "people"),
  8196. name: "Front",
  8197. image: {
  8198. source: "./media/characters/aura-starwind/front.svg",
  8199. extra: 1440/1327,
  8200. bottom: 11/1451
  8201. }
  8202. },
  8203. side: {
  8204. height: math.unit(14, "feet"),
  8205. weight: math.unit(1450, "kg"),
  8206. capacity: math.unit(15, "people"),
  8207. name: "Side",
  8208. image: {
  8209. source: "./media/characters/aura-starwind/side.svg",
  8210. extra: 1654 / 1497
  8211. }
  8212. },
  8213. taur: {
  8214. height: math.unit(18, "feet"),
  8215. weight: math.unit(5500, "kg"),
  8216. capacity: math.unit(50, "people"),
  8217. name: "Taur",
  8218. image: {
  8219. source: "./media/characters/aura-starwind/taur.svg",
  8220. extra: 1760 / 1650
  8221. }
  8222. },
  8223. feral: {
  8224. height: math.unit(46, "feet"),
  8225. weight: math.unit(25000, "kg"),
  8226. capacity: math.unit(120, "people"),
  8227. name: "Feral",
  8228. image: {
  8229. source: "./media/characters/aura-starwind/feral.svg"
  8230. }
  8231. },
  8232. },
  8233. [
  8234. {
  8235. name: "Normal",
  8236. height: math.unit(14, "feet"),
  8237. default: true
  8238. },
  8239. {
  8240. name: "Macro",
  8241. height: math.unit(50, "meters")
  8242. },
  8243. {
  8244. name: "Megamacro",
  8245. height: math.unit(5000, "meters")
  8246. },
  8247. {
  8248. name: "Gigamacro",
  8249. height: math.unit(100000, "kilometers")
  8250. },
  8251. ]
  8252. ))
  8253. characterMakers.push(() => makeCharacter(
  8254. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8255. {
  8256. front: {
  8257. height: math.unit(2 + 7 / 12, "feet"),
  8258. weight: math.unit(32, "lbs"),
  8259. name: "Front",
  8260. image: {
  8261. source: "./media/characters/rivet/front.svg",
  8262. extra: 1716 / 1658,
  8263. bottom: 0.03
  8264. }
  8265. },
  8266. foot: {
  8267. height: math.unit(0.551, "feet"),
  8268. name: "Rivet's Foot",
  8269. image: {
  8270. source: "./media/characters/rivet/foot.svg"
  8271. },
  8272. rename: true
  8273. }
  8274. },
  8275. [
  8276. {
  8277. name: "Micro",
  8278. height: math.unit(1.5, "inches"),
  8279. },
  8280. {
  8281. name: "Normal",
  8282. height: math.unit(2 + 7 / 12, "feet"),
  8283. default: true
  8284. },
  8285. {
  8286. name: "Macro",
  8287. height: math.unit(85, "feet")
  8288. },
  8289. {
  8290. name: "Megamacro",
  8291. height: math.unit(2.2, "km")
  8292. }
  8293. ]
  8294. ))
  8295. characterMakers.push(() => makeCharacter(
  8296. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8297. {
  8298. front: {
  8299. height: math.unit(5 + 9 / 12, "feet"),
  8300. weight: math.unit(150, "lbs"),
  8301. name: "Front",
  8302. image: {
  8303. source: "./media/characters/coffee/front.svg",
  8304. extra: 3666 / 3032,
  8305. bottom: 0.04
  8306. }
  8307. },
  8308. foot: {
  8309. height: math.unit(1.29, "feet"),
  8310. name: "Foot",
  8311. image: {
  8312. source: "./media/characters/coffee/foot.svg"
  8313. }
  8314. },
  8315. },
  8316. [
  8317. {
  8318. name: "Micro",
  8319. height: math.unit(2, "inches"),
  8320. },
  8321. {
  8322. name: "Normal",
  8323. height: math.unit(5 + 9 / 12, "feet"),
  8324. default: true
  8325. },
  8326. {
  8327. name: "Macro",
  8328. height: math.unit(800, "feet")
  8329. },
  8330. {
  8331. name: "Megamacro",
  8332. height: math.unit(25, "miles")
  8333. }
  8334. ]
  8335. ))
  8336. characterMakers.push(() => makeCharacter(
  8337. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8338. {
  8339. front: {
  8340. height: math.unit(6, "feet"),
  8341. weight: math.unit(200, "lbs"),
  8342. name: "Front",
  8343. image: {
  8344. source: "./media/characters/chari-gal/front.svg",
  8345. extra: 1568 / 1385,
  8346. bottom: 0.047
  8347. }
  8348. },
  8349. gigantamax: {
  8350. height: math.unit(6 * 16, "feet"),
  8351. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8352. name: "Gigantamax",
  8353. image: {
  8354. source: "./media/characters/chari-gal/gigantamax.svg",
  8355. extra: 1124 / 888,
  8356. bottom: 0.03
  8357. }
  8358. },
  8359. },
  8360. [
  8361. {
  8362. name: "Normal",
  8363. height: math.unit(5 + 7 / 12, "feet")
  8364. },
  8365. {
  8366. name: "Macro",
  8367. height: math.unit(200, "feet"),
  8368. default: true
  8369. }
  8370. ]
  8371. ))
  8372. characterMakers.push(() => makeCharacter(
  8373. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8374. {
  8375. front: {
  8376. height: math.unit(6, "feet"),
  8377. weight: math.unit(150, "lbs"),
  8378. name: "Front",
  8379. image: {
  8380. source: "./media/characters/nova/front.svg",
  8381. extra: 5000 / 4722,
  8382. bottom: 0.02
  8383. }
  8384. }
  8385. },
  8386. [
  8387. {
  8388. name: "Micro-",
  8389. height: math.unit(0.8, "inches")
  8390. },
  8391. {
  8392. name: "Micro",
  8393. height: math.unit(2, "inches"),
  8394. default: true
  8395. },
  8396. ]
  8397. ))
  8398. characterMakers.push(() => makeCharacter(
  8399. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8400. {
  8401. front: {
  8402. height: math.unit(3 + 1 / 12, "feet"),
  8403. weight: math.unit(21.7, "lbs"),
  8404. name: "Front",
  8405. image: {
  8406. source: "./media/characters/argent/front.svg",
  8407. extra: 1471 / 1331,
  8408. bottom: 100.8 / 1575.5
  8409. }
  8410. }
  8411. },
  8412. [
  8413. {
  8414. name: "Micro",
  8415. height: math.unit(2, "inches")
  8416. },
  8417. {
  8418. name: "Normal",
  8419. height: math.unit(3 + 1 / 12, "feet"),
  8420. default: true
  8421. },
  8422. {
  8423. name: "Macro",
  8424. height: math.unit(120, "feet")
  8425. },
  8426. ]
  8427. ))
  8428. characterMakers.push(() => makeCharacter(
  8429. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8430. {
  8431. lamp: {
  8432. height: math.unit(7 * 1559 / 989, "feet"),
  8433. name: "Magic Lamp",
  8434. image: {
  8435. source: "./media/characters/mira-al-cul/lamp.svg",
  8436. extra: 1617 / 1559
  8437. }
  8438. },
  8439. front: {
  8440. height: math.unit(7, "feet"),
  8441. name: "Front",
  8442. image: {
  8443. source: "./media/characters/mira-al-cul/front.svg",
  8444. extra: 1044 / 990
  8445. }
  8446. },
  8447. },
  8448. [
  8449. {
  8450. name: "Heavily Restricted",
  8451. height: math.unit(7 * 1559 / 989, "feet")
  8452. },
  8453. {
  8454. name: "Freshly Freed",
  8455. height: math.unit(50 * 1559 / 989, "feet")
  8456. },
  8457. {
  8458. name: "World Encompassing",
  8459. height: math.unit(10000 * 1559 / 989, "miles")
  8460. },
  8461. {
  8462. name: "Galactic",
  8463. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8464. },
  8465. {
  8466. name: "Palmed Universe",
  8467. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8468. default: true
  8469. },
  8470. {
  8471. name: "Multiversal Matriarch",
  8472. height: math.unit(8.87e10, "yottameters")
  8473. },
  8474. {
  8475. name: "Void Mother",
  8476. height: math.unit(3.14e110, "yottaparsecs")
  8477. },
  8478. {
  8479. name: "Toying with Transcendence",
  8480. height: math.unit(1e307, "meters")
  8481. },
  8482. ]
  8483. ))
  8484. characterMakers.push(() => makeCharacter(
  8485. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8486. {
  8487. front: {
  8488. height: math.unit(17 + 1 / 12, "feet"),
  8489. weight: math.unit(476.2 * 5, "lbs"),
  8490. name: "Front",
  8491. image: {
  8492. source: "./media/characters/kuro-shi-uchū/front.svg",
  8493. extra: 2329 / 1835,
  8494. bottom: 0.02
  8495. }
  8496. },
  8497. },
  8498. [
  8499. {
  8500. name: "Micro",
  8501. height: math.unit(2, "inches")
  8502. },
  8503. {
  8504. name: "Normal",
  8505. height: math.unit(12, "meters")
  8506. },
  8507. {
  8508. name: "Planetary",
  8509. height: math.unit(0.00929, "AU"),
  8510. default: true
  8511. },
  8512. {
  8513. name: "Universal",
  8514. height: math.unit(20, "gigaparsecs")
  8515. },
  8516. ]
  8517. ))
  8518. characterMakers.push(() => makeCharacter(
  8519. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8520. {
  8521. front: {
  8522. height: math.unit(5 + 2 / 12, "feet"),
  8523. weight: math.unit(120, "lbs"),
  8524. name: "Front",
  8525. image: {
  8526. source: "./media/characters/katherine/front.svg",
  8527. extra: 2075 / 1969
  8528. }
  8529. },
  8530. dress: {
  8531. height: math.unit(5 + 2 / 12, "feet"),
  8532. weight: math.unit(120, "lbs"),
  8533. name: "Dress",
  8534. image: {
  8535. source: "./media/characters/katherine/dress.svg",
  8536. extra: 2258 / 2064
  8537. }
  8538. },
  8539. },
  8540. [
  8541. {
  8542. name: "Micro",
  8543. height: math.unit(1, "inches"),
  8544. default: true
  8545. },
  8546. {
  8547. name: "Normal",
  8548. height: math.unit(5 + 2 / 12, "feet")
  8549. },
  8550. {
  8551. name: "Macro",
  8552. height: math.unit(100, "meters")
  8553. },
  8554. {
  8555. name: "Megamacro",
  8556. height: math.unit(80, "miles")
  8557. },
  8558. ]
  8559. ))
  8560. characterMakers.push(() => makeCharacter(
  8561. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8562. {
  8563. front: {
  8564. height: math.unit(7 + 8 / 12, "feet"),
  8565. weight: math.unit(250, "lbs"),
  8566. name: "Front",
  8567. image: {
  8568. source: "./media/characters/yevis/front.svg",
  8569. extra: 1938 / 1755
  8570. }
  8571. }
  8572. },
  8573. [
  8574. {
  8575. name: "Mortal",
  8576. height: math.unit(7 + 8 / 12, "feet")
  8577. },
  8578. {
  8579. name: "Battle",
  8580. height: math.unit(25 + 11 / 12, "feet")
  8581. },
  8582. {
  8583. name: "Wrath",
  8584. height: math.unit(1654 + 11 / 12, "feet")
  8585. },
  8586. {
  8587. name: "Planet Destroyer",
  8588. height: math.unit(12000, "miles")
  8589. },
  8590. {
  8591. name: "Galaxy Conqueror",
  8592. height: math.unit(1.45, "zettameters"),
  8593. default: true
  8594. },
  8595. {
  8596. name: "Universal War",
  8597. height: math.unit(184, "gigaparsecs")
  8598. },
  8599. {
  8600. name: "Eternity War",
  8601. height: math.unit(1.98e55, "yottaparsecs")
  8602. },
  8603. ]
  8604. ))
  8605. characterMakers.push(() => makeCharacter(
  8606. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8607. {
  8608. front: {
  8609. height: math.unit(5 + 8 / 12, "feet"),
  8610. weight: math.unit(63, "kg"),
  8611. name: "Front",
  8612. image: {
  8613. source: "./media/characters/xavier/front.svg",
  8614. extra: 944 / 883
  8615. }
  8616. },
  8617. frontStretch: {
  8618. height: math.unit(5 + 8 / 12, "feet"),
  8619. weight: math.unit(63, "kg"),
  8620. name: "Stretching",
  8621. image: {
  8622. source: "./media/characters/xavier/front-stretch.svg",
  8623. extra: 962 / 820
  8624. }
  8625. },
  8626. },
  8627. [
  8628. {
  8629. name: "Normal",
  8630. height: math.unit(5 + 8 / 12, "feet")
  8631. },
  8632. {
  8633. name: "Macro",
  8634. height: math.unit(100, "meters"),
  8635. default: true
  8636. },
  8637. {
  8638. name: "McLargeHuge",
  8639. height: math.unit(10, "miles")
  8640. },
  8641. ]
  8642. ))
  8643. characterMakers.push(() => makeCharacter(
  8644. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8645. {
  8646. front: {
  8647. height: math.unit(5 + 5 / 12, "feet"),
  8648. weight: math.unit(150, "lb"),
  8649. name: "Front",
  8650. image: {
  8651. source: "./media/characters/joshii/front.svg",
  8652. extra: 765 / 653,
  8653. bottom: 51 / 816
  8654. }
  8655. },
  8656. foot: {
  8657. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8658. name: "Foot",
  8659. image: {
  8660. source: "./media/characters/joshii/foot.svg"
  8661. }
  8662. },
  8663. },
  8664. [
  8665. {
  8666. name: "Micro",
  8667. height: math.unit(2, "inches"),
  8668. default: true
  8669. },
  8670. {
  8671. name: "Normal",
  8672. height: math.unit(5 + 5 / 12, "feet")
  8673. },
  8674. {
  8675. name: "Macro",
  8676. height: math.unit(785, "feet")
  8677. },
  8678. {
  8679. name: "Megamacro",
  8680. height: math.unit(24.5, "miles")
  8681. },
  8682. ]
  8683. ))
  8684. characterMakers.push(() => makeCharacter(
  8685. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8686. {
  8687. front: {
  8688. height: math.unit(6, "feet"),
  8689. weight: math.unit(150, "lb"),
  8690. name: "Front",
  8691. image: {
  8692. source: "./media/characters/goddess-elizabeth/front.svg",
  8693. extra: 1800 / 1525,
  8694. bottom: 0.005
  8695. }
  8696. },
  8697. foot: {
  8698. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8699. name: "Foot",
  8700. image: {
  8701. source: "./media/characters/goddess-elizabeth/foot.svg"
  8702. }
  8703. },
  8704. mouth: {
  8705. height: math.unit(6, "feet"),
  8706. name: "Mouth",
  8707. image: {
  8708. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8709. }
  8710. },
  8711. },
  8712. [
  8713. {
  8714. name: "Micro",
  8715. height: math.unit(12, "feet")
  8716. },
  8717. {
  8718. name: "Normal",
  8719. height: math.unit(80, "miles"),
  8720. default: true
  8721. },
  8722. {
  8723. name: "Macro",
  8724. height: math.unit(15000, "parsecs")
  8725. },
  8726. ]
  8727. ))
  8728. characterMakers.push(() => makeCharacter(
  8729. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8730. {
  8731. front: {
  8732. height: math.unit(5 + 9 / 12, "feet"),
  8733. weight: math.unit(144, "lb"),
  8734. name: "Front",
  8735. image: {
  8736. source: "./media/characters/kara/front.svg"
  8737. }
  8738. },
  8739. feet: {
  8740. height: math.unit(6 / 6.765, "feet"),
  8741. name: "Kara's Feet",
  8742. rename: true,
  8743. image: {
  8744. source: "./media/characters/kara/feet.svg"
  8745. }
  8746. },
  8747. },
  8748. [
  8749. {
  8750. name: "Normal",
  8751. height: math.unit(5 + 9 / 12, "feet")
  8752. },
  8753. {
  8754. name: "Macro",
  8755. height: math.unit(174, "feet"),
  8756. default: true
  8757. },
  8758. ]
  8759. ))
  8760. characterMakers.push(() => makeCharacter(
  8761. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8762. {
  8763. front: {
  8764. height: math.unit(18, "feet"),
  8765. weight: math.unit(4050, "lb"),
  8766. name: "Front",
  8767. image: {
  8768. source: "./media/characters/tyrone/front.svg",
  8769. extra: 2405 / 2270,
  8770. bottom: 182 / 2587
  8771. }
  8772. },
  8773. },
  8774. [
  8775. {
  8776. name: "Normal",
  8777. height: math.unit(18, "feet"),
  8778. default: true
  8779. },
  8780. {
  8781. name: "Macro",
  8782. height: math.unit(300, "feet")
  8783. },
  8784. {
  8785. name: "Megamacro",
  8786. height: math.unit(15, "km")
  8787. },
  8788. {
  8789. name: "Gigamacro",
  8790. height: math.unit(500, "km")
  8791. },
  8792. {
  8793. name: "Teramacro",
  8794. height: math.unit(0.5, "gigameters")
  8795. },
  8796. {
  8797. name: "Omnimacro",
  8798. height: math.unit(1e252, "yottauniverse")
  8799. },
  8800. ]
  8801. ))
  8802. characterMakers.push(() => makeCharacter(
  8803. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8804. {
  8805. front: {
  8806. height: math.unit(7 + 8 / 12, "feet"),
  8807. weight: math.unit(120, "lb"),
  8808. name: "Front",
  8809. image: {
  8810. source: "./media/characters/danny/front.svg",
  8811. extra: 1490 / 1350
  8812. }
  8813. },
  8814. back: {
  8815. height: math.unit(7 + 8 / 12, "feet"),
  8816. weight: math.unit(120, "lb"),
  8817. name: "Back",
  8818. image: {
  8819. source: "./media/characters/danny/back.svg",
  8820. extra: 1490 / 1350
  8821. }
  8822. },
  8823. },
  8824. [
  8825. {
  8826. name: "Normal",
  8827. height: math.unit(7 + 8 / 12, "feet"),
  8828. default: true
  8829. },
  8830. ]
  8831. ))
  8832. characterMakers.push(() => makeCharacter(
  8833. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8834. {
  8835. front: {
  8836. height: math.unit(3.5, "inches"),
  8837. weight: math.unit(19, "grams"),
  8838. name: "Front",
  8839. image: {
  8840. source: "./media/characters/mallow/front.svg",
  8841. extra: 471 / 431
  8842. }
  8843. },
  8844. back: {
  8845. height: math.unit(3.5, "inches"),
  8846. weight: math.unit(19, "grams"),
  8847. name: "Back",
  8848. image: {
  8849. source: "./media/characters/mallow/back.svg",
  8850. extra: 471 / 431
  8851. }
  8852. },
  8853. },
  8854. [
  8855. {
  8856. name: "Normal",
  8857. height: math.unit(3.5, "inches"),
  8858. default: true
  8859. },
  8860. ]
  8861. ))
  8862. characterMakers.push(() => makeCharacter(
  8863. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8864. {
  8865. front: {
  8866. height: math.unit(9, "feet"),
  8867. weight: math.unit(230, "kg"),
  8868. name: "Front",
  8869. image: {
  8870. source: "./media/characters/starry-aqua/front.svg"
  8871. }
  8872. },
  8873. back: {
  8874. height: math.unit(9, "feet"),
  8875. weight: math.unit(230, "kg"),
  8876. name: "Back",
  8877. image: {
  8878. source: "./media/characters/starry-aqua/back.svg"
  8879. }
  8880. },
  8881. hand: {
  8882. height: math.unit(9 * 0.1168, "feet"),
  8883. name: "Hand",
  8884. image: {
  8885. source: "./media/characters/starry-aqua/hand.svg"
  8886. }
  8887. },
  8888. foot: {
  8889. height: math.unit(9 * 0.18, "feet"),
  8890. name: "Foot",
  8891. image: {
  8892. source: "./media/characters/starry-aqua/foot.svg"
  8893. }
  8894. }
  8895. },
  8896. [
  8897. {
  8898. name: "Micro",
  8899. height: math.unit(3, "inches")
  8900. },
  8901. {
  8902. name: "Normal",
  8903. height: math.unit(9, "feet")
  8904. },
  8905. {
  8906. name: "Macro",
  8907. height: math.unit(300, "feet"),
  8908. default: true
  8909. },
  8910. {
  8911. name: "Megamacro",
  8912. height: math.unit(3200, "feet")
  8913. }
  8914. ]
  8915. ))
  8916. characterMakers.push(() => makeCharacter(
  8917. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  8918. {
  8919. front: {
  8920. height: math.unit(15, "feet"),
  8921. weight: math.unit(5026, "lb"),
  8922. name: "Front",
  8923. image: {
  8924. source: "./media/characters/luka-towers/front.svg",
  8925. extra: 1269/1133,
  8926. bottom: 51/1320
  8927. }
  8928. },
  8929. },
  8930. [
  8931. {
  8932. name: "Normal",
  8933. height: math.unit(15, "feet"),
  8934. default: true
  8935. },
  8936. {
  8937. name: "Minimacro",
  8938. height: math.unit(25, "feet")
  8939. },
  8940. {
  8941. name: "Macro",
  8942. height: math.unit(320, "feet")
  8943. },
  8944. {
  8945. name: "Megamacro",
  8946. height: math.unit(35000, "feet")
  8947. },
  8948. {
  8949. name: "Gigamacro",
  8950. height: math.unit(4000, "miles")
  8951. },
  8952. {
  8953. name: "Teramacro",
  8954. height: math.unit(15000, "miles")
  8955. },
  8956. ]
  8957. ))
  8958. characterMakers.push(() => makeCharacter(
  8959. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8960. {
  8961. front: {
  8962. height: math.unit(6, "feet"),
  8963. weight: math.unit(150, "lb"),
  8964. name: "Front",
  8965. image: {
  8966. source: "./media/characters/natalie-nightring/front.svg",
  8967. extra: 1,
  8968. bottom: 0.06
  8969. }
  8970. },
  8971. },
  8972. [
  8973. {
  8974. name: "Uh Oh",
  8975. height: math.unit(0.1, "mm")
  8976. },
  8977. {
  8978. name: "Small",
  8979. height: math.unit(3, "inches")
  8980. },
  8981. {
  8982. name: "Human Scale",
  8983. height: math.unit(6, "feet")
  8984. },
  8985. {
  8986. name: "Librarian",
  8987. height: math.unit(50, "feet"),
  8988. default: true
  8989. },
  8990. {
  8991. name: "Immense",
  8992. height: math.unit(200, "miles")
  8993. },
  8994. ]
  8995. ))
  8996. characterMakers.push(() => makeCharacter(
  8997. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8998. {
  8999. front: {
  9000. height: math.unit(6, "feet"),
  9001. weight: math.unit(180, "lbs"),
  9002. name: "Front",
  9003. image: {
  9004. source: "./media/characters/danni-rosie/front.svg",
  9005. extra: 1260 / 1128,
  9006. bottom: 0.022
  9007. }
  9008. },
  9009. },
  9010. [
  9011. {
  9012. name: "Micro",
  9013. height: math.unit(2, "inches"),
  9014. default: true
  9015. },
  9016. ]
  9017. ))
  9018. characterMakers.push(() => makeCharacter(
  9019. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9020. {
  9021. front: {
  9022. height: math.unit(5 + 9 / 12, "feet"),
  9023. weight: math.unit(220, "lb"),
  9024. name: "Front",
  9025. image: {
  9026. source: "./media/characters/samantha-kruse/front.svg",
  9027. extra: (985 / 935),
  9028. bottom: 0.03
  9029. }
  9030. },
  9031. frontUndressed: {
  9032. height: math.unit(5 + 9 / 12, "feet"),
  9033. weight: math.unit(220, "lb"),
  9034. name: "Front (Undressed)",
  9035. image: {
  9036. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9037. extra: (973 / 923),
  9038. bottom: 0.025
  9039. }
  9040. },
  9041. fat: {
  9042. height: math.unit(5 + 9 / 12, "feet"),
  9043. weight: math.unit(900, "lb"),
  9044. name: "Front (Fat)",
  9045. image: {
  9046. source: "./media/characters/samantha-kruse/fat.svg",
  9047. extra: 2688 / 2561
  9048. }
  9049. },
  9050. },
  9051. [
  9052. {
  9053. name: "Normal",
  9054. height: math.unit(5 + 9 / 12, "feet"),
  9055. default: true
  9056. }
  9057. ]
  9058. ))
  9059. characterMakers.push(() => makeCharacter(
  9060. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9061. {
  9062. back: {
  9063. height: math.unit(5 + 4 / 12, "feet"),
  9064. weight: math.unit(4963, "lb"),
  9065. name: "Back",
  9066. image: {
  9067. source: "./media/characters/amelia-rosie/back.svg",
  9068. extra: 1113 / 963,
  9069. bottom: 0.01
  9070. }
  9071. },
  9072. },
  9073. [
  9074. {
  9075. name: "Level 0",
  9076. height: math.unit(5 + 4 / 12, "feet")
  9077. },
  9078. {
  9079. name: "Level 1",
  9080. height: math.unit(164597, "feet"),
  9081. default: true
  9082. },
  9083. {
  9084. name: "Level 2",
  9085. height: math.unit(956243, "miles")
  9086. },
  9087. {
  9088. name: "Level 3",
  9089. height: math.unit(29421709423, "miles")
  9090. },
  9091. {
  9092. name: "Level 4",
  9093. height: math.unit(154, "lightyears")
  9094. },
  9095. {
  9096. name: "Level 5",
  9097. height: math.unit(4738272, "lightyears")
  9098. },
  9099. {
  9100. name: "Level 6",
  9101. height: math.unit(145787152896, "lightyears")
  9102. },
  9103. ]
  9104. ))
  9105. characterMakers.push(() => makeCharacter(
  9106. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9107. {
  9108. front: {
  9109. height: math.unit(5 + 11 / 12, "feet"),
  9110. weight: math.unit(65, "kg"),
  9111. name: "Front",
  9112. image: {
  9113. source: "./media/characters/rook-kitara/front.svg",
  9114. extra: 1347 / 1274,
  9115. bottom: 0.005
  9116. }
  9117. },
  9118. },
  9119. [
  9120. {
  9121. name: "Totally Unfair",
  9122. height: math.unit(1.8, "mm")
  9123. },
  9124. {
  9125. name: "Lap Rookie",
  9126. height: math.unit(1.4, "feet")
  9127. },
  9128. {
  9129. name: "Normal",
  9130. height: math.unit(5 + 11 / 12, "feet"),
  9131. default: true
  9132. },
  9133. {
  9134. name: "How Did This Happen",
  9135. height: math.unit(80, "miles")
  9136. }
  9137. ]
  9138. ))
  9139. characterMakers.push(() => makeCharacter(
  9140. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9141. {
  9142. front: {
  9143. height: math.unit(7, "feet"),
  9144. weight: math.unit(300, "lb"),
  9145. name: "Front",
  9146. image: {
  9147. source: "./media/characters/pisces/front.svg",
  9148. extra: 2255 / 2115,
  9149. bottom: 0.03
  9150. }
  9151. },
  9152. back: {
  9153. height: math.unit(7, "feet"),
  9154. weight: math.unit(300, "lb"),
  9155. name: "Back",
  9156. image: {
  9157. source: "./media/characters/pisces/back.svg",
  9158. extra: 2146 / 2055,
  9159. bottom: 0.04
  9160. }
  9161. },
  9162. },
  9163. [
  9164. {
  9165. name: "Normal",
  9166. height: math.unit(7, "feet"),
  9167. default: true
  9168. },
  9169. {
  9170. name: "Swimming Pool",
  9171. height: math.unit(12.2, "meters")
  9172. },
  9173. {
  9174. name: "Olympic Swimming Pool",
  9175. height: math.unit(56.3, "meters")
  9176. },
  9177. {
  9178. name: "Lake Superior",
  9179. height: math.unit(93900, "meters")
  9180. },
  9181. {
  9182. name: "Mediterranean Sea",
  9183. height: math.unit(644457, "meters")
  9184. },
  9185. {
  9186. name: "World's Oceans",
  9187. height: math.unit(4567491, "meters")
  9188. },
  9189. ]
  9190. ))
  9191. characterMakers.push(() => makeCharacter(
  9192. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9193. {
  9194. front: {
  9195. height: math.unit(2.3, "meters"),
  9196. weight: math.unit(120, "kg"),
  9197. name: "Front",
  9198. image: {
  9199. source: "./media/characters/zelas/front.svg"
  9200. }
  9201. },
  9202. side: {
  9203. height: math.unit(2.3, "meters"),
  9204. weight: math.unit(120, "kg"),
  9205. name: "Side",
  9206. image: {
  9207. source: "./media/characters/zelas/side.svg"
  9208. }
  9209. },
  9210. back: {
  9211. height: math.unit(2.3, "meters"),
  9212. weight: math.unit(120, "kg"),
  9213. name: "Back",
  9214. image: {
  9215. source: "./media/characters/zelas/back.svg"
  9216. }
  9217. },
  9218. foot: {
  9219. height: math.unit(1.116, "feet"),
  9220. name: "Foot",
  9221. image: {
  9222. source: "./media/characters/zelas/foot.svg"
  9223. }
  9224. },
  9225. },
  9226. [
  9227. {
  9228. name: "Normal",
  9229. height: math.unit(2.3, "meters")
  9230. },
  9231. {
  9232. name: "Macro",
  9233. height: math.unit(30, "meters"),
  9234. default: true
  9235. },
  9236. ]
  9237. ))
  9238. characterMakers.push(() => makeCharacter(
  9239. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9240. {
  9241. front: {
  9242. height: math.unit(1, "inch"),
  9243. weight: math.unit(0.21, "grams"),
  9244. name: "Front",
  9245. image: {
  9246. source: "./media/characters/talbot/front.svg",
  9247. extra: 594 / 544
  9248. }
  9249. },
  9250. },
  9251. [
  9252. {
  9253. name: "Micro",
  9254. height: math.unit(1, "inch"),
  9255. default: true
  9256. },
  9257. ]
  9258. ))
  9259. characterMakers.push(() => makeCharacter(
  9260. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9261. {
  9262. front: {
  9263. height: math.unit(3 + 3 / 12, "feet"),
  9264. weight: math.unit(51.8, "lb"),
  9265. name: "Front",
  9266. image: {
  9267. source: "./media/characters/fliss/front.svg",
  9268. extra: 840 / 640
  9269. }
  9270. },
  9271. },
  9272. [
  9273. {
  9274. name: "Teeny Tiny",
  9275. height: math.unit(1, "mm")
  9276. },
  9277. {
  9278. name: "Small",
  9279. height: math.unit(1, "inch"),
  9280. default: true
  9281. },
  9282. {
  9283. name: "Standard Sylveon",
  9284. height: math.unit(3 + 3 / 12, "feet")
  9285. },
  9286. {
  9287. name: "Large Nuisance",
  9288. height: math.unit(33, "feet")
  9289. },
  9290. {
  9291. name: "City Filler",
  9292. height: math.unit(3000, "feet")
  9293. },
  9294. {
  9295. name: "New Horizon",
  9296. height: math.unit(6000, "miles")
  9297. },
  9298. ]
  9299. ))
  9300. characterMakers.push(() => makeCharacter(
  9301. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9302. {
  9303. front: {
  9304. height: math.unit(5, "cm"),
  9305. weight: math.unit(1.94, "g"),
  9306. name: "Front",
  9307. image: {
  9308. source: "./media/characters/fleta/front.svg",
  9309. extra: 835 / 803
  9310. }
  9311. },
  9312. back: {
  9313. height: math.unit(5, "cm"),
  9314. weight: math.unit(1.94, "g"),
  9315. name: "Back",
  9316. image: {
  9317. source: "./media/characters/fleta/back.svg",
  9318. extra: 835 / 803
  9319. }
  9320. },
  9321. },
  9322. [
  9323. {
  9324. name: "Micro",
  9325. height: math.unit(5, "cm"),
  9326. default: true
  9327. },
  9328. ]
  9329. ))
  9330. characterMakers.push(() => makeCharacter(
  9331. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9332. {
  9333. front: {
  9334. height: math.unit(6, "feet"),
  9335. weight: math.unit(225, "lb"),
  9336. name: "Front",
  9337. image: {
  9338. source: "./media/characters/dominic/front.svg",
  9339. extra: 1770 / 1620,
  9340. bottom: 0.025
  9341. }
  9342. },
  9343. back: {
  9344. height: math.unit(6, "feet"),
  9345. weight: math.unit(225, "lb"),
  9346. name: "Back",
  9347. image: {
  9348. source: "./media/characters/dominic/back.svg",
  9349. extra: 1745 / 1620,
  9350. bottom: 0.065
  9351. }
  9352. },
  9353. },
  9354. [
  9355. {
  9356. name: "Nano",
  9357. height: math.unit(0.1, "mm")
  9358. },
  9359. {
  9360. name: "Micro-",
  9361. height: math.unit(1, "mm")
  9362. },
  9363. {
  9364. name: "Micro",
  9365. height: math.unit(4, "inches")
  9366. },
  9367. {
  9368. name: "Normal",
  9369. height: math.unit(6 + 4 / 12, "feet"),
  9370. default: true
  9371. },
  9372. {
  9373. name: "Macro",
  9374. height: math.unit(115, "feet")
  9375. },
  9376. {
  9377. name: "Macro+",
  9378. height: math.unit(955, "feet")
  9379. },
  9380. {
  9381. name: "Megamacro",
  9382. height: math.unit(8990, "feet")
  9383. },
  9384. {
  9385. name: "Gigmacro",
  9386. height: math.unit(9310, "miles")
  9387. },
  9388. {
  9389. name: "Teramacro",
  9390. height: math.unit(1567005010, "miles")
  9391. },
  9392. {
  9393. name: "Examacro",
  9394. height: math.unit(1425, "parsecs")
  9395. },
  9396. ]
  9397. ))
  9398. characterMakers.push(() => makeCharacter(
  9399. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9400. {
  9401. front: {
  9402. height: math.unit(400, "feet"),
  9403. weight: math.unit(44444444, "lb"),
  9404. name: "Front",
  9405. image: {
  9406. source: "./media/characters/major-colonel/front.svg"
  9407. }
  9408. },
  9409. back: {
  9410. height: math.unit(400, "feet"),
  9411. weight: math.unit(44444444, "lb"),
  9412. name: "Back",
  9413. image: {
  9414. source: "./media/characters/major-colonel/back.svg"
  9415. }
  9416. },
  9417. },
  9418. [
  9419. {
  9420. name: "Macro",
  9421. height: math.unit(400, "feet"),
  9422. default: true
  9423. },
  9424. ]
  9425. ))
  9426. characterMakers.push(() => makeCharacter(
  9427. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9428. {
  9429. catFront: {
  9430. height: math.unit(6, "feet"),
  9431. weight: math.unit(120, "lb"),
  9432. name: "Front (Cat Side)",
  9433. image: {
  9434. source: "./media/characters/axel-lycan/cat-front.svg",
  9435. extra: 430 / 402,
  9436. bottom: 43 / 472.35
  9437. }
  9438. },
  9439. catBack: {
  9440. height: math.unit(6, "feet"),
  9441. weight: math.unit(120, "lb"),
  9442. name: "Back (Cat Side)",
  9443. image: {
  9444. source: "./media/characters/axel-lycan/cat-back.svg",
  9445. extra: 447 / 419,
  9446. bottom: 23.3 / 469
  9447. }
  9448. },
  9449. wolfFront: {
  9450. height: math.unit(6, "feet"),
  9451. weight: math.unit(120, "lb"),
  9452. name: "Front (Wolf Side)",
  9453. image: {
  9454. source: "./media/characters/axel-lycan/wolf-front.svg",
  9455. extra: 485 / 456,
  9456. bottom: 19 / 504
  9457. }
  9458. },
  9459. wolfBack: {
  9460. height: math.unit(6, "feet"),
  9461. weight: math.unit(120, "lb"),
  9462. name: "Back (Wolf Side)",
  9463. image: {
  9464. source: "./media/characters/axel-lycan/wolf-back.svg",
  9465. extra: 475 / 438,
  9466. bottom: 39.2 / 514
  9467. }
  9468. },
  9469. },
  9470. [
  9471. {
  9472. name: "Macro",
  9473. height: math.unit(1, "km"),
  9474. default: true
  9475. },
  9476. ]
  9477. ))
  9478. characterMakers.push(() => makeCharacter(
  9479. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9480. {
  9481. front: {
  9482. height: math.unit(5 + 9 / 12, "feet"),
  9483. weight: math.unit(175, "lb"),
  9484. name: "Front",
  9485. image: {
  9486. source: "./media/characters/vanrel-hyena/front.svg",
  9487. extra: 1086 / 1010,
  9488. bottom: 0.04
  9489. }
  9490. },
  9491. },
  9492. [
  9493. {
  9494. name: "Normal",
  9495. height: math.unit(5 + 9 / 12, "feet"),
  9496. default: true
  9497. },
  9498. ]
  9499. ))
  9500. characterMakers.push(() => makeCharacter(
  9501. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9502. {
  9503. front: {
  9504. height: math.unit(6, "feet"),
  9505. weight: math.unit(103, "lb"),
  9506. name: "Front",
  9507. image: {
  9508. source: "./media/characters/abbott-absol/front.svg",
  9509. extra: 2010 / 1842
  9510. }
  9511. },
  9512. },
  9513. [
  9514. {
  9515. name: "Megamicro",
  9516. height: math.unit(0.1, "mm")
  9517. },
  9518. {
  9519. name: "Micro",
  9520. height: math.unit(1, "inch")
  9521. },
  9522. {
  9523. name: "Normal",
  9524. height: math.unit(6, "feet"),
  9525. default: true
  9526. },
  9527. ]
  9528. ))
  9529. characterMakers.push(() => makeCharacter(
  9530. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9531. {
  9532. front: {
  9533. height: math.unit(6, "feet"),
  9534. weight: math.unit(264, "lb"),
  9535. name: "Front",
  9536. image: {
  9537. source: "./media/characters/hector/front.svg",
  9538. extra: 2280 / 2130,
  9539. bottom: 0.07
  9540. }
  9541. },
  9542. },
  9543. [
  9544. {
  9545. name: "Normal",
  9546. height: math.unit(12.25, "foot"),
  9547. default: true
  9548. },
  9549. {
  9550. name: "Macro",
  9551. height: math.unit(160, "feet")
  9552. },
  9553. ]
  9554. ))
  9555. characterMakers.push(() => makeCharacter(
  9556. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9557. {
  9558. front: {
  9559. height: math.unit(6, "feet"),
  9560. weight: math.unit(150, "lb"),
  9561. name: "Front",
  9562. image: {
  9563. source: "./media/characters/sal/front.svg",
  9564. extra: 1846 / 1699,
  9565. bottom: 0.04
  9566. }
  9567. },
  9568. },
  9569. [
  9570. {
  9571. name: "Megamacro",
  9572. height: math.unit(10, "miles"),
  9573. default: true
  9574. },
  9575. ]
  9576. ))
  9577. characterMakers.push(() => makeCharacter(
  9578. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9579. {
  9580. front: {
  9581. height: math.unit(3, "meters"),
  9582. weight: math.unit(450, "kg"),
  9583. name: "front",
  9584. image: {
  9585. source: "./media/characters/ranger/front.svg",
  9586. extra: 2401 / 2243,
  9587. bottom: 0.05
  9588. }
  9589. },
  9590. },
  9591. [
  9592. {
  9593. name: "Normal",
  9594. height: math.unit(3, "meters"),
  9595. default: true
  9596. },
  9597. ]
  9598. ))
  9599. characterMakers.push(() => makeCharacter(
  9600. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9601. {
  9602. front: {
  9603. height: math.unit(14, "feet"),
  9604. weight: math.unit(800, "kg"),
  9605. name: "Front",
  9606. image: {
  9607. source: "./media/characters/theresa/front.svg",
  9608. extra: 3575 / 3346,
  9609. bottom: 0.03
  9610. }
  9611. },
  9612. },
  9613. [
  9614. {
  9615. name: "Normal",
  9616. height: math.unit(14, "feet"),
  9617. default: true
  9618. },
  9619. ]
  9620. ))
  9621. characterMakers.push(() => makeCharacter(
  9622. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9623. {
  9624. front: {
  9625. height: math.unit(6, "feet"),
  9626. weight: math.unit(3, "kg"),
  9627. name: "Front",
  9628. image: {
  9629. source: "./media/characters/ine/front.svg",
  9630. extra: 678 / 539,
  9631. bottom: 0.023
  9632. }
  9633. },
  9634. },
  9635. [
  9636. {
  9637. name: "Normal",
  9638. height: math.unit(2.265, "feet"),
  9639. default: true
  9640. },
  9641. ]
  9642. ))
  9643. characterMakers.push(() => makeCharacter(
  9644. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9645. {
  9646. front: {
  9647. height: math.unit(5, "feet"),
  9648. weight: math.unit(30, "kg"),
  9649. name: "Front",
  9650. image: {
  9651. source: "./media/characters/vial/front.svg",
  9652. extra: 1365 / 1277,
  9653. bottom: 0.04
  9654. }
  9655. },
  9656. },
  9657. [
  9658. {
  9659. name: "Normal",
  9660. height: math.unit(5, "feet"),
  9661. default: true
  9662. },
  9663. ]
  9664. ))
  9665. characterMakers.push(() => makeCharacter(
  9666. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9667. {
  9668. side: {
  9669. height: math.unit(3.4, "meters"),
  9670. weight: math.unit(1000, "lb"),
  9671. name: "Side",
  9672. image: {
  9673. source: "./media/characters/rovoska/side.svg",
  9674. extra: 4403 / 1515
  9675. }
  9676. },
  9677. },
  9678. [
  9679. {
  9680. name: "Normal",
  9681. height: math.unit(3.4, "meters"),
  9682. default: true
  9683. },
  9684. ]
  9685. ))
  9686. characterMakers.push(() => makeCharacter(
  9687. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9688. {
  9689. front: {
  9690. height: math.unit(8, "feet"),
  9691. weight: math.unit(315, "lb"),
  9692. name: "Front",
  9693. image: {
  9694. source: "./media/characters/gunner-rotthbauer/front.svg"
  9695. }
  9696. },
  9697. back: {
  9698. height: math.unit(8, "feet"),
  9699. weight: math.unit(315, "lb"),
  9700. name: "Back",
  9701. image: {
  9702. source: "./media/characters/gunner-rotthbauer/back.svg"
  9703. }
  9704. },
  9705. },
  9706. [
  9707. {
  9708. name: "Micro",
  9709. height: math.unit(3.5, "inches")
  9710. },
  9711. {
  9712. name: "Normal",
  9713. height: math.unit(8, "feet"),
  9714. default: true
  9715. },
  9716. {
  9717. name: "Macro",
  9718. height: math.unit(250, "feet")
  9719. },
  9720. {
  9721. name: "Megamacro",
  9722. height: math.unit(1, "AU")
  9723. },
  9724. ]
  9725. ))
  9726. characterMakers.push(() => makeCharacter(
  9727. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9728. {
  9729. front: {
  9730. height: math.unit(5 + 5 / 12, "feet"),
  9731. weight: math.unit(140, "lb"),
  9732. name: "Front",
  9733. image: {
  9734. source: "./media/characters/allatia/front.svg",
  9735. extra: 1227 / 1180,
  9736. bottom: 0.027
  9737. }
  9738. },
  9739. },
  9740. [
  9741. {
  9742. name: "Normal",
  9743. height: math.unit(5 + 5 / 12, "feet")
  9744. },
  9745. {
  9746. name: "Macro",
  9747. height: math.unit(250, "feet"),
  9748. default: true
  9749. },
  9750. {
  9751. name: "Megamacro",
  9752. height: math.unit(8, "miles")
  9753. }
  9754. ]
  9755. ))
  9756. characterMakers.push(() => makeCharacter(
  9757. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9758. {
  9759. front: {
  9760. height: math.unit(6, "feet"),
  9761. weight: math.unit(120, "lb"),
  9762. name: "Front",
  9763. image: {
  9764. source: "./media/characters/tene/front.svg",
  9765. extra: 1728 / 1578,
  9766. bottom: 0.022
  9767. }
  9768. },
  9769. stomping: {
  9770. height: math.unit(2.025, "meters"),
  9771. weight: math.unit(120, "lb"),
  9772. name: "Stomping",
  9773. image: {
  9774. source: "./media/characters/tene/stomping.svg",
  9775. extra: 938 / 873,
  9776. bottom: 0.01
  9777. }
  9778. },
  9779. sitting: {
  9780. height: math.unit(1, "meter"),
  9781. weight: math.unit(120, "lb"),
  9782. name: "Sitting",
  9783. image: {
  9784. source: "./media/characters/tene/sitting.svg",
  9785. extra: 437 / 415,
  9786. bottom: 0.1
  9787. }
  9788. },
  9789. feral: {
  9790. height: math.unit(3.9, "feet"),
  9791. weight: math.unit(250, "lb"),
  9792. name: "Feral",
  9793. image: {
  9794. source: "./media/characters/tene/feral.svg",
  9795. extra: 717 / 458,
  9796. bottom: 0.179
  9797. }
  9798. },
  9799. },
  9800. [
  9801. {
  9802. name: "Normal",
  9803. height: math.unit(6, "feet")
  9804. },
  9805. {
  9806. name: "Macro",
  9807. height: math.unit(300, "feet"),
  9808. default: true
  9809. },
  9810. {
  9811. name: "Megamacro",
  9812. height: math.unit(5, "miles")
  9813. },
  9814. ]
  9815. ))
  9816. characterMakers.push(() => makeCharacter(
  9817. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9818. {
  9819. side: {
  9820. height: math.unit(6, "feet"),
  9821. name: "Side",
  9822. image: {
  9823. source: "./media/characters/evander/side.svg",
  9824. extra: 877 / 477
  9825. }
  9826. },
  9827. },
  9828. [
  9829. {
  9830. name: "Normal",
  9831. height: math.unit(0.83, "meters"),
  9832. default: true
  9833. },
  9834. ]
  9835. ))
  9836. characterMakers.push(() => makeCharacter(
  9837. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9838. {
  9839. front: {
  9840. height: math.unit(12, "feet"),
  9841. weight: math.unit(1000, "lb"),
  9842. name: "Front",
  9843. image: {
  9844. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9845. extra: 1762 / 1611
  9846. }
  9847. },
  9848. back: {
  9849. height: math.unit(12, "feet"),
  9850. weight: math.unit(1000, "lb"),
  9851. name: "Back",
  9852. image: {
  9853. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9854. extra: 1762 / 1611
  9855. }
  9856. },
  9857. },
  9858. [
  9859. {
  9860. name: "Normal",
  9861. height: math.unit(12, "feet"),
  9862. default: true
  9863. },
  9864. {
  9865. name: "Kaiju",
  9866. height: math.unit(150, "feet")
  9867. },
  9868. ]
  9869. ))
  9870. characterMakers.push(() => makeCharacter(
  9871. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9872. {
  9873. front: {
  9874. height: math.unit(6, "feet"),
  9875. weight: math.unit(150, "lb"),
  9876. name: "Front",
  9877. image: {
  9878. source: "./media/characters/zero-alurus/front.svg"
  9879. }
  9880. },
  9881. back: {
  9882. height: math.unit(6, "feet"),
  9883. weight: math.unit(150, "lb"),
  9884. name: "Back",
  9885. image: {
  9886. source: "./media/characters/zero-alurus/back.svg"
  9887. }
  9888. },
  9889. },
  9890. [
  9891. {
  9892. name: "Normal",
  9893. height: math.unit(5 + 10 / 12, "feet")
  9894. },
  9895. {
  9896. name: "Macro",
  9897. height: math.unit(60, "feet"),
  9898. default: true
  9899. },
  9900. {
  9901. name: "Macro+",
  9902. height: math.unit(450, "feet")
  9903. },
  9904. ]
  9905. ))
  9906. characterMakers.push(() => makeCharacter(
  9907. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9908. {
  9909. front: {
  9910. height: math.unit(6, "feet"),
  9911. weight: math.unit(200, "lb"),
  9912. name: "Front",
  9913. image: {
  9914. source: "./media/characters/mega-shi/front.svg",
  9915. extra: 1279 / 1250,
  9916. bottom: 0.02
  9917. }
  9918. },
  9919. back: {
  9920. height: math.unit(6, "feet"),
  9921. weight: math.unit(200, "lb"),
  9922. name: "Back",
  9923. image: {
  9924. source: "./media/characters/mega-shi/back.svg",
  9925. extra: 1279 / 1250,
  9926. bottom: 0.02
  9927. }
  9928. },
  9929. },
  9930. [
  9931. {
  9932. name: "Micro",
  9933. height: math.unit(16 + 6 / 12, "feet")
  9934. },
  9935. {
  9936. name: "Third Dimension",
  9937. height: math.unit(40, "meters")
  9938. },
  9939. {
  9940. name: "Normal",
  9941. height: math.unit(660, "feet"),
  9942. default: true
  9943. },
  9944. {
  9945. name: "Megamacro",
  9946. height: math.unit(10, "miles")
  9947. },
  9948. {
  9949. name: "Planetary Launch",
  9950. height: math.unit(500, "miles")
  9951. },
  9952. {
  9953. name: "Interstellar",
  9954. height: math.unit(1e9, "miles")
  9955. },
  9956. {
  9957. name: "Leaving the Universe",
  9958. height: math.unit(1, "gigaparsec")
  9959. },
  9960. {
  9961. name: "Travelling Universes",
  9962. height: math.unit(30e15, "parsecs")
  9963. },
  9964. ]
  9965. ))
  9966. characterMakers.push(() => makeCharacter(
  9967. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9968. {
  9969. front: {
  9970. height: math.unit(6, "feet"),
  9971. weight: math.unit(150, "lb"),
  9972. name: "Front",
  9973. image: {
  9974. source: "./media/characters/odyssey/front.svg",
  9975. extra: 1782 / 1582,
  9976. bottom: 0.01
  9977. }
  9978. },
  9979. side: {
  9980. height: math.unit(5.7, "feet"),
  9981. weight: math.unit(140, "lb"),
  9982. name: "Side",
  9983. image: {
  9984. source: "./media/characters/odyssey/side.svg",
  9985. extra: 6462 / 5700
  9986. }
  9987. },
  9988. },
  9989. [
  9990. {
  9991. name: "Normal",
  9992. height: math.unit(5 + 4 / 12, "feet")
  9993. },
  9994. {
  9995. name: "Macro",
  9996. height: math.unit(1, "km")
  9997. },
  9998. {
  9999. name: "Megamacro",
  10000. height: math.unit(3000, "km")
  10001. },
  10002. {
  10003. name: "Gigamacro",
  10004. height: math.unit(1, "AU"),
  10005. default: true
  10006. },
  10007. {
  10008. name: "Omniversal",
  10009. height: math.unit(100e14, "lightyears")
  10010. },
  10011. ]
  10012. ))
  10013. characterMakers.push(() => makeCharacter(
  10014. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10015. {
  10016. front: {
  10017. height: math.unit(6, "feet"),
  10018. weight: math.unit(300, "lb"),
  10019. name: "Front",
  10020. image: {
  10021. source: "./media/characters/mekuto/front.svg",
  10022. extra: 921 / 832,
  10023. bottom: 0.03
  10024. }
  10025. },
  10026. hand: {
  10027. height: math.unit(6 / 10.24, "feet"),
  10028. name: "Hand",
  10029. image: {
  10030. source: "./media/characters/mekuto/hand.svg"
  10031. }
  10032. },
  10033. foot: {
  10034. height: math.unit(6 / 5.05, "feet"),
  10035. name: "Foot",
  10036. image: {
  10037. source: "./media/characters/mekuto/foot.svg"
  10038. }
  10039. },
  10040. },
  10041. [
  10042. {
  10043. name: "Minimicro",
  10044. height: math.unit(0.2, "inches")
  10045. },
  10046. {
  10047. name: "Micro",
  10048. height: math.unit(1.5, "inches")
  10049. },
  10050. {
  10051. name: "Normal",
  10052. height: math.unit(5 + 11 / 12, "feet"),
  10053. default: true
  10054. },
  10055. {
  10056. name: "Minimacro",
  10057. height: math.unit(17 + 9 / 12, "feet")
  10058. },
  10059. {
  10060. name: "Macro",
  10061. height: math.unit(177.5, "feet")
  10062. },
  10063. {
  10064. name: "Megamacro",
  10065. height: math.unit(152, "miles")
  10066. },
  10067. ]
  10068. ))
  10069. characterMakers.push(() => makeCharacter(
  10070. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10071. {
  10072. front: {
  10073. height: math.unit(6.5, "inches"),
  10074. weight: math.unit(13, "oz"),
  10075. name: "Front",
  10076. image: {
  10077. source: "./media/characters/dafydd-tomos/front.svg",
  10078. extra: 2990 / 2603,
  10079. bottom: 0.03
  10080. }
  10081. },
  10082. },
  10083. [
  10084. {
  10085. name: "Micro",
  10086. height: math.unit(6.5, "inches"),
  10087. default: true
  10088. },
  10089. ]
  10090. ))
  10091. characterMakers.push(() => makeCharacter(
  10092. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10093. {
  10094. front: {
  10095. height: math.unit(6, "feet"),
  10096. weight: math.unit(150, "lb"),
  10097. name: "Front",
  10098. image: {
  10099. source: "./media/characters/splinter/front.svg",
  10100. extra: 2990 / 2882,
  10101. bottom: 0.04
  10102. }
  10103. },
  10104. back: {
  10105. height: math.unit(6, "feet"),
  10106. weight: math.unit(150, "lb"),
  10107. name: "Back",
  10108. image: {
  10109. source: "./media/characters/splinter/back.svg",
  10110. extra: 2990 / 2882,
  10111. bottom: 0.04
  10112. }
  10113. },
  10114. },
  10115. [
  10116. {
  10117. name: "Normal",
  10118. height: math.unit(6, "feet")
  10119. },
  10120. {
  10121. name: "Macro",
  10122. height: math.unit(230, "meters"),
  10123. default: true
  10124. },
  10125. ]
  10126. ))
  10127. characterMakers.push(() => makeCharacter(
  10128. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10129. {
  10130. front: {
  10131. height: math.unit(4 + 10 / 12, "feet"),
  10132. weight: math.unit(480, "lb"),
  10133. name: "Front",
  10134. image: {
  10135. source: "./media/characters/snow-gabumon/front.svg",
  10136. extra: 1140 / 963,
  10137. bottom: 0.058
  10138. }
  10139. },
  10140. back: {
  10141. height: math.unit(4 + 10 / 12, "feet"),
  10142. weight: math.unit(480, "lb"),
  10143. name: "Back",
  10144. image: {
  10145. source: "./media/characters/snow-gabumon/back.svg",
  10146. extra: 1115 / 962,
  10147. bottom: 0.041
  10148. }
  10149. },
  10150. frontUndresed: {
  10151. height: math.unit(4 + 10 / 12, "feet"),
  10152. weight: math.unit(480, "lb"),
  10153. name: "Front (Undressed)",
  10154. image: {
  10155. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10156. extra: 1061 / 960,
  10157. bottom: 0.045
  10158. }
  10159. },
  10160. },
  10161. [
  10162. {
  10163. name: "Micro",
  10164. height: math.unit(1, "inch")
  10165. },
  10166. {
  10167. name: "Normal",
  10168. height: math.unit(4 + 10 / 12, "feet"),
  10169. default: true
  10170. },
  10171. {
  10172. name: "Macro",
  10173. height: math.unit(200, "feet")
  10174. },
  10175. {
  10176. name: "Megamacro",
  10177. height: math.unit(120, "miles")
  10178. },
  10179. {
  10180. name: "Gigamacro",
  10181. height: math.unit(9800, "miles")
  10182. },
  10183. ]
  10184. ))
  10185. characterMakers.push(() => makeCharacter(
  10186. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10187. {
  10188. front: {
  10189. height: math.unit(1.7, "meters"),
  10190. weight: math.unit(140, "lb"),
  10191. name: "Front",
  10192. image: {
  10193. source: "./media/characters/moody/front.svg",
  10194. extra: 3226 / 3007,
  10195. bottom: 0.087
  10196. }
  10197. },
  10198. },
  10199. [
  10200. {
  10201. name: "Micro",
  10202. height: math.unit(1, "mm")
  10203. },
  10204. {
  10205. name: "Normal",
  10206. height: math.unit(1.7, "meters"),
  10207. default: true
  10208. },
  10209. {
  10210. name: "Macro",
  10211. height: math.unit(80, "meters")
  10212. },
  10213. {
  10214. name: "Macro+",
  10215. height: math.unit(500, "meters")
  10216. },
  10217. ]
  10218. ))
  10219. characterMakers.push(() => makeCharacter(
  10220. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10221. {
  10222. front: {
  10223. height: math.unit(6, "feet"),
  10224. weight: math.unit(150, "lb"),
  10225. name: "Front",
  10226. image: {
  10227. source: "./media/characters/zyas/front.svg",
  10228. extra: 1180 / 1120,
  10229. bottom: 0.045
  10230. }
  10231. },
  10232. },
  10233. [
  10234. {
  10235. name: "Normal",
  10236. height: math.unit(10, "feet"),
  10237. default: true
  10238. },
  10239. {
  10240. name: "Macro",
  10241. height: math.unit(500, "feet")
  10242. },
  10243. {
  10244. name: "Megamacro",
  10245. height: math.unit(5, "miles")
  10246. },
  10247. {
  10248. name: "Teramacro",
  10249. height: math.unit(150000, "miles")
  10250. },
  10251. ]
  10252. ))
  10253. characterMakers.push(() => makeCharacter(
  10254. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10255. {
  10256. front: {
  10257. height: math.unit(6, "feet"),
  10258. weight: math.unit(150, "lb"),
  10259. name: "Front",
  10260. image: {
  10261. source: "./media/characters/cuon/front.svg",
  10262. extra: 1390 / 1320,
  10263. bottom: 0.008
  10264. }
  10265. },
  10266. },
  10267. [
  10268. {
  10269. name: "Micro",
  10270. height: math.unit(3, "inches")
  10271. },
  10272. {
  10273. name: "Normal",
  10274. height: math.unit(18 + 9 / 12, "feet"),
  10275. default: true
  10276. },
  10277. {
  10278. name: "Macro",
  10279. height: math.unit(360, "feet")
  10280. },
  10281. {
  10282. name: "Megamacro",
  10283. height: math.unit(360, "miles")
  10284. },
  10285. ]
  10286. ))
  10287. characterMakers.push(() => makeCharacter(
  10288. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10289. {
  10290. front: {
  10291. height: math.unit(2.4, "meters"),
  10292. weight: math.unit(70, "kg"),
  10293. name: "Front",
  10294. image: {
  10295. source: "./media/characters/nyanuxk/front.svg",
  10296. extra: 1172 / 1084,
  10297. bottom: 0.065
  10298. }
  10299. },
  10300. side: {
  10301. height: math.unit(2.4, "meters"),
  10302. weight: math.unit(70, "kg"),
  10303. name: "Side",
  10304. image: {
  10305. source: "./media/characters/nyanuxk/side.svg",
  10306. extra: 1190 / 1132,
  10307. bottom: 0.007
  10308. }
  10309. },
  10310. back: {
  10311. height: math.unit(2.4, "meters"),
  10312. weight: math.unit(70, "kg"),
  10313. name: "Back",
  10314. image: {
  10315. source: "./media/characters/nyanuxk/back.svg",
  10316. extra: 1200 / 1141,
  10317. bottom: 0.015
  10318. }
  10319. },
  10320. foot: {
  10321. height: math.unit(0.52, "meters"),
  10322. name: "Foot",
  10323. image: {
  10324. source: "./media/characters/nyanuxk/foot.svg"
  10325. }
  10326. },
  10327. },
  10328. [
  10329. {
  10330. name: "Micro",
  10331. height: math.unit(2, "cm")
  10332. },
  10333. {
  10334. name: "Normal",
  10335. height: math.unit(2.4, "meters"),
  10336. default: true
  10337. },
  10338. {
  10339. name: "Smaller Macro",
  10340. height: math.unit(120, "meters")
  10341. },
  10342. {
  10343. name: "Bigger Macro",
  10344. height: math.unit(1.2, "km")
  10345. },
  10346. {
  10347. name: "Megamacro",
  10348. height: math.unit(15, "kilometers")
  10349. },
  10350. {
  10351. name: "Gigamacro",
  10352. height: math.unit(2000, "km")
  10353. },
  10354. {
  10355. name: "Teramacro",
  10356. height: math.unit(500000, "km")
  10357. },
  10358. ]
  10359. ))
  10360. characterMakers.push(() => makeCharacter(
  10361. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10362. {
  10363. side: {
  10364. height: math.unit(6, "feet"),
  10365. name: "Side",
  10366. image: {
  10367. source: "./media/characters/ailbhe/side.svg",
  10368. extra: 757 / 464,
  10369. bottom: 0.041
  10370. }
  10371. },
  10372. },
  10373. [
  10374. {
  10375. name: "Normal",
  10376. height: math.unit(1.07, "meters"),
  10377. default: true
  10378. },
  10379. ]
  10380. ))
  10381. characterMakers.push(() => makeCharacter(
  10382. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10383. {
  10384. front: {
  10385. height: math.unit(6, "feet"),
  10386. weight: math.unit(120, "kg"),
  10387. name: "Front",
  10388. image: {
  10389. source: "./media/characters/zevulfius/front.svg",
  10390. extra: 965 / 903
  10391. }
  10392. },
  10393. side: {
  10394. height: math.unit(6, "feet"),
  10395. weight: math.unit(120, "kg"),
  10396. name: "Side",
  10397. image: {
  10398. source: "./media/characters/zevulfius/side.svg",
  10399. extra: 939 / 900
  10400. }
  10401. },
  10402. back: {
  10403. height: math.unit(6, "feet"),
  10404. weight: math.unit(120, "kg"),
  10405. name: "Back",
  10406. image: {
  10407. source: "./media/characters/zevulfius/back.svg",
  10408. extra: 918 / 854,
  10409. bottom: 0.005
  10410. }
  10411. },
  10412. foot: {
  10413. height: math.unit(6 / 3.72, "feet"),
  10414. name: "Foot",
  10415. image: {
  10416. source: "./media/characters/zevulfius/foot.svg"
  10417. }
  10418. },
  10419. },
  10420. [
  10421. {
  10422. name: "Macro",
  10423. height: math.unit(750, "meters")
  10424. },
  10425. {
  10426. name: "Megamacro",
  10427. height: math.unit(20, "km"),
  10428. default: true
  10429. },
  10430. {
  10431. name: "Gigamacro",
  10432. height: math.unit(2000, "km")
  10433. },
  10434. {
  10435. name: "Teramacro",
  10436. height: math.unit(250000, "km")
  10437. },
  10438. ]
  10439. ))
  10440. characterMakers.push(() => makeCharacter(
  10441. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10442. {
  10443. front: {
  10444. height: math.unit(100, "feet"),
  10445. weight: math.unit(350, "kg"),
  10446. name: "Front",
  10447. image: {
  10448. source: "./media/characters/rikes/front.svg",
  10449. extra: 1565 / 1483,
  10450. bottom: 0.017
  10451. }
  10452. },
  10453. },
  10454. [
  10455. {
  10456. name: "Macro",
  10457. height: math.unit(100, "feet"),
  10458. default: true
  10459. },
  10460. ]
  10461. ))
  10462. characterMakers.push(() => makeCharacter(
  10463. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10464. {
  10465. front: {
  10466. height: math.unit(8, "feet"),
  10467. weight: math.unit(356, "lb"),
  10468. name: "Front",
  10469. image: {
  10470. source: "./media/characters/adam-silver-mane/front.svg",
  10471. extra: 1036/937,
  10472. bottom: 63/1099
  10473. }
  10474. },
  10475. side: {
  10476. height: math.unit(8, "feet"),
  10477. weight: math.unit(356, "lb"),
  10478. name: "Side",
  10479. image: {
  10480. source: "./media/characters/adam-silver-mane/side.svg",
  10481. extra: 997/901,
  10482. bottom: 59/1056
  10483. }
  10484. },
  10485. frontNsfw: {
  10486. height: math.unit(8, "feet"),
  10487. weight: math.unit(356, "lb"),
  10488. name: "Front (NSFW)",
  10489. image: {
  10490. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10491. extra: 1036/937,
  10492. bottom: 63/1099
  10493. }
  10494. },
  10495. sideNsfw: {
  10496. height: math.unit(8, "feet"),
  10497. weight: math.unit(356, "lb"),
  10498. name: "Side (NSFW)",
  10499. image: {
  10500. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10501. extra: 997/901,
  10502. bottom: 59/1056
  10503. }
  10504. },
  10505. dick: {
  10506. height: math.unit(2.1, "feet"),
  10507. name: "Dick",
  10508. image: {
  10509. source: "./media/characters/adam-silver-mane/dick.svg"
  10510. }
  10511. },
  10512. taur: {
  10513. height: math.unit(16, "feet"),
  10514. weight: math.unit(1500, "kg"),
  10515. name: "Taur",
  10516. image: {
  10517. source: "./media/characters/adam-silver-mane/taur.svg",
  10518. extra: 1713 / 1571,
  10519. bottom: 0.01
  10520. }
  10521. },
  10522. },
  10523. [
  10524. {
  10525. name: "Normal",
  10526. height: math.unit(8, "feet")
  10527. },
  10528. {
  10529. name: "Minimacro",
  10530. height: math.unit(80, "feet")
  10531. },
  10532. {
  10533. name: "MDA",
  10534. height: math.unit(80, "meters")
  10535. },
  10536. {
  10537. name: "Macro",
  10538. height: math.unit(800, "feet"),
  10539. default: true
  10540. },
  10541. {
  10542. name: "Megamacro",
  10543. height: math.unit(8000, "feet")
  10544. },
  10545. {
  10546. name: "Gigamacro",
  10547. height: math.unit(800, "miles")
  10548. },
  10549. {
  10550. name: "Teramacro",
  10551. height: math.unit(80000, "miles")
  10552. },
  10553. {
  10554. name: "Celestial",
  10555. height: math.unit(8e6, "miles")
  10556. },
  10557. {
  10558. name: "Star Dragon",
  10559. height: math.unit(800000, "parsecs")
  10560. },
  10561. {
  10562. name: "Godly",
  10563. height: math.unit(800, "teraparsecs")
  10564. },
  10565. ]
  10566. ))
  10567. characterMakers.push(() => makeCharacter(
  10568. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10569. {
  10570. front: {
  10571. height: math.unit(6, "feet"),
  10572. weight: math.unit(150, "lb"),
  10573. name: "Front",
  10574. image: {
  10575. source: "./media/characters/ky'owin/front.svg",
  10576. extra: 3888 / 3068,
  10577. bottom: 0.015
  10578. }
  10579. },
  10580. },
  10581. [
  10582. {
  10583. name: "Normal",
  10584. height: math.unit(6 + 8 / 12, "feet")
  10585. },
  10586. {
  10587. name: "Large",
  10588. height: math.unit(68, "feet")
  10589. },
  10590. {
  10591. name: "Macro",
  10592. height: math.unit(132, "feet")
  10593. },
  10594. {
  10595. name: "Macro+",
  10596. height: math.unit(340, "feet")
  10597. },
  10598. {
  10599. name: "Macro++",
  10600. height: math.unit(680, "feet"),
  10601. default: true
  10602. },
  10603. {
  10604. name: "Megamacro",
  10605. height: math.unit(1, "mile")
  10606. },
  10607. {
  10608. name: "Megamacro+",
  10609. height: math.unit(10, "miles")
  10610. },
  10611. ]
  10612. ))
  10613. characterMakers.push(() => makeCharacter(
  10614. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10615. {
  10616. front: {
  10617. height: math.unit(4, "feet"),
  10618. weight: math.unit(50, "lb"),
  10619. name: "Front",
  10620. image: {
  10621. source: "./media/characters/mal/front.svg",
  10622. extra: 785 / 724,
  10623. bottom: 0.07
  10624. }
  10625. },
  10626. },
  10627. [
  10628. {
  10629. name: "Micro",
  10630. height: math.unit(4, "inches")
  10631. },
  10632. {
  10633. name: "Normal",
  10634. height: math.unit(4, "feet"),
  10635. default: true
  10636. },
  10637. {
  10638. name: "Macro",
  10639. height: math.unit(200, "feet")
  10640. },
  10641. ]
  10642. ))
  10643. characterMakers.push(() => makeCharacter(
  10644. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10645. {
  10646. front: {
  10647. height: math.unit(6, "feet"),
  10648. weight: math.unit(150, "lb"),
  10649. name: "Front",
  10650. image: {
  10651. source: "./media/characters/jordan-deware/front.svg",
  10652. extra: 1191 / 1012
  10653. }
  10654. },
  10655. },
  10656. [
  10657. {
  10658. name: "Nano",
  10659. height: math.unit(0.01, "mm")
  10660. },
  10661. {
  10662. name: "Minimicro",
  10663. height: math.unit(1, "mm")
  10664. },
  10665. {
  10666. name: "Micro",
  10667. height: math.unit(0.5, "inches")
  10668. },
  10669. {
  10670. name: "Normal",
  10671. height: math.unit(4, "feet"),
  10672. default: true
  10673. },
  10674. {
  10675. name: "Minimacro",
  10676. height: math.unit(40, "meters")
  10677. },
  10678. {
  10679. name: "Small Macro",
  10680. height: math.unit(400, "meters")
  10681. },
  10682. {
  10683. name: "Macro",
  10684. height: math.unit(4, "miles")
  10685. },
  10686. {
  10687. name: "Megamacro",
  10688. height: math.unit(40, "miles")
  10689. },
  10690. {
  10691. name: "Megamacro+",
  10692. height: math.unit(400, "miles")
  10693. },
  10694. {
  10695. name: "Gigamacro",
  10696. height: math.unit(400000, "miles")
  10697. },
  10698. ]
  10699. ))
  10700. characterMakers.push(() => makeCharacter(
  10701. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10702. {
  10703. side: {
  10704. height: math.unit(6, "feet"),
  10705. weight: math.unit(150, "lb"),
  10706. name: "Side",
  10707. image: {
  10708. source: "./media/characters/kimiko/side.svg",
  10709. extra: 600 / 358
  10710. }
  10711. },
  10712. },
  10713. [
  10714. {
  10715. name: "Normal",
  10716. height: math.unit(15, "feet"),
  10717. default: true
  10718. },
  10719. {
  10720. name: "Macro",
  10721. height: math.unit(220, "feet")
  10722. },
  10723. {
  10724. name: "Macro+",
  10725. height: math.unit(1450, "feet")
  10726. },
  10727. {
  10728. name: "Megamacro",
  10729. height: math.unit(11500, "feet")
  10730. },
  10731. {
  10732. name: "Gigamacro",
  10733. height: math.unit(9500, "miles")
  10734. },
  10735. {
  10736. name: "Teramacro",
  10737. height: math.unit(2208005005, "miles")
  10738. },
  10739. {
  10740. name: "Examacro",
  10741. height: math.unit(2750, "parsecs")
  10742. },
  10743. {
  10744. name: "Zettamacro",
  10745. height: math.unit(101500, "parsecs")
  10746. },
  10747. ]
  10748. ))
  10749. characterMakers.push(() => makeCharacter(
  10750. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10751. {
  10752. front: {
  10753. height: math.unit(6, "feet"),
  10754. weight: math.unit(70, "kg"),
  10755. name: "Front",
  10756. image: {
  10757. source: "./media/characters/andrew-sleepy/front.svg"
  10758. }
  10759. },
  10760. side: {
  10761. height: math.unit(6, "feet"),
  10762. weight: math.unit(70, "kg"),
  10763. name: "Side",
  10764. image: {
  10765. source: "./media/characters/andrew-sleepy/side.svg"
  10766. }
  10767. },
  10768. },
  10769. [
  10770. {
  10771. name: "Micro",
  10772. height: math.unit(1, "mm"),
  10773. default: true
  10774. },
  10775. ]
  10776. ))
  10777. characterMakers.push(() => makeCharacter(
  10778. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10779. {
  10780. front: {
  10781. height: math.unit(6, "feet"),
  10782. weight: math.unit(150, "lb"),
  10783. name: "Front",
  10784. image: {
  10785. source: "./media/characters/judio/front.svg",
  10786. extra: 1258 / 1110
  10787. }
  10788. },
  10789. },
  10790. [
  10791. {
  10792. name: "Normal",
  10793. height: math.unit(5 + 6 / 12, "feet")
  10794. },
  10795. {
  10796. name: "Macro",
  10797. height: math.unit(1000, "feet"),
  10798. default: true
  10799. },
  10800. {
  10801. name: "Megamacro",
  10802. height: math.unit(10, "miles")
  10803. },
  10804. ]
  10805. ))
  10806. characterMakers.push(() => makeCharacter(
  10807. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10808. {
  10809. front: {
  10810. height: math.unit(6, "feet"),
  10811. weight: math.unit(68, "kg"),
  10812. name: "Front",
  10813. image: {
  10814. source: "./media/characters/nomaxice/front.svg",
  10815. extra: 1498 / 1073,
  10816. bottom: 0.075
  10817. }
  10818. },
  10819. foot: {
  10820. height: math.unit(1.1, "feet"),
  10821. name: "Foot",
  10822. image: {
  10823. source: "./media/characters/nomaxice/foot.svg"
  10824. }
  10825. },
  10826. },
  10827. [
  10828. {
  10829. name: "Micro",
  10830. height: math.unit(8, "cm")
  10831. },
  10832. {
  10833. name: "Norm",
  10834. height: math.unit(1.82, "m")
  10835. },
  10836. {
  10837. name: "Norm+",
  10838. height: math.unit(8.8, "feet")
  10839. },
  10840. {
  10841. name: "Big",
  10842. height: math.unit(8, "meters"),
  10843. default: true
  10844. },
  10845. {
  10846. name: "Macro",
  10847. height: math.unit(18, "meters")
  10848. },
  10849. {
  10850. name: "Macro+",
  10851. height: math.unit(88, "meters")
  10852. },
  10853. ]
  10854. ))
  10855. characterMakers.push(() => makeCharacter(
  10856. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10857. {
  10858. front: {
  10859. height: math.unit(12, "feet"),
  10860. weight: math.unit(1.5, "tons"),
  10861. name: "Front",
  10862. image: {
  10863. source: "./media/characters/dydros/front.svg",
  10864. extra: 863 / 800,
  10865. bottom: 0.015
  10866. }
  10867. },
  10868. back: {
  10869. height: math.unit(12, "feet"),
  10870. weight: math.unit(1.5, "tons"),
  10871. name: "Back",
  10872. image: {
  10873. source: "./media/characters/dydros/back.svg",
  10874. extra: 900 / 843,
  10875. bottom: 0.005
  10876. }
  10877. },
  10878. },
  10879. [
  10880. {
  10881. name: "Normal",
  10882. height: math.unit(12, "feet"),
  10883. default: true
  10884. },
  10885. ]
  10886. ))
  10887. characterMakers.push(() => makeCharacter(
  10888. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10889. {
  10890. front: {
  10891. height: math.unit(6, "feet"),
  10892. weight: math.unit(100, "kg"),
  10893. name: "Front",
  10894. image: {
  10895. source: "./media/characters/riggi/front.svg",
  10896. extra: 5787 / 5303
  10897. }
  10898. },
  10899. hyper: {
  10900. height: math.unit(6 * 5 / 3, "feet"),
  10901. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10902. name: "Hyper",
  10903. image: {
  10904. source: "./media/characters/riggi/hyper.svg",
  10905. extra: 3595 / 3485
  10906. }
  10907. },
  10908. },
  10909. [
  10910. {
  10911. name: "Small Macro",
  10912. height: math.unit(50, "feet")
  10913. },
  10914. {
  10915. name: "Default",
  10916. height: math.unit(200, "feet"),
  10917. default: true
  10918. },
  10919. {
  10920. name: "Loom",
  10921. height: math.unit(10000, "feet")
  10922. },
  10923. {
  10924. name: "Cruising Altitude",
  10925. height: math.unit(30000, "feet")
  10926. },
  10927. {
  10928. name: "Megamacro",
  10929. height: math.unit(100, "miles")
  10930. },
  10931. {
  10932. name: "Continent Sized",
  10933. height: math.unit(2800, "miles")
  10934. },
  10935. {
  10936. name: "Earth Sized",
  10937. height: math.unit(8000, "miles")
  10938. },
  10939. ]
  10940. ))
  10941. characterMakers.push(() => makeCharacter(
  10942. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10943. {
  10944. front: {
  10945. height: math.unit(6, "feet"),
  10946. weight: math.unit(250, "lb"),
  10947. name: "Front",
  10948. image: {
  10949. source: "./media/characters/alexi/front.svg",
  10950. extra: 3483 / 3291,
  10951. bottom: 0.04
  10952. }
  10953. },
  10954. back: {
  10955. height: math.unit(6, "feet"),
  10956. weight: math.unit(250, "lb"),
  10957. name: "Back",
  10958. image: {
  10959. source: "./media/characters/alexi/back.svg",
  10960. extra: 3533 / 3356,
  10961. bottom: 0.021
  10962. }
  10963. },
  10964. frontTransforming: {
  10965. height: math.unit(8.58, "feet"),
  10966. weight: math.unit(1300, "lb"),
  10967. name: "Transforming",
  10968. image: {
  10969. source: "./media/characters/alexi/front-transforming.svg",
  10970. extra: 437 / 409,
  10971. bottom: 19 / 458.66
  10972. }
  10973. },
  10974. frontTransformed: {
  10975. height: math.unit(12.5, "feet"),
  10976. weight: math.unit(4000, "lb"),
  10977. name: "Transformed",
  10978. image: {
  10979. source: "./media/characters/alexi/front-transformed.svg",
  10980. extra: 639 / 614,
  10981. bottom: 30.55 / 671
  10982. }
  10983. },
  10984. },
  10985. [
  10986. {
  10987. name: "Normal",
  10988. height: math.unit(14, "feet"),
  10989. default: true
  10990. },
  10991. {
  10992. name: "Minimacro",
  10993. height: math.unit(30, "meters")
  10994. },
  10995. {
  10996. name: "Macro",
  10997. height: math.unit(500, "meters")
  10998. },
  10999. {
  11000. name: "Megamacro",
  11001. height: math.unit(9000, "km")
  11002. },
  11003. {
  11004. name: "Teramacro",
  11005. height: math.unit(384000, "km")
  11006. },
  11007. ]
  11008. ))
  11009. characterMakers.push(() => makeCharacter(
  11010. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11011. {
  11012. front: {
  11013. height: math.unit(6, "feet"),
  11014. weight: math.unit(150, "lb"),
  11015. name: "Front",
  11016. image: {
  11017. source: "./media/characters/kayroo/front.svg",
  11018. extra: 1153 / 1038,
  11019. bottom: 0.06
  11020. }
  11021. },
  11022. foot: {
  11023. height: math.unit(6, "feet"),
  11024. weight: math.unit(150, "lb"),
  11025. name: "Foot",
  11026. image: {
  11027. source: "./media/characters/kayroo/foot.svg"
  11028. }
  11029. },
  11030. },
  11031. [
  11032. {
  11033. name: "Normal",
  11034. height: math.unit(8, "feet"),
  11035. default: true
  11036. },
  11037. {
  11038. name: "Minimacro",
  11039. height: math.unit(250, "feet")
  11040. },
  11041. {
  11042. name: "Macro",
  11043. height: math.unit(2800, "feet")
  11044. },
  11045. {
  11046. name: "Megamacro",
  11047. height: math.unit(5200, "feet")
  11048. },
  11049. {
  11050. name: "Gigamacro",
  11051. height: math.unit(27000, "feet")
  11052. },
  11053. {
  11054. name: "Omega",
  11055. height: math.unit(45000, "feet")
  11056. },
  11057. ]
  11058. ))
  11059. characterMakers.push(() => makeCharacter(
  11060. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11061. {
  11062. front: {
  11063. height: math.unit(18, "feet"),
  11064. weight: math.unit(5800, "lb"),
  11065. name: "Front",
  11066. image: {
  11067. source: "./media/characters/rhys/front.svg",
  11068. extra: 3386 / 3090,
  11069. bottom: 0.07
  11070. }
  11071. },
  11072. },
  11073. [
  11074. {
  11075. name: "Normal",
  11076. height: math.unit(18, "feet"),
  11077. default: true
  11078. },
  11079. {
  11080. name: "Working Size",
  11081. height: math.unit(200, "feet")
  11082. },
  11083. {
  11084. name: "Demolition Size",
  11085. height: math.unit(2000, "feet")
  11086. },
  11087. {
  11088. name: "Maximum Licensed Size",
  11089. height: math.unit(5, "miles")
  11090. },
  11091. {
  11092. name: "Maximum Observed Size",
  11093. height: math.unit(10, "yottameters")
  11094. },
  11095. ]
  11096. ))
  11097. characterMakers.push(() => makeCharacter(
  11098. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11099. {
  11100. front: {
  11101. height: math.unit(6, "feet"),
  11102. weight: math.unit(250, "lb"),
  11103. name: "Front",
  11104. image: {
  11105. source: "./media/characters/toto/front.svg",
  11106. extra: 527 / 479,
  11107. bottom: 0.05
  11108. }
  11109. },
  11110. },
  11111. [
  11112. {
  11113. name: "Micro",
  11114. height: math.unit(3, "feet")
  11115. },
  11116. {
  11117. name: "Normal",
  11118. height: math.unit(10, "feet")
  11119. },
  11120. {
  11121. name: "Macro",
  11122. height: math.unit(150, "feet"),
  11123. default: true
  11124. },
  11125. {
  11126. name: "Megamacro",
  11127. height: math.unit(1200, "feet")
  11128. },
  11129. ]
  11130. ))
  11131. characterMakers.push(() => makeCharacter(
  11132. { name: "King", species: ["lion"], tags: ["anthro"] },
  11133. {
  11134. back: {
  11135. height: math.unit(6, "feet"),
  11136. weight: math.unit(150, "lb"),
  11137. name: "Back",
  11138. image: {
  11139. source: "./media/characters/king/back.svg"
  11140. }
  11141. },
  11142. },
  11143. [
  11144. {
  11145. name: "Micro",
  11146. height: math.unit(2, "inches")
  11147. },
  11148. {
  11149. name: "Normal",
  11150. height: math.unit(8, "feet")
  11151. },
  11152. {
  11153. name: "Macro",
  11154. height: math.unit(200, "feet"),
  11155. default: true
  11156. },
  11157. {
  11158. name: "Megamacro",
  11159. height: math.unit(50, "miles")
  11160. },
  11161. ]
  11162. ))
  11163. characterMakers.push(() => makeCharacter(
  11164. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11165. {
  11166. front: {
  11167. height: math.unit(11, "feet"),
  11168. weight: math.unit(1400, "lb"),
  11169. name: "Front",
  11170. image: {
  11171. source: "./media/characters/cordite/front.svg",
  11172. extra: 1919/1827,
  11173. bottom: 40/1959
  11174. }
  11175. },
  11176. side: {
  11177. height: math.unit(11, "feet"),
  11178. weight: math.unit(1400, "lb"),
  11179. name: "Side",
  11180. image: {
  11181. source: "./media/characters/cordite/side.svg",
  11182. extra: 1908/1793,
  11183. bottom: 38/1946
  11184. }
  11185. },
  11186. back: {
  11187. height: math.unit(11, "feet"),
  11188. weight: math.unit(1400, "lb"),
  11189. name: "Back",
  11190. image: {
  11191. source: "./media/characters/cordite/back.svg",
  11192. extra: 1938/1837,
  11193. bottom: 10/1948
  11194. }
  11195. },
  11196. feral: {
  11197. height: math.unit(2, "feet"),
  11198. weight: math.unit(90, "lb"),
  11199. name: "Feral",
  11200. image: {
  11201. source: "./media/characters/cordite/feral.svg",
  11202. extra: 1260 / 755,
  11203. bottom: 0.05
  11204. }
  11205. },
  11206. },
  11207. [
  11208. {
  11209. name: "Normal",
  11210. height: math.unit(11, "feet"),
  11211. default: true
  11212. },
  11213. ]
  11214. ))
  11215. characterMakers.push(() => makeCharacter(
  11216. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11217. {
  11218. front: {
  11219. height: math.unit(6, "feet"),
  11220. weight: math.unit(150, "lb"),
  11221. name: "Front",
  11222. image: {
  11223. source: "./media/characters/pianostrong/front.svg",
  11224. extra: 6577 / 6254,
  11225. bottom: 0.02
  11226. }
  11227. },
  11228. side: {
  11229. height: math.unit(6, "feet"),
  11230. weight: math.unit(150, "lb"),
  11231. name: "Side",
  11232. image: {
  11233. source: "./media/characters/pianostrong/side.svg",
  11234. extra: 6106 / 5730
  11235. }
  11236. },
  11237. back: {
  11238. height: math.unit(6, "feet"),
  11239. weight: math.unit(150, "lb"),
  11240. name: "Back",
  11241. image: {
  11242. source: "./media/characters/pianostrong/back.svg",
  11243. extra: 6085 / 5733,
  11244. bottom: 0.01
  11245. }
  11246. },
  11247. },
  11248. [
  11249. {
  11250. name: "Macro",
  11251. height: math.unit(100, "feet")
  11252. },
  11253. {
  11254. name: "Macro+",
  11255. height: math.unit(300, "feet"),
  11256. default: true
  11257. },
  11258. {
  11259. name: "Macro++",
  11260. height: math.unit(1000, "feet")
  11261. },
  11262. ]
  11263. ))
  11264. characterMakers.push(() => makeCharacter(
  11265. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11266. {
  11267. front: {
  11268. height: math.unit(6, "feet"),
  11269. weight: math.unit(150, "lb"),
  11270. name: "Front",
  11271. image: {
  11272. source: "./media/characters/kona/front.svg",
  11273. extra: 2960 / 2629,
  11274. bottom: 0.005
  11275. }
  11276. },
  11277. },
  11278. [
  11279. {
  11280. name: "Normal",
  11281. height: math.unit(11 + 8 / 12, "feet")
  11282. },
  11283. {
  11284. name: "Macro",
  11285. height: math.unit(850, "feet"),
  11286. default: true
  11287. },
  11288. {
  11289. name: "Macro+",
  11290. height: math.unit(1.5, "km"),
  11291. default: true
  11292. },
  11293. {
  11294. name: "Megamacro",
  11295. height: math.unit(80, "miles")
  11296. },
  11297. {
  11298. name: "Gigamacro",
  11299. height: math.unit(3500, "miles")
  11300. },
  11301. ]
  11302. ))
  11303. characterMakers.push(() => makeCharacter(
  11304. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11305. {
  11306. side: {
  11307. height: math.unit(1.9, "meters"),
  11308. weight: math.unit(326, "kg"),
  11309. name: "Side",
  11310. image: {
  11311. source: "./media/characters/levi/side.svg",
  11312. extra: 1704 / 1334,
  11313. bottom: 0.02
  11314. }
  11315. },
  11316. },
  11317. [
  11318. {
  11319. name: "Normal",
  11320. height: math.unit(1.9, "meters"),
  11321. default: true
  11322. },
  11323. {
  11324. name: "Macro",
  11325. height: math.unit(20, "meters")
  11326. },
  11327. {
  11328. name: "Macro+",
  11329. height: math.unit(200, "meters")
  11330. },
  11331. {
  11332. name: "Megamacro",
  11333. height: math.unit(2, "km")
  11334. },
  11335. {
  11336. name: "Megamacro+",
  11337. height: math.unit(20, "km")
  11338. },
  11339. {
  11340. name: "Gigamacro",
  11341. height: math.unit(2500, "km")
  11342. },
  11343. {
  11344. name: "Gigamacro+",
  11345. height: math.unit(120000, "km")
  11346. },
  11347. {
  11348. name: "Teramacro",
  11349. height: math.unit(7.77e6, "km")
  11350. },
  11351. ]
  11352. ))
  11353. characterMakers.push(() => makeCharacter(
  11354. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11355. {
  11356. front: {
  11357. height: math.unit(6 + 4/12, "feet"),
  11358. weight: math.unit(190, "lb"),
  11359. name: "Front",
  11360. image: {
  11361. source: "./media/characters/bmc/front.svg",
  11362. extra: 1626/1472,
  11363. bottom: 79/1705
  11364. }
  11365. },
  11366. back: {
  11367. height: math.unit(6 + 4/12, "feet"),
  11368. weight: math.unit(190, "lb"),
  11369. name: "Back",
  11370. image: {
  11371. source: "./media/characters/bmc/back.svg",
  11372. extra: 1640/1479,
  11373. bottom: 45/1685
  11374. }
  11375. },
  11376. frontArmor: {
  11377. height: math.unit(6 + 4/12, "feet"),
  11378. weight: math.unit(190, "lb"),
  11379. name: "Front-armor",
  11380. image: {
  11381. source: "./media/characters/bmc/front-armor.svg",
  11382. extra: 1538/1468,
  11383. bottom: 79/1617
  11384. }
  11385. },
  11386. },
  11387. [
  11388. {
  11389. name: "Human-sized",
  11390. height: math.unit(6 + 4 / 12, "feet")
  11391. },
  11392. {
  11393. name: "Interactive Size",
  11394. height: math.unit(25, "feet")
  11395. },
  11396. {
  11397. name: "Small",
  11398. height: math.unit(250, "feet")
  11399. },
  11400. {
  11401. name: "Normal",
  11402. height: math.unit(1250, "feet"),
  11403. default: true
  11404. },
  11405. {
  11406. name: "Good Day",
  11407. height: math.unit(88, "miles")
  11408. },
  11409. {
  11410. name: "Largest Measured Size",
  11411. height: math.unit(105.960, "galaxies")
  11412. },
  11413. ]
  11414. ))
  11415. characterMakers.push(() => makeCharacter(
  11416. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11417. {
  11418. front: {
  11419. height: math.unit(20, "feet"),
  11420. weight: math.unit(2016, "kg"),
  11421. name: "Front",
  11422. image: {
  11423. source: "./media/characters/sven-the-kaiju/front.svg",
  11424. extra: 1277/1250,
  11425. bottom: 35/1312
  11426. }
  11427. },
  11428. mouth: {
  11429. height: math.unit(1.85, "feet"),
  11430. name: "Mouth",
  11431. image: {
  11432. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11433. }
  11434. },
  11435. },
  11436. [
  11437. {
  11438. name: "Fairy",
  11439. height: math.unit(6, "inches")
  11440. },
  11441. {
  11442. name: "Normal",
  11443. height: math.unit(20, "feet"),
  11444. default: true
  11445. },
  11446. {
  11447. name: "Rampage",
  11448. height: math.unit(200, "feet")
  11449. },
  11450. {
  11451. name: "Archfey Forest Guardian",
  11452. height: math.unit(1, "mile")
  11453. },
  11454. ]
  11455. ))
  11456. characterMakers.push(() => makeCharacter(
  11457. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11458. {
  11459. front: {
  11460. height: math.unit(4, "meters"),
  11461. weight: math.unit(2, "tons"),
  11462. name: "Front",
  11463. image: {
  11464. source: "./media/characters/marik/front.svg",
  11465. extra: 1057 / 1003,
  11466. bottom: 0.08
  11467. }
  11468. },
  11469. },
  11470. [
  11471. {
  11472. name: "Normal",
  11473. height: math.unit(4, "meters"),
  11474. default: true
  11475. },
  11476. {
  11477. name: "Macro",
  11478. height: math.unit(20, "meters")
  11479. },
  11480. {
  11481. name: "Megamacro",
  11482. height: math.unit(50, "km")
  11483. },
  11484. {
  11485. name: "Gigamacro",
  11486. height: math.unit(100, "km")
  11487. },
  11488. {
  11489. name: "Alpha Macro",
  11490. height: math.unit(7.88e7, "yottameters")
  11491. },
  11492. ]
  11493. ))
  11494. characterMakers.push(() => makeCharacter(
  11495. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11496. {
  11497. front: {
  11498. height: math.unit(6, "feet"),
  11499. weight: math.unit(110, "lb"),
  11500. name: "Front",
  11501. image: {
  11502. source: "./media/characters/mel/front.svg",
  11503. extra: 736 / 617,
  11504. bottom: 0.017
  11505. }
  11506. },
  11507. },
  11508. [
  11509. {
  11510. name: "Pico",
  11511. height: math.unit(3, "pm")
  11512. },
  11513. {
  11514. name: "Nano",
  11515. height: math.unit(3, "nm")
  11516. },
  11517. {
  11518. name: "Micro",
  11519. height: math.unit(0.3, "mm"),
  11520. default: true
  11521. },
  11522. {
  11523. name: "Micro+",
  11524. height: math.unit(3, "mm")
  11525. },
  11526. {
  11527. name: "Normal",
  11528. height: math.unit(5 + 10.5 / 12, "feet")
  11529. },
  11530. ]
  11531. ))
  11532. characterMakers.push(() => makeCharacter(
  11533. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11534. {
  11535. kaiju: {
  11536. height: math.unit(1.75, "meters"),
  11537. weight: math.unit(55, "kg"),
  11538. name: "Kaiju",
  11539. image: {
  11540. source: "./media/characters/lykonous/kaiju.svg",
  11541. extra: 1055 / 946,
  11542. bottom: 0.135
  11543. }
  11544. },
  11545. },
  11546. [
  11547. {
  11548. name: "Normal",
  11549. height: math.unit(2.5, "meters"),
  11550. default: true
  11551. },
  11552. {
  11553. name: "Kaiju Dragon",
  11554. height: math.unit(60, "meters")
  11555. },
  11556. {
  11557. name: "Mega Kaiju",
  11558. height: math.unit(120, "km")
  11559. },
  11560. {
  11561. name: "Giga Kaiju",
  11562. height: math.unit(200, "megameters")
  11563. },
  11564. {
  11565. name: "Terra Kaiju",
  11566. height: math.unit(400, "gigameters")
  11567. },
  11568. {
  11569. name: "Kaiju Dragon God",
  11570. height: math.unit(13000, "exaparsecs")
  11571. },
  11572. ]
  11573. ))
  11574. characterMakers.push(() => makeCharacter(
  11575. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11576. {
  11577. front: {
  11578. height: math.unit(6, "feet"),
  11579. weight: math.unit(150, "lb"),
  11580. name: "Front",
  11581. image: {
  11582. source: "./media/characters/blü/front.svg",
  11583. extra: 1883 / 1564,
  11584. bottom: 0.031
  11585. }
  11586. },
  11587. },
  11588. [
  11589. {
  11590. name: "Normal",
  11591. height: math.unit(13, "feet"),
  11592. default: true
  11593. },
  11594. {
  11595. name: "Big Boi",
  11596. height: math.unit(150, "meters")
  11597. },
  11598. {
  11599. name: "Mini Stomper",
  11600. height: math.unit(300, "meters")
  11601. },
  11602. {
  11603. name: "Macro",
  11604. height: math.unit(1000, "meters")
  11605. },
  11606. {
  11607. name: "Megamacro",
  11608. height: math.unit(11000, "meters")
  11609. },
  11610. {
  11611. name: "Gigamacro",
  11612. height: math.unit(11000, "km")
  11613. },
  11614. {
  11615. name: "Teramacro",
  11616. height: math.unit(420000, "km")
  11617. },
  11618. {
  11619. name: "Examacro",
  11620. height: math.unit(120, "parsecs")
  11621. },
  11622. {
  11623. name: "God Tho",
  11624. height: math.unit(98000000000, "parsecs")
  11625. },
  11626. ]
  11627. ))
  11628. characterMakers.push(() => makeCharacter(
  11629. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11630. {
  11631. taurFront: {
  11632. height: math.unit(6, "feet"),
  11633. weight: math.unit(200, "lb"),
  11634. name: "Taur (Front)",
  11635. image: {
  11636. source: "./media/characters/scales/taur-front.svg",
  11637. extra: 1,
  11638. bottom: 0.05
  11639. }
  11640. },
  11641. taurBack: {
  11642. height: math.unit(6, "feet"),
  11643. weight: math.unit(200, "lb"),
  11644. name: "Taur (Back)",
  11645. image: {
  11646. source: "./media/characters/scales/taur-back.svg",
  11647. extra: 1,
  11648. bottom: 0.08
  11649. }
  11650. },
  11651. anthro: {
  11652. height: math.unit(6 * 7 / 12, "feet"),
  11653. weight: math.unit(100, "lb"),
  11654. name: "Anthro",
  11655. image: {
  11656. source: "./media/characters/scales/anthro.svg",
  11657. extra: 1,
  11658. bottom: 0.06
  11659. }
  11660. },
  11661. },
  11662. [
  11663. {
  11664. name: "Normal",
  11665. height: math.unit(12, "feet"),
  11666. default: true
  11667. },
  11668. ]
  11669. ))
  11670. characterMakers.push(() => makeCharacter(
  11671. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11672. {
  11673. front: {
  11674. height: math.unit(6, "feet"),
  11675. weight: math.unit(150, "lb"),
  11676. name: "Front",
  11677. image: {
  11678. source: "./media/characters/koragos/front.svg",
  11679. extra: 841 / 794,
  11680. bottom: 0.035
  11681. }
  11682. },
  11683. back: {
  11684. height: math.unit(6, "feet"),
  11685. weight: math.unit(150, "lb"),
  11686. name: "Back",
  11687. image: {
  11688. source: "./media/characters/koragos/back.svg",
  11689. extra: 841 / 810,
  11690. bottom: 0.022
  11691. }
  11692. },
  11693. },
  11694. [
  11695. {
  11696. name: "Normal",
  11697. height: math.unit(6 + 11 / 12, "feet"),
  11698. default: true
  11699. },
  11700. {
  11701. name: "Macro",
  11702. height: math.unit(490, "feet")
  11703. },
  11704. {
  11705. name: "Megamacro",
  11706. height: math.unit(10, "miles")
  11707. },
  11708. {
  11709. name: "Gigamacro",
  11710. height: math.unit(50, "miles")
  11711. },
  11712. ]
  11713. ))
  11714. characterMakers.push(() => makeCharacter(
  11715. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11716. {
  11717. front: {
  11718. height: math.unit(6, "feet"),
  11719. weight: math.unit(250, "lb"),
  11720. name: "Front",
  11721. image: {
  11722. source: "./media/characters/xylrem/front.svg",
  11723. extra: 3323 / 3050,
  11724. bottom: 0.065
  11725. }
  11726. },
  11727. },
  11728. [
  11729. {
  11730. name: "Micro",
  11731. height: math.unit(4, "feet")
  11732. },
  11733. {
  11734. name: "Normal",
  11735. height: math.unit(16, "feet"),
  11736. default: true
  11737. },
  11738. {
  11739. name: "Macro",
  11740. height: math.unit(2720, "feet")
  11741. },
  11742. {
  11743. name: "Megamacro",
  11744. height: math.unit(25000, "miles")
  11745. },
  11746. ]
  11747. ))
  11748. characterMakers.push(() => makeCharacter(
  11749. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11750. {
  11751. front: {
  11752. height: math.unit(8, "feet"),
  11753. weight: math.unit(250, "kg"),
  11754. name: "Front",
  11755. image: {
  11756. source: "./media/characters/ikideru/front.svg",
  11757. extra: 930 / 870,
  11758. bottom: 0.087
  11759. }
  11760. },
  11761. back: {
  11762. height: math.unit(8, "feet"),
  11763. weight: math.unit(250, "kg"),
  11764. name: "Back",
  11765. image: {
  11766. source: "./media/characters/ikideru/back.svg",
  11767. extra: 919 / 852,
  11768. bottom: 0.055
  11769. }
  11770. },
  11771. },
  11772. [
  11773. {
  11774. name: "Rare",
  11775. height: math.unit(8, "feet"),
  11776. default: true
  11777. },
  11778. {
  11779. name: "Playful Loom",
  11780. height: math.unit(80, "feet")
  11781. },
  11782. {
  11783. name: "City Leaner",
  11784. height: math.unit(230, "feet")
  11785. },
  11786. {
  11787. name: "Megamacro",
  11788. height: math.unit(2500, "feet")
  11789. },
  11790. {
  11791. name: "Gigamacro",
  11792. height: math.unit(26400, "feet")
  11793. },
  11794. {
  11795. name: "Tectonic Shifter",
  11796. height: math.unit(1.7, "megameters")
  11797. },
  11798. {
  11799. name: "Planet Carer",
  11800. height: math.unit(21, "megameters")
  11801. },
  11802. {
  11803. name: "God",
  11804. height: math.unit(11157.22, "parsecs")
  11805. },
  11806. ]
  11807. ))
  11808. characterMakers.push(() => makeCharacter(
  11809. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11810. {
  11811. front: {
  11812. height: math.unit(6, "feet"),
  11813. weight: math.unit(120, "lb"),
  11814. name: "Front",
  11815. image: {
  11816. source: "./media/characters/neo/front.svg"
  11817. }
  11818. },
  11819. },
  11820. [
  11821. {
  11822. name: "Micro",
  11823. height: math.unit(2, "inches"),
  11824. default: true
  11825. },
  11826. {
  11827. name: "Human Size",
  11828. height: math.unit(5 + 8 / 12, "feet")
  11829. },
  11830. ]
  11831. ))
  11832. characterMakers.push(() => makeCharacter(
  11833. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11834. {
  11835. front: {
  11836. height: math.unit(13 + 10 / 12, "feet"),
  11837. weight: math.unit(5320, "lb"),
  11838. name: "Front",
  11839. image: {
  11840. source: "./media/characters/chauncey-chantz/front.svg",
  11841. extra: 1587 / 1435,
  11842. bottom: 0.02
  11843. }
  11844. },
  11845. },
  11846. [
  11847. {
  11848. name: "Normal",
  11849. height: math.unit(13 + 10 / 12, "feet"),
  11850. default: true
  11851. },
  11852. {
  11853. name: "Macro",
  11854. height: math.unit(45, "feet")
  11855. },
  11856. {
  11857. name: "Megamacro",
  11858. height: math.unit(250, "miles")
  11859. },
  11860. {
  11861. name: "Planetary",
  11862. height: math.unit(10000, "miles")
  11863. },
  11864. {
  11865. name: "Galactic",
  11866. height: math.unit(40000, "parsecs")
  11867. },
  11868. {
  11869. name: "Universal",
  11870. height: math.unit(1, "yottameter")
  11871. },
  11872. ]
  11873. ))
  11874. characterMakers.push(() => makeCharacter(
  11875. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11876. {
  11877. front: {
  11878. height: math.unit(6, "feet"),
  11879. weight: math.unit(150, "lb"),
  11880. name: "Front",
  11881. image: {
  11882. source: "./media/characters/epifox/front.svg",
  11883. extra: 1,
  11884. bottom: 0.075
  11885. }
  11886. },
  11887. },
  11888. [
  11889. {
  11890. name: "Micro",
  11891. height: math.unit(6, "inches")
  11892. },
  11893. {
  11894. name: "Normal",
  11895. height: math.unit(12, "feet"),
  11896. default: true
  11897. },
  11898. {
  11899. name: "Macro",
  11900. height: math.unit(3810, "feet")
  11901. },
  11902. {
  11903. name: "Megamacro",
  11904. height: math.unit(500, "miles")
  11905. },
  11906. ]
  11907. ))
  11908. characterMakers.push(() => makeCharacter(
  11909. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11910. {
  11911. front: {
  11912. height: math.unit(1.8796, "m"),
  11913. weight: math.unit(230, "lb"),
  11914. name: "Front",
  11915. image: {
  11916. source: "./media/characters/colin-t/front.svg",
  11917. extra: 1272 / 1193,
  11918. bottom: 0.07
  11919. }
  11920. },
  11921. },
  11922. [
  11923. {
  11924. name: "Micro",
  11925. height: math.unit(0.571, "meters")
  11926. },
  11927. {
  11928. name: "Normal",
  11929. height: math.unit(1.8796, "meters"),
  11930. default: true
  11931. },
  11932. {
  11933. name: "Tall",
  11934. height: math.unit(4, "meters")
  11935. },
  11936. {
  11937. name: "Macro",
  11938. height: math.unit(67.241, "meters")
  11939. },
  11940. {
  11941. name: "Megamacro",
  11942. height: math.unit(371.856, "meters")
  11943. },
  11944. {
  11945. name: "Planetary",
  11946. height: math.unit(12631.5689, "km")
  11947. },
  11948. ]
  11949. ))
  11950. characterMakers.push(() => makeCharacter(
  11951. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11952. {
  11953. front: {
  11954. height: math.unit(1.85, "meters"),
  11955. weight: math.unit(80, "kg"),
  11956. name: "Front",
  11957. image: {
  11958. source: "./media/characters/matvei/front.svg",
  11959. extra: 614 / 594,
  11960. bottom: 0.01
  11961. }
  11962. },
  11963. },
  11964. [
  11965. {
  11966. name: "Normal",
  11967. height: math.unit(1.85, "meters"),
  11968. default: true
  11969. },
  11970. ]
  11971. ))
  11972. characterMakers.push(() => makeCharacter(
  11973. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11974. {
  11975. front: {
  11976. height: math.unit(5 + 9 / 12, "feet"),
  11977. weight: math.unit(70, "lb"),
  11978. name: "Front",
  11979. image: {
  11980. source: "./media/characters/quincy/front.svg",
  11981. extra: 3041 / 2751
  11982. }
  11983. },
  11984. back: {
  11985. height: math.unit(5 + 9 / 12, "feet"),
  11986. weight: math.unit(70, "lb"),
  11987. name: "Back",
  11988. image: {
  11989. source: "./media/characters/quincy/back.svg",
  11990. extra: 3041 / 2751
  11991. }
  11992. },
  11993. flying: {
  11994. height: math.unit(5 + 4 / 12, "feet"),
  11995. weight: math.unit(70, "lb"),
  11996. name: "Flying",
  11997. image: {
  11998. source: "./media/characters/quincy/flying.svg",
  11999. extra: 1044 / 930
  12000. }
  12001. },
  12002. },
  12003. [
  12004. {
  12005. name: "Micro",
  12006. height: math.unit(3, "cm")
  12007. },
  12008. {
  12009. name: "Normal",
  12010. height: math.unit(5 + 9 / 12, "feet")
  12011. },
  12012. {
  12013. name: "Macro",
  12014. height: math.unit(200, "meters"),
  12015. default: true
  12016. },
  12017. {
  12018. name: "Megamacro",
  12019. height: math.unit(1000, "meters")
  12020. },
  12021. ]
  12022. ))
  12023. characterMakers.push(() => makeCharacter(
  12024. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12025. {
  12026. front: {
  12027. height: math.unit(3 + 11/12, "feet"),
  12028. weight: math.unit(50, "lb"),
  12029. name: "Front",
  12030. image: {
  12031. source: "./media/characters/vanrel/front.svg",
  12032. extra: 1104/949,
  12033. bottom: 52/1156
  12034. }
  12035. },
  12036. back: {
  12037. height: math.unit(3 + 11/12, "feet"),
  12038. weight: math.unit(50, "lb"),
  12039. name: "Back",
  12040. image: {
  12041. source: "./media/characters/vanrel/back.svg",
  12042. extra: 1119/976,
  12043. bottom: 37/1156
  12044. }
  12045. },
  12046. tome: {
  12047. height: math.unit(1.35, "feet"),
  12048. weight: math.unit(10, "lb"),
  12049. name: "Vanrel's Tome",
  12050. rename: true,
  12051. image: {
  12052. source: "./media/characters/vanrel/tome.svg"
  12053. }
  12054. },
  12055. beans: {
  12056. height: math.unit(0.89, "feet"),
  12057. name: "Beans",
  12058. image: {
  12059. source: "./media/characters/vanrel/beans.svg"
  12060. }
  12061. },
  12062. },
  12063. [
  12064. {
  12065. name: "Normal",
  12066. height: math.unit(3 + 11/12, "feet"),
  12067. default: true
  12068. },
  12069. ]
  12070. ))
  12071. characterMakers.push(() => makeCharacter(
  12072. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12073. {
  12074. front: {
  12075. height: math.unit(7 + 5 / 12, "feet"),
  12076. name: "Front",
  12077. image: {
  12078. source: "./media/characters/kuiper-vanrel/front.svg",
  12079. extra: 1219/1169,
  12080. bottom: 69/1288
  12081. }
  12082. },
  12083. back: {
  12084. height: math.unit(7 + 5 / 12, "feet"),
  12085. name: "Back",
  12086. image: {
  12087. source: "./media/characters/kuiper-vanrel/back.svg",
  12088. extra: 1236/1193,
  12089. bottom: 27/1263
  12090. }
  12091. },
  12092. foot: {
  12093. height: math.unit(0.55, "meters"),
  12094. name: "Foot",
  12095. image: {
  12096. source: "./media/characters/kuiper-vanrel/foot.svg",
  12097. }
  12098. },
  12099. battle: {
  12100. height: math.unit(6.824, "feet"),
  12101. name: "Battle",
  12102. image: {
  12103. source: "./media/characters/kuiper-vanrel/battle.svg",
  12104. extra: 1466 / 1327,
  12105. bottom: 29 / 1492.5
  12106. }
  12107. },
  12108. meerkui: {
  12109. height: math.unit(18, "inches"),
  12110. name: "Meerkui",
  12111. image: {
  12112. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12113. extra: 1354/1289,
  12114. bottom: 69/1423
  12115. }
  12116. },
  12117. },
  12118. [
  12119. {
  12120. name: "Normal",
  12121. height: math.unit(7 + 5 / 12, "feet"),
  12122. default: true
  12123. },
  12124. ]
  12125. ))
  12126. characterMakers.push(() => makeCharacter(
  12127. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12128. {
  12129. front: {
  12130. height: math.unit(8 + 5 / 12, "feet"),
  12131. name: "Front",
  12132. image: {
  12133. source: "./media/characters/keset-vanrel/front.svg",
  12134. extra: 1231/1148,
  12135. bottom: 82/1313
  12136. }
  12137. },
  12138. back: {
  12139. height: math.unit(8 + 5 / 12, "feet"),
  12140. name: "Back",
  12141. image: {
  12142. source: "./media/characters/keset-vanrel/back.svg",
  12143. extra: 1240/1174,
  12144. bottom: 33/1273
  12145. }
  12146. },
  12147. hand: {
  12148. height: math.unit(0.6, "meters"),
  12149. name: "Hand",
  12150. image: {
  12151. source: "./media/characters/keset-vanrel/hand.svg"
  12152. }
  12153. },
  12154. foot: {
  12155. height: math.unit(0.94978, "meters"),
  12156. name: "Foot",
  12157. image: {
  12158. source: "./media/characters/keset-vanrel/foot.svg"
  12159. }
  12160. },
  12161. battle: {
  12162. height: math.unit(7.408, "feet"),
  12163. name: "Battle",
  12164. image: {
  12165. source: "./media/characters/keset-vanrel/battle.svg",
  12166. extra: 1890 / 1386,
  12167. bottom: 73.28 / 1970
  12168. }
  12169. },
  12170. },
  12171. [
  12172. {
  12173. name: "Normal",
  12174. height: math.unit(8 + 5 / 12, "feet"),
  12175. default: true
  12176. },
  12177. ]
  12178. ))
  12179. characterMakers.push(() => makeCharacter(
  12180. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12181. {
  12182. front: {
  12183. height: math.unit(6, "feet"),
  12184. weight: math.unit(150, "lb"),
  12185. name: "Front",
  12186. image: {
  12187. source: "./media/characters/neos/front.svg",
  12188. extra: 1696 / 992,
  12189. bottom: 0.14
  12190. }
  12191. },
  12192. },
  12193. [
  12194. {
  12195. name: "Normal",
  12196. height: math.unit(54, "cm"),
  12197. default: true
  12198. },
  12199. {
  12200. name: "Macro",
  12201. height: math.unit(100, "m")
  12202. },
  12203. {
  12204. name: "Megamacro",
  12205. height: math.unit(10, "km")
  12206. },
  12207. {
  12208. name: "Megamacro+",
  12209. height: math.unit(100, "km")
  12210. },
  12211. {
  12212. name: "Gigamacro",
  12213. height: math.unit(100, "Mm")
  12214. },
  12215. {
  12216. name: "Teramacro",
  12217. height: math.unit(100, "Gm")
  12218. },
  12219. {
  12220. name: "Examacro",
  12221. height: math.unit(100, "Em")
  12222. },
  12223. {
  12224. name: "Godly",
  12225. height: math.unit(10000, "Ym")
  12226. },
  12227. {
  12228. name: "Beyond Godly",
  12229. height: math.unit(25, "multiverses")
  12230. },
  12231. ]
  12232. ))
  12233. characterMakers.push(() => makeCharacter(
  12234. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12235. {
  12236. feminine: {
  12237. height: math.unit(5, "feet"),
  12238. weight: math.unit(100, "lb"),
  12239. name: "Feminine",
  12240. image: {
  12241. source: "./media/characters/sammy-mouse/feminine.svg",
  12242. extra: 2526 / 2425,
  12243. bottom: 0.123
  12244. }
  12245. },
  12246. masculine: {
  12247. height: math.unit(5, "feet"),
  12248. weight: math.unit(100, "lb"),
  12249. name: "Masculine",
  12250. image: {
  12251. source: "./media/characters/sammy-mouse/masculine.svg",
  12252. extra: 2526 / 2425,
  12253. bottom: 0.123
  12254. }
  12255. },
  12256. },
  12257. [
  12258. {
  12259. name: "Micro",
  12260. height: math.unit(5, "inches")
  12261. },
  12262. {
  12263. name: "Normal",
  12264. height: math.unit(5, "feet"),
  12265. default: true
  12266. },
  12267. {
  12268. name: "Macro",
  12269. height: math.unit(60, "feet")
  12270. },
  12271. ]
  12272. ))
  12273. characterMakers.push(() => makeCharacter(
  12274. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12275. {
  12276. front: {
  12277. height: math.unit(4, "feet"),
  12278. weight: math.unit(50, "lb"),
  12279. name: "Front",
  12280. image: {
  12281. source: "./media/characters/kole/front.svg",
  12282. extra: 1423 / 1303,
  12283. bottom: 0.025
  12284. }
  12285. },
  12286. back: {
  12287. height: math.unit(4, "feet"),
  12288. weight: math.unit(50, "lb"),
  12289. name: "Back",
  12290. image: {
  12291. source: "./media/characters/kole/back.svg",
  12292. extra: 1426 / 1280,
  12293. bottom: 0.02
  12294. }
  12295. },
  12296. },
  12297. [
  12298. {
  12299. name: "Normal",
  12300. height: math.unit(4, "feet"),
  12301. default: true
  12302. },
  12303. ]
  12304. ))
  12305. characterMakers.push(() => makeCharacter(
  12306. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12307. {
  12308. front: {
  12309. height: math.unit(2.5, "feet"),
  12310. weight: math.unit(32, "lb"),
  12311. name: "Front",
  12312. image: {
  12313. source: "./media/characters/rufran/front.svg",
  12314. extra: 1313/885,
  12315. bottom: 94/1407
  12316. }
  12317. },
  12318. side: {
  12319. height: math.unit(2.5, "feet"),
  12320. weight: math.unit(32, "lb"),
  12321. name: "Side",
  12322. image: {
  12323. source: "./media/characters/rufran/side.svg",
  12324. extra: 1109/852,
  12325. bottom: 118/1227
  12326. }
  12327. },
  12328. back: {
  12329. height: math.unit(2.5, "feet"),
  12330. weight: math.unit(32, "lb"),
  12331. name: "Back",
  12332. image: {
  12333. source: "./media/characters/rufran/back.svg",
  12334. extra: 1280/878,
  12335. bottom: 131/1411
  12336. }
  12337. },
  12338. mouth: {
  12339. height: math.unit(1.13, "feet"),
  12340. name: "Mouth",
  12341. image: {
  12342. source: "./media/characters/rufran/mouth.svg"
  12343. }
  12344. },
  12345. foot: {
  12346. height: math.unit(1.33, "feet"),
  12347. name: "Foot",
  12348. image: {
  12349. source: "./media/characters/rufran/foot.svg"
  12350. }
  12351. },
  12352. koboldFront: {
  12353. height: math.unit(2 + 6 / 12, "feet"),
  12354. weight: math.unit(20, "lb"),
  12355. name: "Front (Kobold)",
  12356. image: {
  12357. source: "./media/characters/rufran/kobold-front.svg",
  12358. extra: 2041 / 1839,
  12359. bottom: 0.055
  12360. }
  12361. },
  12362. koboldBack: {
  12363. height: math.unit(2 + 6 / 12, "feet"),
  12364. weight: math.unit(20, "lb"),
  12365. name: "Back (Kobold)",
  12366. image: {
  12367. source: "./media/characters/rufran/kobold-back.svg",
  12368. extra: 2054 / 1839,
  12369. bottom: 0.01
  12370. }
  12371. },
  12372. koboldHand: {
  12373. height: math.unit(0.2166, "meters"),
  12374. name: "Hand (Kobold)",
  12375. image: {
  12376. source: "./media/characters/rufran/kobold-hand.svg"
  12377. }
  12378. },
  12379. koboldFoot: {
  12380. height: math.unit(0.185, "meters"),
  12381. name: "Foot (Kobold)",
  12382. image: {
  12383. source: "./media/characters/rufran/kobold-foot.svg"
  12384. }
  12385. },
  12386. },
  12387. [
  12388. {
  12389. name: "Micro",
  12390. height: math.unit(1, "inch")
  12391. },
  12392. {
  12393. name: "Normal",
  12394. height: math.unit(2 + 6 / 12, "feet"),
  12395. default: true
  12396. },
  12397. {
  12398. name: "Big",
  12399. height: math.unit(60, "feet")
  12400. },
  12401. {
  12402. name: "Macro",
  12403. height: math.unit(325, "feet")
  12404. },
  12405. ]
  12406. ))
  12407. characterMakers.push(() => makeCharacter(
  12408. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12409. {
  12410. front: {
  12411. height: math.unit(0.3, "meters"),
  12412. weight: math.unit(3.5, "kg"),
  12413. name: "Front",
  12414. image: {
  12415. source: "./media/characters/chip/front.svg",
  12416. extra: 748 / 674
  12417. }
  12418. },
  12419. },
  12420. [
  12421. {
  12422. name: "Micro",
  12423. height: math.unit(1, "inch"),
  12424. default: true
  12425. },
  12426. ]
  12427. ))
  12428. characterMakers.push(() => makeCharacter(
  12429. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12430. {
  12431. side: {
  12432. height: math.unit(2.3, "meters"),
  12433. weight: math.unit(3500, "lb"),
  12434. name: "Side",
  12435. image: {
  12436. source: "./media/characters/torvid/side.svg",
  12437. extra: 1972 / 722,
  12438. bottom: 0.035
  12439. }
  12440. },
  12441. },
  12442. [
  12443. {
  12444. name: "Normal",
  12445. height: math.unit(2.3, "meters"),
  12446. default: true
  12447. },
  12448. ]
  12449. ))
  12450. characterMakers.push(() => makeCharacter(
  12451. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12452. {
  12453. front: {
  12454. height: math.unit(2, "meters"),
  12455. weight: math.unit(150.5, "kg"),
  12456. name: "Front",
  12457. image: {
  12458. source: "./media/characters/susan/front.svg",
  12459. extra: 693 / 635,
  12460. bottom: 0.05
  12461. }
  12462. },
  12463. },
  12464. [
  12465. {
  12466. name: "Megamacro",
  12467. height: math.unit(505, "miles"),
  12468. default: true
  12469. },
  12470. ]
  12471. ))
  12472. characterMakers.push(() => makeCharacter(
  12473. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12474. {
  12475. front: {
  12476. height: math.unit(6, "feet"),
  12477. weight: math.unit(150, "lb"),
  12478. name: "Front",
  12479. image: {
  12480. source: "./media/characters/raindrops/front.svg",
  12481. extra: 2655 / 2461,
  12482. bottom: 49 / 2705
  12483. }
  12484. },
  12485. back: {
  12486. height: math.unit(6, "feet"),
  12487. weight: math.unit(150, "lb"),
  12488. name: "Back",
  12489. image: {
  12490. source: "./media/characters/raindrops/back.svg",
  12491. extra: 2574 / 2400,
  12492. bottom: 65 / 2634
  12493. }
  12494. },
  12495. },
  12496. [
  12497. {
  12498. name: "Micro",
  12499. height: math.unit(6, "inches")
  12500. },
  12501. {
  12502. name: "Normal",
  12503. height: math.unit(6 + 2 / 12, "feet")
  12504. },
  12505. {
  12506. name: "Macro",
  12507. height: math.unit(131, "feet"),
  12508. default: true
  12509. },
  12510. {
  12511. name: "Megamacro",
  12512. height: math.unit(15, "miles")
  12513. },
  12514. {
  12515. name: "Gigamacro",
  12516. height: math.unit(4000, "miles")
  12517. },
  12518. {
  12519. name: "Teramacro",
  12520. height: math.unit(315000, "miles")
  12521. },
  12522. ]
  12523. ))
  12524. characterMakers.push(() => makeCharacter(
  12525. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12526. {
  12527. front: {
  12528. height: math.unit(2.794, "meters"),
  12529. weight: math.unit(325, "kg"),
  12530. name: "Front",
  12531. image: {
  12532. source: "./media/characters/tezwa/front.svg",
  12533. extra: 2083 / 1906,
  12534. bottom: 0.031
  12535. }
  12536. },
  12537. foot: {
  12538. height: math.unit(0.687, "meters"),
  12539. name: "Foot",
  12540. image: {
  12541. source: "./media/characters/tezwa/foot.svg"
  12542. }
  12543. },
  12544. },
  12545. [
  12546. {
  12547. name: "Normal",
  12548. height: math.unit(9 + 2 / 12, "feet"),
  12549. default: true
  12550. },
  12551. ]
  12552. ))
  12553. characterMakers.push(() => makeCharacter(
  12554. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12555. {
  12556. front: {
  12557. height: math.unit(58, "feet"),
  12558. weight: math.unit(89000, "lb"),
  12559. name: "Front",
  12560. image: {
  12561. source: "./media/characters/typhus/front.svg",
  12562. extra: 816 / 800,
  12563. bottom: 0.065
  12564. }
  12565. },
  12566. },
  12567. [
  12568. {
  12569. name: "Macro",
  12570. height: math.unit(58, "feet"),
  12571. default: true
  12572. },
  12573. ]
  12574. ))
  12575. characterMakers.push(() => makeCharacter(
  12576. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12577. {
  12578. front: {
  12579. height: math.unit(12, "feet"),
  12580. weight: math.unit(6, "tonnes"),
  12581. name: "Front",
  12582. image: {
  12583. source: "./media/characters/lyra-von-wulf/front.svg",
  12584. extra: 1,
  12585. bottom: 0.10
  12586. }
  12587. },
  12588. frontMecha: {
  12589. height: math.unit(12, "feet"),
  12590. weight: math.unit(12, "tonnes"),
  12591. name: "Front (Mecha)",
  12592. image: {
  12593. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12594. extra: 1,
  12595. bottom: 0.042
  12596. }
  12597. },
  12598. maw: {
  12599. height: math.unit(2.2, "feet"),
  12600. name: "Maw",
  12601. image: {
  12602. source: "./media/characters/lyra-von-wulf/maw.svg"
  12603. }
  12604. },
  12605. },
  12606. [
  12607. {
  12608. name: "Normal",
  12609. height: math.unit(12, "feet"),
  12610. default: true
  12611. },
  12612. {
  12613. name: "Classic",
  12614. height: math.unit(50, "feet")
  12615. },
  12616. {
  12617. name: "Macro",
  12618. height: math.unit(500, "feet")
  12619. },
  12620. {
  12621. name: "Megamacro",
  12622. height: math.unit(1, "mile")
  12623. },
  12624. {
  12625. name: "Gigamacro",
  12626. height: math.unit(400, "miles")
  12627. },
  12628. {
  12629. name: "Teramacro",
  12630. height: math.unit(22000, "miles")
  12631. },
  12632. {
  12633. name: "Solarmacro",
  12634. height: math.unit(8600000, "miles")
  12635. },
  12636. {
  12637. name: "Galactic",
  12638. height: math.unit(1057000, "lightyears")
  12639. },
  12640. ]
  12641. ))
  12642. characterMakers.push(() => makeCharacter(
  12643. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12644. {
  12645. front: {
  12646. height: math.unit(6 + 10 / 12, "feet"),
  12647. weight: math.unit(150, "lb"),
  12648. name: "Front",
  12649. image: {
  12650. source: "./media/characters/dixon/front.svg",
  12651. extra: 3361 / 3209,
  12652. bottom: 0.01
  12653. }
  12654. },
  12655. },
  12656. [
  12657. {
  12658. name: "Normal",
  12659. height: math.unit(6 + 10 / 12, "feet"),
  12660. default: true
  12661. },
  12662. {
  12663. name: "Big",
  12664. height: math.unit(12, "meters")
  12665. },
  12666. {
  12667. name: "Macro",
  12668. height: math.unit(500, "meters")
  12669. },
  12670. {
  12671. name: "Megamacro",
  12672. height: math.unit(2, "km")
  12673. },
  12674. ]
  12675. ))
  12676. characterMakers.push(() => makeCharacter(
  12677. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12678. {
  12679. front: {
  12680. height: math.unit(185, "cm"),
  12681. weight: math.unit(68, "kg"),
  12682. name: "Front",
  12683. image: {
  12684. source: "./media/characters/kauko/front.svg",
  12685. extra: 1455 / 1421,
  12686. bottom: 0.03
  12687. }
  12688. },
  12689. back: {
  12690. height: math.unit(185, "cm"),
  12691. weight: math.unit(68, "kg"),
  12692. name: "Back",
  12693. image: {
  12694. source: "./media/characters/kauko/back.svg",
  12695. extra: 1455 / 1421,
  12696. bottom: 0.004
  12697. }
  12698. },
  12699. },
  12700. [
  12701. {
  12702. name: "Normal",
  12703. height: math.unit(185, "cm"),
  12704. default: true
  12705. },
  12706. ]
  12707. ))
  12708. characterMakers.push(() => makeCharacter(
  12709. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12710. {
  12711. front: {
  12712. height: math.unit(6, "feet"),
  12713. weight: math.unit(150, "kg"),
  12714. name: "Front",
  12715. image: {
  12716. source: "./media/characters/varg/front.svg",
  12717. extra: 1108 / 1018,
  12718. bottom: 0.0375
  12719. }
  12720. },
  12721. },
  12722. [
  12723. {
  12724. name: "Normal",
  12725. height: math.unit(5, "meters")
  12726. },
  12727. {
  12728. name: "Macro",
  12729. height: math.unit(200, "meters")
  12730. },
  12731. {
  12732. name: "Megamacro",
  12733. height: math.unit(20, "kilometers")
  12734. },
  12735. {
  12736. name: "True Size",
  12737. height: math.unit(211, "km"),
  12738. default: true
  12739. },
  12740. {
  12741. name: "Gigamacro",
  12742. height: math.unit(1000, "km")
  12743. },
  12744. {
  12745. name: "Gigamacro+",
  12746. height: math.unit(8000, "km")
  12747. },
  12748. {
  12749. name: "Teramacro",
  12750. height: math.unit(1000000, "km")
  12751. },
  12752. ]
  12753. ))
  12754. characterMakers.push(() => makeCharacter(
  12755. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12756. {
  12757. front: {
  12758. height: math.unit(7 + 7 / 12, "feet"),
  12759. weight: math.unit(267, "lb"),
  12760. name: "Front",
  12761. image: {
  12762. source: "./media/characters/dayza/front.svg",
  12763. extra: 1262 / 1200,
  12764. bottom: 0.035
  12765. }
  12766. },
  12767. side: {
  12768. height: math.unit(7 + 7 / 12, "feet"),
  12769. weight: math.unit(267, "lb"),
  12770. name: "Side",
  12771. image: {
  12772. source: "./media/characters/dayza/side.svg",
  12773. extra: 1295 / 1245,
  12774. bottom: 0.05
  12775. }
  12776. },
  12777. back: {
  12778. height: math.unit(7 + 7 / 12, "feet"),
  12779. weight: math.unit(267, "lb"),
  12780. name: "Back",
  12781. image: {
  12782. source: "./media/characters/dayza/back.svg",
  12783. extra: 1241 / 1170
  12784. }
  12785. },
  12786. },
  12787. [
  12788. {
  12789. name: "Normal",
  12790. height: math.unit(7 + 7 / 12, "feet"),
  12791. default: true
  12792. },
  12793. {
  12794. name: "Macro",
  12795. height: math.unit(155, "feet")
  12796. },
  12797. ]
  12798. ))
  12799. characterMakers.push(() => makeCharacter(
  12800. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12801. {
  12802. front: {
  12803. height: math.unit(6 + 5 / 12, "feet"),
  12804. weight: math.unit(160, "lb"),
  12805. name: "Front",
  12806. image: {
  12807. source: "./media/characters/xanthos/front.svg",
  12808. extra: 1,
  12809. bottom: 0.04
  12810. }
  12811. },
  12812. back: {
  12813. height: math.unit(6 + 5 / 12, "feet"),
  12814. weight: math.unit(160, "lb"),
  12815. name: "Back",
  12816. image: {
  12817. source: "./media/characters/xanthos/back.svg",
  12818. extra: 1,
  12819. bottom: 0.03
  12820. }
  12821. },
  12822. hand: {
  12823. height: math.unit(0.928, "feet"),
  12824. name: "Hand",
  12825. image: {
  12826. source: "./media/characters/xanthos/hand.svg"
  12827. }
  12828. },
  12829. foot: {
  12830. height: math.unit(1.286, "feet"),
  12831. name: "Foot",
  12832. image: {
  12833. source: "./media/characters/xanthos/foot.svg"
  12834. }
  12835. },
  12836. },
  12837. [
  12838. {
  12839. name: "Normal",
  12840. height: math.unit(6 + 5 / 12, "feet"),
  12841. default: true
  12842. },
  12843. {
  12844. name: "Normal+",
  12845. height: math.unit(6, "meters")
  12846. },
  12847. {
  12848. name: "Macro",
  12849. height: math.unit(40, "feet")
  12850. },
  12851. {
  12852. name: "Macro+",
  12853. height: math.unit(200, "meters")
  12854. },
  12855. {
  12856. name: "Megamacro",
  12857. height: math.unit(20, "km")
  12858. },
  12859. {
  12860. name: "Megamacro+",
  12861. height: math.unit(100, "km")
  12862. },
  12863. {
  12864. name: "Gigamacro",
  12865. height: math.unit(200, "megameters")
  12866. },
  12867. {
  12868. name: "Gigamacro+",
  12869. height: math.unit(1.5, "gigameters")
  12870. },
  12871. ]
  12872. ))
  12873. characterMakers.push(() => makeCharacter(
  12874. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12875. {
  12876. front: {
  12877. height: math.unit(6 + 3 / 12, "feet"),
  12878. weight: math.unit(215, "lb"),
  12879. name: "Front",
  12880. image: {
  12881. source: "./media/characters/grynn/front.svg",
  12882. extra: 4627 / 4209,
  12883. bottom: 0.047
  12884. }
  12885. },
  12886. },
  12887. [
  12888. {
  12889. name: "Micro",
  12890. height: math.unit(6, "inches")
  12891. },
  12892. {
  12893. name: "Normal",
  12894. height: math.unit(6 + 3 / 12, "feet"),
  12895. default: true
  12896. },
  12897. {
  12898. name: "Big",
  12899. height: math.unit(104, "feet")
  12900. },
  12901. {
  12902. name: "Macro",
  12903. height: math.unit(944, "feet")
  12904. },
  12905. {
  12906. name: "Macro+",
  12907. height: math.unit(9480, "feet")
  12908. },
  12909. {
  12910. name: "Megamacro",
  12911. height: math.unit(78752, "feet")
  12912. },
  12913. {
  12914. name: "Megamacro+",
  12915. height: math.unit(630128, "feet")
  12916. },
  12917. {
  12918. name: "Megamacro++",
  12919. height: math.unit(3150695, "feet")
  12920. },
  12921. ]
  12922. ))
  12923. characterMakers.push(() => makeCharacter(
  12924. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12925. {
  12926. front: {
  12927. height: math.unit(7 + 5 / 12, "feet"),
  12928. weight: math.unit(450, "lb"),
  12929. name: "Front",
  12930. image: {
  12931. source: "./media/characters/mocha-aura/front.svg",
  12932. extra: 1907 / 1817,
  12933. bottom: 0.04
  12934. }
  12935. },
  12936. back: {
  12937. height: math.unit(7 + 5 / 12, "feet"),
  12938. weight: math.unit(450, "lb"),
  12939. name: "Back",
  12940. image: {
  12941. source: "./media/characters/mocha-aura/back.svg",
  12942. extra: 1900 / 1825,
  12943. bottom: 0.045
  12944. }
  12945. },
  12946. },
  12947. [
  12948. {
  12949. name: "Nano",
  12950. height: math.unit(1, "nm")
  12951. },
  12952. {
  12953. name: "Megamicro",
  12954. height: math.unit(1, "mm")
  12955. },
  12956. {
  12957. name: "Micro",
  12958. height: math.unit(3, "inches")
  12959. },
  12960. {
  12961. name: "Normal",
  12962. height: math.unit(7 + 5 / 12, "feet"),
  12963. default: true
  12964. },
  12965. {
  12966. name: "Macro",
  12967. height: math.unit(30, "feet")
  12968. },
  12969. {
  12970. name: "Megamacro",
  12971. height: math.unit(3500, "feet")
  12972. },
  12973. {
  12974. name: "Teramacro",
  12975. height: math.unit(500000, "miles")
  12976. },
  12977. {
  12978. name: "Petamacro",
  12979. height: math.unit(50000000000000000, "parsecs")
  12980. },
  12981. ]
  12982. ))
  12983. characterMakers.push(() => makeCharacter(
  12984. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12985. {
  12986. front: {
  12987. height: math.unit(6, "feet"),
  12988. weight: math.unit(150, "lb"),
  12989. name: "Front",
  12990. image: {
  12991. source: "./media/characters/ilisha-devya/front.svg",
  12992. extra: 1,
  12993. bottom: 0.175
  12994. }
  12995. },
  12996. back: {
  12997. height: math.unit(6, "feet"),
  12998. weight: math.unit(150, "lb"),
  12999. name: "Back",
  13000. image: {
  13001. source: "./media/characters/ilisha-devya/back.svg",
  13002. extra: 1,
  13003. bottom: 0.015
  13004. }
  13005. },
  13006. },
  13007. [
  13008. {
  13009. name: "Macro",
  13010. height: math.unit(500, "feet"),
  13011. default: true
  13012. },
  13013. {
  13014. name: "Megamacro",
  13015. height: math.unit(10, "miles")
  13016. },
  13017. {
  13018. name: "Gigamacro",
  13019. height: math.unit(100000, "miles")
  13020. },
  13021. {
  13022. name: "Examacro",
  13023. height: math.unit(1e9, "lightyears")
  13024. },
  13025. {
  13026. name: "Omniversal",
  13027. height: math.unit(1e33, "lightyears")
  13028. },
  13029. {
  13030. name: "Beyond Infinite",
  13031. height: math.unit(1e100, "lightyears")
  13032. },
  13033. ]
  13034. ))
  13035. characterMakers.push(() => makeCharacter(
  13036. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13037. {
  13038. Side: {
  13039. height: math.unit(6, "feet"),
  13040. weight: math.unit(150, "lb"),
  13041. name: "Side",
  13042. image: {
  13043. source: "./media/characters/mira/side.svg",
  13044. extra: 900 / 799,
  13045. bottom: 0.02
  13046. }
  13047. },
  13048. },
  13049. [
  13050. {
  13051. name: "Human Size",
  13052. height: math.unit(6, "feet")
  13053. },
  13054. {
  13055. name: "Macro",
  13056. height: math.unit(100, "feet"),
  13057. default: true
  13058. },
  13059. {
  13060. name: "Megamacro",
  13061. height: math.unit(10, "miles")
  13062. },
  13063. {
  13064. name: "Gigamacro",
  13065. height: math.unit(25000, "miles")
  13066. },
  13067. {
  13068. name: "Teramacro",
  13069. height: math.unit(300, "AU")
  13070. },
  13071. {
  13072. name: "Full Size",
  13073. height: math.unit(4.5e10, "lightyears")
  13074. },
  13075. ]
  13076. ))
  13077. characterMakers.push(() => makeCharacter(
  13078. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13079. {
  13080. front: {
  13081. height: math.unit(6, "feet"),
  13082. weight: math.unit(150, "lb"),
  13083. name: "Front",
  13084. image: {
  13085. source: "./media/characters/holly/front.svg",
  13086. extra: 639 / 606
  13087. }
  13088. },
  13089. back: {
  13090. height: math.unit(6, "feet"),
  13091. weight: math.unit(150, "lb"),
  13092. name: "Back",
  13093. image: {
  13094. source: "./media/characters/holly/back.svg",
  13095. extra: 623 / 598
  13096. }
  13097. },
  13098. frontWorking: {
  13099. height: math.unit(6, "feet"),
  13100. weight: math.unit(150, "lb"),
  13101. name: "Front (Working)",
  13102. image: {
  13103. source: "./media/characters/holly/front-working.svg",
  13104. extra: 607 / 577,
  13105. bottom: 0.048
  13106. }
  13107. },
  13108. },
  13109. [
  13110. {
  13111. name: "Normal",
  13112. height: math.unit(12 + 3 / 12, "feet"),
  13113. default: true
  13114. },
  13115. ]
  13116. ))
  13117. characterMakers.push(() => makeCharacter(
  13118. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13119. {
  13120. front: {
  13121. height: math.unit(6, "feet"),
  13122. weight: math.unit(150, "lb"),
  13123. name: "Front",
  13124. image: {
  13125. source: "./media/characters/porter/front.svg",
  13126. extra: 1,
  13127. bottom: 0.01
  13128. }
  13129. },
  13130. frontRobes: {
  13131. height: math.unit(6, "feet"),
  13132. weight: math.unit(150, "lb"),
  13133. name: "Front (Robes)",
  13134. image: {
  13135. source: "./media/characters/porter/front-robes.svg",
  13136. extra: 1.01,
  13137. bottom: 0.01
  13138. }
  13139. },
  13140. },
  13141. [
  13142. {
  13143. name: "Normal",
  13144. height: math.unit(11 + 9 / 12, "feet"),
  13145. default: true
  13146. },
  13147. ]
  13148. ))
  13149. characterMakers.push(() => makeCharacter(
  13150. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13151. {
  13152. legendary: {
  13153. height: math.unit(6, "feet"),
  13154. weight: math.unit(150, "lb"),
  13155. name: "Legendary",
  13156. image: {
  13157. source: "./media/characters/lucy/legendary.svg",
  13158. extra: 1355 / 1100,
  13159. bottom: 0.045
  13160. }
  13161. },
  13162. },
  13163. [
  13164. {
  13165. name: "Legendary",
  13166. height: math.unit(86882 * 2, "miles"),
  13167. default: true
  13168. },
  13169. ]
  13170. ))
  13171. characterMakers.push(() => makeCharacter(
  13172. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13173. {
  13174. front: {
  13175. height: math.unit(6, "feet"),
  13176. weight: math.unit(150, "lb"),
  13177. name: "Front",
  13178. image: {
  13179. source: "./media/characters/drusilla/front.svg",
  13180. extra: 678 / 635,
  13181. bottom: 0.03
  13182. }
  13183. },
  13184. back: {
  13185. height: math.unit(6, "feet"),
  13186. weight: math.unit(150, "lb"),
  13187. name: "Back",
  13188. image: {
  13189. source: "./media/characters/drusilla/back.svg",
  13190. extra: 678 / 635,
  13191. bottom: 0.005
  13192. }
  13193. },
  13194. },
  13195. [
  13196. {
  13197. name: "Macro",
  13198. height: math.unit(100, "feet")
  13199. },
  13200. {
  13201. name: "Canon Height",
  13202. height: math.unit(2000, "feet"),
  13203. default: true
  13204. },
  13205. ]
  13206. ))
  13207. characterMakers.push(() => makeCharacter(
  13208. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13209. {
  13210. front: {
  13211. height: math.unit(6, "feet"),
  13212. weight: math.unit(180, "lb"),
  13213. name: "Front",
  13214. image: {
  13215. source: "./media/characters/renard-thatch/front.svg",
  13216. extra: 2411 / 2275,
  13217. bottom: 0.01
  13218. }
  13219. },
  13220. frontPosing: {
  13221. height: math.unit(6, "feet"),
  13222. weight: math.unit(180, "lb"),
  13223. name: "Front (Posing)",
  13224. image: {
  13225. source: "./media/characters/renard-thatch/front-posing.svg",
  13226. extra: 2381 / 2261,
  13227. bottom: 0.01
  13228. }
  13229. },
  13230. back: {
  13231. height: math.unit(6, "feet"),
  13232. weight: math.unit(180, "lb"),
  13233. name: "Back",
  13234. image: {
  13235. source: "./media/characters/renard-thatch/back.svg",
  13236. extra: 2428 / 2288
  13237. }
  13238. },
  13239. },
  13240. [
  13241. {
  13242. name: "Micro",
  13243. height: math.unit(3, "inches")
  13244. },
  13245. {
  13246. name: "Default",
  13247. height: math.unit(6, "feet"),
  13248. default: true
  13249. },
  13250. {
  13251. name: "Macro",
  13252. height: math.unit(75, "feet")
  13253. },
  13254. ]
  13255. ))
  13256. characterMakers.push(() => makeCharacter(
  13257. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13258. {
  13259. front: {
  13260. height: math.unit(1450, "feet"),
  13261. weight: math.unit(1.21e6, "tons"),
  13262. name: "Front",
  13263. image: {
  13264. source: "./media/characters/sekvra/front.svg",
  13265. extra: 1,
  13266. bottom: 0.03
  13267. }
  13268. },
  13269. frontClothed: {
  13270. height: math.unit(1450, "feet"),
  13271. weight: math.unit(1.21e6, "tons"),
  13272. name: "Front (Clothed)",
  13273. image: {
  13274. source: "./media/characters/sekvra/front-clothed.svg",
  13275. extra: 1,
  13276. bottom: 0.03
  13277. }
  13278. },
  13279. side: {
  13280. height: math.unit(1450, "feet"),
  13281. weight: math.unit(1.21e6, "tons"),
  13282. name: "Side",
  13283. image: {
  13284. source: "./media/characters/sekvra/side.svg",
  13285. extra: 1,
  13286. bottom: 0.025
  13287. }
  13288. },
  13289. back: {
  13290. height: math.unit(1450, "feet"),
  13291. weight: math.unit(1.21e6, "tons"),
  13292. name: "Back",
  13293. image: {
  13294. source: "./media/characters/sekvra/back.svg",
  13295. extra: 1,
  13296. bottom: 0.005
  13297. }
  13298. },
  13299. },
  13300. [
  13301. {
  13302. name: "Macro",
  13303. height: math.unit(1450, "feet"),
  13304. default: true
  13305. },
  13306. {
  13307. name: "Megamacro",
  13308. height: math.unit(15000, "feet")
  13309. },
  13310. ]
  13311. ))
  13312. characterMakers.push(() => makeCharacter(
  13313. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13314. {
  13315. front: {
  13316. height: math.unit(6, "feet"),
  13317. weight: math.unit(150, "lb"),
  13318. name: "Front",
  13319. image: {
  13320. source: "./media/characters/carmine/front.svg",
  13321. extra: 1,
  13322. bottom: 0.035
  13323. }
  13324. },
  13325. frontArmor: {
  13326. height: math.unit(6, "feet"),
  13327. weight: math.unit(150, "lb"),
  13328. name: "Front (Armor)",
  13329. image: {
  13330. source: "./media/characters/carmine/front-armor.svg",
  13331. extra: 1,
  13332. bottom: 0.035
  13333. }
  13334. },
  13335. },
  13336. [
  13337. {
  13338. name: "Large",
  13339. height: math.unit(1, "mile")
  13340. },
  13341. {
  13342. name: "Huge",
  13343. height: math.unit(40, "miles"),
  13344. default: true
  13345. },
  13346. {
  13347. name: "Colossal",
  13348. height: math.unit(2500, "miles")
  13349. },
  13350. ]
  13351. ))
  13352. characterMakers.push(() => makeCharacter(
  13353. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13354. {
  13355. front: {
  13356. height: math.unit(6, "feet"),
  13357. weight: math.unit(150, "lb"),
  13358. name: "Front",
  13359. image: {
  13360. source: "./media/characters/elyssia/front.svg",
  13361. extra: 2201 / 2035,
  13362. bottom: 0.05
  13363. }
  13364. },
  13365. frontClothed: {
  13366. height: math.unit(6, "feet"),
  13367. weight: math.unit(150, "lb"),
  13368. name: "Front (Clothed)",
  13369. image: {
  13370. source: "./media/characters/elyssia/front-clothed.svg",
  13371. extra: 2201 / 2035,
  13372. bottom: 0.05
  13373. }
  13374. },
  13375. back: {
  13376. height: math.unit(6, "feet"),
  13377. weight: math.unit(150, "lb"),
  13378. name: "Back",
  13379. image: {
  13380. source: "./media/characters/elyssia/back.svg",
  13381. extra: 2201 / 2035,
  13382. bottom: 0.013
  13383. }
  13384. },
  13385. },
  13386. [
  13387. {
  13388. name: "Smaller",
  13389. height: math.unit(150, "feet")
  13390. },
  13391. {
  13392. name: "Standard",
  13393. height: math.unit(1400, "feet"),
  13394. default: true
  13395. },
  13396. {
  13397. name: "Distracted",
  13398. height: math.unit(15000, "feet")
  13399. },
  13400. ]
  13401. ))
  13402. characterMakers.push(() => makeCharacter(
  13403. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13404. {
  13405. front: {
  13406. height: math.unit(7 + 4 / 12, "feet"),
  13407. weight: math.unit(500, "lb"),
  13408. name: "Front",
  13409. image: {
  13410. source: "./media/characters/geno-maxwell/front.svg",
  13411. extra: 2207 / 2040,
  13412. bottom: 0.015
  13413. }
  13414. },
  13415. },
  13416. [
  13417. {
  13418. name: "Micro",
  13419. height: math.unit(3, "inches")
  13420. },
  13421. {
  13422. name: "Normal",
  13423. height: math.unit(7 + 4 / 12, "feet"),
  13424. default: true
  13425. },
  13426. {
  13427. name: "Macro",
  13428. height: math.unit(220, "feet")
  13429. },
  13430. {
  13431. name: "Megamacro",
  13432. height: math.unit(11, "miles")
  13433. },
  13434. ]
  13435. ))
  13436. characterMakers.push(() => makeCharacter(
  13437. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13438. {
  13439. front: {
  13440. height: math.unit(7 + 4 / 12, "feet"),
  13441. weight: math.unit(500, "lb"),
  13442. name: "Front",
  13443. image: {
  13444. source: "./media/characters/regena-maxwell/front.svg",
  13445. extra: 3115 / 2770,
  13446. bottom: 0.02
  13447. }
  13448. },
  13449. },
  13450. [
  13451. {
  13452. name: "Normal",
  13453. height: math.unit(7 + 4 / 12, "feet"),
  13454. default: true
  13455. },
  13456. {
  13457. name: "Macro",
  13458. height: math.unit(220, "feet")
  13459. },
  13460. {
  13461. name: "Megamacro",
  13462. height: math.unit(11, "miles")
  13463. },
  13464. ]
  13465. ))
  13466. characterMakers.push(() => makeCharacter(
  13467. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13468. {
  13469. front: {
  13470. height: math.unit(6, "feet"),
  13471. weight: math.unit(150, "lb"),
  13472. name: "Front",
  13473. image: {
  13474. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13475. extra: 860 / 690,
  13476. bottom: 0.03
  13477. }
  13478. },
  13479. },
  13480. [
  13481. {
  13482. name: "Normal",
  13483. height: math.unit(1.7, "meters"),
  13484. default: true
  13485. },
  13486. ]
  13487. ))
  13488. characterMakers.push(() => makeCharacter(
  13489. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13490. {
  13491. front: {
  13492. height: math.unit(6, "feet"),
  13493. weight: math.unit(150, "lb"),
  13494. name: "Front",
  13495. image: {
  13496. source: "./media/characters/quilly/front.svg",
  13497. extra: 890 / 776
  13498. }
  13499. },
  13500. },
  13501. [
  13502. {
  13503. name: "Gigamacro",
  13504. height: math.unit(404090, "miles"),
  13505. default: true
  13506. },
  13507. ]
  13508. ))
  13509. characterMakers.push(() => makeCharacter(
  13510. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13511. {
  13512. front: {
  13513. height: math.unit(7 + 8 / 12, "feet"),
  13514. weight: math.unit(350, "lb"),
  13515. name: "Front",
  13516. image: {
  13517. source: "./media/characters/tempest/front.svg",
  13518. extra: 1175 / 1086,
  13519. bottom: 0.02
  13520. }
  13521. },
  13522. },
  13523. [
  13524. {
  13525. name: "Normal",
  13526. height: math.unit(7 + 8 / 12, "feet"),
  13527. default: true
  13528. },
  13529. ]
  13530. ))
  13531. characterMakers.push(() => makeCharacter(
  13532. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13533. {
  13534. side: {
  13535. height: math.unit(4 + 5 / 12, "feet"),
  13536. weight: math.unit(80, "lb"),
  13537. name: "Side",
  13538. image: {
  13539. source: "./media/characters/rodger/side.svg",
  13540. extra: 1235 / 1118
  13541. }
  13542. },
  13543. },
  13544. [
  13545. {
  13546. name: "Micro",
  13547. height: math.unit(1, "inch")
  13548. },
  13549. {
  13550. name: "Normal",
  13551. height: math.unit(4 + 5 / 12, "feet"),
  13552. default: true
  13553. },
  13554. {
  13555. name: "Macro",
  13556. height: math.unit(120, "feet")
  13557. },
  13558. ]
  13559. ))
  13560. characterMakers.push(() => makeCharacter(
  13561. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13562. {
  13563. front: {
  13564. height: math.unit(6, "feet"),
  13565. weight: math.unit(150, "lb"),
  13566. name: "Front",
  13567. image: {
  13568. source: "./media/characters/danyel/front.svg",
  13569. extra: 1185 / 1123,
  13570. bottom: 0.05
  13571. }
  13572. },
  13573. },
  13574. [
  13575. {
  13576. name: "Shrunken",
  13577. height: math.unit(0.5, "mm")
  13578. },
  13579. {
  13580. name: "Micro",
  13581. height: math.unit(1, "mm"),
  13582. default: true
  13583. },
  13584. {
  13585. name: "Upsized",
  13586. height: math.unit(5 + 5 / 12, "feet")
  13587. },
  13588. ]
  13589. ))
  13590. characterMakers.push(() => makeCharacter(
  13591. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13592. {
  13593. front: {
  13594. height: math.unit(5 + 6 / 12, "feet"),
  13595. weight: math.unit(200, "lb"),
  13596. name: "Front",
  13597. image: {
  13598. source: "./media/characters/vivian-bijoux/front.svg",
  13599. extra: 1,
  13600. bottom: 0.072
  13601. }
  13602. },
  13603. },
  13604. [
  13605. {
  13606. name: "Normal",
  13607. height: math.unit(5 + 6 / 12, "feet"),
  13608. default: true
  13609. },
  13610. {
  13611. name: "Bad Dream",
  13612. height: math.unit(500, "feet")
  13613. },
  13614. {
  13615. name: "Nightmare",
  13616. height: math.unit(500, "miles")
  13617. },
  13618. ]
  13619. ))
  13620. characterMakers.push(() => makeCharacter(
  13621. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13622. {
  13623. front: {
  13624. height: math.unit(6 + 1 / 12, "feet"),
  13625. weight: math.unit(260, "lb"),
  13626. name: "Front",
  13627. image: {
  13628. source: "./media/characters/zeta/front.svg",
  13629. extra: 1968 / 1889,
  13630. bottom: 0.06
  13631. }
  13632. },
  13633. back: {
  13634. height: math.unit(6 + 1 / 12, "feet"),
  13635. weight: math.unit(260, "lb"),
  13636. name: "Back",
  13637. image: {
  13638. source: "./media/characters/zeta/back.svg",
  13639. extra: 1944 / 1858,
  13640. bottom: 0.03
  13641. }
  13642. },
  13643. hand: {
  13644. height: math.unit(1.112, "feet"),
  13645. name: "Hand",
  13646. image: {
  13647. source: "./media/characters/zeta/hand.svg"
  13648. }
  13649. },
  13650. foot: {
  13651. height: math.unit(1.48, "feet"),
  13652. name: "Foot",
  13653. image: {
  13654. source: "./media/characters/zeta/foot.svg"
  13655. }
  13656. },
  13657. },
  13658. [
  13659. {
  13660. name: "Micro",
  13661. height: math.unit(6, "inches")
  13662. },
  13663. {
  13664. name: "Normal",
  13665. height: math.unit(6 + 1 / 12, "feet"),
  13666. default: true
  13667. },
  13668. {
  13669. name: "Macro",
  13670. height: math.unit(20, "feet")
  13671. },
  13672. ]
  13673. ))
  13674. characterMakers.push(() => makeCharacter(
  13675. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13676. {
  13677. front: {
  13678. height: math.unit(6, "feet"),
  13679. weight: math.unit(150, "lb"),
  13680. name: "Front",
  13681. image: {
  13682. source: "./media/characters/jamie-larsen/front.svg",
  13683. extra: 962 / 933,
  13684. bottom: 0.02
  13685. }
  13686. },
  13687. back: {
  13688. height: math.unit(6, "feet"),
  13689. weight: math.unit(150, "lb"),
  13690. name: "Back",
  13691. image: {
  13692. source: "./media/characters/jamie-larsen/back.svg",
  13693. extra: 997 / 946
  13694. }
  13695. },
  13696. },
  13697. [
  13698. {
  13699. name: "Macro",
  13700. height: math.unit(28 + 7 / 12, "feet"),
  13701. default: true
  13702. },
  13703. {
  13704. name: "Macro+",
  13705. height: math.unit(180, "feet")
  13706. },
  13707. {
  13708. name: "Megamacro",
  13709. height: math.unit(10, "miles")
  13710. },
  13711. {
  13712. name: "Gigamacro",
  13713. height: math.unit(200000, "miles")
  13714. },
  13715. ]
  13716. ))
  13717. characterMakers.push(() => makeCharacter(
  13718. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13719. {
  13720. front: {
  13721. height: math.unit(6, "feet"),
  13722. weight: math.unit(120, "lb"),
  13723. name: "Front",
  13724. image: {
  13725. source: "./media/characters/vance/front.svg",
  13726. extra: 1980 / 1890,
  13727. bottom: 0.09
  13728. }
  13729. },
  13730. back: {
  13731. height: math.unit(6, "feet"),
  13732. weight: math.unit(120, "lb"),
  13733. name: "Back",
  13734. image: {
  13735. source: "./media/characters/vance/back.svg",
  13736. extra: 2081 / 1994,
  13737. bottom: 0.014
  13738. }
  13739. },
  13740. hand: {
  13741. height: math.unit(0.88, "feet"),
  13742. name: "Hand",
  13743. image: {
  13744. source: "./media/characters/vance/hand.svg"
  13745. }
  13746. },
  13747. foot: {
  13748. height: math.unit(0.64, "feet"),
  13749. name: "Foot",
  13750. image: {
  13751. source: "./media/characters/vance/foot.svg"
  13752. }
  13753. },
  13754. },
  13755. [
  13756. {
  13757. name: "Small",
  13758. height: math.unit(90, "feet"),
  13759. default: true
  13760. },
  13761. {
  13762. name: "Macro",
  13763. height: math.unit(100, "meters")
  13764. },
  13765. {
  13766. name: "Megamacro",
  13767. height: math.unit(15, "miles")
  13768. },
  13769. ]
  13770. ))
  13771. characterMakers.push(() => makeCharacter(
  13772. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13773. {
  13774. front: {
  13775. height: math.unit(6, "feet"),
  13776. weight: math.unit(180, "lb"),
  13777. name: "Front",
  13778. image: {
  13779. source: "./media/characters/xochitl/front.svg",
  13780. extra: 2297 / 2261,
  13781. bottom: 0.065
  13782. }
  13783. },
  13784. back: {
  13785. height: math.unit(6, "feet"),
  13786. weight: math.unit(180, "lb"),
  13787. name: "Back",
  13788. image: {
  13789. source: "./media/characters/xochitl/back.svg",
  13790. extra: 2386 / 2354,
  13791. bottom: 0.01
  13792. }
  13793. },
  13794. foot: {
  13795. height: math.unit(6 / 5 * 1.15, "feet"),
  13796. weight: math.unit(150, "lb"),
  13797. name: "Foot",
  13798. image: {
  13799. source: "./media/characters/xochitl/foot.svg"
  13800. }
  13801. },
  13802. },
  13803. [
  13804. {
  13805. name: "Macro",
  13806. height: math.unit(80, "feet")
  13807. },
  13808. {
  13809. name: "Macro+",
  13810. height: math.unit(400, "feet"),
  13811. default: true
  13812. },
  13813. {
  13814. name: "Gigamacro",
  13815. height: math.unit(80000, "miles")
  13816. },
  13817. {
  13818. name: "Gigamacro+",
  13819. height: math.unit(400000, "miles")
  13820. },
  13821. {
  13822. name: "Teramacro",
  13823. height: math.unit(300, "AU")
  13824. },
  13825. ]
  13826. ))
  13827. characterMakers.push(() => makeCharacter(
  13828. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13829. {
  13830. front: {
  13831. height: math.unit(6, "feet"),
  13832. weight: math.unit(150, "lb"),
  13833. name: "Front",
  13834. image: {
  13835. source: "./media/characters/vincent/front.svg",
  13836. extra: 1130 / 1080,
  13837. bottom: 0.055
  13838. }
  13839. },
  13840. beak: {
  13841. height: math.unit(6 * 0.1, "feet"),
  13842. name: "Beak",
  13843. image: {
  13844. source: "./media/characters/vincent/beak.svg"
  13845. }
  13846. },
  13847. hand: {
  13848. height: math.unit(6 * 0.85, "feet"),
  13849. weight: math.unit(150, "lb"),
  13850. name: "Hand",
  13851. image: {
  13852. source: "./media/characters/vincent/hand.svg"
  13853. }
  13854. },
  13855. foot: {
  13856. height: math.unit(6 * 0.19, "feet"),
  13857. weight: math.unit(150, "lb"),
  13858. name: "Foot",
  13859. image: {
  13860. source: "./media/characters/vincent/foot.svg"
  13861. }
  13862. },
  13863. },
  13864. [
  13865. {
  13866. name: "Base",
  13867. height: math.unit(6 + 5 / 12, "feet"),
  13868. default: true
  13869. },
  13870. {
  13871. name: "Macro",
  13872. height: math.unit(300, "feet")
  13873. },
  13874. {
  13875. name: "Megamacro",
  13876. height: math.unit(2, "miles")
  13877. },
  13878. {
  13879. name: "Gigamacro",
  13880. height: math.unit(1000, "miles")
  13881. },
  13882. ]
  13883. ))
  13884. characterMakers.push(() => makeCharacter(
  13885. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13886. {
  13887. front: {
  13888. height: math.unit(2, "meters"),
  13889. weight: math.unit(500, "kg"),
  13890. name: "Front",
  13891. image: {
  13892. source: "./media/characters/coatl/front.svg",
  13893. extra: 3948 / 3500,
  13894. bottom: 0.082
  13895. }
  13896. },
  13897. },
  13898. [
  13899. {
  13900. name: "Normal",
  13901. height: math.unit(4, "meters")
  13902. },
  13903. {
  13904. name: "Macro",
  13905. height: math.unit(100, "meters"),
  13906. default: true
  13907. },
  13908. {
  13909. name: "Macro+",
  13910. height: math.unit(300, "meters")
  13911. },
  13912. {
  13913. name: "Megamacro",
  13914. height: math.unit(3, "gigameters")
  13915. },
  13916. {
  13917. name: "Megamacro+",
  13918. height: math.unit(300, "terameters")
  13919. },
  13920. {
  13921. name: "Megamacro++",
  13922. height: math.unit(3, "lightyears")
  13923. },
  13924. ]
  13925. ))
  13926. characterMakers.push(() => makeCharacter(
  13927. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13928. {
  13929. front: {
  13930. height: math.unit(6, "feet"),
  13931. weight: math.unit(50, "kg"),
  13932. name: "front",
  13933. image: {
  13934. source: "./media/characters/shiroryu/front.svg",
  13935. extra: 1990 / 1935
  13936. }
  13937. },
  13938. },
  13939. [
  13940. {
  13941. name: "Mortal Mingling",
  13942. height: math.unit(3, "meters")
  13943. },
  13944. {
  13945. name: "Kaiju-ish",
  13946. height: math.unit(250, "meters")
  13947. },
  13948. {
  13949. name: "Somewhat Godly",
  13950. height: math.unit(400, "km"),
  13951. default: true
  13952. },
  13953. {
  13954. name: "Planetary",
  13955. height: math.unit(300, "megameters")
  13956. },
  13957. {
  13958. name: "Galaxy-dwarfing",
  13959. height: math.unit(450, "kiloparsecs")
  13960. },
  13961. {
  13962. name: "Universe Eater",
  13963. height: math.unit(150, "gigaparsecs")
  13964. },
  13965. {
  13966. name: "Almost Immeasurable",
  13967. height: math.unit(1.3e266, "yottaparsecs")
  13968. },
  13969. ]
  13970. ))
  13971. characterMakers.push(() => makeCharacter(
  13972. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13973. {
  13974. front: {
  13975. height: math.unit(6, "feet"),
  13976. weight: math.unit(150, "lb"),
  13977. name: "Front",
  13978. image: {
  13979. source: "./media/characters/umeko/front.svg",
  13980. extra: 1,
  13981. bottom: 0.019
  13982. }
  13983. },
  13984. frontArmored: {
  13985. height: math.unit(6, "feet"),
  13986. weight: math.unit(150, "lb"),
  13987. name: "Front (Armored)",
  13988. image: {
  13989. source: "./media/characters/umeko/front-armored.svg",
  13990. extra: 1,
  13991. bottom: 0.021
  13992. }
  13993. },
  13994. },
  13995. [
  13996. {
  13997. name: "Macro",
  13998. height: math.unit(220, "feet"),
  13999. default: true
  14000. },
  14001. {
  14002. name: "Guardian Dragon",
  14003. height: math.unit(50, "miles")
  14004. },
  14005. {
  14006. name: "Cosmic",
  14007. height: math.unit(800000, "miles")
  14008. },
  14009. ]
  14010. ))
  14011. characterMakers.push(() => makeCharacter(
  14012. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14013. {
  14014. front: {
  14015. height: math.unit(6, "feet"),
  14016. weight: math.unit(150, "lb"),
  14017. name: "Front",
  14018. image: {
  14019. source: "./media/characters/cassidy/front.svg",
  14020. extra: 1,
  14021. bottom: 0.043
  14022. }
  14023. },
  14024. },
  14025. [
  14026. {
  14027. name: "Canon Height",
  14028. height: math.unit(120, "feet"),
  14029. default: true
  14030. },
  14031. {
  14032. name: "Macro+",
  14033. height: math.unit(400, "feet")
  14034. },
  14035. {
  14036. name: "Macro++",
  14037. height: math.unit(4000, "feet")
  14038. },
  14039. {
  14040. name: "Megamacro",
  14041. height: math.unit(3, "miles")
  14042. },
  14043. ]
  14044. ))
  14045. characterMakers.push(() => makeCharacter(
  14046. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14047. {
  14048. front: {
  14049. height: math.unit(6, "feet"),
  14050. weight: math.unit(150, "lb"),
  14051. name: "Front",
  14052. image: {
  14053. source: "./media/characters/isaac/front.svg",
  14054. extra: 896 / 815,
  14055. bottom: 0.11
  14056. }
  14057. },
  14058. },
  14059. [
  14060. {
  14061. name: "Human Size",
  14062. height: math.unit(8, "feet"),
  14063. default: true
  14064. },
  14065. {
  14066. name: "Macro",
  14067. height: math.unit(400, "feet")
  14068. },
  14069. {
  14070. name: "Megamacro",
  14071. height: math.unit(50, "miles")
  14072. },
  14073. {
  14074. name: "Canon Height",
  14075. height: math.unit(200, "AU")
  14076. },
  14077. ]
  14078. ))
  14079. characterMakers.push(() => makeCharacter(
  14080. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14081. {
  14082. front: {
  14083. height: math.unit(6, "feet"),
  14084. weight: math.unit(72, "kg"),
  14085. name: "Front",
  14086. image: {
  14087. source: "./media/characters/sleekit/front.svg",
  14088. extra: 4693 / 4487,
  14089. bottom: 0.012
  14090. }
  14091. },
  14092. },
  14093. [
  14094. {
  14095. name: "Minimum Height",
  14096. height: math.unit(10, "meters")
  14097. },
  14098. {
  14099. name: "Smaller",
  14100. height: math.unit(25, "meters")
  14101. },
  14102. {
  14103. name: "Larger",
  14104. height: math.unit(38, "meters"),
  14105. default: true
  14106. },
  14107. {
  14108. name: "Maximum height",
  14109. height: math.unit(100, "meters")
  14110. },
  14111. ]
  14112. ))
  14113. characterMakers.push(() => makeCharacter(
  14114. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14115. {
  14116. front: {
  14117. height: math.unit(6, "feet"),
  14118. weight: math.unit(150, "lb"),
  14119. name: "Front",
  14120. image: {
  14121. source: "./media/characters/nillia/front.svg",
  14122. extra: 2195 / 2037,
  14123. bottom: 0.005
  14124. }
  14125. },
  14126. back: {
  14127. height: math.unit(6, "feet"),
  14128. weight: math.unit(150, "lb"),
  14129. name: "Back",
  14130. image: {
  14131. source: "./media/characters/nillia/back.svg",
  14132. extra: 2195 / 2037,
  14133. bottom: 0.005
  14134. }
  14135. },
  14136. },
  14137. [
  14138. {
  14139. name: "Canon Height",
  14140. height: math.unit(489, "feet"),
  14141. default: true
  14142. }
  14143. ]
  14144. ))
  14145. characterMakers.push(() => makeCharacter(
  14146. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14147. {
  14148. front: {
  14149. height: math.unit(6, "feet"),
  14150. weight: math.unit(150, "lb"),
  14151. name: "Front",
  14152. image: {
  14153. source: "./media/characters/mesmyriza/front.svg",
  14154. extra: 2067 / 1784,
  14155. bottom: 0.035
  14156. }
  14157. },
  14158. foot: {
  14159. height: math.unit(6 / (250 / 35), "feet"),
  14160. name: "Foot",
  14161. image: {
  14162. source: "./media/characters/mesmyriza/foot.svg"
  14163. }
  14164. },
  14165. },
  14166. [
  14167. {
  14168. name: "Macro",
  14169. height: math.unit(457, "meters"),
  14170. default: true
  14171. },
  14172. {
  14173. name: "Megamacro",
  14174. height: math.unit(8, "megameters")
  14175. },
  14176. ]
  14177. ))
  14178. characterMakers.push(() => makeCharacter(
  14179. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14180. {
  14181. front: {
  14182. height: math.unit(6, "feet"),
  14183. weight: math.unit(250, "lb"),
  14184. name: "Front",
  14185. image: {
  14186. source: "./media/characters/saudade/front.svg",
  14187. extra: 1172 / 1139,
  14188. bottom: 0.035
  14189. }
  14190. },
  14191. },
  14192. [
  14193. {
  14194. name: "Micro",
  14195. height: math.unit(3, "inches")
  14196. },
  14197. {
  14198. name: "Normal",
  14199. height: math.unit(6, "feet"),
  14200. default: true
  14201. },
  14202. {
  14203. name: "Macro",
  14204. height: math.unit(50, "feet")
  14205. },
  14206. {
  14207. name: "Megamacro",
  14208. height: math.unit(2800, "feet")
  14209. },
  14210. ]
  14211. ))
  14212. characterMakers.push(() => makeCharacter(
  14213. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14214. {
  14215. front: {
  14216. height: math.unit(5 + 4 / 12, "feet"),
  14217. weight: math.unit(100, "lb"),
  14218. name: "Front",
  14219. image: {
  14220. source: "./media/characters/keireer/front.svg",
  14221. extra: 716 / 666,
  14222. bottom: 0.05
  14223. }
  14224. },
  14225. },
  14226. [
  14227. {
  14228. name: "Normal",
  14229. height: math.unit(5 + 4 / 12, "feet"),
  14230. default: true
  14231. },
  14232. ]
  14233. ))
  14234. characterMakers.push(() => makeCharacter(
  14235. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14236. {
  14237. front: {
  14238. height: math.unit(6, "feet"),
  14239. weight: math.unit(90, "kg"),
  14240. name: "Front",
  14241. image: {
  14242. source: "./media/characters/mirja/front.svg",
  14243. extra: 1789 / 1683,
  14244. bottom: 0.05
  14245. }
  14246. },
  14247. frontDressed: {
  14248. height: math.unit(6, "feet"),
  14249. weight: math.unit(90, "lb"),
  14250. name: "Front (Dressed)",
  14251. image: {
  14252. source: "./media/characters/mirja/front-dressed.svg",
  14253. extra: 1789 / 1683,
  14254. bottom: 0.05
  14255. }
  14256. },
  14257. back: {
  14258. height: math.unit(6, "feet"),
  14259. weight: math.unit(90, "lb"),
  14260. name: "Back",
  14261. image: {
  14262. source: "./media/characters/mirja/back.svg",
  14263. extra: 953 / 917,
  14264. bottom: 0.017
  14265. }
  14266. },
  14267. },
  14268. [
  14269. {
  14270. name: "\"Incognito\"",
  14271. height: math.unit(3, "meters")
  14272. },
  14273. {
  14274. name: "Strolling Size",
  14275. height: math.unit(15, "km")
  14276. },
  14277. {
  14278. name: "Larger Strolling Size",
  14279. height: math.unit(400, "km")
  14280. },
  14281. {
  14282. name: "Preferred Size",
  14283. height: math.unit(5000, "km")
  14284. },
  14285. {
  14286. name: "True Size",
  14287. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14288. default: true
  14289. },
  14290. ]
  14291. ))
  14292. characterMakers.push(() => makeCharacter(
  14293. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14294. {
  14295. front: {
  14296. height: math.unit(15, "feet"),
  14297. weight: math.unit(880, "kg"),
  14298. name: "Front",
  14299. image: {
  14300. source: "./media/characters/nightraver/front.svg",
  14301. extra: 2444 / 2160,
  14302. bottom: 0.027
  14303. }
  14304. },
  14305. back: {
  14306. height: math.unit(15, "feet"),
  14307. weight: math.unit(880, "kg"),
  14308. name: "Back",
  14309. image: {
  14310. source: "./media/characters/nightraver/back.svg",
  14311. extra: 2309 / 2180,
  14312. bottom: 0.005
  14313. }
  14314. },
  14315. sole: {
  14316. height: math.unit(2.878, "feet"),
  14317. name: "Sole",
  14318. image: {
  14319. source: "./media/characters/nightraver/sole.svg"
  14320. }
  14321. },
  14322. foot: {
  14323. height: math.unit(2.285, "feet"),
  14324. name: "Foot",
  14325. image: {
  14326. source: "./media/characters/nightraver/foot.svg"
  14327. }
  14328. },
  14329. maw: {
  14330. height: math.unit(2.67, "feet"),
  14331. name: "Maw",
  14332. image: {
  14333. source: "./media/characters/nightraver/maw.svg"
  14334. }
  14335. },
  14336. },
  14337. [
  14338. {
  14339. name: "Micro",
  14340. height: math.unit(1, "cm")
  14341. },
  14342. {
  14343. name: "Normal",
  14344. height: math.unit(15, "feet"),
  14345. default: true
  14346. },
  14347. {
  14348. name: "Macro",
  14349. height: math.unit(300, "feet")
  14350. },
  14351. {
  14352. name: "Megamacro",
  14353. height: math.unit(300, "miles")
  14354. },
  14355. {
  14356. name: "Gigamacro",
  14357. height: math.unit(10000, "miles")
  14358. },
  14359. ]
  14360. ))
  14361. characterMakers.push(() => makeCharacter(
  14362. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14363. {
  14364. side: {
  14365. height: math.unit(2, "inches"),
  14366. weight: math.unit(5, "grams"),
  14367. name: "Side",
  14368. image: {
  14369. source: "./media/characters/arc/side.svg"
  14370. }
  14371. },
  14372. },
  14373. [
  14374. {
  14375. name: "Micro",
  14376. height: math.unit(2, "inches"),
  14377. default: true
  14378. },
  14379. ]
  14380. ))
  14381. characterMakers.push(() => makeCharacter(
  14382. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14383. {
  14384. front: {
  14385. height: math.unit(1.1938, "meters"),
  14386. weight: math.unit(54, "kg"),
  14387. name: "Front",
  14388. image: {
  14389. source: "./media/characters/nebula-shahar/front.svg",
  14390. extra: 1642 / 1436,
  14391. bottom: 0.06
  14392. }
  14393. },
  14394. },
  14395. [
  14396. {
  14397. name: "Megamicro",
  14398. height: math.unit(0.3, "mm")
  14399. },
  14400. {
  14401. name: "Micro",
  14402. height: math.unit(3, "cm")
  14403. },
  14404. {
  14405. name: "Normal",
  14406. height: math.unit(138, "cm"),
  14407. default: true
  14408. },
  14409. {
  14410. name: "Macro",
  14411. height: math.unit(30, "m")
  14412. },
  14413. ]
  14414. ))
  14415. characterMakers.push(() => makeCharacter(
  14416. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14417. {
  14418. front: {
  14419. height: math.unit(5.24, "feet"),
  14420. weight: math.unit(150, "lb"),
  14421. name: "Front",
  14422. image: {
  14423. source: "./media/characters/shayla/front.svg",
  14424. extra: 1512 / 1414,
  14425. bottom: 0.01
  14426. }
  14427. },
  14428. back: {
  14429. height: math.unit(5.24, "feet"),
  14430. weight: math.unit(150, "lb"),
  14431. name: "Back",
  14432. image: {
  14433. source: "./media/characters/shayla/back.svg",
  14434. extra: 1512 / 1414
  14435. }
  14436. },
  14437. hand: {
  14438. height: math.unit(0.7781496062992126, "feet"),
  14439. name: "Hand",
  14440. image: {
  14441. source: "./media/characters/shayla/hand.svg"
  14442. }
  14443. },
  14444. foot: {
  14445. height: math.unit(1.4206036745406823, "feet"),
  14446. name: "Foot",
  14447. image: {
  14448. source: "./media/characters/shayla/foot.svg"
  14449. }
  14450. },
  14451. },
  14452. [
  14453. {
  14454. name: "Micro",
  14455. height: math.unit(0.32, "feet")
  14456. },
  14457. {
  14458. name: "Normal",
  14459. height: math.unit(5.24, "feet"),
  14460. default: true
  14461. },
  14462. {
  14463. name: "Macro",
  14464. height: math.unit(492.12, "feet")
  14465. },
  14466. {
  14467. name: "Megamacro",
  14468. height: math.unit(186.41, "miles")
  14469. },
  14470. ]
  14471. ))
  14472. characterMakers.push(() => makeCharacter(
  14473. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14474. {
  14475. front: {
  14476. height: math.unit(2.2, "m"),
  14477. weight: math.unit(120, "kg"),
  14478. name: "Front",
  14479. image: {
  14480. source: "./media/characters/pia-jr/front.svg",
  14481. extra: 1000 / 970,
  14482. bottom: 0.035
  14483. }
  14484. },
  14485. hand: {
  14486. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14487. name: "Hand",
  14488. image: {
  14489. source: "./media/characters/pia-jr/hand.svg"
  14490. }
  14491. },
  14492. paw: {
  14493. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14494. name: "Paw",
  14495. image: {
  14496. source: "./media/characters/pia-jr/paw.svg"
  14497. }
  14498. },
  14499. },
  14500. [
  14501. {
  14502. name: "Micro",
  14503. height: math.unit(1.2, "cm")
  14504. },
  14505. {
  14506. name: "Normal",
  14507. height: math.unit(2.2, "m"),
  14508. default: true
  14509. },
  14510. {
  14511. name: "Macro",
  14512. height: math.unit(180, "m")
  14513. },
  14514. {
  14515. name: "Megamacro",
  14516. height: math.unit(420, "km")
  14517. },
  14518. ]
  14519. ))
  14520. characterMakers.push(() => makeCharacter(
  14521. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14522. {
  14523. front: {
  14524. height: math.unit(2, "m"),
  14525. weight: math.unit(115, "kg"),
  14526. name: "Front",
  14527. image: {
  14528. source: "./media/characters/pia-sr/front.svg",
  14529. extra: 760 / 730,
  14530. bottom: 0.015
  14531. }
  14532. },
  14533. back: {
  14534. height: math.unit(2, "m"),
  14535. weight: math.unit(115, "kg"),
  14536. name: "Back",
  14537. image: {
  14538. source: "./media/characters/pia-sr/back.svg",
  14539. extra: 760 / 730,
  14540. bottom: 0.01
  14541. }
  14542. },
  14543. hand: {
  14544. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14545. name: "Hand",
  14546. image: {
  14547. source: "./media/characters/pia-sr/hand.svg"
  14548. }
  14549. },
  14550. foot: {
  14551. height: math.unit(1.83, "feet"),
  14552. name: "Foot",
  14553. image: {
  14554. source: "./media/characters/pia-sr/foot.svg"
  14555. }
  14556. },
  14557. },
  14558. [
  14559. {
  14560. name: "Micro",
  14561. height: math.unit(88, "mm")
  14562. },
  14563. {
  14564. name: "Normal",
  14565. height: math.unit(2, "m"),
  14566. default: true
  14567. },
  14568. {
  14569. name: "Macro",
  14570. height: math.unit(200, "m")
  14571. },
  14572. {
  14573. name: "Megamacro",
  14574. height: math.unit(420, "km")
  14575. },
  14576. ]
  14577. ))
  14578. characterMakers.push(() => makeCharacter(
  14579. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14580. {
  14581. front: {
  14582. height: math.unit(8 + 2 / 12, "feet"),
  14583. weight: math.unit(300, "lb"),
  14584. name: "Front",
  14585. image: {
  14586. source: "./media/characters/kibibyte/front.svg",
  14587. extra: 2221 / 2098,
  14588. bottom: 0.04
  14589. }
  14590. },
  14591. },
  14592. [
  14593. {
  14594. name: "Normal",
  14595. height: math.unit(8 + 2 / 12, "feet"),
  14596. default: true
  14597. },
  14598. {
  14599. name: "Socialable Macro",
  14600. height: math.unit(50, "feet")
  14601. },
  14602. {
  14603. name: "Macro",
  14604. height: math.unit(300, "feet")
  14605. },
  14606. {
  14607. name: "Megamacro",
  14608. height: math.unit(500, "miles")
  14609. },
  14610. ]
  14611. ))
  14612. characterMakers.push(() => makeCharacter(
  14613. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14614. {
  14615. front: {
  14616. height: math.unit(6, "feet"),
  14617. weight: math.unit(150, "lb"),
  14618. name: "Front",
  14619. image: {
  14620. source: "./media/characters/felix/front.svg",
  14621. extra: 762 / 722,
  14622. bottom: 0.02
  14623. }
  14624. },
  14625. frontClothed: {
  14626. height: math.unit(6, "feet"),
  14627. weight: math.unit(150, "lb"),
  14628. name: "Front (Clothed)",
  14629. image: {
  14630. source: "./media/characters/felix/front-clothed.svg",
  14631. extra: 762 / 722,
  14632. bottom: 0.02
  14633. }
  14634. },
  14635. },
  14636. [
  14637. {
  14638. name: "Normal",
  14639. height: math.unit(6 + 8 / 12, "feet"),
  14640. default: true
  14641. },
  14642. {
  14643. name: "Macro",
  14644. height: math.unit(2600, "feet")
  14645. },
  14646. {
  14647. name: "Megamacro",
  14648. height: math.unit(450, "miles")
  14649. },
  14650. ]
  14651. ))
  14652. characterMakers.push(() => makeCharacter(
  14653. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14654. {
  14655. front: {
  14656. height: math.unit(6 + 1 / 12, "feet"),
  14657. weight: math.unit(250, "lb"),
  14658. name: "Front",
  14659. image: {
  14660. source: "./media/characters/tobo/front.svg",
  14661. extra: 608 / 586,
  14662. bottom: 0.023
  14663. }
  14664. },
  14665. back: {
  14666. height: math.unit(6 + 1 / 12, "feet"),
  14667. weight: math.unit(250, "lb"),
  14668. name: "Back",
  14669. image: {
  14670. source: "./media/characters/tobo/back.svg",
  14671. extra: 608 / 586
  14672. }
  14673. },
  14674. },
  14675. [
  14676. {
  14677. name: "Nano",
  14678. height: math.unit(2, "nm")
  14679. },
  14680. {
  14681. name: "Megamicro",
  14682. height: math.unit(0.1, "mm")
  14683. },
  14684. {
  14685. name: "Micro",
  14686. height: math.unit(1, "inch"),
  14687. default: true
  14688. },
  14689. {
  14690. name: "Human-sized",
  14691. height: math.unit(6 + 1 / 12, "feet")
  14692. },
  14693. {
  14694. name: "Macro",
  14695. height: math.unit(250, "feet")
  14696. },
  14697. {
  14698. name: "Megamacro",
  14699. height: math.unit(75, "miles")
  14700. },
  14701. {
  14702. name: "Texas-sized",
  14703. height: math.unit(750, "miles")
  14704. },
  14705. {
  14706. name: "Teramacro",
  14707. height: math.unit(50000, "miles")
  14708. },
  14709. ]
  14710. ))
  14711. characterMakers.push(() => makeCharacter(
  14712. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14713. {
  14714. front: {
  14715. height: math.unit(6, "feet"),
  14716. weight: math.unit(269, "lb"),
  14717. name: "Front",
  14718. image: {
  14719. source: "./media/characters/danny-kapowsky/front.svg",
  14720. extra: 766 / 736,
  14721. bottom: 0.044
  14722. }
  14723. },
  14724. back: {
  14725. height: math.unit(6, "feet"),
  14726. weight: math.unit(269, "lb"),
  14727. name: "Back",
  14728. image: {
  14729. source: "./media/characters/danny-kapowsky/back.svg",
  14730. extra: 797 / 760,
  14731. bottom: 0.025
  14732. }
  14733. },
  14734. },
  14735. [
  14736. {
  14737. name: "Macro",
  14738. height: math.unit(150, "feet"),
  14739. default: true
  14740. },
  14741. {
  14742. name: "Macro+",
  14743. height: math.unit(200, "feet")
  14744. },
  14745. {
  14746. name: "Macro++",
  14747. height: math.unit(300, "feet")
  14748. },
  14749. {
  14750. name: "Macro+++",
  14751. height: math.unit(400, "feet")
  14752. },
  14753. ]
  14754. ))
  14755. characterMakers.push(() => makeCharacter(
  14756. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14757. {
  14758. side: {
  14759. height: math.unit(6, "feet"),
  14760. weight: math.unit(170, "lb"),
  14761. name: "Side",
  14762. image: {
  14763. source: "./media/characters/finn/side.svg",
  14764. extra: 1953 / 1807,
  14765. bottom: 0.057
  14766. }
  14767. },
  14768. },
  14769. [
  14770. {
  14771. name: "Megamacro",
  14772. height: math.unit(14445, "feet"),
  14773. default: true
  14774. },
  14775. ]
  14776. ))
  14777. characterMakers.push(() => makeCharacter(
  14778. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14779. {
  14780. front: {
  14781. height: math.unit(5 + 6 / 12, "feet"),
  14782. weight: math.unit(125, "lb"),
  14783. name: "Front",
  14784. image: {
  14785. source: "./media/characters/roy/front.svg",
  14786. extra: 1,
  14787. bottom: 0.11
  14788. }
  14789. },
  14790. },
  14791. [
  14792. {
  14793. name: "Micro",
  14794. height: math.unit(3, "inches"),
  14795. default: true
  14796. },
  14797. {
  14798. name: "Normal",
  14799. height: math.unit(5 + 6 / 12, "feet")
  14800. },
  14801. {
  14802. name: "Lesser Macro",
  14803. height: math.unit(60, "feet")
  14804. },
  14805. {
  14806. name: "Greater Macro",
  14807. height: math.unit(120, "feet")
  14808. },
  14809. ]
  14810. ))
  14811. characterMakers.push(() => makeCharacter(
  14812. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14813. {
  14814. front: {
  14815. height: math.unit(6, "feet"),
  14816. weight: math.unit(100, "lb"),
  14817. name: "Front",
  14818. image: {
  14819. source: "./media/characters/aevsivs/front.svg",
  14820. extra: 1,
  14821. bottom: 0.03
  14822. }
  14823. },
  14824. back: {
  14825. height: math.unit(6, "feet"),
  14826. weight: math.unit(100, "lb"),
  14827. name: "Back",
  14828. image: {
  14829. source: "./media/characters/aevsivs/back.svg"
  14830. }
  14831. },
  14832. },
  14833. [
  14834. {
  14835. name: "Micro",
  14836. height: math.unit(2, "inches"),
  14837. default: true
  14838. },
  14839. {
  14840. name: "Normal",
  14841. height: math.unit(5, "feet")
  14842. },
  14843. ]
  14844. ))
  14845. characterMakers.push(() => makeCharacter(
  14846. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14847. {
  14848. front: {
  14849. height: math.unit(5 + 7 / 12, "feet"),
  14850. weight: math.unit(159, "lb"),
  14851. name: "Front",
  14852. image: {
  14853. source: "./media/characters/hildegard/front.svg",
  14854. extra: 289 / 269,
  14855. bottom: 7.63 / 297.8
  14856. }
  14857. },
  14858. back: {
  14859. height: math.unit(5 + 7 / 12, "feet"),
  14860. weight: math.unit(159, "lb"),
  14861. name: "Back",
  14862. image: {
  14863. source: "./media/characters/hildegard/back.svg",
  14864. extra: 280 / 260,
  14865. bottom: 2.3 / 282
  14866. }
  14867. },
  14868. },
  14869. [
  14870. {
  14871. name: "Normal",
  14872. height: math.unit(5 + 7 / 12, "feet"),
  14873. default: true
  14874. },
  14875. ]
  14876. ))
  14877. characterMakers.push(() => makeCharacter(
  14878. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14879. {
  14880. bernard: {
  14881. height: math.unit(2 + 7 / 12, "feet"),
  14882. weight: math.unit(66, "lb"),
  14883. name: "Bernard",
  14884. rename: true,
  14885. image: {
  14886. source: "./media/characters/bernard-wilder/bernard.svg",
  14887. extra: 192 / 128,
  14888. bottom: 0.05
  14889. }
  14890. },
  14891. wilder: {
  14892. height: math.unit(5 + 8 / 12, "feet"),
  14893. weight: math.unit(143, "lb"),
  14894. name: "Wilder",
  14895. rename: true,
  14896. image: {
  14897. source: "./media/characters/bernard-wilder/wilder.svg",
  14898. extra: 361 / 312,
  14899. bottom: 0.02
  14900. }
  14901. },
  14902. },
  14903. [
  14904. {
  14905. name: "Normal",
  14906. height: math.unit(2 + 7 / 12, "feet"),
  14907. default: true
  14908. },
  14909. ]
  14910. ))
  14911. characterMakers.push(() => makeCharacter(
  14912. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14913. {
  14914. anthro: {
  14915. height: math.unit(6 + 1 / 12, "feet"),
  14916. weight: math.unit(155, "lb"),
  14917. name: "Anthro",
  14918. image: {
  14919. source: "./media/characters/hearth/anthro.svg",
  14920. extra: 260 / 250,
  14921. bottom: 0.02
  14922. }
  14923. },
  14924. feral: {
  14925. height: math.unit(3.78, "feet"),
  14926. weight: math.unit(35, "kg"),
  14927. name: "Feral",
  14928. image: {
  14929. source: "./media/characters/hearth/feral.svg",
  14930. extra: 153 / 135,
  14931. bottom: 0.03
  14932. }
  14933. },
  14934. },
  14935. [
  14936. {
  14937. name: "Normal",
  14938. height: math.unit(6 + 1 / 12, "feet"),
  14939. default: true
  14940. },
  14941. ]
  14942. ))
  14943. characterMakers.push(() => makeCharacter(
  14944. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14945. {
  14946. front: {
  14947. height: math.unit(6, "feet"),
  14948. weight: math.unit(182, "lb"),
  14949. name: "Front",
  14950. image: {
  14951. source: "./media/characters/ingrid/front.svg",
  14952. extra: 294 / 268,
  14953. bottom: 0.027
  14954. }
  14955. },
  14956. },
  14957. [
  14958. {
  14959. name: "Normal",
  14960. height: math.unit(6, "feet"),
  14961. default: true
  14962. },
  14963. ]
  14964. ))
  14965. characterMakers.push(() => makeCharacter(
  14966. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14967. {
  14968. eevee: {
  14969. height: math.unit(2 + 10 / 12, "feet"),
  14970. weight: math.unit(86, "lb"),
  14971. name: "Malgam",
  14972. image: {
  14973. source: "./media/characters/malgam/eevee.svg",
  14974. extra: 218 / 180,
  14975. bottom: 0.2
  14976. }
  14977. },
  14978. sylveon: {
  14979. height: math.unit(4, "feet"),
  14980. weight: math.unit(101, "lb"),
  14981. name: "Future Malgam",
  14982. rename: true,
  14983. image: {
  14984. source: "./media/characters/malgam/sylveon.svg",
  14985. extra: 371 / 325,
  14986. bottom: 0.015
  14987. }
  14988. },
  14989. gigantamax: {
  14990. height: math.unit(50, "feet"),
  14991. name: "Gigantamax Malgam",
  14992. rename: true,
  14993. image: {
  14994. source: "./media/characters/malgam/gigantamax.svg"
  14995. }
  14996. },
  14997. },
  14998. [
  14999. {
  15000. name: "Normal",
  15001. height: math.unit(2 + 10 / 12, "feet"),
  15002. default: true
  15003. },
  15004. ]
  15005. ))
  15006. characterMakers.push(() => makeCharacter(
  15007. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15008. {
  15009. front: {
  15010. height: math.unit(5 + 11 / 12, "feet"),
  15011. weight: math.unit(188, "lb"),
  15012. name: "Front",
  15013. image: {
  15014. source: "./media/characters/fleur/front.svg",
  15015. extra: 309 / 283,
  15016. bottom: 0.007
  15017. }
  15018. },
  15019. },
  15020. [
  15021. {
  15022. name: "Normal",
  15023. height: math.unit(5 + 11 / 12, "feet"),
  15024. default: true
  15025. },
  15026. ]
  15027. ))
  15028. characterMakers.push(() => makeCharacter(
  15029. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15030. {
  15031. front: {
  15032. height: math.unit(5 + 4 / 12, "feet"),
  15033. weight: math.unit(122, "lb"),
  15034. name: "Front",
  15035. image: {
  15036. source: "./media/characters/jude/front.svg",
  15037. extra: 288 / 273,
  15038. bottom: 0.03
  15039. }
  15040. },
  15041. },
  15042. [
  15043. {
  15044. name: "Normal",
  15045. height: math.unit(5 + 4 / 12, "feet"),
  15046. default: true
  15047. },
  15048. ]
  15049. ))
  15050. characterMakers.push(() => makeCharacter(
  15051. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15052. {
  15053. front: {
  15054. height: math.unit(5 + 11 / 12, "feet"),
  15055. weight: math.unit(190, "lb"),
  15056. name: "Front",
  15057. image: {
  15058. source: "./media/characters/seara/front.svg",
  15059. extra: 1,
  15060. bottom: 0.05
  15061. }
  15062. },
  15063. },
  15064. [
  15065. {
  15066. name: "Normal",
  15067. height: math.unit(5 + 11 / 12, "feet"),
  15068. default: true
  15069. },
  15070. ]
  15071. ))
  15072. characterMakers.push(() => makeCharacter(
  15073. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15074. {
  15075. front: {
  15076. height: math.unit(16 + 5 / 12, "feet"),
  15077. weight: math.unit(524, "lb"),
  15078. name: "Front",
  15079. image: {
  15080. source: "./media/characters/caspian/front.svg",
  15081. extra: 1,
  15082. bottom: 0.04
  15083. }
  15084. },
  15085. },
  15086. [
  15087. {
  15088. name: "Normal",
  15089. height: math.unit(16 + 5 / 12, "feet"),
  15090. default: true
  15091. },
  15092. ]
  15093. ))
  15094. characterMakers.push(() => makeCharacter(
  15095. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15096. {
  15097. front: {
  15098. height: math.unit(5 + 7 / 12, "feet"),
  15099. weight: math.unit(170, "lb"),
  15100. name: "Front",
  15101. image: {
  15102. source: "./media/characters/mika/front.svg",
  15103. extra: 1,
  15104. bottom: 0.016
  15105. }
  15106. },
  15107. },
  15108. [
  15109. {
  15110. name: "Normal",
  15111. height: math.unit(5 + 7 / 12, "feet"),
  15112. default: true
  15113. },
  15114. ]
  15115. ))
  15116. characterMakers.push(() => makeCharacter(
  15117. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15118. {
  15119. front: {
  15120. height: math.unit(6 + 2 / 12, "feet"),
  15121. weight: math.unit(268, "lb"),
  15122. name: "Front",
  15123. image: {
  15124. source: "./media/characters/sol/front.svg",
  15125. extra: 247 / 231,
  15126. bottom: 0.05
  15127. }
  15128. },
  15129. },
  15130. [
  15131. {
  15132. name: "Normal",
  15133. height: math.unit(6 + 2 / 12, "feet"),
  15134. default: true
  15135. },
  15136. ]
  15137. ))
  15138. characterMakers.push(() => makeCharacter(
  15139. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15140. {
  15141. buizel: {
  15142. height: math.unit(2 + 5 / 12, "feet"),
  15143. weight: math.unit(87, "lb"),
  15144. name: "Buizel",
  15145. image: {
  15146. source: "./media/characters/umiko/buizel.svg",
  15147. extra: 172 / 157,
  15148. bottom: 0.01
  15149. }
  15150. },
  15151. floatzel: {
  15152. height: math.unit(5 + 9 / 12, "feet"),
  15153. weight: math.unit(250, "lb"),
  15154. name: "Floatzel",
  15155. image: {
  15156. source: "./media/characters/umiko/floatzel.svg",
  15157. extra: 262 / 248
  15158. }
  15159. },
  15160. },
  15161. [
  15162. {
  15163. name: "Normal",
  15164. height: math.unit(2 + 5 / 12, "feet"),
  15165. default: true
  15166. },
  15167. ]
  15168. ))
  15169. characterMakers.push(() => makeCharacter(
  15170. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15171. {
  15172. front: {
  15173. height: math.unit(6 + 2 / 12, "feet"),
  15174. weight: math.unit(146, "lb"),
  15175. name: "Front",
  15176. image: {
  15177. source: "./media/characters/iliac/front.svg",
  15178. extra: 389 / 365,
  15179. bottom: 0.035
  15180. }
  15181. },
  15182. },
  15183. [
  15184. {
  15185. name: "Normal",
  15186. height: math.unit(6 + 2 / 12, "feet"),
  15187. default: true
  15188. },
  15189. ]
  15190. ))
  15191. characterMakers.push(() => makeCharacter(
  15192. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15193. {
  15194. front: {
  15195. height: math.unit(6, "feet"),
  15196. weight: math.unit(170, "lb"),
  15197. name: "Front",
  15198. image: {
  15199. source: "./media/characters/topaz/front.svg",
  15200. extra: 317 / 303,
  15201. bottom: 0.055
  15202. }
  15203. },
  15204. },
  15205. [
  15206. {
  15207. name: "Normal",
  15208. height: math.unit(6, "feet"),
  15209. default: true
  15210. },
  15211. ]
  15212. ))
  15213. characterMakers.push(() => makeCharacter(
  15214. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15215. {
  15216. front: {
  15217. height: math.unit(5 + 11 / 12, "feet"),
  15218. weight: math.unit(144, "lb"),
  15219. name: "Front",
  15220. image: {
  15221. source: "./media/characters/gabriel/front.svg",
  15222. extra: 285 / 262,
  15223. bottom: 0.004
  15224. }
  15225. },
  15226. },
  15227. [
  15228. {
  15229. name: "Normal",
  15230. height: math.unit(5 + 11 / 12, "feet"),
  15231. default: true
  15232. },
  15233. ]
  15234. ))
  15235. characterMakers.push(() => makeCharacter(
  15236. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15237. {
  15238. side: {
  15239. height: math.unit(6 + 5 / 12, "feet"),
  15240. weight: math.unit(300, "lb"),
  15241. name: "Side",
  15242. image: {
  15243. source: "./media/characters/tempest-suicune/side.svg",
  15244. extra: 195 / 154,
  15245. bottom: 0.04
  15246. }
  15247. },
  15248. },
  15249. [
  15250. {
  15251. name: "Normal",
  15252. height: math.unit(6 + 5 / 12, "feet"),
  15253. default: true
  15254. },
  15255. ]
  15256. ))
  15257. characterMakers.push(() => makeCharacter(
  15258. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15259. {
  15260. front: {
  15261. height: math.unit(7 + 2 / 12, "feet"),
  15262. weight: math.unit(322, "lb"),
  15263. name: "Front",
  15264. image: {
  15265. source: "./media/characters/vulcan/front.svg",
  15266. extra: 154 / 147,
  15267. bottom: 0.04
  15268. }
  15269. },
  15270. },
  15271. [
  15272. {
  15273. name: "Normal",
  15274. height: math.unit(7 + 2 / 12, "feet"),
  15275. default: true
  15276. },
  15277. ]
  15278. ))
  15279. characterMakers.push(() => makeCharacter(
  15280. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15281. {
  15282. front: {
  15283. height: math.unit(5 + 10 / 12, "feet"),
  15284. weight: math.unit(264, "lb"),
  15285. name: "Front",
  15286. image: {
  15287. source: "./media/characters/gault/front.svg",
  15288. extra: 161 / 140,
  15289. bottom: 0.028
  15290. }
  15291. },
  15292. },
  15293. [
  15294. {
  15295. name: "Normal",
  15296. height: math.unit(5 + 10 / 12, "feet"),
  15297. default: true
  15298. },
  15299. ]
  15300. ))
  15301. characterMakers.push(() => makeCharacter(
  15302. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15303. {
  15304. front: {
  15305. height: math.unit(6, "feet"),
  15306. weight: math.unit(150, "lb"),
  15307. name: "Front",
  15308. image: {
  15309. source: "./media/characters/shard/front.svg",
  15310. extra: 273 / 238,
  15311. bottom: 0.02
  15312. }
  15313. },
  15314. },
  15315. [
  15316. {
  15317. name: "Normal",
  15318. height: math.unit(3 + 6 / 12, "feet"),
  15319. default: true
  15320. },
  15321. ]
  15322. ))
  15323. characterMakers.push(() => makeCharacter(
  15324. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15325. {
  15326. front: {
  15327. height: math.unit(5 + 11 / 12, "feet"),
  15328. weight: math.unit(146, "lb"),
  15329. name: "Front",
  15330. image: {
  15331. source: "./media/characters/ashe/front.svg",
  15332. extra: 400 / 373,
  15333. bottom: 0.01
  15334. }
  15335. },
  15336. },
  15337. [
  15338. {
  15339. name: "Normal",
  15340. height: math.unit(5 + 11 / 12, "feet"),
  15341. default: true
  15342. },
  15343. ]
  15344. ))
  15345. characterMakers.push(() => makeCharacter(
  15346. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15347. {
  15348. front: {
  15349. height: math.unit(5 + 5 / 12, "feet"),
  15350. weight: math.unit(135, "lb"),
  15351. name: "Front",
  15352. image: {
  15353. source: "./media/characters/beatrix/front.svg",
  15354. extra: 392 / 379,
  15355. bottom: 0.01
  15356. }
  15357. },
  15358. },
  15359. [
  15360. {
  15361. name: "Normal",
  15362. height: math.unit(6, "feet"),
  15363. default: true
  15364. },
  15365. ]
  15366. ))
  15367. characterMakers.push(() => makeCharacter(
  15368. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15369. {
  15370. front: {
  15371. height: math.unit(6, "feet"),
  15372. weight: math.unit(150, "lb"),
  15373. name: "Front",
  15374. image: {
  15375. source: "./media/characters/ignatius/front.svg",
  15376. extra: 245 / 222,
  15377. bottom: 0.01
  15378. }
  15379. },
  15380. },
  15381. [
  15382. {
  15383. name: "Normal",
  15384. height: math.unit(5 + 5 / 12, "feet"),
  15385. default: true
  15386. },
  15387. ]
  15388. ))
  15389. characterMakers.push(() => makeCharacter(
  15390. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15391. {
  15392. front: {
  15393. height: math.unit(6 + 2 / 12, "feet"),
  15394. weight: math.unit(138, "lb"),
  15395. name: "Front",
  15396. image: {
  15397. source: "./media/characters/mei-li/front.svg",
  15398. extra: 237 / 229,
  15399. bottom: 0.03
  15400. }
  15401. },
  15402. },
  15403. [
  15404. {
  15405. name: "Normal",
  15406. height: math.unit(6 + 2 / 12, "feet"),
  15407. default: true
  15408. },
  15409. ]
  15410. ))
  15411. characterMakers.push(() => makeCharacter(
  15412. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15413. {
  15414. front: {
  15415. height: math.unit(2 + 4 / 12, "feet"),
  15416. weight: math.unit(62, "lb"),
  15417. name: "Front",
  15418. image: {
  15419. source: "./media/characters/puru/front.svg",
  15420. extra: 206 / 149,
  15421. bottom: 0.06
  15422. }
  15423. },
  15424. },
  15425. [
  15426. {
  15427. name: "Normal",
  15428. height: math.unit(2 + 4 / 12, "feet"),
  15429. default: true
  15430. },
  15431. ]
  15432. ))
  15433. characterMakers.push(() => makeCharacter(
  15434. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15435. {
  15436. anthro: {
  15437. height: math.unit(5 + 8/12, "feet"),
  15438. weight: math.unit(200, "lb"),
  15439. energyNeed: math.unit(2000, "kcal"),
  15440. name: "Anthro",
  15441. image: {
  15442. source: "./media/characters/kee/anthro.svg",
  15443. extra: 3251/3184,
  15444. bottom: 250/3501
  15445. }
  15446. },
  15447. taur: {
  15448. height: math.unit(11, "feet"),
  15449. weight: math.unit(500, "lb"),
  15450. energyNeed: math.unit(5000, "kcal"),
  15451. name: "Taur",
  15452. image: {
  15453. source: "./media/characters/kee/taur.svg",
  15454. extra: 1362/1320,
  15455. bottom: 83/1445
  15456. }
  15457. },
  15458. },
  15459. [
  15460. {
  15461. name: "Normal",
  15462. height: math.unit(5 + 8/12, "feet"),
  15463. default: true
  15464. },
  15465. {
  15466. name: "Macro",
  15467. height: math.unit(35, "feet")
  15468. },
  15469. ]
  15470. ))
  15471. characterMakers.push(() => makeCharacter(
  15472. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15473. {
  15474. anthro: {
  15475. height: math.unit(7, "feet"),
  15476. weight: math.unit(190, "lb"),
  15477. name: "Anthro",
  15478. image: {
  15479. source: "./media/characters/cobalt-dracha/anthro.svg",
  15480. extra: 231 / 225,
  15481. bottom: 0.04
  15482. }
  15483. },
  15484. feral: {
  15485. height: math.unit(9 + 7 / 12, "feet"),
  15486. weight: math.unit(294, "lb"),
  15487. name: "Feral",
  15488. image: {
  15489. source: "./media/characters/cobalt-dracha/feral.svg",
  15490. extra: 692 / 633,
  15491. bottom: 0.05
  15492. }
  15493. },
  15494. },
  15495. [
  15496. {
  15497. name: "Normal",
  15498. height: math.unit(7, "feet"),
  15499. default: true
  15500. },
  15501. ]
  15502. ))
  15503. characterMakers.push(() => makeCharacter(
  15504. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15505. {
  15506. fallen: {
  15507. height: math.unit(11 + 8 / 12, "feet"),
  15508. weight: math.unit(485, "lb"),
  15509. name: "Java (Fallen)",
  15510. rename: true,
  15511. image: {
  15512. source: "./media/characters/java/fallen.svg",
  15513. extra: 226 / 208,
  15514. bottom: 0.005
  15515. }
  15516. },
  15517. godkin: {
  15518. height: math.unit(10 + 6 / 12, "feet"),
  15519. weight: math.unit(328, "lb"),
  15520. name: "Java (Godkin)",
  15521. rename: true,
  15522. image: {
  15523. source: "./media/characters/java/godkin.svg",
  15524. extra: 270 / 262,
  15525. bottom: 0.02
  15526. }
  15527. },
  15528. },
  15529. [
  15530. {
  15531. name: "Normal",
  15532. height: math.unit(11 + 8 / 12, "feet"),
  15533. default: true
  15534. },
  15535. ]
  15536. ))
  15537. characterMakers.push(() => makeCharacter(
  15538. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15539. {
  15540. front: {
  15541. height: math.unit(7 + 8 / 12, "feet"),
  15542. weight: math.unit(320, "lb"),
  15543. name: "Front",
  15544. image: {
  15545. source: "./media/characters/skoll/front.svg",
  15546. extra: 232 / 220,
  15547. bottom: 0.02
  15548. }
  15549. },
  15550. },
  15551. [
  15552. {
  15553. name: "Normal",
  15554. height: math.unit(7 + 8 / 12, "feet"),
  15555. default: true
  15556. },
  15557. ]
  15558. ))
  15559. characterMakers.push(() => makeCharacter(
  15560. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15561. {
  15562. front: {
  15563. height: math.unit(5 + 9 / 12, "feet"),
  15564. weight: math.unit(170, "lb"),
  15565. name: "Front",
  15566. image: {
  15567. source: "./media/characters/purna/front.svg",
  15568. extra: 239 / 229,
  15569. bottom: 0.01
  15570. }
  15571. },
  15572. },
  15573. [
  15574. {
  15575. name: "Normal",
  15576. height: math.unit(5 + 9 / 12, "feet"),
  15577. default: true
  15578. },
  15579. ]
  15580. ))
  15581. characterMakers.push(() => makeCharacter(
  15582. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15583. {
  15584. front: {
  15585. height: math.unit(5 + 9 / 12, "feet"),
  15586. weight: math.unit(142, "lb"),
  15587. name: "Front",
  15588. image: {
  15589. source: "./media/characters/kuva/front.svg",
  15590. extra: 281 / 271,
  15591. bottom: 0.006
  15592. }
  15593. },
  15594. },
  15595. [
  15596. {
  15597. name: "Normal",
  15598. height: math.unit(5 + 9 / 12, "feet"),
  15599. default: true
  15600. },
  15601. ]
  15602. ))
  15603. characterMakers.push(() => makeCharacter(
  15604. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15605. {
  15606. anthro: {
  15607. height: math.unit(9 + 2 / 12, "feet"),
  15608. weight: math.unit(270, "lb"),
  15609. name: "Anthro",
  15610. image: {
  15611. source: "./media/characters/embra/anthro.svg",
  15612. extra: 200 / 187,
  15613. bottom: 0.02
  15614. }
  15615. },
  15616. feral: {
  15617. height: math.unit(18 + 8 / 12, "feet"),
  15618. weight: math.unit(576, "lb"),
  15619. name: "Feral",
  15620. image: {
  15621. source: "./media/characters/embra/feral.svg",
  15622. extra: 152 / 137,
  15623. bottom: 0.037
  15624. }
  15625. },
  15626. },
  15627. [
  15628. {
  15629. name: "Normal",
  15630. height: math.unit(9 + 2 / 12, "feet"),
  15631. default: true
  15632. },
  15633. ]
  15634. ))
  15635. characterMakers.push(() => makeCharacter(
  15636. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15637. {
  15638. anthro: {
  15639. height: math.unit(10 + 9 / 12, "feet"),
  15640. weight: math.unit(224, "lb"),
  15641. name: "Anthro",
  15642. image: {
  15643. source: "./media/characters/grottos/anthro.svg",
  15644. extra: 350 / 332,
  15645. bottom: 0.045
  15646. }
  15647. },
  15648. feral: {
  15649. height: math.unit(20 + 7 / 12, "feet"),
  15650. weight: math.unit(629, "lb"),
  15651. name: "Feral",
  15652. image: {
  15653. source: "./media/characters/grottos/feral.svg",
  15654. extra: 207 / 190,
  15655. bottom: 0.05
  15656. }
  15657. },
  15658. },
  15659. [
  15660. {
  15661. name: "Normal",
  15662. height: math.unit(10 + 9 / 12, "feet"),
  15663. default: true
  15664. },
  15665. ]
  15666. ))
  15667. characterMakers.push(() => makeCharacter(
  15668. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15669. {
  15670. anthro: {
  15671. height: math.unit(9 + 6 / 12, "feet"),
  15672. weight: math.unit(298, "lb"),
  15673. name: "Anthro",
  15674. image: {
  15675. source: "./media/characters/frifna/anthro.svg",
  15676. extra: 282 / 269,
  15677. bottom: 0.015
  15678. }
  15679. },
  15680. feral: {
  15681. height: math.unit(16 + 2 / 12, "feet"),
  15682. weight: math.unit(624, "lb"),
  15683. name: "Feral",
  15684. image: {
  15685. source: "./media/characters/frifna/feral.svg"
  15686. }
  15687. },
  15688. },
  15689. [
  15690. {
  15691. name: "Normal",
  15692. height: math.unit(9 + 6 / 12, "feet"),
  15693. default: true
  15694. },
  15695. ]
  15696. ))
  15697. characterMakers.push(() => makeCharacter(
  15698. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15699. {
  15700. front: {
  15701. height: math.unit(6 + 2 / 12, "feet"),
  15702. weight: math.unit(168, "lb"),
  15703. name: "Front",
  15704. image: {
  15705. source: "./media/characters/elise/front.svg",
  15706. extra: 276 / 271
  15707. }
  15708. },
  15709. },
  15710. [
  15711. {
  15712. name: "Normal",
  15713. height: math.unit(6 + 2 / 12, "feet"),
  15714. default: true
  15715. },
  15716. ]
  15717. ))
  15718. characterMakers.push(() => makeCharacter(
  15719. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15720. {
  15721. front: {
  15722. height: math.unit(5 + 10 / 12, "feet"),
  15723. weight: math.unit(210, "lb"),
  15724. name: "Front",
  15725. image: {
  15726. source: "./media/characters/glade/front.svg",
  15727. extra: 258 / 247,
  15728. bottom: 0.008
  15729. }
  15730. },
  15731. },
  15732. [
  15733. {
  15734. name: "Normal",
  15735. height: math.unit(5 + 10 / 12, "feet"),
  15736. default: true
  15737. },
  15738. ]
  15739. ))
  15740. characterMakers.push(() => makeCharacter(
  15741. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15742. {
  15743. front: {
  15744. height: math.unit(5 + 10 / 12, "feet"),
  15745. weight: math.unit(129, "lb"),
  15746. name: "Front",
  15747. image: {
  15748. source: "./media/characters/rina/front.svg",
  15749. extra: 266 / 255,
  15750. bottom: 0.005
  15751. }
  15752. },
  15753. },
  15754. [
  15755. {
  15756. name: "Normal",
  15757. height: math.unit(5 + 10 / 12, "feet"),
  15758. default: true
  15759. },
  15760. ]
  15761. ))
  15762. characterMakers.push(() => makeCharacter(
  15763. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15764. {
  15765. front: {
  15766. height: math.unit(6 + 1 / 12, "feet"),
  15767. weight: math.unit(192, "lb"),
  15768. name: "Front",
  15769. image: {
  15770. source: "./media/characters/veronica/front.svg",
  15771. extra: 319 / 309,
  15772. bottom: 0.005
  15773. }
  15774. },
  15775. },
  15776. [
  15777. {
  15778. name: "Normal",
  15779. height: math.unit(6 + 1 / 12, "feet"),
  15780. default: true
  15781. },
  15782. ]
  15783. ))
  15784. characterMakers.push(() => makeCharacter(
  15785. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15786. {
  15787. front: {
  15788. height: math.unit(9 + 3 / 12, "feet"),
  15789. weight: math.unit(1100, "lb"),
  15790. name: "Front",
  15791. image: {
  15792. source: "./media/characters/braxton/front.svg",
  15793. extra: 1057 / 984,
  15794. bottom: 0.05
  15795. }
  15796. },
  15797. },
  15798. [
  15799. {
  15800. name: "Normal",
  15801. height: math.unit(9 + 3 / 12, "feet")
  15802. },
  15803. {
  15804. name: "Giant",
  15805. height: math.unit(300, "feet"),
  15806. default: true
  15807. },
  15808. {
  15809. name: "Macro",
  15810. height: math.unit(700, "feet")
  15811. },
  15812. {
  15813. name: "Megamacro",
  15814. height: math.unit(6000, "feet")
  15815. },
  15816. ]
  15817. ))
  15818. characterMakers.push(() => makeCharacter(
  15819. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15820. {
  15821. front: {
  15822. height: math.unit(6 + 7 / 12, "feet"),
  15823. weight: math.unit(150, "lb"),
  15824. name: "Front",
  15825. image: {
  15826. source: "./media/characters/blue-feyonics/front.svg",
  15827. extra: 1403 / 1306,
  15828. bottom: 0.047
  15829. }
  15830. },
  15831. },
  15832. [
  15833. {
  15834. name: "Normal",
  15835. height: math.unit(6 + 7 / 12, "feet"),
  15836. default: true
  15837. },
  15838. ]
  15839. ))
  15840. characterMakers.push(() => makeCharacter(
  15841. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15842. {
  15843. front: {
  15844. height: math.unit(1.8, "meters"),
  15845. weight: math.unit(60, "kg"),
  15846. name: "Front",
  15847. image: {
  15848. source: "./media/characters/maxwell/front.svg",
  15849. extra: 2060 / 1873
  15850. }
  15851. },
  15852. },
  15853. [
  15854. {
  15855. name: "Micro",
  15856. height: math.unit(1, "mm")
  15857. },
  15858. {
  15859. name: "Normal",
  15860. height: math.unit(1.8, "meter"),
  15861. default: true
  15862. },
  15863. {
  15864. name: "Macro",
  15865. height: math.unit(30, "meters")
  15866. },
  15867. {
  15868. name: "Megamacro",
  15869. height: math.unit(10, "km")
  15870. },
  15871. ]
  15872. ))
  15873. characterMakers.push(() => makeCharacter(
  15874. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15875. {
  15876. front: {
  15877. height: math.unit(6, "feet"),
  15878. weight: math.unit(150, "lb"),
  15879. name: "Front",
  15880. image: {
  15881. source: "./media/characters/jack/front.svg",
  15882. extra: 1754 / 1640,
  15883. bottom: 0.01
  15884. }
  15885. },
  15886. },
  15887. [
  15888. {
  15889. name: "Normal",
  15890. height: math.unit(80000, "feet"),
  15891. default: true
  15892. },
  15893. {
  15894. name: "Max size",
  15895. height: math.unit(10, "lightyears")
  15896. },
  15897. ]
  15898. ))
  15899. characterMakers.push(() => makeCharacter(
  15900. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15901. {
  15902. urban: {
  15903. height: math.unit(5, "feet"),
  15904. weight: math.unit(240, "lb"),
  15905. name: "Urban",
  15906. image: {
  15907. source: "./media/characters/cafat/urban.svg",
  15908. extra: 1223/1126,
  15909. bottom: 205/1428
  15910. }
  15911. },
  15912. summer: {
  15913. height: math.unit(5, "feet"),
  15914. weight: math.unit(240, "lb"),
  15915. name: "Summer",
  15916. image: {
  15917. source: "./media/characters/cafat/summer.svg",
  15918. extra: 1223/1126,
  15919. bottom: 205/1428
  15920. }
  15921. },
  15922. winter: {
  15923. height: math.unit(5, "feet"),
  15924. weight: math.unit(240, "lb"),
  15925. name: "Winter",
  15926. image: {
  15927. source: "./media/characters/cafat/winter.svg",
  15928. extra: 1223/1126,
  15929. bottom: 205/1428
  15930. }
  15931. },
  15932. lingerie: {
  15933. height: math.unit(5, "feet"),
  15934. weight: math.unit(240, "lb"),
  15935. name: "Lingerie",
  15936. image: {
  15937. source: "./media/characters/cafat/lingerie.svg",
  15938. extra: 1223/1126,
  15939. bottom: 205/1428
  15940. }
  15941. },
  15942. upright: {
  15943. height: math.unit(6.3, "feet"),
  15944. weight: math.unit(240, "lb"),
  15945. name: "Upright",
  15946. image: {
  15947. source: "./media/characters/cafat/upright.svg",
  15948. bottom: 0.01
  15949. }
  15950. },
  15951. uprightFull: {
  15952. height: math.unit(6.3, "feet"),
  15953. weight: math.unit(240, "lb"),
  15954. name: "Upright (Full)",
  15955. image: {
  15956. source: "./media/characters/cafat/upright-full.svg",
  15957. bottom: 0.01
  15958. }
  15959. },
  15960. },
  15961. [
  15962. {
  15963. name: "Small",
  15964. height: math.unit(5, "feet"),
  15965. default: true
  15966. },
  15967. {
  15968. name: "Large",
  15969. height: math.unit(13, "feet")
  15970. },
  15971. ]
  15972. ))
  15973. characterMakers.push(() => makeCharacter(
  15974. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15975. {
  15976. front: {
  15977. height: math.unit(6, "feet"),
  15978. weight: math.unit(150, "lb"),
  15979. name: "Front",
  15980. image: {
  15981. source: "./media/characters/verin-raharra/front.svg",
  15982. extra: 5019 / 4835,
  15983. bottom: 0.023
  15984. }
  15985. },
  15986. },
  15987. [
  15988. {
  15989. name: "Normal",
  15990. height: math.unit(7 + 5 / 12, "feet"),
  15991. default: true
  15992. },
  15993. {
  15994. name: "Upsized",
  15995. height: math.unit(20, "feet")
  15996. },
  15997. ]
  15998. ))
  15999. characterMakers.push(() => makeCharacter(
  16000. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16001. {
  16002. front: {
  16003. height: math.unit(7, "feet"),
  16004. weight: math.unit(230, "lb"),
  16005. name: "Front",
  16006. image: {
  16007. source: "./media/characters/nakata/front.svg",
  16008. extra: 1.005,
  16009. bottom: 0.01
  16010. }
  16011. },
  16012. },
  16013. [
  16014. {
  16015. name: "Normal",
  16016. height: math.unit(7, "feet"),
  16017. default: true
  16018. },
  16019. {
  16020. name: "Big",
  16021. height: math.unit(14, "feet")
  16022. },
  16023. {
  16024. name: "Macro",
  16025. height: math.unit(400, "feet")
  16026. },
  16027. ]
  16028. ))
  16029. characterMakers.push(() => makeCharacter(
  16030. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16031. {
  16032. front: {
  16033. height: math.unit(4.91, "feet"),
  16034. weight: math.unit(100, "lb"),
  16035. name: "Front",
  16036. image: {
  16037. source: "./media/characters/lily/front.svg",
  16038. extra: 1585 / 1415,
  16039. bottom: 0.02
  16040. }
  16041. },
  16042. },
  16043. [
  16044. {
  16045. name: "Normal",
  16046. height: math.unit(4.91, "feet"),
  16047. default: true
  16048. },
  16049. ]
  16050. ))
  16051. characterMakers.push(() => makeCharacter(
  16052. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16053. {
  16054. laying: {
  16055. height: math.unit(4 + 4 / 12, "feet"),
  16056. weight: math.unit(600, "lb"),
  16057. name: "Laying",
  16058. image: {
  16059. source: "./media/characters/sheila/laying.svg",
  16060. extra: 1333 / 1265,
  16061. bottom: 0.16
  16062. }
  16063. },
  16064. },
  16065. [
  16066. {
  16067. name: "Normal",
  16068. height: math.unit(4 + 4 / 12, "feet"),
  16069. default: true
  16070. },
  16071. ]
  16072. ))
  16073. characterMakers.push(() => makeCharacter(
  16074. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16075. {
  16076. front: {
  16077. height: math.unit(6, "feet"),
  16078. weight: math.unit(190, "lb"),
  16079. name: "Front",
  16080. image: {
  16081. source: "./media/characters/sax/front.svg",
  16082. extra: 1187 / 973,
  16083. bottom: 0.042
  16084. }
  16085. },
  16086. },
  16087. [
  16088. {
  16089. name: "Micro",
  16090. height: math.unit(4, "inches"),
  16091. default: true
  16092. },
  16093. ]
  16094. ))
  16095. characterMakers.push(() => makeCharacter(
  16096. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16097. {
  16098. front: {
  16099. height: math.unit(6, "feet"),
  16100. weight: math.unit(150, "lb"),
  16101. name: "Front",
  16102. image: {
  16103. source: "./media/characters/pandora/front.svg",
  16104. extra: 2720 / 2556,
  16105. bottom: 0.015
  16106. }
  16107. },
  16108. back: {
  16109. height: math.unit(6, "feet"),
  16110. weight: math.unit(150, "lb"),
  16111. name: "Back",
  16112. image: {
  16113. source: "./media/characters/pandora/back.svg",
  16114. extra: 2720 / 2556,
  16115. bottom: 0.01
  16116. }
  16117. },
  16118. beans: {
  16119. height: math.unit(6 / 8, "feet"),
  16120. name: "Beans",
  16121. image: {
  16122. source: "./media/characters/pandora/beans.svg"
  16123. }
  16124. },
  16125. collar: {
  16126. height: math.unit(0.31, "feet"),
  16127. name: "Collar",
  16128. image: {
  16129. source: "./media/characters/pandora/collar.svg"
  16130. }
  16131. },
  16132. skirt: {
  16133. height: math.unit(6, "feet"),
  16134. weight: math.unit(150, "lb"),
  16135. name: "Skirt",
  16136. image: {
  16137. source: "./media/characters/pandora/skirt.svg",
  16138. extra: 1622 / 1525,
  16139. bottom: 0.015
  16140. }
  16141. },
  16142. hoodie: {
  16143. height: math.unit(6, "feet"),
  16144. weight: math.unit(150, "lb"),
  16145. name: "Hoodie",
  16146. image: {
  16147. source: "./media/characters/pandora/hoodie.svg",
  16148. extra: 1622 / 1525,
  16149. bottom: 0.015
  16150. }
  16151. },
  16152. casual: {
  16153. height: math.unit(6, "feet"),
  16154. weight: math.unit(150, "lb"),
  16155. name: "Casual",
  16156. image: {
  16157. source: "./media/characters/pandora/casual.svg",
  16158. extra: 1622 / 1525,
  16159. bottom: 0.015
  16160. }
  16161. },
  16162. },
  16163. [
  16164. {
  16165. name: "Normal",
  16166. height: math.unit(6, "feet")
  16167. },
  16168. {
  16169. name: "Big Steppy",
  16170. height: math.unit(1, "km"),
  16171. default: true
  16172. },
  16173. {
  16174. name: "Galactic Steppy",
  16175. height: math.unit(2, "gigameters")
  16176. },
  16177. ]
  16178. ))
  16179. characterMakers.push(() => makeCharacter(
  16180. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16181. {
  16182. side: {
  16183. height: math.unit(10, "feet"),
  16184. weight: math.unit(800, "kg"),
  16185. name: "Side",
  16186. image: {
  16187. source: "./media/characters/venio-darcony/side.svg",
  16188. extra: 1373 / 1003,
  16189. bottom: 0.037
  16190. }
  16191. },
  16192. front: {
  16193. height: math.unit(19, "feet"),
  16194. weight: math.unit(800, "kg"),
  16195. name: "Front",
  16196. image: {
  16197. source: "./media/characters/venio-darcony/front.svg"
  16198. }
  16199. },
  16200. back: {
  16201. height: math.unit(19, "feet"),
  16202. weight: math.unit(800, "kg"),
  16203. name: "Back",
  16204. image: {
  16205. source: "./media/characters/venio-darcony/back.svg"
  16206. }
  16207. },
  16208. sideNsfw: {
  16209. height: math.unit(10, "feet"),
  16210. weight: math.unit(800, "kg"),
  16211. name: "Side (NSFW)",
  16212. image: {
  16213. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16214. extra: 1373 / 1003,
  16215. bottom: 0.037
  16216. }
  16217. },
  16218. frontNsfw: {
  16219. height: math.unit(19, "feet"),
  16220. weight: math.unit(800, "kg"),
  16221. name: "Front (NSFW)",
  16222. image: {
  16223. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16224. }
  16225. },
  16226. backNsfw: {
  16227. height: math.unit(19, "feet"),
  16228. weight: math.unit(800, "kg"),
  16229. name: "Back (NSFW)",
  16230. image: {
  16231. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16232. }
  16233. },
  16234. sideArmored: {
  16235. height: math.unit(10, "feet"),
  16236. weight: math.unit(800, "kg"),
  16237. name: "Side (Armored)",
  16238. image: {
  16239. source: "./media/characters/venio-darcony/side-armored.svg",
  16240. extra: 1373 / 1003,
  16241. bottom: 0.037
  16242. }
  16243. },
  16244. frontArmored: {
  16245. height: math.unit(19, "feet"),
  16246. weight: math.unit(900, "kg"),
  16247. name: "Front (Armored)",
  16248. image: {
  16249. source: "./media/characters/venio-darcony/front-armored.svg"
  16250. }
  16251. },
  16252. backArmored: {
  16253. height: math.unit(19, "feet"),
  16254. weight: math.unit(900, "kg"),
  16255. name: "Back (Armored)",
  16256. image: {
  16257. source: "./media/characters/venio-darcony/back-armored.svg"
  16258. }
  16259. },
  16260. sword: {
  16261. height: math.unit(10, "feet"),
  16262. weight: math.unit(50, "lb"),
  16263. name: "Sword",
  16264. image: {
  16265. source: "./media/characters/venio-darcony/sword.svg"
  16266. }
  16267. },
  16268. },
  16269. [
  16270. {
  16271. name: "Normal",
  16272. height: math.unit(10, "feet")
  16273. },
  16274. {
  16275. name: "Macro",
  16276. height: math.unit(130, "feet"),
  16277. default: true
  16278. },
  16279. {
  16280. name: "Macro+",
  16281. height: math.unit(240, "feet")
  16282. },
  16283. ]
  16284. ))
  16285. characterMakers.push(() => makeCharacter(
  16286. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16287. {
  16288. front: {
  16289. height: math.unit(6, "feet"),
  16290. weight: math.unit(150, "lb"),
  16291. name: "Front",
  16292. image: {
  16293. source: "./media/characters/veski/front.svg",
  16294. extra: 1299 / 1225,
  16295. bottom: 0.04
  16296. }
  16297. },
  16298. back: {
  16299. height: math.unit(6, "feet"),
  16300. weight: math.unit(150, "lb"),
  16301. name: "Back",
  16302. image: {
  16303. source: "./media/characters/veski/back.svg",
  16304. extra: 1299 / 1225,
  16305. bottom: 0.008
  16306. }
  16307. },
  16308. maw: {
  16309. height: math.unit(1.5 * 1.21, "feet"),
  16310. name: "Maw",
  16311. image: {
  16312. source: "./media/characters/veski/maw.svg"
  16313. }
  16314. },
  16315. },
  16316. [
  16317. {
  16318. name: "Macro",
  16319. height: math.unit(2, "km"),
  16320. default: true
  16321. },
  16322. ]
  16323. ))
  16324. characterMakers.push(() => makeCharacter(
  16325. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16326. {
  16327. front: {
  16328. height: math.unit(5 + 7 / 12, "feet"),
  16329. name: "Front",
  16330. image: {
  16331. source: "./media/characters/isabelle/front.svg",
  16332. extra: 2130 / 1976,
  16333. bottom: 0.05
  16334. }
  16335. },
  16336. },
  16337. [
  16338. {
  16339. name: "Supermicro",
  16340. height: math.unit(10, "micrometers")
  16341. },
  16342. {
  16343. name: "Micro",
  16344. height: math.unit(1, "inch")
  16345. },
  16346. {
  16347. name: "Tiny",
  16348. height: math.unit(5, "inches")
  16349. },
  16350. {
  16351. name: "Standard",
  16352. height: math.unit(5 + 7 / 12, "inches")
  16353. },
  16354. {
  16355. name: "Macro",
  16356. height: math.unit(80, "meters"),
  16357. default: true
  16358. },
  16359. {
  16360. name: "Megamacro",
  16361. height: math.unit(250, "meters")
  16362. },
  16363. {
  16364. name: "Gigamacro",
  16365. height: math.unit(5, "km")
  16366. },
  16367. {
  16368. name: "Cosmic",
  16369. height: math.unit(2.5e6, "miles")
  16370. },
  16371. ]
  16372. ))
  16373. characterMakers.push(() => makeCharacter(
  16374. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16375. {
  16376. front: {
  16377. height: math.unit(6, "feet"),
  16378. weight: math.unit(150, "lb"),
  16379. name: "Front",
  16380. image: {
  16381. source: "./media/characters/hanzo/front.svg",
  16382. extra: 374 / 344,
  16383. bottom: 0.02
  16384. }
  16385. },
  16386. },
  16387. [
  16388. {
  16389. name: "Normal",
  16390. height: math.unit(8, "feet"),
  16391. default: true
  16392. },
  16393. ]
  16394. ))
  16395. characterMakers.push(() => makeCharacter(
  16396. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16397. {
  16398. front: {
  16399. height: math.unit(7, "feet"),
  16400. weight: math.unit(130, "lb"),
  16401. name: "Front",
  16402. image: {
  16403. source: "./media/characters/anna/front.svg",
  16404. extra: 169 / 145,
  16405. bottom: 0.06
  16406. }
  16407. },
  16408. full: {
  16409. height: math.unit(4.96, "feet"),
  16410. weight: math.unit(220, "lb"),
  16411. name: "Full",
  16412. image: {
  16413. source: "./media/characters/anna/full.svg",
  16414. extra: 138 / 114,
  16415. bottom: 0.15
  16416. }
  16417. },
  16418. tongue: {
  16419. height: math.unit(2.53, "feet"),
  16420. name: "Tongue",
  16421. image: {
  16422. source: "./media/characters/anna/tongue.svg"
  16423. }
  16424. },
  16425. },
  16426. [
  16427. {
  16428. name: "Normal",
  16429. height: math.unit(7, "feet"),
  16430. default: true
  16431. },
  16432. ]
  16433. ))
  16434. characterMakers.push(() => makeCharacter(
  16435. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16436. {
  16437. front: {
  16438. height: math.unit(7, "feet"),
  16439. weight: math.unit(150, "lb"),
  16440. name: "Front",
  16441. image: {
  16442. source: "./media/characters/ian-corvid/front.svg",
  16443. extra: 150 / 142,
  16444. bottom: 0.02
  16445. }
  16446. },
  16447. back: {
  16448. height: math.unit(7, "feet"),
  16449. weight: math.unit(150, "lb"),
  16450. name: "Back",
  16451. image: {
  16452. source: "./media/characters/ian-corvid/back.svg",
  16453. extra: 150 / 143,
  16454. bottom: 0.01
  16455. }
  16456. },
  16457. stomping: {
  16458. height: math.unit(7, "feet"),
  16459. weight: math.unit(150, "lb"),
  16460. name: "Stomping",
  16461. image: {
  16462. source: "./media/characters/ian-corvid/stomping.svg",
  16463. extra: 76 / 72
  16464. }
  16465. },
  16466. sitting: {
  16467. height: math.unit(7 / 1.8, "feet"),
  16468. weight: math.unit(150, "lb"),
  16469. name: "Sitting",
  16470. image: {
  16471. source: "./media/characters/ian-corvid/sitting.svg",
  16472. extra: 1400 / 1269,
  16473. bottom: 0.15
  16474. }
  16475. },
  16476. },
  16477. [
  16478. {
  16479. name: "Tiny Microw",
  16480. height: math.unit(1, "inch")
  16481. },
  16482. {
  16483. name: "Microw",
  16484. height: math.unit(6, "inches")
  16485. },
  16486. {
  16487. name: "Crow",
  16488. height: math.unit(7 + 1 / 12, "feet"),
  16489. default: true
  16490. },
  16491. {
  16492. name: "Macrow",
  16493. height: math.unit(176, "feet")
  16494. },
  16495. ]
  16496. ))
  16497. characterMakers.push(() => makeCharacter(
  16498. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16499. {
  16500. front: {
  16501. height: math.unit(5 + 7 / 12, "feet"),
  16502. weight: math.unit(147, "lb"),
  16503. name: "Front",
  16504. image: {
  16505. source: "./media/characters/natalie-kellon/front.svg",
  16506. extra: 1214 / 1141,
  16507. bottom: 0.02
  16508. }
  16509. },
  16510. },
  16511. [
  16512. {
  16513. name: "Micro",
  16514. height: math.unit(1 / 16, "inch")
  16515. },
  16516. {
  16517. name: "Tiny",
  16518. height: math.unit(4, "inches")
  16519. },
  16520. {
  16521. name: "Normal",
  16522. height: math.unit(5 + 7 / 12, "feet"),
  16523. default: true
  16524. },
  16525. {
  16526. name: "Amazon",
  16527. height: math.unit(12, "feet")
  16528. },
  16529. {
  16530. name: "Giantess",
  16531. height: math.unit(160, "meters")
  16532. },
  16533. {
  16534. name: "Titaness",
  16535. height: math.unit(800, "meters")
  16536. },
  16537. ]
  16538. ))
  16539. characterMakers.push(() => makeCharacter(
  16540. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16541. {
  16542. front: {
  16543. height: math.unit(6, "feet"),
  16544. weight: math.unit(150, "lb"),
  16545. name: "Front",
  16546. image: {
  16547. source: "./media/characters/alluria/front.svg",
  16548. extra: 806 / 738,
  16549. bottom: 0.01
  16550. }
  16551. },
  16552. side: {
  16553. height: math.unit(6, "feet"),
  16554. weight: math.unit(150, "lb"),
  16555. name: "Side",
  16556. image: {
  16557. source: "./media/characters/alluria/side.svg",
  16558. extra: 800 / 750,
  16559. }
  16560. },
  16561. back: {
  16562. height: math.unit(6, "feet"),
  16563. weight: math.unit(150, "lb"),
  16564. name: "Back",
  16565. image: {
  16566. source: "./media/characters/alluria/back.svg",
  16567. extra: 806 / 738,
  16568. }
  16569. },
  16570. frontMaid: {
  16571. height: math.unit(6, "feet"),
  16572. weight: math.unit(150, "lb"),
  16573. name: "Front (Maid)",
  16574. image: {
  16575. source: "./media/characters/alluria/front-maid.svg",
  16576. extra: 806 / 738,
  16577. bottom: 0.01
  16578. }
  16579. },
  16580. sideMaid: {
  16581. height: math.unit(6, "feet"),
  16582. weight: math.unit(150, "lb"),
  16583. name: "Side (Maid)",
  16584. image: {
  16585. source: "./media/characters/alluria/side-maid.svg",
  16586. extra: 800 / 750,
  16587. bottom: 0.005
  16588. }
  16589. },
  16590. backMaid: {
  16591. height: math.unit(6, "feet"),
  16592. weight: math.unit(150, "lb"),
  16593. name: "Back (Maid)",
  16594. image: {
  16595. source: "./media/characters/alluria/back-maid.svg",
  16596. extra: 806 / 738,
  16597. }
  16598. },
  16599. },
  16600. [
  16601. {
  16602. name: "Micro",
  16603. height: math.unit(6, "inches"),
  16604. default: true
  16605. },
  16606. ]
  16607. ))
  16608. characterMakers.push(() => makeCharacter(
  16609. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16610. {
  16611. front: {
  16612. height: math.unit(6, "feet"),
  16613. weight: math.unit(150, "lb"),
  16614. name: "Front",
  16615. image: {
  16616. source: "./media/characters/kyle/front.svg",
  16617. extra: 1069 / 962,
  16618. bottom: 77.228 / 1727.45
  16619. }
  16620. },
  16621. },
  16622. [
  16623. {
  16624. name: "Macro",
  16625. height: math.unit(150, "feet"),
  16626. default: true
  16627. },
  16628. ]
  16629. ))
  16630. characterMakers.push(() => makeCharacter(
  16631. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16632. {
  16633. front: {
  16634. height: math.unit(6, "feet"),
  16635. weight: math.unit(300, "lb"),
  16636. name: "Front",
  16637. image: {
  16638. source: "./media/characters/duncan/front.svg",
  16639. extra: 1650 / 1482,
  16640. bottom: 0.05
  16641. }
  16642. },
  16643. },
  16644. [
  16645. {
  16646. name: "Macro",
  16647. height: math.unit(100, "feet"),
  16648. default: true
  16649. },
  16650. ]
  16651. ))
  16652. characterMakers.push(() => makeCharacter(
  16653. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16654. {
  16655. front: {
  16656. height: math.unit(5 + 4 / 12, "feet"),
  16657. weight: math.unit(220, "lb"),
  16658. name: "Front",
  16659. image: {
  16660. source: "./media/characters/memory/front.svg",
  16661. extra: 3641 / 3545,
  16662. bottom: 0.03
  16663. }
  16664. },
  16665. back: {
  16666. height: math.unit(5 + 4 / 12, "feet"),
  16667. weight: math.unit(220, "lb"),
  16668. name: "Back",
  16669. image: {
  16670. source: "./media/characters/memory/back.svg",
  16671. extra: 3641 / 3545,
  16672. bottom: 0.025
  16673. }
  16674. },
  16675. frontSkirt: {
  16676. height: math.unit(5 + 4 / 12, "feet"),
  16677. weight: math.unit(220, "lb"),
  16678. name: "Front (Skirt)",
  16679. image: {
  16680. source: "./media/characters/memory/front-skirt.svg",
  16681. extra: 3641 / 3545,
  16682. bottom: 0.03
  16683. }
  16684. },
  16685. frontDress: {
  16686. height: math.unit(5 + 4 / 12, "feet"),
  16687. weight: math.unit(220, "lb"),
  16688. name: "Front (Dress)",
  16689. image: {
  16690. source: "./media/characters/memory/front-dress.svg",
  16691. extra: 3641 / 3545,
  16692. bottom: 0.03
  16693. }
  16694. },
  16695. },
  16696. [
  16697. {
  16698. name: "Micro",
  16699. height: math.unit(6, "inches"),
  16700. default: true
  16701. },
  16702. {
  16703. name: "Normal",
  16704. height: math.unit(5 + 4 / 12, "feet")
  16705. },
  16706. ]
  16707. ))
  16708. characterMakers.push(() => makeCharacter(
  16709. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16710. {
  16711. front: {
  16712. height: math.unit(4 + 11 / 12, "feet"),
  16713. weight: math.unit(100, "lb"),
  16714. name: "Front",
  16715. image: {
  16716. source: "./media/characters/luno/front.svg",
  16717. extra: 1535 / 1487,
  16718. bottom: 0.03
  16719. }
  16720. },
  16721. },
  16722. [
  16723. {
  16724. name: "Micro",
  16725. height: math.unit(3, "inches")
  16726. },
  16727. {
  16728. name: "Normal",
  16729. height: math.unit(4 + 11 / 12, "feet"),
  16730. default: true
  16731. },
  16732. {
  16733. name: "Macro",
  16734. height: math.unit(300, "feet")
  16735. },
  16736. {
  16737. name: "Megamacro",
  16738. height: math.unit(700, "miles")
  16739. },
  16740. ]
  16741. ))
  16742. characterMakers.push(() => makeCharacter(
  16743. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16744. {
  16745. front: {
  16746. height: math.unit(6 + 2 / 12, "feet"),
  16747. weight: math.unit(170, "lb"),
  16748. name: "Front",
  16749. image: {
  16750. source: "./media/characters/jamesy/front.svg",
  16751. extra: 440 / 382,
  16752. bottom: 0.005
  16753. }
  16754. },
  16755. },
  16756. [
  16757. {
  16758. name: "Micro",
  16759. height: math.unit(3, "inches")
  16760. },
  16761. {
  16762. name: "Normal",
  16763. height: math.unit(6 + 2 / 12, "feet"),
  16764. default: true
  16765. },
  16766. {
  16767. name: "Macro",
  16768. height: math.unit(300, "feet")
  16769. },
  16770. {
  16771. name: "Megamacro",
  16772. height: math.unit(700, "miles")
  16773. },
  16774. ]
  16775. ))
  16776. characterMakers.push(() => makeCharacter(
  16777. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16778. {
  16779. front: {
  16780. height: math.unit(6, "feet"),
  16781. weight: math.unit(160, "lb"),
  16782. name: "Front",
  16783. image: {
  16784. source: "./media/characters/mark/front.svg",
  16785. extra: 3300 / 3100,
  16786. bottom: 136.42 / 3440.47
  16787. }
  16788. },
  16789. },
  16790. [
  16791. {
  16792. name: "Macro",
  16793. height: math.unit(120, "meters")
  16794. },
  16795. {
  16796. name: "Bigger Macro",
  16797. height: math.unit(350, "meters")
  16798. },
  16799. {
  16800. name: "Megamacro",
  16801. height: math.unit(8, "km"),
  16802. default: true
  16803. },
  16804. {
  16805. name: "Continental",
  16806. height: math.unit(4550, "km")
  16807. },
  16808. {
  16809. name: "Planetary",
  16810. height: math.unit(65000, "km")
  16811. },
  16812. ]
  16813. ))
  16814. characterMakers.push(() => makeCharacter(
  16815. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16816. {
  16817. front: {
  16818. height: math.unit(6, "feet"),
  16819. weight: math.unit(400, "lb"),
  16820. name: "Front",
  16821. image: {
  16822. source: "./media/characters/mac/front.svg",
  16823. extra: 1048 / 987.7,
  16824. bottom: 60 / 1107.6,
  16825. }
  16826. },
  16827. },
  16828. [
  16829. {
  16830. name: "Macro",
  16831. height: math.unit(500, "feet"),
  16832. default: true
  16833. },
  16834. ]
  16835. ))
  16836. characterMakers.push(() => makeCharacter(
  16837. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16838. {
  16839. front: {
  16840. height: math.unit(5 + 2 / 12, "feet"),
  16841. weight: math.unit(190, "lb"),
  16842. name: "Front",
  16843. image: {
  16844. source: "./media/characters/bari/front.svg",
  16845. extra: 3156 / 2880,
  16846. bottom: 0.03
  16847. }
  16848. },
  16849. back: {
  16850. height: math.unit(5 + 2 / 12, "feet"),
  16851. weight: math.unit(190, "lb"),
  16852. name: "Back",
  16853. image: {
  16854. source: "./media/characters/bari/back.svg",
  16855. extra: 3260 / 2834,
  16856. bottom: 0.025
  16857. }
  16858. },
  16859. frontPlush: {
  16860. height: math.unit(5 + 2 / 12, "feet"),
  16861. weight: math.unit(190, "lb"),
  16862. name: "Front (Plush)",
  16863. image: {
  16864. source: "./media/characters/bari/front-plush.svg",
  16865. extra: 1112 / 1061,
  16866. bottom: 0.002
  16867. }
  16868. },
  16869. },
  16870. [
  16871. {
  16872. name: "Micro",
  16873. height: math.unit(3, "inches")
  16874. },
  16875. {
  16876. name: "Normal",
  16877. height: math.unit(5 + 2 / 12, "feet"),
  16878. default: true
  16879. },
  16880. {
  16881. name: "Macro",
  16882. height: math.unit(20, "feet")
  16883. },
  16884. ]
  16885. ))
  16886. characterMakers.push(() => makeCharacter(
  16887. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16888. {
  16889. front: {
  16890. height: math.unit(6 + 1 / 12, "feet"),
  16891. weight: math.unit(275, "lb"),
  16892. name: "Front",
  16893. image: {
  16894. source: "./media/characters/hunter-misha-raven/front.svg"
  16895. }
  16896. },
  16897. },
  16898. [
  16899. {
  16900. name: "Mortal",
  16901. height: math.unit(6 + 1 / 12, "feet")
  16902. },
  16903. {
  16904. name: "Divine",
  16905. height: math.unit(1.12134e34, "parsecs"),
  16906. default: true
  16907. },
  16908. ]
  16909. ))
  16910. characterMakers.push(() => makeCharacter(
  16911. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16912. {
  16913. front: {
  16914. height: math.unit(6 + 3 / 12, "feet"),
  16915. weight: math.unit(220, "lb"),
  16916. name: "Front",
  16917. image: {
  16918. source: "./media/characters/max-calore/front.svg",
  16919. extra: 1700 / 1648,
  16920. bottom: 0.01
  16921. }
  16922. },
  16923. back: {
  16924. height: math.unit(6 + 3 / 12, "feet"),
  16925. weight: math.unit(220, "lb"),
  16926. name: "Back",
  16927. image: {
  16928. source: "./media/characters/max-calore/back.svg",
  16929. extra: 1700 / 1648,
  16930. bottom: 0.01
  16931. }
  16932. },
  16933. },
  16934. [
  16935. {
  16936. name: "Normal",
  16937. height: math.unit(6 + 3 / 12, "feet"),
  16938. default: true
  16939. },
  16940. ]
  16941. ))
  16942. characterMakers.push(() => makeCharacter(
  16943. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16944. {
  16945. side: {
  16946. height: math.unit(2 + 8 / 12, "feet"),
  16947. weight: math.unit(99, "lb"),
  16948. name: "Side",
  16949. image: {
  16950. source: "./media/characters/aspen/side.svg",
  16951. extra: 152 / 138,
  16952. bottom: 0.032
  16953. }
  16954. },
  16955. },
  16956. [
  16957. {
  16958. name: "Normal",
  16959. height: math.unit(2 + 8 / 12, "feet"),
  16960. default: true
  16961. },
  16962. ]
  16963. ))
  16964. characterMakers.push(() => makeCharacter(
  16965. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16966. {
  16967. side: {
  16968. height: math.unit(3 + 2 / 12, "feet"),
  16969. weight: math.unit(224, "lb"),
  16970. name: "Side",
  16971. image: {
  16972. source: "./media/characters/sheila-feral-wolf/side.svg",
  16973. extra: 179 / 166,
  16974. bottom: 0.03
  16975. }
  16976. },
  16977. },
  16978. [
  16979. {
  16980. name: "Normal",
  16981. height: math.unit(3 + 2 / 12, "feet"),
  16982. default: true
  16983. },
  16984. ]
  16985. ))
  16986. characterMakers.push(() => makeCharacter(
  16987. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16988. {
  16989. side: {
  16990. height: math.unit(1 + 9 / 12, "feet"),
  16991. weight: math.unit(38, "lb"),
  16992. name: "Side",
  16993. image: {
  16994. source: "./media/characters/michelle/side.svg",
  16995. extra: 147 / 136.7,
  16996. bottom: 0.03
  16997. }
  16998. },
  16999. },
  17000. [
  17001. {
  17002. name: "Normal",
  17003. height: math.unit(1 + 9 / 12, "feet"),
  17004. default: true
  17005. },
  17006. ]
  17007. ))
  17008. characterMakers.push(() => makeCharacter(
  17009. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17010. {
  17011. front: {
  17012. height: math.unit(1 + 1 / 12, "feet"),
  17013. weight: math.unit(18, "lb"),
  17014. name: "Front",
  17015. image: {
  17016. source: "./media/characters/nino/front.svg"
  17017. }
  17018. },
  17019. },
  17020. [
  17021. {
  17022. name: "Normal",
  17023. height: math.unit(1 + 1 / 12, "feet"),
  17024. default: true
  17025. },
  17026. ]
  17027. ))
  17028. characterMakers.push(() => makeCharacter(
  17029. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17030. {
  17031. front: {
  17032. height: math.unit(1, "feet"),
  17033. weight: math.unit(16, "lb"),
  17034. name: "Front",
  17035. image: {
  17036. source: "./media/characters/viola/front.svg"
  17037. }
  17038. },
  17039. },
  17040. [
  17041. {
  17042. name: "Normal",
  17043. height: math.unit(1, "feet"),
  17044. default: true
  17045. },
  17046. ]
  17047. ))
  17048. characterMakers.push(() => makeCharacter(
  17049. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17050. {
  17051. front: {
  17052. height: math.unit(6 + 5 / 12, "feet"),
  17053. weight: math.unit(580, "lb"),
  17054. name: "Front",
  17055. image: {
  17056. source: "./media/characters/atlas/front.svg",
  17057. extra: 298.5 / 290,
  17058. bottom: 0.015
  17059. }
  17060. },
  17061. },
  17062. [
  17063. {
  17064. name: "Normal",
  17065. height: math.unit(6 + 5 / 12, "feet"),
  17066. default: true
  17067. },
  17068. ]
  17069. ))
  17070. characterMakers.push(() => makeCharacter(
  17071. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17072. {
  17073. side: {
  17074. height: math.unit(1 + 10 / 12, "feet"),
  17075. weight: math.unit(25, "lb"),
  17076. name: "Side",
  17077. image: {
  17078. source: "./media/characters/davy/side.svg",
  17079. extra: 200 / 170,
  17080. bottom: 0.01
  17081. }
  17082. },
  17083. },
  17084. [
  17085. {
  17086. name: "Normal",
  17087. height: math.unit(1 + 10 / 12, "feet"),
  17088. default: true
  17089. },
  17090. ]
  17091. ))
  17092. characterMakers.push(() => makeCharacter(
  17093. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17094. {
  17095. side: {
  17096. height: math.unit(4 + 8 / 12, "feet"),
  17097. weight: math.unit(166, "lb"),
  17098. name: "Side",
  17099. image: {
  17100. source: "./media/characters/fiona/side.svg",
  17101. extra: 232 / 220,
  17102. bottom: 0.03
  17103. }
  17104. },
  17105. },
  17106. [
  17107. {
  17108. name: "Normal",
  17109. height: math.unit(4 + 8 / 12, "feet"),
  17110. default: true
  17111. },
  17112. ]
  17113. ))
  17114. characterMakers.push(() => makeCharacter(
  17115. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17116. {
  17117. front: {
  17118. height: math.unit(2, "feet"),
  17119. weight: math.unit(62, "lb"),
  17120. name: "Front",
  17121. image: {
  17122. source: "./media/characters/lyla/front.svg",
  17123. bottom: 0.1
  17124. }
  17125. },
  17126. },
  17127. [
  17128. {
  17129. name: "Normal",
  17130. height: math.unit(2, "feet"),
  17131. default: true
  17132. },
  17133. ]
  17134. ))
  17135. characterMakers.push(() => makeCharacter(
  17136. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17137. {
  17138. side: {
  17139. height: math.unit(1.8, "feet"),
  17140. weight: math.unit(44, "lb"),
  17141. name: "Side",
  17142. image: {
  17143. source: "./media/characters/perseus/side.svg",
  17144. bottom: 0.21
  17145. }
  17146. },
  17147. },
  17148. [
  17149. {
  17150. name: "Normal",
  17151. height: math.unit(1.8, "feet"),
  17152. default: true
  17153. },
  17154. ]
  17155. ))
  17156. characterMakers.push(() => makeCharacter(
  17157. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17158. {
  17159. side: {
  17160. height: math.unit(4 + 2 / 12, "feet"),
  17161. weight: math.unit(20, "lb"),
  17162. name: "Side",
  17163. image: {
  17164. source: "./media/characters/remus/side.svg"
  17165. }
  17166. },
  17167. },
  17168. [
  17169. {
  17170. name: "Normal",
  17171. height: math.unit(4 + 2 / 12, "feet"),
  17172. default: true
  17173. },
  17174. ]
  17175. ))
  17176. characterMakers.push(() => makeCharacter(
  17177. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17178. {
  17179. front: {
  17180. height: math.unit(4 + 11 / 12, "feet"),
  17181. weight: math.unit(114, "lb"),
  17182. name: "Front",
  17183. image: {
  17184. source: "./media/characters/raf/front.svg",
  17185. bottom: 20.5 / 1863
  17186. }
  17187. },
  17188. side: {
  17189. height: math.unit(4 + 11 / 12, "feet"),
  17190. weight: math.unit(114, "lb"),
  17191. name: "Side",
  17192. image: {
  17193. source: "./media/characters/raf/side.svg",
  17194. bottom: 22 / 1822
  17195. }
  17196. },
  17197. },
  17198. [
  17199. {
  17200. name: "Micro",
  17201. height: math.unit(2, "inches")
  17202. },
  17203. {
  17204. name: "Normal",
  17205. height: math.unit(4 + 11 / 12, "feet"),
  17206. default: true
  17207. },
  17208. {
  17209. name: "Macro",
  17210. height: math.unit(70, "feet")
  17211. },
  17212. ]
  17213. ))
  17214. characterMakers.push(() => makeCharacter(
  17215. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17216. {
  17217. front: {
  17218. height: math.unit(1.5, "meters"),
  17219. weight: math.unit(68, "kg"),
  17220. name: "Front",
  17221. image: {
  17222. source: "./media/characters/liam-einarr/front.svg",
  17223. extra: 2822 / 2666
  17224. }
  17225. },
  17226. back: {
  17227. height: math.unit(1.5, "meters"),
  17228. weight: math.unit(68, "kg"),
  17229. name: "Back",
  17230. image: {
  17231. source: "./media/characters/liam-einarr/back.svg",
  17232. extra: 2822 / 2666,
  17233. bottom: 0.015
  17234. }
  17235. },
  17236. },
  17237. [
  17238. {
  17239. name: "Normal",
  17240. height: math.unit(1.5, "meters"),
  17241. default: true
  17242. },
  17243. {
  17244. name: "Macro",
  17245. height: math.unit(150, "meters")
  17246. },
  17247. {
  17248. name: "Megamacro",
  17249. height: math.unit(35, "km")
  17250. },
  17251. ]
  17252. ))
  17253. characterMakers.push(() => makeCharacter(
  17254. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17255. {
  17256. front: {
  17257. height: math.unit(6, "feet"),
  17258. weight: math.unit(75, "kg"),
  17259. name: "Front",
  17260. image: {
  17261. source: "./media/characters/linda/front.svg",
  17262. extra: 930 / 874,
  17263. bottom: 0.004
  17264. }
  17265. },
  17266. },
  17267. [
  17268. {
  17269. name: "Normal",
  17270. height: math.unit(6, "feet"),
  17271. default: true
  17272. },
  17273. ]
  17274. ))
  17275. characterMakers.push(() => makeCharacter(
  17276. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17277. {
  17278. front: {
  17279. height: math.unit(6 + 8 / 12, "feet"),
  17280. weight: math.unit(220, "lb"),
  17281. name: "Front",
  17282. image: {
  17283. source: "./media/characters/caylex/front.svg",
  17284. extra: 821 / 772,
  17285. bottom: 0.07
  17286. }
  17287. },
  17288. back: {
  17289. height: math.unit(6 + 8 / 12, "feet"),
  17290. weight: math.unit(220, "lb"),
  17291. name: "Back",
  17292. image: {
  17293. source: "./media/characters/caylex/back.svg",
  17294. extra: 821 / 772,
  17295. bottom: 0.022
  17296. }
  17297. },
  17298. hand: {
  17299. height: math.unit(1.25, "feet"),
  17300. name: "Hand",
  17301. image: {
  17302. source: "./media/characters/caylex/hand.svg"
  17303. }
  17304. },
  17305. foot: {
  17306. height: math.unit(1.6, "feet"),
  17307. name: "Foot",
  17308. image: {
  17309. source: "./media/characters/caylex/foot.svg"
  17310. }
  17311. },
  17312. armored: {
  17313. height: math.unit(6 + 8 / 12, "feet"),
  17314. weight: math.unit(250, "lb"),
  17315. name: "Armored",
  17316. image: {
  17317. source: "./media/characters/caylex/armored.svg",
  17318. extra: 1420 / 1310,
  17319. bottom: 0.045
  17320. }
  17321. },
  17322. },
  17323. [
  17324. {
  17325. name: "Normal",
  17326. height: math.unit(6 + 8 / 12, "feet"),
  17327. default: true
  17328. },
  17329. {
  17330. name: "Normal+",
  17331. height: math.unit(12, "feet")
  17332. },
  17333. ]
  17334. ))
  17335. characterMakers.push(() => makeCharacter(
  17336. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17337. {
  17338. front: {
  17339. height: math.unit(7 + 6 / 12, "feet"),
  17340. weight: math.unit(288, "lb"),
  17341. name: "Front",
  17342. image: {
  17343. source: "./media/characters/alana/front.svg",
  17344. extra: 679 / 653,
  17345. bottom: 22.5 / 701
  17346. }
  17347. },
  17348. },
  17349. [
  17350. {
  17351. name: "Normal",
  17352. height: math.unit(7 + 6 / 12, "feet")
  17353. },
  17354. {
  17355. name: "Large",
  17356. height: math.unit(50, "feet")
  17357. },
  17358. {
  17359. name: "Macro",
  17360. height: math.unit(100, "feet"),
  17361. default: true
  17362. },
  17363. {
  17364. name: "Macro+",
  17365. height: math.unit(200, "feet")
  17366. },
  17367. ]
  17368. ))
  17369. characterMakers.push(() => makeCharacter(
  17370. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17371. {
  17372. front: {
  17373. height: math.unit(6 + 1 / 12, "feet"),
  17374. weight: math.unit(210, "lb"),
  17375. name: "Front",
  17376. image: {
  17377. source: "./media/characters/hasani/front.svg",
  17378. extra: 244 / 232,
  17379. bottom: 0.01
  17380. }
  17381. },
  17382. back: {
  17383. height: math.unit(6 + 1 / 12, "feet"),
  17384. weight: math.unit(210, "lb"),
  17385. name: "Back",
  17386. image: {
  17387. source: "./media/characters/hasani/back.svg",
  17388. extra: 244 / 232,
  17389. bottom: 0.01
  17390. }
  17391. },
  17392. },
  17393. [
  17394. {
  17395. name: "Normal",
  17396. height: math.unit(6 + 1 / 12, "feet")
  17397. },
  17398. {
  17399. name: "Macro",
  17400. height: math.unit(175, "feet"),
  17401. default: true
  17402. },
  17403. ]
  17404. ))
  17405. characterMakers.push(() => makeCharacter(
  17406. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17407. {
  17408. front: {
  17409. height: math.unit(1.82, "meters"),
  17410. weight: math.unit(140, "lb"),
  17411. name: "Front",
  17412. image: {
  17413. source: "./media/characters/nita/front.svg",
  17414. extra: 2473 / 2363,
  17415. bottom: 0.01
  17416. }
  17417. },
  17418. },
  17419. [
  17420. {
  17421. name: "Normal",
  17422. height: math.unit(1.82, "m")
  17423. },
  17424. {
  17425. name: "Macro",
  17426. height: math.unit(300, "m")
  17427. },
  17428. {
  17429. name: "Mistake Canon",
  17430. height: math.unit(0.5, "miles"),
  17431. default: true
  17432. },
  17433. {
  17434. name: "Big Mistake",
  17435. height: math.unit(13, "miles")
  17436. },
  17437. {
  17438. name: "Playing God",
  17439. height: math.unit(2450, "miles")
  17440. },
  17441. ]
  17442. ))
  17443. characterMakers.push(() => makeCharacter(
  17444. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17445. {
  17446. front: {
  17447. height: math.unit(4, "feet"),
  17448. weight: math.unit(120, "lb"),
  17449. name: "Front",
  17450. image: {
  17451. source: "./media/characters/shiriko/front.svg",
  17452. extra: 970/934,
  17453. bottom: 5/975
  17454. }
  17455. },
  17456. },
  17457. [
  17458. {
  17459. name: "Normal",
  17460. height: math.unit(4, "feet"),
  17461. default: true
  17462. },
  17463. ]
  17464. ))
  17465. characterMakers.push(() => makeCharacter(
  17466. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17467. {
  17468. front: {
  17469. height: math.unit(6, "feet"),
  17470. name: "front",
  17471. image: {
  17472. source: "./media/characters/deja/front.svg",
  17473. extra: 926 / 840,
  17474. bottom: 0.07
  17475. }
  17476. },
  17477. },
  17478. [
  17479. {
  17480. name: "Planck Length",
  17481. height: math.unit(1.6e-35, "meters")
  17482. },
  17483. {
  17484. name: "Normal",
  17485. height: math.unit(30.48, "meters"),
  17486. default: true
  17487. },
  17488. {
  17489. name: "Universal",
  17490. height: math.unit(8.8e26, "meters")
  17491. },
  17492. ]
  17493. ))
  17494. characterMakers.push(() => makeCharacter(
  17495. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17496. {
  17497. side: {
  17498. height: math.unit(8, "feet"),
  17499. weight: math.unit(6300, "lb"),
  17500. name: "Side",
  17501. image: {
  17502. source: "./media/characters/anima/side.svg",
  17503. bottom: 0.035
  17504. }
  17505. },
  17506. },
  17507. [
  17508. {
  17509. name: "Normal",
  17510. height: math.unit(8, "feet"),
  17511. default: true
  17512. },
  17513. ]
  17514. ))
  17515. characterMakers.push(() => makeCharacter(
  17516. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17517. {
  17518. front: {
  17519. height: math.unit(8, "feet"),
  17520. weight: math.unit(350, "lb"),
  17521. name: "Front",
  17522. image: {
  17523. source: "./media/characters/bianca/front.svg",
  17524. extra: 234 / 225,
  17525. bottom: 0.03
  17526. }
  17527. },
  17528. },
  17529. [
  17530. {
  17531. name: "Normal",
  17532. height: math.unit(8, "feet"),
  17533. default: true
  17534. },
  17535. ]
  17536. ))
  17537. characterMakers.push(() => makeCharacter(
  17538. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17539. {
  17540. front: {
  17541. height: math.unit(6, "feet"),
  17542. weight: math.unit(150, "lb"),
  17543. name: "Front",
  17544. image: {
  17545. source: "./media/characters/adinia/front.svg",
  17546. extra: 1845 / 1672,
  17547. bottom: 0.02
  17548. }
  17549. },
  17550. back: {
  17551. height: math.unit(6, "feet"),
  17552. weight: math.unit(150, "lb"),
  17553. name: "Back",
  17554. image: {
  17555. source: "./media/characters/adinia/back.svg",
  17556. extra: 1845 / 1672,
  17557. bottom: 0.002
  17558. }
  17559. },
  17560. },
  17561. [
  17562. {
  17563. name: "Normal",
  17564. height: math.unit(11 + 5 / 12, "feet"),
  17565. default: true
  17566. },
  17567. ]
  17568. ))
  17569. characterMakers.push(() => makeCharacter(
  17570. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17571. {
  17572. front: {
  17573. height: math.unit(3, "meters"),
  17574. weight: math.unit(200, "kg"),
  17575. name: "Front",
  17576. image: {
  17577. source: "./media/characters/lykasa/front.svg",
  17578. extra: 1076 / 976,
  17579. bottom: 0.06
  17580. }
  17581. },
  17582. },
  17583. [
  17584. {
  17585. name: "Normal",
  17586. height: math.unit(3, "meters")
  17587. },
  17588. {
  17589. name: "Kaiju",
  17590. height: math.unit(120, "meters"),
  17591. default: true
  17592. },
  17593. {
  17594. name: "Mega Kaiju",
  17595. height: math.unit(240, "km")
  17596. },
  17597. {
  17598. name: "Giga Kaiju",
  17599. height: math.unit(400, "megameters")
  17600. },
  17601. {
  17602. name: "Tera Kaiju",
  17603. height: math.unit(800, "gigameters")
  17604. },
  17605. {
  17606. name: "Kaiju Dragon Goddess",
  17607. height: math.unit(26, "zettaparsecs")
  17608. },
  17609. ]
  17610. ))
  17611. characterMakers.push(() => makeCharacter(
  17612. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17613. {
  17614. side: {
  17615. height: math.unit(283 / 124 * 6, "feet"),
  17616. weight: math.unit(35000, "lb"),
  17617. name: "Side",
  17618. image: {
  17619. source: "./media/characters/malfaren/side.svg",
  17620. extra: 2500 / 1010,
  17621. bottom: 0.01
  17622. }
  17623. },
  17624. front: {
  17625. height: math.unit(22.36, "feet"),
  17626. weight: math.unit(35000, "lb"),
  17627. name: "Front",
  17628. image: {
  17629. source: "./media/characters/malfaren/front.svg",
  17630. extra: 1631 / 1476,
  17631. bottom: 0.01
  17632. }
  17633. },
  17634. maw: {
  17635. height: math.unit(6.9, "feet"),
  17636. name: "Maw",
  17637. image: {
  17638. source: "./media/characters/malfaren/maw.svg"
  17639. }
  17640. },
  17641. },
  17642. [
  17643. {
  17644. name: "Big",
  17645. height: math.unit(283 / 162 * 6, "feet"),
  17646. },
  17647. {
  17648. name: "Bigger",
  17649. height: math.unit(283 / 124 * 6, "feet")
  17650. },
  17651. {
  17652. name: "Massive",
  17653. height: math.unit(283 / 92 * 6, "feet"),
  17654. default: true
  17655. },
  17656. {
  17657. name: "👀💦",
  17658. height: math.unit(283 / 73 * 6, "feet"),
  17659. },
  17660. ]
  17661. ))
  17662. characterMakers.push(() => makeCharacter(
  17663. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17664. {
  17665. front: {
  17666. height: math.unit(1.7, "m"),
  17667. weight: math.unit(70, "kg"),
  17668. name: "Front",
  17669. image: {
  17670. source: "./media/characters/kernel/front.svg",
  17671. extra: 222 / 210,
  17672. bottom: 0.007
  17673. }
  17674. },
  17675. },
  17676. [
  17677. {
  17678. name: "Nano",
  17679. height: math.unit(17, "micrometers")
  17680. },
  17681. {
  17682. name: "Micro",
  17683. height: math.unit(1.7, "mm")
  17684. },
  17685. {
  17686. name: "Small",
  17687. height: math.unit(1.7, "cm")
  17688. },
  17689. {
  17690. name: "Normal",
  17691. height: math.unit(1.7, "m"),
  17692. default: true
  17693. },
  17694. ]
  17695. ))
  17696. characterMakers.push(() => makeCharacter(
  17697. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17698. {
  17699. front: {
  17700. height: math.unit(1.75, "meters"),
  17701. weight: math.unit(65, "kg"),
  17702. name: "Front",
  17703. image: {
  17704. source: "./media/characters/jayne-folest/front.svg",
  17705. extra: 2115 / 2007,
  17706. bottom: 0.02
  17707. }
  17708. },
  17709. back: {
  17710. height: math.unit(1.75, "meters"),
  17711. weight: math.unit(65, "kg"),
  17712. name: "Back",
  17713. image: {
  17714. source: "./media/characters/jayne-folest/back.svg",
  17715. extra: 2115 / 2007,
  17716. bottom: 0.005
  17717. }
  17718. },
  17719. frontClothed: {
  17720. height: math.unit(1.75, "meters"),
  17721. weight: math.unit(65, "kg"),
  17722. name: "Front (Clothed)",
  17723. image: {
  17724. source: "./media/characters/jayne-folest/front-clothed.svg",
  17725. extra: 2115 / 2007,
  17726. bottom: 0.035
  17727. }
  17728. },
  17729. hand: {
  17730. height: math.unit(1 / 1.260, "feet"),
  17731. name: "Hand",
  17732. image: {
  17733. source: "./media/characters/jayne-folest/hand.svg"
  17734. }
  17735. },
  17736. foot: {
  17737. height: math.unit(1 / 0.918, "feet"),
  17738. name: "Foot",
  17739. image: {
  17740. source: "./media/characters/jayne-folest/foot.svg"
  17741. }
  17742. },
  17743. },
  17744. [
  17745. {
  17746. name: "Micro",
  17747. height: math.unit(4, "cm")
  17748. },
  17749. {
  17750. name: "Normal",
  17751. height: math.unit(1.75, "meters")
  17752. },
  17753. {
  17754. name: "Macro",
  17755. height: math.unit(47.5, "meters"),
  17756. default: true
  17757. },
  17758. ]
  17759. ))
  17760. characterMakers.push(() => makeCharacter(
  17761. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17762. {
  17763. front: {
  17764. height: math.unit(180, "cm"),
  17765. weight: math.unit(70, "kg"),
  17766. name: "Front",
  17767. image: {
  17768. source: "./media/characters/algier/front.svg",
  17769. extra: 596 / 572,
  17770. bottom: 0.04
  17771. }
  17772. },
  17773. back: {
  17774. height: math.unit(180, "cm"),
  17775. weight: math.unit(70, "kg"),
  17776. name: "Back",
  17777. image: {
  17778. source: "./media/characters/algier/back.svg",
  17779. extra: 596 / 572,
  17780. bottom: 0.025
  17781. }
  17782. },
  17783. frontdressed: {
  17784. height: math.unit(180, "cm"),
  17785. weight: math.unit(150, "kg"),
  17786. name: "Front-dressed",
  17787. image: {
  17788. source: "./media/characters/algier/front-dressed.svg",
  17789. extra: 596 / 572,
  17790. bottom: 0.038
  17791. }
  17792. },
  17793. },
  17794. [
  17795. {
  17796. name: "Micro",
  17797. height: math.unit(5, "cm")
  17798. },
  17799. {
  17800. name: "Normal",
  17801. height: math.unit(180, "cm"),
  17802. default: true
  17803. },
  17804. {
  17805. name: "Macro",
  17806. height: math.unit(64, "m")
  17807. },
  17808. ]
  17809. ))
  17810. characterMakers.push(() => makeCharacter(
  17811. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17812. {
  17813. upright: {
  17814. height: math.unit(7, "feet"),
  17815. weight: math.unit(300, "lb"),
  17816. name: "Upright",
  17817. image: {
  17818. source: "./media/characters/pretzel/upright.svg",
  17819. extra: 534 / 522,
  17820. bottom: 0.065
  17821. }
  17822. },
  17823. sprawling: {
  17824. height: math.unit(3.75, "feet"),
  17825. weight: math.unit(300, "lb"),
  17826. name: "Sprawling",
  17827. image: {
  17828. source: "./media/characters/pretzel/sprawling.svg",
  17829. extra: 314 / 281,
  17830. bottom: 0.1
  17831. }
  17832. },
  17833. tongue: {
  17834. height: math.unit(2, "feet"),
  17835. name: "Tongue",
  17836. image: {
  17837. source: "./media/characters/pretzel/tongue.svg"
  17838. }
  17839. },
  17840. },
  17841. [
  17842. {
  17843. name: "Normal",
  17844. height: math.unit(7, "feet"),
  17845. default: true
  17846. },
  17847. {
  17848. name: "Oversized",
  17849. height: math.unit(15, "feet")
  17850. },
  17851. {
  17852. name: "Huge",
  17853. height: math.unit(30, "feet")
  17854. },
  17855. {
  17856. name: "Macro",
  17857. height: math.unit(250, "feet")
  17858. },
  17859. ]
  17860. ))
  17861. characterMakers.push(() => makeCharacter(
  17862. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17863. {
  17864. sideFront: {
  17865. height: math.unit(5 + 2 / 12, "feet"),
  17866. weight: math.unit(120, "lb"),
  17867. name: "Front Side",
  17868. image: {
  17869. source: "./media/characters/roxi/side-front.svg",
  17870. extra: 2924 / 2717,
  17871. bottom: 0.08
  17872. }
  17873. },
  17874. sideBack: {
  17875. height: math.unit(5 + 2 / 12, "feet"),
  17876. weight: math.unit(120, "lb"),
  17877. name: "Back Side",
  17878. image: {
  17879. source: "./media/characters/roxi/side-back.svg",
  17880. extra: 2904 / 2693,
  17881. bottom: 0.06
  17882. }
  17883. },
  17884. front: {
  17885. height: math.unit(5 + 2 / 12, "feet"),
  17886. weight: math.unit(120, "lb"),
  17887. name: "Front",
  17888. image: {
  17889. source: "./media/characters/roxi/front.svg",
  17890. extra: 2028 / 1907,
  17891. bottom: 0.01
  17892. }
  17893. },
  17894. frontAlt: {
  17895. height: math.unit(5 + 2 / 12, "feet"),
  17896. weight: math.unit(120, "lb"),
  17897. name: "Front (Alt)",
  17898. image: {
  17899. source: "./media/characters/roxi/front-alt.svg",
  17900. extra: 1828 / 1798,
  17901. bottom: 0.01
  17902. }
  17903. },
  17904. sitting: {
  17905. height: math.unit(2.8, "feet"),
  17906. weight: math.unit(120, "lb"),
  17907. name: "Sitting",
  17908. image: {
  17909. source: "./media/characters/roxi/sitting.svg",
  17910. extra: 2660 / 2462,
  17911. bottom: 0.1
  17912. }
  17913. },
  17914. },
  17915. [
  17916. {
  17917. name: "Normal",
  17918. height: math.unit(5 + 2 / 12, "feet"),
  17919. default: true
  17920. },
  17921. ]
  17922. ))
  17923. characterMakers.push(() => makeCharacter(
  17924. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17925. {
  17926. side: {
  17927. height: math.unit(55, "feet"),
  17928. weight: math.unit(153, "tons"),
  17929. name: "Side",
  17930. image: {
  17931. source: "./media/characters/shadow/side.svg",
  17932. extra: 701 / 628,
  17933. bottom: 0.02
  17934. }
  17935. },
  17936. flying: {
  17937. height: math.unit(145, "feet"),
  17938. weight: math.unit(153, "tons"),
  17939. name: "Flying",
  17940. image: {
  17941. source: "./media/characters/shadow/flying.svg"
  17942. }
  17943. },
  17944. },
  17945. [
  17946. {
  17947. name: "Normal",
  17948. height: math.unit(55, "feet"),
  17949. default: true
  17950. },
  17951. ]
  17952. ))
  17953. characterMakers.push(() => makeCharacter(
  17954. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17955. {
  17956. front: {
  17957. height: math.unit(6, "feet"),
  17958. weight: math.unit(200, "lb"),
  17959. name: "Front",
  17960. image: {
  17961. source: "./media/characters/marcie/front.svg",
  17962. extra: 960 / 876,
  17963. bottom: 58 / 1017.87
  17964. }
  17965. },
  17966. },
  17967. [
  17968. {
  17969. name: "Macro",
  17970. height: math.unit(1, "mile"),
  17971. default: true
  17972. },
  17973. ]
  17974. ))
  17975. characterMakers.push(() => makeCharacter(
  17976. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17977. {
  17978. front: {
  17979. height: math.unit(7, "feet"),
  17980. weight: math.unit(200, "lb"),
  17981. name: "Front",
  17982. image: {
  17983. source: "./media/characters/kachina/front.svg",
  17984. extra: 1290.68 / 1119,
  17985. bottom: 36.5 / 1327.18
  17986. }
  17987. },
  17988. },
  17989. [
  17990. {
  17991. name: "Normal",
  17992. height: math.unit(7, "feet"),
  17993. default: true
  17994. },
  17995. ]
  17996. ))
  17997. characterMakers.push(() => makeCharacter(
  17998. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17999. {
  18000. looking: {
  18001. height: math.unit(2, "meters"),
  18002. weight: math.unit(300, "kg"),
  18003. name: "Looking",
  18004. image: {
  18005. source: "./media/characters/kash/looking.svg",
  18006. extra: 474 / 344,
  18007. bottom: 0.03
  18008. }
  18009. },
  18010. side: {
  18011. height: math.unit(2, "meters"),
  18012. weight: math.unit(300, "kg"),
  18013. name: "Side",
  18014. image: {
  18015. source: "./media/characters/kash/side.svg",
  18016. extra: 302 / 251,
  18017. bottom: 0.03
  18018. }
  18019. },
  18020. front: {
  18021. height: math.unit(2, "meters"),
  18022. weight: math.unit(300, "kg"),
  18023. name: "Front",
  18024. image: {
  18025. source: "./media/characters/kash/front.svg",
  18026. extra: 495 / 360,
  18027. bottom: 0.015
  18028. }
  18029. },
  18030. },
  18031. [
  18032. {
  18033. name: "Normal",
  18034. height: math.unit(2, "meters"),
  18035. default: true
  18036. },
  18037. {
  18038. name: "Big",
  18039. height: math.unit(3, "meters")
  18040. },
  18041. {
  18042. name: "Large",
  18043. height: math.unit(5, "meters")
  18044. },
  18045. ]
  18046. ))
  18047. characterMakers.push(() => makeCharacter(
  18048. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18049. {
  18050. feeding: {
  18051. height: math.unit(6.7, "feet"),
  18052. weight: math.unit(350, "lb"),
  18053. name: "Feeding",
  18054. image: {
  18055. source: "./media/characters/lalim/feeding.svg",
  18056. }
  18057. },
  18058. },
  18059. [
  18060. {
  18061. name: "Normal",
  18062. height: math.unit(6.7, "feet"),
  18063. default: true
  18064. },
  18065. ]
  18066. ))
  18067. characterMakers.push(() => makeCharacter(
  18068. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18069. {
  18070. front: {
  18071. height: math.unit(9.5, "feet"),
  18072. weight: math.unit(600, "lb"),
  18073. name: "Front",
  18074. image: {
  18075. source: "./media/characters/de'vout/front.svg",
  18076. extra: 1443 / 1328,
  18077. bottom: 0.025
  18078. }
  18079. },
  18080. back: {
  18081. height: math.unit(9.5, "feet"),
  18082. weight: math.unit(600, "lb"),
  18083. name: "Back",
  18084. image: {
  18085. source: "./media/characters/de'vout/back.svg",
  18086. extra: 1443 / 1328
  18087. }
  18088. },
  18089. frontDressed: {
  18090. height: math.unit(9.5, "feet"),
  18091. weight: math.unit(600, "lb"),
  18092. name: "Front (Dressed",
  18093. image: {
  18094. source: "./media/characters/de'vout/front-dressed.svg",
  18095. extra: 1443 / 1328,
  18096. bottom: 0.025
  18097. }
  18098. },
  18099. backDressed: {
  18100. height: math.unit(9.5, "feet"),
  18101. weight: math.unit(600, "lb"),
  18102. name: "Back (Dressed",
  18103. image: {
  18104. source: "./media/characters/de'vout/back-dressed.svg",
  18105. extra: 1443 / 1328
  18106. }
  18107. },
  18108. },
  18109. [
  18110. {
  18111. name: "Normal",
  18112. height: math.unit(9.5, "feet"),
  18113. default: true
  18114. },
  18115. ]
  18116. ))
  18117. characterMakers.push(() => makeCharacter(
  18118. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18119. {
  18120. front: {
  18121. height: math.unit(8, "feet"),
  18122. weight: math.unit(225, "lb"),
  18123. name: "Front",
  18124. image: {
  18125. source: "./media/characters/talana/front.svg",
  18126. extra: 1410 / 1300,
  18127. bottom: 0.015
  18128. }
  18129. },
  18130. frontDressed: {
  18131. height: math.unit(8, "feet"),
  18132. weight: math.unit(225, "lb"),
  18133. name: "Front (Dressed",
  18134. image: {
  18135. source: "./media/characters/talana/front-dressed.svg",
  18136. extra: 1410 / 1300,
  18137. bottom: 0.015
  18138. }
  18139. },
  18140. },
  18141. [
  18142. {
  18143. name: "Normal",
  18144. height: math.unit(8, "feet"),
  18145. default: true
  18146. },
  18147. ]
  18148. ))
  18149. characterMakers.push(() => makeCharacter(
  18150. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18151. {
  18152. side: {
  18153. height: math.unit(7.2, "feet"),
  18154. weight: math.unit(150, "lb"),
  18155. name: "Side",
  18156. image: {
  18157. source: "./media/characters/xeauvok/side.svg",
  18158. extra: 1975 / 1523,
  18159. bottom: 0.07
  18160. }
  18161. },
  18162. },
  18163. [
  18164. {
  18165. name: "Normal",
  18166. height: math.unit(7.2, "feet"),
  18167. default: true
  18168. },
  18169. ]
  18170. ))
  18171. characterMakers.push(() => makeCharacter(
  18172. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18173. {
  18174. side: {
  18175. height: math.unit(10, "feet"),
  18176. weight: math.unit(900, "kg"),
  18177. name: "Side",
  18178. image: {
  18179. source: "./media/characters/zara/side.svg",
  18180. extra: 504 / 498
  18181. }
  18182. },
  18183. },
  18184. [
  18185. {
  18186. name: "Normal",
  18187. height: math.unit(10, "feet"),
  18188. default: true
  18189. },
  18190. ]
  18191. ))
  18192. characterMakers.push(() => makeCharacter(
  18193. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18194. {
  18195. side: {
  18196. height: math.unit(6, "feet"),
  18197. weight: math.unit(150, "lb"),
  18198. name: "Side",
  18199. image: {
  18200. source: "./media/characters/richard-dragon/side.svg",
  18201. extra: 845 / 340,
  18202. bottom: 0.017
  18203. }
  18204. },
  18205. maw: {
  18206. height: math.unit(2.97, "feet"),
  18207. name: "Maw",
  18208. image: {
  18209. source: "./media/characters/richard-dragon/maw.svg"
  18210. }
  18211. },
  18212. },
  18213. [
  18214. ]
  18215. ))
  18216. characterMakers.push(() => makeCharacter(
  18217. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18218. {
  18219. front: {
  18220. height: math.unit(4, "feet"),
  18221. weight: math.unit(100, "lb"),
  18222. name: "Front",
  18223. image: {
  18224. source: "./media/characters/richard-smeargle/front.svg",
  18225. extra: 2952 / 2820,
  18226. bottom: 0.028
  18227. }
  18228. },
  18229. },
  18230. [
  18231. {
  18232. name: "Normal",
  18233. height: math.unit(4, "feet"),
  18234. default: true
  18235. },
  18236. {
  18237. name: "Dynamax",
  18238. height: math.unit(20, "meters")
  18239. },
  18240. ]
  18241. ))
  18242. characterMakers.push(() => makeCharacter(
  18243. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18244. {
  18245. front: {
  18246. height: math.unit(6, "feet"),
  18247. weight: math.unit(110, "lb"),
  18248. name: "Front",
  18249. image: {
  18250. source: "./media/characters/klay/front.svg",
  18251. extra: 962 / 883,
  18252. bottom: 0.04
  18253. }
  18254. },
  18255. back: {
  18256. height: math.unit(6, "feet"),
  18257. weight: math.unit(110, "lb"),
  18258. name: "Back",
  18259. image: {
  18260. source: "./media/characters/klay/back.svg",
  18261. extra: 962 / 883
  18262. }
  18263. },
  18264. beans: {
  18265. height: math.unit(1.15, "feet"),
  18266. name: "Beans",
  18267. image: {
  18268. source: "./media/characters/klay/beans.svg"
  18269. }
  18270. },
  18271. },
  18272. [
  18273. {
  18274. name: "Micro",
  18275. height: math.unit(6, "inches")
  18276. },
  18277. {
  18278. name: "Mini",
  18279. height: math.unit(3, "feet")
  18280. },
  18281. {
  18282. name: "Normal",
  18283. height: math.unit(6, "feet"),
  18284. default: true
  18285. },
  18286. {
  18287. name: "Big",
  18288. height: math.unit(25, "feet")
  18289. },
  18290. {
  18291. name: "Macro",
  18292. height: math.unit(100, "feet")
  18293. },
  18294. {
  18295. name: "Megamacro",
  18296. height: math.unit(400, "feet")
  18297. },
  18298. ]
  18299. ))
  18300. characterMakers.push(() => makeCharacter(
  18301. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18302. {
  18303. front: {
  18304. height: math.unit(6, "feet"),
  18305. weight: math.unit(160, "lb"),
  18306. name: "Front",
  18307. image: {
  18308. source: "./media/characters/marcus/front.svg",
  18309. extra: 734 / 676,
  18310. bottom: 0.03
  18311. }
  18312. },
  18313. },
  18314. [
  18315. {
  18316. name: "Little",
  18317. height: math.unit(6, "feet")
  18318. },
  18319. {
  18320. name: "Normal",
  18321. height: math.unit(110, "feet"),
  18322. default: true
  18323. },
  18324. {
  18325. name: "Macro",
  18326. height: math.unit(250, "feet")
  18327. },
  18328. {
  18329. name: "Megamacro",
  18330. height: math.unit(1000, "feet")
  18331. },
  18332. ]
  18333. ))
  18334. characterMakers.push(() => makeCharacter(
  18335. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18336. {
  18337. front: {
  18338. height: math.unit(7, "feet"),
  18339. weight: math.unit(275, "lb"),
  18340. name: "Front",
  18341. image: {
  18342. source: "./media/characters/claude-delroute/front.svg",
  18343. extra: 230 / 214,
  18344. bottom: 0.007
  18345. }
  18346. },
  18347. side: {
  18348. height: math.unit(7, "feet"),
  18349. weight: math.unit(275, "lb"),
  18350. name: "Side",
  18351. image: {
  18352. source: "./media/characters/claude-delroute/side.svg",
  18353. extra: 222 / 214,
  18354. bottom: 0.01
  18355. }
  18356. },
  18357. back: {
  18358. height: math.unit(7, "feet"),
  18359. weight: math.unit(275, "lb"),
  18360. name: "Back",
  18361. image: {
  18362. source: "./media/characters/claude-delroute/back.svg",
  18363. extra: 230 / 214,
  18364. bottom: 0.015
  18365. }
  18366. },
  18367. maw: {
  18368. height: math.unit(0.6407, "meters"),
  18369. name: "Maw",
  18370. image: {
  18371. source: "./media/characters/claude-delroute/maw.svg"
  18372. }
  18373. },
  18374. },
  18375. [
  18376. {
  18377. name: "Normal",
  18378. height: math.unit(7, "feet"),
  18379. default: true
  18380. },
  18381. {
  18382. name: "Lorge",
  18383. height: math.unit(20, "feet")
  18384. },
  18385. ]
  18386. ))
  18387. characterMakers.push(() => makeCharacter(
  18388. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18389. {
  18390. front: {
  18391. height: math.unit(8 + 4 / 12, "feet"),
  18392. weight: math.unit(600, "lb"),
  18393. name: "Front",
  18394. image: {
  18395. source: "./media/characters/dragonien/front.svg",
  18396. extra: 100 / 94,
  18397. bottom: 3.3 / 103.3445
  18398. }
  18399. },
  18400. back: {
  18401. height: math.unit(8 + 4 / 12, "feet"),
  18402. weight: math.unit(600, "lb"),
  18403. name: "Back",
  18404. image: {
  18405. source: "./media/characters/dragonien/back.svg",
  18406. extra: 776 / 746,
  18407. bottom: 6.4 / 782.0616
  18408. }
  18409. },
  18410. foot: {
  18411. height: math.unit(1.54, "feet"),
  18412. name: "Foot",
  18413. image: {
  18414. source: "./media/characters/dragonien/foot.svg",
  18415. }
  18416. },
  18417. },
  18418. [
  18419. {
  18420. name: "Normal",
  18421. height: math.unit(8 + 4 / 12, "feet"),
  18422. default: true
  18423. },
  18424. {
  18425. name: "Macro",
  18426. height: math.unit(200, "feet")
  18427. },
  18428. {
  18429. name: "Megamacro",
  18430. height: math.unit(1, "mile")
  18431. },
  18432. {
  18433. name: "Gigamacro",
  18434. height: math.unit(1000, "miles")
  18435. },
  18436. ]
  18437. ))
  18438. characterMakers.push(() => makeCharacter(
  18439. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18440. {
  18441. front: {
  18442. height: math.unit(5 + 2 / 12, "feet"),
  18443. weight: math.unit(110, "lb"),
  18444. name: "Front",
  18445. image: {
  18446. source: "./media/characters/desta/front.svg",
  18447. extra: 767 / 726,
  18448. bottom: 11.7 / 779
  18449. }
  18450. },
  18451. back: {
  18452. height: math.unit(5 + 2 / 12, "feet"),
  18453. weight: math.unit(110, "lb"),
  18454. name: "Back",
  18455. image: {
  18456. source: "./media/characters/desta/back.svg",
  18457. extra: 777 / 728,
  18458. bottom: 6 / 784
  18459. }
  18460. },
  18461. frontAlt: {
  18462. height: math.unit(5 + 2 / 12, "feet"),
  18463. weight: math.unit(110, "lb"),
  18464. name: "Front",
  18465. image: {
  18466. source: "./media/characters/desta/front-alt.svg",
  18467. extra: 1482 / 1417
  18468. }
  18469. },
  18470. side: {
  18471. height: math.unit(5 + 2 / 12, "feet"),
  18472. weight: math.unit(110, "lb"),
  18473. name: "Side",
  18474. image: {
  18475. source: "./media/characters/desta/side.svg",
  18476. extra: 2579 / 2491,
  18477. bottom: 0.053
  18478. }
  18479. },
  18480. },
  18481. [
  18482. {
  18483. name: "Micro",
  18484. height: math.unit(6, "inches")
  18485. },
  18486. {
  18487. name: "Normal",
  18488. height: math.unit(5 + 2 / 12, "feet"),
  18489. default: true
  18490. },
  18491. {
  18492. name: "Macro",
  18493. height: math.unit(62, "feet")
  18494. },
  18495. {
  18496. name: "Megamacro",
  18497. height: math.unit(1800, "feet")
  18498. },
  18499. ]
  18500. ))
  18501. characterMakers.push(() => makeCharacter(
  18502. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18503. {
  18504. front: {
  18505. height: math.unit(10, "feet"),
  18506. weight: math.unit(700, "lb"),
  18507. name: "Front",
  18508. image: {
  18509. source: "./media/characters/storm-alystar/front.svg",
  18510. extra: 2112 / 1898,
  18511. bottom: 0.034
  18512. }
  18513. },
  18514. },
  18515. [
  18516. {
  18517. name: "Micro",
  18518. height: math.unit(3.5, "inches")
  18519. },
  18520. {
  18521. name: "Normal",
  18522. height: math.unit(10, "feet"),
  18523. default: true
  18524. },
  18525. {
  18526. name: "Macro",
  18527. height: math.unit(400, "feet")
  18528. },
  18529. {
  18530. name: "Deific",
  18531. height: math.unit(60, "miles")
  18532. },
  18533. ]
  18534. ))
  18535. characterMakers.push(() => makeCharacter(
  18536. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18537. {
  18538. front: {
  18539. height: math.unit(2.35, "meters"),
  18540. weight: math.unit(119, "kg"),
  18541. name: "Front",
  18542. image: {
  18543. source: "./media/characters/ilia/front.svg",
  18544. extra: 1285 / 1255,
  18545. bottom: 0.06
  18546. }
  18547. },
  18548. },
  18549. [
  18550. {
  18551. name: "Normal",
  18552. height: math.unit(2.35, "meters")
  18553. },
  18554. {
  18555. name: "Macro",
  18556. height: math.unit(140, "meters"),
  18557. default: true
  18558. },
  18559. {
  18560. name: "Megamacro",
  18561. height: math.unit(100, "miles")
  18562. },
  18563. ]
  18564. ))
  18565. characterMakers.push(() => makeCharacter(
  18566. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18567. {
  18568. front: {
  18569. height: math.unit(6 + 5 / 12, "feet"),
  18570. weight: math.unit(190, "lb"),
  18571. name: "Front",
  18572. image: {
  18573. source: "./media/characters/kingdead/front.svg",
  18574. extra: 1228 / 1177
  18575. }
  18576. },
  18577. },
  18578. [
  18579. {
  18580. name: "Micro",
  18581. height: math.unit(7, "inches")
  18582. },
  18583. {
  18584. name: "Normal",
  18585. height: math.unit(6 + 5 / 12, "feet")
  18586. },
  18587. {
  18588. name: "Macro",
  18589. height: math.unit(150, "feet"),
  18590. default: true
  18591. },
  18592. {
  18593. name: "Megamacro",
  18594. height: math.unit(200, "miles")
  18595. },
  18596. ]
  18597. ))
  18598. characterMakers.push(() => makeCharacter(
  18599. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18600. {
  18601. front: {
  18602. height: math.unit(8, "feet"),
  18603. weight: math.unit(600, "lb"),
  18604. name: "Front",
  18605. image: {
  18606. source: "./media/characters/kyrehx/front.svg",
  18607. extra: 1195 / 1095,
  18608. bottom: 0.034
  18609. }
  18610. },
  18611. },
  18612. [
  18613. {
  18614. name: "Micro",
  18615. height: math.unit(2, "inches")
  18616. },
  18617. {
  18618. name: "Normal",
  18619. height: math.unit(8, "feet"),
  18620. default: true
  18621. },
  18622. {
  18623. name: "Macro",
  18624. height: math.unit(255, "feet")
  18625. },
  18626. ]
  18627. ))
  18628. characterMakers.push(() => makeCharacter(
  18629. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18630. {
  18631. front: {
  18632. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18633. weight: math.unit(184, "lb"),
  18634. name: "Front",
  18635. image: {
  18636. source: "./media/characters/xang/front.svg",
  18637. extra: 845 / 755
  18638. }
  18639. },
  18640. },
  18641. [
  18642. {
  18643. name: "Normal",
  18644. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18645. default: true
  18646. },
  18647. {
  18648. name: "Macro",
  18649. height: math.unit(0.935 * 146, "feet")
  18650. },
  18651. {
  18652. name: "Megamacro",
  18653. height: math.unit(0.935 * 3, "miles")
  18654. },
  18655. ]
  18656. ))
  18657. characterMakers.push(() => makeCharacter(
  18658. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18659. {
  18660. frontDressed: {
  18661. height: math.unit(5 + 7 / 12, "feet"),
  18662. weight: math.unit(140, "lb"),
  18663. name: "Front (Dressed)",
  18664. image: {
  18665. source: "./media/characters/doc-weardno/front-dressed.svg",
  18666. extra: 263 / 234
  18667. }
  18668. },
  18669. backDressed: {
  18670. height: math.unit(5 + 7 / 12, "feet"),
  18671. weight: math.unit(140, "lb"),
  18672. name: "Back (Dressed)",
  18673. image: {
  18674. source: "./media/characters/doc-weardno/back-dressed.svg",
  18675. extra: 266 / 238
  18676. }
  18677. },
  18678. front: {
  18679. height: math.unit(5 + 7 / 12, "feet"),
  18680. weight: math.unit(140, "lb"),
  18681. name: "Front",
  18682. image: {
  18683. source: "./media/characters/doc-weardno/front.svg",
  18684. extra: 254 / 233
  18685. }
  18686. },
  18687. },
  18688. [
  18689. {
  18690. name: "Micro",
  18691. height: math.unit(3, "inches")
  18692. },
  18693. {
  18694. name: "Normal",
  18695. height: math.unit(5 + 7 / 12, "feet"),
  18696. default: true
  18697. },
  18698. {
  18699. name: "Macro",
  18700. height: math.unit(25, "feet")
  18701. },
  18702. {
  18703. name: "Megamacro",
  18704. height: math.unit(2, "miles")
  18705. },
  18706. ]
  18707. ))
  18708. characterMakers.push(() => makeCharacter(
  18709. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18710. {
  18711. front: {
  18712. height: math.unit(6 + 2 / 12, "feet"),
  18713. weight: math.unit(153, "lb"),
  18714. name: "Front",
  18715. image: {
  18716. source: "./media/characters/seth-whilst/front.svg",
  18717. bottom: 0.07
  18718. }
  18719. },
  18720. },
  18721. [
  18722. {
  18723. name: "Micro",
  18724. height: math.unit(5, "inches")
  18725. },
  18726. {
  18727. name: "Normal",
  18728. height: math.unit(6 + 2 / 12, "feet"),
  18729. default: true
  18730. },
  18731. ]
  18732. ))
  18733. characterMakers.push(() => makeCharacter(
  18734. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18735. {
  18736. front: {
  18737. height: math.unit(3, "inches"),
  18738. weight: math.unit(8, "grams"),
  18739. name: "Front",
  18740. image: {
  18741. source: "./media/characters/pocket-jabari/front.svg",
  18742. extra: 1024 / 974,
  18743. bottom: 0.039
  18744. }
  18745. },
  18746. },
  18747. [
  18748. {
  18749. name: "Minimicro",
  18750. height: math.unit(8, "mm")
  18751. },
  18752. {
  18753. name: "Micro",
  18754. height: math.unit(3, "inches"),
  18755. default: true
  18756. },
  18757. {
  18758. name: "Normal",
  18759. height: math.unit(3, "feet")
  18760. },
  18761. ]
  18762. ))
  18763. characterMakers.push(() => makeCharacter(
  18764. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18765. {
  18766. front: {
  18767. height: math.unit(15, "feet"),
  18768. weight: math.unit(3280, "lb"),
  18769. name: "Front",
  18770. image: {
  18771. source: "./media/characters/sapphy/front.svg",
  18772. extra: 671 / 577,
  18773. bottom: 0.085
  18774. }
  18775. },
  18776. back: {
  18777. height: math.unit(15, "feet"),
  18778. weight: math.unit(3280, "lb"),
  18779. name: "Back",
  18780. image: {
  18781. source: "./media/characters/sapphy/back.svg",
  18782. extra: 631 / 607,
  18783. bottom: 0.045
  18784. }
  18785. },
  18786. },
  18787. [
  18788. {
  18789. name: "Normal",
  18790. height: math.unit(15, "feet")
  18791. },
  18792. {
  18793. name: "Casual Macro",
  18794. height: math.unit(120, "feet")
  18795. },
  18796. {
  18797. name: "Macro",
  18798. height: math.unit(2150, "feet"),
  18799. default: true
  18800. },
  18801. {
  18802. name: "Megamacro",
  18803. height: math.unit(8, "miles")
  18804. },
  18805. {
  18806. name: "Galaxy Mom",
  18807. height: math.unit(6, "megalightyears")
  18808. },
  18809. ]
  18810. ))
  18811. characterMakers.push(() => makeCharacter(
  18812. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18813. {
  18814. front: {
  18815. height: math.unit(6, "feet"),
  18816. weight: math.unit(170, "lb"),
  18817. name: "Front",
  18818. image: {
  18819. source: "./media/characters/kiro/front.svg",
  18820. extra: 1064 / 1012,
  18821. bottom: 0.052
  18822. }
  18823. },
  18824. },
  18825. [
  18826. {
  18827. name: "Micro",
  18828. height: math.unit(6, "inches")
  18829. },
  18830. {
  18831. name: "Normal",
  18832. height: math.unit(6, "feet"),
  18833. default: true
  18834. },
  18835. {
  18836. name: "Macro",
  18837. height: math.unit(72, "feet")
  18838. },
  18839. ]
  18840. ))
  18841. characterMakers.push(() => makeCharacter(
  18842. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18843. {
  18844. front: {
  18845. height: math.unit(5 + 9 / 12, "feet"),
  18846. weight: math.unit(175, "lb"),
  18847. name: "Front",
  18848. image: {
  18849. source: "./media/characters/irishfox/front.svg",
  18850. extra: 1912 / 1680,
  18851. bottom: 0.02
  18852. }
  18853. },
  18854. },
  18855. [
  18856. {
  18857. name: "Nano",
  18858. height: math.unit(1, "mm")
  18859. },
  18860. {
  18861. name: "Micro",
  18862. height: math.unit(2, "inches")
  18863. },
  18864. {
  18865. name: "Normal",
  18866. height: math.unit(5 + 9 / 12, "feet"),
  18867. default: true
  18868. },
  18869. {
  18870. name: "Macro",
  18871. height: math.unit(45, "feet")
  18872. },
  18873. ]
  18874. ))
  18875. characterMakers.push(() => makeCharacter(
  18876. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18877. {
  18878. front: {
  18879. height: math.unit(6 + 1 / 12, "feet"),
  18880. weight: math.unit(75, "lb"),
  18881. name: "Front",
  18882. image: {
  18883. source: "./media/characters/aronai-sieyes/front.svg",
  18884. extra: 1556 / 1480,
  18885. bottom: 0.015
  18886. }
  18887. },
  18888. side: {
  18889. height: math.unit(6 + 1 / 12, "feet"),
  18890. weight: math.unit(75, "lb"),
  18891. name: "Side",
  18892. image: {
  18893. source: "./media/characters/aronai-sieyes/side.svg",
  18894. extra: 1433 / 1390,
  18895. bottom: 0.0393
  18896. }
  18897. },
  18898. back: {
  18899. height: math.unit(6 + 1 / 12, "feet"),
  18900. weight: math.unit(75, "lb"),
  18901. name: "Back",
  18902. image: {
  18903. source: "./media/characters/aronai-sieyes/back.svg",
  18904. extra: 1544 / 1494,
  18905. bottom: 0.02
  18906. }
  18907. },
  18908. frontClothed: {
  18909. height: math.unit(6 + 1 / 12, "feet"),
  18910. weight: math.unit(75, "lb"),
  18911. name: "Front (Clothed)",
  18912. image: {
  18913. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18914. extra: 1582 / 1527
  18915. }
  18916. },
  18917. feral: {
  18918. height: math.unit(18, "feet"),
  18919. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18920. name: "Feral",
  18921. image: {
  18922. source: "./media/characters/aronai-sieyes/feral.svg",
  18923. extra: 1530 / 1240,
  18924. bottom: 0.035
  18925. }
  18926. },
  18927. },
  18928. [
  18929. {
  18930. name: "Micro",
  18931. height: math.unit(2, "inches")
  18932. },
  18933. {
  18934. name: "Normal",
  18935. height: math.unit(6 + 1 / 12, "feet"),
  18936. default: true
  18937. }
  18938. ]
  18939. ))
  18940. characterMakers.push(() => makeCharacter(
  18941. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18942. {
  18943. front: {
  18944. height: math.unit(12, "feet"),
  18945. weight: math.unit(410, "kg"),
  18946. name: "Front",
  18947. image: {
  18948. source: "./media/characters/xuna/front.svg",
  18949. extra: 2184 / 1980
  18950. }
  18951. },
  18952. side: {
  18953. height: math.unit(12, "feet"),
  18954. weight: math.unit(410, "kg"),
  18955. name: "Side",
  18956. image: {
  18957. source: "./media/characters/xuna/side.svg",
  18958. extra: 2184 / 1980
  18959. }
  18960. },
  18961. back: {
  18962. height: math.unit(12, "feet"),
  18963. weight: math.unit(410, "kg"),
  18964. name: "Back",
  18965. image: {
  18966. source: "./media/characters/xuna/back.svg",
  18967. extra: 2184 / 1980
  18968. }
  18969. },
  18970. },
  18971. [
  18972. {
  18973. name: "Nano glow",
  18974. height: math.unit(10, "nm")
  18975. },
  18976. {
  18977. name: "Micro floof",
  18978. height: math.unit(0.3, "m")
  18979. },
  18980. {
  18981. name: "Huggable softy boi",
  18982. height: math.unit(3.6576, "m"),
  18983. default: true
  18984. },
  18985. {
  18986. name: "Admirable floof",
  18987. height: math.unit(80, "meters")
  18988. },
  18989. {
  18990. name: "Gentle macro",
  18991. height: math.unit(300, "meters")
  18992. },
  18993. {
  18994. name: "Very careful floof",
  18995. height: math.unit(3200, "meters")
  18996. },
  18997. {
  18998. name: "The mega floof",
  18999. height: math.unit(36000, "meters")
  19000. },
  19001. {
  19002. name: "Giga-fur-Wicker",
  19003. height: math.unit(4800000, "meters")
  19004. },
  19005. {
  19006. name: "Licky world",
  19007. height: math.unit(20000000, "meters")
  19008. },
  19009. {
  19010. name: "Floofy cyan sun",
  19011. height: math.unit(1500000000, "meters")
  19012. },
  19013. {
  19014. name: "Milky Wicker",
  19015. height: math.unit(1000000000000000000000, "meters")
  19016. },
  19017. {
  19018. name: "The observing Wicker",
  19019. height: math.unit(999999999999999999999999999, "meters")
  19020. },
  19021. ]
  19022. ))
  19023. characterMakers.push(() => makeCharacter(
  19024. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19025. {
  19026. front: {
  19027. height: math.unit(5 + 9 / 12, "feet"),
  19028. weight: math.unit(150, "lb"),
  19029. name: "Front",
  19030. image: {
  19031. source: "./media/characters/arokha-sieyes/front.svg",
  19032. extra: 1425 / 1284,
  19033. bottom: 0.05
  19034. }
  19035. },
  19036. },
  19037. [
  19038. {
  19039. name: "Normal",
  19040. height: math.unit(5 + 9 / 12, "feet")
  19041. },
  19042. {
  19043. name: "Macro",
  19044. height: math.unit(30, "meters"),
  19045. default: true
  19046. },
  19047. ]
  19048. ))
  19049. characterMakers.push(() => makeCharacter(
  19050. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19051. {
  19052. front: {
  19053. height: math.unit(6, "feet"),
  19054. weight: math.unit(180, "lb"),
  19055. name: "Front",
  19056. image: {
  19057. source: "./media/characters/arokh-sieyes/front.svg",
  19058. extra: 1830 / 1769,
  19059. bottom: 0.01
  19060. }
  19061. },
  19062. },
  19063. [
  19064. {
  19065. name: "Normal",
  19066. height: math.unit(6, "feet")
  19067. },
  19068. {
  19069. name: "Macro",
  19070. height: math.unit(30, "meters"),
  19071. default: true
  19072. },
  19073. ]
  19074. ))
  19075. characterMakers.push(() => makeCharacter(
  19076. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19077. {
  19078. side: {
  19079. height: math.unit(13 + 1 / 12, "feet"),
  19080. weight: math.unit(8.5, "tonnes"),
  19081. name: "Side",
  19082. image: {
  19083. source: "./media/characters/goldeneye/side.svg",
  19084. extra: 1182 / 778,
  19085. bottom: 0.067
  19086. }
  19087. },
  19088. paw: {
  19089. height: math.unit(3.4, "feet"),
  19090. name: "Paw",
  19091. image: {
  19092. source: "./media/characters/goldeneye/paw.svg"
  19093. }
  19094. },
  19095. },
  19096. [
  19097. {
  19098. name: "Normal",
  19099. height: math.unit(13 + 1 / 12, "feet"),
  19100. default: true
  19101. },
  19102. ]
  19103. ))
  19104. characterMakers.push(() => makeCharacter(
  19105. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19106. {
  19107. front: {
  19108. height: math.unit(6 + 1 / 12, "feet"),
  19109. weight: math.unit(210, "lb"),
  19110. name: "Front",
  19111. image: {
  19112. source: "./media/characters/leonardo-lycheborne/front.svg",
  19113. extra: 776/723,
  19114. bottom: 34/810
  19115. }
  19116. },
  19117. side: {
  19118. height: math.unit(6 + 1 / 12, "feet"),
  19119. weight: math.unit(210, "lb"),
  19120. name: "Side",
  19121. image: {
  19122. source: "./media/characters/leonardo-lycheborne/side.svg",
  19123. extra: 780/728,
  19124. bottom: 12/792
  19125. }
  19126. },
  19127. back: {
  19128. height: math.unit(6 + 1 / 12, "feet"),
  19129. weight: math.unit(210, "lb"),
  19130. name: "Back",
  19131. image: {
  19132. source: "./media/characters/leonardo-lycheborne/back.svg",
  19133. extra: 775/721,
  19134. bottom: 17/792
  19135. }
  19136. },
  19137. hand: {
  19138. height: math.unit(1.08, "feet"),
  19139. name: "Hand",
  19140. image: {
  19141. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19142. }
  19143. },
  19144. foot: {
  19145. height: math.unit(1.32, "feet"),
  19146. name: "Foot",
  19147. image: {
  19148. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19149. }
  19150. },
  19151. maw: {
  19152. height: math.unit(1, "feet"),
  19153. name: "Maw",
  19154. image: {
  19155. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19156. }
  19157. },
  19158. were: {
  19159. height: math.unit(20, "feet"),
  19160. weight: math.unit(7800, "lb"),
  19161. name: "Were",
  19162. image: {
  19163. source: "./media/characters/leonardo-lycheborne/were.svg",
  19164. extra: 1224/1165,
  19165. bottom: 72/1296
  19166. }
  19167. },
  19168. feral: {
  19169. height: math.unit(7.5, "feet"),
  19170. weight: math.unit(600, "lb"),
  19171. name: "Feral",
  19172. image: {
  19173. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19174. extra: 797/702,
  19175. bottom: 139/936
  19176. }
  19177. },
  19178. taur: {
  19179. height: math.unit(11, "feet"),
  19180. weight: math.unit(3300, "lb"),
  19181. name: "Taur",
  19182. image: {
  19183. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19184. extra: 1271/1197,
  19185. bottom: 47/1318
  19186. }
  19187. },
  19188. barghest: {
  19189. height: math.unit(11, "feet"),
  19190. weight: math.unit(1300, "lb"),
  19191. name: "Barghest",
  19192. image: {
  19193. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19194. extra: 1291/1204,
  19195. bottom: 37/1328
  19196. }
  19197. },
  19198. dick: {
  19199. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19200. name: "Dick",
  19201. image: {
  19202. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19203. }
  19204. },
  19205. dickWere: {
  19206. height: math.unit((20) / 3.8, "feet"),
  19207. name: "Dick (Were)",
  19208. image: {
  19209. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19210. }
  19211. },
  19212. },
  19213. [
  19214. {
  19215. name: "Normal",
  19216. height: math.unit(6 + 1 / 12, "feet"),
  19217. default: true
  19218. },
  19219. ]
  19220. ))
  19221. characterMakers.push(() => makeCharacter(
  19222. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19223. {
  19224. front: {
  19225. height: math.unit(10, "feet"),
  19226. weight: math.unit(350, "lb"),
  19227. name: "Front",
  19228. image: {
  19229. source: "./media/characters/jet/front.svg",
  19230. extra: 2050 / 1980,
  19231. bottom: 0.013
  19232. }
  19233. },
  19234. back: {
  19235. height: math.unit(10, "feet"),
  19236. weight: math.unit(350, "lb"),
  19237. name: "Back",
  19238. image: {
  19239. source: "./media/characters/jet/back.svg",
  19240. extra: 2050 / 1980,
  19241. bottom: 0.013
  19242. }
  19243. },
  19244. },
  19245. [
  19246. {
  19247. name: "Micro",
  19248. height: math.unit(6, "inches")
  19249. },
  19250. {
  19251. name: "Normal",
  19252. height: math.unit(10, "feet"),
  19253. default: true
  19254. },
  19255. {
  19256. name: "Macro",
  19257. height: math.unit(100, "feet")
  19258. },
  19259. ]
  19260. ))
  19261. characterMakers.push(() => makeCharacter(
  19262. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19263. {
  19264. front: {
  19265. height: math.unit(15, "feet"),
  19266. weight: math.unit(2800, "lb"),
  19267. name: "Front",
  19268. image: {
  19269. source: "./media/characters/tanarath/front.svg",
  19270. extra: 2392 / 2220,
  19271. bottom: 0.03
  19272. }
  19273. },
  19274. back: {
  19275. height: math.unit(15, "feet"),
  19276. weight: math.unit(2800, "lb"),
  19277. name: "Back",
  19278. image: {
  19279. source: "./media/characters/tanarath/back.svg",
  19280. extra: 2392 / 2220,
  19281. bottom: 0.03
  19282. }
  19283. },
  19284. },
  19285. [
  19286. {
  19287. name: "Normal",
  19288. height: math.unit(15, "feet"),
  19289. default: true
  19290. },
  19291. ]
  19292. ))
  19293. characterMakers.push(() => makeCharacter(
  19294. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19295. {
  19296. front: {
  19297. height: math.unit(7 + 1 / 12, "feet"),
  19298. weight: math.unit(175, "lb"),
  19299. name: "Front",
  19300. image: {
  19301. source: "./media/characters/patty-cattybatty/front.svg",
  19302. extra: 908 / 874,
  19303. bottom: 0.025
  19304. }
  19305. },
  19306. },
  19307. [
  19308. {
  19309. name: "Micro",
  19310. height: math.unit(1, "inch")
  19311. },
  19312. {
  19313. name: "Normal",
  19314. height: math.unit(7 + 1 / 12, "feet")
  19315. },
  19316. {
  19317. name: "Mini Macro",
  19318. height: math.unit(155, "feet")
  19319. },
  19320. {
  19321. name: "Macro",
  19322. height: math.unit(1077, "feet")
  19323. },
  19324. {
  19325. name: "Mega Macro",
  19326. height: math.unit(47650, "feet"),
  19327. default: true
  19328. },
  19329. {
  19330. name: "Giga Macro",
  19331. height: math.unit(440, "miles")
  19332. },
  19333. {
  19334. name: "Tera Macro",
  19335. height: math.unit(8700, "miles")
  19336. },
  19337. {
  19338. name: "Planetary Macro",
  19339. height: math.unit(32700, "miles")
  19340. },
  19341. {
  19342. name: "Solar Macro",
  19343. height: math.unit(550000, "miles")
  19344. },
  19345. {
  19346. name: "Celestial Macro",
  19347. height: math.unit(2.5, "AU")
  19348. },
  19349. ]
  19350. ))
  19351. characterMakers.push(() => makeCharacter(
  19352. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19353. {
  19354. front: {
  19355. height: math.unit(4 + 5 / 12, "feet"),
  19356. weight: math.unit(90, "lb"),
  19357. name: "Front",
  19358. image: {
  19359. source: "./media/characters/cappu/front.svg",
  19360. extra: 1247 / 1152,
  19361. bottom: 0.012
  19362. }
  19363. },
  19364. },
  19365. [
  19366. {
  19367. name: "Normal",
  19368. height: math.unit(4 + 5 / 12, "feet"),
  19369. default: true
  19370. },
  19371. ]
  19372. ))
  19373. characterMakers.push(() => makeCharacter(
  19374. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19375. {
  19376. frontDressed: {
  19377. height: math.unit(70, "cm"),
  19378. weight: math.unit(6, "kg"),
  19379. name: "Front (Dressed)",
  19380. image: {
  19381. source: "./media/characters/sebi/front-dressed.svg",
  19382. extra: 713.5 / 686.5,
  19383. bottom: 0.003
  19384. }
  19385. },
  19386. front: {
  19387. height: math.unit(70, "cm"),
  19388. weight: math.unit(5, "kg"),
  19389. name: "Front",
  19390. image: {
  19391. source: "./media/characters/sebi/front.svg",
  19392. extra: 713.5 / 686.5,
  19393. bottom: 0.003
  19394. }
  19395. }
  19396. },
  19397. [
  19398. {
  19399. name: "Normal",
  19400. height: math.unit(70, "cm"),
  19401. default: true
  19402. },
  19403. {
  19404. name: "Macro",
  19405. height: math.unit(8, "meters")
  19406. },
  19407. ]
  19408. ))
  19409. characterMakers.push(() => makeCharacter(
  19410. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19411. {
  19412. front: {
  19413. height: math.unit(6, "feet"),
  19414. weight: math.unit(150, "lb"),
  19415. name: "Front",
  19416. image: {
  19417. source: "./media/characters/typhek/front.svg",
  19418. extra: 1948 / 1929,
  19419. bottom: 0.025
  19420. }
  19421. },
  19422. side: {
  19423. height: math.unit(6, "feet"),
  19424. weight: math.unit(150, "lb"),
  19425. name: "Side",
  19426. image: {
  19427. source: "./media/characters/typhek/side.svg",
  19428. extra: 2034 / 2010,
  19429. bottom: 0.003
  19430. }
  19431. },
  19432. back: {
  19433. height: math.unit(6, "feet"),
  19434. weight: math.unit(150, "lb"),
  19435. name: "Back",
  19436. image: {
  19437. source: "./media/characters/typhek/back.svg",
  19438. extra: 2005 / 1978,
  19439. bottom: 0.004
  19440. }
  19441. },
  19442. palm: {
  19443. height: math.unit(1.2, "feet"),
  19444. name: "Palm",
  19445. image: {
  19446. source: "./media/characters/typhek/palm.svg"
  19447. }
  19448. },
  19449. fist: {
  19450. height: math.unit(1.1, "feet"),
  19451. name: "Fist",
  19452. image: {
  19453. source: "./media/characters/typhek/fist.svg"
  19454. }
  19455. },
  19456. foot: {
  19457. height: math.unit(1.57, "feet"),
  19458. name: "Foot",
  19459. image: {
  19460. source: "./media/characters/typhek/foot.svg"
  19461. }
  19462. },
  19463. sole: {
  19464. height: math.unit(2.05, "feet"),
  19465. name: "Sole",
  19466. image: {
  19467. source: "./media/characters/typhek/sole.svg"
  19468. }
  19469. },
  19470. },
  19471. [
  19472. {
  19473. name: "Macro",
  19474. height: math.unit(40, "stories"),
  19475. default: true
  19476. },
  19477. {
  19478. name: "Megamacro",
  19479. height: math.unit(1, "mile")
  19480. },
  19481. {
  19482. name: "Gigamacro",
  19483. height: math.unit(4000, "solarradii")
  19484. },
  19485. {
  19486. name: "Universal",
  19487. height: math.unit(1.1, "universes")
  19488. }
  19489. ]
  19490. ))
  19491. characterMakers.push(() => makeCharacter(
  19492. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19493. {
  19494. side: {
  19495. height: math.unit(5 + 7 / 12, "feet"),
  19496. weight: math.unit(150, "lb"),
  19497. name: "Side",
  19498. image: {
  19499. source: "./media/characters/kassy/side.svg",
  19500. extra: 1280 / 1225,
  19501. bottom: 0.002
  19502. }
  19503. },
  19504. front: {
  19505. height: math.unit(5 + 7 / 12, "feet"),
  19506. weight: math.unit(150, "lb"),
  19507. name: "Front",
  19508. image: {
  19509. source: "./media/characters/kassy/front.svg",
  19510. extra: 1280 / 1225,
  19511. bottom: 0.025
  19512. }
  19513. },
  19514. back: {
  19515. height: math.unit(5 + 7 / 12, "feet"),
  19516. weight: math.unit(150, "lb"),
  19517. name: "Back",
  19518. image: {
  19519. source: "./media/characters/kassy/back.svg",
  19520. extra: 1280 / 1225,
  19521. bottom: 0.002
  19522. }
  19523. },
  19524. foot: {
  19525. height: math.unit(1.266, "feet"),
  19526. name: "Foot",
  19527. image: {
  19528. source: "./media/characters/kassy/foot.svg"
  19529. }
  19530. },
  19531. },
  19532. [
  19533. {
  19534. name: "Normal",
  19535. height: math.unit(5 + 7 / 12, "feet")
  19536. },
  19537. {
  19538. name: "Macro",
  19539. height: math.unit(137, "feet"),
  19540. default: true
  19541. },
  19542. {
  19543. name: "Megamacro",
  19544. height: math.unit(1, "mile")
  19545. },
  19546. ]
  19547. ))
  19548. characterMakers.push(() => makeCharacter(
  19549. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19550. {
  19551. front: {
  19552. height: math.unit(6 + 1 / 12, "feet"),
  19553. weight: math.unit(200, "lb"),
  19554. name: "Front",
  19555. image: {
  19556. source: "./media/characters/neil/front.svg",
  19557. extra: 1326 / 1250,
  19558. bottom: 0.023
  19559. }
  19560. },
  19561. },
  19562. [
  19563. {
  19564. name: "Normal",
  19565. height: math.unit(6 + 1 / 12, "feet"),
  19566. default: true
  19567. },
  19568. {
  19569. name: "Macro",
  19570. height: math.unit(200, "feet")
  19571. },
  19572. ]
  19573. ))
  19574. characterMakers.push(() => makeCharacter(
  19575. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19576. {
  19577. front: {
  19578. height: math.unit(5 + 9 / 12, "feet"),
  19579. weight: math.unit(190, "lb"),
  19580. name: "Front",
  19581. image: {
  19582. source: "./media/characters/atticus/front.svg",
  19583. extra: 2934 / 2785,
  19584. bottom: 0.025
  19585. }
  19586. },
  19587. },
  19588. [
  19589. {
  19590. name: "Normal",
  19591. height: math.unit(5 + 9 / 12, "feet"),
  19592. default: true
  19593. },
  19594. {
  19595. name: "Macro",
  19596. height: math.unit(180, "feet")
  19597. },
  19598. ]
  19599. ))
  19600. characterMakers.push(() => makeCharacter(
  19601. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19602. {
  19603. side: {
  19604. height: math.unit(9, "feet"),
  19605. weight: math.unit(650, "lb"),
  19606. name: "Side",
  19607. image: {
  19608. source: "./media/characters/milo/side.svg",
  19609. extra: 2644 / 2310,
  19610. bottom: 0.032
  19611. }
  19612. },
  19613. },
  19614. [
  19615. {
  19616. name: "Normal",
  19617. height: math.unit(9, "feet"),
  19618. default: true
  19619. },
  19620. {
  19621. name: "Macro",
  19622. height: math.unit(300, "feet")
  19623. },
  19624. ]
  19625. ))
  19626. characterMakers.push(() => makeCharacter(
  19627. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19628. {
  19629. side: {
  19630. height: math.unit(8, "meters"),
  19631. weight: math.unit(90000, "kg"),
  19632. name: "Side",
  19633. image: {
  19634. source: "./media/characters/ijzer/side.svg",
  19635. extra: 2756 / 1600,
  19636. bottom: 0.01
  19637. }
  19638. },
  19639. },
  19640. [
  19641. {
  19642. name: "Small",
  19643. height: math.unit(3, "meters")
  19644. },
  19645. {
  19646. name: "Normal",
  19647. height: math.unit(8, "meters"),
  19648. default: true
  19649. },
  19650. {
  19651. name: "Normal+",
  19652. height: math.unit(10, "meters")
  19653. },
  19654. {
  19655. name: "Bigger",
  19656. height: math.unit(24, "meters")
  19657. },
  19658. {
  19659. name: "Huge",
  19660. height: math.unit(80, "meters")
  19661. },
  19662. ]
  19663. ))
  19664. characterMakers.push(() => makeCharacter(
  19665. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19666. {
  19667. front: {
  19668. height: math.unit(6 + 2 / 12, "feet"),
  19669. weight: math.unit(153, "lb"),
  19670. name: "Front",
  19671. image: {
  19672. source: "./media/characters/luca-cervicum/front.svg",
  19673. extra: 370 / 327,
  19674. bottom: 0.015
  19675. }
  19676. },
  19677. back: {
  19678. height: math.unit(6 + 2 / 12, "feet"),
  19679. weight: math.unit(153, "lb"),
  19680. name: "Back",
  19681. image: {
  19682. source: "./media/characters/luca-cervicum/back.svg",
  19683. extra: 367 / 333,
  19684. bottom: 0.005
  19685. }
  19686. },
  19687. frontGear: {
  19688. height: math.unit(6 + 2 / 12, "feet"),
  19689. weight: math.unit(173, "lb"),
  19690. name: "Front (Gear)",
  19691. image: {
  19692. source: "./media/characters/luca-cervicum/front-gear.svg",
  19693. extra: 377 / 333,
  19694. bottom: 0.006
  19695. }
  19696. },
  19697. },
  19698. [
  19699. {
  19700. name: "Normal",
  19701. height: math.unit(6 + 2 / 12, "feet"),
  19702. default: true
  19703. },
  19704. ]
  19705. ))
  19706. characterMakers.push(() => makeCharacter(
  19707. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19708. {
  19709. front: {
  19710. height: math.unit(6 + 1 / 12, "feet"),
  19711. weight: math.unit(304, "lb"),
  19712. name: "Front",
  19713. image: {
  19714. source: "./media/characters/oliver/front.svg",
  19715. extra: 157 / 143,
  19716. bottom: 0.08
  19717. }
  19718. },
  19719. },
  19720. [
  19721. {
  19722. name: "Normal",
  19723. height: math.unit(6 + 1 / 12, "feet"),
  19724. default: true
  19725. },
  19726. ]
  19727. ))
  19728. characterMakers.push(() => makeCharacter(
  19729. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19730. {
  19731. front: {
  19732. height: math.unit(5 + 7 / 12, "feet"),
  19733. weight: math.unit(140, "lb"),
  19734. name: "Front",
  19735. image: {
  19736. source: "./media/characters/shane/front.svg",
  19737. extra: 304 / 289,
  19738. bottom: 0.005
  19739. }
  19740. },
  19741. },
  19742. [
  19743. {
  19744. name: "Normal",
  19745. height: math.unit(5 + 7 / 12, "feet"),
  19746. default: true
  19747. },
  19748. ]
  19749. ))
  19750. characterMakers.push(() => makeCharacter(
  19751. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19752. {
  19753. front: {
  19754. height: math.unit(5 + 9 / 12, "feet"),
  19755. weight: math.unit(178, "lb"),
  19756. name: "Front",
  19757. image: {
  19758. source: "./media/characters/shin/front.svg",
  19759. extra: 159 / 151,
  19760. bottom: 0.015
  19761. }
  19762. },
  19763. },
  19764. [
  19765. {
  19766. name: "Normal",
  19767. height: math.unit(5 + 9 / 12, "feet"),
  19768. default: true
  19769. },
  19770. ]
  19771. ))
  19772. characterMakers.push(() => makeCharacter(
  19773. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19774. {
  19775. front: {
  19776. height: math.unit(5 + 10 / 12, "feet"),
  19777. weight: math.unit(168, "lb"),
  19778. name: "Front",
  19779. image: {
  19780. source: "./media/characters/xerxes/front.svg",
  19781. extra: 282 / 260,
  19782. bottom: 0.045
  19783. }
  19784. },
  19785. },
  19786. [
  19787. {
  19788. name: "Normal",
  19789. height: math.unit(5 + 10 / 12, "feet"),
  19790. default: true
  19791. },
  19792. ]
  19793. ))
  19794. characterMakers.push(() => makeCharacter(
  19795. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19796. {
  19797. front: {
  19798. height: math.unit(6 + 7 / 12, "feet"),
  19799. weight: math.unit(208, "lb"),
  19800. name: "Front",
  19801. image: {
  19802. source: "./media/characters/chaska/front.svg",
  19803. extra: 332 / 319,
  19804. bottom: 0.015
  19805. }
  19806. },
  19807. },
  19808. [
  19809. {
  19810. name: "Normal",
  19811. height: math.unit(6 + 7 / 12, "feet"),
  19812. default: true
  19813. },
  19814. ]
  19815. ))
  19816. characterMakers.push(() => makeCharacter(
  19817. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19818. {
  19819. front: {
  19820. height: math.unit(5 + 8 / 12, "feet"),
  19821. weight: math.unit(208, "lb"),
  19822. name: "Front",
  19823. image: {
  19824. source: "./media/characters/enuk/front.svg",
  19825. extra: 437 / 406,
  19826. bottom: 0.02
  19827. }
  19828. },
  19829. },
  19830. [
  19831. {
  19832. name: "Normal",
  19833. height: math.unit(5 + 8 / 12, "feet"),
  19834. default: true
  19835. },
  19836. ]
  19837. ))
  19838. characterMakers.push(() => makeCharacter(
  19839. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19840. {
  19841. front: {
  19842. height: math.unit(5 + 10 / 12, "feet"),
  19843. weight: math.unit(252, "lb"),
  19844. name: "Front",
  19845. image: {
  19846. source: "./media/characters/bruun/front.svg",
  19847. extra: 197 / 187,
  19848. bottom: 0.012
  19849. }
  19850. },
  19851. },
  19852. [
  19853. {
  19854. name: "Normal",
  19855. height: math.unit(5 + 10 / 12, "feet"),
  19856. default: true
  19857. },
  19858. ]
  19859. ))
  19860. characterMakers.push(() => makeCharacter(
  19861. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19862. {
  19863. front: {
  19864. height: math.unit(6 + 10 / 12, "feet"),
  19865. weight: math.unit(255, "lb"),
  19866. name: "Front",
  19867. image: {
  19868. source: "./media/characters/alexeev/front.svg",
  19869. extra: 213 / 200,
  19870. bottom: 0.05
  19871. }
  19872. },
  19873. },
  19874. [
  19875. {
  19876. name: "Normal",
  19877. height: math.unit(6 + 10 / 12, "feet"),
  19878. default: true
  19879. },
  19880. ]
  19881. ))
  19882. characterMakers.push(() => makeCharacter(
  19883. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19884. {
  19885. front: {
  19886. height: math.unit(2 + 8 / 12, "feet"),
  19887. weight: math.unit(22, "lb"),
  19888. name: "Front",
  19889. image: {
  19890. source: "./media/characters/evelyn/front.svg",
  19891. extra: 208 / 180
  19892. }
  19893. },
  19894. },
  19895. [
  19896. {
  19897. name: "Normal",
  19898. height: math.unit(2 + 8 / 12, "feet"),
  19899. default: true
  19900. },
  19901. ]
  19902. ))
  19903. characterMakers.push(() => makeCharacter(
  19904. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19905. {
  19906. front: {
  19907. height: math.unit(5 + 9 / 12, "feet"),
  19908. weight: math.unit(139, "lb"),
  19909. name: "Front",
  19910. image: {
  19911. source: "./media/characters/inca/front.svg",
  19912. extra: 294 / 291,
  19913. bottom: 0.03
  19914. }
  19915. },
  19916. },
  19917. [
  19918. {
  19919. name: "Normal",
  19920. height: math.unit(5 + 9 / 12, "feet"),
  19921. default: true
  19922. },
  19923. ]
  19924. ))
  19925. characterMakers.push(() => makeCharacter(
  19926. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19927. {
  19928. front: {
  19929. height: math.unit(5 + 1 / 12, "feet"),
  19930. weight: math.unit(84, "lb"),
  19931. name: "Front",
  19932. image: {
  19933. source: "./media/characters/magdalene/front.svg",
  19934. extra: 293 / 273
  19935. }
  19936. },
  19937. },
  19938. [
  19939. {
  19940. name: "Normal",
  19941. height: math.unit(5 + 1 / 12, "feet"),
  19942. default: true
  19943. },
  19944. ]
  19945. ))
  19946. characterMakers.push(() => makeCharacter(
  19947. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19948. {
  19949. front: {
  19950. height: math.unit(6 + 3 / 12, "feet"),
  19951. weight: math.unit(185, "lb"),
  19952. name: "Front",
  19953. image: {
  19954. source: "./media/characters/mera/front.svg",
  19955. extra: 291 / 277,
  19956. bottom: 0.03
  19957. }
  19958. },
  19959. },
  19960. [
  19961. {
  19962. name: "Normal",
  19963. height: math.unit(6 + 3 / 12, "feet"),
  19964. default: true
  19965. },
  19966. ]
  19967. ))
  19968. characterMakers.push(() => makeCharacter(
  19969. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19970. {
  19971. front: {
  19972. height: math.unit(6 + 7 / 12, "feet"),
  19973. weight: math.unit(160, "lb"),
  19974. name: "Front",
  19975. image: {
  19976. source: "./media/characters/ceres/front.svg",
  19977. extra: 1023 / 950,
  19978. bottom: 0.027
  19979. }
  19980. },
  19981. back: {
  19982. height: math.unit(6 + 7 / 12, "feet"),
  19983. weight: math.unit(160, "lb"),
  19984. name: "Back",
  19985. image: {
  19986. source: "./media/characters/ceres/back.svg",
  19987. extra: 1023 / 950
  19988. }
  19989. },
  19990. },
  19991. [
  19992. {
  19993. name: "Normal",
  19994. height: math.unit(6 + 7 / 12, "feet"),
  19995. default: true
  19996. },
  19997. ]
  19998. ))
  19999. characterMakers.push(() => makeCharacter(
  20000. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20001. {
  20002. front: {
  20003. height: math.unit(5 + 10 / 12, "feet"),
  20004. weight: math.unit(150, "lb"),
  20005. name: "Front",
  20006. image: {
  20007. source: "./media/characters/kris/front.svg",
  20008. extra: 885 / 803,
  20009. bottom: 0.03
  20010. }
  20011. },
  20012. },
  20013. [
  20014. {
  20015. name: "Normal",
  20016. height: math.unit(5 + 10 / 12, "feet"),
  20017. default: true
  20018. },
  20019. ]
  20020. ))
  20021. characterMakers.push(() => makeCharacter(
  20022. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20023. {
  20024. front: {
  20025. height: math.unit(7, "feet"),
  20026. weight: math.unit(120, "kg"),
  20027. name: "Front",
  20028. image: {
  20029. source: "./media/characters/taluthus/front.svg",
  20030. extra: 903 / 833,
  20031. bottom: 0.015
  20032. }
  20033. },
  20034. },
  20035. [
  20036. {
  20037. name: "Normal",
  20038. height: math.unit(7, "feet"),
  20039. default: true
  20040. },
  20041. {
  20042. name: "Macro",
  20043. height: math.unit(300, "feet")
  20044. },
  20045. ]
  20046. ))
  20047. characterMakers.push(() => makeCharacter(
  20048. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20049. {
  20050. front: {
  20051. height: math.unit(5 + 9 / 12, "feet"),
  20052. weight: math.unit(145, "lb"),
  20053. name: "Front",
  20054. image: {
  20055. source: "./media/characters/dawn/front.svg",
  20056. extra: 2094 / 2016,
  20057. bottom: 0.025
  20058. }
  20059. },
  20060. back: {
  20061. height: math.unit(5 + 9 / 12, "feet"),
  20062. weight: math.unit(160, "lb"),
  20063. name: "Back",
  20064. image: {
  20065. source: "./media/characters/dawn/back.svg",
  20066. extra: 2112 / 2080,
  20067. bottom: 0.005
  20068. }
  20069. },
  20070. },
  20071. [
  20072. {
  20073. name: "Normal",
  20074. height: math.unit(6 + 7 / 12, "feet"),
  20075. default: true
  20076. },
  20077. ]
  20078. ))
  20079. characterMakers.push(() => makeCharacter(
  20080. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20081. {
  20082. anthro: {
  20083. height: math.unit(8 + 3 / 12, "feet"),
  20084. weight: math.unit(450, "lb"),
  20085. name: "Anthro",
  20086. image: {
  20087. source: "./media/characters/arador/anthro.svg",
  20088. extra: 1835 / 1718,
  20089. bottom: 0.025
  20090. }
  20091. },
  20092. feral: {
  20093. height: math.unit(4, "feet"),
  20094. weight: math.unit(200, "lb"),
  20095. name: "Feral",
  20096. image: {
  20097. source: "./media/characters/arador/feral.svg",
  20098. extra: 1683 / 1514,
  20099. bottom: 0.07
  20100. }
  20101. },
  20102. },
  20103. [
  20104. {
  20105. name: "Normal",
  20106. height: math.unit(8 + 3 / 12, "feet")
  20107. },
  20108. {
  20109. name: "Macro",
  20110. height: math.unit(82.5, "feet"),
  20111. default: true
  20112. },
  20113. ]
  20114. ))
  20115. characterMakers.push(() => makeCharacter(
  20116. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20117. {
  20118. front: {
  20119. height: math.unit(5 + 10 / 12, "feet"),
  20120. weight: math.unit(125, "lb"),
  20121. name: "Front",
  20122. image: {
  20123. source: "./media/characters/dharsi/front.svg",
  20124. extra: 716 / 630,
  20125. bottom: 0.035
  20126. }
  20127. },
  20128. },
  20129. [
  20130. {
  20131. name: "Nano",
  20132. height: math.unit(100, "nm")
  20133. },
  20134. {
  20135. name: "Micro",
  20136. height: math.unit(2, "inches")
  20137. },
  20138. {
  20139. name: "Normal",
  20140. height: math.unit(5 + 10 / 12, "feet"),
  20141. default: true
  20142. },
  20143. {
  20144. name: "Macro",
  20145. height: math.unit(1000, "feet")
  20146. },
  20147. {
  20148. name: "Megamacro",
  20149. height: math.unit(10, "miles")
  20150. },
  20151. {
  20152. name: "Gigamacro",
  20153. height: math.unit(3000, "miles")
  20154. },
  20155. {
  20156. name: "Teramacro",
  20157. height: math.unit(500000, "miles")
  20158. },
  20159. {
  20160. name: "Teramacro+",
  20161. height: math.unit(30, "galaxies")
  20162. },
  20163. ]
  20164. ))
  20165. characterMakers.push(() => makeCharacter(
  20166. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20167. {
  20168. front: {
  20169. height: math.unit(6, "feet"),
  20170. weight: math.unit(150, "lb"),
  20171. name: "Front",
  20172. image: {
  20173. source: "./media/characters/deathy/front.svg",
  20174. extra: 1552 / 1463,
  20175. bottom: 0.025
  20176. }
  20177. },
  20178. side: {
  20179. height: math.unit(6, "feet"),
  20180. weight: math.unit(150, "lb"),
  20181. name: "Side",
  20182. image: {
  20183. source: "./media/characters/deathy/side.svg",
  20184. extra: 1604 / 1455,
  20185. bottom: 0.025
  20186. }
  20187. },
  20188. back: {
  20189. height: math.unit(6, "feet"),
  20190. weight: math.unit(150, "lb"),
  20191. name: "Back",
  20192. image: {
  20193. source: "./media/characters/deathy/back.svg",
  20194. extra: 1580 / 1463,
  20195. bottom: 0.005
  20196. }
  20197. },
  20198. },
  20199. [
  20200. {
  20201. name: "Micro",
  20202. height: math.unit(5, "millimeters")
  20203. },
  20204. {
  20205. name: "Normal",
  20206. height: math.unit(6 + 5 / 12, "feet"),
  20207. default: true
  20208. },
  20209. ]
  20210. ))
  20211. characterMakers.push(() => makeCharacter(
  20212. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20213. {
  20214. front: {
  20215. height: math.unit(16, "feet"),
  20216. weight: math.unit(4000, "lb"),
  20217. name: "Front",
  20218. image: {
  20219. source: "./media/characters/juniper/front.svg",
  20220. bottom: 0.04
  20221. }
  20222. },
  20223. },
  20224. [
  20225. {
  20226. name: "Normal",
  20227. height: math.unit(16, "feet"),
  20228. default: true
  20229. },
  20230. ]
  20231. ))
  20232. characterMakers.push(() => makeCharacter(
  20233. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20234. {
  20235. front: {
  20236. height: math.unit(6, "feet"),
  20237. weight: math.unit(150, "lb"),
  20238. name: "Front",
  20239. image: {
  20240. source: "./media/characters/hipster/front.svg",
  20241. extra: 1312 / 1209,
  20242. bottom: 0.025
  20243. }
  20244. },
  20245. back: {
  20246. height: math.unit(6, "feet"),
  20247. weight: math.unit(150, "lb"),
  20248. name: "Back",
  20249. image: {
  20250. source: "./media/characters/hipster/back.svg",
  20251. extra: 1281 / 1196,
  20252. bottom: 0.01
  20253. }
  20254. },
  20255. },
  20256. [
  20257. {
  20258. name: "Micro",
  20259. height: math.unit(1, "mm")
  20260. },
  20261. {
  20262. name: "Normal",
  20263. height: math.unit(4, "inches"),
  20264. default: true
  20265. },
  20266. {
  20267. name: "Macro",
  20268. height: math.unit(500, "feet")
  20269. },
  20270. {
  20271. name: "Megamacro",
  20272. height: math.unit(1000, "miles")
  20273. },
  20274. ]
  20275. ))
  20276. characterMakers.push(() => makeCharacter(
  20277. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20278. {
  20279. front: {
  20280. height: math.unit(6, "feet"),
  20281. weight: math.unit(150, "lb"),
  20282. name: "Front",
  20283. image: {
  20284. source: "./media/characters/tendirmuldr/front.svg",
  20285. extra: 1878 / 1772,
  20286. bottom: 0.015
  20287. }
  20288. },
  20289. },
  20290. [
  20291. {
  20292. name: "Megamacro",
  20293. height: math.unit(1500, "miles"),
  20294. default: true
  20295. },
  20296. ]
  20297. ))
  20298. characterMakers.push(() => makeCharacter(
  20299. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20300. {
  20301. front: {
  20302. height: math.unit(14, "feet"),
  20303. weight: math.unit(12000, "lb"),
  20304. name: "Front",
  20305. image: {
  20306. source: "./media/characters/mort/front.svg",
  20307. extra: 365 / 318,
  20308. bottom: 0.01
  20309. }
  20310. },
  20311. side: {
  20312. height: math.unit(14, "feet"),
  20313. weight: math.unit(12000, "lb"),
  20314. name: "Side",
  20315. image: {
  20316. source: "./media/characters/mort/side.svg",
  20317. extra: 365 / 318,
  20318. bottom: 0.052
  20319. },
  20320. default: true
  20321. },
  20322. back: {
  20323. height: math.unit(14, "feet"),
  20324. weight: math.unit(12000, "lb"),
  20325. name: "Back",
  20326. image: {
  20327. source: "./media/characters/mort/back.svg",
  20328. extra: 371 / 332,
  20329. bottom: 0.18
  20330. }
  20331. },
  20332. },
  20333. [
  20334. {
  20335. name: "Normal",
  20336. height: math.unit(14, "feet"),
  20337. default: true
  20338. },
  20339. ]
  20340. ))
  20341. characterMakers.push(() => makeCharacter(
  20342. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20343. {
  20344. front: {
  20345. height: math.unit(8, "feet"),
  20346. weight: math.unit(1, "ton"),
  20347. name: "Front",
  20348. image: {
  20349. source: "./media/characters/lycoa/front.svg",
  20350. extra: 1875 / 1789,
  20351. bottom: 0.022
  20352. }
  20353. },
  20354. back: {
  20355. height: math.unit(8, "feet"),
  20356. weight: math.unit(1, "ton"),
  20357. name: "Back",
  20358. image: {
  20359. source: "./media/characters/lycoa/back.svg",
  20360. extra: 1835 / 1781,
  20361. bottom: 0.03
  20362. }
  20363. },
  20364. head: {
  20365. height: math.unit(2.1, "feet"),
  20366. name: "Head",
  20367. image: {
  20368. source: "./media/characters/lycoa/head.svg"
  20369. }
  20370. },
  20371. tailmaw: {
  20372. height: math.unit(1.9, "feet"),
  20373. name: "Tailmaw",
  20374. image: {
  20375. source: "./media/characters/lycoa/tailmaw.svg"
  20376. }
  20377. },
  20378. tentacles: {
  20379. height: math.unit(2.1, "feet"),
  20380. name: "Tentacles",
  20381. image: {
  20382. source: "./media/characters/lycoa/tentacles.svg"
  20383. }
  20384. },
  20385. dick: {
  20386. height: math.unit(1.73, "feet"),
  20387. name: "Dick",
  20388. image: {
  20389. source: "./media/characters/lycoa/dick.svg"
  20390. }
  20391. },
  20392. },
  20393. [
  20394. {
  20395. name: "Normal",
  20396. height: math.unit(8, "feet"),
  20397. default: true
  20398. },
  20399. {
  20400. name: "Macro",
  20401. height: math.unit(30, "feet")
  20402. },
  20403. ]
  20404. ))
  20405. characterMakers.push(() => makeCharacter(
  20406. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20407. {
  20408. front: {
  20409. height: math.unit(4 + 2 / 12, "feet"),
  20410. weight: math.unit(70, "lb"),
  20411. name: "Front",
  20412. image: {
  20413. source: "./media/characters/naldara/front.svg",
  20414. extra: 841 / 720,
  20415. bottom: 0.04
  20416. }
  20417. },
  20418. naga: {
  20419. height: math.unit(23, "feet"),
  20420. weight: math.unit(15000, "kg"),
  20421. name: "Naga",
  20422. image: {
  20423. source: "./media/characters/naldara/naga.svg",
  20424. extra: 3290 / 2959,
  20425. bottom: 124 / 3432
  20426. }
  20427. },
  20428. },
  20429. [
  20430. {
  20431. name: "Normal",
  20432. height: math.unit(4 + 2 / 12, "feet"),
  20433. default: true
  20434. },
  20435. ]
  20436. ))
  20437. characterMakers.push(() => makeCharacter(
  20438. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20439. {
  20440. front: {
  20441. height: math.unit(13 + 7 / 12, "feet"),
  20442. weight: math.unit(1500, "lb"),
  20443. name: "Front",
  20444. image: {
  20445. source: "./media/characters/briar/front.svg",
  20446. extra: 626 / 596,
  20447. bottom: 0.08
  20448. }
  20449. },
  20450. },
  20451. [
  20452. {
  20453. name: "Normal",
  20454. height: math.unit(13 + 7 / 12, "feet"),
  20455. default: true
  20456. },
  20457. ]
  20458. ))
  20459. characterMakers.push(() => makeCharacter(
  20460. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20461. {
  20462. side: {
  20463. height: math.unit(10, "feet"),
  20464. weight: math.unit(500, "lb"),
  20465. name: "Side",
  20466. image: {
  20467. source: "./media/characters/vanguard/side.svg",
  20468. extra: 502 / 425,
  20469. bottom: 0.087
  20470. }
  20471. },
  20472. },
  20473. [
  20474. {
  20475. name: "Normal",
  20476. height: math.unit(10, "feet"),
  20477. default: true
  20478. },
  20479. ]
  20480. ))
  20481. characterMakers.push(() => makeCharacter(
  20482. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20483. {
  20484. front: {
  20485. height: math.unit(7.5, "feet"),
  20486. weight: math.unit(2, "lb"),
  20487. name: "Front",
  20488. image: {
  20489. source: "./media/characters/artemis/front.svg",
  20490. extra: 1192 / 1075,
  20491. bottom: 0.07
  20492. }
  20493. },
  20494. frontNsfw: {
  20495. height: math.unit(7.5, "feet"),
  20496. weight: math.unit(2, "lb"),
  20497. name: "Front (NSFW)",
  20498. image: {
  20499. source: "./media/characters/artemis/front-nsfw.svg",
  20500. extra: 1192 / 1075,
  20501. bottom: 0.07
  20502. }
  20503. },
  20504. frontNsfwer: {
  20505. height: math.unit(7.5, "feet"),
  20506. weight: math.unit(2, "lb"),
  20507. name: "Front (NSFW-er)",
  20508. image: {
  20509. source: "./media/characters/artemis/front-nsfwer.svg",
  20510. extra: 1192 / 1075,
  20511. bottom: 0.07
  20512. }
  20513. },
  20514. side: {
  20515. height: math.unit(7.5, "feet"),
  20516. weight: math.unit(2, "lb"),
  20517. name: "Side",
  20518. image: {
  20519. source: "./media/characters/artemis/side.svg",
  20520. extra: 1192 / 1075,
  20521. bottom: 0.07
  20522. }
  20523. },
  20524. sideNsfw: {
  20525. height: math.unit(7.5, "feet"),
  20526. weight: math.unit(2, "lb"),
  20527. name: "Side (NSFW)",
  20528. image: {
  20529. source: "./media/characters/artemis/side-nsfw.svg",
  20530. extra: 1192 / 1075,
  20531. bottom: 0.07
  20532. }
  20533. },
  20534. sideNsfwer: {
  20535. height: math.unit(7.5, "feet"),
  20536. weight: math.unit(2, "lb"),
  20537. name: "Side (NSFW-er)",
  20538. image: {
  20539. source: "./media/characters/artemis/side-nsfwer.svg",
  20540. extra: 1192 / 1075,
  20541. bottom: 0.07
  20542. }
  20543. },
  20544. maw: {
  20545. height: math.unit(1.1, "feet"),
  20546. name: "Maw",
  20547. image: {
  20548. source: "./media/characters/artemis/maw.svg"
  20549. }
  20550. },
  20551. stomach: {
  20552. height: math.unit(0.95, "feet"),
  20553. name: "Stomach",
  20554. image: {
  20555. source: "./media/characters/artemis/stomach.svg"
  20556. }
  20557. },
  20558. dickCanine: {
  20559. height: math.unit(1, "feet"),
  20560. name: "Dick (Canine)",
  20561. image: {
  20562. source: "./media/characters/artemis/dick-canine.svg"
  20563. }
  20564. },
  20565. dickEquine: {
  20566. height: math.unit(0.85, "feet"),
  20567. name: "Dick (Equine)",
  20568. image: {
  20569. source: "./media/characters/artemis/dick-equine.svg"
  20570. }
  20571. },
  20572. dickExotic: {
  20573. height: math.unit(0.85, "feet"),
  20574. name: "Dick (Exotic)",
  20575. image: {
  20576. source: "./media/characters/artemis/dick-exotic.svg"
  20577. }
  20578. },
  20579. },
  20580. [
  20581. {
  20582. name: "Normal",
  20583. height: math.unit(7.5, "feet"),
  20584. default: true
  20585. },
  20586. {
  20587. name: "Enlarged",
  20588. height: math.unit(12, "feet")
  20589. },
  20590. ]
  20591. ))
  20592. characterMakers.push(() => makeCharacter(
  20593. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20594. {
  20595. front: {
  20596. height: math.unit(5 + 3 / 12, "feet"),
  20597. weight: math.unit(160, "lb"),
  20598. name: "Front",
  20599. image: {
  20600. source: "./media/characters/kira/front.svg",
  20601. extra: 906 / 786,
  20602. bottom: 0.01
  20603. }
  20604. },
  20605. back: {
  20606. height: math.unit(5 + 3 / 12, "feet"),
  20607. weight: math.unit(160, "lb"),
  20608. name: "Back",
  20609. image: {
  20610. source: "./media/characters/kira/back.svg",
  20611. extra: 882 / 757,
  20612. bottom: 0.005
  20613. }
  20614. },
  20615. frontDressed: {
  20616. height: math.unit(5 + 3 / 12, "feet"),
  20617. weight: math.unit(160, "lb"),
  20618. name: "Front (Dressed)",
  20619. image: {
  20620. source: "./media/characters/kira/front-dressed.svg",
  20621. extra: 906 / 786,
  20622. bottom: 0.01
  20623. }
  20624. },
  20625. beans: {
  20626. height: math.unit(0.92, "feet"),
  20627. name: "Beans",
  20628. image: {
  20629. source: "./media/characters/kira/beans.svg"
  20630. }
  20631. },
  20632. },
  20633. [
  20634. {
  20635. name: "Normal",
  20636. height: math.unit(5 + 3 / 12, "feet"),
  20637. default: true
  20638. },
  20639. ]
  20640. ))
  20641. characterMakers.push(() => makeCharacter(
  20642. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20643. {
  20644. front: {
  20645. height: math.unit(5 + 4 / 12, "feet"),
  20646. weight: math.unit(145, "lb"),
  20647. name: "Front",
  20648. image: {
  20649. source: "./media/characters/scramble/front.svg",
  20650. extra: 763 / 727,
  20651. bottom: 0.05
  20652. }
  20653. },
  20654. back: {
  20655. height: math.unit(5 + 4 / 12, "feet"),
  20656. weight: math.unit(145, "lb"),
  20657. name: "Back",
  20658. image: {
  20659. source: "./media/characters/scramble/back.svg",
  20660. extra: 826 / 737,
  20661. bottom: 0.002
  20662. }
  20663. },
  20664. },
  20665. [
  20666. {
  20667. name: "Normal",
  20668. height: math.unit(5 + 4 / 12, "feet"),
  20669. default: true
  20670. },
  20671. ]
  20672. ))
  20673. characterMakers.push(() => makeCharacter(
  20674. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20675. {
  20676. side: {
  20677. height: math.unit(6 + 2 / 12, "feet"),
  20678. weight: math.unit(190, "lb"),
  20679. name: "Side",
  20680. image: {
  20681. source: "./media/characters/biscuit/side.svg",
  20682. extra: 858 / 791,
  20683. bottom: 0.044
  20684. }
  20685. },
  20686. },
  20687. [
  20688. {
  20689. name: "Normal",
  20690. height: math.unit(6 + 2 / 12, "feet"),
  20691. default: true
  20692. },
  20693. ]
  20694. ))
  20695. characterMakers.push(() => makeCharacter(
  20696. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20697. {
  20698. front: {
  20699. height: math.unit(5 + 2 / 12, "feet"),
  20700. weight: math.unit(120, "lb"),
  20701. name: "Front",
  20702. image: {
  20703. source: "./media/characters/poffin/front.svg",
  20704. extra: 786 / 680,
  20705. bottom: 0.005
  20706. }
  20707. },
  20708. },
  20709. [
  20710. {
  20711. name: "Normal",
  20712. height: math.unit(5 + 2 / 12, "feet"),
  20713. default: true
  20714. },
  20715. ]
  20716. ))
  20717. characterMakers.push(() => makeCharacter(
  20718. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20719. {
  20720. front: {
  20721. height: math.unit(6 + 3 / 12, "feet"),
  20722. weight: math.unit(519, "lb"),
  20723. name: "Front",
  20724. image: {
  20725. source: "./media/characters/dhari/front.svg",
  20726. extra: 1048 / 946,
  20727. bottom: 0.015
  20728. }
  20729. },
  20730. back: {
  20731. height: math.unit(6 + 3 / 12, "feet"),
  20732. weight: math.unit(519, "lb"),
  20733. name: "Back",
  20734. image: {
  20735. source: "./media/characters/dhari/back.svg",
  20736. extra: 1048 / 931,
  20737. bottom: 0.005
  20738. }
  20739. },
  20740. frontDressed: {
  20741. height: math.unit(6 + 3 / 12, "feet"),
  20742. weight: math.unit(519, "lb"),
  20743. name: "Front (Dressed)",
  20744. image: {
  20745. source: "./media/characters/dhari/front-dressed.svg",
  20746. extra: 1713 / 1546,
  20747. bottom: 0.02
  20748. }
  20749. },
  20750. backDressed: {
  20751. height: math.unit(6 + 3 / 12, "feet"),
  20752. weight: math.unit(519, "lb"),
  20753. name: "Back (Dressed)",
  20754. image: {
  20755. source: "./media/characters/dhari/back-dressed.svg",
  20756. extra: 1699 / 1537,
  20757. bottom: 0.01
  20758. }
  20759. },
  20760. maw: {
  20761. height: math.unit(0.95, "feet"),
  20762. name: "Maw",
  20763. image: {
  20764. source: "./media/characters/dhari/maw.svg"
  20765. }
  20766. },
  20767. wereFront: {
  20768. height: math.unit(12 + 8 / 12, "feet"),
  20769. weight: math.unit(4000, "lb"),
  20770. name: "Front (Were)",
  20771. image: {
  20772. source: "./media/characters/dhari/were-front.svg",
  20773. extra: 1065 / 969,
  20774. bottom: 0.015
  20775. }
  20776. },
  20777. wereBack: {
  20778. height: math.unit(12 + 8 / 12, "feet"),
  20779. weight: math.unit(4000, "lb"),
  20780. name: "Back (Were)",
  20781. image: {
  20782. source: "./media/characters/dhari/were-back.svg",
  20783. extra: 1065 / 969,
  20784. bottom: 0.012
  20785. }
  20786. },
  20787. wereMaw: {
  20788. height: math.unit(0.625, "meters"),
  20789. name: "Maw (Were)",
  20790. image: {
  20791. source: "./media/characters/dhari/were-maw.svg"
  20792. }
  20793. },
  20794. },
  20795. [
  20796. {
  20797. name: "Normal",
  20798. height: math.unit(6 + 3 / 12, "feet"),
  20799. default: true
  20800. },
  20801. ]
  20802. ))
  20803. characterMakers.push(() => makeCharacter(
  20804. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20805. {
  20806. anthro: {
  20807. height: math.unit(5 + 7 / 12, "feet"),
  20808. weight: math.unit(175, "lb"),
  20809. name: "Anthro",
  20810. image: {
  20811. source: "./media/characters/rena-dyne/anthro.svg",
  20812. extra: 1849 / 1785,
  20813. bottom: 0.005
  20814. }
  20815. },
  20816. taur: {
  20817. height: math.unit(15 + 6 / 12, "feet"),
  20818. weight: math.unit(8000, "lb"),
  20819. name: "Taur",
  20820. image: {
  20821. source: "./media/characters/rena-dyne/taur.svg",
  20822. extra: 2315 / 2234,
  20823. bottom: 0.033
  20824. }
  20825. },
  20826. },
  20827. [
  20828. {
  20829. name: "Normal",
  20830. height: math.unit(5 + 7 / 12, "feet"),
  20831. default: true
  20832. },
  20833. ]
  20834. ))
  20835. characterMakers.push(() => makeCharacter(
  20836. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20837. {
  20838. front: {
  20839. height: math.unit(8, "feet"),
  20840. weight: math.unit(600, "lb"),
  20841. name: "Front",
  20842. image: {
  20843. source: "./media/characters/weremeep/front.svg",
  20844. extra: 967 / 862,
  20845. bottom: 0.01
  20846. }
  20847. },
  20848. },
  20849. [
  20850. {
  20851. name: "Normal",
  20852. height: math.unit(8, "feet"),
  20853. default: true
  20854. },
  20855. {
  20856. name: "Lorg",
  20857. height: math.unit(12, "feet")
  20858. },
  20859. {
  20860. name: "Oh Lawd She Comin'",
  20861. height: math.unit(20, "feet")
  20862. },
  20863. ]
  20864. ))
  20865. characterMakers.push(() => makeCharacter(
  20866. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20867. {
  20868. front: {
  20869. height: math.unit(4, "feet"),
  20870. weight: math.unit(90, "lb"),
  20871. name: "Front",
  20872. image: {
  20873. source: "./media/characters/reza/front.svg",
  20874. extra: 1183 / 1111,
  20875. bottom: 0.017
  20876. }
  20877. },
  20878. back: {
  20879. height: math.unit(4, "feet"),
  20880. weight: math.unit(90, "lb"),
  20881. name: "Back",
  20882. image: {
  20883. source: "./media/characters/reza/back.svg",
  20884. extra: 1183 / 1111,
  20885. bottom: 0.01
  20886. }
  20887. },
  20888. drake: {
  20889. height: math.unit(30, "feet"),
  20890. weight: math.unit(246960, "lb"),
  20891. name: "Drake",
  20892. image: {
  20893. source: "./media/characters/reza/drake.svg",
  20894. extra: 2350 / 2024,
  20895. bottom: 60.7 / 2403
  20896. }
  20897. },
  20898. },
  20899. [
  20900. {
  20901. name: "Normal",
  20902. height: math.unit(4, "feet"),
  20903. default: true
  20904. },
  20905. ]
  20906. ))
  20907. characterMakers.push(() => makeCharacter(
  20908. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20909. {
  20910. side: {
  20911. height: math.unit(15, "feet"),
  20912. weight: math.unit(14, "tons"),
  20913. name: "Side",
  20914. image: {
  20915. source: "./media/characters/athea/side.svg",
  20916. extra: 960 / 540,
  20917. bottom: 0.003
  20918. }
  20919. },
  20920. sitting: {
  20921. height: math.unit(6 * 2.85, "feet"),
  20922. weight: math.unit(14, "tons"),
  20923. name: "Sitting",
  20924. image: {
  20925. source: "./media/characters/athea/sitting.svg",
  20926. extra: 621 / 581,
  20927. bottom: 0.075
  20928. }
  20929. },
  20930. maw: {
  20931. height: math.unit(7.59498031496063, "feet"),
  20932. name: "Maw",
  20933. image: {
  20934. source: "./media/characters/athea/maw.svg"
  20935. }
  20936. },
  20937. },
  20938. [
  20939. {
  20940. name: "Lap Cat",
  20941. height: math.unit(2.5, "feet")
  20942. },
  20943. {
  20944. name: "Minimacro",
  20945. height: math.unit(15, "feet"),
  20946. default: true
  20947. },
  20948. {
  20949. name: "Macro",
  20950. height: math.unit(120, "feet")
  20951. },
  20952. {
  20953. name: "Macro+",
  20954. height: math.unit(640, "feet")
  20955. },
  20956. {
  20957. name: "Colossus",
  20958. height: math.unit(2.2, "miles")
  20959. },
  20960. ]
  20961. ))
  20962. characterMakers.push(() => makeCharacter(
  20963. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20964. {
  20965. front: {
  20966. height: math.unit(8 + 8 / 12, "feet"),
  20967. weight: math.unit(130, "kg"),
  20968. name: "Front",
  20969. image: {
  20970. source: "./media/characters/seroko/front.svg",
  20971. extra: 1385 / 1280,
  20972. bottom: 0.025
  20973. }
  20974. },
  20975. back: {
  20976. height: math.unit(8 + 8 / 12, "feet"),
  20977. weight: math.unit(130, "kg"),
  20978. name: "Back",
  20979. image: {
  20980. source: "./media/characters/seroko/back.svg",
  20981. extra: 1369 / 1238,
  20982. bottom: 0.018
  20983. }
  20984. },
  20985. frontDressed: {
  20986. height: math.unit(8 + 8 / 12, "feet"),
  20987. weight: math.unit(130, "kg"),
  20988. name: "Front (Dressed)",
  20989. image: {
  20990. source: "./media/characters/seroko/front-dressed.svg",
  20991. extra: 1366 / 1275,
  20992. bottom: 0.03
  20993. }
  20994. },
  20995. },
  20996. [
  20997. {
  20998. name: "Normal",
  20999. height: math.unit(8 + 8 / 12, "feet"),
  21000. default: true
  21001. },
  21002. ]
  21003. ))
  21004. characterMakers.push(() => makeCharacter(
  21005. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21006. {
  21007. front: {
  21008. height: math.unit(5.5, "feet"),
  21009. weight: math.unit(160, "lb"),
  21010. name: "Front",
  21011. image: {
  21012. source: "./media/characters/quatzi/front.svg",
  21013. extra: 2346 / 2242,
  21014. bottom: 0.015
  21015. }
  21016. },
  21017. },
  21018. [
  21019. {
  21020. name: "Normal",
  21021. height: math.unit(5.5, "feet"),
  21022. default: true
  21023. },
  21024. {
  21025. name: "Big",
  21026. height: math.unit(7.7, "feet")
  21027. },
  21028. ]
  21029. ))
  21030. characterMakers.push(() => makeCharacter(
  21031. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21032. {
  21033. front: {
  21034. height: math.unit(5 + 11 / 12, "feet"),
  21035. weight: math.unit(180, "lb"),
  21036. name: "Front",
  21037. image: {
  21038. source: "./media/characters/sen/front.svg",
  21039. extra: 1321 / 1254,
  21040. bottom: 0.015
  21041. }
  21042. },
  21043. side: {
  21044. height: math.unit(5 + 11 / 12, "feet"),
  21045. weight: math.unit(180, "lb"),
  21046. name: "Side",
  21047. image: {
  21048. source: "./media/characters/sen/side.svg",
  21049. extra: 1321 / 1254,
  21050. bottom: 0.007
  21051. }
  21052. },
  21053. back: {
  21054. height: math.unit(5 + 11 / 12, "feet"),
  21055. weight: math.unit(180, "lb"),
  21056. name: "Back",
  21057. image: {
  21058. source: "./media/characters/sen/back.svg",
  21059. extra: 1321 / 1254
  21060. }
  21061. },
  21062. },
  21063. [
  21064. {
  21065. name: "Normal",
  21066. height: math.unit(5 + 11 / 12, "feet"),
  21067. default: true
  21068. },
  21069. ]
  21070. ))
  21071. characterMakers.push(() => makeCharacter(
  21072. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21073. {
  21074. front: {
  21075. height: math.unit(166.6, "cm"),
  21076. weight: math.unit(66.6, "kg"),
  21077. name: "Front",
  21078. image: {
  21079. source: "./media/characters/fruity/front.svg",
  21080. extra: 1510 / 1386,
  21081. bottom: 0.04
  21082. }
  21083. },
  21084. back: {
  21085. height: math.unit(166.6, "cm"),
  21086. weight: math.unit(66.6, "lb"),
  21087. name: "Back",
  21088. image: {
  21089. source: "./media/characters/fruity/back.svg",
  21090. extra: 1563 / 1435,
  21091. bottom: 0.005
  21092. }
  21093. },
  21094. },
  21095. [
  21096. {
  21097. name: "Normal",
  21098. height: math.unit(166.6, "cm"),
  21099. default: true
  21100. },
  21101. {
  21102. name: "Demonic",
  21103. height: math.unit(166.6, "feet")
  21104. },
  21105. ]
  21106. ))
  21107. characterMakers.push(() => makeCharacter(
  21108. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21109. {
  21110. side: {
  21111. height: math.unit(10, "feet"),
  21112. weight: math.unit(500, "lb"),
  21113. name: "Side",
  21114. image: {
  21115. source: "./media/characters/zost/side.svg",
  21116. extra: 966 / 880,
  21117. bottom: 0.075
  21118. }
  21119. },
  21120. mawFront: {
  21121. height: math.unit(1.08, "meters"),
  21122. name: "Maw (Front)",
  21123. image: {
  21124. source: "./media/characters/zost/maw-front.svg"
  21125. }
  21126. },
  21127. mawSide: {
  21128. height: math.unit(2.66, "feet"),
  21129. name: "Maw (Side)",
  21130. image: {
  21131. source: "./media/characters/zost/maw-side.svg"
  21132. }
  21133. },
  21134. },
  21135. [
  21136. {
  21137. name: "Normal",
  21138. height: math.unit(10, "feet"),
  21139. default: true
  21140. },
  21141. ]
  21142. ))
  21143. characterMakers.push(() => makeCharacter(
  21144. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21145. {
  21146. front: {
  21147. height: math.unit(5 + 4 / 12, "feet"),
  21148. weight: math.unit(120, "lb"),
  21149. name: "Front",
  21150. image: {
  21151. source: "./media/characters/luci/front.svg",
  21152. extra: 1985 / 1884,
  21153. bottom: 0.04
  21154. }
  21155. },
  21156. back: {
  21157. height: math.unit(5 + 4 / 12, "feet"),
  21158. weight: math.unit(120, "lb"),
  21159. name: "Back",
  21160. image: {
  21161. source: "./media/characters/luci/back.svg",
  21162. extra: 1892 / 1791,
  21163. bottom: 0.002
  21164. }
  21165. },
  21166. },
  21167. [
  21168. {
  21169. name: "Normal",
  21170. height: math.unit(5 + 4 / 12, "feet"),
  21171. default: true
  21172. },
  21173. ]
  21174. ))
  21175. characterMakers.push(() => makeCharacter(
  21176. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21177. {
  21178. front: {
  21179. height: math.unit(1500, "feet"),
  21180. weight: math.unit(3.8e6, "tons"),
  21181. name: "Front",
  21182. image: {
  21183. source: "./media/characters/2th/front.svg",
  21184. extra: 3489 / 3350,
  21185. bottom: 0.1
  21186. }
  21187. },
  21188. foot: {
  21189. height: math.unit(461, "feet"),
  21190. name: "Foot",
  21191. image: {
  21192. source: "./media/characters/2th/foot.svg"
  21193. }
  21194. },
  21195. },
  21196. [
  21197. {
  21198. name: "\"Micro\"",
  21199. height: math.unit(15 + 7 / 12, "feet")
  21200. },
  21201. {
  21202. name: "Normal",
  21203. height: math.unit(1500, "feet"),
  21204. default: true
  21205. },
  21206. {
  21207. name: "Macro",
  21208. height: math.unit(5000, "feet")
  21209. },
  21210. {
  21211. name: "Megamacro",
  21212. height: math.unit(15, "miles")
  21213. },
  21214. {
  21215. name: "Gigamacro",
  21216. height: math.unit(4000, "miles")
  21217. },
  21218. {
  21219. name: "Galactic",
  21220. height: math.unit(50, "AU")
  21221. },
  21222. ]
  21223. ))
  21224. characterMakers.push(() => makeCharacter(
  21225. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21226. {
  21227. front: {
  21228. height: math.unit(5 + 6 / 12, "feet"),
  21229. weight: math.unit(220, "lb"),
  21230. name: "Front",
  21231. image: {
  21232. source: "./media/characters/amethyst/front.svg",
  21233. extra: 2078 / 2040,
  21234. bottom: 0.045
  21235. }
  21236. },
  21237. back: {
  21238. height: math.unit(5 + 6 / 12, "feet"),
  21239. weight: math.unit(220, "lb"),
  21240. name: "Back",
  21241. image: {
  21242. source: "./media/characters/amethyst/back.svg",
  21243. extra: 2021 / 1989,
  21244. bottom: 0.02
  21245. }
  21246. },
  21247. },
  21248. [
  21249. {
  21250. name: "Normal",
  21251. height: math.unit(5 + 6 / 12, "feet"),
  21252. default: true
  21253. },
  21254. ]
  21255. ))
  21256. characterMakers.push(() => makeCharacter(
  21257. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21258. {
  21259. front: {
  21260. height: math.unit(4 + 11 / 12, "feet"),
  21261. weight: math.unit(120, "lb"),
  21262. name: "Front",
  21263. image: {
  21264. source: "./media/characters/yumi-akiyama/front.svg",
  21265. extra: 1327 / 1235,
  21266. bottom: 0.02
  21267. }
  21268. },
  21269. back: {
  21270. height: math.unit(4 + 11 / 12, "feet"),
  21271. weight: math.unit(120, "lb"),
  21272. name: "Back",
  21273. image: {
  21274. source: "./media/characters/yumi-akiyama/back.svg",
  21275. extra: 1287 / 1245,
  21276. bottom: 0.002
  21277. }
  21278. },
  21279. },
  21280. [
  21281. {
  21282. name: "Galactic",
  21283. height: math.unit(50, "galaxies"),
  21284. default: true
  21285. },
  21286. {
  21287. name: "Universal",
  21288. height: math.unit(100, "universes")
  21289. },
  21290. ]
  21291. ))
  21292. characterMakers.push(() => makeCharacter(
  21293. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21294. {
  21295. front: {
  21296. height: math.unit(8, "feet"),
  21297. weight: math.unit(500, "lb"),
  21298. name: "Front",
  21299. image: {
  21300. source: "./media/characters/rifter-yrmori/front.svg",
  21301. extra: 1180 / 1125,
  21302. bottom: 0.02
  21303. }
  21304. },
  21305. back: {
  21306. height: math.unit(8, "feet"),
  21307. weight: math.unit(500, "lb"),
  21308. name: "Back",
  21309. image: {
  21310. source: "./media/characters/rifter-yrmori/back.svg",
  21311. extra: 1190 / 1145,
  21312. bottom: 0.001
  21313. }
  21314. },
  21315. wings: {
  21316. height: math.unit(7.75, "feet"),
  21317. weight: math.unit(500, "lb"),
  21318. name: "Wings",
  21319. image: {
  21320. source: "./media/characters/rifter-yrmori/wings.svg",
  21321. extra: 1357 / 1285
  21322. }
  21323. },
  21324. maw: {
  21325. height: math.unit(0.8, "feet"),
  21326. name: "Maw",
  21327. image: {
  21328. source: "./media/characters/rifter-yrmori/maw.svg"
  21329. }
  21330. },
  21331. mawfront: {
  21332. height: math.unit(1.45, "feet"),
  21333. name: "Maw (Front)",
  21334. image: {
  21335. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21336. }
  21337. },
  21338. },
  21339. [
  21340. {
  21341. name: "Normal",
  21342. height: math.unit(8, "feet"),
  21343. default: true
  21344. },
  21345. {
  21346. name: "Macro",
  21347. height: math.unit(42, "meters")
  21348. },
  21349. ]
  21350. ))
  21351. characterMakers.push(() => makeCharacter(
  21352. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21353. {
  21354. were: {
  21355. height: math.unit(25 + 6 / 12, "feet"),
  21356. weight: math.unit(10000, "lb"),
  21357. name: "Were",
  21358. image: {
  21359. source: "./media/characters/tahajin/were.svg",
  21360. extra: 801 / 770,
  21361. bottom: 0.042
  21362. }
  21363. },
  21364. aquatic: {
  21365. height: math.unit(6 + 4 / 12, "feet"),
  21366. weight: math.unit(160, "lb"),
  21367. name: "Aquatic",
  21368. image: {
  21369. source: "./media/characters/tahajin/aquatic.svg",
  21370. extra: 572 / 542,
  21371. bottom: 0.04
  21372. }
  21373. },
  21374. chow: {
  21375. height: math.unit(8 + 11 / 12, "feet"),
  21376. weight: math.unit(450, "lb"),
  21377. name: "Chow",
  21378. image: {
  21379. source: "./media/characters/tahajin/chow.svg",
  21380. extra: 660 / 640,
  21381. bottom: 0.015
  21382. }
  21383. },
  21384. demiNaga: {
  21385. height: math.unit(6 + 8 / 12, "feet"),
  21386. weight: math.unit(300, "lb"),
  21387. name: "Demi Naga",
  21388. image: {
  21389. source: "./media/characters/tahajin/demi-naga.svg",
  21390. extra: 643 / 615,
  21391. bottom: 0.1
  21392. }
  21393. },
  21394. data: {
  21395. height: math.unit(5, "inches"),
  21396. weight: math.unit(0.1, "lb"),
  21397. name: "Data",
  21398. image: {
  21399. source: "./media/characters/tahajin/data.svg"
  21400. }
  21401. },
  21402. fluu: {
  21403. height: math.unit(5 + 7 / 12, "feet"),
  21404. weight: math.unit(140, "lb"),
  21405. name: "Fluu",
  21406. image: {
  21407. source: "./media/characters/tahajin/fluu.svg",
  21408. extra: 628 / 592,
  21409. bottom: 0.02
  21410. }
  21411. },
  21412. starWarrior: {
  21413. height: math.unit(4 + 5 / 12, "feet"),
  21414. weight: math.unit(50, "lb"),
  21415. name: "Star Warrior",
  21416. image: {
  21417. source: "./media/characters/tahajin/star-warrior.svg"
  21418. }
  21419. },
  21420. },
  21421. [
  21422. {
  21423. name: "Normal",
  21424. height: math.unit(25 + 6 / 12, "feet"),
  21425. default: true
  21426. },
  21427. ]
  21428. ))
  21429. characterMakers.push(() => makeCharacter(
  21430. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21431. {
  21432. front: {
  21433. height: math.unit(8, "feet"),
  21434. weight: math.unit(350, "lb"),
  21435. name: "Front",
  21436. image: {
  21437. source: "./media/characters/gabira/front.svg",
  21438. extra: 608 / 580,
  21439. bottom: 0.03
  21440. }
  21441. },
  21442. back: {
  21443. height: math.unit(8, "feet"),
  21444. weight: math.unit(350, "lb"),
  21445. name: "Back",
  21446. image: {
  21447. source: "./media/characters/gabira/back.svg",
  21448. extra: 608 / 580,
  21449. bottom: 0.03
  21450. }
  21451. },
  21452. },
  21453. [
  21454. {
  21455. name: "Normal",
  21456. height: math.unit(8, "feet"),
  21457. default: true
  21458. },
  21459. ]
  21460. ))
  21461. characterMakers.push(() => makeCharacter(
  21462. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21463. {
  21464. front: {
  21465. height: math.unit(5 + 3 / 12, "feet"),
  21466. weight: math.unit(137, "lb"),
  21467. name: "Front",
  21468. image: {
  21469. source: "./media/characters/sasha-katraine/front.svg",
  21470. bottom: 0.045
  21471. }
  21472. },
  21473. },
  21474. [
  21475. {
  21476. name: "Micro",
  21477. height: math.unit(5, "inches")
  21478. },
  21479. {
  21480. name: "Normal",
  21481. height: math.unit(5 + 3 / 12, "feet"),
  21482. default: true
  21483. },
  21484. ]
  21485. ))
  21486. characterMakers.push(() => makeCharacter(
  21487. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21488. {
  21489. side: {
  21490. height: math.unit(4, "inches"),
  21491. weight: math.unit(200, "grams"),
  21492. name: "Side",
  21493. image: {
  21494. source: "./media/characters/der/side.svg",
  21495. extra: 719 / 400,
  21496. bottom: 30.6 / 749.9187
  21497. }
  21498. },
  21499. },
  21500. [
  21501. {
  21502. name: "Micro",
  21503. height: math.unit(4, "inches"),
  21504. default: true
  21505. },
  21506. ]
  21507. ))
  21508. characterMakers.push(() => makeCharacter(
  21509. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21510. {
  21511. side: {
  21512. height: math.unit(30, "meters"),
  21513. weight: math.unit(700, "tonnes"),
  21514. name: "Side",
  21515. image: {
  21516. source: "./media/characters/fixerdragon/side.svg",
  21517. extra: (1293.0514 - 116.03) / 1106.86,
  21518. bottom: 116.03 / 1293.0514
  21519. }
  21520. },
  21521. },
  21522. [
  21523. {
  21524. name: "Planck",
  21525. height: math.unit(1.6e-35, "meters")
  21526. },
  21527. {
  21528. name: "Micro",
  21529. height: math.unit(0.4, "meters")
  21530. },
  21531. {
  21532. name: "Normal",
  21533. height: math.unit(30, "meters"),
  21534. default: true
  21535. },
  21536. {
  21537. name: "Megamacro",
  21538. height: math.unit(1.2, "megameters")
  21539. },
  21540. {
  21541. name: "Teramacro",
  21542. height: math.unit(130, "terameters")
  21543. },
  21544. {
  21545. name: "Yottamacro",
  21546. height: math.unit(6200, "yottameters")
  21547. },
  21548. ]
  21549. ));
  21550. characterMakers.push(() => makeCharacter(
  21551. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21552. {
  21553. front: {
  21554. height: math.unit(8, "feet"),
  21555. weight: math.unit(250, "lb"),
  21556. name: "Front",
  21557. image: {
  21558. source: "./media/characters/kite/front.svg",
  21559. extra: 2796 / 2659,
  21560. bottom: 0.002
  21561. }
  21562. },
  21563. },
  21564. [
  21565. {
  21566. name: "Normal",
  21567. height: math.unit(8, "feet"),
  21568. default: true
  21569. },
  21570. {
  21571. name: "Macro",
  21572. height: math.unit(360, "feet")
  21573. },
  21574. {
  21575. name: "Megamacro",
  21576. height: math.unit(1500, "feet")
  21577. },
  21578. ]
  21579. ))
  21580. characterMakers.push(() => makeCharacter(
  21581. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21582. {
  21583. front: {
  21584. height: math.unit(5 + 10 / 12, "feet"),
  21585. weight: math.unit(150, "lb"),
  21586. name: "Front",
  21587. image: {
  21588. source: "./media/characters/poojawa-vynar/front.svg",
  21589. extra: (1506.1547 - 55) / 1356.6,
  21590. bottom: 55 / 1506.1547
  21591. }
  21592. },
  21593. frontTailless: {
  21594. height: math.unit(5 + 10 / 12, "feet"),
  21595. weight: math.unit(150, "lb"),
  21596. name: "Front (Tailless)",
  21597. image: {
  21598. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21599. extra: (1506.1547 - 55) / 1356.6,
  21600. bottom: 55 / 1506.1547
  21601. }
  21602. },
  21603. },
  21604. [
  21605. {
  21606. name: "Normal",
  21607. height: math.unit(5 + 10 / 12, "feet"),
  21608. default: true
  21609. },
  21610. ]
  21611. ))
  21612. characterMakers.push(() => makeCharacter(
  21613. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21614. {
  21615. front: {
  21616. height: math.unit(293, "meters"),
  21617. weight: math.unit(70400, "tons"),
  21618. name: "Front",
  21619. image: {
  21620. source: "./media/characters/violette/front.svg",
  21621. extra: 1227 / 1180,
  21622. bottom: 0.005
  21623. }
  21624. },
  21625. back: {
  21626. height: math.unit(293, "meters"),
  21627. weight: math.unit(70400, "tons"),
  21628. name: "Back",
  21629. image: {
  21630. source: "./media/characters/violette/back.svg",
  21631. extra: 1227 / 1180,
  21632. bottom: 0.005
  21633. }
  21634. },
  21635. },
  21636. [
  21637. {
  21638. name: "Macro",
  21639. height: math.unit(293, "meters"),
  21640. default: true
  21641. },
  21642. ]
  21643. ))
  21644. characterMakers.push(() => makeCharacter(
  21645. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21646. {
  21647. front: {
  21648. height: math.unit(1050, "feet"),
  21649. weight: math.unit(200000, "tons"),
  21650. name: "Front",
  21651. image: {
  21652. source: "./media/characters/alessandra/front.svg",
  21653. extra: 960 / 912,
  21654. bottom: 0.06
  21655. }
  21656. },
  21657. },
  21658. [
  21659. {
  21660. name: "Macro",
  21661. height: math.unit(1050, "feet")
  21662. },
  21663. {
  21664. name: "Macro+",
  21665. height: math.unit(900, "meters"),
  21666. default: true
  21667. },
  21668. ]
  21669. ))
  21670. characterMakers.push(() => makeCharacter(
  21671. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21672. {
  21673. front: {
  21674. height: math.unit(5, "feet"),
  21675. weight: math.unit(187, "lb"),
  21676. name: "Front",
  21677. image: {
  21678. source: "./media/characters/person/front.svg",
  21679. extra: 3087 / 2945,
  21680. bottom: 91 / 3181
  21681. }
  21682. },
  21683. },
  21684. [
  21685. {
  21686. name: "Micro",
  21687. height: math.unit(3, "inches")
  21688. },
  21689. {
  21690. name: "Normal",
  21691. height: math.unit(5, "feet"),
  21692. default: true
  21693. },
  21694. {
  21695. name: "Macro",
  21696. height: math.unit(90, "feet")
  21697. },
  21698. {
  21699. name: "Max Size",
  21700. height: math.unit(280, "feet")
  21701. },
  21702. ]
  21703. ))
  21704. characterMakers.push(() => makeCharacter(
  21705. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21706. {
  21707. front: {
  21708. height: math.unit(4.5, "meters"),
  21709. weight: math.unit(3200, "lb"),
  21710. name: "Front",
  21711. image: {
  21712. source: "./media/characters/ty/front.svg",
  21713. extra: 1038 / 960,
  21714. bottom: 31.156 / 1068
  21715. }
  21716. },
  21717. back: {
  21718. height: math.unit(4.5, "meters"),
  21719. weight: math.unit(3200, "lb"),
  21720. name: "Back",
  21721. image: {
  21722. source: "./media/characters/ty/back.svg",
  21723. extra: 1044 / 966,
  21724. bottom: 7.48 / 1049
  21725. }
  21726. },
  21727. },
  21728. [
  21729. {
  21730. name: "Normal",
  21731. height: math.unit(4.5, "meters"),
  21732. default: true
  21733. },
  21734. ]
  21735. ))
  21736. characterMakers.push(() => makeCharacter(
  21737. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21738. {
  21739. front: {
  21740. height: math.unit(5 + 4 / 12, "feet"),
  21741. weight: math.unit(115, "lb"),
  21742. name: "Front",
  21743. image: {
  21744. source: "./media/characters/rocky/front.svg",
  21745. extra: 1012 / 975,
  21746. bottom: 54 / 1066
  21747. }
  21748. },
  21749. },
  21750. [
  21751. {
  21752. name: "Normal",
  21753. height: math.unit(5 + 4 / 12, "feet"),
  21754. default: true
  21755. },
  21756. ]
  21757. ))
  21758. characterMakers.push(() => makeCharacter(
  21759. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21760. {
  21761. upright: {
  21762. height: math.unit(6, "meters"),
  21763. weight: math.unit(4000, "kg"),
  21764. name: "Upright",
  21765. image: {
  21766. source: "./media/characters/ruin/upright.svg",
  21767. extra: 668 / 661,
  21768. bottom: 42 / 799.8396
  21769. }
  21770. },
  21771. },
  21772. [
  21773. {
  21774. name: "Normal",
  21775. height: math.unit(6, "meters"),
  21776. default: true
  21777. },
  21778. ]
  21779. ))
  21780. characterMakers.push(() => makeCharacter(
  21781. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21782. {
  21783. front: {
  21784. height: math.unit(5, "feet"),
  21785. weight: math.unit(106, "lb"),
  21786. name: "Front",
  21787. image: {
  21788. source: "./media/characters/robin/front.svg",
  21789. extra: 862 / 799,
  21790. bottom: 42.4 / 914.8856
  21791. }
  21792. },
  21793. },
  21794. [
  21795. {
  21796. name: "Normal",
  21797. height: math.unit(5, "feet"),
  21798. default: true
  21799. },
  21800. ]
  21801. ))
  21802. characterMakers.push(() => makeCharacter(
  21803. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21804. {
  21805. side: {
  21806. height: math.unit(3, "feet"),
  21807. weight: math.unit(225, "lb"),
  21808. name: "Side",
  21809. image: {
  21810. source: "./media/characters/saian/side.svg",
  21811. extra: 566 / 356,
  21812. bottom: 79.7 / 643
  21813. }
  21814. },
  21815. maw: {
  21816. height: math.unit(2.85, "feet"),
  21817. name: "Maw",
  21818. image: {
  21819. source: "./media/characters/saian/maw.svg"
  21820. }
  21821. },
  21822. },
  21823. [
  21824. {
  21825. name: "Normal",
  21826. height: math.unit(3, "feet"),
  21827. default: true
  21828. },
  21829. ]
  21830. ))
  21831. characterMakers.push(() => makeCharacter(
  21832. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21833. {
  21834. side: {
  21835. height: math.unit(8, "feet"),
  21836. weight: math.unit(300, "lb"),
  21837. name: "Side",
  21838. image: {
  21839. source: "./media/characters/equus-silvermane/side.svg",
  21840. extra: 2176 / 2050,
  21841. bottom: 65.7 / 2245
  21842. }
  21843. },
  21844. front: {
  21845. height: math.unit(8, "feet"),
  21846. weight: math.unit(300, "lb"),
  21847. name: "Front",
  21848. image: {
  21849. source: "./media/characters/equus-silvermane/front.svg",
  21850. extra: 4633 / 4400,
  21851. bottom: 71.3 / 4706.915
  21852. }
  21853. },
  21854. sideStepping: {
  21855. height: math.unit(8, "feet"),
  21856. weight: math.unit(300, "lb"),
  21857. name: "Side (Stepping)",
  21858. image: {
  21859. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21860. extra: 1968 / 1860,
  21861. bottom: 16.4 / 1989
  21862. }
  21863. },
  21864. },
  21865. [
  21866. {
  21867. name: "Normal",
  21868. height: math.unit(8, "feet")
  21869. },
  21870. {
  21871. name: "Minimacro",
  21872. height: math.unit(75, "feet"),
  21873. default: true
  21874. },
  21875. {
  21876. name: "Macro",
  21877. height: math.unit(150, "feet")
  21878. },
  21879. {
  21880. name: "Macro+",
  21881. height: math.unit(1000, "feet")
  21882. },
  21883. {
  21884. name: "Megamacro",
  21885. height: math.unit(1, "mile")
  21886. },
  21887. ]
  21888. ))
  21889. characterMakers.push(() => makeCharacter(
  21890. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21891. {
  21892. side: {
  21893. height: math.unit(20, "feet"),
  21894. weight: math.unit(30000, "kg"),
  21895. name: "Side",
  21896. image: {
  21897. source: "./media/characters/windar/side.svg",
  21898. extra: 1491 / 1248,
  21899. bottom: 82.56 / 1568
  21900. }
  21901. },
  21902. },
  21903. [
  21904. {
  21905. name: "Normal",
  21906. height: math.unit(20, "feet"),
  21907. default: true
  21908. },
  21909. ]
  21910. ))
  21911. characterMakers.push(() => makeCharacter(
  21912. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21913. {
  21914. side: {
  21915. height: math.unit(15.66, "feet"),
  21916. weight: math.unit(150, "lb"),
  21917. name: "Side",
  21918. image: {
  21919. source: "./media/characters/melody/side.svg",
  21920. extra: 1097 / 944,
  21921. bottom: 11.8 / 1109
  21922. }
  21923. },
  21924. sideOutfit: {
  21925. height: math.unit(15.66, "feet"),
  21926. weight: math.unit(150, "lb"),
  21927. name: "Side (Outfit)",
  21928. image: {
  21929. source: "./media/characters/melody/side-outfit.svg",
  21930. extra: 1097 / 944,
  21931. bottom: 11.8 / 1109
  21932. }
  21933. },
  21934. },
  21935. [
  21936. {
  21937. name: "Normal",
  21938. height: math.unit(15.66, "feet"),
  21939. default: true
  21940. },
  21941. ]
  21942. ))
  21943. characterMakers.push(() => makeCharacter(
  21944. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21945. {
  21946. front: {
  21947. height: math.unit(8, "feet"),
  21948. weight: math.unit(325, "lb"),
  21949. name: "Front",
  21950. image: {
  21951. source: "./media/characters/windera/front.svg",
  21952. extra: 3180 / 2845,
  21953. bottom: 178 / 3365
  21954. }
  21955. },
  21956. },
  21957. [
  21958. {
  21959. name: "Normal",
  21960. height: math.unit(8, "feet"),
  21961. default: true
  21962. },
  21963. ]
  21964. ))
  21965. characterMakers.push(() => makeCharacter(
  21966. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21967. {
  21968. front: {
  21969. height: math.unit(28.75, "feet"),
  21970. weight: math.unit(2000, "kg"),
  21971. name: "Front",
  21972. image: {
  21973. source: "./media/characters/sonear/front.svg",
  21974. extra: 1041.1 / 964.9,
  21975. bottom: 53.7 / 1096.6
  21976. }
  21977. },
  21978. },
  21979. [
  21980. {
  21981. name: "Normal",
  21982. height: math.unit(28.75, "feet"),
  21983. default: true
  21984. },
  21985. ]
  21986. ))
  21987. characterMakers.push(() => makeCharacter(
  21988. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21989. {
  21990. side: {
  21991. height: math.unit(25.5, "feet"),
  21992. weight: math.unit(23000, "kg"),
  21993. name: "Side",
  21994. image: {
  21995. source: "./media/characters/kanara/side.svg"
  21996. }
  21997. },
  21998. },
  21999. [
  22000. {
  22001. name: "Normal",
  22002. height: math.unit(25.5, "feet"),
  22003. default: true
  22004. },
  22005. ]
  22006. ))
  22007. characterMakers.push(() => makeCharacter(
  22008. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22009. {
  22010. side: {
  22011. height: math.unit(10, "feet"),
  22012. weight: math.unit(1000, "kg"),
  22013. name: "Side",
  22014. image: {
  22015. source: "./media/characters/ereus/side.svg",
  22016. extra: 1157 / 959,
  22017. bottom: 153 / 1312.5
  22018. }
  22019. },
  22020. },
  22021. [
  22022. {
  22023. name: "Normal",
  22024. height: math.unit(10, "feet"),
  22025. default: true
  22026. },
  22027. ]
  22028. ))
  22029. characterMakers.push(() => makeCharacter(
  22030. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22031. {
  22032. side: {
  22033. height: math.unit(4.5, "feet"),
  22034. weight: math.unit(500, "lb"),
  22035. name: "Side",
  22036. image: {
  22037. source: "./media/characters/e-ter/side.svg",
  22038. extra: 1550 / 1248,
  22039. bottom: 146 / 1694
  22040. }
  22041. },
  22042. },
  22043. [
  22044. {
  22045. name: "Normal",
  22046. height: math.unit(4.5, "feet"),
  22047. default: true
  22048. },
  22049. ]
  22050. ))
  22051. characterMakers.push(() => makeCharacter(
  22052. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22053. {
  22054. side: {
  22055. height: math.unit(9.7, "feet"),
  22056. weight: math.unit(4000, "kg"),
  22057. name: "Side",
  22058. image: {
  22059. source: "./media/characters/yamie/side.svg"
  22060. }
  22061. },
  22062. },
  22063. [
  22064. {
  22065. name: "Normal",
  22066. height: math.unit(9.7, "feet"),
  22067. default: true
  22068. },
  22069. ]
  22070. ))
  22071. characterMakers.push(() => makeCharacter(
  22072. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22073. {
  22074. front: {
  22075. height: math.unit(50, "feet"),
  22076. weight: math.unit(50000, "kg"),
  22077. name: "Front",
  22078. image: {
  22079. source: "./media/characters/anders/front.svg",
  22080. extra: 570 / 539,
  22081. bottom: 14.7 / 586.7
  22082. }
  22083. },
  22084. },
  22085. [
  22086. {
  22087. name: "Large",
  22088. height: math.unit(50, "feet")
  22089. },
  22090. {
  22091. name: "Macro",
  22092. height: math.unit(2000, "feet"),
  22093. default: true
  22094. },
  22095. {
  22096. name: "Megamacro",
  22097. height: math.unit(12, "miles")
  22098. },
  22099. ]
  22100. ))
  22101. characterMakers.push(() => makeCharacter(
  22102. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22103. {
  22104. front: {
  22105. height: math.unit(7 + 2 / 12, "feet"),
  22106. weight: math.unit(300, "lb"),
  22107. name: "Front",
  22108. image: {
  22109. source: "./media/characters/reban/front.svg",
  22110. extra: 516 / 487,
  22111. bottom: 42.82 / 558.356
  22112. }
  22113. },
  22114. dick: {
  22115. height: math.unit(7 / 5, "feet"),
  22116. name: "Dick",
  22117. image: {
  22118. source: "./media/characters/reban/dick.svg"
  22119. }
  22120. },
  22121. },
  22122. [
  22123. {
  22124. name: "Natural Height",
  22125. height: math.unit(7 + 2 / 12, "feet")
  22126. },
  22127. {
  22128. name: "Macro",
  22129. height: math.unit(500, "feet"),
  22130. default: true
  22131. },
  22132. {
  22133. name: "Canon Height",
  22134. height: math.unit(50, "AU")
  22135. },
  22136. ]
  22137. ))
  22138. characterMakers.push(() => makeCharacter(
  22139. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22140. {
  22141. front: {
  22142. height: math.unit(6, "feet"),
  22143. weight: math.unit(150, "lb"),
  22144. name: "Front",
  22145. image: {
  22146. source: "./media/characters/terrance-keayes/front.svg",
  22147. extra: 1.005,
  22148. bottom: 151 / 1615
  22149. }
  22150. },
  22151. side: {
  22152. height: math.unit(6, "feet"),
  22153. weight: math.unit(150, "lb"),
  22154. name: "Side",
  22155. image: {
  22156. source: "./media/characters/terrance-keayes/side.svg",
  22157. extra: 1.005,
  22158. bottom: 129.4 / 1544
  22159. }
  22160. },
  22161. back: {
  22162. height: math.unit(6, "feet"),
  22163. weight: math.unit(150, "lb"),
  22164. name: "Back",
  22165. image: {
  22166. source: "./media/characters/terrance-keayes/back.svg",
  22167. extra: 1.005,
  22168. bottom: 58.4 / 1557.3
  22169. }
  22170. },
  22171. dick: {
  22172. height: math.unit(6 * 0.208, "feet"),
  22173. name: "Dick",
  22174. image: {
  22175. source: "./media/characters/terrance-keayes/dick.svg"
  22176. }
  22177. },
  22178. },
  22179. [
  22180. {
  22181. name: "Canon Height",
  22182. height: math.unit(35, "miles"),
  22183. default: true
  22184. },
  22185. ]
  22186. ))
  22187. characterMakers.push(() => makeCharacter(
  22188. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22189. {
  22190. front: {
  22191. height: math.unit(6, "feet"),
  22192. weight: math.unit(150, "lb"),
  22193. name: "Front",
  22194. image: {
  22195. source: "./media/characters/ofelia/front.svg",
  22196. extra: 546 / 541,
  22197. bottom: 39 / 583
  22198. }
  22199. },
  22200. back: {
  22201. height: math.unit(6, "feet"),
  22202. weight: math.unit(150, "lb"),
  22203. name: "Back",
  22204. image: {
  22205. source: "./media/characters/ofelia/back.svg",
  22206. extra: 564 / 559.5,
  22207. bottom: 8.69 / 573.02
  22208. }
  22209. },
  22210. maw: {
  22211. height: math.unit(1, "feet"),
  22212. name: "Maw",
  22213. image: {
  22214. source: "./media/characters/ofelia/maw.svg"
  22215. }
  22216. },
  22217. foot: {
  22218. height: math.unit(1.949, "feet"),
  22219. name: "Foot",
  22220. image: {
  22221. source: "./media/characters/ofelia/foot.svg"
  22222. }
  22223. },
  22224. },
  22225. [
  22226. {
  22227. name: "Canon Height",
  22228. height: math.unit(2000, "miles"),
  22229. default: true
  22230. },
  22231. ]
  22232. ))
  22233. characterMakers.push(() => makeCharacter(
  22234. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22235. {
  22236. front: {
  22237. height: math.unit(6, "feet"),
  22238. weight: math.unit(150, "lb"),
  22239. name: "Front",
  22240. image: {
  22241. source: "./media/characters/samuel/front.svg",
  22242. extra: 265 / 258,
  22243. bottom: 2 / 266.1566
  22244. }
  22245. },
  22246. },
  22247. [
  22248. {
  22249. name: "Macro",
  22250. height: math.unit(100, "feet"),
  22251. default: true
  22252. },
  22253. {
  22254. name: "Full Size",
  22255. height: math.unit(1000, "miles")
  22256. },
  22257. ]
  22258. ))
  22259. characterMakers.push(() => makeCharacter(
  22260. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22261. {
  22262. front: {
  22263. height: math.unit(6, "feet"),
  22264. weight: math.unit(300, "lb"),
  22265. name: "Front",
  22266. image: {
  22267. source: "./media/characters/beishir-kiel/front.svg",
  22268. extra: 569 / 547,
  22269. bottom: 41.9 / 609
  22270. }
  22271. },
  22272. maw: {
  22273. height: math.unit(6 * 0.202, "feet"),
  22274. name: "Maw",
  22275. image: {
  22276. source: "./media/characters/beishir-kiel/maw.svg"
  22277. }
  22278. },
  22279. },
  22280. [
  22281. {
  22282. name: "Macro",
  22283. height: math.unit(300, "feet"),
  22284. default: true
  22285. },
  22286. ]
  22287. ))
  22288. characterMakers.push(() => makeCharacter(
  22289. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22290. {
  22291. front: {
  22292. height: math.unit(5 + 7/12, "feet"),
  22293. weight: math.unit(120, "lb"),
  22294. name: "Front",
  22295. image: {
  22296. source: "./media/characters/logan-grey/front.svg",
  22297. extra: 1836/1738,
  22298. bottom: 108/1944
  22299. }
  22300. },
  22301. back: {
  22302. height: math.unit(5 + 7/12, "feet"),
  22303. weight: math.unit(120, "lb"),
  22304. name: "Back",
  22305. image: {
  22306. source: "./media/characters/logan-grey/back.svg",
  22307. extra: 1880/1794,
  22308. bottom: 24/1904
  22309. }
  22310. },
  22311. frontSfw: {
  22312. height: math.unit(5 + 7/12, "feet"),
  22313. weight: math.unit(120, "lb"),
  22314. name: "Front (SFW)",
  22315. image: {
  22316. source: "./media/characters/logan-grey/front-sfw.svg",
  22317. extra: 1836/1738,
  22318. bottom: 108/1944
  22319. }
  22320. },
  22321. backSfw: {
  22322. height: math.unit(5 + 7/12, "feet"),
  22323. weight: math.unit(120, "lb"),
  22324. name: "Back (SFW)",
  22325. image: {
  22326. source: "./media/characters/logan-grey/back-sfw.svg",
  22327. extra: 1880/1794,
  22328. bottom: 24/1904
  22329. }
  22330. },
  22331. hands: {
  22332. height: math.unit(0.84, "feet"),
  22333. name: "Hands",
  22334. image: {
  22335. source: "./media/characters/logan-grey/hands.svg"
  22336. }
  22337. },
  22338. paws: {
  22339. height: math.unit(0.72, "feet"),
  22340. name: "Paws",
  22341. image: {
  22342. source: "./media/characters/logan-grey/paws.svg"
  22343. }
  22344. },
  22345. cock: {
  22346. height: math.unit(1.45, "feet"),
  22347. name: "Cock",
  22348. image: {
  22349. source: "./media/characters/logan-grey/cock.svg"
  22350. }
  22351. },
  22352. cockAlt: {
  22353. height: math.unit(1.437, "feet"),
  22354. name: "Cock (alt)",
  22355. image: {
  22356. source: "./media/characters/logan-grey/cock-alt.svg"
  22357. }
  22358. },
  22359. },
  22360. [
  22361. {
  22362. name: "Normal",
  22363. height: math.unit(5 + 8 / 12, "feet")
  22364. },
  22365. {
  22366. name: "The 500 Foot Femboy",
  22367. height: math.unit(500, "feet"),
  22368. default: true
  22369. },
  22370. {
  22371. name: "Megmacro",
  22372. height: math.unit(20, "miles")
  22373. },
  22374. ]
  22375. ))
  22376. characterMakers.push(() => makeCharacter(
  22377. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22378. {
  22379. front: {
  22380. height: math.unit(8 + 2 / 12, "feet"),
  22381. weight: math.unit(275, "lb"),
  22382. name: "Front",
  22383. image: {
  22384. source: "./media/characters/draganta/front.svg",
  22385. extra: 1177 / 1135,
  22386. bottom: 33.46 / 1212.1
  22387. }
  22388. },
  22389. },
  22390. [
  22391. {
  22392. name: "Normal",
  22393. height: math.unit(8 + 6 / 12, "feet"),
  22394. default: true
  22395. },
  22396. {
  22397. name: "Macro",
  22398. height: math.unit(150, "feet")
  22399. },
  22400. {
  22401. name: "Megamacro",
  22402. height: math.unit(1000, "miles")
  22403. },
  22404. ]
  22405. ))
  22406. characterMakers.push(() => makeCharacter(
  22407. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22408. {
  22409. front: {
  22410. height: math.unit(1.72, "m"),
  22411. weight: math.unit(80, "lb"),
  22412. name: "Front",
  22413. image: {
  22414. source: "./media/characters/voski/front.svg",
  22415. extra: 2076.22 / 2022.4,
  22416. bottom: 102.7 / 2177.3866
  22417. }
  22418. },
  22419. frontNsfw: {
  22420. height: math.unit(1.72, "m"),
  22421. weight: math.unit(80, "lb"),
  22422. name: "Front (NSFW)",
  22423. image: {
  22424. source: "./media/characters/voski/front-nsfw.svg",
  22425. extra: 2076.22 / 2022.4,
  22426. bottom: 102.7 / 2177.3866
  22427. }
  22428. },
  22429. back: {
  22430. height: math.unit(1.72, "m"),
  22431. weight: math.unit(80, "lb"),
  22432. name: "Back",
  22433. image: {
  22434. source: "./media/characters/voski/back.svg",
  22435. extra: 2104 / 2051,
  22436. bottom: 10.45 / 2113.63
  22437. }
  22438. },
  22439. },
  22440. [
  22441. {
  22442. name: "Normal",
  22443. height: math.unit(1.72, "m")
  22444. },
  22445. {
  22446. name: "Macro",
  22447. height: math.unit(55, "m"),
  22448. default: true
  22449. },
  22450. {
  22451. name: "Macro+",
  22452. height: math.unit(300, "m")
  22453. },
  22454. {
  22455. name: "Macro++",
  22456. height: math.unit(700, "m")
  22457. },
  22458. {
  22459. name: "Macro+++",
  22460. height: math.unit(4500, "m")
  22461. },
  22462. {
  22463. name: "Macro++++",
  22464. height: math.unit(45, "km")
  22465. },
  22466. {
  22467. name: "Macro+++++",
  22468. height: math.unit(1220, "km")
  22469. },
  22470. ]
  22471. ))
  22472. characterMakers.push(() => makeCharacter(
  22473. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22474. {
  22475. front: {
  22476. height: math.unit(2.3, "m"),
  22477. weight: math.unit(304, "kg"),
  22478. name: "Front",
  22479. image: {
  22480. source: "./media/characters/icowom-lee/front.svg",
  22481. extra: 985 / 955,
  22482. bottom: 25.4 / 1012
  22483. }
  22484. },
  22485. fronttentacles: {
  22486. height: math.unit(2.3, "m"),
  22487. weight: math.unit(304, "kg"),
  22488. name: "Front-tentacles",
  22489. image: {
  22490. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22491. extra: 985 / 955,
  22492. bottom: 25.4 / 1012
  22493. }
  22494. },
  22495. back: {
  22496. height: math.unit(2.3, "m"),
  22497. weight: math.unit(304, "kg"),
  22498. name: "Back",
  22499. image: {
  22500. source: "./media/characters/icowom-lee/back.svg",
  22501. extra: 975 / 954,
  22502. bottom: 9.5 / 985
  22503. }
  22504. },
  22505. backtentacles: {
  22506. height: math.unit(2.3, "m"),
  22507. weight: math.unit(304, "kg"),
  22508. name: "Back-tentacles",
  22509. image: {
  22510. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22511. extra: 975 / 954,
  22512. bottom: 9.5 / 985
  22513. }
  22514. },
  22515. frontDressed: {
  22516. height: math.unit(2.3, "m"),
  22517. weight: math.unit(304, "kg"),
  22518. name: "Front (Dressed)",
  22519. image: {
  22520. source: "./media/characters/icowom-lee/front-dressed.svg",
  22521. extra: 3076 / 2933,
  22522. bottom: 51.4 / 3125.1889
  22523. }
  22524. },
  22525. rump: {
  22526. height: math.unit(0.776, "meters"),
  22527. name: "Rump",
  22528. image: {
  22529. source: "./media/characters/icowom-lee/rump.svg"
  22530. }
  22531. },
  22532. genitals: {
  22533. height: math.unit(0.78, "meters"),
  22534. name: "Genitals",
  22535. image: {
  22536. source: "./media/characters/icowom-lee/genitals.svg"
  22537. }
  22538. },
  22539. },
  22540. [
  22541. {
  22542. name: "Normal",
  22543. height: math.unit(2.3, "meters"),
  22544. default: true
  22545. },
  22546. {
  22547. name: "Macro",
  22548. height: math.unit(94, "meters"),
  22549. default: true
  22550. },
  22551. ]
  22552. ))
  22553. characterMakers.push(() => makeCharacter(
  22554. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22555. {
  22556. front: {
  22557. height: math.unit(22, "meters"),
  22558. weight: math.unit(21000, "kg"),
  22559. name: "Front",
  22560. image: {
  22561. source: "./media/characters/shock-diamond/front.svg",
  22562. extra: 2204 / 2053,
  22563. bottom: 65 / 2239.47
  22564. }
  22565. },
  22566. frontNude: {
  22567. height: math.unit(22, "meters"),
  22568. weight: math.unit(21000, "kg"),
  22569. name: "Front (Nude)",
  22570. image: {
  22571. source: "./media/characters/shock-diamond/front-nude.svg",
  22572. extra: 2514 / 2285,
  22573. bottom: 13 / 2527.56
  22574. }
  22575. },
  22576. },
  22577. [
  22578. {
  22579. name: "Normal",
  22580. height: math.unit(3, "meters")
  22581. },
  22582. {
  22583. name: "Macro",
  22584. height: math.unit(22, "meters"),
  22585. default: true
  22586. },
  22587. ]
  22588. ))
  22589. characterMakers.push(() => makeCharacter(
  22590. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22591. {
  22592. front: {
  22593. height: math.unit(5 + 4 / 12, "feet"),
  22594. weight: math.unit(120, "lb"),
  22595. name: "Front",
  22596. image: {
  22597. source: "./media/characters/rory/front.svg",
  22598. extra: 1318/1241,
  22599. bottom: 42/1360
  22600. }
  22601. },
  22602. back: {
  22603. height: math.unit(5 + 4 / 12, "feet"),
  22604. weight: math.unit(120, "lb"),
  22605. name: "Back",
  22606. image: {
  22607. source: "./media/characters/rory/back.svg",
  22608. extra: 1318/1241,
  22609. bottom: 42/1360
  22610. }
  22611. },
  22612. butt: {
  22613. height: math.unit(1.74, "feet"),
  22614. name: "Butt",
  22615. image: {
  22616. source: "./media/characters/rory/butt.svg"
  22617. }
  22618. },
  22619. dick: {
  22620. height: math.unit(1.02, "feet"),
  22621. name: "Dick",
  22622. image: {
  22623. source: "./media/characters/rory/dick.svg"
  22624. }
  22625. },
  22626. paws: {
  22627. height: math.unit(1, "feet"),
  22628. name: "Paws",
  22629. image: {
  22630. source: "./media/characters/rory/paws.svg"
  22631. }
  22632. },
  22633. frontAlt: {
  22634. height: math.unit(5 + 4 / 12, "feet"),
  22635. weight: math.unit(120, "lb"),
  22636. name: "Front (Alt)",
  22637. image: {
  22638. source: "./media/characters/rory/front-alt.svg",
  22639. extra: 589 / 556,
  22640. bottom: 45.7 / 635.76
  22641. }
  22642. },
  22643. frontAltNude: {
  22644. height: math.unit(5 + 4 / 12, "feet"),
  22645. weight: math.unit(120, "lb"),
  22646. name: "Front (Alt, Nude)",
  22647. image: {
  22648. source: "./media/characters/rory/front-alt-nude.svg",
  22649. extra: 589 / 556,
  22650. bottom: 45.7 / 635.76
  22651. }
  22652. },
  22653. side: {
  22654. height: math.unit(5 + 4 / 12, "feet"),
  22655. weight: math.unit(120, "lb"),
  22656. name: "Side",
  22657. image: {
  22658. source: "./media/characters/rory/side.svg",
  22659. extra: 597 / 564,
  22660. bottom: 55 / 653
  22661. }
  22662. },
  22663. backAlt: {
  22664. height: math.unit(5 + 4 / 12, "feet"),
  22665. weight: math.unit(120, "lb"),
  22666. name: "Back (Alt)",
  22667. image: {
  22668. source: "./media/characters/rory/back-alt.svg",
  22669. extra: 620 / 585,
  22670. bottom: 8.86 / 630.43
  22671. }
  22672. },
  22673. dickAlt: {
  22674. height: math.unit(0.86, "feet"),
  22675. name: "Dick (Alt)",
  22676. image: {
  22677. source: "./media/characters/rory/dick-alt.svg"
  22678. }
  22679. },
  22680. },
  22681. [
  22682. {
  22683. name: "Normal",
  22684. height: math.unit(5 + 4 / 12, "feet"),
  22685. default: true
  22686. },
  22687. {
  22688. name: "Macro",
  22689. height: math.unit(100, "feet")
  22690. },
  22691. {
  22692. name: "Macro+",
  22693. height: math.unit(140, "feet")
  22694. },
  22695. {
  22696. name: "Macro++",
  22697. height: math.unit(300, "feet")
  22698. },
  22699. ]
  22700. ))
  22701. characterMakers.push(() => makeCharacter(
  22702. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22703. {
  22704. front: {
  22705. height: math.unit(5 + 9 / 12, "feet"),
  22706. weight: math.unit(190, "lb"),
  22707. name: "Front",
  22708. image: {
  22709. source: "./media/characters/sprisk/front.svg",
  22710. extra: 1225 / 1180,
  22711. bottom: 42.7 / 1266.4
  22712. }
  22713. },
  22714. frontNsfw: {
  22715. height: math.unit(5 + 9 / 12, "feet"),
  22716. weight: math.unit(190, "lb"),
  22717. name: "Front (NSFW)",
  22718. image: {
  22719. source: "./media/characters/sprisk/front-nsfw.svg",
  22720. extra: 1225 / 1180,
  22721. bottom: 42.7 / 1266.4
  22722. }
  22723. },
  22724. back: {
  22725. height: math.unit(5 + 9 / 12, "feet"),
  22726. weight: math.unit(190, "lb"),
  22727. name: "Back",
  22728. image: {
  22729. source: "./media/characters/sprisk/back.svg",
  22730. extra: 1247 / 1200,
  22731. bottom: 5.6 / 1253.04
  22732. }
  22733. },
  22734. },
  22735. [
  22736. {
  22737. name: "Tiny",
  22738. height: math.unit(2, "inches")
  22739. },
  22740. {
  22741. name: "Normal",
  22742. height: math.unit(5 + 9 / 12, "feet"),
  22743. default: true
  22744. },
  22745. {
  22746. name: "Mini Macro",
  22747. height: math.unit(18, "feet")
  22748. },
  22749. {
  22750. name: "Macro",
  22751. height: math.unit(100, "feet")
  22752. },
  22753. {
  22754. name: "MACRO",
  22755. height: math.unit(50, "miles")
  22756. },
  22757. {
  22758. name: "M A C R O",
  22759. height: math.unit(300, "miles")
  22760. },
  22761. ]
  22762. ))
  22763. characterMakers.push(() => makeCharacter(
  22764. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22765. {
  22766. side: {
  22767. height: math.unit(15.6, "meters"),
  22768. weight: math.unit(700000, "kg"),
  22769. name: "Side",
  22770. image: {
  22771. source: "./media/characters/bunsen/side.svg",
  22772. extra: 1644 / 358
  22773. }
  22774. },
  22775. foot: {
  22776. height: math.unit(1.611 * 1644 / 358, "meter"),
  22777. name: "Foot",
  22778. image: {
  22779. source: "./media/characters/bunsen/foot.svg"
  22780. }
  22781. },
  22782. },
  22783. [
  22784. {
  22785. name: "Small",
  22786. height: math.unit(10, "feet")
  22787. },
  22788. {
  22789. name: "Normal",
  22790. height: math.unit(15.6, "meters"),
  22791. default: true
  22792. },
  22793. ]
  22794. ))
  22795. characterMakers.push(() => makeCharacter(
  22796. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22797. {
  22798. front: {
  22799. height: math.unit(4 + 11 / 12, "feet"),
  22800. weight: math.unit(140, "lb"),
  22801. name: "Front",
  22802. image: {
  22803. source: "./media/characters/sesh/front.svg",
  22804. extra: 3420 / 3231,
  22805. bottom: 72 / 3949.5
  22806. }
  22807. },
  22808. },
  22809. [
  22810. {
  22811. name: "Normal",
  22812. height: math.unit(4 + 11 / 12, "feet")
  22813. },
  22814. {
  22815. name: "Grown",
  22816. height: math.unit(15, "feet"),
  22817. default: true
  22818. },
  22819. {
  22820. name: "Macro",
  22821. height: math.unit(1500, "feet")
  22822. },
  22823. {
  22824. name: "Megamacro",
  22825. height: math.unit(30, "miles")
  22826. },
  22827. {
  22828. name: "Continental",
  22829. height: math.unit(3000, "miles")
  22830. },
  22831. {
  22832. name: "Gravity Mass",
  22833. height: math.unit(300000, "miles")
  22834. },
  22835. {
  22836. name: "Planet Buster",
  22837. height: math.unit(30000000, "miles")
  22838. },
  22839. {
  22840. name: "Big",
  22841. height: math.unit(3000000000, "miles")
  22842. },
  22843. ]
  22844. ))
  22845. characterMakers.push(() => makeCharacter(
  22846. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22847. {
  22848. front: {
  22849. height: math.unit(9, "feet"),
  22850. weight: math.unit(350, "lb"),
  22851. name: "Front",
  22852. image: {
  22853. source: "./media/characters/pepper/front.svg",
  22854. extra: 1448 / 1312,
  22855. bottom: 9.4 / 1457.88
  22856. }
  22857. },
  22858. back: {
  22859. height: math.unit(9, "feet"),
  22860. weight: math.unit(350, "lb"),
  22861. name: "Back",
  22862. image: {
  22863. source: "./media/characters/pepper/back.svg",
  22864. extra: 1423 / 1300,
  22865. bottom: 4.6 / 1429
  22866. }
  22867. },
  22868. maw: {
  22869. height: math.unit(0.932, "feet"),
  22870. name: "Maw",
  22871. image: {
  22872. source: "./media/characters/pepper/maw.svg"
  22873. }
  22874. },
  22875. },
  22876. [
  22877. {
  22878. name: "Normal",
  22879. height: math.unit(9, "feet"),
  22880. default: true
  22881. },
  22882. ]
  22883. ))
  22884. characterMakers.push(() => makeCharacter(
  22885. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22886. {
  22887. front: {
  22888. height: math.unit(6, "feet"),
  22889. weight: math.unit(150, "lb"),
  22890. name: "Front",
  22891. image: {
  22892. source: "./media/characters/maelstrom/front.svg",
  22893. extra: 2100 / 1883,
  22894. bottom: 94 / 2196.7
  22895. }
  22896. },
  22897. },
  22898. [
  22899. {
  22900. name: "Less Kaiju",
  22901. height: math.unit(200, "feet")
  22902. },
  22903. {
  22904. name: "Kaiju",
  22905. height: math.unit(400, "feet"),
  22906. default: true
  22907. },
  22908. {
  22909. name: "Kaiju-er",
  22910. height: math.unit(600, "feet")
  22911. },
  22912. ]
  22913. ))
  22914. characterMakers.push(() => makeCharacter(
  22915. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22916. {
  22917. front: {
  22918. height: math.unit(6 + 5 / 12, "feet"),
  22919. weight: math.unit(180, "lb"),
  22920. name: "Front",
  22921. image: {
  22922. source: "./media/characters/lexir/front.svg",
  22923. extra: 180 / 172,
  22924. bottom: 12 / 192
  22925. }
  22926. },
  22927. back: {
  22928. height: math.unit(6 + 5 / 12, "feet"),
  22929. weight: math.unit(180, "lb"),
  22930. name: "Back",
  22931. image: {
  22932. source: "./media/characters/lexir/back.svg",
  22933. extra: 183.84 / 175.5,
  22934. bottom: 3.1 / 187
  22935. }
  22936. },
  22937. },
  22938. [
  22939. {
  22940. name: "Very Smal",
  22941. height: math.unit(1, "nm")
  22942. },
  22943. {
  22944. name: "Normal",
  22945. height: math.unit(6 + 5 / 12, "feet"),
  22946. default: true
  22947. },
  22948. {
  22949. name: "Macro",
  22950. height: math.unit(1, "mile")
  22951. },
  22952. {
  22953. name: "Megamacro",
  22954. height: math.unit(50, "miles")
  22955. },
  22956. ]
  22957. ))
  22958. characterMakers.push(() => makeCharacter(
  22959. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22960. {
  22961. front: {
  22962. height: math.unit(1.5, "meters"),
  22963. weight: math.unit(100, "lb"),
  22964. name: "Front",
  22965. image: {
  22966. source: "./media/characters/maksio/front.svg",
  22967. extra: 1549 / 1531,
  22968. bottom: 123.7 / 1674.5429
  22969. }
  22970. },
  22971. back: {
  22972. height: math.unit(1.5, "meters"),
  22973. weight: math.unit(100, "lb"),
  22974. name: "Back",
  22975. image: {
  22976. source: "./media/characters/maksio/back.svg",
  22977. extra: 1541 / 1509,
  22978. bottom: 97 / 1639
  22979. }
  22980. },
  22981. hand: {
  22982. height: math.unit(0.621, "feet"),
  22983. name: "Hand",
  22984. image: {
  22985. source: "./media/characters/maksio/hand.svg"
  22986. }
  22987. },
  22988. foot: {
  22989. height: math.unit(1.611, "feet"),
  22990. name: "Foot",
  22991. image: {
  22992. source: "./media/characters/maksio/foot.svg"
  22993. }
  22994. },
  22995. },
  22996. [
  22997. {
  22998. name: "Shrunken",
  22999. height: math.unit(10, "cm")
  23000. },
  23001. {
  23002. name: "Normal",
  23003. height: math.unit(150, "cm"),
  23004. default: true
  23005. },
  23006. ]
  23007. ))
  23008. characterMakers.push(() => makeCharacter(
  23009. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23010. {
  23011. front: {
  23012. height: math.unit(100, "feet"),
  23013. name: "Front",
  23014. image: {
  23015. source: "./media/characters/erza-bear/front.svg",
  23016. extra: 2449 / 2390,
  23017. bottom: 46 / 2494
  23018. }
  23019. },
  23020. back: {
  23021. height: math.unit(100, "feet"),
  23022. name: "Back",
  23023. image: {
  23024. source: "./media/characters/erza-bear/back.svg",
  23025. extra: 2489 / 2430,
  23026. bottom: 85.4 / 2480
  23027. }
  23028. },
  23029. tail: {
  23030. height: math.unit(42, "feet"),
  23031. name: "Tail",
  23032. image: {
  23033. source: "./media/characters/erza-bear/tail.svg"
  23034. }
  23035. },
  23036. tongue: {
  23037. height: math.unit(8, "feet"),
  23038. name: "Tongue",
  23039. image: {
  23040. source: "./media/characters/erza-bear/tongue.svg"
  23041. }
  23042. },
  23043. dick: {
  23044. height: math.unit(10.5, "feet"),
  23045. name: "Dick",
  23046. image: {
  23047. source: "./media/characters/erza-bear/dick.svg"
  23048. }
  23049. },
  23050. dickVertical: {
  23051. height: math.unit(16.9, "feet"),
  23052. name: "Dick (Vertical)",
  23053. image: {
  23054. source: "./media/characters/erza-bear/dick-vertical.svg"
  23055. }
  23056. },
  23057. },
  23058. [
  23059. {
  23060. name: "Macro",
  23061. height: math.unit(100, "feet"),
  23062. default: true
  23063. },
  23064. ]
  23065. ))
  23066. characterMakers.push(() => makeCharacter(
  23067. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23068. {
  23069. front: {
  23070. height: math.unit(172, "cm"),
  23071. weight: math.unit(73, "kg"),
  23072. name: "Front",
  23073. image: {
  23074. source: "./media/characters/violet-flor/front.svg",
  23075. extra: 1530 / 1442,
  23076. bottom: 61.9 / 1588.8
  23077. }
  23078. },
  23079. back: {
  23080. height: math.unit(180, "cm"),
  23081. weight: math.unit(73, "kg"),
  23082. name: "Back",
  23083. image: {
  23084. source: "./media/characters/violet-flor/back.svg",
  23085. extra: 1692 / 1630,
  23086. bottom: 20 / 1712
  23087. }
  23088. },
  23089. },
  23090. [
  23091. {
  23092. name: "Normal",
  23093. height: math.unit(172, "cm"),
  23094. default: true
  23095. },
  23096. ]
  23097. ))
  23098. characterMakers.push(() => makeCharacter(
  23099. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23100. {
  23101. front: {
  23102. height: math.unit(6, "feet"),
  23103. weight: math.unit(220, "lb"),
  23104. name: "Front",
  23105. image: {
  23106. source: "./media/characters/lynn-rhea/front.svg",
  23107. extra: 310 / 273
  23108. }
  23109. },
  23110. back: {
  23111. height: math.unit(6, "feet"),
  23112. weight: math.unit(220, "lb"),
  23113. name: "Back",
  23114. image: {
  23115. source: "./media/characters/lynn-rhea/back.svg",
  23116. extra: 310 / 273
  23117. }
  23118. },
  23119. dicks: {
  23120. height: math.unit(0.9, "feet"),
  23121. name: "Dicks",
  23122. image: {
  23123. source: "./media/characters/lynn-rhea/dicks.svg"
  23124. }
  23125. },
  23126. slit: {
  23127. height: math.unit(0.4, "feet"),
  23128. name: "Slit",
  23129. image: {
  23130. source: "./media/characters/lynn-rhea/slit.svg"
  23131. }
  23132. },
  23133. },
  23134. [
  23135. {
  23136. name: "Micro",
  23137. height: math.unit(1, "inch")
  23138. },
  23139. {
  23140. name: "Macro",
  23141. height: math.unit(60, "feet"),
  23142. default: true
  23143. },
  23144. {
  23145. name: "Megamacro",
  23146. height: math.unit(2, "miles")
  23147. },
  23148. {
  23149. name: "Gigamacro",
  23150. height: math.unit(3, "earths")
  23151. },
  23152. {
  23153. name: "Galactic",
  23154. height: math.unit(0.8, "galaxies")
  23155. },
  23156. ]
  23157. ))
  23158. characterMakers.push(() => makeCharacter(
  23159. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23160. {
  23161. front: {
  23162. height: math.unit(1600, "feet"),
  23163. weight: math.unit(85758785169, "kg"),
  23164. name: "Front",
  23165. image: {
  23166. source: "./media/characters/valathos/front.svg",
  23167. extra: 1451 / 1339
  23168. }
  23169. },
  23170. },
  23171. [
  23172. {
  23173. name: "Macro",
  23174. height: math.unit(1600, "feet"),
  23175. default: true
  23176. },
  23177. ]
  23178. ))
  23179. characterMakers.push(() => makeCharacter(
  23180. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23181. {
  23182. front: {
  23183. height: math.unit(7 + 5 / 12, "feet"),
  23184. weight: math.unit(300, "lb"),
  23185. name: "Front",
  23186. image: {
  23187. source: "./media/characters/azula/front.svg",
  23188. extra: 3208 / 2880,
  23189. bottom: 80.2 / 3277
  23190. }
  23191. },
  23192. back: {
  23193. height: math.unit(7 + 5 / 12, "feet"),
  23194. weight: math.unit(300, "lb"),
  23195. name: "Back",
  23196. image: {
  23197. source: "./media/characters/azula/back.svg",
  23198. extra: 3169 / 2822,
  23199. bottom: 150.6 / 3321
  23200. }
  23201. },
  23202. },
  23203. [
  23204. {
  23205. name: "Normal",
  23206. height: math.unit(7 + 5 / 12, "feet"),
  23207. default: true
  23208. },
  23209. {
  23210. name: "Big",
  23211. height: math.unit(20, "feet")
  23212. },
  23213. ]
  23214. ))
  23215. characterMakers.push(() => makeCharacter(
  23216. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23217. {
  23218. front: {
  23219. height: math.unit(5 + 1 / 12, "feet"),
  23220. weight: math.unit(110, "lb"),
  23221. name: "Front",
  23222. image: {
  23223. source: "./media/characters/rupert/front.svg",
  23224. extra: 1549 / 1495,
  23225. bottom: 54.2 / 1604.4
  23226. }
  23227. },
  23228. },
  23229. [
  23230. {
  23231. name: "Normal",
  23232. height: math.unit(5 + 1 / 12, "feet"),
  23233. default: true
  23234. },
  23235. ]
  23236. ))
  23237. characterMakers.push(() => makeCharacter(
  23238. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23239. {
  23240. front: {
  23241. height: math.unit(8 + 4 / 12, "feet"),
  23242. weight: math.unit(350, "lb"),
  23243. name: "Front",
  23244. image: {
  23245. source: "./media/characters/sheera-castellar/front.svg",
  23246. extra: 1957 / 1894,
  23247. bottom: 26.97 / 1975.017
  23248. }
  23249. },
  23250. side: {
  23251. height: math.unit(8 + 4 / 12, "feet"),
  23252. weight: math.unit(350, "lb"),
  23253. name: "Side",
  23254. image: {
  23255. source: "./media/characters/sheera-castellar/side.svg",
  23256. extra: 1957 / 1894
  23257. }
  23258. },
  23259. back: {
  23260. height: math.unit(8 + 4 / 12, "feet"),
  23261. weight: math.unit(350, "lb"),
  23262. name: "Back",
  23263. image: {
  23264. source: "./media/characters/sheera-castellar/back.svg",
  23265. extra: 1957 / 1894
  23266. }
  23267. },
  23268. angled: {
  23269. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23270. weight: math.unit(350, "lb"),
  23271. name: "Angled",
  23272. image: {
  23273. source: "./media/characters/sheera-castellar/angled.svg",
  23274. extra: 1807 / 1707,
  23275. bottom: 68 / 1875
  23276. }
  23277. },
  23278. genitals: {
  23279. height: math.unit(2.2, "feet"),
  23280. name: "Genitals",
  23281. image: {
  23282. source: "./media/characters/sheera-castellar/genitals.svg"
  23283. }
  23284. },
  23285. taur: {
  23286. height: math.unit(10 + 6/12, "feet"),
  23287. name: "Taur",
  23288. image: {
  23289. source: "./media/characters/sheera-castellar/taur.svg",
  23290. extra: 2017/1909,
  23291. bottom: 185/2202
  23292. }
  23293. },
  23294. },
  23295. [
  23296. {
  23297. name: "Normal",
  23298. height: math.unit(8 + 4 / 12, "feet")
  23299. },
  23300. {
  23301. name: "Macro",
  23302. height: math.unit(150, "feet"),
  23303. default: true
  23304. },
  23305. {
  23306. name: "Macro+",
  23307. height: math.unit(800, "feet")
  23308. },
  23309. ]
  23310. ))
  23311. characterMakers.push(() => makeCharacter(
  23312. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23313. {
  23314. front: {
  23315. height: math.unit(6, "feet"),
  23316. weight: math.unit(150, "lb"),
  23317. name: "Front",
  23318. image: {
  23319. source: "./media/characters/jaipur/front.svg",
  23320. extra: 3860 / 3731,
  23321. bottom: 287 / 4140
  23322. }
  23323. },
  23324. back: {
  23325. height: math.unit(6, "feet"),
  23326. weight: math.unit(150, "lb"),
  23327. name: "Back",
  23328. image: {
  23329. source: "./media/characters/jaipur/back.svg",
  23330. extra: 4060 / 3930,
  23331. bottom: 151 / 4200
  23332. }
  23333. },
  23334. },
  23335. [
  23336. {
  23337. name: "Normal",
  23338. height: math.unit(1.85, "meters"),
  23339. default: true
  23340. },
  23341. {
  23342. name: "Macro",
  23343. height: math.unit(150, "meters")
  23344. },
  23345. {
  23346. name: "Macro+",
  23347. height: math.unit(0.5, "miles")
  23348. },
  23349. {
  23350. name: "Macro++",
  23351. height: math.unit(2.5, "miles")
  23352. },
  23353. {
  23354. name: "Macro+++",
  23355. height: math.unit(12, "miles")
  23356. },
  23357. {
  23358. name: "Macro++++",
  23359. height: math.unit(120, "miles")
  23360. },
  23361. {
  23362. name: "Macro+++++",
  23363. height: math.unit(1200, "miles")
  23364. },
  23365. ]
  23366. ))
  23367. characterMakers.push(() => makeCharacter(
  23368. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23369. {
  23370. front: {
  23371. height: math.unit(6, "feet"),
  23372. weight: math.unit(150, "lb"),
  23373. name: "Front",
  23374. image: {
  23375. source: "./media/characters/sheila-wolf/front.svg",
  23376. extra: 1931 / 1808,
  23377. bottom: 29.5 / 1960
  23378. }
  23379. },
  23380. dick: {
  23381. height: math.unit(1.464, "feet"),
  23382. name: "Dick",
  23383. image: {
  23384. source: "./media/characters/sheila-wolf/dick.svg"
  23385. }
  23386. },
  23387. muzzle: {
  23388. height: math.unit(0.513, "feet"),
  23389. name: "Muzzle",
  23390. image: {
  23391. source: "./media/characters/sheila-wolf/muzzle.svg"
  23392. }
  23393. },
  23394. },
  23395. [
  23396. {
  23397. name: "Macro",
  23398. height: math.unit(70, "feet"),
  23399. default: true
  23400. },
  23401. ]
  23402. ))
  23403. characterMakers.push(() => makeCharacter(
  23404. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23405. {
  23406. front: {
  23407. height: math.unit(32, "meters"),
  23408. weight: math.unit(300000, "kg"),
  23409. name: "Front",
  23410. image: {
  23411. source: "./media/characters/almor/front.svg",
  23412. extra: 1408 / 1322,
  23413. bottom: 94.6 / 1506.5
  23414. }
  23415. },
  23416. },
  23417. [
  23418. {
  23419. name: "Macro",
  23420. height: math.unit(32, "meters"),
  23421. default: true
  23422. },
  23423. ]
  23424. ))
  23425. characterMakers.push(() => makeCharacter(
  23426. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23427. {
  23428. front: {
  23429. height: math.unit(7, "feet"),
  23430. weight: math.unit(200, "lb"),
  23431. name: "Front",
  23432. image: {
  23433. source: "./media/characters/silver/front.svg",
  23434. extra: 472.1 / 450.5,
  23435. bottom: 26.5 / 499.424
  23436. }
  23437. },
  23438. },
  23439. [
  23440. {
  23441. name: "Normal",
  23442. height: math.unit(7, "feet"),
  23443. default: true
  23444. },
  23445. {
  23446. name: "Macro",
  23447. height: math.unit(800, "feet")
  23448. },
  23449. {
  23450. name: "Megamacro",
  23451. height: math.unit(250, "miles")
  23452. },
  23453. ]
  23454. ))
  23455. characterMakers.push(() => makeCharacter(
  23456. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23457. {
  23458. front: {
  23459. height: math.unit(6, "feet"),
  23460. weight: math.unit(150, "lb"),
  23461. name: "Front",
  23462. image: {
  23463. source: "./media/characters/pliskin/front.svg",
  23464. extra: 1469 / 1359,
  23465. bottom: 70 / 1540
  23466. }
  23467. },
  23468. },
  23469. [
  23470. {
  23471. name: "Micro",
  23472. height: math.unit(3, "inches")
  23473. },
  23474. {
  23475. name: "Normal",
  23476. height: math.unit(5 + 11 / 12, "feet"),
  23477. default: true
  23478. },
  23479. {
  23480. name: "Macro",
  23481. height: math.unit(120, "feet")
  23482. },
  23483. ]
  23484. ))
  23485. characterMakers.push(() => makeCharacter(
  23486. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23487. {
  23488. front: {
  23489. height: math.unit(6, "feet"),
  23490. weight: math.unit(150, "lb"),
  23491. name: "Front",
  23492. image: {
  23493. source: "./media/characters/sammy/front.svg",
  23494. extra: 1193 / 1089,
  23495. bottom: 30.5 / 1226
  23496. }
  23497. },
  23498. },
  23499. [
  23500. {
  23501. name: "Macro",
  23502. height: math.unit(1700, "feet"),
  23503. default: true
  23504. },
  23505. {
  23506. name: "Examacro",
  23507. height: math.unit(2.5e9, "lightyears")
  23508. },
  23509. ]
  23510. ))
  23511. characterMakers.push(() => makeCharacter(
  23512. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23513. {
  23514. front: {
  23515. height: math.unit(21, "meters"),
  23516. weight: math.unit(12, "tonnes"),
  23517. name: "Front",
  23518. image: {
  23519. source: "./media/characters/kuru/front.svg",
  23520. extra: 4301 / 3785,
  23521. bottom: 371.3 / 4691
  23522. }
  23523. },
  23524. },
  23525. [
  23526. {
  23527. name: "Macro",
  23528. height: math.unit(21, "meters"),
  23529. default: true
  23530. },
  23531. ]
  23532. ))
  23533. characterMakers.push(() => makeCharacter(
  23534. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23535. {
  23536. front: {
  23537. height: math.unit(23, "meters"),
  23538. weight: math.unit(12.2, "tonnes"),
  23539. name: "Front",
  23540. image: {
  23541. source: "./media/characters/rakka/front.svg",
  23542. extra: 4670 / 4169,
  23543. bottom: 301 / 4968.7
  23544. }
  23545. },
  23546. },
  23547. [
  23548. {
  23549. name: "Macro",
  23550. height: math.unit(23, "meters"),
  23551. default: true
  23552. },
  23553. ]
  23554. ))
  23555. characterMakers.push(() => makeCharacter(
  23556. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23557. {
  23558. front: {
  23559. height: math.unit(6, "feet"),
  23560. weight: math.unit(150, "lb"),
  23561. name: "Front",
  23562. image: {
  23563. source: "./media/characters/rhys-feline/front.svg",
  23564. extra: 2488 / 2308,
  23565. bottom: 35.67 / 2519.19
  23566. }
  23567. },
  23568. },
  23569. [
  23570. {
  23571. name: "Really Small",
  23572. height: math.unit(1, "nm")
  23573. },
  23574. {
  23575. name: "Micro",
  23576. height: math.unit(4, "inches")
  23577. },
  23578. {
  23579. name: "Normal",
  23580. height: math.unit(4 + 10 / 12, "feet"),
  23581. default: true
  23582. },
  23583. {
  23584. name: "Macro",
  23585. height: math.unit(100, "feet")
  23586. },
  23587. {
  23588. name: "Megamacto",
  23589. height: math.unit(50, "miles")
  23590. },
  23591. ]
  23592. ))
  23593. characterMakers.push(() => makeCharacter(
  23594. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23595. {
  23596. side: {
  23597. height: math.unit(30, "feet"),
  23598. weight: math.unit(35000, "kg"),
  23599. name: "Side",
  23600. image: {
  23601. source: "./media/characters/alydar/side.svg",
  23602. extra: 234 / 222,
  23603. bottom: 6.5 / 241
  23604. }
  23605. },
  23606. front: {
  23607. height: math.unit(30, "feet"),
  23608. weight: math.unit(35000, "kg"),
  23609. name: "Front",
  23610. image: {
  23611. source: "./media/characters/alydar/front.svg",
  23612. extra: 223.37 / 210.2,
  23613. bottom: 22.3 / 246.76
  23614. }
  23615. },
  23616. top: {
  23617. height: math.unit(64.54, "feet"),
  23618. weight: math.unit(35000, "kg"),
  23619. name: "Top",
  23620. image: {
  23621. source: "./media/characters/alydar/top.svg"
  23622. }
  23623. },
  23624. anthro: {
  23625. height: math.unit(30, "feet"),
  23626. weight: math.unit(9000, "kg"),
  23627. name: "Anthro",
  23628. image: {
  23629. source: "./media/characters/alydar/anthro.svg",
  23630. extra: 432 / 421,
  23631. bottom: 7.18 / 440
  23632. }
  23633. },
  23634. maw: {
  23635. height: math.unit(11.693, "feet"),
  23636. name: "Maw",
  23637. image: {
  23638. source: "./media/characters/alydar/maw.svg"
  23639. }
  23640. },
  23641. head: {
  23642. height: math.unit(11.693, "feet"),
  23643. name: "Head",
  23644. image: {
  23645. source: "./media/characters/alydar/head.svg"
  23646. }
  23647. },
  23648. headAlt: {
  23649. height: math.unit(12.861, "feet"),
  23650. name: "Head (Alt)",
  23651. image: {
  23652. source: "./media/characters/alydar/head-alt.svg"
  23653. }
  23654. },
  23655. wing: {
  23656. height: math.unit(20.712, "feet"),
  23657. name: "Wing",
  23658. image: {
  23659. source: "./media/characters/alydar/wing.svg"
  23660. }
  23661. },
  23662. wingFeather: {
  23663. height: math.unit(9.662, "feet"),
  23664. name: "Wing Feather",
  23665. image: {
  23666. source: "./media/characters/alydar/wing-feather.svg"
  23667. }
  23668. },
  23669. countourFeather: {
  23670. height: math.unit(4.154, "feet"),
  23671. name: "Contour Feather",
  23672. image: {
  23673. source: "./media/characters/alydar/contour-feather.svg"
  23674. }
  23675. },
  23676. },
  23677. [
  23678. {
  23679. name: "Diplomatic",
  23680. height: math.unit(13, "feet"),
  23681. default: true
  23682. },
  23683. {
  23684. name: "Small",
  23685. height: math.unit(30, "feet")
  23686. },
  23687. {
  23688. name: "Normal",
  23689. height: math.unit(95, "feet"),
  23690. default: true
  23691. },
  23692. {
  23693. name: "Large",
  23694. height: math.unit(285, "feet")
  23695. },
  23696. {
  23697. name: "Incomprehensible",
  23698. height: math.unit(450, "megameters")
  23699. },
  23700. ]
  23701. ))
  23702. characterMakers.push(() => makeCharacter(
  23703. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23704. {
  23705. side: {
  23706. height: math.unit(11, "feet"),
  23707. weight: math.unit(1750, "kg"),
  23708. name: "Side",
  23709. image: {
  23710. source: "./media/characters/selicia/side.svg",
  23711. extra: 440 / 396,
  23712. bottom: 24.8 / 465.979
  23713. }
  23714. },
  23715. maw: {
  23716. height: math.unit(4.665, "feet"),
  23717. name: "Maw",
  23718. image: {
  23719. source: "./media/characters/selicia/maw.svg"
  23720. }
  23721. },
  23722. },
  23723. [
  23724. {
  23725. name: "Normal",
  23726. height: math.unit(11, "feet"),
  23727. default: true
  23728. },
  23729. ]
  23730. ))
  23731. characterMakers.push(() => makeCharacter(
  23732. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  23733. {
  23734. side: {
  23735. height: math.unit(2 + 6 / 12, "feet"),
  23736. weight: math.unit(30, "lb"),
  23737. name: "Side",
  23738. image: {
  23739. source: "./media/characters/layla/side.svg",
  23740. extra: 244 / 188,
  23741. bottom: 18.2 / 262.1
  23742. }
  23743. },
  23744. back: {
  23745. height: math.unit(2 + 6 / 12, "feet"),
  23746. weight: math.unit(30, "lb"),
  23747. name: "Back",
  23748. image: {
  23749. source: "./media/characters/layla/back.svg",
  23750. extra: 308 / 241.5,
  23751. bottom: 8.9 / 316.8
  23752. }
  23753. },
  23754. cumming: {
  23755. height: math.unit(2 + 6 / 12, "feet"),
  23756. weight: math.unit(30, "lb"),
  23757. name: "Cumming",
  23758. image: {
  23759. source: "./media/characters/layla/cumming.svg",
  23760. extra: 342 / 279,
  23761. bottom: 595 / 938
  23762. }
  23763. },
  23764. dickFlaccid: {
  23765. height: math.unit(2.595, "feet"),
  23766. name: "Flaccid Genitals",
  23767. image: {
  23768. source: "./media/characters/layla/dick-flaccid.svg"
  23769. }
  23770. },
  23771. dickErect: {
  23772. height: math.unit(2.359, "feet"),
  23773. name: "Erect Genitals",
  23774. image: {
  23775. source: "./media/characters/layla/dick-erect.svg"
  23776. }
  23777. },
  23778. dragon: {
  23779. height: math.unit(40, "feet"),
  23780. name: "Dragon",
  23781. image: {
  23782. source: "./media/characters/layla/dragon.svg",
  23783. extra: 610/535,
  23784. bottom: 367/977
  23785. }
  23786. },
  23787. taur: {
  23788. height: math.unit(30, "feet"),
  23789. name: "Taur",
  23790. image: {
  23791. source: "./media/characters/layla/taur.svg",
  23792. extra: 1268/1199,
  23793. bottom: 112/1380
  23794. }
  23795. },
  23796. },
  23797. [
  23798. {
  23799. name: "Micro",
  23800. height: math.unit(1, "inch")
  23801. },
  23802. {
  23803. name: "Small",
  23804. height: math.unit(1, "foot")
  23805. },
  23806. {
  23807. name: "Normal",
  23808. height: math.unit(2 + 6 / 12, "feet"),
  23809. default: true
  23810. },
  23811. {
  23812. name: "Macro",
  23813. height: math.unit(200, "feet")
  23814. },
  23815. {
  23816. name: "Megamacro",
  23817. height: math.unit(1000, "miles")
  23818. },
  23819. {
  23820. name: "Planetary",
  23821. height: math.unit(8000, "miles")
  23822. },
  23823. {
  23824. name: "True Layla",
  23825. height: math.unit(200000 * 7, "multiverses")
  23826. },
  23827. ]
  23828. ))
  23829. characterMakers.push(() => makeCharacter(
  23830. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23831. {
  23832. back: {
  23833. height: math.unit(10.5, "feet"),
  23834. weight: math.unit(800, "lb"),
  23835. name: "Back",
  23836. image: {
  23837. source: "./media/characters/knox/back.svg",
  23838. extra: 1486 / 1089,
  23839. bottom: 107 / 1601.4
  23840. }
  23841. },
  23842. side: {
  23843. height: math.unit(10.5, "feet"),
  23844. weight: math.unit(800, "lb"),
  23845. name: "Side",
  23846. image: {
  23847. source: "./media/characters/knox/side.svg",
  23848. extra: 244 / 218,
  23849. bottom: 14 / 260
  23850. }
  23851. },
  23852. },
  23853. [
  23854. {
  23855. name: "Compact",
  23856. height: math.unit(10.5, "feet"),
  23857. default: true
  23858. },
  23859. {
  23860. name: "Dynamax",
  23861. height: math.unit(210, "feet")
  23862. },
  23863. {
  23864. name: "Full Macro",
  23865. height: math.unit(850, "feet")
  23866. },
  23867. ]
  23868. ))
  23869. characterMakers.push(() => makeCharacter(
  23870. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23871. {
  23872. front: {
  23873. height: math.unit(28, "feet"),
  23874. weight: math.unit(10500, "lb"),
  23875. name: "Front",
  23876. image: {
  23877. source: "./media/characters/kayda/front.svg",
  23878. extra: 1536 / 1428,
  23879. bottom: 68.7 / 1603
  23880. }
  23881. },
  23882. back: {
  23883. height: math.unit(28, "feet"),
  23884. weight: math.unit(10500, "lb"),
  23885. name: "Back",
  23886. image: {
  23887. source: "./media/characters/kayda/back.svg",
  23888. extra: 1557 / 1464,
  23889. bottom: 39.5 / 1597.49
  23890. }
  23891. },
  23892. dick: {
  23893. height: math.unit(3.858, "feet"),
  23894. name: "Dick",
  23895. image: {
  23896. source: "./media/characters/kayda/dick.svg"
  23897. }
  23898. },
  23899. },
  23900. [
  23901. {
  23902. name: "Macro",
  23903. height: math.unit(28, "feet"),
  23904. default: true
  23905. },
  23906. ]
  23907. ))
  23908. characterMakers.push(() => makeCharacter(
  23909. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23910. {
  23911. front: {
  23912. height: math.unit(10 + 11 / 12, "feet"),
  23913. weight: math.unit(1400, "lb"),
  23914. name: "Front",
  23915. image: {
  23916. source: "./media/characters/brian/front.svg",
  23917. extra: 737 / 692,
  23918. bottom: 55.4 / 785
  23919. }
  23920. },
  23921. },
  23922. [
  23923. {
  23924. name: "Normal",
  23925. height: math.unit(10 + 11 / 12, "feet"),
  23926. default: true
  23927. },
  23928. ]
  23929. ))
  23930. characterMakers.push(() => makeCharacter(
  23931. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23932. {
  23933. front: {
  23934. height: math.unit(5 + 8 / 12, "feet"),
  23935. weight: math.unit(140, "lb"),
  23936. name: "Front",
  23937. image: {
  23938. source: "./media/characters/khemri/front.svg",
  23939. extra: 4780 / 4059,
  23940. bottom: 80.1 / 4859.25
  23941. }
  23942. },
  23943. },
  23944. [
  23945. {
  23946. name: "Micro",
  23947. height: math.unit(6, "inches")
  23948. },
  23949. {
  23950. name: "Normal",
  23951. height: math.unit(5 + 8 / 12, "feet"),
  23952. default: true
  23953. },
  23954. ]
  23955. ))
  23956. characterMakers.push(() => makeCharacter(
  23957. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23958. {
  23959. front: {
  23960. height: math.unit(13, "feet"),
  23961. weight: math.unit(1700, "lb"),
  23962. name: "Front",
  23963. image: {
  23964. source: "./media/characters/felix-braveheart/front.svg",
  23965. extra: 1222 / 1157,
  23966. bottom: 53.2 / 1280
  23967. }
  23968. },
  23969. back: {
  23970. height: math.unit(13, "feet"),
  23971. weight: math.unit(1700, "lb"),
  23972. name: "Back",
  23973. image: {
  23974. source: "./media/characters/felix-braveheart/back.svg",
  23975. extra: 1277 / 1203,
  23976. bottom: 50.2 / 1327
  23977. }
  23978. },
  23979. feral: {
  23980. height: math.unit(6, "feet"),
  23981. weight: math.unit(400, "lb"),
  23982. name: "Feral",
  23983. image: {
  23984. source: "./media/characters/felix-braveheart/feral.svg",
  23985. extra: 682 / 625,
  23986. bottom: 6.9 / 688
  23987. }
  23988. },
  23989. },
  23990. [
  23991. {
  23992. name: "Normal",
  23993. height: math.unit(13, "feet"),
  23994. default: true
  23995. },
  23996. ]
  23997. ))
  23998. characterMakers.push(() => makeCharacter(
  23999. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24000. {
  24001. side: {
  24002. height: math.unit(5 + 11 / 12, "feet"),
  24003. weight: math.unit(1400, "lb"),
  24004. name: "Side",
  24005. image: {
  24006. source: "./media/characters/shadow-blade/side.svg",
  24007. extra: 1726 / 1267,
  24008. bottom: 58.4 / 1785
  24009. }
  24010. },
  24011. },
  24012. [
  24013. {
  24014. name: "Normal",
  24015. height: math.unit(5 + 11 / 12, "feet"),
  24016. default: true
  24017. },
  24018. ]
  24019. ))
  24020. characterMakers.push(() => makeCharacter(
  24021. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24022. {
  24023. front: {
  24024. height: math.unit(1 + 6 / 12, "feet"),
  24025. weight: math.unit(25, "lb"),
  24026. name: "Front",
  24027. image: {
  24028. source: "./media/characters/karla-halldor/front.svg",
  24029. extra: 1459 / 1383,
  24030. bottom: 12 / 1472
  24031. }
  24032. },
  24033. },
  24034. [
  24035. {
  24036. name: "Normal",
  24037. height: math.unit(1 + 6 / 12, "feet"),
  24038. default: true
  24039. },
  24040. ]
  24041. ))
  24042. characterMakers.push(() => makeCharacter(
  24043. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24044. {
  24045. front: {
  24046. height: math.unit(6 + 2 / 12, "feet"),
  24047. weight: math.unit(160, "lb"),
  24048. name: "Front",
  24049. image: {
  24050. source: "./media/characters/ariam/front.svg",
  24051. extra: 1073/976,
  24052. bottom: 52/1125
  24053. }
  24054. },
  24055. back: {
  24056. height: math.unit(6 + 2/12, "feet"),
  24057. weight: math.unit(160, "lb"),
  24058. name: "Back",
  24059. image: {
  24060. source: "./media/characters/ariam/back.svg",
  24061. extra: 1103/1023,
  24062. bottom: 9/1112
  24063. }
  24064. },
  24065. dressed: {
  24066. height: math.unit(6 + 2/12, "feet"),
  24067. weight: math.unit(160, "lb"),
  24068. name: "Dressed",
  24069. image: {
  24070. source: "./media/characters/ariam/dressed.svg",
  24071. extra: 1099/1009,
  24072. bottom: 25/1124
  24073. }
  24074. },
  24075. squatting: {
  24076. height: math.unit(4.1, "feet"),
  24077. weight: math.unit(160, "lb"),
  24078. name: "Squatting",
  24079. image: {
  24080. source: "./media/characters/ariam/squatting.svg",
  24081. extra: 2617 / 2112,
  24082. bottom: 61.2 / 2681,
  24083. }
  24084. },
  24085. },
  24086. [
  24087. {
  24088. name: "Normal",
  24089. height: math.unit(6 + 2 / 12, "feet"),
  24090. default: true
  24091. },
  24092. {
  24093. name: "Normal+",
  24094. height: math.unit(4, "meters")
  24095. },
  24096. {
  24097. name: "Macro",
  24098. height: math.unit(50, "meters")
  24099. },
  24100. {
  24101. name: "Macro+",
  24102. height: math.unit(100, "meters")
  24103. },
  24104. {
  24105. name: "Megamacro",
  24106. height: math.unit(20, "km")
  24107. },
  24108. {
  24109. name: "Caretaker",
  24110. height: math.unit(444, "megameters")
  24111. },
  24112. ]
  24113. ))
  24114. characterMakers.push(() => makeCharacter(
  24115. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24116. {
  24117. front: {
  24118. height: math.unit(1.67, "meters"),
  24119. weight: math.unit(140, "lb"),
  24120. name: "Front",
  24121. image: {
  24122. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24123. extra: 438 / 410,
  24124. bottom: 0.75 / 439
  24125. }
  24126. },
  24127. },
  24128. [
  24129. {
  24130. name: "Shrunken",
  24131. height: math.unit(7.6, "cm")
  24132. },
  24133. {
  24134. name: "Human Scale",
  24135. height: math.unit(1.67, "meters")
  24136. },
  24137. {
  24138. name: "Wolxi Scale",
  24139. height: math.unit(36.7, "meters"),
  24140. default: true
  24141. },
  24142. ]
  24143. ))
  24144. characterMakers.push(() => makeCharacter(
  24145. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24146. {
  24147. front: {
  24148. height: math.unit(1.73, "meters"),
  24149. weight: math.unit(240, "lb"),
  24150. name: "Front",
  24151. image: {
  24152. source: "./media/characters/izue-two-mothers/front.svg",
  24153. extra: 469 / 437,
  24154. bottom: 1.24 / 470.6
  24155. }
  24156. },
  24157. },
  24158. [
  24159. {
  24160. name: "Shrunken",
  24161. height: math.unit(7.86, "cm")
  24162. },
  24163. {
  24164. name: "Human Scale",
  24165. height: math.unit(1.73, "meters")
  24166. },
  24167. {
  24168. name: "Wolxi Scale",
  24169. height: math.unit(38, "meters"),
  24170. default: true
  24171. },
  24172. ]
  24173. ))
  24174. characterMakers.push(() => makeCharacter(
  24175. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24176. {
  24177. front: {
  24178. height: math.unit(1.55, "meters"),
  24179. weight: math.unit(120, "lb"),
  24180. name: "Front",
  24181. image: {
  24182. source: "./media/characters/teeku-love-shack/front.svg",
  24183. extra: 387 / 362,
  24184. bottom: 1.51 / 388
  24185. }
  24186. },
  24187. },
  24188. [
  24189. {
  24190. name: "Shrunken",
  24191. height: math.unit(7, "cm")
  24192. },
  24193. {
  24194. name: "Human Scale",
  24195. height: math.unit(1.55, "meters")
  24196. },
  24197. {
  24198. name: "Wolxi Scale",
  24199. height: math.unit(34.1, "meters"),
  24200. default: true
  24201. },
  24202. ]
  24203. ))
  24204. characterMakers.push(() => makeCharacter(
  24205. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24206. {
  24207. front: {
  24208. height: math.unit(1.83, "meters"),
  24209. weight: math.unit(135, "lb"),
  24210. name: "Front",
  24211. image: {
  24212. source: "./media/characters/dejma-the-red/front.svg",
  24213. extra: 480 / 458,
  24214. bottom: 1.8 / 482
  24215. }
  24216. },
  24217. },
  24218. [
  24219. {
  24220. name: "Shrunken",
  24221. height: math.unit(8.3, "cm")
  24222. },
  24223. {
  24224. name: "Human Scale",
  24225. height: math.unit(1.83, "meters")
  24226. },
  24227. {
  24228. name: "Wolxi Scale",
  24229. height: math.unit(40, "meters"),
  24230. default: true
  24231. },
  24232. ]
  24233. ))
  24234. characterMakers.push(() => makeCharacter(
  24235. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24236. {
  24237. front: {
  24238. height: math.unit(1.78, "meters"),
  24239. weight: math.unit(65, "kg"),
  24240. name: "Front",
  24241. image: {
  24242. source: "./media/characters/aki/front.svg",
  24243. extra: 452 / 415
  24244. }
  24245. },
  24246. frontNsfw: {
  24247. height: math.unit(1.78, "meters"),
  24248. weight: math.unit(65, "kg"),
  24249. name: "Front (NSFW)",
  24250. image: {
  24251. source: "./media/characters/aki/front-nsfw.svg",
  24252. extra: 452 / 415
  24253. }
  24254. },
  24255. back: {
  24256. height: math.unit(1.78, "meters"),
  24257. weight: math.unit(65, "kg"),
  24258. name: "Back",
  24259. image: {
  24260. source: "./media/characters/aki/back.svg",
  24261. extra: 452 / 415
  24262. }
  24263. },
  24264. rump: {
  24265. height: math.unit(2.05, "feet"),
  24266. name: "Rump",
  24267. image: {
  24268. source: "./media/characters/aki/rump.svg"
  24269. }
  24270. },
  24271. dick: {
  24272. height: math.unit(0.95, "feet"),
  24273. name: "Dick",
  24274. image: {
  24275. source: "./media/characters/aki/dick.svg"
  24276. }
  24277. },
  24278. },
  24279. [
  24280. {
  24281. name: "Micro",
  24282. height: math.unit(15, "cm")
  24283. },
  24284. {
  24285. name: "Normal",
  24286. height: math.unit(178, "cm"),
  24287. default: true
  24288. },
  24289. {
  24290. name: "Macro",
  24291. height: math.unit(214, "m")
  24292. },
  24293. {
  24294. name: "Macro+",
  24295. height: math.unit(534, "m")
  24296. },
  24297. ]
  24298. ))
  24299. characterMakers.push(() => makeCharacter(
  24300. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24301. {
  24302. front: {
  24303. height: math.unit(5 + 5 / 12, "feet"),
  24304. weight: math.unit(120, "lb"),
  24305. name: "Front",
  24306. image: {
  24307. source: "./media/characters/ari/front.svg",
  24308. extra: 714.5 / 682,
  24309. bottom: 8 / 722.5
  24310. }
  24311. },
  24312. },
  24313. [
  24314. {
  24315. name: "Normal",
  24316. height: math.unit(5 + 5 / 12, "feet")
  24317. },
  24318. {
  24319. name: "Macro",
  24320. height: math.unit(100, "feet"),
  24321. default: true
  24322. },
  24323. {
  24324. name: "Megamacro",
  24325. height: math.unit(100, "miles")
  24326. },
  24327. {
  24328. name: "Gigamacro",
  24329. height: math.unit(80000, "miles")
  24330. },
  24331. ]
  24332. ))
  24333. characterMakers.push(() => makeCharacter(
  24334. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24335. {
  24336. side: {
  24337. height: math.unit(9, "feet"),
  24338. weight: math.unit(400, "kg"),
  24339. name: "Side",
  24340. image: {
  24341. source: "./media/characters/bolt/side.svg",
  24342. extra: 1126 / 896,
  24343. bottom: 60 / 1187.3,
  24344. }
  24345. },
  24346. },
  24347. [
  24348. {
  24349. name: "Micro",
  24350. height: math.unit(5, "inches")
  24351. },
  24352. {
  24353. name: "Normal",
  24354. height: math.unit(9, "feet"),
  24355. default: true
  24356. },
  24357. {
  24358. name: "Macro",
  24359. height: math.unit(700, "feet")
  24360. },
  24361. {
  24362. name: "Max Size",
  24363. height: math.unit(1.52e22, "yottameters")
  24364. },
  24365. ]
  24366. ))
  24367. characterMakers.push(() => makeCharacter(
  24368. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24369. {
  24370. front: {
  24371. height: math.unit(4.53, "meters"),
  24372. weight: math.unit(3, "tons"),
  24373. name: "Front",
  24374. image: {
  24375. source: "./media/characters/draekon-sylviar/front.svg",
  24376. extra: 1228 / 1068,
  24377. bottom: 41 / 1270
  24378. }
  24379. },
  24380. tail: {
  24381. height: math.unit(1.772, "meter"),
  24382. name: "Tail",
  24383. image: {
  24384. source: "./media/characters/draekon-sylviar/tail.svg"
  24385. }
  24386. },
  24387. head: {
  24388. height: math.unit(1.331, "meter"),
  24389. name: "Head",
  24390. image: {
  24391. source: "./media/characters/draekon-sylviar/head.svg"
  24392. }
  24393. },
  24394. hand: {
  24395. height: math.unit(0.564, "meter"),
  24396. name: "Hand",
  24397. image: {
  24398. source: "./media/characters/draekon-sylviar/hand.svg"
  24399. }
  24400. },
  24401. foot: {
  24402. height: math.unit(0.621, "meter"),
  24403. name: "Foot",
  24404. image: {
  24405. source: "./media/characters/draekon-sylviar/foot.svg",
  24406. bottom: 32 / 324
  24407. }
  24408. },
  24409. dick: {
  24410. height: math.unit(61, "cm"),
  24411. name: "Dick",
  24412. image: {
  24413. source: "./media/characters/draekon-sylviar/dick.svg"
  24414. }
  24415. },
  24416. dickseparated: {
  24417. height: math.unit(61, "cm"),
  24418. name: "Dick-separated",
  24419. image: {
  24420. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24421. }
  24422. },
  24423. },
  24424. [
  24425. {
  24426. name: "Small",
  24427. height: math.unit(4.53 / 2, "meters"),
  24428. default: true
  24429. },
  24430. {
  24431. name: "Normal",
  24432. height: math.unit(4.53, "meters"),
  24433. default: true
  24434. },
  24435. {
  24436. name: "Large",
  24437. height: math.unit(4.53 * 2, "meters"),
  24438. },
  24439. ]
  24440. ))
  24441. characterMakers.push(() => makeCharacter(
  24442. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24443. {
  24444. front: {
  24445. height: math.unit(6 + 2 / 12, "feet"),
  24446. weight: math.unit(180, "lb"),
  24447. name: "Front",
  24448. image: {
  24449. source: "./media/characters/brawler/front.svg",
  24450. extra: 3301 / 3027,
  24451. bottom: 138 / 3439
  24452. }
  24453. },
  24454. },
  24455. [
  24456. {
  24457. name: "Normal",
  24458. height: math.unit(6 + 2 / 12, "feet"),
  24459. default: true
  24460. },
  24461. ]
  24462. ))
  24463. characterMakers.push(() => makeCharacter(
  24464. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24465. {
  24466. front: {
  24467. height: math.unit(11, "feet"),
  24468. weight: math.unit(1000, "lb"),
  24469. name: "Front",
  24470. image: {
  24471. source: "./media/characters/alex/front.svg",
  24472. bottom: 44.5 / 620
  24473. }
  24474. },
  24475. },
  24476. [
  24477. {
  24478. name: "Micro",
  24479. height: math.unit(5, "inches")
  24480. },
  24481. {
  24482. name: "Normal",
  24483. height: math.unit(11, "feet"),
  24484. default: true
  24485. },
  24486. {
  24487. name: "Macro",
  24488. height: math.unit(9.5e9, "feet")
  24489. },
  24490. {
  24491. name: "Max Size",
  24492. height: math.unit(1.4e283, "yottameters")
  24493. },
  24494. ]
  24495. ))
  24496. characterMakers.push(() => makeCharacter(
  24497. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24498. {
  24499. female: {
  24500. height: math.unit(29.9, "m"),
  24501. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24502. name: "Female",
  24503. image: {
  24504. source: "./media/characters/zenari/female.svg",
  24505. extra: 3281.6 / 3217,
  24506. bottom: 72.2 / 3353
  24507. }
  24508. },
  24509. male: {
  24510. height: math.unit(27.7, "m"),
  24511. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24512. name: "Male",
  24513. image: {
  24514. source: "./media/characters/zenari/male.svg",
  24515. extra: 3008 / 2991,
  24516. bottom: 54.6 / 3069
  24517. }
  24518. },
  24519. },
  24520. [
  24521. {
  24522. name: "Macro",
  24523. height: math.unit(29.7, "meters"),
  24524. default: true
  24525. },
  24526. ]
  24527. ))
  24528. characterMakers.push(() => makeCharacter(
  24529. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24530. {
  24531. female: {
  24532. height: math.unit(23.8, "m"),
  24533. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24534. name: "Female",
  24535. image: {
  24536. source: "./media/characters/mactarian/female.svg",
  24537. extra: 2662 / 2569,
  24538. bottom: 73 / 2736
  24539. }
  24540. },
  24541. male: {
  24542. height: math.unit(23.8, "m"),
  24543. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24544. name: "Male",
  24545. image: {
  24546. source: "./media/characters/mactarian/male.svg",
  24547. extra: 2673 / 2600,
  24548. bottom: 76 / 2750
  24549. }
  24550. },
  24551. },
  24552. [
  24553. {
  24554. name: "Macro",
  24555. height: math.unit(23.8, "meters"),
  24556. default: true
  24557. },
  24558. ]
  24559. ))
  24560. characterMakers.push(() => makeCharacter(
  24561. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24562. {
  24563. female: {
  24564. height: math.unit(19.3, "m"),
  24565. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24566. name: "Female",
  24567. image: {
  24568. source: "./media/characters/umok/female.svg",
  24569. extra: 2186 / 2078,
  24570. bottom: 87 / 2277
  24571. }
  24572. },
  24573. male: {
  24574. height: math.unit(19.5, "m"),
  24575. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24576. name: "Male",
  24577. image: {
  24578. source: "./media/characters/umok/male.svg",
  24579. extra: 2233 / 2140,
  24580. bottom: 24.4 / 2258
  24581. }
  24582. },
  24583. },
  24584. [
  24585. {
  24586. name: "Macro",
  24587. height: math.unit(19.3, "meters"),
  24588. default: true
  24589. },
  24590. ]
  24591. ))
  24592. characterMakers.push(() => makeCharacter(
  24593. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24594. {
  24595. female: {
  24596. height: math.unit(26.15, "m"),
  24597. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24598. name: "Female",
  24599. image: {
  24600. source: "./media/characters/joraxian/female.svg",
  24601. extra: 2912 / 2824,
  24602. bottom: 36 / 2956
  24603. }
  24604. },
  24605. male: {
  24606. height: math.unit(25.4, "m"),
  24607. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24608. name: "Male",
  24609. image: {
  24610. source: "./media/characters/joraxian/male.svg",
  24611. extra: 2877 / 2721,
  24612. bottom: 82 / 2967
  24613. }
  24614. },
  24615. },
  24616. [
  24617. {
  24618. name: "Macro",
  24619. height: math.unit(26.15, "meters"),
  24620. default: true
  24621. },
  24622. ]
  24623. ))
  24624. characterMakers.push(() => makeCharacter(
  24625. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24626. {
  24627. female: {
  24628. height: math.unit(21.6, "m"),
  24629. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24630. name: "Female",
  24631. image: {
  24632. source: "./media/characters/sthara/female.svg",
  24633. extra: 2516 / 2347,
  24634. bottom: 21.5 / 2537
  24635. }
  24636. },
  24637. male: {
  24638. height: math.unit(24, "m"),
  24639. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24640. name: "Male",
  24641. image: {
  24642. source: "./media/characters/sthara/male.svg",
  24643. extra: 2732 / 2607,
  24644. bottom: 23 / 2732
  24645. }
  24646. },
  24647. },
  24648. [
  24649. {
  24650. name: "Macro",
  24651. height: math.unit(21.6, "meters"),
  24652. default: true
  24653. },
  24654. ]
  24655. ))
  24656. characterMakers.push(() => makeCharacter(
  24657. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24658. {
  24659. front: {
  24660. height: math.unit(6 + 4 / 12, "feet"),
  24661. weight: math.unit(175, "lb"),
  24662. name: "Front",
  24663. image: {
  24664. source: "./media/characters/luka-bryzant/front.svg",
  24665. extra: 311 / 289,
  24666. bottom: 4 / 315
  24667. }
  24668. },
  24669. back: {
  24670. height: math.unit(6 + 4 / 12, "feet"),
  24671. weight: math.unit(175, "lb"),
  24672. name: "Back",
  24673. image: {
  24674. source: "./media/characters/luka-bryzant/back.svg",
  24675. extra: 311 / 289,
  24676. bottom: 3.8 / 313.7
  24677. }
  24678. },
  24679. },
  24680. [
  24681. {
  24682. name: "Micro",
  24683. height: math.unit(10, "inches")
  24684. },
  24685. {
  24686. name: "Normal",
  24687. height: math.unit(6 + 4 / 12, "feet"),
  24688. default: true
  24689. },
  24690. {
  24691. name: "Large",
  24692. height: math.unit(12, "feet")
  24693. },
  24694. ]
  24695. ))
  24696. characterMakers.push(() => makeCharacter(
  24697. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24698. {
  24699. front: {
  24700. height: math.unit(5 + 7 / 12, "feet"),
  24701. weight: math.unit(185, "lb"),
  24702. name: "Front",
  24703. image: {
  24704. source: "./media/characters/aman-aquila/front.svg",
  24705. extra: 1013 / 976,
  24706. bottom: 45.6 / 1057
  24707. }
  24708. },
  24709. side: {
  24710. height: math.unit(5 + 7 / 12, "feet"),
  24711. weight: math.unit(185, "lb"),
  24712. name: "Side",
  24713. image: {
  24714. source: "./media/characters/aman-aquila/side.svg",
  24715. extra: 1054 / 1011,
  24716. bottom: 15 / 1070
  24717. }
  24718. },
  24719. back: {
  24720. height: math.unit(5 + 7 / 12, "feet"),
  24721. weight: math.unit(185, "lb"),
  24722. name: "Back",
  24723. image: {
  24724. source: "./media/characters/aman-aquila/back.svg",
  24725. extra: 1026 / 970,
  24726. bottom: 12 / 1039
  24727. }
  24728. },
  24729. head: {
  24730. height: math.unit(1.211, "feet"),
  24731. name: "Head",
  24732. image: {
  24733. source: "./media/characters/aman-aquila/head.svg",
  24734. }
  24735. },
  24736. },
  24737. [
  24738. {
  24739. name: "Minimicro",
  24740. height: math.unit(0.057, "inches")
  24741. },
  24742. {
  24743. name: "Micro",
  24744. height: math.unit(7, "inches")
  24745. },
  24746. {
  24747. name: "Mini",
  24748. height: math.unit(3 + 7 / 12, "feet")
  24749. },
  24750. {
  24751. name: "Normal",
  24752. height: math.unit(5 + 7 / 12, "feet"),
  24753. default: true
  24754. },
  24755. {
  24756. name: "Macro",
  24757. height: math.unit(157 + 7 / 12, "feet")
  24758. },
  24759. {
  24760. name: "Megamacro",
  24761. height: math.unit(1557 + 7 / 12, "feet")
  24762. },
  24763. {
  24764. name: "Gigamacro",
  24765. height: math.unit(15557 + 7 / 12, "feet")
  24766. },
  24767. ]
  24768. ))
  24769. characterMakers.push(() => makeCharacter(
  24770. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24771. {
  24772. front: {
  24773. height: math.unit(3 + 2 / 12, "inches"),
  24774. weight: math.unit(0.3, "ounces"),
  24775. name: "Front",
  24776. image: {
  24777. source: "./media/characters/hiphae/front.svg",
  24778. extra: 1931 / 1683,
  24779. bottom: 24 / 1955
  24780. }
  24781. },
  24782. },
  24783. [
  24784. {
  24785. name: "Normal",
  24786. height: math.unit(3 + 1 / 2, "inches"),
  24787. default: true
  24788. },
  24789. ]
  24790. ))
  24791. characterMakers.push(() => makeCharacter(
  24792. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24793. {
  24794. front: {
  24795. height: math.unit(5 + 10 / 12, "feet"),
  24796. weight: math.unit(165, "lb"),
  24797. name: "Front",
  24798. image: {
  24799. source: "./media/characters/nicky/front.svg",
  24800. extra: 3144 / 2886,
  24801. bottom: 45.6 / 3192
  24802. }
  24803. },
  24804. back: {
  24805. height: math.unit(5 + 10 / 12, "feet"),
  24806. weight: math.unit(165, "lb"),
  24807. name: "Back",
  24808. image: {
  24809. source: "./media/characters/nicky/back.svg",
  24810. extra: 3055 / 2804,
  24811. bottom: 28.4 / 3087
  24812. }
  24813. },
  24814. frontclothed: {
  24815. height: math.unit(5 + 10 / 12, "feet"),
  24816. weight: math.unit(165, "lb"),
  24817. name: "Front-clothed",
  24818. image: {
  24819. source: "./media/characters/nicky/front-clothed.svg",
  24820. extra: 3184.9 / 2926.9,
  24821. bottom: 86.5 / 3239.9
  24822. }
  24823. },
  24824. foot: {
  24825. height: math.unit(1.16, "feet"),
  24826. name: "Foot",
  24827. image: {
  24828. source: "./media/characters/nicky/foot.svg"
  24829. }
  24830. },
  24831. feet: {
  24832. height: math.unit(1.34, "feet"),
  24833. name: "Feet",
  24834. image: {
  24835. source: "./media/characters/nicky/feet.svg"
  24836. }
  24837. },
  24838. maw: {
  24839. height: math.unit(0.9, "feet"),
  24840. name: "Maw",
  24841. image: {
  24842. source: "./media/characters/nicky/maw.svg"
  24843. }
  24844. },
  24845. },
  24846. [
  24847. {
  24848. name: "Normal",
  24849. height: math.unit(5 + 10 / 12, "feet"),
  24850. default: true
  24851. },
  24852. {
  24853. name: "Macro",
  24854. height: math.unit(60, "feet")
  24855. },
  24856. {
  24857. name: "Megamacro",
  24858. height: math.unit(1, "mile")
  24859. },
  24860. ]
  24861. ))
  24862. characterMakers.push(() => makeCharacter(
  24863. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24864. {
  24865. side: {
  24866. height: math.unit(10, "feet"),
  24867. weight: math.unit(600, "lb"),
  24868. name: "Side",
  24869. image: {
  24870. source: "./media/characters/blair/side.svg",
  24871. bottom: 16.6 / 475,
  24872. extra: 458 / 431
  24873. }
  24874. },
  24875. },
  24876. [
  24877. {
  24878. name: "Micro",
  24879. height: math.unit(8, "inches")
  24880. },
  24881. {
  24882. name: "Normal",
  24883. height: math.unit(10, "feet"),
  24884. default: true
  24885. },
  24886. {
  24887. name: "Macro",
  24888. height: math.unit(180, "feet")
  24889. },
  24890. ]
  24891. ))
  24892. characterMakers.push(() => makeCharacter(
  24893. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24894. {
  24895. front: {
  24896. height: math.unit(5 + 4 / 12, "feet"),
  24897. weight: math.unit(125, "lb"),
  24898. name: "Front",
  24899. image: {
  24900. source: "./media/characters/fisher/front.svg",
  24901. extra: 444 / 390,
  24902. bottom: 2 / 444.8
  24903. }
  24904. },
  24905. },
  24906. [
  24907. {
  24908. name: "Micro",
  24909. height: math.unit(4, "inches")
  24910. },
  24911. {
  24912. name: "Normal",
  24913. height: math.unit(5 + 4 / 12, "feet"),
  24914. default: true
  24915. },
  24916. {
  24917. name: "Macro",
  24918. height: math.unit(100, "feet")
  24919. },
  24920. ]
  24921. ))
  24922. characterMakers.push(() => makeCharacter(
  24923. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24924. {
  24925. front: {
  24926. height: math.unit(6.71, "feet"),
  24927. weight: math.unit(200, "lb"),
  24928. capacity: math.unit(1000000, "people"),
  24929. name: "Front",
  24930. image: {
  24931. source: "./media/characters/gliss/front.svg",
  24932. extra: 2347 / 2231,
  24933. bottom: 113 / 2462
  24934. }
  24935. },
  24936. hammerspaceSize: {
  24937. height: math.unit(6.71 * 717, "feet"),
  24938. weight: math.unit(200, "lb"),
  24939. capacity: math.unit(1000000, "people"),
  24940. name: "Hammerspace Size",
  24941. image: {
  24942. source: "./media/characters/gliss/front.svg",
  24943. extra: 2347 / 2231,
  24944. bottom: 113 / 2462
  24945. }
  24946. },
  24947. },
  24948. [
  24949. {
  24950. name: "Normal",
  24951. height: math.unit(6.71, "feet"),
  24952. default: true
  24953. },
  24954. ]
  24955. ))
  24956. characterMakers.push(() => makeCharacter(
  24957. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24958. {
  24959. side: {
  24960. height: math.unit(1.44, "m"),
  24961. weight: math.unit(80, "kg"),
  24962. name: "Side",
  24963. image: {
  24964. source: "./media/characters/dune-anderson/side.svg",
  24965. bottom: 49 / 1426
  24966. }
  24967. },
  24968. },
  24969. [
  24970. {
  24971. name: "Wolf-sized",
  24972. height: math.unit(1.44, "meters")
  24973. },
  24974. {
  24975. name: "Normal",
  24976. height: math.unit(5.05, "meters"),
  24977. default: true
  24978. },
  24979. {
  24980. name: "Big",
  24981. height: math.unit(14.4, "meters")
  24982. },
  24983. {
  24984. name: "Huge",
  24985. height: math.unit(144, "meters")
  24986. },
  24987. ]
  24988. ))
  24989. characterMakers.push(() => makeCharacter(
  24990. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24991. {
  24992. front: {
  24993. height: math.unit(7, "feet"),
  24994. weight: math.unit(425, "lb"),
  24995. name: "Front",
  24996. image: {
  24997. source: "./media/characters/hind/front.svg",
  24998. extra: 2091 / 1860,
  24999. bottom: 129 / 2220
  25000. }
  25001. },
  25002. back: {
  25003. height: math.unit(7, "feet"),
  25004. weight: math.unit(425, "lb"),
  25005. name: "Back",
  25006. image: {
  25007. source: "./media/characters/hind/back.svg",
  25008. extra: 2091 / 1860,
  25009. bottom: 24.6 / 2309
  25010. }
  25011. },
  25012. tail: {
  25013. height: math.unit(2.8, "feet"),
  25014. name: "Tail",
  25015. image: {
  25016. source: "./media/characters/hind/tail.svg"
  25017. }
  25018. },
  25019. head: {
  25020. height: math.unit(2.55, "feet"),
  25021. name: "Head",
  25022. image: {
  25023. source: "./media/characters/hind/head.svg"
  25024. }
  25025. },
  25026. },
  25027. [
  25028. {
  25029. name: "XS",
  25030. height: math.unit(0.7, "feet")
  25031. },
  25032. {
  25033. name: "Normal",
  25034. height: math.unit(7, "feet"),
  25035. default: true
  25036. },
  25037. {
  25038. name: "XL",
  25039. height: math.unit(70, "feet")
  25040. },
  25041. ]
  25042. ))
  25043. characterMakers.push(() => makeCharacter(
  25044. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25045. {
  25046. front: {
  25047. height: math.unit(2.1, "meters"),
  25048. weight: math.unit(150, "lb"),
  25049. name: "Front",
  25050. image: {
  25051. source: "./media/characters/tharquench-sizestealer/front.svg",
  25052. extra: 1605/1470,
  25053. bottom: 36/1641
  25054. }
  25055. },
  25056. frontAlt: {
  25057. height: math.unit(2.1, "meters"),
  25058. weight: math.unit(150, "lb"),
  25059. name: "Front (Alt)",
  25060. image: {
  25061. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25062. extra: 2318 / 2063,
  25063. bottom: 93.4 / 2410
  25064. }
  25065. },
  25066. },
  25067. [
  25068. {
  25069. name: "Nano",
  25070. height: math.unit(1, "mm")
  25071. },
  25072. {
  25073. name: "Micro",
  25074. height: math.unit(1, "cm")
  25075. },
  25076. {
  25077. name: "Normal",
  25078. height: math.unit(2.1, "meters"),
  25079. default: true
  25080. },
  25081. ]
  25082. ))
  25083. characterMakers.push(() => makeCharacter(
  25084. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25085. {
  25086. front: {
  25087. height: math.unit(7 + 5 / 12, "feet"),
  25088. weight: math.unit(357, "lb"),
  25089. name: "Front",
  25090. image: {
  25091. source: "./media/characters/solex-draconov/front.svg",
  25092. extra: 1993 / 1865,
  25093. bottom: 117 / 2111
  25094. }
  25095. },
  25096. },
  25097. [
  25098. {
  25099. name: "Natural Height",
  25100. height: math.unit(7 + 5 / 12, "feet"),
  25101. default: true
  25102. },
  25103. {
  25104. name: "Macro",
  25105. height: math.unit(350, "feet")
  25106. },
  25107. {
  25108. name: "Macro+",
  25109. height: math.unit(1000, "feet")
  25110. },
  25111. {
  25112. name: "Megamacro",
  25113. height: math.unit(20, "km")
  25114. },
  25115. {
  25116. name: "Megamacro+",
  25117. height: math.unit(1000, "km")
  25118. },
  25119. {
  25120. name: "Gigamacro",
  25121. height: math.unit(2.5, "Gm")
  25122. },
  25123. {
  25124. name: "Teramacro",
  25125. height: math.unit(15, "Tm")
  25126. },
  25127. {
  25128. name: "Galactic",
  25129. height: math.unit(30, "Zm")
  25130. },
  25131. {
  25132. name: "Universal",
  25133. height: math.unit(21000, "Ym")
  25134. },
  25135. {
  25136. name: "Omniversal",
  25137. height: math.unit(9.861e50, "Ym")
  25138. },
  25139. {
  25140. name: "Existential",
  25141. height: math.unit(1e300, "meters")
  25142. },
  25143. ]
  25144. ))
  25145. characterMakers.push(() => makeCharacter(
  25146. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25147. {
  25148. side: {
  25149. height: math.unit(25, "feet"),
  25150. weight: math.unit(90000, "lb"),
  25151. name: "Side",
  25152. image: {
  25153. source: "./media/characters/mandarax/side.svg",
  25154. extra: 614 / 332,
  25155. bottom: 55 / 630
  25156. }
  25157. },
  25158. head: {
  25159. height: math.unit(11.4, "feet"),
  25160. name: "Head",
  25161. image: {
  25162. source: "./media/characters/mandarax/head.svg"
  25163. }
  25164. },
  25165. belly: {
  25166. height: math.unit(33, "feet"),
  25167. name: "Belly",
  25168. capacity: math.unit(500, "people"),
  25169. image: {
  25170. source: "./media/characters/mandarax/belly.svg"
  25171. }
  25172. },
  25173. dick: {
  25174. height: math.unit(8.46, "feet"),
  25175. name: "Dick",
  25176. image: {
  25177. source: "./media/characters/mandarax/dick.svg"
  25178. }
  25179. },
  25180. top: {
  25181. height: math.unit(28, "meters"),
  25182. name: "Top",
  25183. image: {
  25184. source: "./media/characters/mandarax/top.svg"
  25185. }
  25186. },
  25187. },
  25188. [
  25189. {
  25190. name: "Normal",
  25191. height: math.unit(25, "feet"),
  25192. default: true
  25193. },
  25194. ]
  25195. ))
  25196. characterMakers.push(() => makeCharacter(
  25197. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25198. {
  25199. front: {
  25200. height: math.unit(5, "feet"),
  25201. weight: math.unit(90, "lb"),
  25202. name: "Front",
  25203. image: {
  25204. source: "./media/characters/pixil/front.svg",
  25205. extra: 2000 / 1618,
  25206. bottom: 12.3 / 2011
  25207. }
  25208. },
  25209. },
  25210. [
  25211. {
  25212. name: "Normal",
  25213. height: math.unit(5, "feet"),
  25214. default: true
  25215. },
  25216. {
  25217. name: "Megamacro",
  25218. height: math.unit(10, "miles"),
  25219. },
  25220. ]
  25221. ))
  25222. characterMakers.push(() => makeCharacter(
  25223. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25224. {
  25225. front: {
  25226. height: math.unit(7 + 2 / 12, "feet"),
  25227. weight: math.unit(200, "lb"),
  25228. name: "Front",
  25229. image: {
  25230. source: "./media/characters/angel/front.svg",
  25231. extra: 1830 / 1737,
  25232. bottom: 22.6 / 1854,
  25233. }
  25234. },
  25235. },
  25236. [
  25237. {
  25238. name: "Normal",
  25239. height: math.unit(7 + 2 / 12, "feet"),
  25240. default: true
  25241. },
  25242. {
  25243. name: "Macro",
  25244. height: math.unit(1000, "feet")
  25245. },
  25246. {
  25247. name: "Megamacro",
  25248. height: math.unit(2, "miles")
  25249. },
  25250. {
  25251. name: "Gigamacro",
  25252. height: math.unit(20, "earths")
  25253. },
  25254. ]
  25255. ))
  25256. characterMakers.push(() => makeCharacter(
  25257. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25258. {
  25259. front: {
  25260. height: math.unit(5, "feet"),
  25261. weight: math.unit(180, "lb"),
  25262. name: "Front",
  25263. image: {
  25264. source: "./media/characters/mekana/front.svg",
  25265. extra: 1671 / 1605,
  25266. bottom: 3.5 / 1691
  25267. }
  25268. },
  25269. side: {
  25270. height: math.unit(5, "feet"),
  25271. weight: math.unit(180, "lb"),
  25272. name: "Side",
  25273. image: {
  25274. source: "./media/characters/mekana/side.svg",
  25275. extra: 1671 / 1605,
  25276. bottom: 3.5 / 1691
  25277. }
  25278. },
  25279. back: {
  25280. height: math.unit(5, "feet"),
  25281. weight: math.unit(180, "lb"),
  25282. name: "Back",
  25283. image: {
  25284. source: "./media/characters/mekana/back.svg",
  25285. extra: 1671 / 1605,
  25286. bottom: 3.5 / 1691
  25287. }
  25288. },
  25289. },
  25290. [
  25291. {
  25292. name: "Normal",
  25293. height: math.unit(5, "feet"),
  25294. default: true
  25295. },
  25296. ]
  25297. ))
  25298. characterMakers.push(() => makeCharacter(
  25299. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25300. {
  25301. front: {
  25302. height: math.unit(4 + 6 / 12, "feet"),
  25303. weight: math.unit(80, "lb"),
  25304. name: "Front",
  25305. image: {
  25306. source: "./media/characters/pixie/front.svg",
  25307. extra: 1924 / 1825,
  25308. bottom: 22.4 / 1946
  25309. }
  25310. },
  25311. },
  25312. [
  25313. {
  25314. name: "Normal",
  25315. height: math.unit(4 + 6 / 12, "feet"),
  25316. default: true
  25317. },
  25318. {
  25319. name: "Macro",
  25320. height: math.unit(40, "feet")
  25321. },
  25322. ]
  25323. ))
  25324. characterMakers.push(() => makeCharacter(
  25325. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25326. {
  25327. front: {
  25328. height: math.unit(2.1, "meters"),
  25329. weight: math.unit(200, "lb"),
  25330. name: "Front",
  25331. image: {
  25332. source: "./media/characters/the-lascivious/front.svg",
  25333. extra: 1 / 0.893,
  25334. bottom: 3.5 / 573.7
  25335. }
  25336. },
  25337. },
  25338. [
  25339. {
  25340. name: "Human Scale",
  25341. height: math.unit(2.1, "meters")
  25342. },
  25343. {
  25344. name: "Wolxi Scale",
  25345. height: math.unit(46.2, "m"),
  25346. default: true
  25347. },
  25348. {
  25349. name: "Boinker of Buildings",
  25350. height: math.unit(10, "km")
  25351. },
  25352. {
  25353. name: "Shagger of Skyscrapers",
  25354. height: math.unit(40, "km")
  25355. },
  25356. {
  25357. name: "Banger of Boroughs",
  25358. height: math.unit(4000, "km")
  25359. },
  25360. {
  25361. name: "Screwer of States",
  25362. height: math.unit(100000, "km")
  25363. },
  25364. {
  25365. name: "Pounder of Planets",
  25366. height: math.unit(2000000, "km")
  25367. },
  25368. ]
  25369. ))
  25370. characterMakers.push(() => makeCharacter(
  25371. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25372. {
  25373. front: {
  25374. height: math.unit(6, "feet"),
  25375. weight: math.unit(150, "lb"),
  25376. name: "Front",
  25377. image: {
  25378. source: "./media/characters/aj/front.svg",
  25379. extra: 2039 / 1562,
  25380. bottom: 40 / 2079
  25381. }
  25382. },
  25383. },
  25384. [
  25385. {
  25386. name: "Normal",
  25387. height: math.unit(11 + 6 / 12, "feet"),
  25388. default: true
  25389. },
  25390. {
  25391. name: "Megamacro",
  25392. height: math.unit(60, "megameters")
  25393. },
  25394. ]
  25395. ))
  25396. characterMakers.push(() => makeCharacter(
  25397. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25398. {
  25399. side: {
  25400. height: math.unit(31 + 8 / 12, "feet"),
  25401. weight: math.unit(75000, "kg"),
  25402. name: "Side",
  25403. image: {
  25404. source: "./media/characters/koros/side.svg",
  25405. extra: 1442 / 1297,
  25406. bottom: 122.7 / 1562
  25407. }
  25408. },
  25409. dicksKingsCrown: {
  25410. height: math.unit(6, "feet"),
  25411. name: "Dicks (King's Crown)",
  25412. image: {
  25413. source: "./media/characters/koros/dicks-kings-crown.svg"
  25414. }
  25415. },
  25416. dicksTailSet: {
  25417. height: math.unit(3, "feet"),
  25418. name: "Dicks (Tail Set)",
  25419. image: {
  25420. source: "./media/characters/koros/dicks-tail-set.svg"
  25421. }
  25422. },
  25423. dickCumming: {
  25424. height: math.unit(7.98, "feet"),
  25425. name: "Dick (Cumming)",
  25426. image: {
  25427. source: "./media/characters/koros/dick-cumming.svg"
  25428. }
  25429. },
  25430. dicksBack: {
  25431. height: math.unit(5.9, "feet"),
  25432. name: "Dicks (Back)",
  25433. image: {
  25434. source: "./media/characters/koros/dicks-back.svg"
  25435. }
  25436. },
  25437. dicksFront: {
  25438. height: math.unit(3.72, "feet"),
  25439. name: "Dicks (Front)",
  25440. image: {
  25441. source: "./media/characters/koros/dicks-front.svg"
  25442. }
  25443. },
  25444. dicksPeeking: {
  25445. height: math.unit(3.0, "feet"),
  25446. name: "Dicks (Peeking)",
  25447. image: {
  25448. source: "./media/characters/koros/dicks-peeking.svg"
  25449. }
  25450. },
  25451. eye: {
  25452. height: math.unit(1.7, "feet"),
  25453. name: "Eye",
  25454. image: {
  25455. source: "./media/characters/koros/eye.svg"
  25456. }
  25457. },
  25458. headFront: {
  25459. height: math.unit(11.69, "feet"),
  25460. name: "Head (Front)",
  25461. image: {
  25462. source: "./media/characters/koros/head-front.svg"
  25463. }
  25464. },
  25465. headSide: {
  25466. height: math.unit(14, "feet"),
  25467. name: "Head (Side)",
  25468. image: {
  25469. source: "./media/characters/koros/head-side.svg"
  25470. }
  25471. },
  25472. leg: {
  25473. height: math.unit(17, "feet"),
  25474. name: "Leg",
  25475. image: {
  25476. source: "./media/characters/koros/leg.svg"
  25477. }
  25478. },
  25479. mawSide: {
  25480. height: math.unit(12.8, "feet"),
  25481. name: "Maw (Side)",
  25482. image: {
  25483. source: "./media/characters/koros/maw-side.svg"
  25484. }
  25485. },
  25486. mawSpitting: {
  25487. height: math.unit(17, "feet"),
  25488. name: "Maw (Spitting)",
  25489. image: {
  25490. source: "./media/characters/koros/maw-spitting.svg"
  25491. }
  25492. },
  25493. slit: {
  25494. height: math.unit(2.8, "feet"),
  25495. name: "Slit",
  25496. image: {
  25497. source: "./media/characters/koros/slit.svg"
  25498. }
  25499. },
  25500. stomach: {
  25501. height: math.unit(6.8, "feet"),
  25502. capacity: math.unit(20, "people"),
  25503. name: "Stomach",
  25504. image: {
  25505. source: "./media/characters/koros/stomach.svg"
  25506. }
  25507. },
  25508. wingspanBottom: {
  25509. height: math.unit(114, "feet"),
  25510. name: "Wingspan (Bottom)",
  25511. image: {
  25512. source: "./media/characters/koros/wingspan-bottom.svg"
  25513. }
  25514. },
  25515. wingspanTop: {
  25516. height: math.unit(104, "feet"),
  25517. name: "Wingspan (Top)",
  25518. image: {
  25519. source: "./media/characters/koros/wingspan-top.svg"
  25520. }
  25521. },
  25522. },
  25523. [
  25524. {
  25525. name: "Normal",
  25526. height: math.unit(31 + 8 / 12, "feet"),
  25527. default: true
  25528. },
  25529. ]
  25530. ))
  25531. characterMakers.push(() => makeCharacter(
  25532. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25533. {
  25534. front: {
  25535. height: math.unit(18 + 5 / 12, "feet"),
  25536. weight: math.unit(3750, "kg"),
  25537. name: "Front",
  25538. image: {
  25539. source: "./media/characters/vexx/front.svg",
  25540. extra: 426 / 396,
  25541. bottom: 31.5 / 458
  25542. }
  25543. },
  25544. maw: {
  25545. height: math.unit(6, "feet"),
  25546. name: "Maw",
  25547. image: {
  25548. source: "./media/characters/vexx/maw.svg"
  25549. }
  25550. },
  25551. },
  25552. [
  25553. {
  25554. name: "Normal",
  25555. height: math.unit(18 + 5 / 12, "feet"),
  25556. default: true
  25557. },
  25558. ]
  25559. ))
  25560. characterMakers.push(() => makeCharacter(
  25561. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25562. {
  25563. front: {
  25564. height: math.unit(17 + 6 / 12, "feet"),
  25565. weight: math.unit(150, "lb"),
  25566. name: "Front",
  25567. image: {
  25568. source: "./media/characters/baadra/front.svg",
  25569. extra: 3137 / 2890,
  25570. bottom: 168.4 / 3305
  25571. }
  25572. },
  25573. back: {
  25574. height: math.unit(17 + 6 / 12, "feet"),
  25575. weight: math.unit(150, "lb"),
  25576. name: "Back",
  25577. image: {
  25578. source: "./media/characters/baadra/back.svg",
  25579. extra: 3142 / 2890,
  25580. bottom: 220 / 3371
  25581. }
  25582. },
  25583. head: {
  25584. height: math.unit(5.45, "feet"),
  25585. name: "Head",
  25586. image: {
  25587. source: "./media/characters/baadra/head.svg"
  25588. }
  25589. },
  25590. headAngry: {
  25591. height: math.unit(4.95, "feet"),
  25592. name: "Head (Angry)",
  25593. image: {
  25594. source: "./media/characters/baadra/head-angry.svg"
  25595. }
  25596. },
  25597. headOpen: {
  25598. height: math.unit(6, "feet"),
  25599. name: "Head (Open)",
  25600. image: {
  25601. source: "./media/characters/baadra/head-open.svg"
  25602. }
  25603. },
  25604. },
  25605. [
  25606. {
  25607. name: "Normal",
  25608. height: math.unit(17 + 6 / 12, "feet"),
  25609. default: true
  25610. },
  25611. ]
  25612. ))
  25613. characterMakers.push(() => makeCharacter(
  25614. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25615. {
  25616. front: {
  25617. height: math.unit(7 + 3 / 12, "feet"),
  25618. weight: math.unit(180, "lb"),
  25619. name: "Front",
  25620. image: {
  25621. source: "./media/characters/juri/front.svg",
  25622. extra: 1401 / 1237,
  25623. bottom: 18.5 / 1418
  25624. }
  25625. },
  25626. side: {
  25627. height: math.unit(7 + 3 / 12, "feet"),
  25628. weight: math.unit(180, "lb"),
  25629. name: "Side",
  25630. image: {
  25631. source: "./media/characters/juri/side.svg",
  25632. extra: 1424 / 1242,
  25633. bottom: 18.5 / 1447
  25634. }
  25635. },
  25636. sitting: {
  25637. height: math.unit(6, "feet"),
  25638. weight: math.unit(180, "lb"),
  25639. name: "Sitting",
  25640. image: {
  25641. source: "./media/characters/juri/sitting.svg",
  25642. extra: 1270 / 1143,
  25643. bottom: 100 / 1343
  25644. }
  25645. },
  25646. back: {
  25647. height: math.unit(7 + 3 / 12, "feet"),
  25648. weight: math.unit(180, "lb"),
  25649. name: "Back",
  25650. image: {
  25651. source: "./media/characters/juri/back.svg",
  25652. extra: 1377 / 1240,
  25653. bottom: 23.7 / 1405
  25654. }
  25655. },
  25656. maw: {
  25657. height: math.unit(2.8, "feet"),
  25658. name: "Maw",
  25659. image: {
  25660. source: "./media/characters/juri/maw.svg"
  25661. }
  25662. },
  25663. stomach: {
  25664. height: math.unit(0.89, "feet"),
  25665. capacity: math.unit(4, "liters"),
  25666. name: "Stomach",
  25667. image: {
  25668. source: "./media/characters/juri/stomach.svg"
  25669. }
  25670. },
  25671. },
  25672. [
  25673. {
  25674. name: "Normal",
  25675. height: math.unit(7 + 3 / 12, "feet"),
  25676. default: true
  25677. },
  25678. ]
  25679. ))
  25680. characterMakers.push(() => makeCharacter(
  25681. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25682. {
  25683. fox: {
  25684. height: math.unit(5 + 6 / 12, "feet"),
  25685. weight: math.unit(140, "lb"),
  25686. name: "Fox",
  25687. image: {
  25688. source: "./media/characters/maxene-sita/fox.svg",
  25689. extra: 146 / 138,
  25690. bottom: 2.1 / 148.19
  25691. }
  25692. },
  25693. foxLaying: {
  25694. height: math.unit(1.70, "feet"),
  25695. weight: math.unit(140, "lb"),
  25696. name: "Fox (Laying)",
  25697. image: {
  25698. source: "./media/characters/maxene-sita/fox-laying.svg",
  25699. extra: 910 / 572,
  25700. bottom: 71 / 981
  25701. }
  25702. },
  25703. kitsune: {
  25704. height: math.unit(10, "feet"),
  25705. weight: math.unit(800, "lb"),
  25706. name: "Kitsune",
  25707. image: {
  25708. source: "./media/characters/maxene-sita/kitsune.svg",
  25709. extra: 185 / 176,
  25710. bottom: 4.7 / 189.9
  25711. }
  25712. },
  25713. hellhound: {
  25714. height: math.unit(10, "feet"),
  25715. weight: math.unit(700, "lb"),
  25716. name: "Hellhound",
  25717. image: {
  25718. source: "./media/characters/maxene-sita/hellhound.svg",
  25719. extra: 1600 / 1545,
  25720. bottom: 81 / 1681
  25721. }
  25722. },
  25723. },
  25724. [
  25725. {
  25726. name: "Normal",
  25727. height: math.unit(5 + 6 / 12, "feet"),
  25728. default: true
  25729. },
  25730. ]
  25731. ))
  25732. characterMakers.push(() => makeCharacter(
  25733. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25734. {
  25735. front: {
  25736. height: math.unit(3 + 4 / 12, "feet"),
  25737. weight: math.unit(70, "lb"),
  25738. name: "Front",
  25739. image: {
  25740. source: "./media/characters/maia/front.svg",
  25741. extra: 227 / 219.5,
  25742. bottom: 40 / 267
  25743. }
  25744. },
  25745. back: {
  25746. height: math.unit(3 + 4 / 12, "feet"),
  25747. weight: math.unit(70, "lb"),
  25748. name: "Back",
  25749. image: {
  25750. source: "./media/characters/maia/back.svg",
  25751. extra: 237 / 225
  25752. }
  25753. },
  25754. },
  25755. [
  25756. {
  25757. name: "Normal",
  25758. height: math.unit(3 + 4 / 12, "feet"),
  25759. default: true
  25760. },
  25761. ]
  25762. ))
  25763. characterMakers.push(() => makeCharacter(
  25764. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25765. {
  25766. front: {
  25767. height: math.unit(5 + 10 / 12, "feet"),
  25768. weight: math.unit(197, "lb"),
  25769. name: "Front",
  25770. image: {
  25771. source: "./media/characters/jabaro/front.svg",
  25772. extra: 225 / 216,
  25773. bottom: 5.06 / 230
  25774. }
  25775. },
  25776. back: {
  25777. height: math.unit(5 + 10 / 12, "feet"),
  25778. weight: math.unit(197, "lb"),
  25779. name: "Back",
  25780. image: {
  25781. source: "./media/characters/jabaro/back.svg",
  25782. extra: 225 / 219,
  25783. bottom: 1.9 / 227
  25784. }
  25785. },
  25786. },
  25787. [
  25788. {
  25789. name: "Normal",
  25790. height: math.unit(5 + 10 / 12, "feet"),
  25791. default: true
  25792. },
  25793. ]
  25794. ))
  25795. characterMakers.push(() => makeCharacter(
  25796. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25797. {
  25798. front: {
  25799. height: math.unit(5 + 8 / 12, "feet"),
  25800. weight: math.unit(139, "lb"),
  25801. name: "Front",
  25802. image: {
  25803. source: "./media/characters/risa/front.svg",
  25804. extra: 270 / 260,
  25805. bottom: 11.2 / 282
  25806. }
  25807. },
  25808. back: {
  25809. height: math.unit(5 + 8 / 12, "feet"),
  25810. weight: math.unit(139, "lb"),
  25811. name: "Back",
  25812. image: {
  25813. source: "./media/characters/risa/back.svg",
  25814. extra: 264 / 255,
  25815. bottom: 4 / 268
  25816. }
  25817. },
  25818. },
  25819. [
  25820. {
  25821. name: "Normal",
  25822. height: math.unit(5 + 8 / 12, "feet"),
  25823. default: true
  25824. },
  25825. ]
  25826. ))
  25827. characterMakers.push(() => makeCharacter(
  25828. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25829. {
  25830. front: {
  25831. height: math.unit(2 + 11 / 12, "feet"),
  25832. weight: math.unit(30, "lb"),
  25833. name: "Front",
  25834. image: {
  25835. source: "./media/characters/weatley/front.svg",
  25836. bottom: 10.7 / 414,
  25837. extra: 403.5 / 362
  25838. }
  25839. },
  25840. back: {
  25841. height: math.unit(2 + 11 / 12, "feet"),
  25842. weight: math.unit(30, "lb"),
  25843. name: "Back",
  25844. image: {
  25845. source: "./media/characters/weatley/back.svg",
  25846. bottom: 10.7 / 414,
  25847. extra: 403.5 / 362
  25848. }
  25849. },
  25850. },
  25851. [
  25852. {
  25853. name: "Normal",
  25854. height: math.unit(2 + 11 / 12, "feet"),
  25855. default: true
  25856. },
  25857. ]
  25858. ))
  25859. characterMakers.push(() => makeCharacter(
  25860. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25861. {
  25862. front: {
  25863. height: math.unit(5 + 2 / 12, "feet"),
  25864. weight: math.unit(50, "kg"),
  25865. name: "Front",
  25866. image: {
  25867. source: "./media/characters/mercury-crescent/front.svg",
  25868. extra: 1088 / 1033,
  25869. bottom: 18.9 / 1109
  25870. }
  25871. },
  25872. },
  25873. [
  25874. {
  25875. name: "Normal",
  25876. height: math.unit(5 + 2 / 12, "feet"),
  25877. default: true
  25878. },
  25879. ]
  25880. ))
  25881. characterMakers.push(() => makeCharacter(
  25882. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25883. {
  25884. front: {
  25885. height: math.unit(2, "feet"),
  25886. weight: math.unit(15, "kg"),
  25887. name: "Front",
  25888. image: {
  25889. source: "./media/characters/diamond-jones/front.svg",
  25890. extra: 727/723,
  25891. bottom: 46/773
  25892. }
  25893. },
  25894. },
  25895. [
  25896. {
  25897. name: "Normal",
  25898. height: math.unit(2, "feet"),
  25899. default: true
  25900. },
  25901. ]
  25902. ))
  25903. characterMakers.push(() => makeCharacter(
  25904. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25905. {
  25906. front: {
  25907. height: math.unit(3, "feet"),
  25908. weight: math.unit(30, "kg"),
  25909. name: "Front",
  25910. image: {
  25911. source: "./media/characters/sweet-bit/front.svg",
  25912. extra: 675 / 567,
  25913. bottom: 27.7 / 703
  25914. }
  25915. },
  25916. },
  25917. [
  25918. {
  25919. name: "Normal",
  25920. height: math.unit(3, "feet"),
  25921. default: true
  25922. },
  25923. ]
  25924. ))
  25925. characterMakers.push(() => makeCharacter(
  25926. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25927. {
  25928. side: {
  25929. height: math.unit(9.178, "feet"),
  25930. weight: math.unit(500, "lb"),
  25931. name: "Side",
  25932. image: {
  25933. source: "./media/characters/umbrazen/side.svg",
  25934. extra: 1730 / 1473,
  25935. bottom: 34.6 / 1765
  25936. }
  25937. },
  25938. },
  25939. [
  25940. {
  25941. name: "Normal",
  25942. height: math.unit(9.178, "feet"),
  25943. default: true
  25944. },
  25945. ]
  25946. ))
  25947. characterMakers.push(() => makeCharacter(
  25948. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25949. {
  25950. front: {
  25951. height: math.unit(10, "feet"),
  25952. weight: math.unit(750, "lb"),
  25953. name: "Front",
  25954. image: {
  25955. source: "./media/characters/arlist/front.svg",
  25956. extra: 961 / 778,
  25957. bottom: 6.2 / 986
  25958. }
  25959. },
  25960. },
  25961. [
  25962. {
  25963. name: "Normal",
  25964. height: math.unit(10, "feet"),
  25965. default: true
  25966. },
  25967. ]
  25968. ))
  25969. characterMakers.push(() => makeCharacter(
  25970. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25971. {
  25972. front: {
  25973. height: math.unit(5 + 1 / 12, "feet"),
  25974. weight: math.unit(110, "lb"),
  25975. name: "Front",
  25976. image: {
  25977. source: "./media/characters/aradel/front.svg",
  25978. extra: 324 / 303,
  25979. bottom: 3.6 / 329.4
  25980. }
  25981. },
  25982. },
  25983. [
  25984. {
  25985. name: "Normal",
  25986. height: math.unit(5 + 1 / 12, "feet"),
  25987. default: true
  25988. },
  25989. ]
  25990. ))
  25991. characterMakers.push(() => makeCharacter(
  25992. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25993. {
  25994. front: {
  25995. height: math.unit(3 + 8 / 12, "feet"),
  25996. weight: math.unit(50, "lb"),
  25997. name: "Front",
  25998. image: {
  25999. source: "./media/characters/serryn/front.svg",
  26000. extra: 1792 / 1656,
  26001. bottom: 43.5 / 1840
  26002. }
  26003. },
  26004. },
  26005. [
  26006. {
  26007. name: "Normal",
  26008. height: math.unit(3 + 8 / 12, "feet"),
  26009. default: true
  26010. },
  26011. ]
  26012. ))
  26013. characterMakers.push(() => makeCharacter(
  26014. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26015. {
  26016. front: {
  26017. height: math.unit(7 + 10 / 12, "feet"),
  26018. weight: math.unit(255, "lb"),
  26019. name: "Front",
  26020. image: {
  26021. source: "./media/characters/xavier-thyme/front.svg",
  26022. extra: 3733 / 3642,
  26023. bottom: 131 / 3869
  26024. }
  26025. },
  26026. frontRaven: {
  26027. height: math.unit(7 + 10 / 12, "feet"),
  26028. weight: math.unit(255, "lb"),
  26029. name: "Front (Raven)",
  26030. image: {
  26031. source: "./media/characters/xavier-thyme/front-raven.svg",
  26032. extra: 4385 / 3642,
  26033. bottom: 131 / 4517
  26034. }
  26035. },
  26036. },
  26037. [
  26038. {
  26039. name: "Normal",
  26040. height: math.unit(7 + 10 / 12, "feet"),
  26041. default: true
  26042. },
  26043. ]
  26044. ))
  26045. characterMakers.push(() => makeCharacter(
  26046. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26047. {
  26048. front: {
  26049. height: math.unit(1.6, "m"),
  26050. weight: math.unit(50, "kg"),
  26051. name: "Front",
  26052. image: {
  26053. source: "./media/characters/kiki/front.svg",
  26054. extra: 4682 / 3610,
  26055. bottom: 115 / 4777
  26056. }
  26057. },
  26058. },
  26059. [
  26060. {
  26061. name: "Normal",
  26062. height: math.unit(1.6, "meters"),
  26063. default: true
  26064. },
  26065. ]
  26066. ))
  26067. characterMakers.push(() => makeCharacter(
  26068. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26069. {
  26070. front: {
  26071. height: math.unit(50, "m"),
  26072. weight: math.unit(500, "tonnes"),
  26073. name: "Front",
  26074. image: {
  26075. source: "./media/characters/ryoko/front.svg",
  26076. extra: 4632 / 3926,
  26077. bottom: 193 / 4823
  26078. }
  26079. },
  26080. },
  26081. [
  26082. {
  26083. name: "Normal",
  26084. height: math.unit(50, "meters"),
  26085. default: true
  26086. },
  26087. ]
  26088. ))
  26089. characterMakers.push(() => makeCharacter(
  26090. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26091. {
  26092. front: {
  26093. height: math.unit(30, "m"),
  26094. weight: math.unit(22, "tonnes"),
  26095. name: "Front",
  26096. image: {
  26097. source: "./media/characters/elio/front.svg",
  26098. extra: 4582 / 3720,
  26099. bottom: 236 / 4828
  26100. }
  26101. },
  26102. },
  26103. [
  26104. {
  26105. name: "Normal",
  26106. height: math.unit(30, "meters"),
  26107. default: true
  26108. },
  26109. ]
  26110. ))
  26111. characterMakers.push(() => makeCharacter(
  26112. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26113. {
  26114. front: {
  26115. height: math.unit(6 + 3 / 12, "feet"),
  26116. weight: math.unit(120, "lb"),
  26117. name: "Front",
  26118. image: {
  26119. source: "./media/characters/azura/front.svg",
  26120. extra: 1149 / 1135,
  26121. bottom: 45 / 1194
  26122. }
  26123. },
  26124. frontClothed: {
  26125. height: math.unit(6 + 3 / 12, "feet"),
  26126. weight: math.unit(120, "lb"),
  26127. name: "Front (Clothed)",
  26128. image: {
  26129. source: "./media/characters/azura/front-clothed.svg",
  26130. extra: 1149 / 1135,
  26131. bottom: 45 / 1194
  26132. }
  26133. },
  26134. },
  26135. [
  26136. {
  26137. name: "Normal",
  26138. height: math.unit(6 + 3 / 12, "feet"),
  26139. default: true
  26140. },
  26141. {
  26142. name: "Macro",
  26143. height: math.unit(20 + 6 / 12, "feet")
  26144. },
  26145. {
  26146. name: "Megamacro",
  26147. height: math.unit(12, "miles")
  26148. },
  26149. {
  26150. name: "Gigamacro",
  26151. height: math.unit(10000, "miles")
  26152. },
  26153. {
  26154. name: "Teramacro",
  26155. height: math.unit(900000, "miles")
  26156. },
  26157. ]
  26158. ))
  26159. characterMakers.push(() => makeCharacter(
  26160. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26161. {
  26162. front: {
  26163. height: math.unit(12, "feet"),
  26164. weight: math.unit(1, "ton"),
  26165. capacity: math.unit(660000, "gallons"),
  26166. name: "Front",
  26167. image: {
  26168. source: "./media/characters/zeus/front.svg",
  26169. extra: 5005 / 4717,
  26170. bottom: 363 / 5388
  26171. }
  26172. },
  26173. },
  26174. [
  26175. {
  26176. name: "Normal",
  26177. height: math.unit(12, "feet")
  26178. },
  26179. {
  26180. name: "Preferred Size",
  26181. height: math.unit(0.5, "miles"),
  26182. default: true
  26183. },
  26184. {
  26185. name: "Giga Horse",
  26186. height: math.unit(300, "miles")
  26187. },
  26188. {
  26189. name: "Riding Planets",
  26190. height: math.unit(30, "megameters")
  26191. },
  26192. {
  26193. name: "Cosmic Giant",
  26194. height: math.unit(3, "zettameters")
  26195. },
  26196. {
  26197. name: "Breeding God",
  26198. height: math.unit(9.92e22, "yottameters")
  26199. },
  26200. ]
  26201. ))
  26202. characterMakers.push(() => makeCharacter(
  26203. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26204. {
  26205. side: {
  26206. height: math.unit(9, "feet"),
  26207. weight: math.unit(1500, "kg"),
  26208. name: "Side",
  26209. image: {
  26210. source: "./media/characters/fang/side.svg",
  26211. extra: 924 / 866,
  26212. bottom: 47.5 / 972.3
  26213. }
  26214. },
  26215. },
  26216. [
  26217. {
  26218. name: "Normal",
  26219. height: math.unit(9, "feet"),
  26220. default: true
  26221. },
  26222. {
  26223. name: "Macro",
  26224. height: math.unit(75 + 6 / 12, "feet")
  26225. },
  26226. {
  26227. name: "Teramacro",
  26228. height: math.unit(50000, "miles")
  26229. },
  26230. ]
  26231. ))
  26232. characterMakers.push(() => makeCharacter(
  26233. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26234. {
  26235. front: {
  26236. height: math.unit(10, "feet"),
  26237. weight: math.unit(2, "tons"),
  26238. name: "Front",
  26239. image: {
  26240. source: "./media/characters/rekhit/front.svg",
  26241. extra: 2796 / 2590,
  26242. bottom: 225 / 3022
  26243. }
  26244. },
  26245. },
  26246. [
  26247. {
  26248. name: "Normal",
  26249. height: math.unit(10, "feet"),
  26250. default: true
  26251. },
  26252. {
  26253. name: "Macro",
  26254. height: math.unit(500, "feet")
  26255. },
  26256. ]
  26257. ))
  26258. characterMakers.push(() => makeCharacter(
  26259. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26260. {
  26261. front: {
  26262. height: math.unit(7 + 6.451 / 12, "feet"),
  26263. weight: math.unit(310, "lb"),
  26264. name: "Front",
  26265. image: {
  26266. source: "./media/characters/dahlia-verrick/front.svg",
  26267. extra: 1488 / 1365,
  26268. bottom: 6.2 / 1495
  26269. }
  26270. },
  26271. back: {
  26272. height: math.unit(7 + 6.451 / 12, "feet"),
  26273. weight: math.unit(310, "lb"),
  26274. name: "Back",
  26275. image: {
  26276. source: "./media/characters/dahlia-verrick/back.svg",
  26277. extra: 1472 / 1351,
  26278. bottom: 5.28 / 1477
  26279. }
  26280. },
  26281. frontBusiness: {
  26282. height: math.unit(7 + 6.451 / 12, "feet"),
  26283. weight: math.unit(200, "lb"),
  26284. name: "Front (Business)",
  26285. image: {
  26286. source: "./media/characters/dahlia-verrick/front-business.svg",
  26287. extra: 1478 / 1381,
  26288. bottom: 5.5 / 1484
  26289. }
  26290. },
  26291. frontCasual: {
  26292. height: math.unit(7 + 6.451 / 12, "feet"),
  26293. weight: math.unit(200, "lb"),
  26294. name: "Front (Casual)",
  26295. image: {
  26296. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26297. extra: 1478 / 1381,
  26298. bottom: 5.5 / 1484
  26299. }
  26300. },
  26301. },
  26302. [
  26303. {
  26304. name: "Travel-Sized",
  26305. height: math.unit(7.45, "inches")
  26306. },
  26307. {
  26308. name: "Normal",
  26309. height: math.unit(7 + 6.451 / 12, "feet"),
  26310. default: true
  26311. },
  26312. {
  26313. name: "Hitting the Town",
  26314. height: math.unit(37 + 8 / 12, "feet")
  26315. },
  26316. {
  26317. name: "Stomp in the Suburbs",
  26318. height: math.unit(964 + 9.728 / 12, "feet")
  26319. },
  26320. {
  26321. name: "Sit on the City",
  26322. height: math.unit(61747 + 10.592 / 12, "feet")
  26323. },
  26324. {
  26325. name: "Glomp the Globe",
  26326. height: math.unit(252919327 + 4.832 / 12, "feet")
  26327. },
  26328. ]
  26329. ))
  26330. characterMakers.push(() => makeCharacter(
  26331. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26332. {
  26333. front: {
  26334. height: math.unit(6 + 4 / 12, "feet"),
  26335. weight: math.unit(320, "lb"),
  26336. name: "Front",
  26337. image: {
  26338. source: "./media/characters/balina-mahigan/front.svg",
  26339. extra: 447 / 428,
  26340. bottom: 18 / 466
  26341. }
  26342. },
  26343. back: {
  26344. height: math.unit(6 + 4 / 12, "feet"),
  26345. weight: math.unit(320, "lb"),
  26346. name: "Back",
  26347. image: {
  26348. source: "./media/characters/balina-mahigan/back.svg",
  26349. extra: 445 / 428,
  26350. bottom: 4.07 / 448
  26351. }
  26352. },
  26353. arm: {
  26354. height: math.unit(1.88, "feet"),
  26355. name: "Arm",
  26356. image: {
  26357. source: "./media/characters/balina-mahigan/arm.svg"
  26358. }
  26359. },
  26360. backPort: {
  26361. height: math.unit(0.685, "feet"),
  26362. name: "Back Port",
  26363. image: {
  26364. source: "./media/characters/balina-mahigan/back-port.svg"
  26365. }
  26366. },
  26367. hoofpaw: {
  26368. height: math.unit(1.41, "feet"),
  26369. name: "Hoofpaw",
  26370. image: {
  26371. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26372. }
  26373. },
  26374. leftHandBack: {
  26375. height: math.unit(0.938, "feet"),
  26376. name: "Left Hand (Back)",
  26377. image: {
  26378. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26379. }
  26380. },
  26381. leftHandFront: {
  26382. height: math.unit(0.938, "feet"),
  26383. name: "Left Hand (Front)",
  26384. image: {
  26385. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26386. }
  26387. },
  26388. rightHandBack: {
  26389. height: math.unit(0.95, "feet"),
  26390. name: "Right Hand (Back)",
  26391. image: {
  26392. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26393. }
  26394. },
  26395. rightHandFront: {
  26396. height: math.unit(0.95, "feet"),
  26397. name: "Right Hand (Front)",
  26398. image: {
  26399. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26400. }
  26401. },
  26402. },
  26403. [
  26404. {
  26405. name: "Normal",
  26406. height: math.unit(6 + 4 / 12, "feet"),
  26407. default: true
  26408. },
  26409. ]
  26410. ))
  26411. characterMakers.push(() => makeCharacter(
  26412. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26413. {
  26414. front: {
  26415. height: math.unit(6, "feet"),
  26416. weight: math.unit(320, "lb"),
  26417. name: "Front",
  26418. image: {
  26419. source: "./media/characters/balina-mejeri/front.svg",
  26420. extra: 517 / 488,
  26421. bottom: 44.2 / 561
  26422. }
  26423. },
  26424. },
  26425. [
  26426. {
  26427. name: "Normal",
  26428. height: math.unit(6 + 4 / 12, "feet")
  26429. },
  26430. {
  26431. name: "Business",
  26432. height: math.unit(155, "feet"),
  26433. default: true
  26434. },
  26435. ]
  26436. ))
  26437. characterMakers.push(() => makeCharacter(
  26438. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26439. {
  26440. kneeling: {
  26441. height: math.unit(6 + 4 / 12, "feet"),
  26442. weight: math.unit(300 * 20, "lb"),
  26443. name: "Kneeling",
  26444. image: {
  26445. source: "./media/characters/balbarian/kneeling.svg",
  26446. extra: 922 / 862,
  26447. bottom: 42.4 / 965
  26448. }
  26449. },
  26450. },
  26451. [
  26452. {
  26453. name: "Normal",
  26454. height: math.unit(6 + 4 / 12, "feet")
  26455. },
  26456. {
  26457. name: "Treasured",
  26458. height: math.unit(18 + 9 / 12, "feet"),
  26459. default: true
  26460. },
  26461. {
  26462. name: "Macro",
  26463. height: math.unit(900, "feet")
  26464. },
  26465. ]
  26466. ))
  26467. characterMakers.push(() => makeCharacter(
  26468. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26469. {
  26470. front: {
  26471. height: math.unit(6 + 4 / 12, "feet"),
  26472. weight: math.unit(325, "lb"),
  26473. name: "Front",
  26474. image: {
  26475. source: "./media/characters/balina-amarini/front.svg",
  26476. extra: 415 / 403,
  26477. bottom: 19 / 433.4
  26478. }
  26479. },
  26480. back: {
  26481. height: math.unit(6 + 4 / 12, "feet"),
  26482. weight: math.unit(325, "lb"),
  26483. name: "Back",
  26484. image: {
  26485. source: "./media/characters/balina-amarini/back.svg",
  26486. extra: 415 / 403,
  26487. bottom: 13.5 / 432
  26488. }
  26489. },
  26490. overdrive: {
  26491. height: math.unit(6 + 4 / 12, "feet"),
  26492. weight: math.unit(400, "lb"),
  26493. name: "Overdrive",
  26494. image: {
  26495. source: "./media/characters/balina-amarini/overdrive.svg",
  26496. extra: 269 / 259,
  26497. bottom: 12 / 282
  26498. }
  26499. },
  26500. },
  26501. [
  26502. {
  26503. name: "Boom",
  26504. height: math.unit(9 + 10 / 12, "feet"),
  26505. default: true
  26506. },
  26507. {
  26508. name: "Macro",
  26509. height: math.unit(280, "feet")
  26510. },
  26511. ]
  26512. ))
  26513. characterMakers.push(() => makeCharacter(
  26514. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26515. {
  26516. goddess: {
  26517. height: math.unit(600, "feet"),
  26518. weight: math.unit(2000000, "tons"),
  26519. name: "Goddess",
  26520. image: {
  26521. source: "./media/characters/lady-kubwa/goddess.svg",
  26522. extra: 1240.5 / 1223,
  26523. bottom: 22 / 1263
  26524. }
  26525. },
  26526. goddesser: {
  26527. height: math.unit(900, "feet"),
  26528. weight: math.unit(20000000, "lb"),
  26529. name: "Goddess-er",
  26530. image: {
  26531. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26532. extra: 899 / 888,
  26533. bottom: 12.6 / 912
  26534. }
  26535. },
  26536. },
  26537. [
  26538. {
  26539. name: "Macro",
  26540. height: math.unit(600, "feet"),
  26541. default: true
  26542. },
  26543. {
  26544. name: "Megamacro",
  26545. height: math.unit(250, "miles")
  26546. },
  26547. ]
  26548. ))
  26549. characterMakers.push(() => makeCharacter(
  26550. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26551. {
  26552. front: {
  26553. height: math.unit(7 + 7 / 12, "feet"),
  26554. weight: math.unit(250, "lb"),
  26555. name: "Front",
  26556. image: {
  26557. source: "./media/characters/tala-grovehorn/front.svg",
  26558. extra: 2636 / 2525,
  26559. bottom: 147 / 2781
  26560. }
  26561. },
  26562. back: {
  26563. height: math.unit(7 + 7 / 12, "feet"),
  26564. weight: math.unit(250, "lb"),
  26565. name: "Back",
  26566. image: {
  26567. source: "./media/characters/tala-grovehorn/back.svg",
  26568. extra: 2635 / 2539,
  26569. bottom: 100 / 2732.8
  26570. }
  26571. },
  26572. mouth: {
  26573. height: math.unit(1.15, "feet"),
  26574. name: "Mouth",
  26575. image: {
  26576. source: "./media/characters/tala-grovehorn/mouth.svg"
  26577. }
  26578. },
  26579. dick: {
  26580. height: math.unit(2.36, "feet"),
  26581. name: "Dick",
  26582. image: {
  26583. source: "./media/characters/tala-grovehorn/dick.svg"
  26584. }
  26585. },
  26586. slit: {
  26587. height: math.unit(0.61, "feet"),
  26588. name: "Slit",
  26589. image: {
  26590. source: "./media/characters/tala-grovehorn/slit.svg"
  26591. }
  26592. },
  26593. },
  26594. [
  26595. ]
  26596. ))
  26597. characterMakers.push(() => makeCharacter(
  26598. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26599. {
  26600. front: {
  26601. height: math.unit(7 + 7 / 12, "feet"),
  26602. weight: math.unit(225, "lb"),
  26603. name: "Front",
  26604. image: {
  26605. source: "./media/characters/epona/front.svg",
  26606. extra: 2445 / 2290,
  26607. bottom: 251 / 2696
  26608. }
  26609. },
  26610. back: {
  26611. height: math.unit(7 + 7 / 12, "feet"),
  26612. weight: math.unit(225, "lb"),
  26613. name: "Back",
  26614. image: {
  26615. source: "./media/characters/epona/back.svg",
  26616. extra: 2546 / 2408,
  26617. bottom: 44 / 2589
  26618. }
  26619. },
  26620. genitals: {
  26621. height: math.unit(1.5, "feet"),
  26622. name: "Genitals",
  26623. image: {
  26624. source: "./media/characters/epona/genitals.svg"
  26625. }
  26626. },
  26627. },
  26628. [
  26629. {
  26630. name: "Normal",
  26631. height: math.unit(7 + 7 / 12, "feet"),
  26632. default: true
  26633. },
  26634. ]
  26635. ))
  26636. characterMakers.push(() => makeCharacter(
  26637. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26638. {
  26639. front: {
  26640. height: math.unit(7, "feet"),
  26641. weight: math.unit(518, "lb"),
  26642. name: "Front",
  26643. image: {
  26644. source: "./media/characters/avia-bloodbourn/front.svg",
  26645. extra: 1466 / 1350,
  26646. bottom: 65 / 1527
  26647. }
  26648. },
  26649. },
  26650. [
  26651. ]
  26652. ))
  26653. characterMakers.push(() => makeCharacter(
  26654. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26655. {
  26656. front: {
  26657. height: math.unit(9.35, "feet"),
  26658. weight: math.unit(600, "lb"),
  26659. name: "Front",
  26660. image: {
  26661. source: "./media/characters/amera/front.svg",
  26662. extra: 891 / 818,
  26663. bottom: 30 / 922.7
  26664. }
  26665. },
  26666. back: {
  26667. height: math.unit(9.35, "feet"),
  26668. weight: math.unit(600, "lb"),
  26669. name: "Back",
  26670. image: {
  26671. source: "./media/characters/amera/back.svg",
  26672. extra: 876 / 824,
  26673. bottom: 6.8 / 884
  26674. }
  26675. },
  26676. dick: {
  26677. height: math.unit(2.14, "feet"),
  26678. name: "Dick",
  26679. image: {
  26680. source: "./media/characters/amera/dick.svg"
  26681. }
  26682. },
  26683. },
  26684. [
  26685. {
  26686. name: "Normal",
  26687. height: math.unit(9.35, "feet"),
  26688. default: true
  26689. },
  26690. ]
  26691. ))
  26692. characterMakers.push(() => makeCharacter(
  26693. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26694. {
  26695. kneeling: {
  26696. height: math.unit(3 + 4 / 12, "feet"),
  26697. weight: math.unit(90, "lb"),
  26698. name: "Kneeling",
  26699. image: {
  26700. source: "./media/characters/rosewen/kneeling.svg",
  26701. extra: 1835 / 1571,
  26702. bottom: 27.7 / 1862
  26703. }
  26704. },
  26705. },
  26706. [
  26707. {
  26708. name: "Normal",
  26709. height: math.unit(3 + 4 / 12, "feet"),
  26710. default: true
  26711. },
  26712. ]
  26713. ))
  26714. characterMakers.push(() => makeCharacter(
  26715. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26716. {
  26717. front: {
  26718. height: math.unit(5 + 10 / 12, "feet"),
  26719. weight: math.unit(200, "lb"),
  26720. name: "Front",
  26721. image: {
  26722. source: "./media/characters/sabah/front.svg",
  26723. extra: 849 / 763,
  26724. bottom: 33.9 / 881
  26725. }
  26726. },
  26727. },
  26728. [
  26729. {
  26730. name: "Normal",
  26731. height: math.unit(5 + 10 / 12, "feet"),
  26732. default: true
  26733. },
  26734. ]
  26735. ))
  26736. characterMakers.push(() => makeCharacter(
  26737. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26738. {
  26739. front: {
  26740. height: math.unit(3 + 5 / 12, "feet"),
  26741. weight: math.unit(40, "kg"),
  26742. name: "Front",
  26743. image: {
  26744. source: "./media/characters/purple-flame/front.svg",
  26745. extra: 1577 / 1412,
  26746. bottom: 97 / 1694
  26747. }
  26748. },
  26749. frontDressed: {
  26750. height: math.unit(3 + 5 / 12, "feet"),
  26751. weight: math.unit(40, "kg"),
  26752. name: "Front (Dressed)",
  26753. image: {
  26754. source: "./media/characters/purple-flame/front-dressed.svg",
  26755. extra: 1577 / 1412,
  26756. bottom: 97 / 1694
  26757. }
  26758. },
  26759. headphones: {
  26760. height: math.unit(0.85, "feet"),
  26761. name: "Headphones",
  26762. image: {
  26763. source: "./media/characters/purple-flame/headphones.svg"
  26764. }
  26765. },
  26766. },
  26767. [
  26768. {
  26769. name: "Really Small",
  26770. height: math.unit(5, "cm")
  26771. },
  26772. {
  26773. name: "Micro",
  26774. height: math.unit(1 + 5 / 12, "feet")
  26775. },
  26776. {
  26777. name: "Normal",
  26778. height: math.unit(3 + 5 / 12, "feet"),
  26779. default: true
  26780. },
  26781. {
  26782. name: "Minimacro",
  26783. height: math.unit(125, "feet")
  26784. },
  26785. {
  26786. name: "Macro",
  26787. height: math.unit(0.5, "miles")
  26788. },
  26789. {
  26790. name: "Megamacro",
  26791. height: math.unit(50, "miles")
  26792. },
  26793. {
  26794. name: "Gigantic",
  26795. height: math.unit(750, "miles")
  26796. },
  26797. {
  26798. name: "Planetary",
  26799. height: math.unit(15000, "miles")
  26800. },
  26801. ]
  26802. ))
  26803. characterMakers.push(() => makeCharacter(
  26804. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26805. {
  26806. front: {
  26807. height: math.unit(14, "feet"),
  26808. weight: math.unit(959, "lb"),
  26809. name: "Front",
  26810. image: {
  26811. source: "./media/characters/arsenal/front.svg",
  26812. extra: 2357 / 2157,
  26813. bottom: 93 / 2458
  26814. }
  26815. },
  26816. },
  26817. [
  26818. {
  26819. name: "Normal",
  26820. height: math.unit(14, "feet"),
  26821. default: true
  26822. },
  26823. ]
  26824. ))
  26825. characterMakers.push(() => makeCharacter(
  26826. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26827. {
  26828. front: {
  26829. height: math.unit(6, "feet"),
  26830. weight: math.unit(150, "lb"),
  26831. name: "Front",
  26832. image: {
  26833. source: "./media/characters/adira/front.svg",
  26834. extra: 1078 / 1029,
  26835. bottom: 87 / 1166
  26836. }
  26837. },
  26838. },
  26839. [
  26840. {
  26841. name: "Micro",
  26842. height: math.unit(4, "inches"),
  26843. default: true
  26844. },
  26845. {
  26846. name: "Macro",
  26847. height: math.unit(50, "feet")
  26848. },
  26849. ]
  26850. ))
  26851. characterMakers.push(() => makeCharacter(
  26852. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26853. {
  26854. front: {
  26855. height: math.unit(16, "feet"),
  26856. weight: math.unit(1000, "lb"),
  26857. name: "Front",
  26858. image: {
  26859. source: "./media/characters/grim/front.svg",
  26860. extra: 622 / 614,
  26861. bottom: 18.1 / 642
  26862. }
  26863. },
  26864. back: {
  26865. height: math.unit(16, "feet"),
  26866. weight: math.unit(1000, "lb"),
  26867. name: "Back",
  26868. image: {
  26869. source: "./media/characters/grim/back.svg",
  26870. extra: 610.6 / 602,
  26871. bottom: 40.8 / 652
  26872. }
  26873. },
  26874. hunched: {
  26875. height: math.unit(9.75, "feet"),
  26876. weight: math.unit(1000, "lb"),
  26877. name: "Hunched",
  26878. image: {
  26879. source: "./media/characters/grim/hunched.svg",
  26880. extra: 304 / 297,
  26881. bottom: 35.4 / 394
  26882. }
  26883. },
  26884. },
  26885. [
  26886. {
  26887. name: "Normal",
  26888. height: math.unit(16, "feet"),
  26889. default: true
  26890. },
  26891. ]
  26892. ))
  26893. characterMakers.push(() => makeCharacter(
  26894. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26895. {
  26896. front: {
  26897. height: math.unit(2.3, "meters"),
  26898. weight: math.unit(300, "lb"),
  26899. name: "Front",
  26900. image: {
  26901. source: "./media/characters/sinja/front-sfw.svg",
  26902. extra: 1393 / 1294,
  26903. bottom: 70 / 1463
  26904. }
  26905. },
  26906. frontNsfw: {
  26907. height: math.unit(2.3, "meters"),
  26908. weight: math.unit(300, "lb"),
  26909. name: "Front (NSFW)",
  26910. image: {
  26911. source: "./media/characters/sinja/front-nsfw.svg",
  26912. extra: 1393 / 1294,
  26913. bottom: 70 / 1463
  26914. }
  26915. },
  26916. back: {
  26917. height: math.unit(2.3, "meters"),
  26918. weight: math.unit(300, "lb"),
  26919. name: "Back",
  26920. image: {
  26921. source: "./media/characters/sinja/back.svg",
  26922. extra: 1393 / 1294,
  26923. bottom: 70 / 1463
  26924. }
  26925. },
  26926. head: {
  26927. height: math.unit(1.771, "feet"),
  26928. name: "Head",
  26929. image: {
  26930. source: "./media/characters/sinja/head.svg"
  26931. }
  26932. },
  26933. slit: {
  26934. height: math.unit(0.8, "feet"),
  26935. name: "Slit",
  26936. image: {
  26937. source: "./media/characters/sinja/slit.svg"
  26938. }
  26939. },
  26940. },
  26941. [
  26942. {
  26943. name: "Normal",
  26944. height: math.unit(2.3, "meters")
  26945. },
  26946. {
  26947. name: "Macro",
  26948. height: math.unit(91, "meters"),
  26949. default: true
  26950. },
  26951. {
  26952. name: "Megamacro",
  26953. height: math.unit(91440, "meters")
  26954. },
  26955. {
  26956. name: "Gigamacro",
  26957. height: math.unit(60960000, "meters")
  26958. },
  26959. {
  26960. name: "Teramacro",
  26961. height: math.unit(9144000000, "meters")
  26962. },
  26963. ]
  26964. ))
  26965. characterMakers.push(() => makeCharacter(
  26966. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26967. {
  26968. front: {
  26969. height: math.unit(1.7, "meters"),
  26970. weight: math.unit(130, "lb"),
  26971. name: "Front",
  26972. image: {
  26973. source: "./media/characters/kyu/front.svg",
  26974. extra: 415 / 395,
  26975. bottom: 5 / 420
  26976. }
  26977. },
  26978. head: {
  26979. height: math.unit(1.75, "feet"),
  26980. name: "Head",
  26981. image: {
  26982. source: "./media/characters/kyu/head.svg"
  26983. }
  26984. },
  26985. foot: {
  26986. height: math.unit(0.81, "feet"),
  26987. name: "Foot",
  26988. image: {
  26989. source: "./media/characters/kyu/foot.svg"
  26990. }
  26991. },
  26992. },
  26993. [
  26994. {
  26995. name: "Normal",
  26996. height: math.unit(1.7, "meters")
  26997. },
  26998. {
  26999. name: "Macro",
  27000. height: math.unit(131, "feet"),
  27001. default: true
  27002. },
  27003. {
  27004. name: "Megamacro",
  27005. height: math.unit(91440, "meters")
  27006. },
  27007. {
  27008. name: "Gigamacro",
  27009. height: math.unit(60960000, "meters")
  27010. },
  27011. {
  27012. name: "Teramacro",
  27013. height: math.unit(9144000000, "meters")
  27014. },
  27015. ]
  27016. ))
  27017. characterMakers.push(() => makeCharacter(
  27018. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27019. {
  27020. front: {
  27021. height: math.unit(7 + 1 / 12, "feet"),
  27022. weight: math.unit(250, "lb"),
  27023. name: "Front",
  27024. image: {
  27025. source: "./media/characters/joey/front.svg",
  27026. extra: 1791 / 1537,
  27027. bottom: 28 / 1816
  27028. }
  27029. },
  27030. },
  27031. [
  27032. {
  27033. name: "Micro",
  27034. height: math.unit(3, "inches")
  27035. },
  27036. {
  27037. name: "Normal",
  27038. height: math.unit(7 + 1 / 12, "feet"),
  27039. default: true
  27040. },
  27041. ]
  27042. ))
  27043. characterMakers.push(() => makeCharacter(
  27044. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27045. {
  27046. front: {
  27047. height: math.unit(165, "cm"),
  27048. weight: math.unit(140, "lb"),
  27049. name: "Front",
  27050. image: {
  27051. source: "./media/characters/sam-evans/front.svg",
  27052. extra: 3417 / 3230,
  27053. bottom: 41.3 / 3417
  27054. }
  27055. },
  27056. frontSixTails: {
  27057. height: math.unit(165, "cm"),
  27058. weight: math.unit(140, "lb"),
  27059. name: "Front-six-tails",
  27060. image: {
  27061. source: "./media/characters/sam-evans/front-six-tails.svg",
  27062. extra: 3417 / 3230,
  27063. bottom: 41.3 / 3417
  27064. }
  27065. },
  27066. back: {
  27067. height: math.unit(165, "cm"),
  27068. weight: math.unit(140, "lb"),
  27069. name: "Back",
  27070. image: {
  27071. source: "./media/characters/sam-evans/back.svg",
  27072. extra: 3227 / 3032,
  27073. bottom: 6.8 / 3234
  27074. }
  27075. },
  27076. face: {
  27077. height: math.unit(0.68, "feet"),
  27078. name: "Face",
  27079. image: {
  27080. source: "./media/characters/sam-evans/face.svg"
  27081. }
  27082. },
  27083. },
  27084. [
  27085. {
  27086. name: "Normal",
  27087. height: math.unit(165, "cm"),
  27088. default: true
  27089. },
  27090. {
  27091. name: "Macro",
  27092. height: math.unit(100, "meters")
  27093. },
  27094. {
  27095. name: "Macro+",
  27096. height: math.unit(800, "meters")
  27097. },
  27098. {
  27099. name: "Macro++",
  27100. height: math.unit(3, "km")
  27101. },
  27102. {
  27103. name: "Macro+++",
  27104. height: math.unit(30, "km")
  27105. },
  27106. ]
  27107. ))
  27108. characterMakers.push(() => makeCharacter(
  27109. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27110. {
  27111. front: {
  27112. height: math.unit(10, "feet"),
  27113. weight: math.unit(750, "lb"),
  27114. name: "Front",
  27115. image: {
  27116. source: "./media/characters/juliet-a/front.svg",
  27117. extra: 1766 / 1720,
  27118. bottom: 43 / 1809
  27119. }
  27120. },
  27121. back: {
  27122. height: math.unit(10, "feet"),
  27123. weight: math.unit(750, "lb"),
  27124. name: "Back",
  27125. image: {
  27126. source: "./media/characters/juliet-a/back.svg",
  27127. extra: 1781 / 1734,
  27128. bottom: 35 / 1810,
  27129. }
  27130. },
  27131. },
  27132. [
  27133. {
  27134. name: "Normal",
  27135. height: math.unit(10, "feet"),
  27136. default: true
  27137. },
  27138. {
  27139. name: "Dragon Form",
  27140. height: math.unit(250, "feet")
  27141. },
  27142. {
  27143. name: "Macro",
  27144. height: math.unit(1000, "feet")
  27145. },
  27146. {
  27147. name: "Megamacro",
  27148. height: math.unit(10000, "feet")
  27149. }
  27150. ]
  27151. ))
  27152. characterMakers.push(() => makeCharacter(
  27153. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27154. {
  27155. regular: {
  27156. height: math.unit(7 + 3 / 12, "feet"),
  27157. weight: math.unit(260, "lb"),
  27158. name: "Regular",
  27159. image: {
  27160. source: "./media/characters/wild/regular.svg",
  27161. extra: 97.45 / 92,
  27162. bottom: 6.8 / 104.3
  27163. }
  27164. },
  27165. biggums: {
  27166. height: math.unit(8 + 6 / 12, "feet"),
  27167. weight: math.unit(425, "lb"),
  27168. name: "Biggums",
  27169. image: {
  27170. source: "./media/characters/wild/biggums.svg",
  27171. extra: 97.45 / 92,
  27172. bottom: 7.5 / 132.34
  27173. }
  27174. },
  27175. mawRegular: {
  27176. height: math.unit(1.24, "feet"),
  27177. name: "Maw (Regular)",
  27178. image: {
  27179. source: "./media/characters/wild/maw.svg"
  27180. }
  27181. },
  27182. mawBiggums: {
  27183. height: math.unit(1.47, "feet"),
  27184. name: "Maw (Biggums)",
  27185. image: {
  27186. source: "./media/characters/wild/maw.svg"
  27187. }
  27188. },
  27189. },
  27190. [
  27191. {
  27192. name: "Normal",
  27193. height: math.unit(7 + 3 / 12, "feet"),
  27194. default: true
  27195. },
  27196. ]
  27197. ))
  27198. characterMakers.push(() => makeCharacter(
  27199. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27200. {
  27201. front: {
  27202. height: math.unit(2.5, "meters"),
  27203. weight: math.unit(200, "kg"),
  27204. name: "Front",
  27205. image: {
  27206. source: "./media/characters/vidar/front.svg",
  27207. extra: 2994 / 2795,
  27208. bottom: 56 / 3061
  27209. }
  27210. },
  27211. back: {
  27212. height: math.unit(2.5, "meters"),
  27213. weight: math.unit(200, "kg"),
  27214. name: "Back",
  27215. image: {
  27216. source: "./media/characters/vidar/back.svg",
  27217. extra: 3131 / 2928,
  27218. bottom: 13.5 / 3141.5
  27219. }
  27220. },
  27221. feral: {
  27222. height: math.unit(2.5, "meters"),
  27223. weight: math.unit(2000, "kg"),
  27224. name: "Feral",
  27225. image: {
  27226. source: "./media/characters/vidar/feral.svg",
  27227. extra: 2790 / 1765,
  27228. bottom: 6 / 2796
  27229. }
  27230. },
  27231. },
  27232. [
  27233. {
  27234. name: "Normal",
  27235. height: math.unit(2.5, "meters"),
  27236. default: true
  27237. },
  27238. {
  27239. name: "Macro",
  27240. height: math.unit(100, "meters")
  27241. },
  27242. ]
  27243. ))
  27244. characterMakers.push(() => makeCharacter(
  27245. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27246. {
  27247. front: {
  27248. height: math.unit(5 + 9 / 12, "feet"),
  27249. weight: math.unit(120, "lb"),
  27250. name: "Front",
  27251. image: {
  27252. source: "./media/characters/ash/front.svg",
  27253. extra: 2189 / 1961,
  27254. bottom: 5.2 / 2194
  27255. }
  27256. },
  27257. },
  27258. [
  27259. {
  27260. name: "Normal",
  27261. height: math.unit(5 + 9 / 12, "feet"),
  27262. default: true
  27263. },
  27264. ]
  27265. ))
  27266. characterMakers.push(() => makeCharacter(
  27267. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27268. {
  27269. front: {
  27270. height: math.unit(9, "feet"),
  27271. weight: math.unit(10000, "lb"),
  27272. name: "Front",
  27273. image: {
  27274. source: "./media/characters/gygabite/front.svg",
  27275. bottom: 31.7 / 537.8,
  27276. extra: 505 / 370
  27277. }
  27278. },
  27279. },
  27280. [
  27281. {
  27282. name: "Normal",
  27283. height: math.unit(9, "feet"),
  27284. default: true
  27285. },
  27286. ]
  27287. ))
  27288. characterMakers.push(() => makeCharacter(
  27289. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27290. {
  27291. front: {
  27292. height: math.unit(12, "feet"),
  27293. weight: math.unit(35000, "lb"),
  27294. name: "Front",
  27295. image: {
  27296. source: "./media/characters/p0tat0/front.svg",
  27297. extra: 1065 / 921,
  27298. bottom: 55.7 / 1121.25
  27299. }
  27300. },
  27301. },
  27302. [
  27303. {
  27304. name: "Normal",
  27305. height: math.unit(12, "feet"),
  27306. default: true
  27307. },
  27308. ]
  27309. ))
  27310. characterMakers.push(() => makeCharacter(
  27311. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27312. {
  27313. side: {
  27314. height: math.unit(6.5, "feet"),
  27315. weight: math.unit(800, "lb"),
  27316. name: "Side",
  27317. image: {
  27318. source: "./media/characters/dusk/side.svg",
  27319. extra: 615 / 373,
  27320. bottom: 53 / 664
  27321. }
  27322. },
  27323. sitting: {
  27324. height: math.unit(7, "feet"),
  27325. weight: math.unit(800, "lb"),
  27326. name: "Sitting",
  27327. image: {
  27328. source: "./media/characters/dusk/sitting.svg",
  27329. extra: 753 / 425,
  27330. bottom: 33 / 774
  27331. }
  27332. },
  27333. head: {
  27334. height: math.unit(6.1, "feet"),
  27335. name: "Head",
  27336. image: {
  27337. source: "./media/characters/dusk/head.svg"
  27338. }
  27339. },
  27340. },
  27341. [
  27342. {
  27343. name: "Normal",
  27344. height: math.unit(7, "feet"),
  27345. default: true
  27346. },
  27347. ]
  27348. ))
  27349. characterMakers.push(() => makeCharacter(
  27350. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27351. {
  27352. front: {
  27353. height: math.unit(15, "feet"),
  27354. weight: math.unit(7000, "lb"),
  27355. name: "Front",
  27356. image: {
  27357. source: "./media/characters/jay-direwolf/front.svg",
  27358. extra: 1810 / 1732,
  27359. bottom: 66 / 1892
  27360. }
  27361. },
  27362. },
  27363. [
  27364. {
  27365. name: "Normal",
  27366. height: math.unit(15, "feet"),
  27367. default: true
  27368. },
  27369. ]
  27370. ))
  27371. characterMakers.push(() => makeCharacter(
  27372. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27373. {
  27374. front: {
  27375. height: math.unit(4 + 9 / 12, "feet"),
  27376. weight: math.unit(130, "lb"),
  27377. name: "Front",
  27378. image: {
  27379. source: "./media/characters/anchovie/front.svg",
  27380. extra: 382 / 350,
  27381. bottom: 25 / 409
  27382. }
  27383. },
  27384. back: {
  27385. height: math.unit(4 + 9 / 12, "feet"),
  27386. weight: math.unit(130, "lb"),
  27387. name: "Back",
  27388. image: {
  27389. source: "./media/characters/anchovie/back.svg",
  27390. extra: 385 / 352,
  27391. bottom: 16.6 / 402
  27392. }
  27393. },
  27394. frontDressed: {
  27395. height: math.unit(4 + 9 / 12, "feet"),
  27396. weight: math.unit(130, "lb"),
  27397. name: "Front (Dressed)",
  27398. image: {
  27399. source: "./media/characters/anchovie/front-dressed.svg",
  27400. extra: 382 / 350,
  27401. bottom: 25 / 409
  27402. }
  27403. },
  27404. backDressed: {
  27405. height: math.unit(4 + 9 / 12, "feet"),
  27406. weight: math.unit(130, "lb"),
  27407. name: "Back (Dressed)",
  27408. image: {
  27409. source: "./media/characters/anchovie/back-dressed.svg",
  27410. extra: 385 / 352,
  27411. bottom: 16.6 / 402
  27412. }
  27413. },
  27414. },
  27415. [
  27416. {
  27417. name: "Micro",
  27418. height: math.unit(6.4, "inches")
  27419. },
  27420. {
  27421. name: "Normal",
  27422. height: math.unit(4 + 9 / 12, "feet"),
  27423. default: true
  27424. },
  27425. ]
  27426. ))
  27427. characterMakers.push(() => makeCharacter(
  27428. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27429. {
  27430. front: {
  27431. height: math.unit(2, "meters"),
  27432. weight: math.unit(180, "lb"),
  27433. name: "Front",
  27434. image: {
  27435. source: "./media/characters/acidrenamon/front.svg",
  27436. extra: 987 / 890,
  27437. bottom: 22.8 / 1009
  27438. }
  27439. },
  27440. back: {
  27441. height: math.unit(2, "meters"),
  27442. weight: math.unit(180, "lb"),
  27443. name: "Back",
  27444. image: {
  27445. source: "./media/characters/acidrenamon/back.svg",
  27446. extra: 983 / 891,
  27447. bottom: 8.4 / 992
  27448. }
  27449. },
  27450. head: {
  27451. height: math.unit(1.92, "feet"),
  27452. name: "Head",
  27453. image: {
  27454. source: "./media/characters/acidrenamon/head.svg"
  27455. }
  27456. },
  27457. rump: {
  27458. height: math.unit(1.72, "feet"),
  27459. name: "Rump",
  27460. image: {
  27461. source: "./media/characters/acidrenamon/rump.svg"
  27462. }
  27463. },
  27464. tail: {
  27465. height: math.unit(4.2, "feet"),
  27466. name: "Tail",
  27467. image: {
  27468. source: "./media/characters/acidrenamon/tail.svg"
  27469. }
  27470. },
  27471. },
  27472. [
  27473. {
  27474. name: "Normal",
  27475. height: math.unit(2, "meters"),
  27476. default: true
  27477. },
  27478. {
  27479. name: "Minimacro",
  27480. height: math.unit(7, "meters")
  27481. },
  27482. {
  27483. name: "Macro",
  27484. height: math.unit(200, "meters")
  27485. },
  27486. {
  27487. name: "Gigamacro",
  27488. height: math.unit(0.2, "earths")
  27489. },
  27490. ]
  27491. ))
  27492. characterMakers.push(() => makeCharacter(
  27493. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27494. {
  27495. front: {
  27496. height: math.unit(6, "feet"),
  27497. weight: math.unit(150, "lb"),
  27498. name: "Front",
  27499. image: {
  27500. source: "./media/characters/kenzie-lee/front.svg",
  27501. extra: 1525 / 1465,
  27502. bottom: 45 / 1570
  27503. }
  27504. },
  27505. side: {
  27506. height: math.unit(6, "feet"),
  27507. weight: math.unit(150, "lb"),
  27508. name: "Side",
  27509. image: {
  27510. source: "./media/characters/kenzie-lee/side.svg",
  27511. extra: 5505 / 5383,
  27512. bottom: 60 / 5573
  27513. }
  27514. },
  27515. paw: {
  27516. height: math.unit(0.57, "feet"),
  27517. name: "Paw",
  27518. image: {
  27519. source: "./media/characters/kenzie-lee/paw.svg"
  27520. }
  27521. },
  27522. },
  27523. [
  27524. {
  27525. name: "Normal",
  27526. height: math.unit(152, "feet"),
  27527. default: true
  27528. },
  27529. {
  27530. name: "Megamacro",
  27531. height: math.unit(7, "miles")
  27532. },
  27533. {
  27534. name: "Gigamacro",
  27535. height: math.unit(8000, "miles")
  27536. },
  27537. ]
  27538. ))
  27539. characterMakers.push(() => makeCharacter(
  27540. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27541. {
  27542. side: {
  27543. height: math.unit(6, "feet"),
  27544. weight: math.unit(150, "lb"),
  27545. name: "Side",
  27546. image: {
  27547. source: "./media/characters/withers/side.svg",
  27548. extra: 1830 / 1728,
  27549. bottom: 96 / 1927
  27550. }
  27551. },
  27552. front: {
  27553. height: math.unit(6, "feet"),
  27554. weight: math.unit(150, "lb"),
  27555. name: "Front",
  27556. image: {
  27557. source: "./media/characters/withers/front.svg",
  27558. extra: 1514 / 1438,
  27559. bottom: 118 / 1632
  27560. }
  27561. },
  27562. },
  27563. [
  27564. {
  27565. name: "Macro",
  27566. height: math.unit(168, "feet"),
  27567. default: true
  27568. },
  27569. {
  27570. name: "Megamacro",
  27571. height: math.unit(15, "miles")
  27572. }
  27573. ]
  27574. ))
  27575. characterMakers.push(() => makeCharacter(
  27576. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27577. {
  27578. front: {
  27579. height: math.unit(6 + 7 / 12, "feet"),
  27580. weight: math.unit(250, "lb"),
  27581. name: "Front",
  27582. image: {
  27583. source: "./media/characters/nemoskii/front.svg",
  27584. extra: 2270 / 1734,
  27585. bottom: 86 / 2354
  27586. }
  27587. },
  27588. back: {
  27589. height: math.unit(6 + 7 / 12, "feet"),
  27590. weight: math.unit(250, "lb"),
  27591. name: "Back",
  27592. image: {
  27593. source: "./media/characters/nemoskii/back.svg",
  27594. extra: 1845 / 1788,
  27595. bottom: 10.5 / 1852
  27596. }
  27597. },
  27598. head: {
  27599. height: math.unit(1.31, "feet"),
  27600. name: "Head",
  27601. image: {
  27602. source: "./media/characters/nemoskii/head.svg"
  27603. }
  27604. },
  27605. },
  27606. [
  27607. {
  27608. name: "Micro",
  27609. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27610. },
  27611. {
  27612. name: "Normal",
  27613. height: math.unit(6 + 7 / 12, "feet"),
  27614. default: true
  27615. },
  27616. {
  27617. name: "Macro",
  27618. height: math.unit((6 + 7 / 12) * 150, "feet")
  27619. },
  27620. {
  27621. name: "Macro+",
  27622. height: math.unit((6 + 7 / 12) * 500, "feet")
  27623. },
  27624. {
  27625. name: "Megamacro",
  27626. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27627. },
  27628. ]
  27629. ))
  27630. characterMakers.push(() => makeCharacter(
  27631. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27632. {
  27633. front: {
  27634. height: math.unit(1, "mile"),
  27635. weight: math.unit(265261.9, "lb"),
  27636. name: "Front",
  27637. image: {
  27638. source: "./media/characters/shui/front.svg",
  27639. extra: 1633 / 1564,
  27640. bottom: 91.5 / 1726
  27641. }
  27642. },
  27643. },
  27644. [
  27645. {
  27646. name: "Macro",
  27647. height: math.unit(1, "mile"),
  27648. default: true
  27649. },
  27650. ]
  27651. ))
  27652. characterMakers.push(() => makeCharacter(
  27653. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27654. {
  27655. front: {
  27656. height: math.unit(12 + 6 / 12, "feet"),
  27657. weight: math.unit(1342, "lb"),
  27658. name: "Front",
  27659. image: {
  27660. source: "./media/characters/arokh-takakura/front.svg",
  27661. extra: 1089 / 1043,
  27662. bottom: 77.4 / 1176.7
  27663. }
  27664. },
  27665. back: {
  27666. height: math.unit(12 + 6 / 12, "feet"),
  27667. weight: math.unit(1342, "lb"),
  27668. name: "Back",
  27669. image: {
  27670. source: "./media/characters/arokh-takakura/back.svg",
  27671. extra: 1046 / 1019,
  27672. bottom: 102 / 1150
  27673. }
  27674. },
  27675. },
  27676. [
  27677. {
  27678. name: "Big",
  27679. height: math.unit(12 + 6 / 12, "feet"),
  27680. default: true
  27681. },
  27682. ]
  27683. ))
  27684. characterMakers.push(() => makeCharacter(
  27685. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27686. {
  27687. front: {
  27688. height: math.unit(5 + 6 / 12, "feet"),
  27689. weight: math.unit(150, "lb"),
  27690. name: "Front",
  27691. image: {
  27692. source: "./media/characters/theo/front.svg",
  27693. extra: 1184 / 1131,
  27694. bottom: 7.4 / 1191
  27695. }
  27696. },
  27697. },
  27698. [
  27699. {
  27700. name: "Micro",
  27701. height: math.unit(5, "inches")
  27702. },
  27703. {
  27704. name: "Normal",
  27705. height: math.unit(5 + 6 / 12, "feet"),
  27706. default: true
  27707. },
  27708. ]
  27709. ))
  27710. characterMakers.push(() => makeCharacter(
  27711. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27712. {
  27713. front: {
  27714. height: math.unit(5 + 9 / 12, "feet"),
  27715. weight: math.unit(130, "lb"),
  27716. name: "Front",
  27717. image: {
  27718. source: "./media/characters/cecelia-swift/front.svg",
  27719. extra: 502 / 484,
  27720. bottom: 23 / 523
  27721. }
  27722. },
  27723. back: {
  27724. height: math.unit(5 + 9 / 12, "feet"),
  27725. weight: math.unit(130, "lb"),
  27726. name: "Back",
  27727. image: {
  27728. source: "./media/characters/cecelia-swift/back.svg",
  27729. extra: 499 / 485,
  27730. bottom: 12 / 511
  27731. }
  27732. },
  27733. head: {
  27734. height: math.unit(0.90, "feet"),
  27735. name: "Head",
  27736. image: {
  27737. source: "./media/characters/cecelia-swift/head.svg"
  27738. }
  27739. },
  27740. rump: {
  27741. height: math.unit(1.75, "feet"),
  27742. name: "Rump",
  27743. image: {
  27744. source: "./media/characters/cecelia-swift/rump.svg"
  27745. }
  27746. },
  27747. },
  27748. [
  27749. {
  27750. name: "Normal",
  27751. height: math.unit(5 + 9 / 12, "feet"),
  27752. default: true
  27753. },
  27754. {
  27755. name: "Big",
  27756. height: math.unit(50, "feet")
  27757. },
  27758. {
  27759. name: "Macro",
  27760. height: math.unit(100, "feet")
  27761. },
  27762. {
  27763. name: "Macro+",
  27764. height: math.unit(500, "feet")
  27765. },
  27766. {
  27767. name: "Macro++",
  27768. height: math.unit(1000, "feet")
  27769. },
  27770. ]
  27771. ))
  27772. characterMakers.push(() => makeCharacter(
  27773. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27774. {
  27775. front: {
  27776. height: math.unit(6, "feet"),
  27777. weight: math.unit(150, "lb"),
  27778. name: "Front",
  27779. image: {
  27780. source: "./media/characters/kaunan/front.svg",
  27781. extra: 2890 / 2523,
  27782. bottom: 49 / 2939
  27783. }
  27784. },
  27785. },
  27786. [
  27787. {
  27788. name: "Macro",
  27789. height: math.unit(150, "feet"),
  27790. default: true
  27791. },
  27792. ]
  27793. ))
  27794. characterMakers.push(() => makeCharacter(
  27795. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27796. {
  27797. front: {
  27798. height: math.unit(175, "cm"),
  27799. weight: math.unit(60, "kg"),
  27800. name: "Front",
  27801. image: {
  27802. source: "./media/characters/fei/front.svg",
  27803. extra: 1873/1723,
  27804. bottom: 53/1926
  27805. }
  27806. },
  27807. },
  27808. [
  27809. {
  27810. name: "Mortal",
  27811. height: math.unit(175, "cm")
  27812. },
  27813. {
  27814. name: "Normal",
  27815. height: math.unit(3500, "m"),
  27816. default: true
  27817. },
  27818. {
  27819. name: "Stroll",
  27820. height: math.unit(17.5, "km")
  27821. },
  27822. {
  27823. name: "Showoff",
  27824. height: math.unit(175, "km")
  27825. },
  27826. ]
  27827. ))
  27828. characterMakers.push(() => makeCharacter(
  27829. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27830. {
  27831. front: {
  27832. height: math.unit(7, "feet"),
  27833. weight: math.unit(1000, "kg"),
  27834. name: "Front",
  27835. image: {
  27836. source: "./media/characters/edrax/front.svg",
  27837. extra: 2838 / 2550,
  27838. bottom: 130 / 2968
  27839. }
  27840. },
  27841. },
  27842. [
  27843. {
  27844. name: "Small",
  27845. height: math.unit(7, "feet")
  27846. },
  27847. {
  27848. name: "Normal",
  27849. height: math.unit(1500, "meters")
  27850. },
  27851. {
  27852. name: "Mega",
  27853. height: math.unit(12000000, "km"),
  27854. default: true
  27855. },
  27856. {
  27857. name: "Megamacro",
  27858. height: math.unit(10600000, "lightyears")
  27859. },
  27860. {
  27861. name: "Hypermacro",
  27862. height: math.unit(256, "yottameters")
  27863. },
  27864. ]
  27865. ))
  27866. characterMakers.push(() => makeCharacter(
  27867. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27868. {
  27869. front: {
  27870. height: math.unit(10, "feet"),
  27871. weight: math.unit(750, "lb"),
  27872. name: "Front",
  27873. image: {
  27874. source: "./media/characters/clove/front.svg",
  27875. extra: 2031 / 1860,
  27876. bottom: 47.8 / 2080
  27877. }
  27878. },
  27879. back: {
  27880. height: math.unit(10, "feet"),
  27881. weight: math.unit(750, "lb"),
  27882. name: "Back",
  27883. image: {
  27884. source: "./media/characters/clove/back.svg",
  27885. extra: 2025 / 1859,
  27886. bottom: 46 / 2071
  27887. }
  27888. },
  27889. },
  27890. [
  27891. {
  27892. name: "Normal",
  27893. height: math.unit(10, "feet"),
  27894. default: true
  27895. },
  27896. ]
  27897. ))
  27898. characterMakers.push(() => makeCharacter(
  27899. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27900. {
  27901. front: {
  27902. height: math.unit(4, "feet"),
  27903. weight: math.unit(50, "lb"),
  27904. name: "Front",
  27905. image: {
  27906. source: "./media/characters/alex-rabbit/front.svg",
  27907. extra: 507 / 458,
  27908. bottom: 18.5 / 527
  27909. }
  27910. },
  27911. back: {
  27912. height: math.unit(4, "feet"),
  27913. weight: math.unit(50, "lb"),
  27914. name: "Back",
  27915. image: {
  27916. source: "./media/characters/alex-rabbit/back.svg",
  27917. extra: 502 / 460,
  27918. bottom: 18.9 / 521
  27919. }
  27920. },
  27921. },
  27922. [
  27923. {
  27924. name: "Normal",
  27925. height: math.unit(4, "feet"),
  27926. default: true
  27927. },
  27928. ]
  27929. ))
  27930. characterMakers.push(() => makeCharacter(
  27931. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27932. {
  27933. front: {
  27934. height: math.unit(1 + 3 / 12, "feet"),
  27935. weight: math.unit(80, "lb"),
  27936. name: "Front",
  27937. image: {
  27938. source: "./media/characters/zander-rose/front.svg",
  27939. extra: 916 / 797,
  27940. bottom: 17 / 933
  27941. }
  27942. },
  27943. back: {
  27944. height: math.unit(1 + 3 / 12, "feet"),
  27945. weight: math.unit(80, "lb"),
  27946. name: "Back",
  27947. image: {
  27948. source: "./media/characters/zander-rose/back.svg",
  27949. extra: 903 / 779,
  27950. bottom: 31 / 934
  27951. }
  27952. },
  27953. },
  27954. [
  27955. {
  27956. name: "Normal",
  27957. height: math.unit(1 + 3 / 12, "feet"),
  27958. default: true
  27959. },
  27960. ]
  27961. ))
  27962. characterMakers.push(() => makeCharacter(
  27963. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27964. {
  27965. anthro: {
  27966. height: math.unit(6, "feet"),
  27967. weight: math.unit(150, "lb"),
  27968. name: "Anthro",
  27969. image: {
  27970. source: "./media/characters/razz/anthro.svg",
  27971. extra: 1437 / 1343,
  27972. bottom: 48 / 1485
  27973. }
  27974. },
  27975. feral: {
  27976. height: math.unit(6, "feet"),
  27977. weight: math.unit(150, "lb"),
  27978. name: "Feral",
  27979. image: {
  27980. source: "./media/characters/razz/feral.svg",
  27981. extra: 2569 / 1385,
  27982. bottom: 95 / 2664
  27983. }
  27984. },
  27985. },
  27986. [
  27987. {
  27988. name: "Normal",
  27989. height: math.unit(6, "feet"),
  27990. default: true
  27991. },
  27992. ]
  27993. ))
  27994. characterMakers.push(() => makeCharacter(
  27995. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27996. {
  27997. front: {
  27998. height: math.unit(9 + 4 / 12, "feet"),
  27999. weight: math.unit(500, "lb"),
  28000. name: "Front",
  28001. image: {
  28002. source: "./media/characters/morrigan/front.svg",
  28003. extra: 2707 / 2579,
  28004. bottom: 156 / 2863
  28005. }
  28006. },
  28007. },
  28008. [
  28009. {
  28010. name: "Normal",
  28011. height: math.unit(9 + 4 / 12, "feet"),
  28012. default: true
  28013. },
  28014. ]
  28015. ))
  28016. characterMakers.push(() => makeCharacter(
  28017. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28018. {
  28019. front: {
  28020. height: math.unit(5, "stories"),
  28021. weight: math.unit(4000, "lb"),
  28022. name: "Front",
  28023. image: {
  28024. source: "./media/characters/jenene/front.svg",
  28025. extra: 1780 / 1710,
  28026. bottom: 57 / 1837
  28027. }
  28028. },
  28029. },
  28030. [
  28031. {
  28032. name: "Normal",
  28033. height: math.unit(5, "stories"),
  28034. default: true
  28035. },
  28036. ]
  28037. ))
  28038. characterMakers.push(() => makeCharacter(
  28039. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28040. {
  28041. taurSfw: {
  28042. height: math.unit(10, "meters"),
  28043. weight: math.unit(17500, "kg"),
  28044. name: "Taur",
  28045. image: {
  28046. source: "./media/characters/faey/taur-sfw.svg",
  28047. extra: 1200 / 968,
  28048. bottom: 41 / 1241
  28049. }
  28050. },
  28051. chestmaw: {
  28052. height: math.unit(2.01, "meters"),
  28053. name: "Chestmaw",
  28054. image: {
  28055. source: "./media/characters/faey/chestmaw.svg"
  28056. }
  28057. },
  28058. foot: {
  28059. height: math.unit(2.43, "meters"),
  28060. name: "Foot",
  28061. image: {
  28062. source: "./media/characters/faey/foot.svg"
  28063. }
  28064. },
  28065. jaws: {
  28066. height: math.unit(1.66, "meters"),
  28067. name: "Jaws",
  28068. image: {
  28069. source: "./media/characters/faey/jaws.svg"
  28070. }
  28071. },
  28072. tongues: {
  28073. height: math.unit(2.01, "meters"),
  28074. name: "Tongues",
  28075. image: {
  28076. source: "./media/characters/faey/tongues.svg"
  28077. }
  28078. },
  28079. },
  28080. [
  28081. {
  28082. name: "Small",
  28083. height: math.unit(10, "meters"),
  28084. default: true
  28085. },
  28086. {
  28087. name: "Big",
  28088. height: math.unit(500000, "km")
  28089. },
  28090. ]
  28091. ))
  28092. characterMakers.push(() => makeCharacter(
  28093. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28094. {
  28095. front: {
  28096. height: math.unit(7, "feet"),
  28097. weight: math.unit(275, "lb"),
  28098. name: "Front",
  28099. image: {
  28100. source: "./media/characters/roku/front.svg",
  28101. extra: 903 / 878,
  28102. bottom: 37 / 940
  28103. }
  28104. },
  28105. },
  28106. [
  28107. {
  28108. name: "Normal",
  28109. height: math.unit(7, "feet"),
  28110. default: true
  28111. },
  28112. {
  28113. name: "Macro",
  28114. height: math.unit(500, "feet")
  28115. },
  28116. {
  28117. name: "Megamacro",
  28118. height: math.unit(200, "miles")
  28119. },
  28120. ]
  28121. ))
  28122. characterMakers.push(() => makeCharacter(
  28123. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28124. {
  28125. front: {
  28126. height: math.unit(6 + 2 / 12, "feet"),
  28127. weight: math.unit(150, "lb"),
  28128. name: "Front",
  28129. image: {
  28130. source: "./media/characters/lira/front.svg",
  28131. extra: 1727 / 1605,
  28132. bottom: 26 / 1753
  28133. }
  28134. },
  28135. back: {
  28136. height: math.unit(6 + 2 / 12, "feet"),
  28137. weight: math.unit(150, "lb"),
  28138. name: "Back",
  28139. image: {
  28140. source: "./media/characters/lira/back.svg",
  28141. extra: 1713/1621,
  28142. bottom: 20/1733
  28143. }
  28144. },
  28145. hand: {
  28146. height: math.unit(0.75, "feet"),
  28147. name: "Hand",
  28148. image: {
  28149. source: "./media/characters/lira/hand.svg"
  28150. }
  28151. },
  28152. maw: {
  28153. height: math.unit(0.65, "feet"),
  28154. name: "Maw",
  28155. image: {
  28156. source: "./media/characters/lira/maw.svg"
  28157. }
  28158. },
  28159. pawDigi: {
  28160. height: math.unit(1.6, "feet"),
  28161. name: "Paw Digi",
  28162. image: {
  28163. source: "./media/characters/lira/paw-digi.svg"
  28164. }
  28165. },
  28166. pawPlanti: {
  28167. height: math.unit(1.4, "feet"),
  28168. name: "Paw Planti",
  28169. image: {
  28170. source: "./media/characters/lira/paw-planti.svg"
  28171. }
  28172. },
  28173. },
  28174. [
  28175. {
  28176. name: "Normal",
  28177. height: math.unit(6 + 2 / 12, "feet"),
  28178. default: true
  28179. },
  28180. {
  28181. name: "Macro",
  28182. height: math.unit(100, "feet")
  28183. },
  28184. {
  28185. name: "Macro²",
  28186. height: math.unit(1600, "feet")
  28187. },
  28188. {
  28189. name: "Planetary",
  28190. height: math.unit(20, "earths")
  28191. },
  28192. ]
  28193. ))
  28194. characterMakers.push(() => makeCharacter(
  28195. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28196. {
  28197. front: {
  28198. height: math.unit(6, "feet"),
  28199. weight: math.unit(150, "lb"),
  28200. name: "Front",
  28201. image: {
  28202. source: "./media/characters/hadjet/front.svg",
  28203. extra: 1480 / 1346,
  28204. bottom: 26 / 1506
  28205. }
  28206. },
  28207. frontNsfw: {
  28208. height: math.unit(6, "feet"),
  28209. weight: math.unit(150, "lb"),
  28210. name: "Front (NSFW)",
  28211. image: {
  28212. source: "./media/characters/hadjet/front-nsfw.svg",
  28213. extra: 1440 / 1358,
  28214. bottom: 52 / 1492
  28215. }
  28216. },
  28217. },
  28218. [
  28219. {
  28220. name: "Macro",
  28221. height: math.unit(10, "stories"),
  28222. default: true
  28223. },
  28224. {
  28225. name: "Megamacro",
  28226. height: math.unit(1.5, "miles")
  28227. },
  28228. {
  28229. name: "Megamacro+",
  28230. height: math.unit(5, "miles")
  28231. },
  28232. ]
  28233. ))
  28234. characterMakers.push(() => makeCharacter(
  28235. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28236. {
  28237. side: {
  28238. height: math.unit(106, "feet"),
  28239. weight: math.unit(500, "tonnes"),
  28240. name: "Side",
  28241. image: {
  28242. source: "./media/characters/kodran/side.svg",
  28243. extra: 553 / 480,
  28244. bottom: 33 / 586
  28245. }
  28246. },
  28247. front: {
  28248. height: math.unit(132, "feet"),
  28249. weight: math.unit(500, "tonnes"),
  28250. name: "Front",
  28251. image: {
  28252. source: "./media/characters/kodran/front.svg",
  28253. extra: 667 / 643,
  28254. bottom: 42 / 709
  28255. }
  28256. },
  28257. flying: {
  28258. height: math.unit(350, "feet"),
  28259. weight: math.unit(500, "tonnes"),
  28260. name: "Flying",
  28261. image: {
  28262. source: "./media/characters/kodran/flying.svg"
  28263. }
  28264. },
  28265. foot: {
  28266. height: math.unit(33, "feet"),
  28267. name: "Foot",
  28268. image: {
  28269. source: "./media/characters/kodran/foot.svg"
  28270. }
  28271. },
  28272. footFront: {
  28273. height: math.unit(19, "feet"),
  28274. name: "Foot (Front)",
  28275. image: {
  28276. source: "./media/characters/kodran/foot-front.svg",
  28277. extra: 261 / 261,
  28278. bottom: 91 / 352
  28279. }
  28280. },
  28281. headFront: {
  28282. height: math.unit(53, "feet"),
  28283. name: "Head (Front)",
  28284. image: {
  28285. source: "./media/characters/kodran/head-front.svg"
  28286. }
  28287. },
  28288. headSide: {
  28289. height: math.unit(65, "feet"),
  28290. name: "Head (Side)",
  28291. image: {
  28292. source: "./media/characters/kodran/head-side.svg"
  28293. }
  28294. },
  28295. throat: {
  28296. height: math.unit(79, "feet"),
  28297. name: "Throat",
  28298. image: {
  28299. source: "./media/characters/kodran/throat.svg"
  28300. }
  28301. },
  28302. },
  28303. [
  28304. {
  28305. name: "Large",
  28306. height: math.unit(106, "feet"),
  28307. default: true
  28308. },
  28309. ]
  28310. ))
  28311. characterMakers.push(() => makeCharacter(
  28312. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28313. {
  28314. side: {
  28315. height: math.unit(11, "feet"),
  28316. weight: math.unit(150, "lb"),
  28317. name: "Side",
  28318. image: {
  28319. source: "./media/characters/pyxaron/side.svg",
  28320. extra: 305 / 195,
  28321. bottom: 17 / 322
  28322. }
  28323. },
  28324. },
  28325. [
  28326. {
  28327. name: "Normal",
  28328. height: math.unit(11, "feet"),
  28329. default: true
  28330. },
  28331. ]
  28332. ))
  28333. characterMakers.push(() => makeCharacter(
  28334. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28335. {
  28336. front: {
  28337. height: math.unit(6, "feet"),
  28338. weight: math.unit(150, "lb"),
  28339. name: "Front",
  28340. image: {
  28341. source: "./media/characters/meep/front.svg",
  28342. extra: 88 / 80,
  28343. bottom: 6 / 94
  28344. }
  28345. },
  28346. },
  28347. [
  28348. {
  28349. name: "Fun Sized",
  28350. height: math.unit(2, "inches"),
  28351. default: true
  28352. },
  28353. {
  28354. name: "Friend Sized",
  28355. height: math.unit(8, "inches")
  28356. },
  28357. ]
  28358. ))
  28359. characterMakers.push(() => makeCharacter(
  28360. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28361. {
  28362. front: {
  28363. height: math.unit(15, "feet"),
  28364. weight: math.unit(2500, "lb"),
  28365. name: "Front",
  28366. image: {
  28367. source: "./media/characters/holly-rabbit/front.svg",
  28368. extra: 1433 / 1233,
  28369. bottom: 125 / 1558
  28370. }
  28371. },
  28372. dick: {
  28373. height: math.unit(4.6, "feet"),
  28374. name: "Dick",
  28375. image: {
  28376. source: "./media/characters/holly-rabbit/dick.svg"
  28377. }
  28378. },
  28379. },
  28380. [
  28381. {
  28382. name: "Normal",
  28383. height: math.unit(15, "feet"),
  28384. default: true
  28385. },
  28386. {
  28387. name: "Macro",
  28388. height: math.unit(250, "feet")
  28389. },
  28390. {
  28391. name: "Macro+",
  28392. height: math.unit(2500, "feet")
  28393. },
  28394. ]
  28395. ))
  28396. characterMakers.push(() => makeCharacter(
  28397. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28398. {
  28399. front: {
  28400. height: math.unit(3.02, "meters"),
  28401. weight: math.unit(500, "kg"),
  28402. name: "Front",
  28403. image: {
  28404. source: "./media/characters/drena/front.svg",
  28405. extra: 282 / 243,
  28406. bottom: 8 / 290
  28407. }
  28408. },
  28409. side: {
  28410. height: math.unit(3.02, "meters"),
  28411. weight: math.unit(500, "kg"),
  28412. name: "Side",
  28413. image: {
  28414. source: "./media/characters/drena/side.svg",
  28415. extra: 280 / 245,
  28416. bottom: 10 / 290
  28417. }
  28418. },
  28419. back: {
  28420. height: math.unit(3.02, "meters"),
  28421. weight: math.unit(500, "kg"),
  28422. name: "Back",
  28423. image: {
  28424. source: "./media/characters/drena/back.svg",
  28425. extra: 278 / 243,
  28426. bottom: 2 / 280
  28427. }
  28428. },
  28429. foot: {
  28430. height: math.unit(0.75, "meters"),
  28431. name: "Foot",
  28432. image: {
  28433. source: "./media/characters/drena/foot.svg"
  28434. }
  28435. },
  28436. maw: {
  28437. height: math.unit(0.82, "meters"),
  28438. name: "Maw",
  28439. image: {
  28440. source: "./media/characters/drena/maw.svg"
  28441. }
  28442. },
  28443. rump: {
  28444. height: math.unit(0.93, "meters"),
  28445. name: "Rump",
  28446. image: {
  28447. source: "./media/characters/drena/rump.svg"
  28448. }
  28449. },
  28450. },
  28451. [
  28452. {
  28453. name: "Normal",
  28454. height: math.unit(3.02, "meters"),
  28455. default: true
  28456. },
  28457. ]
  28458. ))
  28459. characterMakers.push(() => makeCharacter(
  28460. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28461. {
  28462. front: {
  28463. height: math.unit(6 + 4 / 12, "feet"),
  28464. weight: math.unit(250, "lb"),
  28465. name: "Front",
  28466. image: {
  28467. source: "./media/characters/remmyzilla/front.svg",
  28468. extra: 4033 / 3588,
  28469. bottom: 123 / 4156
  28470. }
  28471. },
  28472. back: {
  28473. height: math.unit(6 + 4 / 12, "feet"),
  28474. weight: math.unit(250, "lb"),
  28475. name: "Back",
  28476. image: {
  28477. source: "./media/characters/remmyzilla/back.svg",
  28478. extra: 2687 / 2555,
  28479. bottom: 48 / 2735
  28480. }
  28481. },
  28482. paw: {
  28483. height: math.unit(1.73, "feet"),
  28484. name: "Paw",
  28485. image: {
  28486. source: "./media/characters/remmyzilla/paw.svg"
  28487. }
  28488. },
  28489. maw: {
  28490. height: math.unit(1.73, "feet"),
  28491. name: "Maw",
  28492. image: {
  28493. source: "./media/characters/remmyzilla/maw.svg"
  28494. }
  28495. },
  28496. },
  28497. [
  28498. {
  28499. name: "Normal",
  28500. height: math.unit(6 + 4 / 12, "feet")
  28501. },
  28502. {
  28503. name: "Minimacro",
  28504. height: math.unit(12 + 8 / 12, "feet")
  28505. },
  28506. {
  28507. name: "Normal",
  28508. height: math.unit(640, "feet"),
  28509. default: true
  28510. },
  28511. {
  28512. name: "Megamacro",
  28513. height: math.unit(6400, "feet")
  28514. },
  28515. {
  28516. name: "Gigamacro",
  28517. height: math.unit(64000, "miles")
  28518. },
  28519. ]
  28520. ))
  28521. characterMakers.push(() => makeCharacter(
  28522. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28523. {
  28524. front: {
  28525. height: math.unit(2.5, "meters"),
  28526. weight: math.unit(300, "lb"),
  28527. name: "Front",
  28528. image: {
  28529. source: "./media/characters/lawrence/front.svg",
  28530. extra: 357 / 335,
  28531. bottom: 30 / 387
  28532. }
  28533. },
  28534. back: {
  28535. height: math.unit(2.5, "meters"),
  28536. weight: math.unit(300, "lb"),
  28537. name: "Back",
  28538. image: {
  28539. source: "./media/characters/lawrence/back.svg",
  28540. extra: 357 / 338,
  28541. bottom: 16 / 373
  28542. }
  28543. },
  28544. head: {
  28545. height: math.unit(0.9, "meter"),
  28546. name: "Head",
  28547. image: {
  28548. source: "./media/characters/lawrence/head.svg"
  28549. }
  28550. },
  28551. maw: {
  28552. height: math.unit(0.7, "meter"),
  28553. name: "Maw",
  28554. image: {
  28555. source: "./media/characters/lawrence/maw.svg"
  28556. }
  28557. },
  28558. footBottom: {
  28559. height: math.unit(0.5, "meter"),
  28560. name: "Foot (Bottom)",
  28561. image: {
  28562. source: "./media/characters/lawrence/foot-bottom.svg"
  28563. }
  28564. },
  28565. footTop: {
  28566. height: math.unit(0.5, "meter"),
  28567. name: "Foot (Top)",
  28568. image: {
  28569. source: "./media/characters/lawrence/foot-top.svg"
  28570. }
  28571. },
  28572. },
  28573. [
  28574. {
  28575. name: "Normal",
  28576. height: math.unit(2.5, "meters"),
  28577. default: true
  28578. },
  28579. {
  28580. name: "Macro",
  28581. height: math.unit(95, "meters")
  28582. },
  28583. {
  28584. name: "Megamacro",
  28585. height: math.unit(150, "km")
  28586. },
  28587. ]
  28588. ))
  28589. characterMakers.push(() => makeCharacter(
  28590. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28591. {
  28592. front: {
  28593. height: math.unit(4.2, "meters"),
  28594. name: "Front",
  28595. image: {
  28596. source: "./media/characters/sydney/front.svg",
  28597. extra: 1323 / 1277,
  28598. bottom: 111 / 1434
  28599. }
  28600. },
  28601. },
  28602. [
  28603. {
  28604. name: "Normal",
  28605. height: math.unit(4.2, "meters"),
  28606. default: true
  28607. },
  28608. ]
  28609. ))
  28610. characterMakers.push(() => makeCharacter(
  28611. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28612. {
  28613. back: {
  28614. height: math.unit(201, "feet"),
  28615. name: "Back",
  28616. image: {
  28617. source: "./media/characters/jessica/back.svg",
  28618. extra: 273 / 259,
  28619. bottom: 7 / 280
  28620. }
  28621. },
  28622. },
  28623. [
  28624. {
  28625. name: "Normal",
  28626. height: math.unit(201, "feet"),
  28627. default: true
  28628. },
  28629. {
  28630. name: "Megamacro",
  28631. height: math.unit(8, "miles")
  28632. },
  28633. ]
  28634. ))
  28635. characterMakers.push(() => makeCharacter(
  28636. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28637. {
  28638. side: {
  28639. height: math.unit(320, "cm"),
  28640. name: "Side",
  28641. image: {
  28642. source: "./media/characters/victoria/side.svg",
  28643. extra: 778 / 346,
  28644. bottom: 56 / 834
  28645. }
  28646. },
  28647. maw: {
  28648. height: math.unit(5.9, "feet"),
  28649. name: "Maw",
  28650. image: {
  28651. source: "./media/characters/victoria/maw.svg"
  28652. }
  28653. },
  28654. },
  28655. [
  28656. {
  28657. name: "Normal",
  28658. height: math.unit(320, "cm"),
  28659. default: true
  28660. },
  28661. ]
  28662. ))
  28663. characterMakers.push(() => makeCharacter(
  28664. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28665. {
  28666. front: {
  28667. height: math.unit(5 + 6 / 12, "feet"),
  28668. name: "Front",
  28669. image: {
  28670. source: "./media/characters/cat/front.svg",
  28671. extra: 1449/1295,
  28672. bottom: 34/1483
  28673. }
  28674. },
  28675. back: {
  28676. height: math.unit(5 + 6 / 12, "feet"),
  28677. name: "Back",
  28678. image: {
  28679. source: "./media/characters/cat/back.svg",
  28680. extra: 1466/1301,
  28681. bottom: 19/1485
  28682. }
  28683. },
  28684. taur: {
  28685. height: math.unit(7, "feet"),
  28686. name: "Taur",
  28687. image: {
  28688. source: "./media/characters/cat/taur.svg",
  28689. extra: 1389/1233,
  28690. bottom: 83/1472
  28691. }
  28692. },
  28693. lucarioFront: {
  28694. height: math.unit(4, "feet"),
  28695. name: "Lucario (Front)",
  28696. image: {
  28697. source: "./media/characters/cat/lucario-front.svg",
  28698. extra: 1149/1019,
  28699. bottom: 84/1233
  28700. }
  28701. },
  28702. lucarioBack: {
  28703. height: math.unit(4, "feet"),
  28704. name: "Lucario (Back)",
  28705. image: {
  28706. source: "./media/characters/cat/lucario-back.svg",
  28707. extra: 1190/1059,
  28708. bottom: 33/1223
  28709. }
  28710. },
  28711. megaLucario: {
  28712. height: math.unit(4, "feet"),
  28713. name: "Mega Lucario",
  28714. image: {
  28715. source: "./media/characters/cat/mega-lucario.svg",
  28716. extra: 1515 / 1319,
  28717. bottom: 63 / 1578
  28718. }
  28719. },
  28720. nickit: {
  28721. height: math.unit(2, "feet"),
  28722. name: "Nickit",
  28723. image: {
  28724. source: "./media/characters/cat/nickit.svg",
  28725. extra: 1980 / 1585,
  28726. bottom: 102 / 2082
  28727. }
  28728. },
  28729. lopunnyFront: {
  28730. height: math.unit(5, "feet"),
  28731. name: "Lopunny (Front)",
  28732. image: {
  28733. source: "./media/characters/cat/lopunny-front.svg",
  28734. extra: 1782 / 1469,
  28735. bottom: 38 / 1820
  28736. }
  28737. },
  28738. lopunnyBack: {
  28739. height: math.unit(5, "feet"),
  28740. name: "Lopunny (Back)",
  28741. image: {
  28742. source: "./media/characters/cat/lopunny-back.svg",
  28743. extra: 1660 / 1490,
  28744. bottom: 25 / 1685
  28745. }
  28746. },
  28747. },
  28748. [
  28749. {
  28750. name: "Really small",
  28751. height: math.unit(1, "nm")
  28752. },
  28753. {
  28754. name: "Micro",
  28755. height: math.unit(5, "inches")
  28756. },
  28757. {
  28758. name: "Normal",
  28759. height: math.unit(5 + 6 / 12, "feet"),
  28760. default: true
  28761. },
  28762. {
  28763. name: "Macro",
  28764. height: math.unit(50, "feet")
  28765. },
  28766. {
  28767. name: "Macro+",
  28768. height: math.unit(150, "feet")
  28769. },
  28770. {
  28771. name: "Megamacro",
  28772. height: math.unit(100, "miles")
  28773. },
  28774. ]
  28775. ))
  28776. characterMakers.push(() => makeCharacter(
  28777. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28778. {
  28779. front: {
  28780. height: math.unit(63.4, "meters"),
  28781. weight: math.unit(3.28349e+6, "kilograms"),
  28782. name: "Front",
  28783. image: {
  28784. source: "./media/characters/kirina-violet/front.svg",
  28785. extra: 2812 / 2725,
  28786. bottom: 0 / 2812
  28787. }
  28788. },
  28789. back: {
  28790. height: math.unit(63.4, "meters"),
  28791. weight: math.unit(3.28349e+6, "kilograms"),
  28792. name: "Back",
  28793. image: {
  28794. source: "./media/characters/kirina-violet/back.svg",
  28795. extra: 2812 / 2725,
  28796. bottom: 0 / 2812
  28797. }
  28798. },
  28799. mouth: {
  28800. height: math.unit(4.35, "meters"),
  28801. name: "Mouth",
  28802. image: {
  28803. source: "./media/characters/kirina-violet/mouth.svg"
  28804. }
  28805. },
  28806. paw: {
  28807. height: math.unit(5.6, "meters"),
  28808. name: "Paw",
  28809. image: {
  28810. source: "./media/characters/kirina-violet/paw.svg"
  28811. }
  28812. },
  28813. tail: {
  28814. height: math.unit(18, "meters"),
  28815. name: "Tail",
  28816. image: {
  28817. source: "./media/characters/kirina-violet/tail.svg"
  28818. }
  28819. },
  28820. },
  28821. [
  28822. {
  28823. name: "Macro",
  28824. height: math.unit(63.4, "meters"),
  28825. default: true
  28826. },
  28827. ]
  28828. ))
  28829. characterMakers.push(() => makeCharacter(
  28830. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28831. {
  28832. front: {
  28833. height: math.unit(75, "feet"),
  28834. name: "Front",
  28835. image: {
  28836. source: "./media/characters/cat-gigachu/front.svg",
  28837. extra: 1239/1027,
  28838. bottom: 32/1271
  28839. }
  28840. },
  28841. back: {
  28842. height: math.unit(75, "feet"),
  28843. name: "Back",
  28844. image: {
  28845. source: "./media/characters/cat-gigachu/back.svg",
  28846. extra: 1229/1030,
  28847. bottom: 9/1238
  28848. }
  28849. },
  28850. },
  28851. [
  28852. {
  28853. name: "Dynamax",
  28854. height: math.unit(75, "feet"),
  28855. default: true
  28856. },
  28857. ]
  28858. ))
  28859. characterMakers.push(() => makeCharacter(
  28860. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28861. {
  28862. front: {
  28863. height: math.unit(6, "feet"),
  28864. weight: math.unit(150, "lb"),
  28865. name: "Front",
  28866. image: {
  28867. source: "./media/characters/sfaiyan/front.svg",
  28868. extra: 999 / 978,
  28869. bottom: 5 / 1004
  28870. }
  28871. },
  28872. },
  28873. [
  28874. {
  28875. name: "Normal",
  28876. height: math.unit(1.82, "meters")
  28877. },
  28878. {
  28879. name: "Giant",
  28880. height: math.unit(2.27, "km"),
  28881. default: true
  28882. },
  28883. ]
  28884. ))
  28885. characterMakers.push(() => makeCharacter(
  28886. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28887. {
  28888. front: {
  28889. height: math.unit(179, "cm"),
  28890. weight: math.unit(100, "kg"),
  28891. name: "Front",
  28892. image: {
  28893. source: "./media/characters/raunehkeli/front.svg",
  28894. extra: 1934 / 1926,
  28895. bottom: 0 / 1934
  28896. }
  28897. },
  28898. },
  28899. [
  28900. {
  28901. name: "Normal",
  28902. height: math.unit(179, "cm")
  28903. },
  28904. {
  28905. name: "Maximum",
  28906. height: math.unit(575, "meters"),
  28907. default: true
  28908. },
  28909. ]
  28910. ))
  28911. characterMakers.push(() => makeCharacter(
  28912. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28913. {
  28914. front: {
  28915. height: math.unit(6, "feet"),
  28916. weight: math.unit(150, "lb"),
  28917. name: "Front",
  28918. image: {
  28919. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28920. extra: 2625 / 2518,
  28921. bottom: 60 / 2685
  28922. }
  28923. },
  28924. },
  28925. [
  28926. {
  28927. name: "Normal",
  28928. height: math.unit(6 + 2 / 12, "feet")
  28929. },
  28930. {
  28931. name: "Macro",
  28932. height: math.unit(1180, "feet"),
  28933. default: true
  28934. },
  28935. ]
  28936. ))
  28937. characterMakers.push(() => makeCharacter(
  28938. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28939. {
  28940. front: {
  28941. height: math.unit(5 + 6 / 12, "feet"),
  28942. weight: math.unit(108, "lb"),
  28943. name: "Front",
  28944. image: {
  28945. source: "./media/characters/lilith-zott/front.svg",
  28946. extra: 2510 / 2238,
  28947. bottom: 100 / 2610
  28948. }
  28949. },
  28950. frontDressed: {
  28951. height: math.unit(5 + 6 / 12, "feet"),
  28952. weight: math.unit(108, "lb"),
  28953. name: "Front (Dressed)",
  28954. image: {
  28955. source: "./media/characters/lilith-zott/front-dressed.svg",
  28956. extra: 2510 / 2238,
  28957. bottom: 100 / 2610
  28958. }
  28959. },
  28960. },
  28961. [
  28962. {
  28963. name: "Normal",
  28964. height: math.unit(5 + 6 / 12, "feet")
  28965. },
  28966. {
  28967. name: "Macro",
  28968. height: math.unit(1030, "feet"),
  28969. default: true
  28970. },
  28971. ]
  28972. ))
  28973. characterMakers.push(() => makeCharacter(
  28974. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28975. {
  28976. front: {
  28977. height: math.unit(6, "feet"),
  28978. weight: math.unit(150, "lb"),
  28979. name: "Front",
  28980. image: {
  28981. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28982. extra: 2567 / 2435,
  28983. bottom: 39 / 2606
  28984. }
  28985. },
  28986. frontSuper: {
  28987. height: math.unit(6, "feet"),
  28988. name: "Front (Super)",
  28989. image: {
  28990. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28991. extra: 2567 / 2435,
  28992. bottom: 39 / 2606
  28993. }
  28994. },
  28995. },
  28996. [
  28997. {
  28998. name: "Normal",
  28999. height: math.unit(5 + 10 / 12, "feet")
  29000. },
  29001. {
  29002. name: "Macro",
  29003. height: math.unit(1100, "feet"),
  29004. default: true
  29005. },
  29006. ]
  29007. ))
  29008. characterMakers.push(() => makeCharacter(
  29009. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29010. {
  29011. front: {
  29012. height: math.unit(100, "miles"),
  29013. name: "Front",
  29014. image: {
  29015. source: "./media/characters/sona/front.svg",
  29016. extra: 2433 / 2201,
  29017. bottom: 53 / 2486
  29018. }
  29019. },
  29020. foot: {
  29021. height: math.unit(16.1, "miles"),
  29022. name: "Foot",
  29023. image: {
  29024. source: "./media/characters/sona/foot.svg"
  29025. }
  29026. },
  29027. },
  29028. [
  29029. {
  29030. name: "Macro",
  29031. height: math.unit(100, "miles"),
  29032. default: true
  29033. },
  29034. ]
  29035. ))
  29036. characterMakers.push(() => makeCharacter(
  29037. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29038. {
  29039. front: {
  29040. height: math.unit(6, "feet"),
  29041. weight: math.unit(150, "lb"),
  29042. name: "Front",
  29043. image: {
  29044. source: "./media/characters/bailey/front.svg",
  29045. extra: 1778 / 1724,
  29046. bottom: 30 / 1808
  29047. }
  29048. },
  29049. },
  29050. [
  29051. {
  29052. name: "Micro",
  29053. height: math.unit(4, "inches")
  29054. },
  29055. {
  29056. name: "Normal",
  29057. height: math.unit(5 + 5 / 12, "feet"),
  29058. default: true
  29059. },
  29060. {
  29061. name: "Macro",
  29062. height: math.unit(250, "feet")
  29063. },
  29064. {
  29065. name: "Megamacro",
  29066. height: math.unit(100, "miles")
  29067. },
  29068. ]
  29069. ))
  29070. characterMakers.push(() => makeCharacter(
  29071. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29072. {
  29073. front: {
  29074. height: math.unit(5 + 2 / 12, "feet"),
  29075. weight: math.unit(120, "lb"),
  29076. name: "Front",
  29077. image: {
  29078. source: "./media/characters/snaps/front.svg",
  29079. extra: 2370 / 2177,
  29080. bottom: 48 / 2418
  29081. }
  29082. },
  29083. back: {
  29084. height: math.unit(5 + 2 / 12, "feet"),
  29085. weight: math.unit(120, "lb"),
  29086. name: "Back",
  29087. image: {
  29088. source: "./media/characters/snaps/back.svg",
  29089. extra: 2408 / 2258,
  29090. bottom: 15 / 2423
  29091. }
  29092. },
  29093. },
  29094. [
  29095. {
  29096. name: "Micro",
  29097. height: math.unit(9, "inches")
  29098. },
  29099. {
  29100. name: "Normal",
  29101. height: math.unit(5 + 2 / 12, "feet"),
  29102. default: true
  29103. },
  29104. {
  29105. name: "Mini Macro",
  29106. height: math.unit(10, "feet")
  29107. },
  29108. ]
  29109. ))
  29110. characterMakers.push(() => makeCharacter(
  29111. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29112. {
  29113. front: {
  29114. height: math.unit(1.8, "meters"),
  29115. weight: math.unit(85, "kg"),
  29116. name: "Front",
  29117. image: {
  29118. source: "./media/characters/azteck/front.svg",
  29119. extra: 2815 / 2625,
  29120. bottom: 89 / 2904
  29121. }
  29122. },
  29123. back: {
  29124. height: math.unit(1.8, "meters"),
  29125. weight: math.unit(85, "kg"),
  29126. name: "Back",
  29127. image: {
  29128. source: "./media/characters/azteck/back.svg",
  29129. extra: 2856 / 2648,
  29130. bottom: 85 / 2941
  29131. }
  29132. },
  29133. frontDressed: {
  29134. height: math.unit(1.8, "meters"),
  29135. weight: math.unit(85, "kg"),
  29136. name: "Front (Dressed)",
  29137. image: {
  29138. source: "./media/characters/azteck/front-dressed.svg",
  29139. extra: 2147 / 2003,
  29140. bottom: 68 / 2215
  29141. }
  29142. },
  29143. head: {
  29144. height: math.unit(0.47, "meters"),
  29145. weight: math.unit(85, "kg"),
  29146. name: "Head",
  29147. image: {
  29148. source: "./media/characters/azteck/head.svg"
  29149. }
  29150. },
  29151. },
  29152. [
  29153. {
  29154. name: "Bite sized",
  29155. height: math.unit(16, "cm")
  29156. },
  29157. {
  29158. name: "Normal",
  29159. height: math.unit(1.8, "meters"),
  29160. default: true
  29161. },
  29162. ]
  29163. ))
  29164. characterMakers.push(() => makeCharacter(
  29165. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29166. {
  29167. front: {
  29168. height: math.unit(6, "feet"),
  29169. weight: math.unit(150, "lb"),
  29170. name: "Front",
  29171. image: {
  29172. source: "./media/characters/pidge/front.svg",
  29173. extra: 620 / 588,
  29174. bottom: 9 / 629
  29175. }
  29176. },
  29177. back: {
  29178. height: math.unit(6, "feet"),
  29179. weight: math.unit(150, "lb"),
  29180. name: "Back",
  29181. image: {
  29182. source: "./media/characters/pidge/back.svg",
  29183. extra: 620 / 588,
  29184. bottom: 9 / 629
  29185. }
  29186. },
  29187. },
  29188. [
  29189. {
  29190. name: "Macro",
  29191. height: math.unit(1, "mile"),
  29192. default: true
  29193. },
  29194. ]
  29195. ))
  29196. characterMakers.push(() => makeCharacter(
  29197. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29198. {
  29199. front: {
  29200. height: math.unit(6, "feet"),
  29201. weight: math.unit(150, "lb"),
  29202. name: "Front",
  29203. image: {
  29204. source: "./media/characters/en/front.svg",
  29205. extra: 1697 / 1563,
  29206. bottom: 103 / 1800
  29207. }
  29208. },
  29209. back: {
  29210. height: math.unit(6, "feet"),
  29211. weight: math.unit(150, "lb"),
  29212. name: "Back",
  29213. image: {
  29214. source: "./media/characters/en/back.svg",
  29215. extra: 1700 / 1570,
  29216. bottom: 51 / 1751
  29217. }
  29218. },
  29219. frontDressed: {
  29220. height: math.unit(6, "feet"),
  29221. weight: math.unit(150, "lb"),
  29222. name: "Front (Dressed)",
  29223. image: {
  29224. source: "./media/characters/en/front-dressed.svg",
  29225. extra: 1697 / 1563,
  29226. bottom: 103 / 1800
  29227. }
  29228. },
  29229. backDressed: {
  29230. height: math.unit(6, "feet"),
  29231. weight: math.unit(150, "lb"),
  29232. name: "Back (Dressed)",
  29233. image: {
  29234. source: "./media/characters/en/back-dressed.svg",
  29235. extra: 1700 / 1570,
  29236. bottom: 51 / 1751
  29237. }
  29238. },
  29239. },
  29240. [
  29241. {
  29242. name: "Macro",
  29243. height: math.unit(210, "feet"),
  29244. default: true
  29245. },
  29246. ]
  29247. ))
  29248. characterMakers.push(() => makeCharacter(
  29249. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29250. {
  29251. front: {
  29252. height: math.unit(6, "feet"),
  29253. weight: math.unit(150, "lb"),
  29254. name: "Front",
  29255. image: {
  29256. source: "./media/characters/haze-orris/front.svg",
  29257. extra: 3975 / 3525,
  29258. bottom: 137 / 4112
  29259. }
  29260. },
  29261. },
  29262. [
  29263. {
  29264. name: "Micro",
  29265. height: math.unit(150, "mm"),
  29266. default: true
  29267. },
  29268. ]
  29269. ))
  29270. characterMakers.push(() => makeCharacter(
  29271. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29272. {
  29273. front: {
  29274. height: math.unit(6, "feet"),
  29275. weight: math.unit(150, "lb"),
  29276. name: "Front",
  29277. image: {
  29278. source: "./media/characters/casselene-yaro/front.svg",
  29279. extra: 4721 / 4541,
  29280. bottom: 82 / 4803
  29281. }
  29282. },
  29283. back: {
  29284. height: math.unit(6, "feet"),
  29285. weight: math.unit(150, "lb"),
  29286. name: "Back",
  29287. image: {
  29288. source: "./media/characters/casselene-yaro/back.svg",
  29289. extra: 4569 / 4377,
  29290. bottom: 69 / 4638
  29291. }
  29292. },
  29293. frontDressed: {
  29294. height: math.unit(6, "feet"),
  29295. weight: math.unit(150, "lb"),
  29296. name: "Front-dressed",
  29297. image: {
  29298. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29299. extra: 4721 / 4541,
  29300. bottom: 82 / 4803
  29301. }
  29302. },
  29303. },
  29304. [
  29305. {
  29306. name: "Macro",
  29307. height: math.unit(190, "feet"),
  29308. default: true
  29309. },
  29310. ]
  29311. ))
  29312. characterMakers.push(() => makeCharacter(
  29313. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29314. {
  29315. front: {
  29316. height: math.unit(6, "feet"),
  29317. weight: math.unit(150, "lb"),
  29318. name: "Front",
  29319. image: {
  29320. source: "./media/characters/myra-rue-delore/front.svg",
  29321. extra: 1340 / 1308,
  29322. bottom: 67 / 1407
  29323. }
  29324. },
  29325. back: {
  29326. height: math.unit(6, "feet"),
  29327. weight: math.unit(150, "lb"),
  29328. name: "Back",
  29329. image: {
  29330. source: "./media/characters/myra-rue-delore/back.svg",
  29331. extra: 1341 / 1310,
  29332. bottom: 40 / 1381
  29333. }
  29334. },
  29335. frontDressed: {
  29336. height: math.unit(6, "feet"),
  29337. weight: math.unit(150, "lb"),
  29338. name: "Front (Dressed)",
  29339. image: {
  29340. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29341. extra: 1340 / 1308,
  29342. bottom: 67 / 1407
  29343. }
  29344. },
  29345. },
  29346. [
  29347. {
  29348. name: "Macro",
  29349. height: math.unit(150, "feet"),
  29350. default: true
  29351. },
  29352. ]
  29353. ))
  29354. characterMakers.push(() => makeCharacter(
  29355. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29356. {
  29357. front: {
  29358. height: math.unit(10, "feet"),
  29359. weight: math.unit(15015, "lb"),
  29360. name: "Front",
  29361. image: {
  29362. source: "./media/characters/fem!plat/front.svg",
  29363. extra: 2799 / 2604,
  29364. bottom: 149 / 2948
  29365. }
  29366. },
  29367. },
  29368. [
  29369. {
  29370. name: "Normal",
  29371. height: math.unit(10, "feet"),
  29372. default: true
  29373. },
  29374. {
  29375. name: "Macro",
  29376. height: math.unit(100, "feet")
  29377. },
  29378. {
  29379. name: "Megamacro",
  29380. height: math.unit(1000, "feet")
  29381. },
  29382. ]
  29383. ))
  29384. characterMakers.push(() => makeCharacter(
  29385. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29386. {
  29387. front: {
  29388. height: math.unit(15 + 5 / 12, "feet"),
  29389. weight: math.unit(4600, "lb"),
  29390. name: "Front",
  29391. image: {
  29392. source: "./media/characters/neapolitan-ananassa/front.svg",
  29393. extra: 2903 / 2736,
  29394. bottom: 0 / 2903
  29395. }
  29396. },
  29397. side: {
  29398. height: math.unit(15 + 5 / 12, "feet"),
  29399. weight: math.unit(4600, "lb"),
  29400. name: "Side",
  29401. image: {
  29402. source: "./media/characters/neapolitan-ananassa/side.svg",
  29403. extra: 2925 / 2719,
  29404. bottom: 0 / 2925
  29405. }
  29406. },
  29407. back: {
  29408. height: math.unit(15 + 5 / 12, "feet"),
  29409. weight: math.unit(4600, "lb"),
  29410. name: "Back",
  29411. image: {
  29412. source: "./media/characters/neapolitan-ananassa/back.svg",
  29413. extra: 2903 / 2736,
  29414. bottom: 0 / 2903
  29415. }
  29416. },
  29417. },
  29418. [
  29419. {
  29420. name: "Normal",
  29421. height: math.unit(15 + 5 / 12, "feet"),
  29422. default: true
  29423. },
  29424. {
  29425. name: "Post-Millenium",
  29426. height: math.unit(35 + 5 / 12, "feet")
  29427. },
  29428. {
  29429. name: "Post-Era",
  29430. height: math.unit(450 + 5 / 12, "feet")
  29431. },
  29432. ]
  29433. ))
  29434. characterMakers.push(() => makeCharacter(
  29435. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29436. {
  29437. front: {
  29438. height: math.unit(300, "meters"),
  29439. weight: math.unit(125000, "tonnes"),
  29440. name: "Front",
  29441. image: {
  29442. source: "./media/characters/pazuzu/front.svg",
  29443. extra: 877 / 794,
  29444. bottom: 47 / 924
  29445. }
  29446. },
  29447. },
  29448. [
  29449. {
  29450. name: "Macro",
  29451. height: math.unit(300, "meters"),
  29452. default: true
  29453. },
  29454. ]
  29455. ))
  29456. characterMakers.push(() => makeCharacter(
  29457. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29458. {
  29459. side: {
  29460. height: math.unit(10 + 7 / 12, "feet"),
  29461. weight: math.unit(2.5, "tons"),
  29462. name: "Side",
  29463. image: {
  29464. source: "./media/characters/aasha/side.svg",
  29465. extra: 1345 / 1245,
  29466. bottom: 111 / 1456
  29467. }
  29468. },
  29469. back: {
  29470. height: math.unit(10 + 7 / 12, "feet"),
  29471. weight: math.unit(2.5, "tons"),
  29472. name: "Back",
  29473. image: {
  29474. source: "./media/characters/aasha/back.svg",
  29475. extra: 1133 / 1057,
  29476. bottom: 257 / 1390
  29477. }
  29478. },
  29479. },
  29480. [
  29481. {
  29482. name: "Normal",
  29483. height: math.unit(10 + 7 / 12, "feet"),
  29484. default: true
  29485. },
  29486. ]
  29487. ))
  29488. characterMakers.push(() => makeCharacter(
  29489. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29490. {
  29491. front: {
  29492. height: math.unit(6 + 3 / 12, "feet"),
  29493. name: "Front",
  29494. image: {
  29495. source: "./media/characters/nevan/front.svg",
  29496. extra: 704 / 704,
  29497. bottom: 28 / 732
  29498. }
  29499. },
  29500. back: {
  29501. height: math.unit(6 + 3 / 12, "feet"),
  29502. name: "Back",
  29503. image: {
  29504. source: "./media/characters/nevan/back.svg",
  29505. extra: 714 / 714,
  29506. bottom: 21 / 735
  29507. }
  29508. },
  29509. frontFlaccid: {
  29510. height: math.unit(6 + 3 / 12, "feet"),
  29511. name: "Front (Flaccid)",
  29512. image: {
  29513. source: "./media/characters/nevan/front-flaccid.svg",
  29514. extra: 704 / 704,
  29515. bottom: 28 / 732
  29516. }
  29517. },
  29518. frontErect: {
  29519. height: math.unit(6 + 3 / 12, "feet"),
  29520. name: "Front (Erect)",
  29521. image: {
  29522. source: "./media/characters/nevan/front-erect.svg",
  29523. extra: 704 / 704,
  29524. bottom: 28 / 732
  29525. }
  29526. },
  29527. backFlaccid: {
  29528. height: math.unit(6 + 3 / 12, "feet"),
  29529. name: "Back (Flaccid)",
  29530. image: {
  29531. source: "./media/characters/nevan/back-flaccid.svg",
  29532. extra: 714 / 714,
  29533. bottom: 21 / 735
  29534. }
  29535. },
  29536. },
  29537. [
  29538. {
  29539. name: "Normal",
  29540. height: math.unit(6 + 3 / 12, "feet"),
  29541. default: true
  29542. },
  29543. ]
  29544. ))
  29545. characterMakers.push(() => makeCharacter(
  29546. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29547. {
  29548. front: {
  29549. height: math.unit(4, "feet"),
  29550. name: "Front",
  29551. image: {
  29552. source: "./media/characters/arhan/front.svg",
  29553. extra: 3368 / 3133,
  29554. bottom: 0 / 3368
  29555. }
  29556. },
  29557. side: {
  29558. height: math.unit(4, "feet"),
  29559. name: "Side",
  29560. image: {
  29561. source: "./media/characters/arhan/side.svg",
  29562. extra: 3347 / 3105,
  29563. bottom: 0 / 3347
  29564. }
  29565. },
  29566. tongue: {
  29567. height: math.unit(1.42, "feet"),
  29568. name: "Tongue",
  29569. image: {
  29570. source: "./media/characters/arhan/tongue.svg"
  29571. }
  29572. },
  29573. head: {
  29574. height: math.unit(0.85, "feet"),
  29575. name: "Head",
  29576. image: {
  29577. source: "./media/characters/arhan/head.svg"
  29578. }
  29579. },
  29580. },
  29581. [
  29582. {
  29583. name: "Normal",
  29584. height: math.unit(4, "feet"),
  29585. default: true
  29586. },
  29587. ]
  29588. ))
  29589. characterMakers.push(() => makeCharacter(
  29590. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29591. {
  29592. front: {
  29593. height: math.unit(5 + 7.5 / 12, "feet"),
  29594. weight: math.unit(120, "lb"),
  29595. name: "Front",
  29596. image: {
  29597. source: "./media/characters/digi-duncan/front.svg",
  29598. extra: 330 / 326,
  29599. bottom: 16 / 346
  29600. }
  29601. },
  29602. side: {
  29603. height: math.unit(5 + 7.5 / 12, "feet"),
  29604. weight: math.unit(120, "lb"),
  29605. name: "Side",
  29606. image: {
  29607. source: "./media/characters/digi-duncan/side.svg",
  29608. extra: 341 / 337,
  29609. bottom: 1 / 342
  29610. }
  29611. },
  29612. back: {
  29613. height: math.unit(5 + 7.5 / 12, "feet"),
  29614. weight: math.unit(120, "lb"),
  29615. name: "Back",
  29616. image: {
  29617. source: "./media/characters/digi-duncan/back.svg",
  29618. extra: 330 / 326,
  29619. bottom: 12 / 342
  29620. }
  29621. },
  29622. },
  29623. [
  29624. {
  29625. name: "Speck",
  29626. height: math.unit(0.25, "mm")
  29627. },
  29628. {
  29629. name: "Micro",
  29630. height: math.unit(5, "mm")
  29631. },
  29632. {
  29633. name: "Tiny",
  29634. height: math.unit(0.5, "inches"),
  29635. default: true
  29636. },
  29637. {
  29638. name: "Human",
  29639. height: math.unit(5 + 7.5 / 12, "feet")
  29640. },
  29641. {
  29642. name: "Minigiant",
  29643. height: math.unit(8 + 5.25, "feet")
  29644. },
  29645. {
  29646. name: "Giant",
  29647. height: math.unit(2000, "feet")
  29648. },
  29649. {
  29650. name: "Mega",
  29651. height: math.unit(371.1, "miles")
  29652. },
  29653. ]
  29654. ))
  29655. characterMakers.push(() => makeCharacter(
  29656. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29657. {
  29658. front: {
  29659. height: math.unit(2, "meters"),
  29660. weight: math.unit(350, "kg"),
  29661. name: "Front",
  29662. image: {
  29663. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29664. extra: 898 / 838,
  29665. bottom: 9 / 907
  29666. }
  29667. },
  29668. },
  29669. [
  29670. {
  29671. name: "Micro",
  29672. height: math.unit(8, "meters")
  29673. },
  29674. {
  29675. name: "Normal",
  29676. height: math.unit(50, "meters"),
  29677. default: true
  29678. },
  29679. {
  29680. name: "Macro",
  29681. height: math.unit(500, "meters")
  29682. },
  29683. ]
  29684. ))
  29685. characterMakers.push(() => makeCharacter(
  29686. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29687. {
  29688. front: {
  29689. height: math.unit(6 + 6 / 12, "feet"),
  29690. name: "Front",
  29691. image: {
  29692. source: "./media/characters/khardesh/front.svg",
  29693. extra: 888 / 797,
  29694. bottom: 25 / 913
  29695. }
  29696. },
  29697. },
  29698. [
  29699. {
  29700. name: "Normal",
  29701. height: math.unit(6 + 6 / 12, "feet"),
  29702. default: true
  29703. },
  29704. {
  29705. name: "Normal+",
  29706. height: math.unit(4, "meters")
  29707. },
  29708. {
  29709. name: "Macro",
  29710. height: math.unit(50, "meters")
  29711. },
  29712. {
  29713. name: "Macro+",
  29714. height: math.unit(100, "meters")
  29715. },
  29716. {
  29717. name: "Megamacro",
  29718. height: math.unit(20, "km")
  29719. },
  29720. ]
  29721. ))
  29722. characterMakers.push(() => makeCharacter(
  29723. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29724. {
  29725. front: {
  29726. height: math.unit(6, "feet"),
  29727. weight: math.unit(150, "lb"),
  29728. name: "Front",
  29729. image: {
  29730. source: "./media/characters/kosho/front.svg",
  29731. extra: 1847 / 1847,
  29732. bottom: 86 / 1933
  29733. }
  29734. },
  29735. },
  29736. [
  29737. {
  29738. name: "Second-stage micro",
  29739. height: math.unit(0.5, "inches")
  29740. },
  29741. {
  29742. name: "First-stage micro",
  29743. height: math.unit(6, "inches")
  29744. },
  29745. {
  29746. name: "Normal",
  29747. height: math.unit(6, "feet"),
  29748. default: true
  29749. },
  29750. {
  29751. name: "First-stage macro",
  29752. height: math.unit(72, "feet")
  29753. },
  29754. {
  29755. name: "Second-stage macro",
  29756. height: math.unit(864, "feet")
  29757. },
  29758. ]
  29759. ))
  29760. characterMakers.push(() => makeCharacter(
  29761. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29762. {
  29763. normal: {
  29764. height: math.unit(4 + 6 / 12, "feet"),
  29765. name: "Normal",
  29766. image: {
  29767. source: "./media/characters/hydra/normal.svg",
  29768. extra: 2833 / 2634,
  29769. bottom: 68 / 2901
  29770. }
  29771. },
  29772. smol: {
  29773. height: math.unit(0.705, "inches"),
  29774. name: "Smol",
  29775. image: {
  29776. source: "./media/characters/hydra/smol.svg",
  29777. extra: 2715 / 2540,
  29778. bottom: 0 / 2715
  29779. }
  29780. },
  29781. },
  29782. [
  29783. {
  29784. name: "Normal",
  29785. height: math.unit(4 + 6 / 12, "feet"),
  29786. default: true
  29787. }
  29788. ]
  29789. ))
  29790. characterMakers.push(() => makeCharacter(
  29791. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29792. {
  29793. front: {
  29794. height: math.unit(0.6, "cm"),
  29795. name: "Front",
  29796. image: {
  29797. source: "./media/characters/daz/front.svg",
  29798. extra: 1682 / 1164,
  29799. bottom: 42 / 1724
  29800. }
  29801. },
  29802. },
  29803. [
  29804. {
  29805. name: "Normal",
  29806. height: math.unit(0.6, "cm"),
  29807. default: true
  29808. },
  29809. ]
  29810. ))
  29811. characterMakers.push(() => makeCharacter(
  29812. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29813. {
  29814. front: {
  29815. height: math.unit(6, "feet"),
  29816. weight: math.unit(235, "lb"),
  29817. name: "Front",
  29818. image: {
  29819. source: "./media/characters/theo-pangolin/front.svg",
  29820. extra: 1996 / 1969,
  29821. bottom: 115 / 2111
  29822. }
  29823. },
  29824. back: {
  29825. height: math.unit(6, "feet"),
  29826. weight: math.unit(235, "lb"),
  29827. name: "Back",
  29828. image: {
  29829. source: "./media/characters/theo-pangolin/back.svg",
  29830. extra: 1979 / 1979,
  29831. bottom: 40 / 2019
  29832. }
  29833. },
  29834. feral: {
  29835. height: math.unit(2, "feet"),
  29836. weight: math.unit(30, "lb"),
  29837. name: "Feral",
  29838. image: {
  29839. source: "./media/characters/theo-pangolin/feral.svg",
  29840. extra: 803 / 791,
  29841. bottom: 181 / 984
  29842. }
  29843. },
  29844. footFive: {
  29845. height: math.unit(1.43, "feet"),
  29846. name: "Foot (Five Toes)",
  29847. image: {
  29848. source: "./media/characters/theo-pangolin/foot-five.svg"
  29849. }
  29850. },
  29851. footFour: {
  29852. height: math.unit(1.43, "feet"),
  29853. name: "Foot (Four Toes)",
  29854. image: {
  29855. source: "./media/characters/theo-pangolin/foot-four.svg"
  29856. }
  29857. },
  29858. handFour: {
  29859. height: math.unit(0.81, "feet"),
  29860. name: "Hand (Four Fingers)",
  29861. image: {
  29862. source: "./media/characters/theo-pangolin/hand-four.svg"
  29863. }
  29864. },
  29865. handThree: {
  29866. height: math.unit(0.81, "feet"),
  29867. name: "Hand (Three Fingers)",
  29868. image: {
  29869. source: "./media/characters/theo-pangolin/hand-three.svg"
  29870. }
  29871. },
  29872. headFront: {
  29873. height: math.unit(1.37, "feet"),
  29874. name: "Head (Front)",
  29875. image: {
  29876. source: "./media/characters/theo-pangolin/head-front.svg"
  29877. }
  29878. },
  29879. headSide: {
  29880. height: math.unit(1.43, "feet"),
  29881. name: "Head (Side)",
  29882. image: {
  29883. source: "./media/characters/theo-pangolin/head-side.svg"
  29884. }
  29885. },
  29886. tongue: {
  29887. height: math.unit(2.29, "feet"),
  29888. name: "Tongue",
  29889. image: {
  29890. source: "./media/characters/theo-pangolin/tongue.svg"
  29891. }
  29892. },
  29893. },
  29894. [
  29895. {
  29896. name: "Normal",
  29897. height: math.unit(6, "feet")
  29898. },
  29899. {
  29900. name: "Macro",
  29901. height: math.unit(400, "feet"),
  29902. default: true
  29903. },
  29904. ]
  29905. ))
  29906. characterMakers.push(() => makeCharacter(
  29907. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29908. {
  29909. front: {
  29910. height: math.unit(6, "inches"),
  29911. weight: math.unit(0.036, "kg"),
  29912. name: "Front",
  29913. image: {
  29914. source: "./media/characters/renée/front.svg",
  29915. extra: 900 / 886,
  29916. bottom: 8 / 908
  29917. }
  29918. },
  29919. },
  29920. [
  29921. {
  29922. name: "Nano",
  29923. height: math.unit(1, "nm")
  29924. },
  29925. {
  29926. name: "Micro",
  29927. height: math.unit(1, "mm")
  29928. },
  29929. {
  29930. name: "Normal",
  29931. height: math.unit(6, "inches")
  29932. },
  29933. {
  29934. name: "Macro",
  29935. height: math.unit(2000, "feet"),
  29936. default: true
  29937. },
  29938. {
  29939. name: "Megamacro",
  29940. height: math.unit(2, "km")
  29941. },
  29942. {
  29943. name: "Gigamacro",
  29944. height: math.unit(2000, "km")
  29945. },
  29946. {
  29947. name: "Teramacro",
  29948. height: math.unit(250000, "km")
  29949. },
  29950. ]
  29951. ))
  29952. characterMakers.push(() => makeCharacter(
  29953. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29954. {
  29955. front: {
  29956. height: math.unit(4, "meters"),
  29957. weight: math.unit(150, "kg"),
  29958. name: "Front",
  29959. image: {
  29960. source: "./media/characters/caledvwlch/front.svg",
  29961. extra: 1760 / 1551,
  29962. bottom: 28 / 1788
  29963. }
  29964. },
  29965. side: {
  29966. height: math.unit(4, "meters"),
  29967. weight: math.unit(150, "kg"),
  29968. name: "Side",
  29969. image: {
  29970. source: "./media/characters/caledvwlch/side.svg",
  29971. extra: 1605 / 1536,
  29972. bottom: 31 / 1636
  29973. }
  29974. },
  29975. back: {
  29976. height: math.unit(4, "meters"),
  29977. weight: math.unit(150, "kg"),
  29978. name: "Back",
  29979. image: {
  29980. source: "./media/characters/caledvwlch/back.svg",
  29981. extra: 1635 / 1565,
  29982. bottom: 27 / 1662
  29983. }
  29984. },
  29985. },
  29986. [
  29987. {
  29988. name: "\"Incognito\"",
  29989. height: math.unit(4, "meters")
  29990. },
  29991. {
  29992. name: "Small rampage",
  29993. height: math.unit(600, "meters")
  29994. },
  29995. {
  29996. name: "Mega",
  29997. height: math.unit(30, "km")
  29998. },
  29999. {
  30000. name: "Home-size",
  30001. height: math.unit(50, "km"),
  30002. default: true
  30003. },
  30004. {
  30005. name: "Giga",
  30006. height: math.unit(300, "km")
  30007. },
  30008. {
  30009. name: "Lounging",
  30010. height: math.unit(11000, "km")
  30011. },
  30012. {
  30013. name: "Planet snacking",
  30014. height: math.unit(2000000, "km")
  30015. },
  30016. ]
  30017. ))
  30018. characterMakers.push(() => makeCharacter(
  30019. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30020. {
  30021. front: {
  30022. height: math.unit(6, "feet"),
  30023. weight: math.unit(215, "lb"),
  30024. name: "Front",
  30025. image: {
  30026. source: "./media/characters/sapphire-svell/front.svg",
  30027. extra: 495 / 455,
  30028. bottom: 20 / 515
  30029. }
  30030. },
  30031. back: {
  30032. height: math.unit(6, "feet"),
  30033. weight: math.unit(216, "lb"),
  30034. name: "Back",
  30035. image: {
  30036. source: "./media/characters/sapphire-svell/back.svg",
  30037. extra: 497 / 477,
  30038. bottom: 7 / 504
  30039. }
  30040. },
  30041. maw: {
  30042. height: math.unit(1.57, "feet"),
  30043. name: "Maw",
  30044. image: {
  30045. source: "./media/characters/sapphire-svell/maw.svg"
  30046. }
  30047. },
  30048. foot: {
  30049. height: math.unit(1.07, "feet"),
  30050. name: "Foot",
  30051. image: {
  30052. source: "./media/characters/sapphire-svell/foot.svg"
  30053. }
  30054. },
  30055. toering: {
  30056. height: math.unit(1.7, "inch"),
  30057. name: "Toering",
  30058. image: {
  30059. source: "./media/characters/sapphire-svell/toering.svg"
  30060. }
  30061. },
  30062. },
  30063. [
  30064. {
  30065. name: "Normal",
  30066. height: math.unit(300, "feet"),
  30067. default: true
  30068. },
  30069. {
  30070. name: "Augmented",
  30071. height: math.unit(1250, "feet")
  30072. },
  30073. {
  30074. name: "Unleashed",
  30075. height: math.unit(3000, "feet")
  30076. },
  30077. ]
  30078. ))
  30079. characterMakers.push(() => makeCharacter(
  30080. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30081. {
  30082. side: {
  30083. height: math.unit(2 + 3 / 12, "feet"),
  30084. weight: math.unit(110, "lb"),
  30085. name: "Side",
  30086. image: {
  30087. source: "./media/characters/glitch-flux/side.svg",
  30088. extra: 997 / 805,
  30089. bottom: 20 / 1017
  30090. }
  30091. },
  30092. },
  30093. [
  30094. {
  30095. name: "Normal",
  30096. height: math.unit(2 + 3 / 12, "feet"),
  30097. default: true
  30098. },
  30099. ]
  30100. ))
  30101. characterMakers.push(() => makeCharacter(
  30102. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30103. {
  30104. front: {
  30105. height: math.unit(4, "meters"),
  30106. name: "Front",
  30107. image: {
  30108. source: "./media/characters/mid/front.svg",
  30109. extra: 507 / 476,
  30110. bottom: 17 / 524
  30111. }
  30112. },
  30113. back: {
  30114. height: math.unit(4, "meters"),
  30115. name: "Back",
  30116. image: {
  30117. source: "./media/characters/mid/back.svg",
  30118. extra: 519 / 487,
  30119. bottom: 7 / 526
  30120. }
  30121. },
  30122. stuck: {
  30123. height: math.unit(2.2, "meters"),
  30124. name: "Stuck",
  30125. image: {
  30126. source: "./media/characters/mid/stuck.svg",
  30127. extra: 1951 / 1869,
  30128. bottom: 88 / 2039
  30129. }
  30130. }
  30131. },
  30132. [
  30133. {
  30134. name: "Normal",
  30135. height: math.unit(4, "meters"),
  30136. default: true
  30137. },
  30138. {
  30139. name: "Big",
  30140. height: math.unit(10, "meters")
  30141. },
  30142. {
  30143. name: "Macro",
  30144. height: math.unit(800, "meters")
  30145. },
  30146. {
  30147. name: "Megamacro",
  30148. height: math.unit(100, "km")
  30149. },
  30150. {
  30151. name: "Overgrown",
  30152. height: math.unit(1, "parsec")
  30153. },
  30154. ]
  30155. ))
  30156. characterMakers.push(() => makeCharacter(
  30157. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30158. {
  30159. front: {
  30160. height: math.unit(2.5, "meters"),
  30161. weight: math.unit(225, "kg"),
  30162. name: "Front",
  30163. image: {
  30164. source: "./media/characters/iris/front.svg",
  30165. extra: 3348 / 3251,
  30166. bottom: 205 / 3553
  30167. }
  30168. },
  30169. maw: {
  30170. height: math.unit(0.56, "meter"),
  30171. name: "Maw",
  30172. image: {
  30173. source: "./media/characters/iris/maw.svg"
  30174. }
  30175. },
  30176. },
  30177. [
  30178. {
  30179. name: "Mewter cat",
  30180. height: math.unit(1.2, "meters")
  30181. },
  30182. {
  30183. name: "Minimacro",
  30184. height: math.unit(2.5, "meters"),
  30185. default: true
  30186. },
  30187. {
  30188. name: "Macro",
  30189. height: math.unit(180, "meters")
  30190. },
  30191. {
  30192. name: "Megamacro",
  30193. height: math.unit(2746, "meters")
  30194. },
  30195. ]
  30196. ))
  30197. characterMakers.push(() => makeCharacter(
  30198. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30199. {
  30200. front: {
  30201. height: math.unit(6, "feet"),
  30202. weight: math.unit(135, "lb"),
  30203. name: "Front",
  30204. image: {
  30205. source: "./media/characters/axel/front.svg",
  30206. extra: 908 / 908,
  30207. bottom: 58 / 966
  30208. }
  30209. },
  30210. side: {
  30211. height: math.unit(6, "feet"),
  30212. weight: math.unit(135, "lb"),
  30213. name: "Side",
  30214. image: {
  30215. source: "./media/characters/axel/side.svg",
  30216. extra: 958 / 958,
  30217. bottom: 11 / 969
  30218. }
  30219. },
  30220. back: {
  30221. height: math.unit(6, "feet"),
  30222. weight: math.unit(135, "lb"),
  30223. name: "Back",
  30224. image: {
  30225. source: "./media/characters/axel/back.svg",
  30226. extra: 887 / 887,
  30227. bottom: 34 / 921
  30228. }
  30229. },
  30230. head: {
  30231. height: math.unit(1.07, "feet"),
  30232. name: "Head",
  30233. image: {
  30234. source: "./media/characters/axel/head.svg"
  30235. }
  30236. },
  30237. beak: {
  30238. height: math.unit(1.4, "feet"),
  30239. name: "Beak",
  30240. image: {
  30241. source: "./media/characters/axel/beak.svg"
  30242. }
  30243. },
  30244. beakSide: {
  30245. height: math.unit(1.4, "feet"),
  30246. name: "Beak Side",
  30247. image: {
  30248. source: "./media/characters/axel/beak-side.svg"
  30249. }
  30250. },
  30251. sheath: {
  30252. height: math.unit(0.5, "feet"),
  30253. name: "Sheath",
  30254. image: {
  30255. source: "./media/characters/axel/sheath.svg"
  30256. }
  30257. },
  30258. dick: {
  30259. height: math.unit(0.98, "feet"),
  30260. name: "Dick",
  30261. image: {
  30262. source: "./media/characters/axel/dick.svg"
  30263. }
  30264. },
  30265. },
  30266. [
  30267. {
  30268. name: "Macro",
  30269. height: math.unit(68, "meters"),
  30270. default: true
  30271. },
  30272. ]
  30273. ))
  30274. characterMakers.push(() => makeCharacter(
  30275. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30276. {
  30277. front: {
  30278. height: math.unit(3.5, "meters"),
  30279. weight: math.unit(1200, "kg"),
  30280. name: "Front",
  30281. image: {
  30282. source: "./media/characters/joanna/front.svg",
  30283. extra: 1596 / 1488,
  30284. bottom: 29 / 1625
  30285. }
  30286. },
  30287. back: {
  30288. height: math.unit(3.5, "meters"),
  30289. weight: math.unit(1200, "kg"),
  30290. name: "Back",
  30291. image: {
  30292. source: "./media/characters/joanna/back.svg",
  30293. extra: 1594 / 1495,
  30294. bottom: 26 / 1620
  30295. }
  30296. },
  30297. frontShorts: {
  30298. height: math.unit(3.5, "meters"),
  30299. weight: math.unit(1200, "kg"),
  30300. name: "Front (Shorts)",
  30301. image: {
  30302. source: "./media/characters/joanna/front-shorts.svg",
  30303. extra: 1596 / 1488,
  30304. bottom: 29 / 1625
  30305. }
  30306. },
  30307. frontBiker: {
  30308. height: math.unit(3.5, "meters"),
  30309. weight: math.unit(1200, "kg"),
  30310. name: "Front (Biker)",
  30311. image: {
  30312. source: "./media/characters/joanna/front-biker.svg",
  30313. extra: 1596 / 1488,
  30314. bottom: 29 / 1625
  30315. }
  30316. },
  30317. backBiker: {
  30318. height: math.unit(3.5, "meters"),
  30319. weight: math.unit(1200, "kg"),
  30320. name: "Back (Biker)",
  30321. image: {
  30322. source: "./media/characters/joanna/back-biker.svg",
  30323. extra: 1594 / 1495,
  30324. bottom: 88 / 1682
  30325. }
  30326. },
  30327. bikeLeft: {
  30328. height: math.unit(2.4, "meters"),
  30329. weight: math.unit(1600, "kg"),
  30330. name: "Bike (Left)",
  30331. image: {
  30332. source: "./media/characters/joanna/bike-left.svg",
  30333. extra: 720 / 720,
  30334. bottom: 8 / 728
  30335. }
  30336. },
  30337. bikeRight: {
  30338. height: math.unit(2.4, "meters"),
  30339. weight: math.unit(1600, "kg"),
  30340. name: "Bike (Right)",
  30341. image: {
  30342. source: "./media/characters/joanna/bike-right.svg",
  30343. extra: 720 / 720,
  30344. bottom: 8 / 728
  30345. }
  30346. },
  30347. },
  30348. [
  30349. {
  30350. name: "Incognito",
  30351. height: math.unit(3.5, "meters")
  30352. },
  30353. {
  30354. name: "Casual Big",
  30355. height: math.unit(200, "meters")
  30356. },
  30357. {
  30358. name: "Macro",
  30359. height: math.unit(600, "meters")
  30360. },
  30361. {
  30362. name: "Original",
  30363. height: math.unit(20, "km"),
  30364. default: true
  30365. },
  30366. {
  30367. name: "Giga",
  30368. height: math.unit(400, "km")
  30369. },
  30370. {
  30371. name: "Lounging",
  30372. height: math.unit(1500, "km")
  30373. },
  30374. {
  30375. name: "Planetary",
  30376. height: math.unit(200000, "km")
  30377. },
  30378. ]
  30379. ))
  30380. characterMakers.push(() => makeCharacter(
  30381. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30382. {
  30383. front: {
  30384. height: math.unit(6, "feet"),
  30385. weight: math.unit(150, "lb"),
  30386. name: "Front",
  30387. image: {
  30388. source: "./media/characters/hugo-sigil/front.svg",
  30389. extra: 522 / 500,
  30390. bottom: 2 / 524
  30391. }
  30392. },
  30393. back: {
  30394. height: math.unit(6, "feet"),
  30395. weight: math.unit(150, "lb"),
  30396. name: "Back",
  30397. image: {
  30398. source: "./media/characters/hugo-sigil/back.svg",
  30399. extra: 519 / 495,
  30400. bottom: 5 / 524
  30401. }
  30402. },
  30403. maw: {
  30404. height: math.unit(1.4, "feet"),
  30405. weight: math.unit(150, "lb"),
  30406. name: "Maw",
  30407. image: {
  30408. source: "./media/characters/hugo-sigil/maw.svg"
  30409. }
  30410. },
  30411. feet: {
  30412. height: math.unit(1.56, "feet"),
  30413. weight: math.unit(150, "lb"),
  30414. name: "Feet",
  30415. image: {
  30416. source: "./media/characters/hugo-sigil/feet.svg",
  30417. extra: 177 / 177,
  30418. bottom: 12 / 189
  30419. }
  30420. },
  30421. },
  30422. [
  30423. {
  30424. name: "Normal",
  30425. height: math.unit(6, "feet")
  30426. },
  30427. {
  30428. name: "Macro",
  30429. height: math.unit(200, "feet"),
  30430. default: true
  30431. },
  30432. ]
  30433. ))
  30434. characterMakers.push(() => makeCharacter(
  30435. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30436. {
  30437. front: {
  30438. height: math.unit(6, "feet"),
  30439. weight: math.unit(150, "lb"),
  30440. name: "Front",
  30441. image: {
  30442. source: "./media/characters/peri/front.svg",
  30443. extra: 2354 / 2233,
  30444. bottom: 49 / 2403
  30445. }
  30446. },
  30447. },
  30448. [
  30449. {
  30450. name: "Really Small",
  30451. height: math.unit(1, "nm")
  30452. },
  30453. {
  30454. name: "Micro",
  30455. height: math.unit(4, "inches")
  30456. },
  30457. {
  30458. name: "Normal",
  30459. height: math.unit(7, "inches"),
  30460. default: true
  30461. },
  30462. {
  30463. name: "Macro",
  30464. height: math.unit(400, "feet")
  30465. },
  30466. {
  30467. name: "Megamacro",
  30468. height: math.unit(100, "miles")
  30469. },
  30470. ]
  30471. ))
  30472. characterMakers.push(() => makeCharacter(
  30473. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30474. {
  30475. frontSlim: {
  30476. height: math.unit(7, "feet"),
  30477. name: "Front (Slim)",
  30478. image: {
  30479. source: "./media/characters/issilora/front-slim.svg",
  30480. extra: 529 / 449,
  30481. bottom: 53 / 582
  30482. }
  30483. },
  30484. sideSlim: {
  30485. height: math.unit(7, "feet"),
  30486. name: "Side (Slim)",
  30487. image: {
  30488. source: "./media/characters/issilora/side-slim.svg",
  30489. extra: 570 / 480,
  30490. bottom: 30 / 600
  30491. }
  30492. },
  30493. backSlim: {
  30494. height: math.unit(7, "feet"),
  30495. name: "Back (Slim)",
  30496. image: {
  30497. source: "./media/characters/issilora/back-slim.svg",
  30498. extra: 537 / 455,
  30499. bottom: 46 / 583
  30500. }
  30501. },
  30502. frontBuff: {
  30503. height: math.unit(7, "feet"),
  30504. name: "Front (Buff)",
  30505. image: {
  30506. source: "./media/characters/issilora/front-buff.svg",
  30507. extra: 2310 / 2035,
  30508. bottom: 335 / 2645
  30509. }
  30510. },
  30511. head: {
  30512. height: math.unit(1.94, "feet"),
  30513. name: "Head",
  30514. image: {
  30515. source: "./media/characters/issilora/head.svg"
  30516. }
  30517. },
  30518. },
  30519. [
  30520. {
  30521. name: "Minimum",
  30522. height: math.unit(7, "feet")
  30523. },
  30524. {
  30525. name: "Comfortable",
  30526. height: math.unit(17, "feet")
  30527. },
  30528. {
  30529. name: "Fun Size",
  30530. height: math.unit(47, "feet")
  30531. },
  30532. {
  30533. name: "Natural Macro",
  30534. height: math.unit(137, "feet"),
  30535. default: true
  30536. },
  30537. {
  30538. name: "Maximum Kaiju",
  30539. height: math.unit(397, "feet")
  30540. },
  30541. ]
  30542. ))
  30543. characterMakers.push(() => makeCharacter(
  30544. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30545. {
  30546. front: {
  30547. height: math.unit(50 + 9/12, "feet"),
  30548. weight: math.unit(32.8, "tons"),
  30549. name: "Front",
  30550. image: {
  30551. source: "./media/characters/irb'iiritaahn/front.svg",
  30552. extra: 1878/1826,
  30553. bottom: 326/2204
  30554. }
  30555. },
  30556. back: {
  30557. height: math.unit(50 + 9/12, "feet"),
  30558. weight: math.unit(32.8, "tons"),
  30559. name: "Back",
  30560. image: {
  30561. source: "./media/characters/irb'iiritaahn/back.svg",
  30562. extra: 2052/2018,
  30563. bottom: 152/2204
  30564. }
  30565. },
  30566. head: {
  30567. height: math.unit(12.86, "feet"),
  30568. name: "Head",
  30569. image: {
  30570. source: "./media/characters/irb'iiritaahn/head.svg"
  30571. }
  30572. },
  30573. maw: {
  30574. height: math.unit(9.66, "feet"),
  30575. name: "Maw",
  30576. image: {
  30577. source: "./media/characters/irb'iiritaahn/maw.svg"
  30578. }
  30579. },
  30580. frontDick: {
  30581. height: math.unit(8.78461, "feet"),
  30582. name: "Front Dick",
  30583. image: {
  30584. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30585. }
  30586. },
  30587. rearDick: {
  30588. height: math.unit(8.78461, "feet"),
  30589. name: "Rear Dick",
  30590. image: {
  30591. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30592. }
  30593. },
  30594. rearDickUnfolded: {
  30595. height: math.unit(8.78, "feet"),
  30596. name: "Rear Dick (Unfolded)",
  30597. image: {
  30598. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30599. }
  30600. },
  30601. wings: {
  30602. height: math.unit(43, "feet"),
  30603. name: "Wings",
  30604. image: {
  30605. source: "./media/characters/irb'iiritaahn/wings.svg"
  30606. }
  30607. },
  30608. },
  30609. [
  30610. {
  30611. name: "Macro",
  30612. height: math.unit(50 + 9/12, "feet"),
  30613. default: true
  30614. },
  30615. ]
  30616. ))
  30617. characterMakers.push(() => makeCharacter(
  30618. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30619. {
  30620. front: {
  30621. height: math.unit(205, "cm"),
  30622. weight: math.unit(102, "kg"),
  30623. name: "Front",
  30624. image: {
  30625. source: "./media/characters/irbisgreif/front.svg",
  30626. extra: 785/706,
  30627. bottom: 13/798
  30628. }
  30629. },
  30630. back: {
  30631. height: math.unit(205, "cm"),
  30632. weight: math.unit(102, "kg"),
  30633. name: "Back",
  30634. image: {
  30635. source: "./media/characters/irbisgreif/back.svg",
  30636. extra: 713/701,
  30637. bottom: 26/739
  30638. }
  30639. },
  30640. frontDressed: {
  30641. height: math.unit(216, "cm"),
  30642. weight: math.unit(102, "kg"),
  30643. name: "Front-dressed",
  30644. image: {
  30645. source: "./media/characters/irbisgreif/front-dressed.svg",
  30646. extra: 902/776,
  30647. bottom: 14/916
  30648. }
  30649. },
  30650. sideDressed: {
  30651. height: math.unit(195, "cm"),
  30652. weight: math.unit(102, "kg"),
  30653. name: "Side-dressed",
  30654. image: {
  30655. source: "./media/characters/irbisgreif/side-dressed.svg",
  30656. extra: 788/688,
  30657. bottom: 21/809
  30658. }
  30659. },
  30660. backDressed: {
  30661. height: math.unit(216, "cm"),
  30662. weight: math.unit(102, "kg"),
  30663. name: "Back-dressed",
  30664. image: {
  30665. source: "./media/characters/irbisgreif/back-dressed.svg",
  30666. extra: 901/783,
  30667. bottom: 10/911
  30668. }
  30669. },
  30670. dick: {
  30671. height: math.unit(0.49, "feet"),
  30672. name: "Dick",
  30673. image: {
  30674. source: "./media/characters/irbisgreif/dick.svg"
  30675. }
  30676. },
  30677. wingTop: {
  30678. height: math.unit(1.93 , "feet"),
  30679. name: "Wing-top",
  30680. image: {
  30681. source: "./media/characters/irbisgreif/wing-top.svg"
  30682. }
  30683. },
  30684. wingBottom: {
  30685. height: math.unit(1.93 , "feet"),
  30686. name: "Wing-bottom",
  30687. image: {
  30688. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30689. }
  30690. },
  30691. },
  30692. [
  30693. {
  30694. name: "Normal",
  30695. height: math.unit(216, "cm"),
  30696. default: true
  30697. },
  30698. ]
  30699. ))
  30700. characterMakers.push(() => makeCharacter(
  30701. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30702. {
  30703. front: {
  30704. height: math.unit(6, "feet"),
  30705. weight: math.unit(150, "lb"),
  30706. name: "Front",
  30707. image: {
  30708. source: "./media/characters/pride/front.svg",
  30709. extra: 1299/1230,
  30710. bottom: 18/1317
  30711. }
  30712. },
  30713. },
  30714. [
  30715. {
  30716. name: "Normal",
  30717. height: math.unit(7, "feet")
  30718. },
  30719. {
  30720. name: "Mini-macro",
  30721. height: math.unit(11, "feet")
  30722. },
  30723. {
  30724. name: "Macro",
  30725. height: math.unit(15, "meters"),
  30726. default: true
  30727. },
  30728. {
  30729. name: "Macro+",
  30730. height: math.unit(40, "meters")
  30731. },
  30732. ]
  30733. ))
  30734. characterMakers.push(() => makeCharacter(
  30735. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30736. {
  30737. front: {
  30738. height: math.unit(4 + 2 / 12, "feet"),
  30739. weight: math.unit(95, "lb"),
  30740. name: "Front",
  30741. image: {
  30742. source: "./media/characters/vaelophis-nyx/front.svg",
  30743. extra: 2532/2330,
  30744. bottom: 0/2532
  30745. }
  30746. },
  30747. back: {
  30748. height: math.unit(4 + 2 / 12, "feet"),
  30749. weight: math.unit(95, "lb"),
  30750. name: "Back",
  30751. image: {
  30752. source: "./media/characters/vaelophis-nyx/back.svg",
  30753. extra: 2484/2361,
  30754. bottom: 0/2484
  30755. }
  30756. },
  30757. feralSide: {
  30758. height: math.unit(2 + 1/12, "feet"),
  30759. weight: math.unit(20, "lb"),
  30760. name: "Feral (Side)",
  30761. image: {
  30762. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30763. extra: 1721/1581,
  30764. bottom: 70/1791
  30765. }
  30766. },
  30767. feralLazing: {
  30768. height: math.unit(1.08, "feet"),
  30769. weight: math.unit(20, "lb"),
  30770. name: "Feral (Lazing)",
  30771. image: {
  30772. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30773. extra: 822/822,
  30774. bottom: 248/1070
  30775. }
  30776. },
  30777. ear: {
  30778. height: math.unit(0.416, "feet"),
  30779. name: "Ear",
  30780. image: {
  30781. source: "./media/characters/vaelophis-nyx/ear.svg"
  30782. }
  30783. },
  30784. eye: {
  30785. height: math.unit(0.0748, "feet"),
  30786. name: "Eye",
  30787. image: {
  30788. source: "./media/characters/vaelophis-nyx/eye.svg"
  30789. }
  30790. },
  30791. mouth: {
  30792. height: math.unit(0.378, "feet"),
  30793. name: "Mouth",
  30794. image: {
  30795. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30796. }
  30797. },
  30798. spade: {
  30799. height: math.unit(0.55, "feet"),
  30800. name: "Spade",
  30801. image: {
  30802. source: "./media/characters/vaelophis-nyx/spade.svg"
  30803. }
  30804. },
  30805. },
  30806. [
  30807. {
  30808. name: "Normal",
  30809. height: math.unit(4 + 2/12, "feet"),
  30810. default: true
  30811. },
  30812. ]
  30813. ))
  30814. characterMakers.push(() => makeCharacter(
  30815. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30816. {
  30817. front: {
  30818. height: math.unit(7, "feet"),
  30819. weight: math.unit(231, "lb"),
  30820. name: "Front",
  30821. image: {
  30822. source: "./media/characters/flux/front.svg",
  30823. extra: 919/871,
  30824. bottom: 0/919
  30825. }
  30826. },
  30827. back: {
  30828. height: math.unit(7, "feet"),
  30829. weight: math.unit(231, "lb"),
  30830. name: "Back",
  30831. image: {
  30832. source: "./media/characters/flux/back.svg",
  30833. extra: 1040/992,
  30834. bottom: 0/1040
  30835. }
  30836. },
  30837. frontDressed: {
  30838. height: math.unit(7, "feet"),
  30839. weight: math.unit(231, "lb"),
  30840. name: "Front (Dressed)",
  30841. image: {
  30842. source: "./media/characters/flux/front-dressed.svg",
  30843. extra: 919/871,
  30844. bottom: 0/919
  30845. }
  30846. },
  30847. feralSide: {
  30848. height: math.unit(5, "feet"),
  30849. weight: math.unit(150, "lb"),
  30850. name: "Feral (Side)",
  30851. image: {
  30852. source: "./media/characters/flux/feral-side.svg",
  30853. extra: 598/528,
  30854. bottom: 28/626
  30855. }
  30856. },
  30857. head: {
  30858. height: math.unit(1.585, "feet"),
  30859. name: "Head",
  30860. image: {
  30861. source: "./media/characters/flux/head.svg"
  30862. }
  30863. },
  30864. headSide: {
  30865. height: math.unit(1.74, "feet"),
  30866. name: "Head (Side)",
  30867. image: {
  30868. source: "./media/characters/flux/head-side.svg"
  30869. }
  30870. },
  30871. headSideFire: {
  30872. height: math.unit(1.76, "feet"),
  30873. name: "Head (Side, Fire)",
  30874. image: {
  30875. source: "./media/characters/flux/head-side-fire.svg"
  30876. }
  30877. },
  30878. },
  30879. [
  30880. {
  30881. name: "Normal",
  30882. height: math.unit(7, "feet"),
  30883. default: true
  30884. },
  30885. ]
  30886. ))
  30887. characterMakers.push(() => makeCharacter(
  30888. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30889. {
  30890. front: {
  30891. height: math.unit(9, "feet"),
  30892. weight: math.unit(1012, "lb"),
  30893. name: "Front",
  30894. image: {
  30895. source: "./media/characters/ulfra-lupae/front.svg",
  30896. extra: 1083/1011,
  30897. bottom: 67/1150
  30898. }
  30899. },
  30900. },
  30901. [
  30902. {
  30903. name: "Micro",
  30904. height: math.unit(6, "inches")
  30905. },
  30906. {
  30907. name: "Socializing",
  30908. height: math.unit(6 + 5/12, "feet")
  30909. },
  30910. {
  30911. name: "Normal",
  30912. height: math.unit(9, "feet"),
  30913. default: true
  30914. },
  30915. {
  30916. name: "Macro",
  30917. height: math.unit(150, "feet")
  30918. },
  30919. ]
  30920. ))
  30921. characterMakers.push(() => makeCharacter(
  30922. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30923. {
  30924. front: {
  30925. height: math.unit(5 + 2/12, "feet"),
  30926. weight: math.unit(120, "lb"),
  30927. name: "Front",
  30928. image: {
  30929. source: "./media/characters/timber/front.svg",
  30930. extra: 2814/2705,
  30931. bottom: 181/2995
  30932. }
  30933. },
  30934. },
  30935. [
  30936. {
  30937. name: "Normal",
  30938. height: math.unit(5 + 2/12, "feet"),
  30939. default: true
  30940. },
  30941. ]
  30942. ))
  30943. characterMakers.push(() => makeCharacter(
  30944. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30945. {
  30946. front: {
  30947. height: math.unit(5 + 7/12, "feet"),
  30948. weight: math.unit(220, "lb"),
  30949. name: "Front",
  30950. image: {
  30951. source: "./media/characters/nicki/front.svg",
  30952. extra: 453/419,
  30953. bottom: 7/460
  30954. }
  30955. },
  30956. frontAlt: {
  30957. height: math.unit(5 + 7/12, "feet"),
  30958. weight: math.unit(220, "lb"),
  30959. name: "Front-alt",
  30960. image: {
  30961. source: "./media/characters/nicki/front-alt.svg",
  30962. extra: 435/411,
  30963. bottom: 12/447
  30964. }
  30965. },
  30966. back: {
  30967. height: math.unit(5 + 7/12, "feet"),
  30968. weight: math.unit(220, "lb"),
  30969. name: "Back",
  30970. image: {
  30971. source: "./media/characters/nicki/back.svg",
  30972. extra: 440/413,
  30973. bottom: 19/459
  30974. }
  30975. },
  30976. taur: {
  30977. height: math.unit(7 + 6/12, "feet"),
  30978. weight: math.unit(700, "lb"),
  30979. name: "Taur",
  30980. image: {
  30981. source: "./media/characters/nicki/taur.svg",
  30982. extra: 975/773,
  30983. bottom: 0/975
  30984. }
  30985. },
  30986. frontNsfw: {
  30987. height: math.unit(5 + 7/12, "feet"),
  30988. weight: math.unit(220, "lb"),
  30989. name: "Front (NSFW)",
  30990. image: {
  30991. source: "./media/characters/nicki/front-nsfw.svg",
  30992. extra: 453/419,
  30993. bottom: 7/460
  30994. }
  30995. },
  30996. frontNsfwAlt: {
  30997. height: math.unit(5 + 7/12, "feet"),
  30998. weight: math.unit(220, "lb"),
  30999. name: "Front (Alt, NSFW)",
  31000. image: {
  31001. source: "./media/characters/nicki/front-alt-nsfw.svg",
  31002. extra: 435/411,
  31003. bottom: 12/447
  31004. }
  31005. },
  31006. backNsfw: {
  31007. height: math.unit(5 + 7/12, "feet"),
  31008. weight: math.unit(220, "lb"),
  31009. name: "Back (NSFW)",
  31010. image: {
  31011. source: "./media/characters/nicki/back-nsfw.svg",
  31012. extra: 440/413,
  31013. bottom: 19/459
  31014. }
  31015. },
  31016. head: {
  31017. height: math.unit(2.1, "feet"),
  31018. name: "Head",
  31019. image: {
  31020. source: "./media/characters/nicki/head.svg"
  31021. }
  31022. },
  31023. paw: {
  31024. height: math.unit(1.88, "feet"),
  31025. name: "Paw",
  31026. image: {
  31027. source: "./media/characters/nicki/paw.svg"
  31028. }
  31029. },
  31030. },
  31031. [
  31032. {
  31033. name: "Normal",
  31034. height: math.unit(5 + 7/12, "feet"),
  31035. default: true
  31036. },
  31037. ]
  31038. ))
  31039. characterMakers.push(() => makeCharacter(
  31040. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31041. {
  31042. front: {
  31043. height: math.unit(7 + 10/12, "feet"),
  31044. weight: math.unit(3.5, "tons"),
  31045. name: "Front",
  31046. image: {
  31047. source: "./media/characters/lee/front.svg",
  31048. extra: 1773/1615,
  31049. bottom: 86/1859
  31050. }
  31051. },
  31052. hand: {
  31053. height: math.unit(1.78, "feet"),
  31054. name: "Hand",
  31055. image: {
  31056. source: "./media/characters/lee/hand.svg"
  31057. }
  31058. },
  31059. maw: {
  31060. height: math.unit(1.18, "feet"),
  31061. name: "Maw",
  31062. image: {
  31063. source: "./media/characters/lee/maw.svg"
  31064. }
  31065. },
  31066. },
  31067. [
  31068. {
  31069. name: "Normal",
  31070. height: math.unit(7 + 10/12, "feet"),
  31071. default: true
  31072. },
  31073. ]
  31074. ))
  31075. characterMakers.push(() => makeCharacter(
  31076. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31077. {
  31078. front: {
  31079. height: math.unit(9, "feet"),
  31080. name: "Front",
  31081. image: {
  31082. source: "./media/characters/guti/front.svg",
  31083. extra: 4551/4355,
  31084. bottom: 123/4674
  31085. }
  31086. },
  31087. tongue: {
  31088. height: math.unit(1, "feet"),
  31089. name: "Tongue",
  31090. image: {
  31091. source: "./media/characters/guti/tongue.svg"
  31092. }
  31093. },
  31094. paw: {
  31095. height: math.unit(1.18, "feet"),
  31096. name: "Paw",
  31097. image: {
  31098. source: "./media/characters/guti/paw.svg"
  31099. }
  31100. },
  31101. },
  31102. [
  31103. {
  31104. name: "Normal",
  31105. height: math.unit(9, "feet"),
  31106. default: true
  31107. },
  31108. ]
  31109. ))
  31110. characterMakers.push(() => makeCharacter(
  31111. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31112. {
  31113. side: {
  31114. height: math.unit(5, "meters"),
  31115. name: "Side",
  31116. image: {
  31117. source: "./media/characters/vesper/side.svg",
  31118. extra: 1605/1518,
  31119. bottom: 0/1605
  31120. }
  31121. },
  31122. },
  31123. [
  31124. {
  31125. name: "Small",
  31126. height: math.unit(5, "meters")
  31127. },
  31128. {
  31129. name: "Sage",
  31130. height: math.unit(100, "meters"),
  31131. default: true
  31132. },
  31133. {
  31134. name: "Fun Size",
  31135. height: math.unit(600, "meters")
  31136. },
  31137. {
  31138. name: "Goddess",
  31139. height: math.unit(20000, "km")
  31140. },
  31141. {
  31142. name: "Maximum",
  31143. height: math.unit(5, "galaxies")
  31144. },
  31145. ]
  31146. ))
  31147. characterMakers.push(() => makeCharacter(
  31148. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31149. {
  31150. front: {
  31151. height: math.unit(6 + 3/12, "feet"),
  31152. weight: math.unit(190, "lb"),
  31153. name: "Front",
  31154. image: {
  31155. source: "./media/characters/gawain/front.svg",
  31156. extra: 2222/2139,
  31157. bottom: 90/2312
  31158. }
  31159. },
  31160. back: {
  31161. height: math.unit(6 + 3/12, "feet"),
  31162. weight: math.unit(190, "lb"),
  31163. name: "Back",
  31164. image: {
  31165. source: "./media/characters/gawain/back.svg",
  31166. extra: 2199/2111,
  31167. bottom: 73/2272
  31168. }
  31169. },
  31170. },
  31171. [
  31172. {
  31173. name: "Normal",
  31174. height: math.unit(6 + 3/12, "feet"),
  31175. default: true
  31176. },
  31177. ]
  31178. ))
  31179. characterMakers.push(() => makeCharacter(
  31180. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31181. {
  31182. side: {
  31183. height: math.unit(3.5, "meters"),
  31184. weight: math.unit(16000, "lb"),
  31185. name: "Side",
  31186. image: {
  31187. source: "./media/characters/dascalti/side.svg",
  31188. extra: 392/273,
  31189. bottom: 47/439
  31190. }
  31191. },
  31192. breath: {
  31193. height: math.unit(7.4, "feet"),
  31194. name: "Breath",
  31195. image: {
  31196. source: "./media/characters/dascalti/breath.svg"
  31197. }
  31198. },
  31199. fed: {
  31200. height: math.unit(3.6, "meters"),
  31201. weight: math.unit(16000, "lb"),
  31202. name: "Fed",
  31203. image: {
  31204. source: "./media/characters/dascalti/fed.svg",
  31205. extra: 1419/820,
  31206. bottom: 95/1514
  31207. }
  31208. },
  31209. },
  31210. [
  31211. {
  31212. name: "Normal",
  31213. height: math.unit(3.5, "meters"),
  31214. default: true
  31215. },
  31216. ]
  31217. ))
  31218. characterMakers.push(() => makeCharacter(
  31219. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31220. {
  31221. front: {
  31222. height: math.unit(3 + 5/12, "feet"),
  31223. name: "Front",
  31224. image: {
  31225. source: "./media/characters/mauve/front.svg",
  31226. extra: 1126/1033,
  31227. bottom: 65/1191
  31228. }
  31229. },
  31230. side: {
  31231. height: math.unit(3 + 5/12, "feet"),
  31232. name: "Side",
  31233. image: {
  31234. source: "./media/characters/mauve/side.svg",
  31235. extra: 1089/1001,
  31236. bottom: 29/1118
  31237. }
  31238. },
  31239. back: {
  31240. height: math.unit(3 + 5/12, "feet"),
  31241. name: "Back",
  31242. image: {
  31243. source: "./media/characters/mauve/back.svg",
  31244. extra: 1173/1053,
  31245. bottom: 109/1282
  31246. }
  31247. },
  31248. },
  31249. [
  31250. {
  31251. name: "Normal",
  31252. height: math.unit(3 + 5/12, "feet"),
  31253. default: true
  31254. },
  31255. ]
  31256. ))
  31257. characterMakers.push(() => makeCharacter(
  31258. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31259. {
  31260. front: {
  31261. height: math.unit(6 + 3/12, "feet"),
  31262. weight: math.unit(430, "lb"),
  31263. name: "Front",
  31264. image: {
  31265. source: "./media/characters/carlos/front.svg",
  31266. extra: 1964/1913,
  31267. bottom: 70/2034
  31268. }
  31269. },
  31270. },
  31271. [
  31272. {
  31273. name: "Normal",
  31274. height: math.unit(6 + 3/12, "feet"),
  31275. default: true
  31276. },
  31277. ]
  31278. ))
  31279. characterMakers.push(() => makeCharacter(
  31280. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31281. {
  31282. back: {
  31283. height: math.unit(5 + 10/12, "feet"),
  31284. weight: math.unit(200, "lb"),
  31285. name: "Back",
  31286. image: {
  31287. source: "./media/characters/jax/back.svg",
  31288. extra: 764/739,
  31289. bottom: 25/789
  31290. }
  31291. },
  31292. },
  31293. [
  31294. {
  31295. name: "Normal",
  31296. height: math.unit(5 + 10/12, "feet"),
  31297. default: true
  31298. },
  31299. ]
  31300. ))
  31301. characterMakers.push(() => makeCharacter(
  31302. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31303. {
  31304. front: {
  31305. height: math.unit(8, "feet"),
  31306. weight: math.unit(250, "lb"),
  31307. name: "Front",
  31308. image: {
  31309. source: "./media/characters/eikthynir/front.svg",
  31310. extra: 1332/1166,
  31311. bottom: 82/1414
  31312. }
  31313. },
  31314. back: {
  31315. height: math.unit(8, "feet"),
  31316. weight: math.unit(250, "lb"),
  31317. name: "Back",
  31318. image: {
  31319. source: "./media/characters/eikthynir/back.svg",
  31320. extra: 1342/1190,
  31321. bottom: 19/1361
  31322. }
  31323. },
  31324. dick: {
  31325. height: math.unit(2.35, "feet"),
  31326. name: "Dick",
  31327. image: {
  31328. source: "./media/characters/eikthynir/dick.svg"
  31329. }
  31330. },
  31331. },
  31332. [
  31333. {
  31334. name: "Normal",
  31335. height: math.unit(8, "feet"),
  31336. default: true
  31337. },
  31338. ]
  31339. ))
  31340. characterMakers.push(() => makeCharacter(
  31341. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31342. {
  31343. front: {
  31344. height: math.unit(99, "meters"),
  31345. weight: math.unit(13000, "tons"),
  31346. name: "Front",
  31347. image: {
  31348. source: "./media/characters/zlmos/front.svg",
  31349. extra: 2202/1992,
  31350. bottom: 315/2517
  31351. }
  31352. },
  31353. },
  31354. [
  31355. {
  31356. name: "Macro",
  31357. height: math.unit(99, "meters"),
  31358. default: true
  31359. },
  31360. ]
  31361. ))
  31362. characterMakers.push(() => makeCharacter(
  31363. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31364. {
  31365. front: {
  31366. height: math.unit(6 + 5/12, "feet"),
  31367. name: "Front",
  31368. image: {
  31369. source: "./media/characters/purri/front.svg",
  31370. extra: 1698/1610,
  31371. bottom: 32/1730
  31372. }
  31373. },
  31374. frontAlt: {
  31375. height: math.unit(6 + 5/12, "feet"),
  31376. name: "Front (Alt)",
  31377. image: {
  31378. source: "./media/characters/purri/front-alt.svg",
  31379. extra: 450/420,
  31380. bottom: 26/476
  31381. }
  31382. },
  31383. boots: {
  31384. height: math.unit(5.5, "feet"),
  31385. name: "Boots",
  31386. image: {
  31387. source: "./media/characters/purri/boots.svg",
  31388. extra: 905/853,
  31389. bottom: 18/923
  31390. }
  31391. },
  31392. lying: {
  31393. height: math.unit(2, "feet"),
  31394. name: "Lying",
  31395. image: {
  31396. source: "./media/characters/purri/lying.svg",
  31397. extra: 940/843,
  31398. bottom: 146/1086
  31399. }
  31400. },
  31401. devious: {
  31402. height: math.unit(1.77, "feet"),
  31403. name: "Devious",
  31404. image: {
  31405. source: "./media/characters/purri/devious.svg",
  31406. extra: 1440/1155,
  31407. bottom: 147/1587
  31408. }
  31409. },
  31410. bean: {
  31411. height: math.unit(1.94, "feet"),
  31412. name: "Bean",
  31413. image: {
  31414. source: "./media/characters/purri/bean.svg"
  31415. }
  31416. },
  31417. },
  31418. [
  31419. {
  31420. name: "Micro",
  31421. height: math.unit(1, "mm")
  31422. },
  31423. {
  31424. name: "Normal",
  31425. height: math.unit(6 + 5/12, "feet"),
  31426. default: true
  31427. },
  31428. {
  31429. name: "Macro :3c",
  31430. height: math.unit(2, "miles")
  31431. },
  31432. ]
  31433. ))
  31434. characterMakers.push(() => makeCharacter(
  31435. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31436. {
  31437. front: {
  31438. height: math.unit(6 + 2/12, "feet"),
  31439. weight: math.unit(250, "lb"),
  31440. name: "Front",
  31441. image: {
  31442. source: "./media/characters/moonlight/front.svg",
  31443. extra: 1044/908,
  31444. bottom: 56/1100
  31445. }
  31446. },
  31447. feral: {
  31448. height: math.unit(3 + 1/12, "feet"),
  31449. weight: math.unit(50, "kg"),
  31450. name: "Feral",
  31451. image: {
  31452. source: "./media/characters/moonlight/feral.svg",
  31453. extra: 3705/2791,
  31454. bottom: 145/3850
  31455. }
  31456. },
  31457. paw: {
  31458. height: math.unit(1, "feet"),
  31459. name: "Paw",
  31460. image: {
  31461. source: "./media/characters/moonlight/paw.svg"
  31462. }
  31463. },
  31464. paws: {
  31465. height: math.unit(0.98, "feet"),
  31466. name: "Paws",
  31467. image: {
  31468. source: "./media/characters/moonlight/paws.svg",
  31469. extra: 939/939,
  31470. bottom: 50/989
  31471. }
  31472. },
  31473. mouth: {
  31474. height: math.unit(0.48, "feet"),
  31475. name: "Mouth",
  31476. image: {
  31477. source: "./media/characters/moonlight/mouth.svg"
  31478. }
  31479. },
  31480. dick: {
  31481. height: math.unit(1.46, "feet"),
  31482. name: "Dick",
  31483. image: {
  31484. source: "./media/characters/moonlight/dick.svg"
  31485. }
  31486. },
  31487. },
  31488. [
  31489. {
  31490. name: "Normal",
  31491. height: math.unit(6 + 2/12, "feet"),
  31492. default: true
  31493. },
  31494. {
  31495. name: "Macro",
  31496. height: math.unit(300, "feet")
  31497. },
  31498. {
  31499. name: "Macro+",
  31500. height: math.unit(1, "mile")
  31501. },
  31502. {
  31503. name: "Mt. Moon",
  31504. height: math.unit(5, "miles")
  31505. },
  31506. {
  31507. name: "Megamacro",
  31508. height: math.unit(15, "miles")
  31509. },
  31510. ]
  31511. ))
  31512. characterMakers.push(() => makeCharacter(
  31513. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31514. {
  31515. back: {
  31516. height: math.unit(6, "feet"),
  31517. weight: math.unit(150, "lb"),
  31518. name: "Back",
  31519. image: {
  31520. source: "./media/characters/sylen/back.svg",
  31521. extra: 1335/1273,
  31522. bottom: 107/1442
  31523. }
  31524. },
  31525. },
  31526. [
  31527. {
  31528. name: "Normal",
  31529. height: math.unit(5 + 5/12, "feet")
  31530. },
  31531. {
  31532. name: "Megamacro",
  31533. height: math.unit(3, "miles"),
  31534. default: true
  31535. },
  31536. ]
  31537. ))
  31538. characterMakers.push(() => makeCharacter(
  31539. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31540. {
  31541. front: {
  31542. height: math.unit(6, "feet"),
  31543. weight: math.unit(190, "lb"),
  31544. name: "Front",
  31545. image: {
  31546. source: "./media/characters/huttser/front.svg",
  31547. extra: 1152/1058,
  31548. bottom: 23/1175
  31549. }
  31550. },
  31551. side: {
  31552. height: math.unit(6, "feet"),
  31553. weight: math.unit(190, "lb"),
  31554. name: "Side",
  31555. image: {
  31556. source: "./media/characters/huttser/side.svg",
  31557. extra: 1174/1065,
  31558. bottom: 18/1192
  31559. }
  31560. },
  31561. back: {
  31562. height: math.unit(6, "feet"),
  31563. weight: math.unit(190, "lb"),
  31564. name: "Back",
  31565. image: {
  31566. source: "./media/characters/huttser/back.svg",
  31567. extra: 1158/1056,
  31568. bottom: 12/1170
  31569. }
  31570. },
  31571. },
  31572. [
  31573. ]
  31574. ))
  31575. characterMakers.push(() => makeCharacter(
  31576. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31577. {
  31578. side: {
  31579. height: math.unit(12 + 9/12, "feet"),
  31580. weight: math.unit(15000, "lb"),
  31581. name: "Side",
  31582. image: {
  31583. source: "./media/characters/faan/side.svg",
  31584. extra: 2747/2697,
  31585. bottom: 0/2747
  31586. }
  31587. },
  31588. front: {
  31589. height: math.unit(12 + 9/12, "feet"),
  31590. weight: math.unit(15000, "lb"),
  31591. name: "Front",
  31592. image: {
  31593. source: "./media/characters/faan/front.svg",
  31594. extra: 607/571,
  31595. bottom: 24/631
  31596. }
  31597. },
  31598. head: {
  31599. height: math.unit(2.85, "feet"),
  31600. name: "Head",
  31601. image: {
  31602. source: "./media/characters/faan/head.svg"
  31603. }
  31604. },
  31605. headAlt: {
  31606. height: math.unit(3.13, "feet"),
  31607. name: "Head-alt",
  31608. image: {
  31609. source: "./media/characters/faan/head-alt.svg"
  31610. }
  31611. },
  31612. },
  31613. [
  31614. {
  31615. name: "Normal",
  31616. height: math.unit(12 + 9/12, "feet"),
  31617. default: true
  31618. },
  31619. ]
  31620. ))
  31621. characterMakers.push(() => makeCharacter(
  31622. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31623. {
  31624. front: {
  31625. height: math.unit(6, "feet"),
  31626. weight: math.unit(300, "lb"),
  31627. name: "Front",
  31628. image: {
  31629. source: "./media/characters/tanio/front.svg",
  31630. extra: 711/673,
  31631. bottom: 25/736
  31632. }
  31633. },
  31634. },
  31635. [
  31636. {
  31637. name: "Normal",
  31638. height: math.unit(6, "feet"),
  31639. default: true
  31640. },
  31641. ]
  31642. ))
  31643. characterMakers.push(() => makeCharacter(
  31644. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31645. {
  31646. front: {
  31647. height: math.unit(3, "inches"),
  31648. name: "Front",
  31649. image: {
  31650. source: "./media/characters/noboru/front.svg",
  31651. extra: 1039/932,
  31652. bottom: 18/1057
  31653. }
  31654. },
  31655. },
  31656. [
  31657. {
  31658. name: "Micro",
  31659. height: math.unit(3, "inches"),
  31660. default: true
  31661. },
  31662. ]
  31663. ))
  31664. characterMakers.push(() => makeCharacter(
  31665. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31666. {
  31667. front: {
  31668. height: math.unit(1.85, "meters"),
  31669. weight: math.unit(80, "kg"),
  31670. name: "Front",
  31671. image: {
  31672. source: "./media/characters/daniel-barrett/front.svg",
  31673. extra: 355/337,
  31674. bottom: 9/364
  31675. }
  31676. },
  31677. },
  31678. [
  31679. {
  31680. name: "Pico",
  31681. height: math.unit(0.0433, "mm")
  31682. },
  31683. {
  31684. name: "Nano",
  31685. height: math.unit(1.5, "mm")
  31686. },
  31687. {
  31688. name: "Micro",
  31689. height: math.unit(5.3, "cm"),
  31690. default: true
  31691. },
  31692. {
  31693. name: "Normal",
  31694. height: math.unit(1.85, "meters")
  31695. },
  31696. {
  31697. name: "Macro",
  31698. height: math.unit(64.7, "meters")
  31699. },
  31700. {
  31701. name: "Megamacro",
  31702. height: math.unit(2.26, "km")
  31703. },
  31704. {
  31705. name: "Gigamacro",
  31706. height: math.unit(79, "km")
  31707. },
  31708. {
  31709. name: "Teramacro",
  31710. height: math.unit(2765, "km")
  31711. },
  31712. {
  31713. name: "Petamacro",
  31714. height: math.unit(96678, "km")
  31715. },
  31716. ]
  31717. ))
  31718. characterMakers.push(() => makeCharacter(
  31719. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31720. {
  31721. front: {
  31722. height: math.unit(30, "meters"),
  31723. weight: math.unit(400, "tons"),
  31724. name: "Front",
  31725. image: {
  31726. source: "./media/characters/zeel/front.svg",
  31727. extra: 2599/2599,
  31728. bottom: 226/2825
  31729. }
  31730. },
  31731. },
  31732. [
  31733. {
  31734. name: "Macro",
  31735. height: math.unit(30, "meters"),
  31736. default: true
  31737. },
  31738. ]
  31739. ))
  31740. characterMakers.push(() => makeCharacter(
  31741. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31742. {
  31743. front: {
  31744. height: math.unit(6 + 7/12, "feet"),
  31745. weight: math.unit(210, "lb"),
  31746. name: "Front",
  31747. image: {
  31748. source: "./media/characters/tarn/front.svg",
  31749. extra: 3517/3220,
  31750. bottom: 91/3608
  31751. }
  31752. },
  31753. back: {
  31754. height: math.unit(6 + 7/12, "feet"),
  31755. weight: math.unit(210, "lb"),
  31756. name: "Back",
  31757. image: {
  31758. source: "./media/characters/tarn/back.svg",
  31759. extra: 3566/3241,
  31760. bottom: 34/3600
  31761. }
  31762. },
  31763. dick: {
  31764. height: math.unit(1.65, "feet"),
  31765. name: "Dick",
  31766. image: {
  31767. source: "./media/characters/tarn/dick.svg"
  31768. }
  31769. },
  31770. paw: {
  31771. height: math.unit(1.80, "feet"),
  31772. name: "Paw",
  31773. image: {
  31774. source: "./media/characters/tarn/paw.svg"
  31775. }
  31776. },
  31777. tongue: {
  31778. height: math.unit(0.97, "feet"),
  31779. name: "Tongue",
  31780. image: {
  31781. source: "./media/characters/tarn/tongue.svg"
  31782. }
  31783. },
  31784. },
  31785. [
  31786. {
  31787. name: "Micro",
  31788. height: math.unit(4, "inches")
  31789. },
  31790. {
  31791. name: "Normal",
  31792. height: math.unit(6 + 7/12, "feet"),
  31793. default: true
  31794. },
  31795. {
  31796. name: "Macro",
  31797. height: math.unit(300, "feet")
  31798. },
  31799. ]
  31800. ))
  31801. characterMakers.push(() => makeCharacter(
  31802. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31803. {
  31804. front: {
  31805. height: math.unit(5 + 7/12, "feet"),
  31806. weight: math.unit(80, "kg"),
  31807. name: "Front",
  31808. image: {
  31809. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31810. extra: 3023/2865,
  31811. bottom: 33/3056
  31812. }
  31813. },
  31814. back: {
  31815. height: math.unit(5 + 7/12, "feet"),
  31816. weight: math.unit(80, "kg"),
  31817. name: "Back",
  31818. image: {
  31819. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31820. extra: 3020/2886,
  31821. bottom: 30/3050
  31822. }
  31823. },
  31824. dick: {
  31825. height: math.unit(0.98, "feet"),
  31826. name: "Dick",
  31827. image: {
  31828. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31829. }
  31830. },
  31831. anatomy: {
  31832. height: math.unit(2.86, "feet"),
  31833. name: "Anatomy",
  31834. image: {
  31835. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31836. }
  31837. },
  31838. },
  31839. [
  31840. {
  31841. name: "Really Small",
  31842. height: math.unit(2, "inches")
  31843. },
  31844. {
  31845. name: "Micro",
  31846. height: math.unit(5.583, "inches")
  31847. },
  31848. {
  31849. name: "Normal",
  31850. height: math.unit(5 + 7/12, "feet"),
  31851. default: true
  31852. },
  31853. {
  31854. name: "Macro",
  31855. height: math.unit(67, "feet")
  31856. },
  31857. {
  31858. name: "Megamacro",
  31859. height: math.unit(134, "feet")
  31860. },
  31861. ]
  31862. ))
  31863. characterMakers.push(() => makeCharacter(
  31864. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31865. {
  31866. front: {
  31867. height: math.unit(9, "feet"),
  31868. weight: math.unit(120, "lb"),
  31869. name: "Front",
  31870. image: {
  31871. source: "./media/characters/sally/front.svg",
  31872. extra: 1506/1349,
  31873. bottom: 66/1572
  31874. }
  31875. },
  31876. },
  31877. [
  31878. {
  31879. name: "Normal",
  31880. height: math.unit(9, "feet"),
  31881. default: true
  31882. },
  31883. ]
  31884. ))
  31885. characterMakers.push(() => makeCharacter(
  31886. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31887. {
  31888. front: {
  31889. height: math.unit(8, "feet"),
  31890. weight: math.unit(900, "lb"),
  31891. name: "Front",
  31892. image: {
  31893. source: "./media/characters/owen/front.svg",
  31894. extra: 1761/1657,
  31895. bottom: 74/1835
  31896. }
  31897. },
  31898. side: {
  31899. height: math.unit(8, "feet"),
  31900. weight: math.unit(900, "lb"),
  31901. name: "Side",
  31902. image: {
  31903. source: "./media/characters/owen/side.svg",
  31904. extra: 1797/1734,
  31905. bottom: 30/1827
  31906. }
  31907. },
  31908. back: {
  31909. height: math.unit(8, "feet"),
  31910. weight: math.unit(900, "lb"),
  31911. name: "Back",
  31912. image: {
  31913. source: "./media/characters/owen/back.svg",
  31914. extra: 1796/1706,
  31915. bottom: 59/1855
  31916. }
  31917. },
  31918. maw: {
  31919. height: math.unit(1.76, "feet"),
  31920. name: "Maw",
  31921. image: {
  31922. source: "./media/characters/owen/maw.svg"
  31923. }
  31924. },
  31925. },
  31926. [
  31927. {
  31928. name: "Normal",
  31929. height: math.unit(8, "feet"),
  31930. default: true
  31931. },
  31932. ]
  31933. ))
  31934. characterMakers.push(() => makeCharacter(
  31935. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31936. {
  31937. front: {
  31938. height: math.unit(4, "feet"),
  31939. weight: math.unit(400, "lb"),
  31940. name: "Front",
  31941. image: {
  31942. source: "./media/characters/ryth/front.svg",
  31943. extra: 1920/1748,
  31944. bottom: 42/1962
  31945. }
  31946. },
  31947. back: {
  31948. height: math.unit(4, "feet"),
  31949. weight: math.unit(400, "lb"),
  31950. name: "Back",
  31951. image: {
  31952. source: "./media/characters/ryth/back.svg",
  31953. extra: 1897/1690,
  31954. bottom: 89/1986
  31955. }
  31956. },
  31957. mouth: {
  31958. height: math.unit(1.39, "feet"),
  31959. name: "Mouth",
  31960. image: {
  31961. source: "./media/characters/ryth/mouth.svg"
  31962. }
  31963. },
  31964. tailmaw: {
  31965. height: math.unit(1.23, "feet"),
  31966. name: "Tailmaw",
  31967. image: {
  31968. source: "./media/characters/ryth/tailmaw.svg"
  31969. }
  31970. },
  31971. goia: {
  31972. height: math.unit(12, "feet"),
  31973. weight: math.unit(10800, "lb"),
  31974. name: "Goia",
  31975. image: {
  31976. source: "./media/characters/ryth/goia.svg",
  31977. extra: 3450/3198,
  31978. bottom: 61/3511
  31979. }
  31980. },
  31981. },
  31982. [
  31983. {
  31984. name: "Normal",
  31985. height: math.unit(4, "feet"),
  31986. default: true
  31987. },
  31988. ]
  31989. ))
  31990. characterMakers.push(() => makeCharacter(
  31991. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31992. {
  31993. front: {
  31994. height: math.unit(7, "feet"),
  31995. weight: math.unit(180, "lb"),
  31996. name: "Front",
  31997. image: {
  31998. source: "./media/characters/necrolance/front.svg",
  31999. extra: 1062/947,
  32000. bottom: 41/1103
  32001. }
  32002. },
  32003. back: {
  32004. height: math.unit(7, "feet"),
  32005. weight: math.unit(180, "lb"),
  32006. name: "Back",
  32007. image: {
  32008. source: "./media/characters/necrolance/back.svg",
  32009. extra: 1045/984,
  32010. bottom: 14/1059
  32011. }
  32012. },
  32013. wing: {
  32014. height: math.unit(2.67, "feet"),
  32015. name: "Wing",
  32016. image: {
  32017. source: "./media/characters/necrolance/wing.svg"
  32018. }
  32019. },
  32020. },
  32021. [
  32022. {
  32023. name: "Normal",
  32024. height: math.unit(7, "feet"),
  32025. default: true
  32026. },
  32027. ]
  32028. ))
  32029. characterMakers.push(() => makeCharacter(
  32030. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32031. {
  32032. front: {
  32033. height: math.unit(76, "meters"),
  32034. weight: math.unit(30000, "tons"),
  32035. name: "Front",
  32036. image: {
  32037. source: "./media/characters/tyler/front.svg",
  32038. extra: 1640/1640,
  32039. bottom: 114/1754
  32040. }
  32041. },
  32042. },
  32043. [
  32044. {
  32045. name: "Macro",
  32046. height: math.unit(76, "meters"),
  32047. default: true
  32048. },
  32049. ]
  32050. ))
  32051. characterMakers.push(() => makeCharacter(
  32052. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32053. {
  32054. front: {
  32055. height: math.unit(4 + 11/12, "feet"),
  32056. weight: math.unit(132, "lb"),
  32057. name: "Front",
  32058. image: {
  32059. source: "./media/characters/icey/front.svg",
  32060. extra: 2750/2550,
  32061. bottom: 33/2783
  32062. }
  32063. },
  32064. back: {
  32065. height: math.unit(4 + 11/12, "feet"),
  32066. weight: math.unit(132, "lb"),
  32067. name: "Back",
  32068. image: {
  32069. source: "./media/characters/icey/back.svg",
  32070. extra: 2624/2481,
  32071. bottom: 35/2659
  32072. }
  32073. },
  32074. },
  32075. [
  32076. {
  32077. name: "Normal",
  32078. height: math.unit(4 + 11/12, "feet"),
  32079. default: true
  32080. },
  32081. ]
  32082. ))
  32083. characterMakers.push(() => makeCharacter(
  32084. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32085. {
  32086. front: {
  32087. height: math.unit(100, "feet"),
  32088. weight: math.unit(0, "lb"),
  32089. name: "Front",
  32090. image: {
  32091. source: "./media/characters/smile/front.svg",
  32092. extra: 2983/2912,
  32093. bottom: 162/3145
  32094. }
  32095. },
  32096. back: {
  32097. height: math.unit(100, "feet"),
  32098. weight: math.unit(0, "lb"),
  32099. name: "Back",
  32100. image: {
  32101. source: "./media/characters/smile/back.svg",
  32102. extra: 3143/3031,
  32103. bottom: 91/3234
  32104. }
  32105. },
  32106. head: {
  32107. height: math.unit(26.3, "feet"),
  32108. weight: math.unit(0, "lb"),
  32109. name: "Head",
  32110. image: {
  32111. source: "./media/characters/smile/head.svg"
  32112. }
  32113. },
  32114. collar: {
  32115. height: math.unit(5.3, "feet"),
  32116. weight: math.unit(0, "lb"),
  32117. name: "Collar",
  32118. image: {
  32119. source: "./media/characters/smile/collar.svg"
  32120. }
  32121. },
  32122. },
  32123. [
  32124. {
  32125. name: "Macro",
  32126. height: math.unit(100, "feet"),
  32127. default: true
  32128. },
  32129. ]
  32130. ))
  32131. characterMakers.push(() => makeCharacter(
  32132. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32133. {
  32134. dragon: {
  32135. height: math.unit(26, "feet"),
  32136. weight: math.unit(36, "tons"),
  32137. name: "Dragon",
  32138. image: {
  32139. source: "./media/characters/arimphae/dragon.svg",
  32140. extra: 1574/983,
  32141. bottom: 357/1931
  32142. }
  32143. },
  32144. drake: {
  32145. height: math.unit(9, "feet"),
  32146. weight: math.unit(1.5, "tons"),
  32147. name: "Drake",
  32148. image: {
  32149. source: "./media/characters/arimphae/drake.svg",
  32150. extra: 1120/925,
  32151. bottom: 435/1555
  32152. }
  32153. },
  32154. },
  32155. [
  32156. {
  32157. name: "Small",
  32158. height: math.unit(26*5/9, "feet")
  32159. },
  32160. {
  32161. name: "Normal",
  32162. height: math.unit(26, "feet"),
  32163. default: true
  32164. },
  32165. ]
  32166. ))
  32167. characterMakers.push(() => makeCharacter(
  32168. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32169. {
  32170. front: {
  32171. height: math.unit(8 + 9/12, "feet"),
  32172. name: "Front",
  32173. image: {
  32174. source: "./media/characters/xander/front.svg",
  32175. extra: 848/673,
  32176. bottom: 62/910
  32177. }
  32178. },
  32179. },
  32180. [
  32181. {
  32182. name: "Normal",
  32183. height: math.unit(8 + 9/12, "feet"),
  32184. default: true
  32185. },
  32186. {
  32187. name: "Gaze Grabber",
  32188. height: math.unit(13 + 8/12, "feet")
  32189. },
  32190. {
  32191. name: "Jaw Dropper",
  32192. height: math.unit(27, "feet")
  32193. },
  32194. {
  32195. name: "Show Stopper",
  32196. height: math.unit(136, "feet")
  32197. },
  32198. {
  32199. name: "Superstar",
  32200. height: math.unit(1.9e6, "miles")
  32201. },
  32202. ]
  32203. ))
  32204. characterMakers.push(() => makeCharacter(
  32205. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32206. {
  32207. side: {
  32208. height: math.unit(2100, "feet"),
  32209. name: "Side",
  32210. image: {
  32211. source: "./media/characters/osiris/side.svg",
  32212. extra: 1105/939,
  32213. bottom: 167/1272
  32214. }
  32215. },
  32216. },
  32217. [
  32218. {
  32219. name: "Macro",
  32220. height: math.unit(2100, "feet"),
  32221. default: true
  32222. },
  32223. ]
  32224. ))
  32225. characterMakers.push(() => makeCharacter(
  32226. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32227. {
  32228. front: {
  32229. height: math.unit(6 + 8/12, "feet"),
  32230. weight: math.unit(225, "lb"),
  32231. name: "Front",
  32232. image: {
  32233. source: "./media/characters/rhys-londe/front.svg",
  32234. extra: 2258/2141,
  32235. bottom: 188/2446
  32236. }
  32237. },
  32238. back: {
  32239. height: math.unit(6 + 8/12, "feet"),
  32240. weight: math.unit(225, "lb"),
  32241. name: "Back",
  32242. image: {
  32243. source: "./media/characters/rhys-londe/back.svg",
  32244. extra: 2237/2137,
  32245. bottom: 63/2300
  32246. }
  32247. },
  32248. frontNsfw: {
  32249. height: math.unit(6 + 8/12, "feet"),
  32250. weight: math.unit(225, "lb"),
  32251. name: "Front (NSFW)",
  32252. image: {
  32253. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32254. extra: 2258/2141,
  32255. bottom: 188/2446
  32256. }
  32257. },
  32258. backNsfw: {
  32259. height: math.unit(6 + 8/12, "feet"),
  32260. weight: math.unit(225, "lb"),
  32261. name: "Back (NSFW)",
  32262. image: {
  32263. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32264. extra: 2237/2137,
  32265. bottom: 63/2300
  32266. }
  32267. },
  32268. dick: {
  32269. height: math.unit(30, "inches"),
  32270. name: "Dick",
  32271. image: {
  32272. source: "./media/characters/rhys-londe/dick.svg"
  32273. }
  32274. },
  32275. maw: {
  32276. height: math.unit(1.6, "feet"),
  32277. name: "Maw",
  32278. image: {
  32279. source: "./media/characters/rhys-londe/maw.svg"
  32280. }
  32281. },
  32282. },
  32283. [
  32284. {
  32285. name: "Normal",
  32286. height: math.unit(6 + 8/12, "feet"),
  32287. default: true
  32288. },
  32289. ]
  32290. ))
  32291. characterMakers.push(() => makeCharacter(
  32292. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32293. {
  32294. front: {
  32295. height: math.unit(3 + 10/12, "feet"),
  32296. weight: math.unit(90, "lb"),
  32297. name: "Front",
  32298. image: {
  32299. source: "./media/characters/taivas-ensim/front.svg",
  32300. extra: 1327/1216,
  32301. bottom: 96/1423
  32302. }
  32303. },
  32304. back: {
  32305. height: math.unit(3 + 10/12, "feet"),
  32306. weight: math.unit(90, "lb"),
  32307. name: "Back",
  32308. image: {
  32309. source: "./media/characters/taivas-ensim/back.svg",
  32310. extra: 1355/1247,
  32311. bottom: 11/1366
  32312. }
  32313. },
  32314. frontNsfw: {
  32315. height: math.unit(3 + 10/12, "feet"),
  32316. weight: math.unit(90, "lb"),
  32317. name: "Front (NSFW)",
  32318. image: {
  32319. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32320. extra: 1327/1216,
  32321. bottom: 96/1423
  32322. }
  32323. },
  32324. backNsfw: {
  32325. height: math.unit(3 + 10/12, "feet"),
  32326. weight: math.unit(90, "lb"),
  32327. name: "Back (NSFW)",
  32328. image: {
  32329. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32330. extra: 1355/1247,
  32331. bottom: 11/1366
  32332. }
  32333. },
  32334. },
  32335. [
  32336. {
  32337. name: "Normal",
  32338. height: math.unit(3 + 10/12, "feet"),
  32339. default: true
  32340. },
  32341. ]
  32342. ))
  32343. characterMakers.push(() => makeCharacter(
  32344. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32345. {
  32346. front: {
  32347. height: math.unit(9 + 6/12, "feet"),
  32348. weight: math.unit(940, "lb"),
  32349. name: "Front",
  32350. image: {
  32351. source: "./media/characters/byliss/front.svg",
  32352. extra: 1327/1290,
  32353. bottom: 82/1409
  32354. }
  32355. },
  32356. back: {
  32357. height: math.unit(9 + 6/12, "feet"),
  32358. weight: math.unit(940, "lb"),
  32359. name: "Back",
  32360. image: {
  32361. source: "./media/characters/byliss/back.svg",
  32362. extra: 1376/1349,
  32363. bottom: 9/1385
  32364. }
  32365. },
  32366. frontNsfw: {
  32367. height: math.unit(9 + 6/12, "feet"),
  32368. weight: math.unit(940, "lb"),
  32369. name: "Front (NSFW)",
  32370. image: {
  32371. source: "./media/characters/byliss/front-nsfw.svg",
  32372. extra: 1327/1290,
  32373. bottom: 82/1409
  32374. }
  32375. },
  32376. backNsfw: {
  32377. height: math.unit(9 + 6/12, "feet"),
  32378. weight: math.unit(940, "lb"),
  32379. name: "Back (NSFW)",
  32380. image: {
  32381. source: "./media/characters/byliss/back-nsfw.svg",
  32382. extra: 1376/1349,
  32383. bottom: 9/1385
  32384. }
  32385. },
  32386. },
  32387. [
  32388. {
  32389. name: "Normal",
  32390. height: math.unit(9 + 6/12, "feet"),
  32391. default: true
  32392. },
  32393. ]
  32394. ))
  32395. characterMakers.push(() => makeCharacter(
  32396. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32397. {
  32398. front: {
  32399. height: math.unit(5 + 2/12, "feet"),
  32400. weight: math.unit(200, "lb"),
  32401. name: "Front",
  32402. image: {
  32403. source: "./media/characters/noraly/front.svg",
  32404. extra: 4985/4773,
  32405. bottom: 150/5135
  32406. }
  32407. },
  32408. full: {
  32409. height: math.unit(5 + 2/12, "feet"),
  32410. weight: math.unit(164, "lb"),
  32411. name: "Full",
  32412. image: {
  32413. source: "./media/characters/noraly/full.svg",
  32414. extra: 1114/1059,
  32415. bottom: 35/1149
  32416. }
  32417. },
  32418. fuller: {
  32419. height: math.unit(5 + 2/12, "feet"),
  32420. weight: math.unit(230, "lb"),
  32421. name: "Fuller",
  32422. image: {
  32423. source: "./media/characters/noraly/fuller.svg",
  32424. extra: 1114/1059,
  32425. bottom: 35/1149
  32426. }
  32427. },
  32428. fullest: {
  32429. height: math.unit(5 + 2/12, "feet"),
  32430. weight: math.unit(300, "lb"),
  32431. name: "Fullest",
  32432. image: {
  32433. source: "./media/characters/noraly/fullest.svg",
  32434. extra: 1114/1059,
  32435. bottom: 35/1149
  32436. }
  32437. },
  32438. },
  32439. [
  32440. {
  32441. name: "Normal",
  32442. height: math.unit(5 + 2/12, "feet"),
  32443. default: true
  32444. },
  32445. ]
  32446. ))
  32447. characterMakers.push(() => makeCharacter(
  32448. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32449. {
  32450. front: {
  32451. height: math.unit(5 + 2/12, "feet"),
  32452. weight: math.unit(210, "lb"),
  32453. name: "Front",
  32454. image: {
  32455. source: "./media/characters/pera/front.svg",
  32456. extra: 1560/1531,
  32457. bottom: 165/1725
  32458. }
  32459. },
  32460. back: {
  32461. height: math.unit(5 + 2/12, "feet"),
  32462. weight: math.unit(210, "lb"),
  32463. name: "Back",
  32464. image: {
  32465. source: "./media/characters/pera/back.svg",
  32466. extra: 1523/1493,
  32467. bottom: 152/1675
  32468. }
  32469. },
  32470. dick: {
  32471. height: math.unit(2.4, "feet"),
  32472. name: "Dick",
  32473. image: {
  32474. source: "./media/characters/pera/dick.svg"
  32475. }
  32476. },
  32477. },
  32478. [
  32479. {
  32480. name: "Normal",
  32481. height: math.unit(5 + 2/12, "feet"),
  32482. default: true
  32483. },
  32484. ]
  32485. ))
  32486. characterMakers.push(() => makeCharacter(
  32487. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32488. {
  32489. front: {
  32490. height: math.unit(12, "feet"),
  32491. weight: math.unit(3200, "lb"),
  32492. name: "Front",
  32493. image: {
  32494. source: "./media/characters/julian/front.svg",
  32495. extra: 2962/2701,
  32496. bottom: 184/3146
  32497. }
  32498. },
  32499. maw: {
  32500. height: math.unit(5.35, "feet"),
  32501. name: "Maw",
  32502. image: {
  32503. source: "./media/characters/julian/maw.svg"
  32504. }
  32505. },
  32506. paw: {
  32507. height: math.unit(3.07, "feet"),
  32508. name: "Paw",
  32509. image: {
  32510. source: "./media/characters/julian/paw.svg"
  32511. }
  32512. },
  32513. },
  32514. [
  32515. {
  32516. name: "Default",
  32517. height: math.unit(12, "feet"),
  32518. default: true
  32519. },
  32520. {
  32521. name: "Big",
  32522. height: math.unit(50, "feet")
  32523. },
  32524. {
  32525. name: "Really Big",
  32526. height: math.unit(1, "mile")
  32527. },
  32528. {
  32529. name: "Extremely Big",
  32530. height: math.unit(100, "miles")
  32531. },
  32532. {
  32533. name: "Planet Hugger",
  32534. height: math.unit(200, "megameters")
  32535. },
  32536. {
  32537. name: "Unreasonably Big",
  32538. height: math.unit(1e300, "meters")
  32539. },
  32540. ]
  32541. ))
  32542. characterMakers.push(() => makeCharacter(
  32543. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32544. {
  32545. solgooleo: {
  32546. height: math.unit(4, "meters"),
  32547. weight: math.unit(6000*1.5, "kg"),
  32548. volume: math.unit(6000, "liters"),
  32549. name: "Solgooleo",
  32550. image: {
  32551. source: "./media/characters/pi/solgooleo.svg",
  32552. extra: 388/331,
  32553. bottom: 29/417
  32554. }
  32555. },
  32556. },
  32557. [
  32558. {
  32559. name: "Normal",
  32560. height: math.unit(4, "meters"),
  32561. default: true
  32562. },
  32563. ]
  32564. ))
  32565. characterMakers.push(() => makeCharacter(
  32566. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32567. {
  32568. front: {
  32569. height: math.unit(8 + 2/12, "feet"),
  32570. weight: math.unit(4, "tons"),
  32571. name: "Front",
  32572. image: {
  32573. source: "./media/characters/shaun/front.svg",
  32574. extra: 1550/1505,
  32575. bottom: 353/1903
  32576. }
  32577. },
  32578. },
  32579. [
  32580. {
  32581. name: "Lorg",
  32582. height: math.unit(8 + 2/12, "feet"),
  32583. default: true
  32584. },
  32585. ]
  32586. ))
  32587. characterMakers.push(() => makeCharacter(
  32588. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32589. {
  32590. front: {
  32591. height: math.unit(7, "feet"),
  32592. name: "Front",
  32593. image: {
  32594. source: "./media/characters/sini/front.svg",
  32595. extra: 726/678,
  32596. bottom: 35/761
  32597. }
  32598. },
  32599. back: {
  32600. height: math.unit(7, "feet"),
  32601. name: "Back",
  32602. image: {
  32603. source: "./media/characters/sini/back.svg",
  32604. extra: 743/701,
  32605. bottom: 12/755
  32606. }
  32607. },
  32608. mawAnthro: {
  32609. height: math.unit(2.14, "feet"),
  32610. name: "Maw (Anthro)",
  32611. image: {
  32612. source: "./media/characters/sini/maw-anthro.svg"
  32613. }
  32614. },
  32615. dick: {
  32616. height: math.unit(1.45, "feet"),
  32617. name: "Dick (Anthro)",
  32618. image: {
  32619. source: "./media/characters/sini/dick-anthro.svg"
  32620. }
  32621. },
  32622. feral: {
  32623. height: math.unit(16, "feet"),
  32624. name: "Feral",
  32625. image: {
  32626. source: "./media/characters/sini/feral.svg",
  32627. extra: 814/605,
  32628. bottom: 11/825
  32629. }
  32630. },
  32631. mawFeral: {
  32632. height: math.unit(5.66, "feet"),
  32633. name: "Maw-feral",
  32634. image: {
  32635. source: "./media/characters/sini/maw-feral.svg"
  32636. }
  32637. },
  32638. footFeral: {
  32639. height: math.unit(5.17, "feet"),
  32640. name: "Foot-feral",
  32641. image: {
  32642. source: "./media/characters/sini/foot-feral.svg"
  32643. }
  32644. },
  32645. },
  32646. [
  32647. {
  32648. name: "Normal",
  32649. height: math.unit(7, "feet"),
  32650. default: true
  32651. },
  32652. ]
  32653. ))
  32654. characterMakers.push(() => makeCharacter(
  32655. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32656. {
  32657. side: {
  32658. height: math.unit(13, "meters"),
  32659. weight: math.unit(9072, "kg"),
  32660. name: "Side",
  32661. image: {
  32662. source: "./media/characters/raylldo/side.svg",
  32663. extra: 403/344,
  32664. bottom: 42/445
  32665. }
  32666. },
  32667. leaping: {
  32668. height: math.unit(12.3, "meters"),
  32669. weight: math.unit(9072, "kg"),
  32670. name: "Leaping",
  32671. image: {
  32672. source: "./media/characters/raylldo/leaping.svg",
  32673. extra: 470/249,
  32674. bottom: 13/483
  32675. }
  32676. },
  32677. flying: {
  32678. height: math.unit(18, "meters"),
  32679. weight: math.unit(9072, "kg"),
  32680. name: "Flying",
  32681. image: {
  32682. source: "./media/characters/raylldo/flying.svg"
  32683. }
  32684. },
  32685. head: {
  32686. height: math.unit(5.85, "meters"),
  32687. name: "Head",
  32688. image: {
  32689. source: "./media/characters/raylldo/head.svg"
  32690. }
  32691. },
  32692. maw: {
  32693. height: math.unit(5.32, "meters"),
  32694. name: "Maw",
  32695. image: {
  32696. source: "./media/characters/raylldo/maw.svg"
  32697. }
  32698. },
  32699. eye: {
  32700. height: math.unit(0.54, "meters"),
  32701. name: "Eye",
  32702. image: {
  32703. source: "./media/characters/raylldo/eye.svg"
  32704. }
  32705. },
  32706. },
  32707. [
  32708. {
  32709. name: "Normal",
  32710. height: math.unit(13, "meters"),
  32711. default: true
  32712. },
  32713. ]
  32714. ))
  32715. characterMakers.push(() => makeCharacter(
  32716. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32717. {
  32718. anthroFront: {
  32719. height: math.unit(9, "feet"),
  32720. weight: math.unit(600, "lb"),
  32721. name: "Anthro (Front)",
  32722. image: {
  32723. source: "./media/characters/glint/anthro-front.svg",
  32724. extra: 1097/1018,
  32725. bottom: 28/1125
  32726. }
  32727. },
  32728. anthroBack: {
  32729. height: math.unit(9, "feet"),
  32730. weight: math.unit(600, "lb"),
  32731. name: "Anthro (Back)",
  32732. image: {
  32733. source: "./media/characters/glint/anthro-back.svg",
  32734. extra: 1154/997,
  32735. bottom: 36/1190
  32736. }
  32737. },
  32738. feral: {
  32739. height: math.unit(11, "feet"),
  32740. weight: math.unit(50000, "lb"),
  32741. name: "Feral",
  32742. image: {
  32743. source: "./media/characters/glint/feral.svg",
  32744. extra: 3035/1585,
  32745. bottom: 1169/4204
  32746. }
  32747. },
  32748. dickAnthro: {
  32749. height: math.unit(0.7, "meters"),
  32750. name: "Dick (Anthro)",
  32751. image: {
  32752. source: "./media/characters/glint/dick-anthro.svg"
  32753. }
  32754. },
  32755. dickFeral: {
  32756. height: math.unit(2.65, "meters"),
  32757. name: "Dick (Feral)",
  32758. image: {
  32759. source: "./media/characters/glint/dick-feral.svg"
  32760. }
  32761. },
  32762. slitHidden: {
  32763. height: math.unit(5.85, "meters"),
  32764. name: "Slit (Hidden)",
  32765. image: {
  32766. source: "./media/characters/glint/slit-hidden.svg"
  32767. }
  32768. },
  32769. slitErect: {
  32770. height: math.unit(5.85, "meters"),
  32771. name: "Slit (Erect)",
  32772. image: {
  32773. source: "./media/characters/glint/slit-erect.svg"
  32774. }
  32775. },
  32776. mawAnthro: {
  32777. height: math.unit(0.63, "meters"),
  32778. name: "Maw (Anthro)",
  32779. image: {
  32780. source: "./media/characters/glint/maw.svg"
  32781. }
  32782. },
  32783. mawFeral: {
  32784. height: math.unit(2.89, "meters"),
  32785. name: "Maw (Feral)",
  32786. image: {
  32787. source: "./media/characters/glint/maw.svg"
  32788. }
  32789. },
  32790. },
  32791. [
  32792. {
  32793. name: "Normal",
  32794. height: math.unit(9, "feet"),
  32795. default: true
  32796. },
  32797. ]
  32798. ))
  32799. characterMakers.push(() => makeCharacter(
  32800. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32801. {
  32802. side: {
  32803. height: math.unit(15, "feet"),
  32804. weight: math.unit(5000, "kg"),
  32805. name: "Side",
  32806. image: {
  32807. source: "./media/characters/kairne/side.svg",
  32808. extra: 979/811,
  32809. bottom: 13/992
  32810. }
  32811. },
  32812. front: {
  32813. height: math.unit(15, "feet"),
  32814. weight: math.unit(5000, "kg"),
  32815. name: "Front",
  32816. image: {
  32817. source: "./media/characters/kairne/front.svg",
  32818. extra: 908/814,
  32819. bottom: 26/934
  32820. }
  32821. },
  32822. sideNsfw: {
  32823. height: math.unit(15, "feet"),
  32824. weight: math.unit(5000, "kg"),
  32825. name: "Side (NSFW)",
  32826. image: {
  32827. source: "./media/characters/kairne/side-nsfw.svg",
  32828. extra: 979/811,
  32829. bottom: 13/992
  32830. }
  32831. },
  32832. frontNsfw: {
  32833. height: math.unit(15, "feet"),
  32834. weight: math.unit(5000, "kg"),
  32835. name: "Front (NSFW)",
  32836. image: {
  32837. source: "./media/characters/kairne/front-nsfw.svg",
  32838. extra: 908/814,
  32839. bottom: 26/934
  32840. }
  32841. },
  32842. dickCaged: {
  32843. height: math.unit(0.65, "meters"),
  32844. name: "Dick-caged",
  32845. image: {
  32846. source: "./media/characters/kairne/dick-caged.svg"
  32847. }
  32848. },
  32849. dick: {
  32850. height: math.unit(0.79, "meters"),
  32851. name: "Dick",
  32852. image: {
  32853. source: "./media/characters/kairne/dick.svg"
  32854. }
  32855. },
  32856. genitals: {
  32857. height: math.unit(1.29, "meters"),
  32858. name: "Genitals",
  32859. image: {
  32860. source: "./media/characters/kairne/genitals.svg"
  32861. }
  32862. },
  32863. maw: {
  32864. height: math.unit(1.73, "meters"),
  32865. name: "Maw",
  32866. image: {
  32867. source: "./media/characters/kairne/maw.svg"
  32868. }
  32869. },
  32870. },
  32871. [
  32872. {
  32873. name: "Normal",
  32874. height: math.unit(15, "feet"),
  32875. default: true
  32876. },
  32877. ]
  32878. ))
  32879. characterMakers.push(() => makeCharacter(
  32880. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32881. {
  32882. front: {
  32883. height: math.unit(5 + 8/12, "feet"),
  32884. weight: math.unit(139, "lb"),
  32885. name: "Front",
  32886. image: {
  32887. source: "./media/characters/biscuit-jackal/front.svg",
  32888. extra: 2106/1961,
  32889. bottom: 58/2164
  32890. }
  32891. },
  32892. back: {
  32893. height: math.unit(5 + 8/12, "feet"),
  32894. weight: math.unit(139, "lb"),
  32895. name: "Back",
  32896. image: {
  32897. source: "./media/characters/biscuit-jackal/back.svg",
  32898. extra: 2132/1976,
  32899. bottom: 57/2189
  32900. }
  32901. },
  32902. werejackal: {
  32903. height: math.unit(6 + 3/12, "feet"),
  32904. weight: math.unit(188, "lb"),
  32905. name: "Werejackal",
  32906. image: {
  32907. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32908. extra: 2373/2178,
  32909. bottom: 53/2426
  32910. }
  32911. },
  32912. },
  32913. [
  32914. {
  32915. name: "Normal",
  32916. height: math.unit(5 + 8/12, "feet"),
  32917. default: true
  32918. },
  32919. ]
  32920. ))
  32921. characterMakers.push(() => makeCharacter(
  32922. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32923. {
  32924. front: {
  32925. height: math.unit(140, "cm"),
  32926. weight: math.unit(45, "kg"),
  32927. name: "Front",
  32928. image: {
  32929. source: "./media/characters/tayra-white/front.svg",
  32930. extra: 2229/2192,
  32931. bottom: 75/2304
  32932. }
  32933. },
  32934. },
  32935. [
  32936. {
  32937. name: "Normal",
  32938. height: math.unit(140, "cm"),
  32939. default: true
  32940. },
  32941. ]
  32942. ))
  32943. characterMakers.push(() => makeCharacter(
  32944. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32945. {
  32946. front: {
  32947. height: math.unit(4 + 5/12, "feet"),
  32948. name: "Front",
  32949. image: {
  32950. source: "./media/characters/scoop/front.svg",
  32951. extra: 1257/1136,
  32952. bottom: 69/1326
  32953. }
  32954. },
  32955. back: {
  32956. height: math.unit(4 + 5/12, "feet"),
  32957. name: "Back",
  32958. image: {
  32959. source: "./media/characters/scoop/back.svg",
  32960. extra: 1321/1152,
  32961. bottom: 32/1353
  32962. }
  32963. },
  32964. maw: {
  32965. height: math.unit(0.68, "feet"),
  32966. name: "Maw",
  32967. image: {
  32968. source: "./media/characters/scoop/maw.svg"
  32969. }
  32970. },
  32971. },
  32972. [
  32973. {
  32974. name: "Really Small",
  32975. height: math.unit(1, "mm")
  32976. },
  32977. {
  32978. name: "Micro",
  32979. height: math.unit(1, "inch")
  32980. },
  32981. {
  32982. name: "Normal",
  32983. height: math.unit(4 + 5/12, "feet"),
  32984. default: true
  32985. },
  32986. {
  32987. name: "Macro",
  32988. height: math.unit(200, "feet")
  32989. },
  32990. {
  32991. name: "Megamacro",
  32992. height: math.unit(3240, "feet")
  32993. },
  32994. {
  32995. name: "Teramacro",
  32996. height: math.unit(2500, "miles")
  32997. },
  32998. ]
  32999. ))
  33000. characterMakers.push(() => makeCharacter(
  33001. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  33002. {
  33003. front: {
  33004. height: math.unit(15 + 7/12, "feet"),
  33005. name: "Front",
  33006. image: {
  33007. source: "./media/characters/saphinara/front.svg",
  33008. extra: 604/546,
  33009. bottom: 19/623
  33010. }
  33011. },
  33012. side: {
  33013. height: math.unit(15 + 7/12, "feet"),
  33014. name: "Side",
  33015. image: {
  33016. source: "./media/characters/saphinara/side.svg",
  33017. extra: 605/547,
  33018. bottom: 6/611
  33019. }
  33020. },
  33021. back: {
  33022. height: math.unit(15 + 7/12, "feet"),
  33023. name: "Back",
  33024. image: {
  33025. source: "./media/characters/saphinara/back.svg",
  33026. extra: 591/531,
  33027. bottom: 13/604
  33028. }
  33029. },
  33030. frontTail: {
  33031. height: math.unit(15 + 7/12, "feet"),
  33032. name: "Front (Full Tail)",
  33033. image: {
  33034. source: "./media/characters/saphinara/front-tail.svg",
  33035. extra: 748/547,
  33036. bottom: 66/814
  33037. }
  33038. },
  33039. },
  33040. [
  33041. {
  33042. name: "Normal",
  33043. height: math.unit(15 + 7/12, "feet"),
  33044. default: true
  33045. },
  33046. {
  33047. name: "Angry",
  33048. height: math.unit(30 + 6/12, "feet")
  33049. },
  33050. {
  33051. name: "Enraged",
  33052. height: math.unit(102 + 1/12, "feet")
  33053. },
  33054. ]
  33055. ))
  33056. characterMakers.push(() => makeCharacter(
  33057. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  33058. {
  33059. front: {
  33060. height: math.unit(6 + 8/12, "feet"),
  33061. weight: math.unit(300, "lb"),
  33062. name: "Front",
  33063. image: {
  33064. source: "./media/characters/jrain/front.svg",
  33065. extra: 3039/2865,
  33066. bottom: 399/3438
  33067. }
  33068. },
  33069. back: {
  33070. height: math.unit(6 + 8/12, "feet"),
  33071. weight: math.unit(300, "lb"),
  33072. name: "Back",
  33073. image: {
  33074. source: "./media/characters/jrain/back.svg",
  33075. extra: 3089/2938,
  33076. bottom: 172/3261
  33077. }
  33078. },
  33079. head: {
  33080. height: math.unit(2.14, "feet"),
  33081. name: "Head",
  33082. image: {
  33083. source: "./media/characters/jrain/head.svg"
  33084. }
  33085. },
  33086. maw: {
  33087. height: math.unit(1.77, "feet"),
  33088. name: "Maw",
  33089. image: {
  33090. source: "./media/characters/jrain/maw.svg"
  33091. }
  33092. },
  33093. leftHand: {
  33094. height: math.unit(1.1, "feet"),
  33095. name: "Left Hand",
  33096. image: {
  33097. source: "./media/characters/jrain/left-hand.svg"
  33098. }
  33099. },
  33100. rightHand: {
  33101. height: math.unit(1.1, "feet"),
  33102. name: "Right Hand",
  33103. image: {
  33104. source: "./media/characters/jrain/right-hand.svg"
  33105. }
  33106. },
  33107. eye: {
  33108. height: math.unit(0.35, "feet"),
  33109. name: "Eye",
  33110. image: {
  33111. source: "./media/characters/jrain/eye.svg"
  33112. }
  33113. },
  33114. },
  33115. [
  33116. {
  33117. name: "Normal",
  33118. height: math.unit(6 + 8/12, "feet"),
  33119. default: true
  33120. },
  33121. {
  33122. name: "Casually Large",
  33123. height: math.unit(25, "feet")
  33124. },
  33125. {
  33126. name: "Giant",
  33127. height: math.unit(100, "feet")
  33128. },
  33129. {
  33130. name: "Kaiju",
  33131. height: math.unit(300, "feet")
  33132. },
  33133. ]
  33134. ))
  33135. characterMakers.push(() => makeCharacter(
  33136. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33137. {
  33138. dragon: {
  33139. height: math.unit(5, "meters"),
  33140. name: "Dragon",
  33141. image: {
  33142. source: "./media/characters/sabrina/dragon.svg",
  33143. extra: 3670 / 2365,
  33144. bottom: 333 / 4003
  33145. }
  33146. },
  33147. gryphon: {
  33148. height: math.unit(3, "meters"),
  33149. name: "Gryphon",
  33150. image: {
  33151. source: "./media/characters/sabrina/gryphon.svg",
  33152. extra: 1576 / 945,
  33153. bottom: 71 / 1647
  33154. }
  33155. },
  33156. snake: {
  33157. height: math.unit(12, "meters"),
  33158. name: "Snake",
  33159. image: {
  33160. source: "./media/characters/sabrina/snake.svg",
  33161. extra: 1758 / 1320,
  33162. bottom: 186 / 1944
  33163. }
  33164. },
  33165. collar: {
  33166. height: math.unit(1.86, "meters"),
  33167. name: "Collar",
  33168. image: {
  33169. source: "./media/characters/sabrina/collar.svg"
  33170. }
  33171. },
  33172. eye: {
  33173. height: math.unit(0.53, "meters"),
  33174. name: "Eye",
  33175. image: {
  33176. source: "./media/characters/sabrina/eye.svg"
  33177. }
  33178. },
  33179. foot: {
  33180. height: math.unit(1.86, "meters"),
  33181. name: "Foot",
  33182. image: {
  33183. source: "./media/characters/sabrina/foot.svg"
  33184. }
  33185. },
  33186. hand: {
  33187. height: math.unit(1.32, "meters"),
  33188. name: "Hand",
  33189. image: {
  33190. source: "./media/characters/sabrina/hand.svg"
  33191. }
  33192. },
  33193. head: {
  33194. height: math.unit(2.44, "meters"),
  33195. name: "Head",
  33196. image: {
  33197. source: "./media/characters/sabrina/head.svg"
  33198. }
  33199. },
  33200. headAngry: {
  33201. height: math.unit(2.44, "meters"),
  33202. name: "Head (Angry))",
  33203. image: {
  33204. source: "./media/characters/sabrina/head-angry.svg"
  33205. }
  33206. },
  33207. maw: {
  33208. height: math.unit(1.65, "meters"),
  33209. name: "Maw",
  33210. image: {
  33211. source: "./media/characters/sabrina/maw.svg"
  33212. }
  33213. },
  33214. spikes: {
  33215. height: math.unit(1.69, "meters"),
  33216. name: "Spikes",
  33217. image: {
  33218. source: "./media/characters/sabrina/spikes.svg"
  33219. }
  33220. },
  33221. stomach: {
  33222. height: math.unit(1.15, "meters"),
  33223. name: "Stomach",
  33224. image: {
  33225. source: "./media/characters/sabrina/stomach.svg"
  33226. }
  33227. },
  33228. tongue: {
  33229. height: math.unit(1.27, "meters"),
  33230. name: "Tongue",
  33231. image: {
  33232. source: "./media/characters/sabrina/tongue.svg"
  33233. }
  33234. },
  33235. wingDorsal: {
  33236. height: math.unit(4.85, "meters"),
  33237. name: "Wing (Dorsal)",
  33238. image: {
  33239. source: "./media/characters/sabrina/wing-dorsal.svg"
  33240. }
  33241. },
  33242. wingVentral: {
  33243. height: math.unit(4.85, "meters"),
  33244. name: "Wing (Ventral)",
  33245. image: {
  33246. source: "./media/characters/sabrina/wing-ventral.svg"
  33247. }
  33248. },
  33249. },
  33250. [
  33251. {
  33252. name: "Normal",
  33253. height: math.unit(5, "meters"),
  33254. default: true
  33255. },
  33256. ]
  33257. ))
  33258. characterMakers.push(() => makeCharacter(
  33259. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33260. {
  33261. frontMaid: {
  33262. height: math.unit(5 + 5/12, "feet"),
  33263. weight: math.unit(130, "lb"),
  33264. name: "Front (Maid)",
  33265. image: {
  33266. source: "./media/characters/midnight-tales/front-maid.svg",
  33267. extra: 489/454,
  33268. bottom: 61/550
  33269. }
  33270. },
  33271. frontFormal: {
  33272. height: math.unit(5 + 5/12, "feet"),
  33273. weight: math.unit(130, "lb"),
  33274. name: "Front (Formal)",
  33275. image: {
  33276. source: "./media/characters/midnight-tales/front-formal.svg",
  33277. extra: 489/454,
  33278. bottom: 61/550
  33279. }
  33280. },
  33281. back: {
  33282. height: math.unit(5 + 5/12, "feet"),
  33283. weight: math.unit(130, "lb"),
  33284. name: "Back",
  33285. image: {
  33286. source: "./media/characters/midnight-tales/back.svg",
  33287. extra: 498/456,
  33288. bottom: 33/531
  33289. }
  33290. },
  33291. frontBeast: {
  33292. height: math.unit(40, "feet"),
  33293. weight: math.unit(64000, "lb"),
  33294. name: "Front (Beast)",
  33295. image: {
  33296. source: "./media/characters/midnight-tales/front-beast.svg",
  33297. extra: 927/860,
  33298. bottom: 53/980
  33299. }
  33300. },
  33301. backBeast: {
  33302. height: math.unit(40, "feet"),
  33303. weight: math.unit(64000, "lb"),
  33304. name: "Back (Beast)",
  33305. image: {
  33306. source: "./media/characters/midnight-tales/back-beast.svg",
  33307. extra: 929/855,
  33308. bottom: 16/945
  33309. }
  33310. },
  33311. footBeast: {
  33312. height: math.unit(6.7, "feet"),
  33313. name: "Foot (Beast)",
  33314. image: {
  33315. source: "./media/characters/midnight-tales/foot-beast.svg"
  33316. }
  33317. },
  33318. headBeast: {
  33319. height: math.unit(8, "feet"),
  33320. name: "Head (Beast)",
  33321. image: {
  33322. source: "./media/characters/midnight-tales/head-beast.svg"
  33323. }
  33324. },
  33325. },
  33326. [
  33327. {
  33328. name: "Normal",
  33329. height: math.unit(5 + 5 / 12, "feet"),
  33330. default: true
  33331. },
  33332. {
  33333. name: "Macro",
  33334. height: math.unit(25, "feet")
  33335. },
  33336. ]
  33337. ))
  33338. characterMakers.push(() => makeCharacter(
  33339. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33340. {
  33341. front: {
  33342. height: math.unit(5 + 10/12, "feet"),
  33343. name: "Front",
  33344. image: {
  33345. source: "./media/characters/argon/front.svg",
  33346. extra: 2009/1935,
  33347. bottom: 118/2127
  33348. }
  33349. },
  33350. back: {
  33351. height: math.unit(5 + 10/12, "feet"),
  33352. name: "Back",
  33353. image: {
  33354. source: "./media/characters/argon/back.svg",
  33355. extra: 2047/1992,
  33356. bottom: 20/2067
  33357. }
  33358. },
  33359. frontDressed: {
  33360. height: math.unit(5 + 10/12, "feet"),
  33361. name: "Front (Dressed)",
  33362. image: {
  33363. source: "./media/characters/argon/front-dressed.svg",
  33364. extra: 2009/1935,
  33365. bottom: 118/2127
  33366. }
  33367. },
  33368. },
  33369. [
  33370. {
  33371. name: "Normal",
  33372. height: math.unit(5 + 10/12, "feet"),
  33373. default: true
  33374. },
  33375. ]
  33376. ))
  33377. characterMakers.push(() => makeCharacter(
  33378. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33379. {
  33380. front: {
  33381. height: math.unit(8 + 6/12, "feet"),
  33382. weight: math.unit(1150, "lb"),
  33383. name: "Front",
  33384. image: {
  33385. source: "./media/characters/kichi/front.svg",
  33386. extra: 1267/1164,
  33387. bottom: 61/1328
  33388. }
  33389. },
  33390. back: {
  33391. height: math.unit(8 + 6/12, "feet"),
  33392. weight: math.unit(1150, "lb"),
  33393. name: "Back",
  33394. image: {
  33395. source: "./media/characters/kichi/back.svg",
  33396. extra: 1273/1166,
  33397. bottom: 33/1306
  33398. }
  33399. },
  33400. },
  33401. [
  33402. {
  33403. name: "Normal",
  33404. height: math.unit(8 + 6/12, "feet"),
  33405. default: true
  33406. },
  33407. ]
  33408. ))
  33409. characterMakers.push(() => makeCharacter(
  33410. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33411. {
  33412. front: {
  33413. height: math.unit(6, "feet"),
  33414. weight: math.unit(210, "lb"),
  33415. name: "Front",
  33416. image: {
  33417. source: "./media/characters/manetel-greyscale/front.svg",
  33418. extra: 350/312,
  33419. bottom: 8/358
  33420. }
  33421. },
  33422. },
  33423. [
  33424. {
  33425. name: "Micro",
  33426. height: math.unit(2, "inches")
  33427. },
  33428. {
  33429. name: "Normal",
  33430. height: math.unit(6, "feet"),
  33431. default: true
  33432. },
  33433. {
  33434. name: "Minimacro",
  33435. height: math.unit(17, "feet")
  33436. },
  33437. {
  33438. name: "Macro",
  33439. height: math.unit(117, "feet")
  33440. },
  33441. ]
  33442. ))
  33443. characterMakers.push(() => makeCharacter(
  33444. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33445. {
  33446. side: {
  33447. height: math.unit(5 + 1/12, "feet"),
  33448. weight: math.unit(418, "lb"),
  33449. name: "Side",
  33450. image: {
  33451. source: "./media/characters/softpurr/side.svg",
  33452. extra: 1993/1945,
  33453. bottom: 134/2127
  33454. }
  33455. },
  33456. front: {
  33457. height: math.unit(5 + 1/12, "feet"),
  33458. weight: math.unit(418, "lb"),
  33459. name: "Front",
  33460. image: {
  33461. source: "./media/characters/softpurr/front.svg",
  33462. extra: 1950/1856,
  33463. bottom: 174/2124
  33464. }
  33465. },
  33466. paw: {
  33467. height: math.unit(1, "feet"),
  33468. name: "Paw",
  33469. image: {
  33470. source: "./media/characters/softpurr/paw.svg"
  33471. }
  33472. },
  33473. },
  33474. [
  33475. {
  33476. name: "Normal",
  33477. height: math.unit(5 + 1/12, "feet"),
  33478. default: true
  33479. },
  33480. ]
  33481. ))
  33482. characterMakers.push(() => makeCharacter(
  33483. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33484. {
  33485. front: {
  33486. height: math.unit(260, "meters"),
  33487. name: "Front",
  33488. image: {
  33489. source: "./media/characters/anahita/front.svg",
  33490. extra: 665/635,
  33491. bottom: 89/754
  33492. }
  33493. },
  33494. },
  33495. [
  33496. {
  33497. name: "Macro",
  33498. height: math.unit(260, "meters"),
  33499. default: true
  33500. },
  33501. ]
  33502. ))
  33503. characterMakers.push(() => makeCharacter(
  33504. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33505. {
  33506. front: {
  33507. height: math.unit(4 + 10/12, "feet"),
  33508. weight: math.unit(160, "lb"),
  33509. name: "Front",
  33510. image: {
  33511. source: "./media/characters/chip-mouse/front.svg",
  33512. extra: 3528/3408,
  33513. bottom: 0/3528
  33514. }
  33515. },
  33516. frontNsfw: {
  33517. height: math.unit(4 + 10/12, "feet"),
  33518. weight: math.unit(160, "lb"),
  33519. name: "Front (NSFW)",
  33520. image: {
  33521. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33522. extra: 3528/3408,
  33523. bottom: 0/3528
  33524. }
  33525. },
  33526. },
  33527. [
  33528. {
  33529. name: "Normal",
  33530. height: math.unit(4 + 10/12, "feet"),
  33531. default: true
  33532. },
  33533. ]
  33534. ))
  33535. characterMakers.push(() => makeCharacter(
  33536. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33537. {
  33538. side: {
  33539. height: math.unit(10, "feet"),
  33540. weight: math.unit(14000, "lb"),
  33541. name: "Side",
  33542. image: {
  33543. source: "./media/characters/kremm/side.svg",
  33544. extra: 1390/1053,
  33545. bottom: 90/1480
  33546. }
  33547. },
  33548. gut: {
  33549. height: math.unit(5.8, "feet"),
  33550. name: "Gut",
  33551. image: {
  33552. source: "./media/characters/kremm/gut.svg"
  33553. }
  33554. },
  33555. ass: {
  33556. height: math.unit(6.1, "feet"),
  33557. name: "Ass",
  33558. image: {
  33559. source: "./media/characters/kremm/ass.svg"
  33560. }
  33561. },
  33562. jaws: {
  33563. height: math.unit(2.2, "feet"),
  33564. name: "Jaws",
  33565. image: {
  33566. source: "./media/characters/kremm/jaws.svg"
  33567. }
  33568. },
  33569. dick: {
  33570. height: math.unit(4.26, "feet"),
  33571. name: "Dick",
  33572. image: {
  33573. source: "./media/characters/kremm/dick.svg"
  33574. }
  33575. },
  33576. },
  33577. [
  33578. {
  33579. name: "Normal",
  33580. height: math.unit(10, "feet"),
  33581. default: true
  33582. },
  33583. ]
  33584. ))
  33585. characterMakers.push(() => makeCharacter(
  33586. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33587. {
  33588. front: {
  33589. height: math.unit(30, "stories"),
  33590. name: "Front",
  33591. image: {
  33592. source: "./media/characters/kai/front.svg",
  33593. extra: 1892/1718,
  33594. bottom: 162/2054
  33595. }
  33596. },
  33597. },
  33598. [
  33599. {
  33600. name: "Macro",
  33601. height: math.unit(30, "stories"),
  33602. default: true
  33603. },
  33604. ]
  33605. ))
  33606. characterMakers.push(() => makeCharacter(
  33607. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33608. {
  33609. front: {
  33610. height: math.unit(6 + 4/12, "feet"),
  33611. weight: math.unit(145, "lb"),
  33612. name: "Front",
  33613. image: {
  33614. source: "./media/characters/sykes/front.svg",
  33615. extra: 1321 / 1187,
  33616. bottom: 66 / 1387
  33617. }
  33618. },
  33619. back: {
  33620. height: math.unit(6 + 4/12, "feet"),
  33621. weight: math.unit(145, "lb"),
  33622. name: "Back",
  33623. image: {
  33624. source: "./media/characters/sykes/back.svg",
  33625. extra: 1326/1181,
  33626. bottom: 31/1357
  33627. }
  33628. },
  33629. handBack: {
  33630. height: math.unit(0.9, "feet"),
  33631. name: "Hand (Back)",
  33632. image: {
  33633. source: "./media/characters/sykes/hand-back.svg"
  33634. }
  33635. },
  33636. handFront: {
  33637. height: math.unit(0.839, "feet"),
  33638. name: "Hand (Front)",
  33639. image: {
  33640. source: "./media/characters/sykes/hand-front.svg"
  33641. }
  33642. },
  33643. leftFoot: {
  33644. height: math.unit(1.2, "feet"),
  33645. name: "Foot (Left)",
  33646. image: {
  33647. source: "./media/characters/sykes/foot-left.svg"
  33648. }
  33649. },
  33650. rightFoot: {
  33651. height: math.unit(1.2, "feet"),
  33652. name: "Foot (Right)",
  33653. image: {
  33654. source: "./media/characters/sykes/foot-right.svg"
  33655. }
  33656. },
  33657. maw: {
  33658. height: math.unit(1.93, "feet"),
  33659. name: "Maw",
  33660. image: {
  33661. source: "./media/characters/sykes/maw.svg"
  33662. }
  33663. },
  33664. teeth: {
  33665. height: math.unit(0.51, "feet"),
  33666. name: "Teeth",
  33667. image: {
  33668. source: "./media/characters/sykes/teeth.svg"
  33669. }
  33670. },
  33671. tongue: {
  33672. height: math.unit(2.13, "feet"),
  33673. name: "Tongue",
  33674. image: {
  33675. source: "./media/characters/sykes/tongue.svg"
  33676. }
  33677. },
  33678. uvula: {
  33679. height: math.unit(0.16, "feet"),
  33680. name: "Uvula",
  33681. image: {
  33682. source: "./media/characters/sykes/uvula.svg"
  33683. }
  33684. },
  33685. collar: {
  33686. height: math.unit(0.287, "feet"),
  33687. name: "Collar",
  33688. image: {
  33689. source: "./media/characters/sykes/collar.svg"
  33690. }
  33691. },
  33692. },
  33693. [
  33694. {
  33695. name: "Shrunken",
  33696. height: math.unit(5, "inches")
  33697. },
  33698. {
  33699. name: "Normal",
  33700. height: math.unit(6 + 4 / 12, "feet"),
  33701. default: true
  33702. },
  33703. {
  33704. name: "Big",
  33705. height: math.unit(15, "feet")
  33706. },
  33707. ]
  33708. ))
  33709. characterMakers.push(() => makeCharacter(
  33710. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33711. {
  33712. front: {
  33713. height: math.unit(5 + 8/12, "feet"),
  33714. weight: math.unit(190, "lb"),
  33715. name: "Front",
  33716. image: {
  33717. source: "./media/characters/oven-otter/front.svg",
  33718. extra: 1809/1740,
  33719. bottom: 181/1990
  33720. }
  33721. },
  33722. back: {
  33723. height: math.unit(5 + 8/12, "feet"),
  33724. weight: math.unit(190, "lb"),
  33725. name: "Back",
  33726. image: {
  33727. source: "./media/characters/oven-otter/back.svg",
  33728. extra: 1709/1635,
  33729. bottom: 118/1827
  33730. }
  33731. },
  33732. hand: {
  33733. height: math.unit(1.07, "feet"),
  33734. name: "Hand",
  33735. image: {
  33736. source: "./media/characters/oven-otter/hand.svg"
  33737. }
  33738. },
  33739. beans: {
  33740. height: math.unit(1.74, "feet"),
  33741. name: "Beans",
  33742. image: {
  33743. source: "./media/characters/oven-otter/beans.svg"
  33744. }
  33745. },
  33746. },
  33747. [
  33748. {
  33749. name: "Micro",
  33750. height: math.unit(0.5, "inches")
  33751. },
  33752. {
  33753. name: "Normal",
  33754. height: math.unit(5 + 8/12, "feet"),
  33755. default: true
  33756. },
  33757. {
  33758. name: "Macro",
  33759. height: math.unit(250, "feet")
  33760. },
  33761. {
  33762. name: "Really High",
  33763. height: math.unit(420, "feet")
  33764. },
  33765. ]
  33766. ))
  33767. characterMakers.push(() => makeCharacter(
  33768. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33769. {
  33770. front: {
  33771. height: math.unit(5, "meters"),
  33772. weight: math.unit(292000000000000, "kg"),
  33773. name: "Front",
  33774. image: {
  33775. source: "./media/characters/devourer/front.svg",
  33776. extra: 1800/1733,
  33777. bottom: 211/2011
  33778. }
  33779. },
  33780. maw: {
  33781. height: math.unit(1.1, "meter"),
  33782. name: "Maw",
  33783. image: {
  33784. source: "./media/characters/devourer/maw.svg"
  33785. }
  33786. },
  33787. },
  33788. [
  33789. {
  33790. name: "Small",
  33791. height: math.unit(3, "meters")
  33792. },
  33793. {
  33794. name: "Large",
  33795. height: math.unit(5, "meters"),
  33796. default: true
  33797. },
  33798. ]
  33799. ))
  33800. characterMakers.push(() => makeCharacter(
  33801. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33802. {
  33803. front: {
  33804. height: math.unit(6, "feet"),
  33805. weight: math.unit(400, "lb"),
  33806. name: "Front",
  33807. image: {
  33808. source: "./media/characters/ellarby/front.svg",
  33809. extra: 1909/1763,
  33810. bottom: 80/1989
  33811. }
  33812. },
  33813. back: {
  33814. height: math.unit(6, "feet"),
  33815. weight: math.unit(400, "lb"),
  33816. name: "Back",
  33817. image: {
  33818. source: "./media/characters/ellarby/back.svg",
  33819. extra: 1914/1784,
  33820. bottom: 172/2086
  33821. }
  33822. },
  33823. },
  33824. [
  33825. {
  33826. name: "Mischief",
  33827. height: math.unit(18, "inches")
  33828. },
  33829. {
  33830. name: "Trouble",
  33831. height: math.unit(12, "feet")
  33832. },
  33833. {
  33834. name: "Havoc",
  33835. height: math.unit(200, "feet"),
  33836. default: true
  33837. },
  33838. {
  33839. name: "Pandemonium",
  33840. height: math.unit(1, "mile")
  33841. },
  33842. {
  33843. name: "Catastrophe",
  33844. height: math.unit(100, "miles")
  33845. },
  33846. ]
  33847. ))
  33848. characterMakers.push(() => makeCharacter(
  33849. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33850. {
  33851. front: {
  33852. height: math.unit(4.7, "meters"),
  33853. weight: math.unit(6500, "kg"),
  33854. name: "Front",
  33855. image: {
  33856. source: "./media/characters/vex/front.svg",
  33857. extra: 1288/1140,
  33858. bottom: 100/1388
  33859. }
  33860. },
  33861. },
  33862. [
  33863. {
  33864. name: "Normal",
  33865. height: math.unit(4.7, "meters"),
  33866. default: true
  33867. },
  33868. ]
  33869. ))
  33870. characterMakers.push(() => makeCharacter(
  33871. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33872. {
  33873. normal: {
  33874. height: math.unit(6, "feet"),
  33875. weight: math.unit(350, "lb"),
  33876. name: "Normal",
  33877. image: {
  33878. source: "./media/characters/teshy/normal.svg",
  33879. extra: 1795/1735,
  33880. bottom: 16/1811
  33881. }
  33882. },
  33883. monsterFront: {
  33884. height: math.unit(12, "feet"),
  33885. weight: math.unit(4700, "lb"),
  33886. name: "Monster (Front)",
  33887. image: {
  33888. source: "./media/characters/teshy/monster-front.svg",
  33889. extra: 2042/2034,
  33890. bottom: 128/2170
  33891. }
  33892. },
  33893. monsterSide: {
  33894. height: math.unit(12, "feet"),
  33895. weight: math.unit(4700, "lb"),
  33896. name: "Monster (Side)",
  33897. image: {
  33898. source: "./media/characters/teshy/monster-side.svg",
  33899. extra: 2067/2056,
  33900. bottom: 70/2137
  33901. }
  33902. },
  33903. monsterBack: {
  33904. height: math.unit(12, "feet"),
  33905. weight: math.unit(4700, "lb"),
  33906. name: "Monster (Back)",
  33907. image: {
  33908. source: "./media/characters/teshy/monster-back.svg",
  33909. extra: 1921/1914,
  33910. bottom: 171/2092
  33911. }
  33912. },
  33913. },
  33914. [
  33915. {
  33916. name: "Normal",
  33917. height: math.unit(6, "feet"),
  33918. default: true
  33919. },
  33920. ]
  33921. ))
  33922. characterMakers.push(() => makeCharacter(
  33923. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33924. {
  33925. front: {
  33926. height: math.unit(6, "feet"),
  33927. name: "Front",
  33928. image: {
  33929. source: "./media/characters/ramey/front.svg",
  33930. extra: 790/787,
  33931. bottom: 27/817
  33932. }
  33933. },
  33934. },
  33935. [
  33936. {
  33937. name: "Normal",
  33938. height: math.unit(6, "feet"),
  33939. default: true
  33940. },
  33941. ]
  33942. ))
  33943. characterMakers.push(() => makeCharacter(
  33944. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33945. {
  33946. front: {
  33947. height: math.unit(5 + 5/12, "feet"),
  33948. weight: math.unit(120, "lb"),
  33949. name: "Front",
  33950. image: {
  33951. source: "./media/characters/phirae/front.svg",
  33952. extra: 2491/2436,
  33953. bottom: 38/2529
  33954. }
  33955. },
  33956. },
  33957. [
  33958. {
  33959. name: "Normal",
  33960. height: math.unit(5 + 5/12, "feet"),
  33961. default: true
  33962. },
  33963. ]
  33964. ))
  33965. characterMakers.push(() => makeCharacter(
  33966. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  33967. {
  33968. front: {
  33969. height: math.unit(5 + 3/12, "feet"),
  33970. name: "Front",
  33971. image: {
  33972. source: "./media/characters/stagglas/front.svg",
  33973. extra: 962/882,
  33974. bottom: 53/1015
  33975. }
  33976. },
  33977. feral: {
  33978. height: math.unit(335, "cm"),
  33979. name: "Feral",
  33980. image: {
  33981. source: "./media/characters/stagglas/feral.svg",
  33982. extra: 1732/1090,
  33983. bottom: 48/1780
  33984. }
  33985. },
  33986. },
  33987. [
  33988. {
  33989. name: "Normal",
  33990. height: math.unit(5 + 3/12, "feet"),
  33991. default: true
  33992. },
  33993. ]
  33994. ))
  33995. characterMakers.push(() => makeCharacter(
  33996. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33997. {
  33998. front: {
  33999. height: math.unit(5 + 4/12, "feet"),
  34000. weight: math.unit(145, "lb"),
  34001. name: "Front",
  34002. image: {
  34003. source: "./media/characters/starra/front.svg",
  34004. extra: 1790/1691,
  34005. bottom: 91/1881
  34006. }
  34007. },
  34008. },
  34009. [
  34010. {
  34011. name: "Normal",
  34012. height: math.unit(5 + 4/12, "feet"),
  34013. default: true
  34014. },
  34015. ]
  34016. ))
  34017. characterMakers.push(() => makeCharacter(
  34018. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  34019. {
  34020. front: {
  34021. height: math.unit(2.2, "meters"),
  34022. name: "Front",
  34023. image: {
  34024. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  34025. extra: 1194/1005,
  34026. bottom: 25/1219
  34027. }
  34028. },
  34029. },
  34030. [
  34031. {
  34032. name: "Normal",
  34033. height: math.unit(2.2, "meters"),
  34034. default: true
  34035. },
  34036. ]
  34037. ))
  34038. characterMakers.push(() => makeCharacter(
  34039. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  34040. {
  34041. side: {
  34042. height: math.unit(8 + 2/12, "feet"),
  34043. weight: math.unit(1240, "lb"),
  34044. name: "Side",
  34045. image: {
  34046. source: "./media/characters/mika-valentine/side.svg",
  34047. extra: 2670/2501,
  34048. bottom: 250/2920
  34049. }
  34050. },
  34051. },
  34052. [
  34053. {
  34054. name: "Normal",
  34055. height: math.unit(8 + 2/12, "feet"),
  34056. default: true
  34057. },
  34058. ]
  34059. ))
  34060. characterMakers.push(() => makeCharacter(
  34061. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  34062. {
  34063. front: {
  34064. height: math.unit(7 + 2/12, "feet"),
  34065. name: "Front",
  34066. image: {
  34067. source: "./media/characters/xoltol/front.svg",
  34068. extra: 2212/2124,
  34069. bottom: 84/2296
  34070. }
  34071. },
  34072. side: {
  34073. height: math.unit(7 + 2/12, "feet"),
  34074. name: "Side",
  34075. image: {
  34076. source: "./media/characters/xoltol/side.svg",
  34077. extra: 2273/2197,
  34078. bottom: 26/2299
  34079. }
  34080. },
  34081. hand: {
  34082. height: math.unit(2.5, "feet"),
  34083. name: "Hand",
  34084. image: {
  34085. source: "./media/characters/xoltol/hand.svg"
  34086. }
  34087. },
  34088. },
  34089. [
  34090. {
  34091. name: "Small-ish",
  34092. height: math.unit(5 + 11/12, "feet")
  34093. },
  34094. {
  34095. name: "Normal",
  34096. height: math.unit(7 + 2/12, "feet")
  34097. },
  34098. {
  34099. name: "\"Macro\"",
  34100. height: math.unit(14 + 9/12, "feet"),
  34101. default: true
  34102. },
  34103. {
  34104. name: "Alternate Height",
  34105. height: math.unit(20, "feet")
  34106. },
  34107. {
  34108. name: "Actually Macro",
  34109. height: math.unit(100, "feet")
  34110. },
  34111. ]
  34112. ))
  34113. characterMakers.push(() => makeCharacter(
  34114. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  34115. {
  34116. front: {
  34117. height: math.unit(5 + 2/12, "feet"),
  34118. name: "Front",
  34119. image: {
  34120. source: "./media/characters/kotetsu-redwood/front.svg",
  34121. extra: 1053/942,
  34122. bottom: 60/1113
  34123. }
  34124. },
  34125. },
  34126. [
  34127. {
  34128. name: "Normal",
  34129. height: math.unit(5 + 2/12, "feet"),
  34130. default: true
  34131. },
  34132. ]
  34133. ))
  34134. characterMakers.push(() => makeCharacter(
  34135. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34136. {
  34137. front: {
  34138. height: math.unit(2.4, "meters"),
  34139. weight: math.unit(125, "kg"),
  34140. name: "Front",
  34141. image: {
  34142. source: "./media/characters/lilith/front.svg",
  34143. extra: 1590/1513,
  34144. bottom: 203/1793
  34145. }
  34146. },
  34147. },
  34148. [
  34149. {
  34150. name: "Humanoid",
  34151. height: math.unit(2.4, "meters")
  34152. },
  34153. {
  34154. name: "Normal",
  34155. height: math.unit(6, "meters"),
  34156. default: true
  34157. },
  34158. {
  34159. name: "Largest",
  34160. height: math.unit(55, "meters")
  34161. },
  34162. ]
  34163. ))
  34164. characterMakers.push(() => makeCharacter(
  34165. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34166. {
  34167. front: {
  34168. height: math.unit(8 + 4/12, "feet"),
  34169. weight: math.unit(535, "lb"),
  34170. name: "Front",
  34171. image: {
  34172. source: "./media/characters/beh'kah-bolger/front.svg",
  34173. extra: 1660/1603,
  34174. bottom: 37/1697
  34175. }
  34176. },
  34177. },
  34178. [
  34179. {
  34180. name: "Normal",
  34181. height: math.unit(8 + 4/12, "feet"),
  34182. default: true
  34183. },
  34184. {
  34185. name: "Kaiju",
  34186. height: math.unit(250, "feet")
  34187. },
  34188. {
  34189. name: "Still Growing",
  34190. height: math.unit(10, "miles")
  34191. },
  34192. {
  34193. name: "Continental",
  34194. height: math.unit(5000, "miles")
  34195. },
  34196. {
  34197. name: "Final Form",
  34198. height: math.unit(2500000, "miles")
  34199. },
  34200. ]
  34201. ))
  34202. characterMakers.push(() => makeCharacter(
  34203. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34204. {
  34205. front: {
  34206. height: math.unit(7 + 2/12, "feet"),
  34207. weight: math.unit(230, "kg"),
  34208. name: "Front",
  34209. image: {
  34210. source: "./media/characters/tatyana-milewska/front.svg",
  34211. extra: 1199/1150,
  34212. bottom: 86/1285
  34213. }
  34214. },
  34215. },
  34216. [
  34217. {
  34218. name: "Normal",
  34219. height: math.unit(7 + 2/12, "feet"),
  34220. default: true
  34221. },
  34222. {
  34223. name: "Big",
  34224. height: math.unit(12, "feet")
  34225. },
  34226. {
  34227. name: "Minimacro",
  34228. height: math.unit(20, "feet")
  34229. },
  34230. {
  34231. name: "Macro",
  34232. height: math.unit(120, "feet")
  34233. },
  34234. ]
  34235. ))
  34236. characterMakers.push(() => makeCharacter(
  34237. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34238. {
  34239. front: {
  34240. height: math.unit(7 + 8/12, "feet"),
  34241. weight: math.unit(152, "kg"),
  34242. name: "Front",
  34243. image: {
  34244. source: "./media/characters/helen-arri/front.svg",
  34245. extra: 440/423,
  34246. bottom: 14/454
  34247. }
  34248. },
  34249. back: {
  34250. height: math.unit(7 + 8/12, "feet"),
  34251. weight: math.unit(152, "kg"),
  34252. name: "Back",
  34253. image: {
  34254. source: "./media/characters/helen-arri/back.svg",
  34255. extra: 443/426,
  34256. bottom: 8/451
  34257. }
  34258. },
  34259. },
  34260. [
  34261. {
  34262. name: "Normal",
  34263. height: math.unit(7 + 8/12, "feet"),
  34264. default: true
  34265. },
  34266. {
  34267. name: "Big",
  34268. height: math.unit(14, "feet")
  34269. },
  34270. {
  34271. name: "Minimacro",
  34272. height: math.unit(24, "feet")
  34273. },
  34274. {
  34275. name: "Macro",
  34276. height: math.unit(140, "feet")
  34277. },
  34278. ]
  34279. ))
  34280. characterMakers.push(() => makeCharacter(
  34281. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34282. {
  34283. front: {
  34284. height: math.unit(6, "meters"),
  34285. name: "Front",
  34286. image: {
  34287. source: "./media/characters/ehanu-rehu/front.svg",
  34288. extra: 1800/1800,
  34289. bottom: 59/1859
  34290. }
  34291. },
  34292. },
  34293. [
  34294. {
  34295. name: "Normal",
  34296. height: math.unit(6, "meters"),
  34297. default: true
  34298. },
  34299. ]
  34300. ))
  34301. characterMakers.push(() => makeCharacter(
  34302. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34303. {
  34304. front: {
  34305. height: math.unit(7 + 3/12, "feet"),
  34306. name: "Front",
  34307. image: {
  34308. source: "./media/characters/renholder/front.svg",
  34309. extra: 3096/2960,
  34310. bottom: 250/3346
  34311. }
  34312. },
  34313. },
  34314. [
  34315. {
  34316. name: "Normal Bat",
  34317. height: math.unit(7 + 3/12, "feet"),
  34318. default: true
  34319. },
  34320. {
  34321. name: "Slightly Tall Bat",
  34322. height: math.unit(100, "feet")
  34323. },
  34324. {
  34325. name: "Big Bat",
  34326. height: math.unit(1000, "feet")
  34327. },
  34328. {
  34329. name: "City-Sized Bat",
  34330. height: math.unit(200000, "feet")
  34331. },
  34332. {
  34333. name: "Bigger Bat",
  34334. height: math.unit(10000, "miles")
  34335. },
  34336. {
  34337. name: "Solar Sized Bat",
  34338. height: math.unit(100, "AU")
  34339. },
  34340. {
  34341. name: "Galactic Bat",
  34342. height: math.unit(200000, "lightyears")
  34343. },
  34344. {
  34345. name: "Universally Known Bat",
  34346. height: math.unit(1, "universe")
  34347. },
  34348. ]
  34349. ))
  34350. characterMakers.push(() => makeCharacter(
  34351. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34352. {
  34353. front: {
  34354. height: math.unit(6 + 11/12, "feet"),
  34355. weight: math.unit(250, "lb"),
  34356. name: "Front",
  34357. image: {
  34358. source: "./media/characters/cookiecat/front.svg",
  34359. extra: 893/827,
  34360. bottom: 14/907
  34361. }
  34362. },
  34363. },
  34364. [
  34365. {
  34366. name: "Micro",
  34367. height: math.unit(3, "inches")
  34368. },
  34369. {
  34370. name: "Normal",
  34371. height: math.unit(6 + 11/12, "feet"),
  34372. default: true
  34373. },
  34374. {
  34375. name: "Macro",
  34376. height: math.unit(100, "feet")
  34377. },
  34378. {
  34379. name: "Macro+",
  34380. height: math.unit(404, "feet")
  34381. },
  34382. {
  34383. name: "Megamacro",
  34384. height: math.unit(165, "miles")
  34385. },
  34386. {
  34387. name: "Planetary",
  34388. height: math.unit(4600, "miles")
  34389. },
  34390. ]
  34391. ))
  34392. characterMakers.push(() => makeCharacter(
  34393. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34394. {
  34395. front: {
  34396. height: math.unit(10 + 3/12, "feet"),
  34397. weight: math.unit(1500, "lb"),
  34398. name: "Front",
  34399. image: {
  34400. source: "./media/characters/tux-kusanagi/front.svg",
  34401. extra: 944/840,
  34402. bottom: 39/983
  34403. }
  34404. },
  34405. back: {
  34406. height: math.unit(10 + 3/12, "feet"),
  34407. weight: math.unit(1500, "lb"),
  34408. name: "Back",
  34409. image: {
  34410. source: "./media/characters/tux-kusanagi/back.svg",
  34411. extra: 941/842,
  34412. bottom: 28/969
  34413. }
  34414. },
  34415. rump: {
  34416. height: math.unit(5.25, "feet"),
  34417. name: "Rump",
  34418. image: {
  34419. source: "./media/characters/tux-kusanagi/rump.svg"
  34420. }
  34421. },
  34422. beak: {
  34423. height: math.unit(1.54, "feet"),
  34424. name: "Beak",
  34425. image: {
  34426. source: "./media/characters/tux-kusanagi/beak.svg"
  34427. }
  34428. },
  34429. },
  34430. [
  34431. {
  34432. name: "Normal",
  34433. height: math.unit(10 + 3/12, "feet"),
  34434. default: true
  34435. },
  34436. ]
  34437. ))
  34438. characterMakers.push(() => makeCharacter(
  34439. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34440. {
  34441. front: {
  34442. height: math.unit(58, "feet"),
  34443. weight: math.unit(200, "tons"),
  34444. name: "Front",
  34445. image: {
  34446. source: "./media/characters/uzarmazari/front.svg",
  34447. extra: 1575/1455,
  34448. bottom: 152/1727
  34449. }
  34450. },
  34451. back: {
  34452. height: math.unit(58, "feet"),
  34453. weight: math.unit(200, "tons"),
  34454. name: "Back",
  34455. image: {
  34456. source: "./media/characters/uzarmazari/back.svg",
  34457. extra: 1585/1510,
  34458. bottom: 157/1742
  34459. }
  34460. },
  34461. head: {
  34462. height: math.unit(26, "feet"),
  34463. name: "Head",
  34464. image: {
  34465. source: "./media/characters/uzarmazari/head.svg"
  34466. }
  34467. },
  34468. },
  34469. [
  34470. {
  34471. name: "Normal",
  34472. height: math.unit(58, "feet"),
  34473. default: true
  34474. },
  34475. ]
  34476. ))
  34477. characterMakers.push(() => makeCharacter(
  34478. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34479. {
  34480. side: {
  34481. height: math.unit(15, "feet"),
  34482. name: "Side",
  34483. image: {
  34484. source: "./media/characters/akitu/side.svg",
  34485. extra: 1421/1321,
  34486. bottom: 157/1578
  34487. }
  34488. },
  34489. front: {
  34490. height: math.unit(15, "feet"),
  34491. name: "Front",
  34492. image: {
  34493. source: "./media/characters/akitu/front.svg",
  34494. extra: 1435/1326,
  34495. bottom: 232/1667
  34496. }
  34497. },
  34498. },
  34499. [
  34500. {
  34501. name: "Normal",
  34502. height: math.unit(15, "feet"),
  34503. default: true
  34504. },
  34505. ]
  34506. ))
  34507. characterMakers.push(() => makeCharacter(
  34508. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34509. {
  34510. front: {
  34511. height: math.unit(10 + 8/12, "feet"),
  34512. name: "Front",
  34513. image: {
  34514. source: "./media/characters/azalie-croixland/front.svg",
  34515. extra: 1972/1856,
  34516. bottom: 31/2003
  34517. }
  34518. },
  34519. },
  34520. [
  34521. {
  34522. name: "Original Height",
  34523. height: math.unit(5 + 4/12, "feet")
  34524. },
  34525. {
  34526. name: "Normal Height",
  34527. height: math.unit(10 + 8/12, "feet"),
  34528. default: true
  34529. },
  34530. ]
  34531. ))
  34532. characterMakers.push(() => makeCharacter(
  34533. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34534. {
  34535. side: {
  34536. height: math.unit(7 + 1/12, "feet"),
  34537. weight: math.unit(245, "lb"),
  34538. name: "Side",
  34539. image: {
  34540. source: "./media/characters/kavus-kazian/side.svg",
  34541. extra: 349/342,
  34542. bottom: 15/364
  34543. }
  34544. },
  34545. },
  34546. [
  34547. {
  34548. name: "Normal",
  34549. height: math.unit(7 + 1/12, "feet"),
  34550. default: true
  34551. },
  34552. ]
  34553. ))
  34554. characterMakers.push(() => makeCharacter(
  34555. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34556. {
  34557. normal: {
  34558. height: math.unit(5 + 11/12, "feet"),
  34559. name: "Normal",
  34560. image: {
  34561. source: "./media/characters/moonlight-rose/normal.svg",
  34562. extra: 1979/1835,
  34563. bottom: 14/1993
  34564. }
  34565. },
  34566. demon: {
  34567. height: math.unit(5, "km"),
  34568. name: "Demon",
  34569. image: {
  34570. source: "./media/characters/moonlight-rose/demon.svg",
  34571. extra: 986/916,
  34572. bottom: 28/1014
  34573. }
  34574. },
  34575. },
  34576. [
  34577. {
  34578. name: "\"Natural\" height",
  34579. height: math.unit(5 + 11/12, "feet")
  34580. },
  34581. {
  34582. name: "Comfortable Size",
  34583. height: math.unit(40, "meters")
  34584. },
  34585. {
  34586. name: "Common Size",
  34587. height: math.unit(50, "km"),
  34588. default: true
  34589. },
  34590. {
  34591. name: "Demonic",
  34592. height: math.unit(1.24415e+21, "meters")
  34593. },
  34594. ]
  34595. ))
  34596. characterMakers.push(() => makeCharacter(
  34597. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34598. {
  34599. front: {
  34600. height: math.unit(16, "feet"),
  34601. weight: math.unit(610, "kg"),
  34602. name: "Front",
  34603. image: {
  34604. source: "./media/characters/huckle/front.svg",
  34605. extra: 1731/1625,
  34606. bottom: 33/1764
  34607. }
  34608. },
  34609. back: {
  34610. height: math.unit(16, "feet"),
  34611. weight: math.unit(610, "kg"),
  34612. name: "Back",
  34613. image: {
  34614. source: "./media/characters/huckle/back.svg",
  34615. extra: 1738/1651,
  34616. bottom: 37/1775
  34617. }
  34618. },
  34619. laughing: {
  34620. height: math.unit(3.75, "feet"),
  34621. name: "Laughing",
  34622. image: {
  34623. source: "./media/characters/huckle/laughing.svg"
  34624. }
  34625. },
  34626. angry: {
  34627. height: math.unit(4.15, "feet"),
  34628. name: "Angry",
  34629. image: {
  34630. source: "./media/characters/huckle/angry.svg"
  34631. }
  34632. },
  34633. },
  34634. [
  34635. {
  34636. name: "Normal",
  34637. height: math.unit(16, "feet"),
  34638. default: true
  34639. },
  34640. {
  34641. name: "Mini Macro",
  34642. height: math.unit(463, "feet")
  34643. },
  34644. {
  34645. name: "Macro",
  34646. height: math.unit(1680, "meters")
  34647. },
  34648. {
  34649. name: "Mega Macro",
  34650. height: math.unit(175, "km")
  34651. },
  34652. {
  34653. name: "Terra Macro",
  34654. height: math.unit(32, "gigameters")
  34655. },
  34656. {
  34657. name: "Multiverse+",
  34658. height: math.unit(2.56e23, "yottameters")
  34659. },
  34660. ]
  34661. ))
  34662. characterMakers.push(() => makeCharacter(
  34663. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34664. {
  34665. front: {
  34666. height: math.unit(6 + 9/12, "feet"),
  34667. weight: math.unit(280, "lb"),
  34668. name: "Front",
  34669. image: {
  34670. source: "./media/characters/candy/front.svg",
  34671. extra: 234/217,
  34672. bottom: 11/245
  34673. }
  34674. },
  34675. },
  34676. [
  34677. {
  34678. name: "Really Small",
  34679. height: math.unit(0.1, "nm")
  34680. },
  34681. {
  34682. name: "Micro",
  34683. height: math.unit(2, "inches")
  34684. },
  34685. {
  34686. name: "Normal",
  34687. height: math.unit(6 + 9/12, "feet"),
  34688. default: true
  34689. },
  34690. {
  34691. name: "Small Macro",
  34692. height: math.unit(69, "feet")
  34693. },
  34694. {
  34695. name: "Macro",
  34696. height: math.unit(160, "feet")
  34697. },
  34698. {
  34699. name: "Megamacro",
  34700. height: math.unit(22000, "miles")
  34701. },
  34702. {
  34703. name: "Gigamacro",
  34704. height: math.unit(50000, "miles")
  34705. },
  34706. ]
  34707. ))
  34708. characterMakers.push(() => makeCharacter(
  34709. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  34710. {
  34711. front: {
  34712. height: math.unit(4, "feet"),
  34713. weight: math.unit(90, "lb"),
  34714. name: "Front",
  34715. image: {
  34716. source: "./media/characters/joey-mcdonald/front.svg",
  34717. extra: 1059/852,
  34718. bottom: 33/1092
  34719. }
  34720. },
  34721. back: {
  34722. height: math.unit(4, "feet"),
  34723. weight: math.unit(90, "lb"),
  34724. name: "Back",
  34725. image: {
  34726. source: "./media/characters/joey-mcdonald/back.svg",
  34727. extra: 1077/879,
  34728. bottom: 5/1082
  34729. }
  34730. },
  34731. frontKobold: {
  34732. height: math.unit(4, "feet"),
  34733. weight: math.unit(100, "lb"),
  34734. name: "Front-kobold",
  34735. image: {
  34736. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  34737. extra: 1480/1367,
  34738. bottom: 0/1480
  34739. }
  34740. },
  34741. backKobold: {
  34742. height: math.unit(4, "feet"),
  34743. weight: math.unit(100, "lb"),
  34744. name: "Back-kobold",
  34745. image: {
  34746. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  34747. extra: 1449/1361,
  34748. bottom: 0/1449
  34749. }
  34750. },
  34751. },
  34752. [
  34753. {
  34754. name: "Normal",
  34755. height: math.unit(4, "feet"),
  34756. default: true
  34757. },
  34758. ]
  34759. ))
  34760. characterMakers.push(() => makeCharacter(
  34761. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34762. {
  34763. front: {
  34764. height: math.unit(12 + 6/12, "feet"),
  34765. name: "Front",
  34766. image: {
  34767. source: "./media/characters/kass-lockheed/front.svg",
  34768. extra: 354/343,
  34769. bottom: 9/363
  34770. }
  34771. },
  34772. back: {
  34773. height: math.unit(12 + 6/12, "feet"),
  34774. name: "Back",
  34775. image: {
  34776. source: "./media/characters/kass-lockheed/back.svg",
  34777. extra: 364/352,
  34778. bottom: 3/367
  34779. }
  34780. },
  34781. dick: {
  34782. height: math.unit(3.12, "feet"),
  34783. name: "Dick",
  34784. image: {
  34785. source: "./media/characters/kass-lockheed/dick.svg"
  34786. }
  34787. },
  34788. head: {
  34789. height: math.unit(2.6, "feet"),
  34790. name: "Head",
  34791. image: {
  34792. source: "./media/characters/kass-lockheed/head.svg"
  34793. }
  34794. },
  34795. bleh: {
  34796. height: math.unit(2.85, "feet"),
  34797. name: "Bleh",
  34798. image: {
  34799. source: "./media/characters/kass-lockheed/bleh.svg"
  34800. }
  34801. },
  34802. smug: {
  34803. height: math.unit(2.85, "feet"),
  34804. name: "Smug",
  34805. image: {
  34806. source: "./media/characters/kass-lockheed/smug.svg"
  34807. }
  34808. },
  34809. },
  34810. [
  34811. {
  34812. name: "Normal",
  34813. height: math.unit(12 + 6/12, "feet"),
  34814. default: true
  34815. },
  34816. ]
  34817. ))
  34818. characterMakers.push(() => makeCharacter(
  34819. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34820. {
  34821. front: {
  34822. height: math.unit(6 + 2/12, "feet"),
  34823. name: "Front",
  34824. image: {
  34825. source: "./media/characters/taylor/front.svg",
  34826. extra: 639/495,
  34827. bottom: 12/651
  34828. }
  34829. },
  34830. },
  34831. [
  34832. {
  34833. name: "Normal",
  34834. height: math.unit(6 + 2/12, "feet"),
  34835. default: true
  34836. },
  34837. {
  34838. name: "Big",
  34839. height: math.unit(15, "feet")
  34840. },
  34841. {
  34842. name: "Lorg",
  34843. height: math.unit(80, "feet")
  34844. },
  34845. {
  34846. name: "Too Lorg",
  34847. height: math.unit(120, "feet")
  34848. },
  34849. ]
  34850. ))
  34851. characterMakers.push(() => makeCharacter(
  34852. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34853. {
  34854. front: {
  34855. height: math.unit(15, "feet"),
  34856. name: "Front",
  34857. image: {
  34858. source: "./media/characters/kaizer/front.svg",
  34859. extra: 1612/1436,
  34860. bottom: 43/1655
  34861. }
  34862. },
  34863. },
  34864. [
  34865. {
  34866. name: "Normal",
  34867. height: math.unit(15, "feet"),
  34868. default: true
  34869. },
  34870. ]
  34871. ))
  34872. characterMakers.push(() => makeCharacter(
  34873. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34874. {
  34875. front: {
  34876. height: math.unit(2, "feet"),
  34877. weight: math.unit(30, "lb"),
  34878. name: "Front",
  34879. image: {
  34880. source: "./media/characters/sandy/front.svg",
  34881. extra: 1439/1307,
  34882. bottom: 194/1633
  34883. }
  34884. },
  34885. },
  34886. [
  34887. {
  34888. name: "Normal",
  34889. height: math.unit(2, "feet"),
  34890. default: true
  34891. },
  34892. ]
  34893. ))
  34894. characterMakers.push(() => makeCharacter(
  34895. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34896. {
  34897. front: {
  34898. height: math.unit(3, "feet"),
  34899. name: "Front",
  34900. image: {
  34901. source: "./media/characters/mellvi/front.svg",
  34902. extra: 1831/1630,
  34903. bottom: 58/1889
  34904. }
  34905. },
  34906. },
  34907. [
  34908. {
  34909. name: "Normal",
  34910. height: math.unit(3, "feet"),
  34911. default: true
  34912. },
  34913. ]
  34914. ))
  34915. characterMakers.push(() => makeCharacter(
  34916. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34917. {
  34918. front: {
  34919. height: math.unit(5 + 11/12, "feet"),
  34920. weight: math.unit(200, "lb"),
  34921. name: "Front",
  34922. image: {
  34923. source: "./media/characters/shirou/front.svg",
  34924. extra: 2491/2383,
  34925. bottom: 189/2680
  34926. }
  34927. },
  34928. back: {
  34929. height: math.unit(5 + 11/12, "feet"),
  34930. weight: math.unit(200, "lb"),
  34931. name: "Back",
  34932. image: {
  34933. source: "./media/characters/shirou/back.svg",
  34934. extra: 2554/2450,
  34935. bottom: 76/2630
  34936. }
  34937. },
  34938. },
  34939. [
  34940. {
  34941. name: "Normal",
  34942. height: math.unit(5 + 11/12, "feet"),
  34943. default: true
  34944. },
  34945. ]
  34946. ))
  34947. characterMakers.push(() => makeCharacter(
  34948. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34949. {
  34950. front: {
  34951. height: math.unit(6 + 3/12, "feet"),
  34952. weight: math.unit(177, "lb"),
  34953. name: "Front",
  34954. image: {
  34955. source: "./media/characters/noryu/front.svg",
  34956. extra: 973/885,
  34957. bottom: 10/983
  34958. }
  34959. },
  34960. },
  34961. [
  34962. {
  34963. name: "Normal",
  34964. height: math.unit(6 + 3/12, "feet"),
  34965. default: true
  34966. },
  34967. ]
  34968. ))
  34969. characterMakers.push(() => makeCharacter(
  34970. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34971. {
  34972. front: {
  34973. height: math.unit(5 + 6/12, "feet"),
  34974. weight: math.unit(170, "lb"),
  34975. name: "Front",
  34976. image: {
  34977. source: "./media/characters/mevolas-rubenido/front.svg",
  34978. extra: 2109/1901,
  34979. bottom: 96/2205
  34980. }
  34981. },
  34982. },
  34983. [
  34984. {
  34985. name: "Normal",
  34986. height: math.unit(5 + 6/12, "feet"),
  34987. default: true
  34988. },
  34989. ]
  34990. ))
  34991. characterMakers.push(() => makeCharacter(
  34992. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34993. {
  34994. front: {
  34995. height: math.unit(100, "feet"),
  34996. name: "Front",
  34997. image: {
  34998. source: "./media/characters/dee/front.svg",
  34999. extra: 2153/2036,
  35000. bottom: 59/2212
  35001. }
  35002. },
  35003. back: {
  35004. height: math.unit(100, "feet"),
  35005. name: "Back",
  35006. image: {
  35007. source: "./media/characters/dee/back.svg",
  35008. extra: 2183/2058,
  35009. bottom: 75/2258
  35010. }
  35011. },
  35012. foot: {
  35013. height: math.unit(19.43, "feet"),
  35014. name: "Foot",
  35015. image: {
  35016. source: "./media/characters/dee/foot.svg"
  35017. }
  35018. },
  35019. hoof: {
  35020. height: math.unit(20.6, "feet"),
  35021. name: "Hoof",
  35022. image: {
  35023. source: "./media/characters/dee/hoof.svg"
  35024. }
  35025. },
  35026. },
  35027. [
  35028. {
  35029. name: "Macro",
  35030. height: math.unit(100, "feet"),
  35031. default: true
  35032. },
  35033. ]
  35034. ))
  35035. characterMakers.push(() => makeCharacter(
  35036. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  35037. {
  35038. front: {
  35039. height: math.unit(5 + 6/12, "feet"),
  35040. name: "Front",
  35041. image: {
  35042. source: "./media/characters/teh/front.svg",
  35043. extra: 1002/847,
  35044. bottom: 62/1064
  35045. }
  35046. },
  35047. },
  35048. [
  35049. {
  35050. name: "Normal",
  35051. height: math.unit(5 + 6/12, "feet"),
  35052. default: true
  35053. },
  35054. ]
  35055. ))
  35056. characterMakers.push(() => makeCharacter(
  35057. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  35058. {
  35059. side: {
  35060. height: math.unit(6 + 1/12, "feet"),
  35061. weight: math.unit(204, "lb"),
  35062. name: "Side",
  35063. image: {
  35064. source: "./media/characters/quicksilver-ayukoti/side.svg",
  35065. extra: 974/775,
  35066. bottom: 169/1143
  35067. }
  35068. },
  35069. sitting: {
  35070. height: math.unit(6 + 2/12, "feet"),
  35071. weight: math.unit(204, "lb"),
  35072. name: "Sitting",
  35073. image: {
  35074. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  35075. extra: 1175/964,
  35076. bottom: 378/1553
  35077. }
  35078. },
  35079. },
  35080. [
  35081. {
  35082. name: "Normal",
  35083. height: math.unit(6 + 1/12, "feet"),
  35084. default: true
  35085. },
  35086. ]
  35087. ))
  35088. characterMakers.push(() => makeCharacter(
  35089. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  35090. {
  35091. front: {
  35092. height: math.unit(6, "inches"),
  35093. name: "Front",
  35094. image: {
  35095. source: "./media/characters/tululi/front.svg",
  35096. extra: 1997/1876,
  35097. bottom: 20/2017
  35098. }
  35099. },
  35100. },
  35101. [
  35102. {
  35103. name: "Normal",
  35104. height: math.unit(6, "inches"),
  35105. default: true
  35106. },
  35107. ]
  35108. ))
  35109. characterMakers.push(() => makeCharacter(
  35110. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  35111. {
  35112. front: {
  35113. height: math.unit(4 + 1/12, "feet"),
  35114. name: "Front",
  35115. image: {
  35116. source: "./media/characters/star/front.svg",
  35117. extra: 1493/1189,
  35118. bottom: 48/1541
  35119. }
  35120. },
  35121. },
  35122. [
  35123. {
  35124. name: "Normal",
  35125. height: math.unit(4 + 1/12, "feet"),
  35126. default: true
  35127. },
  35128. ]
  35129. ))
  35130. characterMakers.push(() => makeCharacter(
  35131. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  35132. {
  35133. front: {
  35134. height: math.unit(6 + 3/12, "feet"),
  35135. name: "Front",
  35136. image: {
  35137. source: "./media/characters/comet/front.svg",
  35138. extra: 1681/1462,
  35139. bottom: 26/1707
  35140. }
  35141. },
  35142. },
  35143. [
  35144. {
  35145. name: "Normal",
  35146. height: math.unit(6 + 3/12, "feet"),
  35147. default: true
  35148. },
  35149. ]
  35150. ))
  35151. characterMakers.push(() => makeCharacter(
  35152. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35153. {
  35154. front: {
  35155. height: math.unit(950, "feet"),
  35156. name: "Front",
  35157. image: {
  35158. source: "./media/characters/vortex/front.svg",
  35159. extra: 1497/1434,
  35160. bottom: 56/1553
  35161. }
  35162. },
  35163. maw: {
  35164. height: math.unit(285, "feet"),
  35165. name: "Maw",
  35166. image: {
  35167. source: "./media/characters/vortex/maw.svg"
  35168. }
  35169. },
  35170. },
  35171. [
  35172. {
  35173. name: "Macro",
  35174. height: math.unit(950, "feet"),
  35175. default: true
  35176. },
  35177. ]
  35178. ))
  35179. characterMakers.push(() => makeCharacter(
  35180. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  35181. {
  35182. front: {
  35183. height: math.unit(600, "feet"),
  35184. weight: math.unit(0.02, "grams"),
  35185. name: "Front",
  35186. image: {
  35187. source: "./media/characters/doodle/front.svg",
  35188. extra: 1578/1413,
  35189. bottom: 37/1615
  35190. }
  35191. },
  35192. },
  35193. [
  35194. {
  35195. name: "Macro",
  35196. height: math.unit(600, "feet"),
  35197. default: true
  35198. },
  35199. ]
  35200. ))
  35201. characterMakers.push(() => makeCharacter(
  35202. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35203. {
  35204. front: {
  35205. height: math.unit(6 + 6/12, "feet"),
  35206. name: "Front",
  35207. image: {
  35208. source: "./media/characters/jai/front.svg",
  35209. extra: 1645/1534,
  35210. bottom: 115/1760
  35211. }
  35212. },
  35213. },
  35214. [
  35215. {
  35216. name: "Normal",
  35217. height: math.unit(6 + 6/12, "feet"),
  35218. default: true
  35219. },
  35220. ]
  35221. ))
  35222. characterMakers.push(() => makeCharacter(
  35223. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35224. {
  35225. front: {
  35226. height: math.unit(6 + 8/12, "feet"),
  35227. name: "Front",
  35228. image: {
  35229. source: "./media/characters/pixel/front.svg",
  35230. extra: 1900/1735,
  35231. bottom: 63/1963
  35232. }
  35233. },
  35234. },
  35235. [
  35236. {
  35237. name: "Normal",
  35238. height: math.unit(6 + 8/12, "feet"),
  35239. default: true
  35240. },
  35241. ]
  35242. ))
  35243. characterMakers.push(() => makeCharacter(
  35244. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35245. {
  35246. front: {
  35247. height: math.unit(4 + 11/12, "feet"),
  35248. weight: math.unit(111, "lb"),
  35249. name: "Front",
  35250. image: {
  35251. source: "./media/characters/rhett/front.svg",
  35252. extra: 1682/1586,
  35253. bottom: 92/1774
  35254. }
  35255. },
  35256. },
  35257. [
  35258. {
  35259. name: "Mini",
  35260. height: math.unit(1 + 1/12, "feet")
  35261. },
  35262. {
  35263. name: "Normal",
  35264. height: math.unit(4 + 11/12, "feet"),
  35265. default: true
  35266. },
  35267. ]
  35268. ))
  35269. characterMakers.push(() => makeCharacter(
  35270. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35271. {
  35272. front: {
  35273. height: math.unit(3 + 3/12, "feet"),
  35274. name: "Front",
  35275. image: {
  35276. source: "./media/characters/penny/front.svg",
  35277. extra: 1406/1311,
  35278. bottom: 26/1432
  35279. }
  35280. },
  35281. },
  35282. [
  35283. {
  35284. name: "Normal",
  35285. height: math.unit(3 + 3/12, "feet"),
  35286. default: true
  35287. },
  35288. ]
  35289. ))
  35290. characterMakers.push(() => makeCharacter(
  35291. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35292. {
  35293. front: {
  35294. height: math.unit(4 + 11/12, "feet"),
  35295. name: "Front",
  35296. image: {
  35297. source: "./media/characters/monty/front.svg",
  35298. extra: 1479/1209,
  35299. bottom: 0/1479
  35300. }
  35301. },
  35302. },
  35303. [
  35304. {
  35305. name: "Normal",
  35306. height: math.unit(4 + 11/12, "feet"),
  35307. default: true
  35308. },
  35309. ]
  35310. ))
  35311. characterMakers.push(() => makeCharacter(
  35312. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35313. {
  35314. front: {
  35315. height: math.unit(8 + 4/12, "feet"),
  35316. name: "Front",
  35317. image: {
  35318. source: "./media/characters/sterling/front.svg",
  35319. extra: 1420/1236,
  35320. bottom: 27/1447
  35321. }
  35322. },
  35323. },
  35324. [
  35325. {
  35326. name: "Normal",
  35327. height: math.unit(8 + 4/12, "feet"),
  35328. default: true
  35329. },
  35330. ]
  35331. ))
  35332. characterMakers.push(() => makeCharacter(
  35333. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35334. {
  35335. front: {
  35336. height: math.unit(15, "feet"),
  35337. name: "Front",
  35338. image: {
  35339. source: "./media/characters/marble/front.svg",
  35340. extra: 973/937,
  35341. bottom: 32/1005
  35342. }
  35343. },
  35344. },
  35345. [
  35346. {
  35347. name: "Normal",
  35348. height: math.unit(15, "feet"),
  35349. default: true
  35350. },
  35351. ]
  35352. ))
  35353. characterMakers.push(() => makeCharacter(
  35354. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35355. {
  35356. front: {
  35357. height: math.unit(3, "inches"),
  35358. name: "Front",
  35359. image: {
  35360. source: "./media/characters/powder/front.svg",
  35361. extra: 1504/1334,
  35362. bottom: 518/2022
  35363. }
  35364. },
  35365. },
  35366. [
  35367. {
  35368. name: "Normal",
  35369. height: math.unit(3, "inches"),
  35370. default: true
  35371. },
  35372. ]
  35373. ))
  35374. characterMakers.push(() => makeCharacter(
  35375. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35376. {
  35377. front: {
  35378. height: math.unit(4 + 5/12, "feet"),
  35379. name: "Front",
  35380. image: {
  35381. source: "./media/characters/joey-raccoon/front.svg",
  35382. extra: 1273/1197,
  35383. bottom: 0/1273
  35384. }
  35385. },
  35386. },
  35387. [
  35388. {
  35389. name: "Normal",
  35390. height: math.unit(4 + 5/12, "feet"),
  35391. default: true
  35392. },
  35393. ]
  35394. ))
  35395. characterMakers.push(() => makeCharacter(
  35396. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35397. {
  35398. front: {
  35399. height: math.unit(8 + 4/12, "feet"),
  35400. name: "Front",
  35401. image: {
  35402. source: "./media/characters/vick/front.svg",
  35403. extra: 2187/2118,
  35404. bottom: 47/2234
  35405. }
  35406. },
  35407. },
  35408. [
  35409. {
  35410. name: "Normal",
  35411. height: math.unit(8 + 4/12, "feet"),
  35412. default: true
  35413. },
  35414. ]
  35415. ))
  35416. characterMakers.push(() => makeCharacter(
  35417. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35418. {
  35419. front: {
  35420. height: math.unit(5 + 5/12, "feet"),
  35421. name: "Front",
  35422. image: {
  35423. source: "./media/characters/mitsy/front.svg",
  35424. extra: 1842/1695,
  35425. bottom: 0/1842
  35426. }
  35427. },
  35428. },
  35429. [
  35430. {
  35431. name: "Normal",
  35432. height: math.unit(5 + 5/12, "feet"),
  35433. default: true
  35434. },
  35435. ]
  35436. ))
  35437. characterMakers.push(() => makeCharacter(
  35438. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35439. {
  35440. front: {
  35441. height: math.unit(6 + 3/12, "feet"),
  35442. name: "Front",
  35443. image: {
  35444. source: "./media/characters/silvy/front.svg",
  35445. extra: 1995/1836,
  35446. bottom: 225/2220
  35447. }
  35448. },
  35449. },
  35450. [
  35451. {
  35452. name: "Normal",
  35453. height: math.unit(6 + 3/12, "feet"),
  35454. default: true
  35455. },
  35456. ]
  35457. ))
  35458. characterMakers.push(() => makeCharacter(
  35459. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35460. {
  35461. front: {
  35462. height: math.unit(3 + 8/12, "feet"),
  35463. name: "Front",
  35464. image: {
  35465. source: "./media/characters/rodney/front.svg",
  35466. extra: 1956/1747,
  35467. bottom: 31/1987
  35468. }
  35469. },
  35470. frontDressed: {
  35471. height: math.unit(2.9, "feet"),
  35472. name: "Front (Dressed)",
  35473. image: {
  35474. source: "./media/characters/rodney/front-dressed.svg",
  35475. extra: 1382/1241,
  35476. bottom: 385/1767
  35477. }
  35478. },
  35479. },
  35480. [
  35481. {
  35482. name: "Normal",
  35483. height: math.unit(3 + 8/12, "feet"),
  35484. default: true
  35485. },
  35486. ]
  35487. ))
  35488. characterMakers.push(() => makeCharacter(
  35489. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35490. {
  35491. front: {
  35492. height: math.unit(5 + 9/12, "feet"),
  35493. weight: math.unit(194, "lbs"),
  35494. name: "Front",
  35495. image: {
  35496. source: "./media/characters/zakail-sudekai/front.svg",
  35497. extra: 2696/2533,
  35498. bottom: 248/2944
  35499. }
  35500. },
  35501. maw: {
  35502. height: math.unit(1.35, "feet"),
  35503. name: "Maw",
  35504. image: {
  35505. source: "./media/characters/zakail-sudekai/maw.svg"
  35506. }
  35507. },
  35508. },
  35509. [
  35510. {
  35511. name: "Normal",
  35512. height: math.unit(5 + 9/12, "feet"),
  35513. default: true
  35514. },
  35515. ]
  35516. ))
  35517. characterMakers.push(() => makeCharacter(
  35518. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35519. {
  35520. front: {
  35521. height: math.unit(8 + 4/12, "feet"),
  35522. weight: math.unit(1200, "lb"),
  35523. name: "Front",
  35524. image: {
  35525. source: "./media/characters/eleanor/front.svg",
  35526. extra: 1226/1192,
  35527. bottom: 52/1278
  35528. }
  35529. },
  35530. back: {
  35531. height: math.unit(8 + 4/12, "feet"),
  35532. weight: math.unit(1200, "lb"),
  35533. name: "Back",
  35534. image: {
  35535. source: "./media/characters/eleanor/back.svg",
  35536. extra: 1242/1184,
  35537. bottom: 60/1302
  35538. }
  35539. },
  35540. head: {
  35541. height: math.unit(2.62, "feet"),
  35542. name: "Head",
  35543. image: {
  35544. source: "./media/characters/eleanor/head.svg"
  35545. }
  35546. },
  35547. },
  35548. [
  35549. {
  35550. name: "Normal",
  35551. height: math.unit(8 + 4/12, "feet"),
  35552. default: true
  35553. },
  35554. ]
  35555. ))
  35556. characterMakers.push(() => makeCharacter(
  35557. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35558. {
  35559. front: {
  35560. height: math.unit(8 + 4/12, "feet"),
  35561. weight: math.unit(750, "lb"),
  35562. name: "Front",
  35563. image: {
  35564. source: "./media/characters/tanya/front.svg",
  35565. extra: 1749/1615,
  35566. bottom: 33/1782
  35567. }
  35568. },
  35569. },
  35570. [
  35571. {
  35572. name: "Normal",
  35573. height: math.unit(8 + 4/12, "feet"),
  35574. default: true
  35575. },
  35576. ]
  35577. ))
  35578. characterMakers.push(() => makeCharacter(
  35579. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35580. {
  35581. front: {
  35582. height: math.unit(5, "feet"),
  35583. weight: math.unit(225, "lb"),
  35584. name: "Front",
  35585. image: {
  35586. source: "./media/characters/cindy/front.svg",
  35587. extra: 1320/1250,
  35588. bottom: 42/1362
  35589. }
  35590. },
  35591. frontDressed: {
  35592. height: math.unit(5, "feet"),
  35593. weight: math.unit(225, "lb"),
  35594. name: "Front (Dressed)",
  35595. image: {
  35596. source: "./media/characters/cindy/front-dressed.svg",
  35597. extra: 1320/1250,
  35598. bottom: 42/1362
  35599. }
  35600. },
  35601. back: {
  35602. height: math.unit(5, "feet"),
  35603. weight: math.unit(225, "lb"),
  35604. name: "Back",
  35605. image: {
  35606. source: "./media/characters/cindy/back.svg",
  35607. extra: 1384/1346,
  35608. bottom: 14/1398
  35609. }
  35610. },
  35611. },
  35612. [
  35613. {
  35614. name: "Normal",
  35615. height: math.unit(5, "feet"),
  35616. default: true
  35617. },
  35618. ]
  35619. ))
  35620. characterMakers.push(() => makeCharacter(
  35621. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  35622. {
  35623. front: {
  35624. height: math.unit(6 + 9/12, "feet"),
  35625. weight: math.unit(440, "lb"),
  35626. name: "Front",
  35627. image: {
  35628. source: "./media/characters/wilbur-owen/front.svg",
  35629. extra: 1575/1448,
  35630. bottom: 72/1647
  35631. }
  35632. },
  35633. back: {
  35634. height: math.unit(6 + 9/12, "feet"),
  35635. weight: math.unit(440, "lb"),
  35636. name: "Back",
  35637. image: {
  35638. source: "./media/characters/wilbur-owen/back.svg",
  35639. extra: 1578/1445,
  35640. bottom: 36/1614
  35641. }
  35642. },
  35643. },
  35644. [
  35645. {
  35646. name: "Normal",
  35647. height: math.unit(6 + 9/12, "feet"),
  35648. default: true
  35649. },
  35650. ]
  35651. ))
  35652. characterMakers.push(() => makeCharacter(
  35653. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  35654. {
  35655. front: {
  35656. height: math.unit(6 + 5/12, "feet"),
  35657. weight: math.unit(650, "lb"),
  35658. name: "Front",
  35659. image: {
  35660. source: "./media/characters/keegan/front.svg",
  35661. extra: 2387/2198,
  35662. bottom: 33/2420
  35663. }
  35664. },
  35665. side: {
  35666. height: math.unit(6 + 5/12, "feet"),
  35667. weight: math.unit(650, "lb"),
  35668. name: "Side",
  35669. image: {
  35670. source: "./media/characters/keegan/side.svg",
  35671. extra: 2390/2202,
  35672. bottom: 47/2437
  35673. }
  35674. },
  35675. back: {
  35676. height: math.unit(6 + 5/12, "feet"),
  35677. weight: math.unit(650, "lb"),
  35678. name: "Back",
  35679. image: {
  35680. source: "./media/characters/keegan/back.svg",
  35681. extra: 2418/2268,
  35682. bottom: 15/2433
  35683. }
  35684. },
  35685. frontSfw: {
  35686. height: math.unit(6 + 5/12, "feet"),
  35687. weight: math.unit(650, "lb"),
  35688. name: "Front (SFW)",
  35689. image: {
  35690. source: "./media/characters/keegan/front-sfw.svg",
  35691. extra: 2387/2198,
  35692. bottom: 33/2420
  35693. }
  35694. },
  35695. beans: {
  35696. height: math.unit(1.85, "feet"),
  35697. name: "Beans",
  35698. image: {
  35699. source: "./media/characters/keegan/beans.svg"
  35700. }
  35701. },
  35702. },
  35703. [
  35704. {
  35705. name: "Normal",
  35706. height: math.unit(6 + 5/12, "feet"),
  35707. default: true
  35708. },
  35709. ]
  35710. ))
  35711. characterMakers.push(() => makeCharacter(
  35712. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  35713. {
  35714. front: {
  35715. height: math.unit(9, "feet"),
  35716. name: "Front",
  35717. image: {
  35718. source: "./media/characters/colton/front.svg",
  35719. extra: 1589/1326,
  35720. bottom: 139/1728
  35721. }
  35722. },
  35723. },
  35724. [
  35725. {
  35726. name: "Normal",
  35727. height: math.unit(9, "feet"),
  35728. default: true
  35729. },
  35730. ]
  35731. ))
  35732. characterMakers.push(() => makeCharacter(
  35733. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  35734. {
  35735. front: {
  35736. height: math.unit(2 + 9/12, "feet"),
  35737. name: "Front",
  35738. image: {
  35739. source: "./media/characters/bora/front.svg",
  35740. extra: 1265/1250,
  35741. bottom: 24/1289
  35742. }
  35743. },
  35744. },
  35745. [
  35746. {
  35747. name: "Normal",
  35748. height: math.unit(2 + 9/12, "feet"),
  35749. default: true
  35750. },
  35751. ]
  35752. ))
  35753. characterMakers.push(() => makeCharacter(
  35754. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  35755. {
  35756. front: {
  35757. height: math.unit(8, "feet"),
  35758. name: "Front",
  35759. image: {
  35760. source: "./media/characters/myu-myu/front.svg",
  35761. extra: 1949/1857,
  35762. bottom: 90/2039
  35763. }
  35764. },
  35765. },
  35766. [
  35767. {
  35768. name: "Normal",
  35769. height: math.unit(8, "feet"),
  35770. default: true
  35771. },
  35772. {
  35773. name: "Big",
  35774. height: math.unit(15, "feet")
  35775. },
  35776. {
  35777. name: "BIG",
  35778. height: math.unit(25, "feet")
  35779. },
  35780. ]
  35781. ))
  35782. characterMakers.push(() => makeCharacter(
  35783. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  35784. {
  35785. side: {
  35786. height: math.unit(7 + 5/12, "feet"),
  35787. weight: math.unit(2800, "lb"),
  35788. name: "Side",
  35789. image: {
  35790. source: "./media/characters/haloren/side.svg",
  35791. extra: 1793/409,
  35792. bottom: 59/1852
  35793. }
  35794. },
  35795. frontPaw: {
  35796. height: math.unit(2.36, "feet"),
  35797. name: "Front paw",
  35798. image: {
  35799. source: "./media/characters/haloren/front-paw.svg"
  35800. }
  35801. },
  35802. hindPaw: {
  35803. height: math.unit(3.18, "feet"),
  35804. name: "Hind paw",
  35805. image: {
  35806. source: "./media/characters/haloren/hind-paw.svg"
  35807. }
  35808. },
  35809. maw: {
  35810. height: math.unit(5.05, "feet"),
  35811. name: "Maw",
  35812. image: {
  35813. source: "./media/characters/haloren/maw.svg"
  35814. }
  35815. },
  35816. dick: {
  35817. height: math.unit(2.90, "feet"),
  35818. name: "Dick",
  35819. image: {
  35820. source: "./media/characters/haloren/dick.svg"
  35821. }
  35822. },
  35823. },
  35824. [
  35825. {
  35826. name: "Normal",
  35827. height: math.unit(7 + 5/12, "feet"),
  35828. default: true
  35829. },
  35830. {
  35831. name: "Enhanced",
  35832. height: math.unit(14 + 3/12, "feet")
  35833. },
  35834. ]
  35835. ))
  35836. characterMakers.push(() => makeCharacter(
  35837. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  35838. {
  35839. front: {
  35840. height: math.unit(171, "cm"),
  35841. name: "Front",
  35842. image: {
  35843. source: "./media/characters/kimmy/front.svg",
  35844. extra: 1491/1435,
  35845. bottom: 53/1544
  35846. }
  35847. },
  35848. },
  35849. [
  35850. {
  35851. name: "Small",
  35852. height: math.unit(9, "cm")
  35853. },
  35854. {
  35855. name: "Normal",
  35856. height: math.unit(171, "cm"),
  35857. default: true
  35858. },
  35859. ]
  35860. ))
  35861. characterMakers.push(() => makeCharacter(
  35862. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  35863. {
  35864. front: {
  35865. height: math.unit(8, "feet"),
  35866. weight: math.unit(300, "lb"),
  35867. name: "Front",
  35868. image: {
  35869. source: "./media/characters/galeboomer/front.svg",
  35870. extra: 4651/4415,
  35871. bottom: 162/4813
  35872. }
  35873. },
  35874. back: {
  35875. height: math.unit(8, "feet"),
  35876. weight: math.unit(300, "lb"),
  35877. name: "Back",
  35878. image: {
  35879. source: "./media/characters/galeboomer/back.svg",
  35880. extra: 4544/4314,
  35881. bottom: 16/4560
  35882. }
  35883. },
  35884. frontAlt: {
  35885. height: math.unit(8, "feet"),
  35886. weight: math.unit(300, "lb"),
  35887. name: "Front (Alt)",
  35888. image: {
  35889. source: "./media/characters/galeboomer/front-alt.svg",
  35890. extra: 4458/4228,
  35891. bottom: 68/4526
  35892. }
  35893. },
  35894. maw: {
  35895. height: math.unit(1.2, "feet"),
  35896. name: "Maw",
  35897. image: {
  35898. source: "./media/characters/galeboomer/maw.svg"
  35899. }
  35900. },
  35901. },
  35902. [
  35903. {
  35904. name: "Normal",
  35905. height: math.unit(8, "feet"),
  35906. default: true
  35907. },
  35908. ]
  35909. ))
  35910. characterMakers.push(() => makeCharacter(
  35911. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  35912. {
  35913. front: {
  35914. height: math.unit(5 + 9/12, "feet"),
  35915. weight: math.unit(120, "lb"),
  35916. name: "Front",
  35917. image: {
  35918. source: "./media/characters/chyr/front.svg",
  35919. extra: 1323/1254,
  35920. bottom: 63/1386
  35921. }
  35922. },
  35923. back: {
  35924. height: math.unit(5 + 9/12, "feet"),
  35925. weight: math.unit(120, "lb"),
  35926. name: "Back",
  35927. image: {
  35928. source: "./media/characters/chyr/back.svg",
  35929. extra: 1323/1252,
  35930. bottom: 48/1371
  35931. }
  35932. },
  35933. },
  35934. [
  35935. {
  35936. name: "Normal",
  35937. height: math.unit(5 + 9/12, "feet"),
  35938. default: true
  35939. },
  35940. ]
  35941. ))
  35942. characterMakers.push(() => makeCharacter(
  35943. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  35944. {
  35945. front: {
  35946. height: math.unit(7, "feet"),
  35947. weight: math.unit(310, "lb"),
  35948. name: "Front",
  35949. image: {
  35950. source: "./media/characters/solarus/front.svg",
  35951. extra: 2415/2021,
  35952. bottom: 103/2518
  35953. }
  35954. },
  35955. back: {
  35956. height: math.unit(7, "feet"),
  35957. weight: math.unit(310, "lb"),
  35958. name: "Back",
  35959. image: {
  35960. source: "./media/characters/solarus/back.svg",
  35961. extra: 2463/2089,
  35962. bottom: 79/2542
  35963. }
  35964. },
  35965. },
  35966. [
  35967. {
  35968. name: "Normal",
  35969. height: math.unit(7, "feet"),
  35970. default: true
  35971. },
  35972. ]
  35973. ))
  35974. characterMakers.push(() => makeCharacter(
  35975. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  35976. {
  35977. front: {
  35978. height: math.unit(16, "feet"),
  35979. name: "Front",
  35980. image: {
  35981. source: "./media/characters/mutsuju-koizaemon/front.svg",
  35982. extra: 1844/1780,
  35983. bottom: 58/1902
  35984. }
  35985. },
  35986. winterCoat: {
  35987. height: math.unit(16, "feet"),
  35988. name: "Winter Coat",
  35989. image: {
  35990. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  35991. extra: 1807/1775,
  35992. bottom: 69/1876
  35993. }
  35994. },
  35995. },
  35996. [
  35997. {
  35998. name: "Normal",
  35999. height: math.unit(16, "feet"),
  36000. default: true
  36001. },
  36002. {
  36003. name: "Chicago Size",
  36004. height: math.unit(560, "feet")
  36005. },
  36006. ]
  36007. ))
  36008. characterMakers.push(() => makeCharacter(
  36009. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  36010. {
  36011. front: {
  36012. height: math.unit(11 + 6/12, "feet"),
  36013. weight: math.unit(1366, "lb"),
  36014. name: "Front",
  36015. image: {
  36016. source: "./media/characters/lexor/front.svg",
  36017. extra: 1560/1481,
  36018. bottom: 211/1771
  36019. }
  36020. },
  36021. back: {
  36022. height: math.unit(11 + 6/12, "feet"),
  36023. weight: math.unit(1366, "lb"),
  36024. name: "Back",
  36025. image: {
  36026. source: "./media/characters/lexor/back.svg",
  36027. extra: 1614/1533,
  36028. bottom: 76/1690
  36029. }
  36030. },
  36031. maw: {
  36032. height: math.unit(3, "feet"),
  36033. name: "Maw",
  36034. image: {
  36035. source: "./media/characters/lexor/maw.svg"
  36036. }
  36037. },
  36038. dick: {
  36039. height: math.unit(2.59, "feet"),
  36040. name: "Dick",
  36041. image: {
  36042. source: "./media/characters/lexor/dick.svg"
  36043. }
  36044. },
  36045. },
  36046. [
  36047. {
  36048. name: "Normal",
  36049. height: math.unit(11 + 6/12, "feet"),
  36050. default: true
  36051. },
  36052. ]
  36053. ))
  36054. characterMakers.push(() => makeCharacter(
  36055. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  36056. {
  36057. front: {
  36058. height: math.unit(5 + 8/12, "feet"),
  36059. name: "Front",
  36060. image: {
  36061. source: "./media/characters/magnum/front.svg",
  36062. extra: 942/855,
  36063. bottom: 26/968
  36064. }
  36065. },
  36066. },
  36067. [
  36068. {
  36069. name: "Normal",
  36070. height: math.unit(5 + 8/12, "feet"),
  36071. default: true
  36072. },
  36073. ]
  36074. ))
  36075. characterMakers.push(() => makeCharacter(
  36076. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  36077. {
  36078. front: {
  36079. height: math.unit(18 + 4/12, "feet"),
  36080. weight: math.unit(1500, "kg"),
  36081. name: "Front",
  36082. image: {
  36083. source: "./media/characters/solas-sharpsman/front.svg",
  36084. extra: 1698/1589,
  36085. bottom: 0/1698
  36086. }
  36087. },
  36088. },
  36089. [
  36090. {
  36091. name: "Normal",
  36092. height: math.unit(18 + 4/12, "feet"),
  36093. default: true
  36094. },
  36095. ]
  36096. ))
  36097. characterMakers.push(() => makeCharacter(
  36098. { name: "October", species: ["tiger"], tags: ["anthro"] },
  36099. {
  36100. front: {
  36101. height: math.unit(5 + 5/12, "feet"),
  36102. weight: math.unit(180, "lb"),
  36103. name: "Front",
  36104. image: {
  36105. source: "./media/characters/october/front.svg",
  36106. extra: 1800/1650,
  36107. bottom: 0/1800
  36108. }
  36109. },
  36110. frontNsfw: {
  36111. height: math.unit(5 + 5/12, "feet"),
  36112. weight: math.unit(180, "lb"),
  36113. name: "Front (NSFW)",
  36114. image: {
  36115. source: "./media/characters/october/front-nsfw.svg",
  36116. extra: 1392/1307,
  36117. bottom: 42/1434
  36118. }
  36119. },
  36120. },
  36121. [
  36122. {
  36123. name: "Normal",
  36124. height: math.unit(5 + 5/12, "feet"),
  36125. default: true
  36126. },
  36127. ]
  36128. ))
  36129. characterMakers.push(() => makeCharacter(
  36130. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  36131. {
  36132. front: {
  36133. height: math.unit(8 + 6/12, "feet"),
  36134. name: "Front",
  36135. image: {
  36136. source: "./media/characters/essynkardi/front.svg",
  36137. extra: 1914/1846,
  36138. bottom: 22/1936
  36139. }
  36140. },
  36141. },
  36142. [
  36143. {
  36144. name: "Normal",
  36145. height: math.unit(8 + 6/12, "feet"),
  36146. default: true
  36147. },
  36148. ]
  36149. ))
  36150. characterMakers.push(() => makeCharacter(
  36151. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36152. {
  36153. front: {
  36154. height: math.unit(6 + 6/12, "feet"),
  36155. weight: math.unit(7, "lb"),
  36156. name: "Front",
  36157. image: {
  36158. source: "./media/characters/icky/front.svg",
  36159. extra: 813/782,
  36160. bottom: 66/879
  36161. }
  36162. },
  36163. back: {
  36164. height: math.unit(6 + 6/12, "feet"),
  36165. weight: math.unit(7, "lb"),
  36166. name: "Back",
  36167. image: {
  36168. source: "./media/characters/icky/back.svg",
  36169. extra: 754/735,
  36170. bottom: 56/810
  36171. }
  36172. },
  36173. },
  36174. [
  36175. {
  36176. name: "Normal",
  36177. height: math.unit(6 + 6/12, "feet"),
  36178. default: true
  36179. },
  36180. ]
  36181. ))
  36182. characterMakers.push(() => makeCharacter(
  36183. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36184. {
  36185. front: {
  36186. height: math.unit(15, "feet"),
  36187. name: "Front",
  36188. image: {
  36189. source: "./media/characters/rojas/front.svg",
  36190. extra: 1462/1408,
  36191. bottom: 95/1557
  36192. }
  36193. },
  36194. back: {
  36195. height: math.unit(15, "feet"),
  36196. name: "Back",
  36197. image: {
  36198. source: "./media/characters/rojas/back.svg",
  36199. extra: 1023/954,
  36200. bottom: 28/1051
  36201. }
  36202. },
  36203. },
  36204. [
  36205. {
  36206. name: "Normal",
  36207. height: math.unit(15, "feet"),
  36208. default: true
  36209. },
  36210. ]
  36211. ))
  36212. characterMakers.push(() => makeCharacter(
  36213. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36214. {
  36215. frontHuman: {
  36216. height: math.unit(5 + 7/12, "feet"),
  36217. name: "Front (Human)",
  36218. image: {
  36219. source: "./media/characters/alek-dryagan/front-human.svg",
  36220. extra: 1687/1667,
  36221. bottom: 69/1756
  36222. }
  36223. },
  36224. backHuman: {
  36225. height: math.unit(5 + 7/12, "feet"),
  36226. name: "Back (Human)",
  36227. image: {
  36228. source: "./media/characters/alek-dryagan/back-human.svg",
  36229. extra: 1670/1649,
  36230. bottom: 65/1735
  36231. }
  36232. },
  36233. frontDemi: {
  36234. height: math.unit(65, "feet"),
  36235. name: "Front (Demi)",
  36236. image: {
  36237. source: "./media/characters/alek-dryagan/front-demi.svg",
  36238. extra: 1669/1642,
  36239. bottom: 49/1718
  36240. }
  36241. },
  36242. backDemi: {
  36243. height: math.unit(65, "feet"),
  36244. name: "Back (Demi)",
  36245. image: {
  36246. source: "./media/characters/alek-dryagan/back-demi.svg",
  36247. extra: 1658/1637,
  36248. bottom: 40/1698
  36249. }
  36250. },
  36251. mawHuman: {
  36252. height: math.unit(0.3, "feet"),
  36253. name: "Maw (Human)",
  36254. image: {
  36255. source: "./media/characters/alek-dryagan/maw-human.svg"
  36256. }
  36257. },
  36258. mawDemi: {
  36259. height: math.unit(3.8, "feet"),
  36260. name: "Maw (Demi)",
  36261. image: {
  36262. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36263. }
  36264. },
  36265. },
  36266. [
  36267. {
  36268. name: "Normal",
  36269. height: math.unit(5 + 7/12, "feet"),
  36270. default: true
  36271. },
  36272. ]
  36273. ))
  36274. characterMakers.push(() => makeCharacter(
  36275. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36276. {
  36277. frontHuman: {
  36278. height: math.unit(5 + 2/12, "feet"),
  36279. name: "Front (Human)",
  36280. image: {
  36281. source: "./media/characters/gen/front-human.svg",
  36282. extra: 1627/1538,
  36283. bottom: 71/1698
  36284. }
  36285. },
  36286. backHuman: {
  36287. height: math.unit(5 + 2/12, "feet"),
  36288. name: "Back (Human)",
  36289. image: {
  36290. source: "./media/characters/gen/back-human.svg",
  36291. extra: 1638/1548,
  36292. bottom: 69/1707
  36293. }
  36294. },
  36295. frontDemi: {
  36296. height: math.unit(5 + 2/12, "feet"),
  36297. name: "Front (Demi)",
  36298. image: {
  36299. source: "./media/characters/gen/front-demi.svg",
  36300. extra: 1627/1538,
  36301. bottom: 71/1698
  36302. }
  36303. },
  36304. backDemi: {
  36305. height: math.unit(5 + 2/12, "feet"),
  36306. name: "Back (Demi)",
  36307. image: {
  36308. source: "./media/characters/gen/back-demi.svg",
  36309. extra: 1638/1548,
  36310. bottom: 69/1707
  36311. }
  36312. },
  36313. },
  36314. [
  36315. {
  36316. name: "Normal",
  36317. height: math.unit(5 + 2/12, "feet"),
  36318. default: true
  36319. },
  36320. ]
  36321. ))
  36322. characterMakers.push(() => makeCharacter(
  36323. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36324. {
  36325. frontImp: {
  36326. height: math.unit(1 + 11/12, "feet"),
  36327. name: "Front (Imp)",
  36328. image: {
  36329. source: "./media/characters/max-kobold/front-imp.svg",
  36330. extra: 1238/1134,
  36331. bottom: 81/1319
  36332. }
  36333. },
  36334. backImp: {
  36335. height: math.unit(1 + 11/12, "feet"),
  36336. name: "Back (Imp)",
  36337. image: {
  36338. source: "./media/characters/max-kobold/back-imp.svg",
  36339. extra: 1334/1175,
  36340. bottom: 34/1368
  36341. }
  36342. },
  36343. frontDemi: {
  36344. height: math.unit(5 + 9/12, "feet"),
  36345. name: "Front (Demi)",
  36346. image: {
  36347. source: "./media/characters/max-kobold/front-demi.svg",
  36348. extra: 1715/1685,
  36349. bottom: 54/1769
  36350. }
  36351. },
  36352. backDemi: {
  36353. height: math.unit(5 + 9/12, "feet"),
  36354. name: "Back (Demi)",
  36355. image: {
  36356. source: "./media/characters/max-kobold/back-demi.svg",
  36357. extra: 1752/1729,
  36358. bottom: 41/1793
  36359. }
  36360. },
  36361. handImp: {
  36362. height: math.unit(0.45, "feet"),
  36363. name: "Hand (Imp)",
  36364. image: {
  36365. source: "./media/characters/max-kobold/hand.svg"
  36366. }
  36367. },
  36368. pawImp: {
  36369. height: math.unit(0.46, "feet"),
  36370. name: "Paw (Imp)",
  36371. image: {
  36372. source: "./media/characters/max-kobold/paw.svg"
  36373. }
  36374. },
  36375. handDemi: {
  36376. height: math.unit(0.80, "feet"),
  36377. name: "Hand (Demi)",
  36378. image: {
  36379. source: "./media/characters/max-kobold/hand.svg"
  36380. }
  36381. },
  36382. pawDemi: {
  36383. height: math.unit(1.1, "feet"),
  36384. name: "Paw (Demi)",
  36385. image: {
  36386. source: "./media/characters/max-kobold/paw.svg"
  36387. }
  36388. },
  36389. headImp: {
  36390. height: math.unit(1.33, "feet"),
  36391. name: "Head (Imp)",
  36392. image: {
  36393. source: "./media/characters/max-kobold/head-imp.svg"
  36394. }
  36395. },
  36396. mawImp: {
  36397. height: math.unit(0.75, "feet"),
  36398. name: "Maw (Imp)",
  36399. image: {
  36400. source: "./media/characters/max-kobold/maw-imp.svg"
  36401. }
  36402. },
  36403. mawDemi: {
  36404. height: math.unit(0.42, "feet"),
  36405. name: "Maw (Demi)",
  36406. image: {
  36407. source: "./media/characters/max-kobold/maw-demi.svg"
  36408. }
  36409. },
  36410. },
  36411. [
  36412. {
  36413. name: "Normal",
  36414. height: math.unit(1 + 11/12, "feet"),
  36415. default: true
  36416. },
  36417. ]
  36418. ))
  36419. characterMakers.push(() => makeCharacter(
  36420. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36421. {
  36422. front: {
  36423. height: math.unit(7 + 5/12, "feet"),
  36424. name: "Front",
  36425. image: {
  36426. source: "./media/characters/carbon/front.svg",
  36427. extra: 1754/1689,
  36428. bottom: 65/1819
  36429. }
  36430. },
  36431. back: {
  36432. height: math.unit(7 + 5/12, "feet"),
  36433. name: "Back",
  36434. image: {
  36435. source: "./media/characters/carbon/back.svg",
  36436. extra: 1762/1695,
  36437. bottom: 24/1786
  36438. }
  36439. },
  36440. frontGigantamax: {
  36441. height: math.unit(150, "feet"),
  36442. name: "Front (Gigantamax)",
  36443. image: {
  36444. source: "./media/characters/carbon/front-gigantamax.svg",
  36445. extra: 1826/1669,
  36446. bottom: 59/1885
  36447. }
  36448. },
  36449. backGigantamax: {
  36450. height: math.unit(150, "feet"),
  36451. name: "Back (Gigantamax)",
  36452. image: {
  36453. source: "./media/characters/carbon/back-gigantamax.svg",
  36454. extra: 1796/1653,
  36455. bottom: 53/1849
  36456. }
  36457. },
  36458. maw: {
  36459. height: math.unit(0.48, "feet"),
  36460. name: "Maw",
  36461. image: {
  36462. source: "./media/characters/carbon/maw.svg"
  36463. }
  36464. },
  36465. mawGigantamax: {
  36466. height: math.unit(7.5, "feet"),
  36467. name: "Maw (Gigantamax)",
  36468. image: {
  36469. source: "./media/characters/carbon/maw-gigantamax.svg"
  36470. }
  36471. },
  36472. },
  36473. [
  36474. {
  36475. name: "Normal",
  36476. height: math.unit(7 + 5/12, "feet"),
  36477. default: true
  36478. },
  36479. ]
  36480. ))
  36481. characterMakers.push(() => makeCharacter(
  36482. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36483. {
  36484. front: {
  36485. height: math.unit(6, "feet"),
  36486. name: "Front",
  36487. image: {
  36488. source: "./media/characters/maverick/front.svg",
  36489. extra: 1672/1661,
  36490. bottom: 85/1757
  36491. }
  36492. },
  36493. back: {
  36494. height: math.unit(6, "feet"),
  36495. name: "Back",
  36496. image: {
  36497. source: "./media/characters/maverick/back.svg",
  36498. extra: 1642/1631,
  36499. bottom: 38/1680
  36500. }
  36501. },
  36502. },
  36503. [
  36504. {
  36505. name: "Normal",
  36506. height: math.unit(6, "feet"),
  36507. default: true
  36508. },
  36509. ]
  36510. ))
  36511. characterMakers.push(() => makeCharacter(
  36512. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36513. {
  36514. front: {
  36515. height: math.unit(15, "feet"),
  36516. weight: math.unit(615, "lb"),
  36517. name: "Front",
  36518. image: {
  36519. source: "./media/characters/grockle/front.svg",
  36520. extra: 1535/1427,
  36521. bottom: 56/1591
  36522. }
  36523. },
  36524. },
  36525. [
  36526. {
  36527. name: "Normal",
  36528. height: math.unit(15, "feet"),
  36529. default: true
  36530. },
  36531. {
  36532. name: "Large",
  36533. height: math.unit(150, "feet")
  36534. },
  36535. {
  36536. name: "Macro",
  36537. height: math.unit(1876, "feet")
  36538. },
  36539. {
  36540. name: "Mega Macro",
  36541. height: math.unit(121940, "feet")
  36542. },
  36543. {
  36544. name: "Giga Macro",
  36545. height: math.unit(750, "km")
  36546. },
  36547. {
  36548. name: "Tera Macro",
  36549. height: math.unit(750000, "km")
  36550. },
  36551. {
  36552. name: "Galactic",
  36553. height: math.unit(1.4e5, "km")
  36554. },
  36555. {
  36556. name: "Godlike",
  36557. height: math.unit(9.8e280, "galaxies")
  36558. },
  36559. ]
  36560. ))
  36561. characterMakers.push(() => makeCharacter(
  36562. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36563. {
  36564. front: {
  36565. height: math.unit(11, "meters"),
  36566. weight: math.unit(20, "tonnes"),
  36567. name: "Front",
  36568. image: {
  36569. source: "./media/characters/alistair/front.svg",
  36570. extra: 1265/1009,
  36571. bottom: 93/1358
  36572. }
  36573. },
  36574. },
  36575. [
  36576. {
  36577. name: "Normal",
  36578. height: math.unit(11, "meters"),
  36579. default: true
  36580. },
  36581. ]
  36582. ))
  36583. characterMakers.push(() => makeCharacter(
  36584. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36585. {
  36586. front: {
  36587. height: math.unit(5 + 8/12, "feet"),
  36588. name: "Front",
  36589. image: {
  36590. source: "./media/characters/haruka/front.svg",
  36591. extra: 2012/1952,
  36592. bottom: 0/2012
  36593. }
  36594. },
  36595. },
  36596. [
  36597. {
  36598. name: "Normal",
  36599. height: math.unit(5 + 8/12, "feet"),
  36600. default: true
  36601. },
  36602. ]
  36603. ))
  36604. characterMakers.push(() => makeCharacter(
  36605. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  36606. {
  36607. back: {
  36608. height: math.unit(9, "feet"),
  36609. name: "Back",
  36610. image: {
  36611. source: "./media/characters/vivian-sylveon/back.svg",
  36612. extra: 1853/1714,
  36613. bottom: 0/1853
  36614. }
  36615. },
  36616. },
  36617. [
  36618. {
  36619. name: "Normal",
  36620. height: math.unit(9, "feet"),
  36621. default: true
  36622. },
  36623. {
  36624. name: "Macro",
  36625. height: math.unit(500, "feet")
  36626. },
  36627. {
  36628. name: "Megamacro",
  36629. height: math.unit(600, "miles")
  36630. },
  36631. {
  36632. name: "Gigamacro",
  36633. height: math.unit(30000, "miles")
  36634. },
  36635. ]
  36636. ))
  36637. characterMakers.push(() => makeCharacter(
  36638. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  36639. {
  36640. anthro: {
  36641. height: math.unit(5 + 10/12, "feet"),
  36642. weight: math.unit(100, "lb"),
  36643. name: "Anthro",
  36644. image: {
  36645. source: "./media/characters/daiki/anthro.svg",
  36646. extra: 1115/1027,
  36647. bottom: 69/1184
  36648. }
  36649. },
  36650. feral: {
  36651. height: math.unit(200, "feet"),
  36652. name: "Feral",
  36653. image: {
  36654. source: "./media/characters/daiki/feral.svg",
  36655. extra: 1256/313,
  36656. bottom: 39/1295
  36657. }
  36658. },
  36659. feralHead: {
  36660. height: math.unit(171, "feet"),
  36661. name: "Feral Head",
  36662. image: {
  36663. source: "./media/characters/daiki/feral-head.svg"
  36664. }
  36665. },
  36666. manaDragon: {
  36667. height: math.unit(170, "meters"),
  36668. name: "Mana-dragon",
  36669. image: {
  36670. source: "./media/characters/daiki/mana-dragon.svg",
  36671. extra: 763/420,
  36672. bottom: 97/860
  36673. }
  36674. },
  36675. },
  36676. [
  36677. {
  36678. name: "Normal",
  36679. height: math.unit(5 + 10/12, "feet"),
  36680. default: true
  36681. },
  36682. ]
  36683. ))
  36684. characterMakers.push(() => makeCharacter(
  36685. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  36686. {
  36687. fullyEquippedFront: {
  36688. height: math.unit(3 + 1/12, "feet"),
  36689. weight: math.unit(24, "lb"),
  36690. name: "Fully Equipped (Front)",
  36691. image: {
  36692. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  36693. extra: 687/605,
  36694. bottom: 18/705
  36695. }
  36696. },
  36697. fullyEquippedBack: {
  36698. height: math.unit(3 + 1/12, "feet"),
  36699. weight: math.unit(24, "lb"),
  36700. name: "Fully Equipped (Back)",
  36701. image: {
  36702. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  36703. extra: 689/590,
  36704. bottom: 18/707
  36705. }
  36706. },
  36707. dailyWear: {
  36708. height: math.unit(3 + 1/12, "feet"),
  36709. weight: math.unit(24, "lb"),
  36710. name: "Daily Wear",
  36711. image: {
  36712. source: "./media/characters/tea-spot/daily-wear.svg",
  36713. extra: 701/620,
  36714. bottom: 21/722
  36715. }
  36716. },
  36717. maidWork: {
  36718. height: math.unit(3 + 1/12, "feet"),
  36719. weight: math.unit(24, "lb"),
  36720. name: "Maid Work",
  36721. image: {
  36722. source: "./media/characters/tea-spot/maid-work.svg",
  36723. extra: 693/609,
  36724. bottom: 15/708
  36725. }
  36726. },
  36727. },
  36728. [
  36729. {
  36730. name: "Normal",
  36731. height: math.unit(3 + 1/12, "feet"),
  36732. default: true
  36733. },
  36734. ]
  36735. ))
  36736. characterMakers.push(() => makeCharacter(
  36737. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  36738. {
  36739. front: {
  36740. height: math.unit(175, "cm"),
  36741. weight: math.unit(75, "kg"),
  36742. name: "Front",
  36743. image: {
  36744. source: "./media/characters/chee/front.svg",
  36745. extra: 1796/1740,
  36746. bottom: 40/1836
  36747. }
  36748. },
  36749. },
  36750. [
  36751. {
  36752. name: "Micro-Micro",
  36753. height: math.unit(1, "nm")
  36754. },
  36755. {
  36756. name: "Micro-erst",
  36757. height: math.unit(1, "micrometer")
  36758. },
  36759. {
  36760. name: "Micro-er",
  36761. height: math.unit(1, "cm")
  36762. },
  36763. {
  36764. name: "Normal",
  36765. height: math.unit(175, "cm"),
  36766. default: true
  36767. },
  36768. {
  36769. name: "Macro",
  36770. height: math.unit(100, "m")
  36771. },
  36772. {
  36773. name: "Macro-er",
  36774. height: math.unit(1, "km")
  36775. },
  36776. {
  36777. name: "Macro-erst",
  36778. height: math.unit(10, "km")
  36779. },
  36780. {
  36781. name: "Macro-Macro",
  36782. height: math.unit(100, "km")
  36783. },
  36784. ]
  36785. ))
  36786. characterMakers.push(() => makeCharacter(
  36787. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  36788. {
  36789. front: {
  36790. height: math.unit(11 + 9/12, "feet"),
  36791. weight: math.unit(935, "lb"),
  36792. name: "Front",
  36793. image: {
  36794. source: "./media/characters/kingsley/front.svg",
  36795. extra: 1803/1674,
  36796. bottom: 127/1930
  36797. }
  36798. },
  36799. frontNude: {
  36800. height: math.unit(11 + 9/12, "feet"),
  36801. weight: math.unit(935, "lb"),
  36802. name: "Front (Nude)",
  36803. image: {
  36804. source: "./media/characters/kingsley/front-nude.svg",
  36805. extra: 1803/1674,
  36806. bottom: 127/1930
  36807. }
  36808. },
  36809. },
  36810. [
  36811. {
  36812. name: "Normal",
  36813. height: math.unit(11 + 9/12, "feet"),
  36814. default: true
  36815. },
  36816. ]
  36817. ))
  36818. characterMakers.push(() => makeCharacter(
  36819. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  36820. {
  36821. side: {
  36822. height: math.unit(9, "feet"),
  36823. name: "Side",
  36824. image: {
  36825. source: "./media/characters/rymel/side.svg",
  36826. extra: 792/469,
  36827. bottom: 121/913
  36828. }
  36829. },
  36830. maw: {
  36831. height: math.unit(2.4, "meters"),
  36832. name: "Maw",
  36833. image: {
  36834. source: "./media/characters/rymel/maw.svg"
  36835. }
  36836. },
  36837. },
  36838. [
  36839. {
  36840. name: "House Drake",
  36841. height: math.unit(2, "feet")
  36842. },
  36843. {
  36844. name: "Reduced",
  36845. height: math.unit(4.5, "feet")
  36846. },
  36847. {
  36848. name: "Normal",
  36849. height: math.unit(9, "feet"),
  36850. default: true
  36851. },
  36852. ]
  36853. ))
  36854. characterMakers.push(() => makeCharacter(
  36855. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  36856. {
  36857. front: {
  36858. height: math.unit(1.74, "meters"),
  36859. weight: math.unit(55, "kg"),
  36860. name: "Front",
  36861. image: {
  36862. source: "./media/characters/rubus/front.svg",
  36863. extra: 1894/1742,
  36864. bottom: 44/1938
  36865. }
  36866. },
  36867. },
  36868. [
  36869. {
  36870. name: "Normal",
  36871. height: math.unit(1.74, "meters"),
  36872. default: true
  36873. },
  36874. ]
  36875. ))
  36876. characterMakers.push(() => makeCharacter(
  36877. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  36878. {
  36879. front: {
  36880. height: math.unit(5 + 2/12, "feet"),
  36881. weight: math.unit(112, "lb"),
  36882. name: "Front",
  36883. image: {
  36884. source: "./media/characters/cassie-kingston/front.svg",
  36885. extra: 1438/1390,
  36886. bottom: 47/1485
  36887. }
  36888. },
  36889. },
  36890. [
  36891. {
  36892. name: "Normal",
  36893. height: math.unit(5 + 2/12, "feet"),
  36894. default: true
  36895. },
  36896. {
  36897. name: "Macro",
  36898. height: math.unit(128, "feet")
  36899. },
  36900. {
  36901. name: "Megamacro",
  36902. height: math.unit(2.56, "miles")
  36903. },
  36904. ]
  36905. ))
  36906. characterMakers.push(() => makeCharacter(
  36907. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  36908. {
  36909. front: {
  36910. height: math.unit(7, "feet"),
  36911. name: "Front",
  36912. image: {
  36913. source: "./media/characters/fox/front.svg",
  36914. extra: 1798/1703,
  36915. bottom: 55/1853
  36916. }
  36917. },
  36918. back: {
  36919. height: math.unit(7, "feet"),
  36920. name: "Back",
  36921. image: {
  36922. source: "./media/characters/fox/back.svg",
  36923. extra: 1748/1649,
  36924. bottom: 32/1780
  36925. }
  36926. },
  36927. head: {
  36928. height: math.unit(1.95, "feet"),
  36929. name: "Head",
  36930. image: {
  36931. source: "./media/characters/fox/head.svg"
  36932. }
  36933. },
  36934. dick: {
  36935. height: math.unit(1.33, "feet"),
  36936. name: "Dick",
  36937. image: {
  36938. source: "./media/characters/fox/dick.svg"
  36939. }
  36940. },
  36941. foot: {
  36942. height: math.unit(1, "feet"),
  36943. name: "Foot",
  36944. image: {
  36945. source: "./media/characters/fox/foot.svg"
  36946. }
  36947. },
  36948. paw: {
  36949. height: math.unit(0.92, "feet"),
  36950. name: "Paw",
  36951. image: {
  36952. source: "./media/characters/fox/paw.svg"
  36953. }
  36954. },
  36955. },
  36956. [
  36957. {
  36958. name: "Small",
  36959. height: math.unit(3, "inches")
  36960. },
  36961. {
  36962. name: "\"Realistic\"",
  36963. height: math.unit(7, "feet")
  36964. },
  36965. {
  36966. name: "Normal",
  36967. height: math.unit(150, "feet"),
  36968. default: true
  36969. },
  36970. {
  36971. name: "BIG",
  36972. height: math.unit(1200, "feet")
  36973. },
  36974. {
  36975. name: "👀",
  36976. height: math.unit(5, "miles")
  36977. },
  36978. {
  36979. name: "👀👀👀",
  36980. height: math.unit(64, "miles")
  36981. },
  36982. ]
  36983. ))
  36984. characterMakers.push(() => makeCharacter(
  36985. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  36986. {
  36987. front: {
  36988. height: math.unit(625, "feet"),
  36989. name: "Front",
  36990. image: {
  36991. source: "./media/characters/asonja-rossa/front.svg",
  36992. extra: 1833/1686,
  36993. bottom: 24/1857
  36994. }
  36995. },
  36996. back: {
  36997. height: math.unit(625, "feet"),
  36998. name: "Back",
  36999. image: {
  37000. source: "./media/characters/asonja-rossa/back.svg",
  37001. extra: 1852/1753,
  37002. bottom: 26/1878
  37003. }
  37004. },
  37005. },
  37006. [
  37007. {
  37008. name: "Macro",
  37009. height: math.unit(625, "feet"),
  37010. default: true
  37011. },
  37012. ]
  37013. ))
  37014. characterMakers.push(() => makeCharacter(
  37015. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  37016. {
  37017. side: {
  37018. height: math.unit(8, "feet"),
  37019. name: "Side",
  37020. image: {
  37021. source: "./media/characters/rezukii/side.svg",
  37022. extra: 979/542,
  37023. bottom: 87/1066
  37024. }
  37025. },
  37026. sitting: {
  37027. height: math.unit(14.6, "feet"),
  37028. name: "Sitting",
  37029. image: {
  37030. source: "./media/characters/rezukii/sitting.svg",
  37031. extra: 1023/813,
  37032. bottom: 45/1068
  37033. }
  37034. },
  37035. },
  37036. [
  37037. {
  37038. name: "Tiny",
  37039. height: math.unit(2, "feet")
  37040. },
  37041. {
  37042. name: "Smol",
  37043. height: math.unit(4, "feet")
  37044. },
  37045. {
  37046. name: "Normal",
  37047. height: math.unit(8, "feet"),
  37048. default: true
  37049. },
  37050. {
  37051. name: "Big",
  37052. height: math.unit(12, "feet")
  37053. },
  37054. {
  37055. name: "Macro",
  37056. height: math.unit(30, "feet")
  37057. },
  37058. ]
  37059. ))
  37060. characterMakers.push(() => makeCharacter(
  37061. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  37062. {
  37063. front: {
  37064. height: math.unit(14, "feet"),
  37065. weight: math.unit(9.5, "tonnes"),
  37066. name: "Front",
  37067. image: {
  37068. source: "./media/characters/dawnheart/front.svg",
  37069. extra: 2792/2675,
  37070. bottom: 64/2856
  37071. }
  37072. },
  37073. },
  37074. [
  37075. {
  37076. name: "Normal",
  37077. height: math.unit(14, "feet"),
  37078. default: true
  37079. },
  37080. ]
  37081. ))
  37082. characterMakers.push(() => makeCharacter(
  37083. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  37084. {
  37085. front: {
  37086. height: math.unit(1.7, "m"),
  37087. name: "Front",
  37088. image: {
  37089. source: "./media/characters/gladi/front.svg",
  37090. extra: 1460/1362,
  37091. bottom: 19/1479
  37092. }
  37093. },
  37094. back: {
  37095. height: math.unit(1.7, "m"),
  37096. name: "Back",
  37097. image: {
  37098. source: "./media/characters/gladi/back.svg",
  37099. extra: 1459/1357,
  37100. bottom: 12/1471
  37101. }
  37102. },
  37103. feral: {
  37104. height: math.unit(2.05, "m"),
  37105. name: "Feral",
  37106. image: {
  37107. source: "./media/characters/gladi/feral.svg",
  37108. extra: 821/557,
  37109. bottom: 91/912
  37110. }
  37111. },
  37112. },
  37113. [
  37114. {
  37115. name: "Shortest",
  37116. height: math.unit(70, "cm")
  37117. },
  37118. {
  37119. name: "Normal",
  37120. height: math.unit(1.7, "m")
  37121. },
  37122. {
  37123. name: "Macro",
  37124. height: math.unit(10, "m"),
  37125. default: true
  37126. },
  37127. {
  37128. name: "Tallest",
  37129. height: math.unit(200, "m")
  37130. },
  37131. ]
  37132. ))
  37133. characterMakers.push(() => makeCharacter(
  37134. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  37135. {
  37136. front: {
  37137. height: math.unit(5 + 7/12, "feet"),
  37138. weight: math.unit(2, "tons"),
  37139. name: "Front",
  37140. image: {
  37141. source: "./media/characters/erdno/front.svg",
  37142. extra: 1234/1129,
  37143. bottom: 35/1269
  37144. }
  37145. },
  37146. angled: {
  37147. height: math.unit(5 + 7/12, "feet"),
  37148. weight: math.unit(2, "tons"),
  37149. name: "Angled",
  37150. image: {
  37151. source: "./media/characters/erdno/angled.svg",
  37152. extra: 1185/1139,
  37153. bottom: 36/1221
  37154. }
  37155. },
  37156. side: {
  37157. height: math.unit(5 + 7/12, "feet"),
  37158. weight: math.unit(2, "tons"),
  37159. name: "Side",
  37160. image: {
  37161. source: "./media/characters/erdno/side.svg",
  37162. extra: 1191/1144,
  37163. bottom: 40/1231
  37164. }
  37165. },
  37166. back: {
  37167. height: math.unit(5 + 7/12, "feet"),
  37168. weight: math.unit(2, "tons"),
  37169. name: "Back",
  37170. image: {
  37171. source: "./media/characters/erdno/back.svg",
  37172. extra: 1202/1146,
  37173. bottom: 17/1219
  37174. }
  37175. },
  37176. frontNsfw: {
  37177. height: math.unit(5 + 7/12, "feet"),
  37178. weight: math.unit(2, "tons"),
  37179. name: "Front (NSFW)",
  37180. image: {
  37181. source: "./media/characters/erdno/front-nsfw.svg",
  37182. extra: 1234/1129,
  37183. bottom: 35/1269
  37184. }
  37185. },
  37186. angledNsfw: {
  37187. height: math.unit(5 + 7/12, "feet"),
  37188. weight: math.unit(2, "tons"),
  37189. name: "Angled (NSFW)",
  37190. image: {
  37191. source: "./media/characters/erdno/angled-nsfw.svg",
  37192. extra: 1185/1139,
  37193. bottom: 36/1221
  37194. }
  37195. },
  37196. sideNsfw: {
  37197. height: math.unit(5 + 7/12, "feet"),
  37198. weight: math.unit(2, "tons"),
  37199. name: "Side (NSFW)",
  37200. image: {
  37201. source: "./media/characters/erdno/side-nsfw.svg",
  37202. extra: 1191/1144,
  37203. bottom: 40/1231
  37204. }
  37205. },
  37206. backNsfw: {
  37207. height: math.unit(5 + 7/12, "feet"),
  37208. weight: math.unit(2, "tons"),
  37209. name: "Back (NSFW)",
  37210. image: {
  37211. source: "./media/characters/erdno/back-nsfw.svg",
  37212. extra: 1202/1146,
  37213. bottom: 17/1219
  37214. }
  37215. },
  37216. frontHyper: {
  37217. height: math.unit(5 + 7/12, "feet"),
  37218. weight: math.unit(2, "tons"),
  37219. name: "Front (Hyper)",
  37220. image: {
  37221. source: "./media/characters/erdno/front-hyper.svg",
  37222. extra: 1298/1136,
  37223. bottom: 35/1333
  37224. }
  37225. },
  37226. },
  37227. [
  37228. {
  37229. name: "Normal",
  37230. height: math.unit(5 + 7/12, "feet"),
  37231. default: true
  37232. },
  37233. {
  37234. name: "Big",
  37235. height: math.unit(5.7, "meters")
  37236. },
  37237. {
  37238. name: "Macro",
  37239. height: math.unit(5.7, "kilometers")
  37240. },
  37241. {
  37242. name: "Megamacro",
  37243. height: math.unit(5.7, "earths")
  37244. },
  37245. ]
  37246. ))
  37247. characterMakers.push(() => makeCharacter(
  37248. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37249. {
  37250. front: {
  37251. height: math.unit(5 + 10/12, "feet"),
  37252. weight: math.unit(150, "lb"),
  37253. name: "Front",
  37254. image: {
  37255. source: "./media/characters/jamie/front.svg",
  37256. extra: 1908/1768,
  37257. bottom: 19/1927
  37258. }
  37259. },
  37260. },
  37261. [
  37262. {
  37263. name: "Minimum",
  37264. height: math.unit(2, "cm")
  37265. },
  37266. {
  37267. name: "Micro",
  37268. height: math.unit(3, "inches")
  37269. },
  37270. {
  37271. name: "Normal",
  37272. height: math.unit(5 + 10/12, "feet"),
  37273. default: true
  37274. },
  37275. {
  37276. name: "Macro",
  37277. height: math.unit(150, "feet")
  37278. },
  37279. {
  37280. name: "Megamacro",
  37281. height: math.unit(10000, "m")
  37282. },
  37283. ]
  37284. ))
  37285. characterMakers.push(() => makeCharacter(
  37286. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  37287. {
  37288. front: {
  37289. height: math.unit(2, "meters"),
  37290. weight: math.unit(100, "kg"),
  37291. name: "Front",
  37292. image: {
  37293. source: "./media/characters/shiron/front.svg",
  37294. extra: 2103/1985,
  37295. bottom: 98/2201
  37296. }
  37297. },
  37298. back: {
  37299. height: math.unit(2, "meters"),
  37300. weight: math.unit(100, "kg"),
  37301. name: "Back",
  37302. image: {
  37303. source: "./media/characters/shiron/back.svg",
  37304. extra: 2110/2015,
  37305. bottom: 89/2199
  37306. }
  37307. },
  37308. hand: {
  37309. height: math.unit(0.96, "feet"),
  37310. name: "Hand",
  37311. image: {
  37312. source: "./media/characters/shiron/hand.svg"
  37313. }
  37314. },
  37315. foot: {
  37316. height: math.unit(1.464, "feet"),
  37317. name: "Foot",
  37318. image: {
  37319. source: "./media/characters/shiron/foot.svg"
  37320. }
  37321. },
  37322. },
  37323. [
  37324. {
  37325. name: "Normal",
  37326. height: math.unit(2, "meters")
  37327. },
  37328. {
  37329. name: "Macro",
  37330. height: math.unit(500, "meters"),
  37331. default: true
  37332. },
  37333. {
  37334. name: "Megamacro",
  37335. height: math.unit(20, "km")
  37336. },
  37337. ]
  37338. ))
  37339. characterMakers.push(() => makeCharacter(
  37340. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  37341. {
  37342. front: {
  37343. height: math.unit(6, "feet"),
  37344. name: "Front",
  37345. image: {
  37346. source: "./media/characters/sam/front.svg",
  37347. extra: 849/826,
  37348. bottom: 19/868
  37349. }
  37350. },
  37351. },
  37352. [
  37353. {
  37354. name: "Normal",
  37355. height: math.unit(6, "feet"),
  37356. default: true
  37357. },
  37358. ]
  37359. ))
  37360. characterMakers.push(() => makeCharacter(
  37361. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  37362. {
  37363. front: {
  37364. height: math.unit(8 + 4/12, "feet"),
  37365. weight: math.unit(122, "kg"),
  37366. name: "Front",
  37367. image: {
  37368. source: "./media/characters/namori-kurogawa/front.svg",
  37369. extra: 1894/1576,
  37370. bottom: 34/1928
  37371. }
  37372. },
  37373. },
  37374. [
  37375. {
  37376. name: "Normal",
  37377. height: math.unit(8 + 4/12, "feet"),
  37378. default: true
  37379. },
  37380. ]
  37381. ))
  37382. characterMakers.push(() => makeCharacter(
  37383. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  37384. {
  37385. front: {
  37386. height: math.unit(9, "feet"),
  37387. weight: math.unit(621, "lb"),
  37388. name: "Front",
  37389. image: {
  37390. source: "./media/characters/unmru/front.svg",
  37391. extra: 1853/1747,
  37392. bottom: 73/1926
  37393. }
  37394. },
  37395. side: {
  37396. height: math.unit(9, "feet"),
  37397. weight: math.unit(621, "lb"),
  37398. name: "Side",
  37399. image: {
  37400. source: "./media/characters/unmru/side.svg",
  37401. extra: 1781/1671,
  37402. bottom: 127/1908
  37403. }
  37404. },
  37405. back: {
  37406. height: math.unit(9, "feet"),
  37407. weight: math.unit(621, "lb"),
  37408. name: "Back",
  37409. image: {
  37410. source: "./media/characters/unmru/back.svg",
  37411. extra: 1894/1765,
  37412. bottom: 75/1969
  37413. }
  37414. },
  37415. dick: {
  37416. height: math.unit(3, "feet"),
  37417. weight: math.unit(35, "lb"),
  37418. name: "Dick",
  37419. image: {
  37420. source: "./media/characters/unmru/dick.svg"
  37421. }
  37422. },
  37423. },
  37424. [
  37425. {
  37426. name: "Normal",
  37427. height: math.unit(9, "feet")
  37428. },
  37429. {
  37430. name: "Natural",
  37431. height: math.unit(27, "feet"),
  37432. default: true
  37433. },
  37434. {
  37435. name: "Giant",
  37436. height: math.unit(90, "feet")
  37437. },
  37438. {
  37439. name: "Kaiju",
  37440. height: math.unit(270, "feet")
  37441. },
  37442. {
  37443. name: "Macro",
  37444. height: math.unit(900, "feet")
  37445. },
  37446. {
  37447. name: "Macro+",
  37448. height: math.unit(2700, "feet")
  37449. },
  37450. {
  37451. name: "Megamacro",
  37452. height: math.unit(9000, "feet")
  37453. },
  37454. {
  37455. name: "City-Crushing",
  37456. height: math.unit(27000, "feet")
  37457. },
  37458. {
  37459. name: "Mountain-Mashing",
  37460. height: math.unit(90000, "feet")
  37461. },
  37462. {
  37463. name: "Earth-Eclipsing",
  37464. height: math.unit(2.7e8, "feet")
  37465. },
  37466. {
  37467. name: "Sol-Swallowing",
  37468. height: math.unit(9e10, "feet")
  37469. },
  37470. {
  37471. name: "Majoris-Munching",
  37472. height: math.unit(2.7e13, "feet")
  37473. },
  37474. ]
  37475. ))
  37476. characterMakers.push(() => makeCharacter(
  37477. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37478. {
  37479. front: {
  37480. height: math.unit(1, "inch"),
  37481. name: "Front",
  37482. image: {
  37483. source: "./media/characters/squeaks-mouse/front.svg",
  37484. extra: 352/308,
  37485. bottom: 25/377
  37486. }
  37487. },
  37488. },
  37489. [
  37490. {
  37491. name: "Micro",
  37492. height: math.unit(1, "inch"),
  37493. default: true
  37494. },
  37495. ]
  37496. ))
  37497. characterMakers.push(() => makeCharacter(
  37498. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37499. {
  37500. side: {
  37501. height: math.unit(35, "feet"),
  37502. name: "Side",
  37503. image: {
  37504. source: "./media/characters/sayko/side.svg",
  37505. extra: 1697/1021,
  37506. bottom: 82/1779
  37507. }
  37508. },
  37509. head: {
  37510. height: math.unit(16, "feet"),
  37511. name: "Head",
  37512. image: {
  37513. source: "./media/characters/sayko/head.svg"
  37514. }
  37515. },
  37516. forepaw: {
  37517. height: math.unit(7.85, "feet"),
  37518. name: "Forepaw",
  37519. image: {
  37520. source: "./media/characters/sayko/forepaw.svg"
  37521. }
  37522. },
  37523. hindpaw: {
  37524. height: math.unit(8.8, "feet"),
  37525. name: "Hindpaw",
  37526. image: {
  37527. source: "./media/characters/sayko/hindpaw.svg"
  37528. }
  37529. },
  37530. },
  37531. [
  37532. {
  37533. name: "Normal",
  37534. height: math.unit(35, "feet"),
  37535. default: true
  37536. },
  37537. {
  37538. name: "Colossus",
  37539. height: math.unit(100, "meters")
  37540. },
  37541. {
  37542. name: "\"Small\" Deity",
  37543. height: math.unit(1, "km")
  37544. },
  37545. {
  37546. name: "\"Large\" Deity",
  37547. height: math.unit(15, "km")
  37548. },
  37549. ]
  37550. ))
  37551. characterMakers.push(() => makeCharacter(
  37552. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37553. {
  37554. front: {
  37555. height: math.unit(6, "feet"),
  37556. weight: math.unit(250, "lb"),
  37557. name: "Front",
  37558. image: {
  37559. source: "./media/characters/mukiro/front.svg",
  37560. extra: 1368/1310,
  37561. bottom: 34/1402
  37562. }
  37563. },
  37564. },
  37565. [
  37566. {
  37567. name: "Normal",
  37568. height: math.unit(6, "feet"),
  37569. default: true
  37570. },
  37571. ]
  37572. ))
  37573. characterMakers.push(() => makeCharacter(
  37574. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37575. {
  37576. front: {
  37577. height: math.unit(12 + 4/12, "feet"),
  37578. name: "Front",
  37579. image: {
  37580. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37581. extra: 1346/1311,
  37582. bottom: 65/1411
  37583. }
  37584. },
  37585. },
  37586. [
  37587. {
  37588. name: "Base",
  37589. height: math.unit(12 + 4/12, "feet"),
  37590. default: true
  37591. },
  37592. {
  37593. name: "Macro",
  37594. height: math.unit(150, "feet")
  37595. },
  37596. {
  37597. name: "Mega",
  37598. height: math.unit(2, "miles")
  37599. },
  37600. {
  37601. name: "Demi God",
  37602. height: math.unit(4, "AU")
  37603. },
  37604. {
  37605. name: "God Size",
  37606. height: math.unit(1, "universe")
  37607. },
  37608. ]
  37609. ))
  37610. characterMakers.push(() => makeCharacter(
  37611. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  37612. {
  37613. front: {
  37614. height: math.unit(3 + 3/12, "feet"),
  37615. weight: math.unit(88, "lb"),
  37616. name: "Front",
  37617. image: {
  37618. source: "./media/characters/trey/front.svg",
  37619. extra: 1815/1509,
  37620. bottom: 60/1875
  37621. }
  37622. },
  37623. },
  37624. [
  37625. {
  37626. name: "Normal",
  37627. height: math.unit(3 + 3/12, "feet"),
  37628. default: true
  37629. },
  37630. ]
  37631. ))
  37632. characterMakers.push(() => makeCharacter(
  37633. { name: "Adelonda", species: ["dragon"], tags: ["anthro"] },
  37634. {
  37635. front: {
  37636. height: math.unit(4, "meters"),
  37637. name: "Front",
  37638. image: {
  37639. source: "./media/characters/adelonda/front.svg",
  37640. extra: 1077/982,
  37641. bottom: 39/1116
  37642. }
  37643. },
  37644. back: {
  37645. height: math.unit(4, "meters"),
  37646. name: "Back",
  37647. image: {
  37648. source: "./media/characters/adelonda/back.svg",
  37649. extra: 1105/1003,
  37650. bottom: 25/1130
  37651. }
  37652. },
  37653. },
  37654. [
  37655. {
  37656. name: "Normal",
  37657. height: math.unit(4, "meters"),
  37658. default: true
  37659. },
  37660. ]
  37661. ))
  37662. characterMakers.push(() => makeCharacter(
  37663. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  37664. {
  37665. front: {
  37666. height: math.unit(8 + 4/12, "feet"),
  37667. weight: math.unit(670, "lb"),
  37668. name: "Front",
  37669. image: {
  37670. source: "./media/characters/acadiel/front.svg",
  37671. extra: 1901/1595,
  37672. bottom: 142/2043
  37673. }
  37674. },
  37675. },
  37676. [
  37677. {
  37678. name: "Normal",
  37679. height: math.unit(8 + 4/12, "feet"),
  37680. default: true
  37681. },
  37682. {
  37683. name: "Macro",
  37684. height: math.unit(200, "feet")
  37685. },
  37686. ]
  37687. ))
  37688. characterMakers.push(() => makeCharacter(
  37689. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  37690. {
  37691. front: {
  37692. height: math.unit(6 + 2/12, "feet"),
  37693. weight: math.unit(185, "lb"),
  37694. name: "Front",
  37695. image: {
  37696. source: "./media/characters/kayne-ein/front.svg",
  37697. extra: 1780/1560,
  37698. bottom: 81/1861
  37699. }
  37700. },
  37701. },
  37702. [
  37703. {
  37704. name: "Normal",
  37705. height: math.unit(6 + 2/12, "feet"),
  37706. default: true
  37707. },
  37708. {
  37709. name: "Transformation Stage",
  37710. height: math.unit(15, "feet")
  37711. },
  37712. {
  37713. name: "Macro",
  37714. height: math.unit(150, "feet")
  37715. },
  37716. {
  37717. name: "Earth's Shadow",
  37718. height: math.unit(6200, "miles")
  37719. },
  37720. {
  37721. name: "Universal Demon",
  37722. height: math.unit(28e9, "parsecs")
  37723. },
  37724. {
  37725. name: "Multiverse God",
  37726. height: math.unit(3, "multiverses")
  37727. },
  37728. ]
  37729. ))
  37730. characterMakers.push(() => makeCharacter(
  37731. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  37732. {
  37733. front: {
  37734. height: math.unit(5 + 5/12, "feet"),
  37735. name: "Front",
  37736. image: {
  37737. source: "./media/characters/fawn/front.svg",
  37738. extra: 1873/1731,
  37739. bottom: 95/1968
  37740. }
  37741. },
  37742. back: {
  37743. height: math.unit(5 + 5/12, "feet"),
  37744. name: "Back",
  37745. image: {
  37746. source: "./media/characters/fawn/back.svg",
  37747. extra: 1813/1700,
  37748. bottom: 14/1827
  37749. }
  37750. },
  37751. hoof: {
  37752. height: math.unit(1.45, "feet"),
  37753. name: "Hoof",
  37754. image: {
  37755. source: "./media/characters/fawn/hoof.svg"
  37756. }
  37757. },
  37758. },
  37759. [
  37760. {
  37761. name: "Normal",
  37762. height: math.unit(5 + 5/12, "feet"),
  37763. default: true
  37764. },
  37765. ]
  37766. ))
  37767. characterMakers.push(() => makeCharacter(
  37768. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  37769. {
  37770. front: {
  37771. height: math.unit(2 + 5/12, "feet"),
  37772. name: "Front",
  37773. image: {
  37774. source: "./media/characters/orion/front.svg",
  37775. extra: 1366/1304,
  37776. bottom: 43/1409
  37777. }
  37778. },
  37779. paw: {
  37780. height: math.unit(0.52, "feet"),
  37781. name: "Paw",
  37782. image: {
  37783. source: "./media/characters/orion/paw.svg"
  37784. }
  37785. },
  37786. },
  37787. [
  37788. {
  37789. name: "Normal",
  37790. height: math.unit(2 + 5/12, "feet"),
  37791. default: true
  37792. },
  37793. ]
  37794. ))
  37795. characterMakers.push(() => makeCharacter(
  37796. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  37797. {
  37798. front: {
  37799. height: math.unit(5 + 10/12, "feet"),
  37800. name: "Front",
  37801. image: {
  37802. source: "./media/characters/vera/front.svg",
  37803. extra: 1680/1575,
  37804. bottom: 49/1729
  37805. }
  37806. },
  37807. back: {
  37808. height: math.unit(5 + 10/12, "feet"),
  37809. name: "Back",
  37810. image: {
  37811. source: "./media/characters/vera/back.svg",
  37812. extra: 1700/1588,
  37813. bottom: 18/1718
  37814. }
  37815. },
  37816. arcanine: {
  37817. height: math.unit(6 + 8/12, "feet"),
  37818. name: "Arcanine",
  37819. image: {
  37820. source: "./media/characters/vera/arcanine.svg",
  37821. extra: 1590/1511,
  37822. bottom: 71/1661
  37823. }
  37824. },
  37825. maw: {
  37826. height: math.unit(0.82, "feet"),
  37827. name: "Maw",
  37828. image: {
  37829. source: "./media/characters/vera/maw.svg"
  37830. }
  37831. },
  37832. mawArcanine: {
  37833. height: math.unit(0.97, "feet"),
  37834. name: "Maw (Arcanine)",
  37835. image: {
  37836. source: "./media/characters/vera/maw-arcanine.svg"
  37837. }
  37838. },
  37839. paw: {
  37840. height: math.unit(0.75, "feet"),
  37841. name: "Paw",
  37842. image: {
  37843. source: "./media/characters/vera/paw.svg"
  37844. }
  37845. },
  37846. pawprint: {
  37847. height: math.unit(0.52, "feet"),
  37848. name: "Pawprint",
  37849. image: {
  37850. source: "./media/characters/vera/pawprint.svg"
  37851. }
  37852. },
  37853. },
  37854. [
  37855. {
  37856. name: "Normal",
  37857. height: math.unit(5 + 10/12, "feet"),
  37858. default: true
  37859. },
  37860. {
  37861. name: "Macro",
  37862. height: math.unit(75, "feet")
  37863. },
  37864. ]
  37865. ))
  37866. characterMakers.push(() => makeCharacter(
  37867. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  37868. {
  37869. front: {
  37870. height: math.unit(4, "feet"),
  37871. weight: math.unit(40, "lb"),
  37872. name: "Front",
  37873. image: {
  37874. source: "./media/characters/orvan-rabbit/front.svg",
  37875. extra: 1896/1642,
  37876. bottom: 29/1925
  37877. }
  37878. },
  37879. },
  37880. [
  37881. {
  37882. name: "Normal",
  37883. height: math.unit(4, "feet"),
  37884. default: true
  37885. },
  37886. ]
  37887. ))
  37888. characterMakers.push(() => makeCharacter(
  37889. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  37890. {
  37891. front: {
  37892. height: math.unit(6, "feet"),
  37893. weight: math.unit(168, "lb"),
  37894. name: "Front",
  37895. image: {
  37896. source: "./media/characters/lisa/front.svg",
  37897. extra: 2065/1867,
  37898. bottom: 46/2111
  37899. }
  37900. },
  37901. back: {
  37902. height: math.unit(6, "feet"),
  37903. weight: math.unit(168, "lb"),
  37904. name: "Back",
  37905. image: {
  37906. source: "./media/characters/lisa/back.svg",
  37907. extra: 1982/1838,
  37908. bottom: 29/2011
  37909. }
  37910. },
  37911. maw: {
  37912. height: math.unit(0.81, "feet"),
  37913. name: "Maw",
  37914. image: {
  37915. source: "./media/characters/lisa/maw.svg"
  37916. }
  37917. },
  37918. paw: {
  37919. height: math.unit(0.9, "feet"),
  37920. name: "Paw",
  37921. image: {
  37922. source: "./media/characters/lisa/paw.svg"
  37923. }
  37924. },
  37925. caribousune: {
  37926. height: math.unit(7 + 2/12, "feet"),
  37927. weight: math.unit(268, "lb"),
  37928. name: "Caribousune",
  37929. image: {
  37930. source: "./media/characters/lisa/caribousune.svg",
  37931. extra: 1843/1633,
  37932. bottom: 29/1872
  37933. }
  37934. },
  37935. frontCaribousune: {
  37936. height: math.unit(7 + 2/12, "feet"),
  37937. weight: math.unit(268, "lb"),
  37938. name: "Front (Caribousune)",
  37939. image: {
  37940. source: "./media/characters/lisa/front-caribousune.svg",
  37941. extra: 1818/1638,
  37942. bottom: 52/1870
  37943. }
  37944. },
  37945. sideCaribousune: {
  37946. height: math.unit(7 + 2/12, "feet"),
  37947. weight: math.unit(268, "lb"),
  37948. name: "Side (Caribousune)",
  37949. image: {
  37950. source: "./media/characters/lisa/side-caribousune.svg",
  37951. extra: 1851/1635,
  37952. bottom: 16/1867
  37953. }
  37954. },
  37955. backCaribousune: {
  37956. height: math.unit(7 + 2/12, "feet"),
  37957. weight: math.unit(268, "lb"),
  37958. name: "Back (Caribousune)",
  37959. image: {
  37960. source: "./media/characters/lisa/back-caribousune.svg",
  37961. extra: 1801/1604,
  37962. bottom: 44/1845
  37963. }
  37964. },
  37965. caribou: {
  37966. height: math.unit(7 + 2/12, "feet"),
  37967. weight: math.unit(268, "lb"),
  37968. name: "Caribou",
  37969. image: {
  37970. source: "./media/characters/lisa/caribou.svg",
  37971. extra: 1843/1633,
  37972. bottom: 29/1872
  37973. }
  37974. },
  37975. frontCaribou: {
  37976. height: math.unit(7 + 2/12, "feet"),
  37977. weight: math.unit(268, "lb"),
  37978. name: "Front (Caribou)",
  37979. image: {
  37980. source: "./media/characters/lisa/front-caribou.svg",
  37981. extra: 1818/1638,
  37982. bottom: 52/1870
  37983. }
  37984. },
  37985. sideCaribou: {
  37986. height: math.unit(7 + 2/12, "feet"),
  37987. weight: math.unit(268, "lb"),
  37988. name: "Side (Caribou)",
  37989. image: {
  37990. source: "./media/characters/lisa/side-caribou.svg",
  37991. extra: 1851/1635,
  37992. bottom: 16/1867
  37993. }
  37994. },
  37995. backCaribou: {
  37996. height: math.unit(7 + 2/12, "feet"),
  37997. weight: math.unit(268, "lb"),
  37998. name: "Back (Caribou)",
  37999. image: {
  38000. source: "./media/characters/lisa/back-caribou.svg",
  38001. extra: 1801/1604,
  38002. bottom: 44/1845
  38003. }
  38004. },
  38005. mawCaribou: {
  38006. height: math.unit(1.45, "feet"),
  38007. name: "Maw (Caribou)",
  38008. image: {
  38009. source: "./media/characters/lisa/maw-caribou.svg"
  38010. }
  38011. },
  38012. mawCaribousune: {
  38013. height: math.unit(1.45, "feet"),
  38014. name: "Maw (Caribousune)",
  38015. image: {
  38016. source: "./media/characters/lisa/maw-caribousune.svg"
  38017. }
  38018. },
  38019. pawCaribousune: {
  38020. height: math.unit(1.61, "feet"),
  38021. name: "Paw (Caribou)",
  38022. image: {
  38023. source: "./media/characters/lisa/paw-caribousune.svg"
  38024. }
  38025. },
  38026. },
  38027. [
  38028. {
  38029. name: "Normal",
  38030. height: math.unit(6, "feet")
  38031. },
  38032. {
  38033. name: "God Size",
  38034. height: math.unit(72, "feet"),
  38035. default: true
  38036. },
  38037. {
  38038. name: "Towering",
  38039. height: math.unit(288, "feet")
  38040. },
  38041. {
  38042. name: "City Size",
  38043. height: math.unit(48384, "feet")
  38044. },
  38045. {
  38046. name: "Continental",
  38047. height: math.unit(4200, "miles")
  38048. },
  38049. {
  38050. name: "Planet Eater",
  38051. height: math.unit(42, "earths")
  38052. },
  38053. {
  38054. name: "Star Swallower",
  38055. height: math.unit(42, "solarradii")
  38056. },
  38057. {
  38058. name: "System Swallower",
  38059. height: math.unit(84000, "AU")
  38060. },
  38061. {
  38062. name: "Galaxy Gobbler",
  38063. height: math.unit(42, "galaxies")
  38064. },
  38065. {
  38066. name: "Universe Devourer",
  38067. height: math.unit(42, "universes")
  38068. },
  38069. {
  38070. name: "Multiverse Muncher",
  38071. height: math.unit(42, "multiverses")
  38072. },
  38073. ]
  38074. ))
  38075. characterMakers.push(() => makeCharacter(
  38076. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  38077. {
  38078. front: {
  38079. height: math.unit(36, "feet"),
  38080. name: "Front",
  38081. image: {
  38082. source: "./media/characters/shadow-rat/front.svg",
  38083. extra: 1845/1758,
  38084. bottom: 83/1928
  38085. }
  38086. },
  38087. },
  38088. [
  38089. {
  38090. name: "Macro",
  38091. height: math.unit(36, "feet"),
  38092. default: true
  38093. },
  38094. ]
  38095. ))
  38096. characterMakers.push(() => makeCharacter(
  38097. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  38098. {
  38099. side: {
  38100. height: math.unit(8, "feet"),
  38101. weight: math.unit(2630, "lb"),
  38102. name: "Side",
  38103. image: {
  38104. source: "./media/characters/torallia/side.svg",
  38105. extra: 2164/2021,
  38106. bottom: 371/2535
  38107. }
  38108. },
  38109. },
  38110. [
  38111. {
  38112. name: "Mortal Interaction",
  38113. height: math.unit(8, "feet")
  38114. },
  38115. {
  38116. name: "Natural",
  38117. height: math.unit(24, "feet"),
  38118. default: true
  38119. },
  38120. {
  38121. name: "Giant",
  38122. height: math.unit(80, "feet")
  38123. },
  38124. {
  38125. name: "Kaiju",
  38126. height: math.unit(240, "feet")
  38127. },
  38128. {
  38129. name: "Macro",
  38130. height: math.unit(800, "feet")
  38131. },
  38132. {
  38133. name: "Macro+",
  38134. height: math.unit(2400, "feet")
  38135. },
  38136. {
  38137. name: "Macro++",
  38138. height: math.unit(8000, "feet")
  38139. },
  38140. {
  38141. name: "City-Crushing",
  38142. height: math.unit(24000, "feet")
  38143. },
  38144. {
  38145. name: "Mountain-Mashing",
  38146. height: math.unit(80000, "feet")
  38147. },
  38148. {
  38149. name: "District Demolisher",
  38150. height: math.unit(240000, "feet")
  38151. },
  38152. {
  38153. name: "Tri-County Terror",
  38154. height: math.unit(800000, "feet")
  38155. },
  38156. {
  38157. name: "State Smasher",
  38158. height: math.unit(2.4e6, "feet")
  38159. },
  38160. {
  38161. name: "Nation Nemesis",
  38162. height: math.unit(8e6, "feet")
  38163. },
  38164. {
  38165. name: "Continent Cracker",
  38166. height: math.unit(2.4e7, "feet")
  38167. },
  38168. {
  38169. name: "Planet-Pillaging",
  38170. height: math.unit(8e7, "feet")
  38171. },
  38172. {
  38173. name: "Earth-Eclipsing",
  38174. height: math.unit(2.4e8, "feet")
  38175. },
  38176. {
  38177. name: "Jovian-Jostling",
  38178. height: math.unit(8e8, "feet")
  38179. },
  38180. {
  38181. name: "Gas Giant Gulper",
  38182. height: math.unit(2.4e9, "feet")
  38183. },
  38184. {
  38185. name: "Astral Annihilator",
  38186. height: math.unit(8e9, "feet")
  38187. },
  38188. {
  38189. name: "Celestial Conqueror",
  38190. height: math.unit(2.4e10, "feet")
  38191. },
  38192. {
  38193. name: "Sol-Swallowing",
  38194. height: math.unit(8e10, "feet")
  38195. },
  38196. {
  38197. name: "Hunter of the Heavens",
  38198. height: math.unit(2.4e13, "feet")
  38199. },
  38200. ]
  38201. ))
  38202. characterMakers.push(() => makeCharacter(
  38203. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38204. {
  38205. front: {
  38206. height: math.unit(6 + 8/12, "feet"),
  38207. name: "Front",
  38208. image: {
  38209. source: "./media/characters/rebecca-pawlson/front.svg",
  38210. extra: 1737/1596,
  38211. bottom: 107/1844
  38212. }
  38213. },
  38214. back: {
  38215. height: math.unit(6 + 8/12, "feet"),
  38216. name: "Back",
  38217. image: {
  38218. source: "./media/characters/rebecca-pawlson/back.svg",
  38219. extra: 1702/1523,
  38220. bottom: 86/1788
  38221. }
  38222. },
  38223. },
  38224. [
  38225. {
  38226. name: "Normal",
  38227. height: math.unit(6 + 8/12, "feet")
  38228. },
  38229. {
  38230. name: "Mini Macro",
  38231. height: math.unit(10, "feet"),
  38232. default: true
  38233. },
  38234. {
  38235. name: "Macro",
  38236. height: math.unit(100, "feet")
  38237. },
  38238. {
  38239. name: "Mega Macro",
  38240. height: math.unit(2500, "feet")
  38241. },
  38242. {
  38243. name: "Giga Macro",
  38244. height: math.unit(50, "miles")
  38245. },
  38246. ]
  38247. ))
  38248. characterMakers.push(() => makeCharacter(
  38249. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38250. {
  38251. front: {
  38252. height: math.unit(7 + 6/12, "feet"),
  38253. weight: math.unit(600, "lb"),
  38254. name: "Front",
  38255. image: {
  38256. source: "./media/characters/moxie-nova/front.svg",
  38257. extra: 1734/1652,
  38258. bottom: 41/1775
  38259. }
  38260. },
  38261. },
  38262. [
  38263. {
  38264. name: "Normal",
  38265. height: math.unit(7 + 6/12, "feet"),
  38266. default: true
  38267. },
  38268. ]
  38269. ))
  38270. characterMakers.push(() => makeCharacter(
  38271. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  38272. {
  38273. goat: {
  38274. height: math.unit(4, "feet"),
  38275. weight: math.unit(180, "lb"),
  38276. name: "Goat",
  38277. image: {
  38278. source: "./media/characters/tiffany/goat.svg",
  38279. extra: 1845/1595,
  38280. bottom: 106/1951
  38281. }
  38282. },
  38283. front: {
  38284. height: math.unit(5, "feet"),
  38285. weight: math.unit(150, "lb"),
  38286. name: "Foxcoon",
  38287. image: {
  38288. source: "./media/characters/tiffany/foxcoon.svg",
  38289. extra: 1941/1845,
  38290. bottom: 58/1999
  38291. }
  38292. },
  38293. },
  38294. [
  38295. {
  38296. name: "Normal",
  38297. height: math.unit(5, "feet"),
  38298. default: true
  38299. },
  38300. ]
  38301. ))
  38302. characterMakers.push(() => makeCharacter(
  38303. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  38304. {
  38305. front: {
  38306. height: math.unit(8, "feet"),
  38307. weight: math.unit(300, "lb"),
  38308. name: "Front",
  38309. image: {
  38310. source: "./media/characters/raxinath/front.svg",
  38311. extra: 1407/1309,
  38312. bottom: 39/1446
  38313. }
  38314. },
  38315. back: {
  38316. height: math.unit(8, "feet"),
  38317. weight: math.unit(300, "lb"),
  38318. name: "Back",
  38319. image: {
  38320. source: "./media/characters/raxinath/back.svg",
  38321. extra: 1405/1315,
  38322. bottom: 9/1414
  38323. }
  38324. },
  38325. },
  38326. [
  38327. {
  38328. name: "Speck",
  38329. height: math.unit(0.5, "nm")
  38330. },
  38331. {
  38332. name: "Micro",
  38333. height: math.unit(3, "inches")
  38334. },
  38335. {
  38336. name: "Kobold",
  38337. height: math.unit(3, "feet")
  38338. },
  38339. {
  38340. name: "Normal",
  38341. height: math.unit(8, "feet"),
  38342. default: true
  38343. },
  38344. {
  38345. name: "Giant",
  38346. height: math.unit(50, "feet")
  38347. },
  38348. {
  38349. name: "Macro",
  38350. height: math.unit(1000, "feet")
  38351. },
  38352. {
  38353. name: "Megamacro",
  38354. height: math.unit(1, "mile")
  38355. },
  38356. ]
  38357. ))
  38358. characterMakers.push(() => makeCharacter(
  38359. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  38360. {
  38361. front: {
  38362. height: math.unit(10, "feet"),
  38363. weight: math.unit(1442, "lb"),
  38364. name: "Front",
  38365. image: {
  38366. source: "./media/characters/mal-dragon/front.svg",
  38367. extra: 1515/1444,
  38368. bottom: 113/1628
  38369. }
  38370. },
  38371. back: {
  38372. height: math.unit(10, "feet"),
  38373. weight: math.unit(1442, "lb"),
  38374. name: "Back",
  38375. image: {
  38376. source: "./media/characters/mal-dragon/back.svg",
  38377. extra: 1527/1434,
  38378. bottom: 25/1552
  38379. }
  38380. },
  38381. },
  38382. [
  38383. {
  38384. name: "Mortal Interaction",
  38385. height: math.unit(10, "feet"),
  38386. default: true
  38387. },
  38388. {
  38389. name: "Large",
  38390. height: math.unit(30, "feet")
  38391. },
  38392. {
  38393. name: "Kaiju",
  38394. height: math.unit(300, "feet")
  38395. },
  38396. {
  38397. name: "Megamacro",
  38398. height: math.unit(10000, "feet")
  38399. },
  38400. {
  38401. name: "Continent Cracker",
  38402. height: math.unit(30000000, "feet")
  38403. },
  38404. {
  38405. name: "Sol-Swallowing",
  38406. height: math.unit(1e11, "feet")
  38407. },
  38408. {
  38409. name: "Light Universal",
  38410. height: math.unit(5, "universes")
  38411. },
  38412. {
  38413. name: "Universe Atoms",
  38414. height: math.unit(1.829e9, "universes")
  38415. },
  38416. {
  38417. name: "Light Multiversal",
  38418. height: math.unit(5, "multiverses")
  38419. },
  38420. {
  38421. name: "Multiverse Atoms",
  38422. height: math.unit(1.829e9, "multiverses")
  38423. },
  38424. {
  38425. name: "Fabric of Time",
  38426. height: math.unit(1e262, "multiverses")
  38427. },
  38428. ]
  38429. ))
  38430. characterMakers.push(() => makeCharacter(
  38431. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38432. {
  38433. front: {
  38434. height: math.unit(9, "feet"),
  38435. weight: math.unit(1050, "lb"),
  38436. name: "Front",
  38437. image: {
  38438. source: "./media/characters/tabitha/front.svg",
  38439. extra: 2083/1994,
  38440. bottom: 68/2151
  38441. }
  38442. },
  38443. },
  38444. [
  38445. {
  38446. name: "Baseline",
  38447. height: math.unit(9, "feet"),
  38448. default: true
  38449. },
  38450. {
  38451. name: "Giant",
  38452. height: math.unit(90, "feet")
  38453. },
  38454. {
  38455. name: "Macro",
  38456. height: math.unit(900, "feet")
  38457. },
  38458. {
  38459. name: "Megamacro",
  38460. height: math.unit(9000, "feet")
  38461. },
  38462. {
  38463. name: "City-Crushing",
  38464. height: math.unit(27000, "feet")
  38465. },
  38466. {
  38467. name: "Mountain-Mashing",
  38468. height: math.unit(90000, "feet")
  38469. },
  38470. {
  38471. name: "Nation Nemesis",
  38472. height: math.unit(9e6, "feet")
  38473. },
  38474. {
  38475. name: "Continent Cracker",
  38476. height: math.unit(27e6, "feet")
  38477. },
  38478. {
  38479. name: "Earth-Eclipsing",
  38480. height: math.unit(2.7e8, "feet")
  38481. },
  38482. {
  38483. name: "Gas Giant Gulper",
  38484. height: math.unit(2.7e9, "feet")
  38485. },
  38486. {
  38487. name: "Sol-Swallowing",
  38488. height: math.unit(9e10, "feet")
  38489. },
  38490. {
  38491. name: "Galaxy Gulper",
  38492. height: math.unit(9, "galaxies")
  38493. },
  38494. {
  38495. name: "Cosmos Churner",
  38496. height: math.unit(9, "universes")
  38497. },
  38498. ]
  38499. ))
  38500. characterMakers.push(() => makeCharacter(
  38501. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38502. {
  38503. front: {
  38504. height: math.unit(160, "cm"),
  38505. weight: math.unit(55, "kg"),
  38506. name: "Front",
  38507. image: {
  38508. source: "./media/characters/tow/front.svg",
  38509. extra: 1751/1722,
  38510. bottom: 74/1825
  38511. }
  38512. },
  38513. },
  38514. [
  38515. {
  38516. name: "Norm",
  38517. height: math.unit(160, "cm")
  38518. },
  38519. {
  38520. name: "Casual",
  38521. height: math.unit(3200, "m"),
  38522. default: true
  38523. },
  38524. {
  38525. name: "Show-Off",
  38526. height: math.unit(160, "km")
  38527. },
  38528. ]
  38529. ))
  38530. characterMakers.push(() => makeCharacter(
  38531. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38532. {
  38533. front: {
  38534. height: math.unit(7 + 11/12, "feet"),
  38535. weight: math.unit(342.8, "lb"),
  38536. name: "Front",
  38537. image: {
  38538. source: "./media/characters/vivian-orca-dragon/front.svg",
  38539. extra: 1890/1865,
  38540. bottom: 28/1918
  38541. }
  38542. },
  38543. },
  38544. [
  38545. {
  38546. name: "Micro",
  38547. height: math.unit(5, "inches")
  38548. },
  38549. {
  38550. name: "Normal",
  38551. height: math.unit(7 + 11/12, "feet"),
  38552. default: true
  38553. },
  38554. {
  38555. name: "Macro",
  38556. height: math.unit(395 + 7/12, "feet")
  38557. },
  38558. ]
  38559. ))
  38560. characterMakers.push(() => makeCharacter(
  38561. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38562. {
  38563. side: {
  38564. height: math.unit(10, "feet"),
  38565. weight: math.unit(1442, "lb"),
  38566. name: "Side",
  38567. image: {
  38568. source: "./media/characters/lotherakon/side.svg",
  38569. extra: 1604/1497,
  38570. bottom: 89/1693
  38571. }
  38572. },
  38573. },
  38574. [
  38575. {
  38576. name: "Mortal Interaction",
  38577. height: math.unit(10, "feet")
  38578. },
  38579. {
  38580. name: "Large",
  38581. height: math.unit(30, "feet"),
  38582. default: true
  38583. },
  38584. {
  38585. name: "Giant",
  38586. height: math.unit(100, "feet")
  38587. },
  38588. {
  38589. name: "Kaiju",
  38590. height: math.unit(300, "feet")
  38591. },
  38592. {
  38593. name: "Macro",
  38594. height: math.unit(1000, "feet")
  38595. },
  38596. {
  38597. name: "Macro+",
  38598. height: math.unit(3000, "feet")
  38599. },
  38600. {
  38601. name: "Megamacro",
  38602. height: math.unit(10000, "feet")
  38603. },
  38604. {
  38605. name: "City-Crushing",
  38606. height: math.unit(30000, "feet")
  38607. },
  38608. {
  38609. name: "Continent Cracker",
  38610. height: math.unit(30e6, "feet")
  38611. },
  38612. {
  38613. name: "Earth Eclipsing",
  38614. height: math.unit(3e8, "feet")
  38615. },
  38616. {
  38617. name: "Gas Giant Gulper",
  38618. height: math.unit(3e9, "feet")
  38619. },
  38620. {
  38621. name: "Sol-Swallowing",
  38622. height: math.unit(1e11, "feet")
  38623. },
  38624. {
  38625. name: "System Swallower",
  38626. height: math.unit(3e14, "feet")
  38627. },
  38628. {
  38629. name: "Galaxy Gulper",
  38630. height: math.unit(10, "galaxies")
  38631. },
  38632. {
  38633. name: "Light Universal",
  38634. height: math.unit(5, "universes")
  38635. },
  38636. {
  38637. name: "Universe Palm",
  38638. height: math.unit(20, "universes")
  38639. },
  38640. {
  38641. name: "Light Multiversal",
  38642. height: math.unit(5, "multiverses")
  38643. },
  38644. {
  38645. name: "Multiverse Palm",
  38646. height: math.unit(20, "multiverses")
  38647. },
  38648. {
  38649. name: "Inferno Incarnate",
  38650. height: math.unit(1e7, "multiverses")
  38651. },
  38652. ]
  38653. ))
  38654. characterMakers.push(() => makeCharacter(
  38655. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  38656. {
  38657. front: {
  38658. height: math.unit(8, "feet"),
  38659. weight: math.unit(1200, "lb"),
  38660. name: "Front",
  38661. image: {
  38662. source: "./media/characters/malithee/front.svg",
  38663. extra: 1675/1640,
  38664. bottom: 162/1837
  38665. }
  38666. },
  38667. },
  38668. [
  38669. {
  38670. name: "Mortal Interaction",
  38671. height: math.unit(8, "feet"),
  38672. default: true
  38673. },
  38674. {
  38675. name: "Large",
  38676. height: math.unit(24, "feet")
  38677. },
  38678. {
  38679. name: "Kaiju",
  38680. height: math.unit(240, "feet")
  38681. },
  38682. {
  38683. name: "Megamacro",
  38684. height: math.unit(8000, "feet")
  38685. },
  38686. {
  38687. name: "Continent Cracker",
  38688. height: math.unit(24e6, "feet")
  38689. },
  38690. {
  38691. name: "Earth-Eclipsing",
  38692. height: math.unit(2.4e8, "feet")
  38693. },
  38694. {
  38695. name: "Sol-Swallowing",
  38696. height: math.unit(8e10, "feet")
  38697. },
  38698. {
  38699. name: "Galaxy Gulper",
  38700. height: math.unit(8, "galaxies")
  38701. },
  38702. {
  38703. name: "Light Universal",
  38704. height: math.unit(4, "universes")
  38705. },
  38706. {
  38707. name: "Universe Atoms",
  38708. height: math.unit(1.829e9, "universes")
  38709. },
  38710. {
  38711. name: "Light Multiversal",
  38712. height: math.unit(4, "multiverses")
  38713. },
  38714. {
  38715. name: "Multiverse Atoms",
  38716. height: math.unit(1.829e9, "multiverses")
  38717. },
  38718. {
  38719. name: "Nigh-Omnipresence",
  38720. height: math.unit(8e261, "multiverses")
  38721. },
  38722. ]
  38723. ))
  38724. characterMakers.push(() => makeCharacter(
  38725. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  38726. {
  38727. front: {
  38728. height: math.unit(10, "feet"),
  38729. weight: math.unit(1500, "lb"),
  38730. name: "Front",
  38731. image: {
  38732. source: "./media/characters/miles-thestia/front.svg",
  38733. extra: 1812/1727,
  38734. bottom: 86/1898
  38735. }
  38736. },
  38737. back: {
  38738. height: math.unit(10, "feet"),
  38739. weight: math.unit(1500, "lb"),
  38740. name: "Back",
  38741. image: {
  38742. source: "./media/characters/miles-thestia/back.svg",
  38743. extra: 1799/1690,
  38744. bottom: 47/1846
  38745. }
  38746. },
  38747. frontNsfw: {
  38748. height: math.unit(10, "feet"),
  38749. weight: math.unit(1500, "lb"),
  38750. name: "Front (NSFW)",
  38751. image: {
  38752. source: "./media/characters/miles-thestia/front-nsfw.svg",
  38753. extra: 1812/1727,
  38754. bottom: 86/1898
  38755. }
  38756. },
  38757. },
  38758. [
  38759. {
  38760. name: "Mini-Macro",
  38761. height: math.unit(10, "feet"),
  38762. default: true
  38763. },
  38764. ]
  38765. ))
  38766. characterMakers.push(() => makeCharacter(
  38767. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  38768. {
  38769. front: {
  38770. height: math.unit(25, "feet"),
  38771. name: "Front",
  38772. image: {
  38773. source: "./media/characters/titan-s-wulf/front.svg",
  38774. extra: 1560/1484,
  38775. bottom: 76/1636
  38776. }
  38777. },
  38778. },
  38779. [
  38780. {
  38781. name: "Smallest",
  38782. height: math.unit(25, "feet"),
  38783. default: true
  38784. },
  38785. {
  38786. name: "Normal",
  38787. height: math.unit(200, "feet")
  38788. },
  38789. {
  38790. name: "Macro",
  38791. height: math.unit(200000, "feet")
  38792. },
  38793. {
  38794. name: "Multiversal Original",
  38795. height: math.unit(10000, "multiverses")
  38796. },
  38797. ]
  38798. ))
  38799. characterMakers.push(() => makeCharacter(
  38800. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  38801. {
  38802. front: {
  38803. height: math.unit(8, "feet"),
  38804. weight: math.unit(553, "lb"),
  38805. name: "Front",
  38806. image: {
  38807. source: "./media/characters/tawendeh/front.svg",
  38808. extra: 2365/2268,
  38809. bottom: 83/2448
  38810. }
  38811. },
  38812. frontClothed: {
  38813. height: math.unit(8, "feet"),
  38814. weight: math.unit(553, "lb"),
  38815. name: "Front (Clothed)",
  38816. image: {
  38817. source: "./media/characters/tawendeh/front-clothed.svg",
  38818. extra: 2365/2268,
  38819. bottom: 83/2448
  38820. }
  38821. },
  38822. back: {
  38823. height: math.unit(8, "feet"),
  38824. weight: math.unit(553, "lb"),
  38825. name: "Back",
  38826. image: {
  38827. source: "./media/characters/tawendeh/back.svg",
  38828. extra: 2397/2294,
  38829. bottom: 42/2439
  38830. }
  38831. },
  38832. },
  38833. [
  38834. {
  38835. name: "Mortal Interaction",
  38836. height: math.unit(8, "feet"),
  38837. default: true
  38838. },
  38839. {
  38840. name: "Giant",
  38841. height: math.unit(80, "feet")
  38842. },
  38843. {
  38844. name: "Macro",
  38845. height: math.unit(800, "feet")
  38846. },
  38847. {
  38848. name: "Megamacro",
  38849. height: math.unit(8000, "feet")
  38850. },
  38851. {
  38852. name: "City-Crushing",
  38853. height: math.unit(24000, "feet")
  38854. },
  38855. {
  38856. name: "Mountain-Mashing",
  38857. height: math.unit(80000, "feet")
  38858. },
  38859. {
  38860. name: "Nation Nemesis",
  38861. height: math.unit(8e6, "feet")
  38862. },
  38863. {
  38864. name: "Continent Cracker",
  38865. height: math.unit(24e6, "feet")
  38866. },
  38867. {
  38868. name: "Earth-Eclipsing",
  38869. height: math.unit(2.4e8, "feet")
  38870. },
  38871. {
  38872. name: "Gas Giant Gulper",
  38873. height: math.unit(2.4e9, "feet")
  38874. },
  38875. {
  38876. name: "Sol-Swallowing",
  38877. height: math.unit(8e10, "feet")
  38878. },
  38879. {
  38880. name: "Galaxy Gulper",
  38881. height: math.unit(8, "galaxies")
  38882. },
  38883. {
  38884. name: "Cosmos Churner",
  38885. height: math.unit(8, "universes")
  38886. },
  38887. {
  38888. name: "Omnipotent Otter",
  38889. height: math.unit(80, "universes")
  38890. },
  38891. ]
  38892. ))
  38893. characterMakers.push(() => makeCharacter(
  38894. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  38895. {
  38896. front: {
  38897. height: math.unit(2.6, "meters"),
  38898. weight: math.unit(900, "kg"),
  38899. name: "Front",
  38900. image: {
  38901. source: "./media/characters/neesha/front.svg",
  38902. extra: 1803/1653,
  38903. bottom: 128/1931
  38904. }
  38905. },
  38906. },
  38907. [
  38908. {
  38909. name: "Normal",
  38910. height: math.unit(2.6, "meters"),
  38911. default: true
  38912. },
  38913. {
  38914. name: "Macro",
  38915. height: math.unit(50, "meters")
  38916. },
  38917. ]
  38918. ))
  38919. characterMakers.push(() => makeCharacter(
  38920. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  38921. {
  38922. front: {
  38923. height: math.unit(5, "feet"),
  38924. weight: math.unit(185, "lb"),
  38925. name: "Front",
  38926. image: {
  38927. source: "./media/characters/kyera/front.svg",
  38928. extra: 1875/1790,
  38929. bottom: 96/1971
  38930. }
  38931. },
  38932. },
  38933. [
  38934. {
  38935. name: "Normal",
  38936. height: math.unit(5, "feet"),
  38937. default: true
  38938. },
  38939. ]
  38940. ))
  38941. characterMakers.push(() => makeCharacter(
  38942. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  38943. {
  38944. front: {
  38945. height: math.unit(7 + 6/12, "feet"),
  38946. weight: math.unit(540, "lb"),
  38947. name: "Front",
  38948. image: {
  38949. source: "./media/characters/yuko/front.svg",
  38950. extra: 1282/1222,
  38951. bottom: 101/1383
  38952. }
  38953. },
  38954. frontClothed: {
  38955. height: math.unit(7 + 6/12, "feet"),
  38956. weight: math.unit(540, "lb"),
  38957. name: "Front (Clothed)",
  38958. image: {
  38959. source: "./media/characters/yuko/front-clothed.svg",
  38960. extra: 1282/1222,
  38961. bottom: 101/1383
  38962. }
  38963. },
  38964. },
  38965. [
  38966. {
  38967. name: "Normal",
  38968. height: math.unit(7 + 6/12, "feet"),
  38969. default: true
  38970. },
  38971. {
  38972. name: "Macro",
  38973. height: math.unit(26 + 9/12, "feet")
  38974. },
  38975. {
  38976. name: "Megamacro",
  38977. height: math.unit(300, "feet")
  38978. },
  38979. {
  38980. name: "Gigamacro",
  38981. height: math.unit(5000, "feet")
  38982. },
  38983. {
  38984. name: "Planetary",
  38985. height: math.unit(10000, "miles")
  38986. },
  38987. ]
  38988. ))
  38989. characterMakers.push(() => makeCharacter(
  38990. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  38991. {
  38992. front: {
  38993. height: math.unit(8 + 2/12, "feet"),
  38994. weight: math.unit(600, "lb"),
  38995. name: "Front",
  38996. image: {
  38997. source: "./media/characters/deam-nitrel/front.svg",
  38998. extra: 1308/1234,
  38999. bottom: 125/1433
  39000. }
  39001. },
  39002. },
  39003. [
  39004. {
  39005. name: "Normal",
  39006. height: math.unit(8 + 2/12, "feet"),
  39007. default: true
  39008. },
  39009. ]
  39010. ))
  39011. characterMakers.push(() => makeCharacter(
  39012. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  39013. {
  39014. front: {
  39015. height: math.unit(6.1, "feet"),
  39016. weight: math.unit(180, "lb"),
  39017. name: "Front",
  39018. image: {
  39019. source: "./media/characters/skyress/front.svg",
  39020. extra: 1045/915,
  39021. bottom: 28/1073
  39022. }
  39023. },
  39024. maw: {
  39025. height: math.unit(1, "feet"),
  39026. name: "Maw",
  39027. image: {
  39028. source: "./media/characters/skyress/maw.svg"
  39029. }
  39030. },
  39031. },
  39032. [
  39033. {
  39034. name: "Normal",
  39035. height: math.unit(6.1, "feet"),
  39036. default: true
  39037. },
  39038. {
  39039. name: "Macro",
  39040. height: math.unit(200, "feet")
  39041. },
  39042. ]
  39043. ))
  39044. characterMakers.push(() => makeCharacter(
  39045. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  39046. {
  39047. front: {
  39048. height: math.unit(4 + 2/12, "feet"),
  39049. weight: math.unit(40, "kg"),
  39050. name: "Front",
  39051. image: {
  39052. source: "./media/characters/amethyst-jones/front.svg",
  39053. extra: 1220/1150,
  39054. bottom: 101/1321
  39055. }
  39056. },
  39057. },
  39058. [
  39059. {
  39060. name: "Normal",
  39061. height: math.unit(4 + 2/12, "feet"),
  39062. default: true
  39063. },
  39064. ]
  39065. ))
  39066. characterMakers.push(() => makeCharacter(
  39067. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  39068. {
  39069. front: {
  39070. height: math.unit(1.7, "m"),
  39071. weight: math.unit(135, "lb"),
  39072. name: "Front",
  39073. image: {
  39074. source: "./media/characters/jade/front.svg",
  39075. extra: 1818/1767,
  39076. bottom: 32/1850
  39077. }
  39078. },
  39079. back: {
  39080. height: math.unit(1.7, "m"),
  39081. weight: math.unit(135, "lb"),
  39082. name: "Back",
  39083. image: {
  39084. source: "./media/characters/jade/back.svg",
  39085. extra: 1869/1809,
  39086. bottom: 35/1904
  39087. }
  39088. },
  39089. hand: {
  39090. height: math.unit(0.24, "m"),
  39091. name: "Hand",
  39092. image: {
  39093. source: "./media/characters/jade/hand.svg"
  39094. }
  39095. },
  39096. foot: {
  39097. height: math.unit(0.263, "m"),
  39098. name: "Foot",
  39099. image: {
  39100. source: "./media/characters/jade/foot.svg"
  39101. }
  39102. },
  39103. dick: {
  39104. height: math.unit(0.47, "m"),
  39105. name: "Dick",
  39106. image: {
  39107. source: "./media/characters/jade/dick.svg"
  39108. }
  39109. },
  39110. },
  39111. [
  39112. {
  39113. name: "Micro",
  39114. height: math.unit(22, "cm")
  39115. },
  39116. {
  39117. name: "Normal",
  39118. height: math.unit(1.7, "m"),
  39119. default: true
  39120. },
  39121. {
  39122. name: "Macro",
  39123. height: math.unit(152, "m")
  39124. },
  39125. ]
  39126. ))
  39127. characterMakers.push(() => makeCharacter(
  39128. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  39129. {
  39130. front: {
  39131. height: math.unit(100, "miles"),
  39132. weight: math.unit(20000, "tons"),
  39133. name: "Front",
  39134. image: {
  39135. source: "./media/characters/cookie/front.svg",
  39136. extra: 1125/1070,
  39137. bottom: 30/1155
  39138. }
  39139. },
  39140. },
  39141. [
  39142. {
  39143. name: "Big",
  39144. height: math.unit(50, "feet")
  39145. },
  39146. {
  39147. name: "Macro",
  39148. height: math.unit(100, "miles"),
  39149. default: true
  39150. },
  39151. {
  39152. name: "Megamacro",
  39153. height: math.unit(90000, "miles")
  39154. },
  39155. ]
  39156. ))
  39157. characterMakers.push(() => makeCharacter(
  39158. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  39159. {
  39160. front: {
  39161. height: math.unit(6, "feet"),
  39162. weight: math.unit(145, "lb"),
  39163. name: "Front",
  39164. image: {
  39165. source: "./media/characters/farzian/front.svg",
  39166. extra: 1902/1693,
  39167. bottom: 108/2010
  39168. }
  39169. },
  39170. },
  39171. [
  39172. {
  39173. name: "Macro",
  39174. height: math.unit(500, "feet"),
  39175. default: true
  39176. },
  39177. ]
  39178. ))
  39179. characterMakers.push(() => makeCharacter(
  39180. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  39181. {
  39182. front: {
  39183. height: math.unit(3 + 6/12, "feet"),
  39184. weight: math.unit(50, "lb"),
  39185. name: "Front",
  39186. image: {
  39187. source: "./media/characters/kimberly-tilson/front.svg",
  39188. extra: 1400/1322,
  39189. bottom: 36/1436
  39190. }
  39191. },
  39192. back: {
  39193. height: math.unit(3 + 6/12, "feet"),
  39194. weight: math.unit(50, "lb"),
  39195. name: "Back",
  39196. image: {
  39197. source: "./media/characters/kimberly-tilson/back.svg",
  39198. extra: 1370/1307,
  39199. bottom: 20/1390
  39200. }
  39201. },
  39202. },
  39203. [
  39204. {
  39205. name: "Normal",
  39206. height: math.unit(3 + 6/12, "feet"),
  39207. default: true
  39208. },
  39209. ]
  39210. ))
  39211. characterMakers.push(() => makeCharacter(
  39212. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39213. {
  39214. front: {
  39215. height: math.unit(1148, "feet"),
  39216. weight: math.unit(34057, "lb"),
  39217. name: "Front",
  39218. image: {
  39219. source: "./media/characters/harthos/front.svg",
  39220. extra: 1391/1339,
  39221. bottom: 13/1404
  39222. }
  39223. },
  39224. },
  39225. [
  39226. {
  39227. name: "Macro",
  39228. height: math.unit(1148, "feet"),
  39229. default: true
  39230. },
  39231. ]
  39232. ))
  39233. characterMakers.push(() => makeCharacter(
  39234. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39235. {
  39236. front: {
  39237. height: math.unit(15, "feet"),
  39238. name: "Front",
  39239. image: {
  39240. source: "./media/characters/hypatia/front.svg",
  39241. extra: 1653/1591,
  39242. bottom: 79/1732
  39243. }
  39244. },
  39245. },
  39246. [
  39247. {
  39248. name: "Normal",
  39249. height: math.unit(15, "feet")
  39250. },
  39251. {
  39252. name: "Small",
  39253. height: math.unit(300, "feet")
  39254. },
  39255. {
  39256. name: "Macro",
  39257. height: math.unit(2500, "feet"),
  39258. default: true
  39259. },
  39260. {
  39261. name: "Mega Macro",
  39262. height: math.unit(1500, "miles")
  39263. },
  39264. {
  39265. name: "Giga Macro",
  39266. height: math.unit(1.5e6, "miles")
  39267. },
  39268. ]
  39269. ))
  39270. characterMakers.push(() => makeCharacter(
  39271. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  39272. {
  39273. front: {
  39274. height: math.unit(6, "feet"),
  39275. weight: math.unit(200, "lb"),
  39276. name: "Front",
  39277. image: {
  39278. source: "./media/characters/wulver/front.svg",
  39279. extra: 1724/1632,
  39280. bottom: 130/1854
  39281. }
  39282. },
  39283. frontNsfw: {
  39284. height: math.unit(6, "feet"),
  39285. weight: math.unit(200, "lb"),
  39286. name: "Front (NSFW)",
  39287. image: {
  39288. source: "./media/characters/wulver/front-nsfw.svg",
  39289. extra: 1724/1632,
  39290. bottom: 130/1854
  39291. }
  39292. },
  39293. },
  39294. [
  39295. {
  39296. name: "Human-Sized",
  39297. height: math.unit(6, "feet")
  39298. },
  39299. {
  39300. name: "Normal",
  39301. height: math.unit(4, "meters"),
  39302. default: true
  39303. },
  39304. {
  39305. name: "Large",
  39306. height: math.unit(6, "m")
  39307. },
  39308. ]
  39309. ))
  39310. characterMakers.push(() => makeCharacter(
  39311. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  39312. {
  39313. front: {
  39314. height: math.unit(7, "feet"),
  39315. name: "Front",
  39316. image: {
  39317. source: "./media/characters/maru/front.svg",
  39318. extra: 1595/1570,
  39319. bottom: 0/1595
  39320. }
  39321. },
  39322. },
  39323. [
  39324. {
  39325. name: "Normal",
  39326. height: math.unit(7, "feet"),
  39327. default: true
  39328. },
  39329. {
  39330. name: "Macro",
  39331. height: math.unit(700, "feet")
  39332. },
  39333. {
  39334. name: "Mega Macro",
  39335. height: math.unit(25, "miles")
  39336. },
  39337. ]
  39338. ))
  39339. characterMakers.push(() => makeCharacter(
  39340. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  39341. {
  39342. front: {
  39343. height: math.unit(6, "feet"),
  39344. weight: math.unit(170, "lb"),
  39345. name: "Front",
  39346. image: {
  39347. source: "./media/characters/xenon/front.svg",
  39348. extra: 1376/1305,
  39349. bottom: 56/1432
  39350. }
  39351. },
  39352. back: {
  39353. height: math.unit(6, "feet"),
  39354. weight: math.unit(170, "lb"),
  39355. name: "Back",
  39356. image: {
  39357. source: "./media/characters/xenon/back.svg",
  39358. extra: 1328/1259,
  39359. bottom: 95/1423
  39360. }
  39361. },
  39362. maw: {
  39363. height: math.unit(0.52, "feet"),
  39364. name: "Maw",
  39365. image: {
  39366. source: "./media/characters/xenon/maw.svg"
  39367. }
  39368. },
  39369. hand: {
  39370. height: math.unit(0.82, "feet"),
  39371. name: "Hand",
  39372. image: {
  39373. source: "./media/characters/xenon/hand.svg"
  39374. }
  39375. },
  39376. foot: {
  39377. height: math.unit(1.13, "feet"),
  39378. name: "Foot",
  39379. image: {
  39380. source: "./media/characters/xenon/foot.svg"
  39381. }
  39382. },
  39383. },
  39384. [
  39385. {
  39386. name: "Micro",
  39387. height: math.unit(0.8, "inches")
  39388. },
  39389. {
  39390. name: "Normal",
  39391. height: math.unit(6, "feet")
  39392. },
  39393. {
  39394. name: "Macro",
  39395. height: math.unit(50, "feet"),
  39396. default: true
  39397. },
  39398. {
  39399. name: "Macro+",
  39400. height: math.unit(250, "feet")
  39401. },
  39402. {
  39403. name: "Megamacro",
  39404. height: math.unit(1500, "feet")
  39405. },
  39406. ]
  39407. ))
  39408. characterMakers.push(() => makeCharacter(
  39409. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  39410. {
  39411. front: {
  39412. height: math.unit(7 + 5/12, "feet"),
  39413. name: "Front",
  39414. image: {
  39415. source: "./media/characters/zane/front.svg",
  39416. extra: 1260/1203,
  39417. bottom: 94/1354
  39418. }
  39419. },
  39420. back: {
  39421. height: math.unit(5.05, "feet"),
  39422. name: "Back",
  39423. image: {
  39424. source: "./media/characters/zane/back.svg",
  39425. extra: 893/829,
  39426. bottom: 30/923
  39427. }
  39428. },
  39429. werewolf: {
  39430. height: math.unit(11, "feet"),
  39431. name: "Werewolf",
  39432. image: {
  39433. source: "./media/characters/zane/werewolf.svg",
  39434. extra: 1383/1323,
  39435. bottom: 89/1472
  39436. }
  39437. },
  39438. foot: {
  39439. height: math.unit(1.46, "feet"),
  39440. name: "Foot",
  39441. image: {
  39442. source: "./media/characters/zane/foot.svg"
  39443. }
  39444. },
  39445. footFront: {
  39446. height: math.unit(0.784, "feet"),
  39447. name: "Foot (Front)",
  39448. image: {
  39449. source: "./media/characters/zane/foot-front.svg"
  39450. }
  39451. },
  39452. dick: {
  39453. height: math.unit(1.95, "feet"),
  39454. name: "Dick",
  39455. image: {
  39456. source: "./media/characters/zane/dick.svg"
  39457. }
  39458. },
  39459. dickWerewolf: {
  39460. height: math.unit(3.77, "feet"),
  39461. name: "Dick (Werewolf)",
  39462. image: {
  39463. source: "./media/characters/zane/dick.svg"
  39464. }
  39465. },
  39466. },
  39467. [
  39468. {
  39469. name: "Normal",
  39470. height: math.unit(7 + 5/12, "feet"),
  39471. default: true
  39472. },
  39473. ]
  39474. ))
  39475. characterMakers.push(() => makeCharacter(
  39476. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39477. {
  39478. front: {
  39479. height: math.unit(6 + 2/12, "feet"),
  39480. weight: math.unit(284, "lb"),
  39481. name: "Front",
  39482. image: {
  39483. source: "./media/characters/benni-desparque/front.svg",
  39484. extra: 1353/1126,
  39485. bottom: 69/1422
  39486. }
  39487. },
  39488. },
  39489. [
  39490. {
  39491. name: "Civilian",
  39492. height: math.unit(6 + 2/12, "feet")
  39493. },
  39494. {
  39495. name: "Normal",
  39496. height: math.unit(98, "feet"),
  39497. default: true
  39498. },
  39499. {
  39500. name: "Kaiju Fighter",
  39501. height: math.unit(268, "feet")
  39502. },
  39503. ]
  39504. ))
  39505. characterMakers.push(() => makeCharacter(
  39506. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39507. {
  39508. front: {
  39509. height: math.unit(5, "feet"),
  39510. weight: math.unit(105, "lb"),
  39511. name: "Front",
  39512. image: {
  39513. source: "./media/characters/maxine/front.svg",
  39514. extra: 1386/1250,
  39515. bottom: 71/1457
  39516. }
  39517. },
  39518. },
  39519. [
  39520. {
  39521. name: "Normal",
  39522. height: math.unit(5, "feet"),
  39523. default: true
  39524. },
  39525. ]
  39526. ))
  39527. characterMakers.push(() => makeCharacter(
  39528. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39529. {
  39530. front: {
  39531. height: math.unit(11 + 7/12, "feet"),
  39532. weight: math.unit(9576, "lb"),
  39533. name: "Front",
  39534. image: {
  39535. source: "./media/characters/scaly/front.svg",
  39536. extra: 888/867,
  39537. bottom: 36/924
  39538. }
  39539. },
  39540. },
  39541. [
  39542. {
  39543. name: "Normal",
  39544. height: math.unit(11 + 7/12, "feet"),
  39545. default: true
  39546. },
  39547. ]
  39548. ))
  39549. characterMakers.push(() => makeCharacter(
  39550. { name: "Saelria", species: ["mouse", "human"], tags: ["anthro"] },
  39551. {
  39552. front: {
  39553. height: math.unit(9, "inches"),
  39554. name: "Front",
  39555. image: {
  39556. source: "./media/characters/saelria/front.svg",
  39557. extra: 662/621,
  39558. bottom: 12/674
  39559. }
  39560. },
  39561. },
  39562. [
  39563. {
  39564. name: "Tiny",
  39565. height: math.unit(9, "inches"),
  39566. default: true
  39567. },
  39568. ]
  39569. ))
  39570. characterMakers.push(() => makeCharacter(
  39571. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39572. {
  39573. front: {
  39574. height: math.unit(80, "meters"),
  39575. weight: math.unit(7000, "tonnes"),
  39576. name: "Front",
  39577. image: {
  39578. source: "./media/characters/tef/front.svg",
  39579. extra: 2036/1991,
  39580. bottom: 54/2090
  39581. }
  39582. },
  39583. back: {
  39584. height: math.unit(80, "meters"),
  39585. weight: math.unit(7000, "tonnes"),
  39586. name: "Back",
  39587. image: {
  39588. source: "./media/characters/tef/back.svg",
  39589. extra: 2036/1991,
  39590. bottom: 54/2090
  39591. }
  39592. },
  39593. },
  39594. [
  39595. {
  39596. name: "Macro",
  39597. height: math.unit(80, "meters"),
  39598. default: true
  39599. },
  39600. ]
  39601. ))
  39602. characterMakers.push(() => makeCharacter(
  39603. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  39604. {
  39605. front: {
  39606. height: math.unit(13, "feet"),
  39607. weight: math.unit(6, "tons"),
  39608. name: "Front",
  39609. image: {
  39610. source: "./media/characters/rover/front.svg",
  39611. extra: 1233/1156,
  39612. bottom: 50/1283
  39613. }
  39614. },
  39615. back: {
  39616. height: math.unit(13, "feet"),
  39617. weight: math.unit(6, "tons"),
  39618. name: "Back",
  39619. image: {
  39620. source: "./media/characters/rover/back.svg",
  39621. extra: 1327/1258,
  39622. bottom: 39/1366
  39623. }
  39624. },
  39625. },
  39626. [
  39627. {
  39628. name: "Normal",
  39629. height: math.unit(13, "feet"),
  39630. default: true
  39631. },
  39632. {
  39633. name: "Macro",
  39634. height: math.unit(1300, "feet")
  39635. },
  39636. {
  39637. name: "Megamacro",
  39638. height: math.unit(1300, "miles")
  39639. },
  39640. {
  39641. name: "Gigamacro",
  39642. height: math.unit(1300000, "miles")
  39643. },
  39644. ]
  39645. ))
  39646. characterMakers.push(() => makeCharacter(
  39647. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  39648. {
  39649. front: {
  39650. height: math.unit(6, "feet"),
  39651. weight: math.unit(150, "lb"),
  39652. name: "Front",
  39653. image: {
  39654. source: "./media/characters/ariz/front.svg",
  39655. extra: 1401/1346,
  39656. bottom: 5/1406
  39657. }
  39658. },
  39659. },
  39660. [
  39661. {
  39662. name: "Normal",
  39663. height: math.unit(10, "feet"),
  39664. default: true
  39665. },
  39666. ]
  39667. ))
  39668. characterMakers.push(() => makeCharacter(
  39669. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  39670. {
  39671. front: {
  39672. height: math.unit(6, "feet"),
  39673. weight: math.unit(140, "lb"),
  39674. name: "Front",
  39675. image: {
  39676. source: "./media/characters/sigrun/front.svg",
  39677. extra: 1418/1359,
  39678. bottom: 27/1445
  39679. }
  39680. },
  39681. },
  39682. [
  39683. {
  39684. name: "Macro",
  39685. height: math.unit(35, "feet"),
  39686. default: true
  39687. },
  39688. ]
  39689. ))
  39690. characterMakers.push(() => makeCharacter(
  39691. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  39692. {
  39693. front: {
  39694. height: math.unit(6, "feet"),
  39695. weight: math.unit(150, "lb"),
  39696. name: "Front",
  39697. image: {
  39698. source: "./media/characters/numin/front.svg",
  39699. extra: 1433/1388,
  39700. bottom: 12/1445
  39701. }
  39702. },
  39703. },
  39704. [
  39705. {
  39706. name: "Macro",
  39707. height: math.unit(21.5, "km"),
  39708. default: true
  39709. },
  39710. ]
  39711. ))
  39712. characterMakers.push(() => makeCharacter(
  39713. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  39714. {
  39715. front: {
  39716. height: math.unit(6, "feet"),
  39717. weight: math.unit(463, "lb"),
  39718. name: "Front",
  39719. image: {
  39720. source: "./media/characters/melwa/front.svg",
  39721. extra: 1307/1248,
  39722. bottom: 93/1400
  39723. }
  39724. },
  39725. },
  39726. [
  39727. {
  39728. name: "Macro",
  39729. height: math.unit(50, "meters"),
  39730. default: true
  39731. },
  39732. ]
  39733. ))
  39734. characterMakers.push(() => makeCharacter(
  39735. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  39736. {
  39737. front: {
  39738. height: math.unit(325, "feet"),
  39739. name: "Front",
  39740. image: {
  39741. source: "./media/characters/zorkaiju/front.svg",
  39742. extra: 1955/1814,
  39743. bottom: 40/1995
  39744. }
  39745. },
  39746. frontExtended: {
  39747. height: math.unit(325, "feet"),
  39748. name: "Front (Extended)",
  39749. image: {
  39750. source: "./media/characters/zorkaiju/front-extended.svg",
  39751. extra: 1955/1814,
  39752. bottom: 40/1995
  39753. }
  39754. },
  39755. side: {
  39756. height: math.unit(325, "feet"),
  39757. name: "Side",
  39758. image: {
  39759. source: "./media/characters/zorkaiju/side.svg",
  39760. extra: 1495/1396,
  39761. bottom: 17/1512
  39762. }
  39763. },
  39764. sideExtended: {
  39765. height: math.unit(325, "feet"),
  39766. name: "Side (Extended)",
  39767. image: {
  39768. source: "./media/characters/zorkaiju/side-extended.svg",
  39769. extra: 1495/1396,
  39770. bottom: 17/1512
  39771. }
  39772. },
  39773. back: {
  39774. height: math.unit(325, "feet"),
  39775. name: "Back",
  39776. image: {
  39777. source: "./media/characters/zorkaiju/back.svg",
  39778. extra: 1959/1821,
  39779. bottom: 31/1990
  39780. }
  39781. },
  39782. backExtended: {
  39783. height: math.unit(325, "feet"),
  39784. name: "Back (Extended)",
  39785. image: {
  39786. source: "./media/characters/zorkaiju/back-extended.svg",
  39787. extra: 1959/1821,
  39788. bottom: 31/1990
  39789. }
  39790. },
  39791. hand: {
  39792. height: math.unit(58.4, "feet"),
  39793. name: "Hand",
  39794. image: {
  39795. source: "./media/characters/zorkaiju/hand.svg"
  39796. }
  39797. },
  39798. handExtended: {
  39799. height: math.unit(61.4, "feet"),
  39800. name: "Hand (Extended)",
  39801. image: {
  39802. source: "./media/characters/zorkaiju/hand-extended.svg"
  39803. }
  39804. },
  39805. foot: {
  39806. height: math.unit(95, "feet"),
  39807. name: "Foot",
  39808. image: {
  39809. source: "./media/characters/zorkaiju/foot.svg"
  39810. }
  39811. },
  39812. leftArm: {
  39813. height: math.unit(59, "feet"),
  39814. name: "Left Arm",
  39815. image: {
  39816. source: "./media/characters/zorkaiju/left-arm.svg"
  39817. }
  39818. },
  39819. rightArm: {
  39820. height: math.unit(59, "feet"),
  39821. name: "Right Arm",
  39822. image: {
  39823. source: "./media/characters/zorkaiju/right-arm.svg"
  39824. }
  39825. },
  39826. tail: {
  39827. height: math.unit(104, "feet"),
  39828. name: "Tail",
  39829. image: {
  39830. source: "./media/characters/zorkaiju/tail.svg"
  39831. }
  39832. },
  39833. tailExtended: {
  39834. height: math.unit(104, "feet"),
  39835. name: "Tail (Extended)",
  39836. image: {
  39837. source: "./media/characters/zorkaiju/tail-extended.svg"
  39838. }
  39839. },
  39840. tailBottom: {
  39841. height: math.unit(104, "feet"),
  39842. name: "Tail Bottom",
  39843. image: {
  39844. source: "./media/characters/zorkaiju/tail-bottom.svg"
  39845. }
  39846. },
  39847. crystal: {
  39848. height: math.unit(27.54, "feet"),
  39849. name: "Crystal",
  39850. image: {
  39851. source: "./media/characters/zorkaiju/crystal.svg"
  39852. }
  39853. },
  39854. },
  39855. [
  39856. {
  39857. name: "Kaiju",
  39858. height: math.unit(325, "feet"),
  39859. default: true
  39860. },
  39861. ]
  39862. ))
  39863. characterMakers.push(() => makeCharacter(
  39864. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  39865. {
  39866. front: {
  39867. height: math.unit(6 + 1/12, "feet"),
  39868. weight: math.unit(115, "lb"),
  39869. name: "Front",
  39870. image: {
  39871. source: "./media/characters/bailey-belfry/front.svg",
  39872. extra: 1240/1121,
  39873. bottom: 101/1341
  39874. }
  39875. },
  39876. },
  39877. [
  39878. {
  39879. name: "Normal",
  39880. height: math.unit(6 + 1/12, "feet"),
  39881. default: true
  39882. },
  39883. ]
  39884. ))
  39885. characterMakers.push(() => makeCharacter(
  39886. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  39887. {
  39888. side: {
  39889. height: math.unit(4, "meters"),
  39890. weight: math.unit(250, "kg"),
  39891. name: "Side",
  39892. image: {
  39893. source: "./media/characters/blacky/side.svg",
  39894. extra: 1027/919,
  39895. bottom: 43/1070
  39896. }
  39897. },
  39898. maw: {
  39899. height: math.unit(1, "meters"),
  39900. name: "Maw",
  39901. image: {
  39902. source: "./media/characters/blacky/maw.svg"
  39903. }
  39904. },
  39905. paw: {
  39906. height: math.unit(1, "meters"),
  39907. name: "Paw",
  39908. image: {
  39909. source: "./media/characters/blacky/paw.svg"
  39910. }
  39911. },
  39912. },
  39913. [
  39914. {
  39915. name: "Normal",
  39916. height: math.unit(4, "meters"),
  39917. default: true
  39918. },
  39919. ]
  39920. ))
  39921. characterMakers.push(() => makeCharacter(
  39922. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  39923. {
  39924. front: {
  39925. height: math.unit(170, "cm"),
  39926. weight: math.unit(66, "kg"),
  39927. name: "Front",
  39928. image: {
  39929. source: "./media/characters/thux-ei/front.svg",
  39930. extra: 1109/1011,
  39931. bottom: 8/1117
  39932. }
  39933. },
  39934. },
  39935. [
  39936. {
  39937. name: "Normal",
  39938. height: math.unit(170, "cm"),
  39939. default: true
  39940. },
  39941. ]
  39942. ))
  39943. characterMakers.push(() => makeCharacter(
  39944. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  39945. {
  39946. front: {
  39947. height: math.unit(5, "feet"),
  39948. weight: math.unit(120, "lb"),
  39949. name: "Front",
  39950. image: {
  39951. source: "./media/characters/roxanne-voltaire/front.svg",
  39952. extra: 1901/1779,
  39953. bottom: 53/1954
  39954. }
  39955. },
  39956. },
  39957. [
  39958. {
  39959. name: "Normal",
  39960. height: math.unit(5, "feet"),
  39961. default: true
  39962. },
  39963. {
  39964. name: "Giant",
  39965. height: math.unit(50, "feet")
  39966. },
  39967. {
  39968. name: "Titan",
  39969. height: math.unit(500, "feet")
  39970. },
  39971. {
  39972. name: "Macro",
  39973. height: math.unit(5000, "feet")
  39974. },
  39975. {
  39976. name: "Megamacro",
  39977. height: math.unit(50000, "feet")
  39978. },
  39979. {
  39980. name: "Gigamacro",
  39981. height: math.unit(500000, "feet")
  39982. },
  39983. {
  39984. name: "Teramacro",
  39985. height: math.unit(5e6, "feet")
  39986. },
  39987. ]
  39988. ))
  39989. characterMakers.push(() => makeCharacter(
  39990. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  39991. {
  39992. front: {
  39993. height: math.unit(6 + 2/12, "feet"),
  39994. name: "Front",
  39995. image: {
  39996. source: "./media/characters/squeaks/front.svg",
  39997. extra: 1823/1768,
  39998. bottom: 138/1961
  39999. }
  40000. },
  40001. },
  40002. [
  40003. {
  40004. name: "Micro",
  40005. height: math.unit(0.5, "inches")
  40006. },
  40007. {
  40008. name: "Normal",
  40009. height: math.unit(6 + 2/12, "feet"),
  40010. default: true
  40011. },
  40012. {
  40013. name: "Macro",
  40014. height: math.unit(600, "feet")
  40015. },
  40016. ]
  40017. ))
  40018. characterMakers.push(() => makeCharacter(
  40019. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  40020. {
  40021. front: {
  40022. height: math.unit(1.72, "meters"),
  40023. name: "Front",
  40024. image: {
  40025. source: "./media/characters/archinger/front.svg",
  40026. extra: 1861/1675,
  40027. bottom: 125/1986
  40028. }
  40029. },
  40030. back: {
  40031. height: math.unit(1.72, "meters"),
  40032. name: "Back",
  40033. image: {
  40034. source: "./media/characters/archinger/back.svg",
  40035. extra: 1844/1701,
  40036. bottom: 104/1948
  40037. }
  40038. },
  40039. cock: {
  40040. height: math.unit(0.59, "feet"),
  40041. name: "Cock",
  40042. image: {
  40043. source: "./media/characters/archinger/cock.svg"
  40044. }
  40045. },
  40046. },
  40047. [
  40048. {
  40049. name: "Normal",
  40050. height: math.unit(1.72, "meters"),
  40051. default: true
  40052. },
  40053. {
  40054. name: "Macro",
  40055. height: math.unit(84, "meters")
  40056. },
  40057. {
  40058. name: "Macro+",
  40059. height: math.unit(112, "meters")
  40060. },
  40061. {
  40062. name: "Macro++",
  40063. height: math.unit(960, "meters")
  40064. },
  40065. {
  40066. name: "Macro+++",
  40067. height: math.unit(4, "km")
  40068. },
  40069. {
  40070. name: "Macro++++",
  40071. height: math.unit(48, "km")
  40072. },
  40073. {
  40074. name: "Macro+++++",
  40075. height: math.unit(4500, "km")
  40076. },
  40077. ]
  40078. ))
  40079. characterMakers.push(() => makeCharacter(
  40080. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  40081. {
  40082. front: {
  40083. height: math.unit(5 + 5/12, "feet"),
  40084. name: "Front",
  40085. image: {
  40086. source: "./media/characters/alsnapz/front.svg",
  40087. extra: 1157/1065,
  40088. bottom: 42/1199
  40089. }
  40090. },
  40091. },
  40092. [
  40093. {
  40094. name: "Normal",
  40095. height: math.unit(5 + 5/12, "feet"),
  40096. default: true
  40097. },
  40098. ]
  40099. ))
  40100. characterMakers.push(() => makeCharacter(
  40101. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  40102. {
  40103. side: {
  40104. height: math.unit(3.2, "earths"),
  40105. name: "Side",
  40106. image: {
  40107. source: "./media/characters/mag/side.svg",
  40108. extra: 1331/1008,
  40109. bottom: 52/1383
  40110. }
  40111. },
  40112. wing: {
  40113. height: math.unit(1.94, "earths"),
  40114. name: "Wing",
  40115. image: {
  40116. source: "./media/characters/mag/wing.svg"
  40117. }
  40118. },
  40119. dick: {
  40120. height: math.unit(1.8, "earths"),
  40121. name: "Dick",
  40122. image: {
  40123. source: "./media/characters/mag/dick.svg"
  40124. }
  40125. },
  40126. ass: {
  40127. height: math.unit(1.33, "earths"),
  40128. name: "Ass",
  40129. image: {
  40130. source: "./media/characters/mag/ass.svg"
  40131. }
  40132. },
  40133. head: {
  40134. height: math.unit(1.1, "earths"),
  40135. name: "Head",
  40136. image: {
  40137. source: "./media/characters/mag/head.svg"
  40138. }
  40139. },
  40140. maw: {
  40141. height: math.unit(1.62, "earths"),
  40142. name: "Maw",
  40143. image: {
  40144. source: "./media/characters/mag/maw.svg"
  40145. }
  40146. },
  40147. },
  40148. [
  40149. {
  40150. name: "Small",
  40151. height: math.unit(162, "feet")
  40152. },
  40153. {
  40154. name: "Normal",
  40155. height: math.unit(3.2, "earths"),
  40156. default: true
  40157. },
  40158. ]
  40159. ))
  40160. characterMakers.push(() => makeCharacter(
  40161. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  40162. {
  40163. front: {
  40164. height: math.unit(512, "feet"),
  40165. weight: math.unit(63509, "tonnes"),
  40166. name: "Front",
  40167. image: {
  40168. source: "./media/characters/vorrel-harroc/front.svg",
  40169. extra: 1075/1063,
  40170. bottom: 62/1137
  40171. }
  40172. },
  40173. },
  40174. [
  40175. {
  40176. name: "Normal",
  40177. height: math.unit(10, "feet")
  40178. },
  40179. {
  40180. name: "Macro",
  40181. height: math.unit(512, "feet"),
  40182. default: true
  40183. },
  40184. {
  40185. name: "Megamacro",
  40186. height: math.unit(256, "miles")
  40187. },
  40188. {
  40189. name: "Gigamacro",
  40190. height: math.unit(4096, "miles")
  40191. },
  40192. ]
  40193. ))
  40194. characterMakers.push(() => makeCharacter(
  40195. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40196. {
  40197. side: {
  40198. height: math.unit(50, "feet"),
  40199. name: "Side",
  40200. image: {
  40201. source: "./media/characters/froimar/side.svg",
  40202. extra: 855/638,
  40203. bottom: 99/954
  40204. }
  40205. },
  40206. },
  40207. [
  40208. {
  40209. name: "Macro",
  40210. height: math.unit(50, "feet"),
  40211. default: true
  40212. },
  40213. ]
  40214. ))
  40215. characterMakers.push(() => makeCharacter(
  40216. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40217. {
  40218. front: {
  40219. height: math.unit(210, "miles"),
  40220. name: "Front",
  40221. image: {
  40222. source: "./media/characters/timothy/front.svg",
  40223. extra: 1007/943,
  40224. bottom: 62/1069
  40225. }
  40226. },
  40227. frontSkirt: {
  40228. height: math.unit(210, "miles"),
  40229. name: "Front (Skirt)",
  40230. image: {
  40231. source: "./media/characters/timothy/front-skirt.svg",
  40232. extra: 1007/943,
  40233. bottom: 62/1069
  40234. }
  40235. },
  40236. frontCoat: {
  40237. height: math.unit(210, "miles"),
  40238. name: "Front (Coat)",
  40239. image: {
  40240. source: "./media/characters/timothy/front-coat.svg",
  40241. extra: 1007/943,
  40242. bottom: 62/1069
  40243. }
  40244. },
  40245. },
  40246. [
  40247. {
  40248. name: "Macro",
  40249. height: math.unit(210, "miles"),
  40250. default: true
  40251. },
  40252. {
  40253. name: "Megamacro",
  40254. height: math.unit(210000, "miles")
  40255. },
  40256. ]
  40257. ))
  40258. characterMakers.push(() => makeCharacter(
  40259. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  40260. {
  40261. front: {
  40262. height: math.unit(188, "feet"),
  40263. name: "Front",
  40264. image: {
  40265. source: "./media/characters/pyotr/front.svg",
  40266. extra: 1912/1826,
  40267. bottom: 18/1930
  40268. }
  40269. },
  40270. },
  40271. [
  40272. {
  40273. name: "Macro",
  40274. height: math.unit(188, "feet"),
  40275. default: true
  40276. },
  40277. {
  40278. name: "Megamacro",
  40279. height: math.unit(8, "miles")
  40280. },
  40281. ]
  40282. ))
  40283. characterMakers.push(() => makeCharacter(
  40284. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  40285. {
  40286. side: {
  40287. height: math.unit(10, "feet"),
  40288. weight: math.unit(4500, "lb"),
  40289. name: "Side",
  40290. image: {
  40291. source: "./media/characters/ackart/side.svg",
  40292. extra: 1776/1668,
  40293. bottom: 116/1892
  40294. }
  40295. },
  40296. },
  40297. [
  40298. {
  40299. name: "Normal",
  40300. height: math.unit(10, "feet"),
  40301. default: true
  40302. },
  40303. ]
  40304. ))
  40305. characterMakers.push(() => makeCharacter(
  40306. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  40307. {
  40308. side: {
  40309. height: math.unit(21, "feet"),
  40310. name: "Side",
  40311. image: {
  40312. source: "./media/characters/nolow/side.svg",
  40313. extra: 1484/1434,
  40314. bottom: 85/1569
  40315. }
  40316. },
  40317. sideErect: {
  40318. height: math.unit(21, "feet"),
  40319. name: "Side-erect",
  40320. image: {
  40321. source: "./media/characters/nolow/side-erect.svg",
  40322. extra: 1484/1434,
  40323. bottom: 85/1569
  40324. }
  40325. },
  40326. },
  40327. [
  40328. {
  40329. name: "Regular",
  40330. height: math.unit(12, "feet")
  40331. },
  40332. {
  40333. name: "Big Chee",
  40334. height: math.unit(21, "feet"),
  40335. default: true
  40336. },
  40337. ]
  40338. ))
  40339. characterMakers.push(() => makeCharacter(
  40340. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  40341. {
  40342. front: {
  40343. height: math.unit(7, "feet"),
  40344. weight: math.unit(250, "lb"),
  40345. name: "Front",
  40346. image: {
  40347. source: "./media/characters/nines/front.svg",
  40348. extra: 1741/1607,
  40349. bottom: 41/1782
  40350. }
  40351. },
  40352. side: {
  40353. height: math.unit(7, "feet"),
  40354. weight: math.unit(250, "lb"),
  40355. name: "Side",
  40356. image: {
  40357. source: "./media/characters/nines/side.svg",
  40358. extra: 1854/1735,
  40359. bottom: 93/1947
  40360. }
  40361. },
  40362. back: {
  40363. height: math.unit(7, "feet"),
  40364. weight: math.unit(250, "lb"),
  40365. name: "Back",
  40366. image: {
  40367. source: "./media/characters/nines/back.svg",
  40368. extra: 1748/1615,
  40369. bottom: 20/1768
  40370. }
  40371. },
  40372. },
  40373. [
  40374. {
  40375. name: "Megamacro",
  40376. height: math.unit(99, "km"),
  40377. default: true
  40378. },
  40379. ]
  40380. ))
  40381. characterMakers.push(() => makeCharacter(
  40382. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  40383. {
  40384. front: {
  40385. height: math.unit(5 + 10/12, "feet"),
  40386. weight: math.unit(210, "lb"),
  40387. name: "Front",
  40388. image: {
  40389. source: "./media/characters/zenith/front.svg",
  40390. extra: 1531/1452,
  40391. bottom: 198/1729
  40392. }
  40393. },
  40394. back: {
  40395. height: math.unit(5 + 10/12, "feet"),
  40396. weight: math.unit(210, "lb"),
  40397. name: "Back",
  40398. image: {
  40399. source: "./media/characters/zenith/back.svg",
  40400. extra: 1571/1487,
  40401. bottom: 75/1646
  40402. }
  40403. },
  40404. },
  40405. [
  40406. {
  40407. name: "Normal",
  40408. height: math.unit(5 + 10/12, "feet"),
  40409. default: true
  40410. }
  40411. ]
  40412. ))
  40413. characterMakers.push(() => makeCharacter(
  40414. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  40415. {
  40416. front: {
  40417. height: math.unit(4, "feet"),
  40418. weight: math.unit(60, "lb"),
  40419. name: "Front",
  40420. image: {
  40421. source: "./media/characters/jasper/front.svg",
  40422. extra: 1450/1379,
  40423. bottom: 19/1469
  40424. }
  40425. },
  40426. },
  40427. [
  40428. {
  40429. name: "Normal",
  40430. height: math.unit(4, "feet"),
  40431. default: true
  40432. },
  40433. ]
  40434. ))
  40435. characterMakers.push(() => makeCharacter(
  40436. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40437. {
  40438. front: {
  40439. height: math.unit(6 + 5/12, "feet"),
  40440. weight: math.unit(290, "lb"),
  40441. name: "Front",
  40442. image: {
  40443. source: "./media/characters/tiberius-thyben/front.svg",
  40444. extra: 757/739,
  40445. bottom: 39/796
  40446. }
  40447. },
  40448. },
  40449. [
  40450. {
  40451. name: "Micro",
  40452. height: math.unit(1.5, "inches")
  40453. },
  40454. {
  40455. name: "Normal",
  40456. height: math.unit(6 + 5/12, "feet"),
  40457. default: true
  40458. },
  40459. {
  40460. name: "Macro",
  40461. height: math.unit(300, "feet")
  40462. },
  40463. ]
  40464. ))
  40465. characterMakers.push(() => makeCharacter(
  40466. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40467. {
  40468. front: {
  40469. height: math.unit(5 + 6/12, "feet"),
  40470. weight: math.unit(60, "kg"),
  40471. name: "Front",
  40472. image: {
  40473. source: "./media/characters/sabre/front.svg",
  40474. extra: 738/671,
  40475. bottom: 27/765
  40476. }
  40477. },
  40478. },
  40479. [
  40480. {
  40481. name: "Teeny",
  40482. height: math.unit(2, "inches")
  40483. },
  40484. {
  40485. name: "Smol",
  40486. height: math.unit(8, "inches")
  40487. },
  40488. {
  40489. name: "Normal",
  40490. height: math.unit(5 + 6/12, "feet"),
  40491. default: true
  40492. },
  40493. {
  40494. name: "Mini-Macro",
  40495. height: math.unit(15, "feet")
  40496. },
  40497. {
  40498. name: "Macro",
  40499. height: math.unit(50, "feet")
  40500. },
  40501. ]
  40502. ))
  40503. characterMakers.push(() => makeCharacter(
  40504. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40505. {
  40506. front: {
  40507. height: math.unit(6 + 4/12, "feet"),
  40508. weight: math.unit(170, "lb"),
  40509. name: "Front",
  40510. image: {
  40511. source: "./media/characters/charlie/front.svg",
  40512. extra: 1348/1228,
  40513. bottom: 15/1363
  40514. }
  40515. },
  40516. },
  40517. [
  40518. {
  40519. name: "Macro",
  40520. height: math.unit(1700, "meters"),
  40521. default: true
  40522. },
  40523. {
  40524. name: "MegaMacro",
  40525. height: math.unit(20400, "meters")
  40526. },
  40527. ]
  40528. ))
  40529. characterMakers.push(() => makeCharacter(
  40530. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40531. {
  40532. front: {
  40533. height: math.unit(6 + 3/12, "feet"),
  40534. weight: math.unit(185, "lb"),
  40535. name: "Front",
  40536. image: {
  40537. source: "./media/characters/susan-grant/front.svg",
  40538. extra: 1351/1327,
  40539. bottom: 26/1377
  40540. }
  40541. },
  40542. },
  40543. [
  40544. {
  40545. name: "Normal",
  40546. height: math.unit(6 + 3/12, "feet"),
  40547. default: true
  40548. },
  40549. {
  40550. name: "Macro",
  40551. height: math.unit(225, "feet")
  40552. },
  40553. {
  40554. name: "Macro+",
  40555. height: math.unit(900, "feet")
  40556. },
  40557. {
  40558. name: "MegaMacro",
  40559. height: math.unit(14400, "feet")
  40560. },
  40561. ]
  40562. ))
  40563. characterMakers.push(() => makeCharacter(
  40564. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40565. {
  40566. front: {
  40567. height: math.unit(5 + 4/12, "feet"),
  40568. weight: math.unit(110, "lb"),
  40569. name: "Front",
  40570. image: {
  40571. source: "./media/characters/axel-isanov/front.svg",
  40572. extra: 1096/1065,
  40573. bottom: 13/1109
  40574. }
  40575. },
  40576. },
  40577. [
  40578. {
  40579. name: "Normal",
  40580. height: math.unit(5 + 4/12, "feet"),
  40581. default: true
  40582. },
  40583. ]
  40584. ))
  40585. characterMakers.push(() => makeCharacter(
  40586. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  40587. {
  40588. front: {
  40589. height: math.unit(9, "feet"),
  40590. weight: math.unit(467, "lb"),
  40591. name: "Front",
  40592. image: {
  40593. source: "./media/characters/necahual/front.svg",
  40594. extra: 920/873,
  40595. bottom: 26/946
  40596. }
  40597. },
  40598. back: {
  40599. height: math.unit(9, "feet"),
  40600. weight: math.unit(467, "lb"),
  40601. name: "Back",
  40602. image: {
  40603. source: "./media/characters/necahual/back.svg",
  40604. extra: 930/884,
  40605. bottom: 16/946
  40606. }
  40607. },
  40608. frontUnderwear: {
  40609. height: math.unit(9, "feet"),
  40610. weight: math.unit(467, "lb"),
  40611. name: "Front (Underwear)",
  40612. image: {
  40613. source: "./media/characters/necahual/front-underwear.svg",
  40614. extra: 920/873,
  40615. bottom: 26/946
  40616. }
  40617. },
  40618. frontDressed: {
  40619. height: math.unit(9, "feet"),
  40620. weight: math.unit(467, "lb"),
  40621. name: "Front (Dressed)",
  40622. image: {
  40623. source: "./media/characters/necahual/front-dressed.svg",
  40624. extra: 920/873,
  40625. bottom: 26/946
  40626. }
  40627. },
  40628. },
  40629. [
  40630. {
  40631. name: "Comprsesed",
  40632. height: math.unit(9, "feet")
  40633. },
  40634. {
  40635. name: "Natural",
  40636. height: math.unit(15, "feet"),
  40637. default: true
  40638. },
  40639. {
  40640. name: "Boosted",
  40641. height: math.unit(50, "feet")
  40642. },
  40643. {
  40644. name: "Boosted+",
  40645. height: math.unit(150, "feet")
  40646. },
  40647. {
  40648. name: "Max",
  40649. height: math.unit(500, "feet")
  40650. },
  40651. ]
  40652. ))
  40653. characterMakers.push(() => makeCharacter(
  40654. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  40655. {
  40656. front: {
  40657. height: math.unit(22 + 1/12, "feet"),
  40658. weight: math.unit(3200, "lb"),
  40659. name: "Front",
  40660. image: {
  40661. source: "./media/characters/theo-acacia/front.svg",
  40662. extra: 1796/1741,
  40663. bottom: 83/1879
  40664. }
  40665. },
  40666. frontUnderwear: {
  40667. height: math.unit(22 + 1/12, "feet"),
  40668. weight: math.unit(3200, "lb"),
  40669. name: "Front (Underwear)",
  40670. image: {
  40671. source: "./media/characters/theo-acacia/front-underwear.svg",
  40672. extra: 1796/1741,
  40673. bottom: 83/1879
  40674. }
  40675. },
  40676. frontNude: {
  40677. height: math.unit(22 + 1/12, "feet"),
  40678. weight: math.unit(3200, "lb"),
  40679. name: "Front (Nude)",
  40680. image: {
  40681. source: "./media/characters/theo-acacia/front-nude.svg",
  40682. extra: 1796/1741,
  40683. bottom: 83/1879
  40684. }
  40685. },
  40686. },
  40687. [
  40688. {
  40689. name: "Normal",
  40690. height: math.unit(22 + 1/12, "feet"),
  40691. default: true
  40692. },
  40693. ]
  40694. ))
  40695. characterMakers.push(() => makeCharacter(
  40696. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40697. {
  40698. front: {
  40699. height: math.unit(20, "feet"),
  40700. name: "Front",
  40701. image: {
  40702. source: "./media/characters/astra/front.svg",
  40703. extra: 1850/1714,
  40704. bottom: 106/1956
  40705. }
  40706. },
  40707. frontUndressed: {
  40708. height: math.unit(20, "feet"),
  40709. name: "Front (Undressed)",
  40710. image: {
  40711. source: "./media/characters/astra/front-undressed.svg",
  40712. extra: 1926/1749,
  40713. bottom: 0/1926
  40714. }
  40715. },
  40716. hand: {
  40717. height: math.unit(1.53, "feet"),
  40718. name: "Hand",
  40719. image: {
  40720. source: "./media/characters/astra/hand.svg"
  40721. }
  40722. },
  40723. paw: {
  40724. height: math.unit(1.53, "feet"),
  40725. name: "Paw",
  40726. image: {
  40727. source: "./media/characters/astra/paw.svg"
  40728. }
  40729. },
  40730. },
  40731. [
  40732. {
  40733. name: "Smallest",
  40734. height: math.unit(20, "feet")
  40735. },
  40736. {
  40737. name: "Normal",
  40738. height: math.unit(1e9, "miles"),
  40739. default: true
  40740. },
  40741. {
  40742. name: "Larger",
  40743. height: math.unit(5, "multiverses")
  40744. },
  40745. {
  40746. name: "Largest",
  40747. height: math.unit(1e9, "multiverses")
  40748. },
  40749. ]
  40750. ))
  40751. characterMakers.push(() => makeCharacter(
  40752. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  40753. {
  40754. front: {
  40755. height: math.unit(8, "feet"),
  40756. name: "Front",
  40757. image: {
  40758. source: "./media/characters/breanna/front.svg",
  40759. extra: 1912/1632,
  40760. bottom: 33/1945
  40761. }
  40762. },
  40763. },
  40764. [
  40765. {
  40766. name: "Smallest",
  40767. height: math.unit(8, "feet")
  40768. },
  40769. {
  40770. name: "Normal",
  40771. height: math.unit(1, "mile"),
  40772. default: true
  40773. },
  40774. {
  40775. name: "Maximum",
  40776. height: math.unit(1500000000000, "lightyears")
  40777. },
  40778. ]
  40779. ))
  40780. characterMakers.push(() => makeCharacter(
  40781. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  40782. {
  40783. front: {
  40784. height: math.unit(5 + 11/12, "feet"),
  40785. weight: math.unit(155, "lb"),
  40786. name: "Front",
  40787. image: {
  40788. source: "./media/characters/cai/front.svg",
  40789. extra: 1823/1702,
  40790. bottom: 32/1855
  40791. }
  40792. },
  40793. back: {
  40794. height: math.unit(5 + 11/12, "feet"),
  40795. weight: math.unit(155, "lb"),
  40796. name: "Back",
  40797. image: {
  40798. source: "./media/characters/cai/back.svg",
  40799. extra: 1809/1708,
  40800. bottom: 31/1840
  40801. }
  40802. },
  40803. },
  40804. [
  40805. {
  40806. name: "Normal",
  40807. height: math.unit(5 + 11/12, "feet"),
  40808. default: true
  40809. },
  40810. {
  40811. name: "Big",
  40812. height: math.unit(15, "feet")
  40813. },
  40814. {
  40815. name: "Macro",
  40816. height: math.unit(200, "feet")
  40817. },
  40818. ]
  40819. ))
  40820. characterMakers.push(() => makeCharacter(
  40821. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  40822. {
  40823. front: {
  40824. height: math.unit(5 + 6/12, "feet"),
  40825. weight: math.unit(160, "lb"),
  40826. name: "Front",
  40827. image: {
  40828. source: "./media/characters/zanna-virtuedòttir/front.svg",
  40829. extra: 1227/1174,
  40830. bottom: 37/1264
  40831. }
  40832. },
  40833. },
  40834. [
  40835. {
  40836. name: "Macro",
  40837. height: math.unit(444, "meters"),
  40838. default: true
  40839. },
  40840. ]
  40841. ))
  40842. characterMakers.push(() => makeCharacter(
  40843. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  40844. {
  40845. front: {
  40846. height: math.unit(18 + 7/12, "feet"),
  40847. name: "Front",
  40848. image: {
  40849. source: "./media/characters/rex/front.svg",
  40850. extra: 1941/1807,
  40851. bottom: 66/2007
  40852. }
  40853. },
  40854. back: {
  40855. height: math.unit(18 + 7/12, "feet"),
  40856. name: "Back",
  40857. image: {
  40858. source: "./media/characters/rex/back.svg",
  40859. extra: 1937/1822,
  40860. bottom: 42/1979
  40861. }
  40862. },
  40863. boot: {
  40864. height: math.unit(3.45, "feet"),
  40865. name: "Boot",
  40866. image: {
  40867. source: "./media/characters/rex/boot.svg"
  40868. }
  40869. },
  40870. paw: {
  40871. height: math.unit(4.17, "feet"),
  40872. name: "Paw",
  40873. image: {
  40874. source: "./media/characters/rex/paw.svg"
  40875. }
  40876. },
  40877. head: {
  40878. height: math.unit(6.728, "feet"),
  40879. name: "Head",
  40880. image: {
  40881. source: "./media/characters/rex/head.svg"
  40882. }
  40883. },
  40884. },
  40885. [
  40886. {
  40887. name: "Nano",
  40888. height: math.unit(18 + 7/12, "feet")
  40889. },
  40890. {
  40891. name: "Micro",
  40892. height: math.unit(1.5, "megameters")
  40893. },
  40894. {
  40895. name: "Normal",
  40896. height: math.unit(440, "megameters"),
  40897. default: true
  40898. },
  40899. {
  40900. name: "Macro",
  40901. height: math.unit(2.5, "gigameters")
  40902. },
  40903. {
  40904. name: "Gigamacro",
  40905. height: math.unit(2, "galaxies")
  40906. },
  40907. ]
  40908. ))
  40909. characterMakers.push(() => makeCharacter(
  40910. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  40911. {
  40912. side: {
  40913. height: math.unit(32, "feet"),
  40914. weight: math.unit(250000, "lb"),
  40915. name: "Side",
  40916. image: {
  40917. source: "./media/characters/silverwing/side.svg",
  40918. extra: 1100/1019,
  40919. bottom: 204/1304
  40920. }
  40921. },
  40922. },
  40923. [
  40924. {
  40925. name: "Normal",
  40926. height: math.unit(32, "feet"),
  40927. default: true
  40928. },
  40929. ]
  40930. ))
  40931. characterMakers.push(() => makeCharacter(
  40932. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  40933. {
  40934. front: {
  40935. height: math.unit(6 + 6/12, "feet"),
  40936. weight: math.unit(350, "lb"),
  40937. name: "Front",
  40938. image: {
  40939. source: "./media/characters/tristan-hawthorne/front.svg",
  40940. extra: 1159/1124,
  40941. bottom: 37/1196
  40942. }
  40943. },
  40944. },
  40945. [
  40946. {
  40947. name: "Normal",
  40948. height: math.unit(6 + 6/12, "feet"),
  40949. default: true
  40950. },
  40951. ]
  40952. ))
  40953. characterMakers.push(() => makeCharacter(
  40954. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  40955. {
  40956. front: {
  40957. height: math.unit(5 + 11/12, "feet"),
  40958. weight: math.unit(190, "lb"),
  40959. name: "Front",
  40960. image: {
  40961. source: "./media/characters/mizu/front.svg",
  40962. extra: 1988/1788,
  40963. bottom: 14/2002
  40964. }
  40965. },
  40966. },
  40967. [
  40968. {
  40969. name: "Normal",
  40970. height: math.unit(5 + 11/12, "feet"),
  40971. default: true
  40972. },
  40973. ]
  40974. ))
  40975. characterMakers.push(() => makeCharacter(
  40976. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  40977. {
  40978. front: {
  40979. height: math.unit(6, "feet"),
  40980. name: "Front",
  40981. image: {
  40982. source: "./media/characters/moonlight-rose-terra/front.svg",
  40983. extra: 1434/1252,
  40984. bottom: 48/1482
  40985. }
  40986. },
  40987. },
  40988. [
  40989. {
  40990. name: "TRAPPIST-1D",
  40991. height: math.unit(4992*2, "km")
  40992. },
  40993. {
  40994. name: "Earth",
  40995. height: math.unit(6367*2, "km"),
  40996. default: true
  40997. },
  40998. {
  40999. name: "Kepler-22b",
  41000. height: math.unit(15282*2, "km")
  41001. },
  41002. ]
  41003. ))
  41004. characterMakers.push(() => makeCharacter(
  41005. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  41006. {
  41007. front: {
  41008. height: math.unit(6, "feet"),
  41009. name: "Front",
  41010. image: {
  41011. source: "./media/characters/moonlight-rose-neptune/front.svg",
  41012. extra: 1851/1712,
  41013. bottom: 0/1851
  41014. }
  41015. },
  41016. },
  41017. [
  41018. {
  41019. name: "Enceladus",
  41020. height: math.unit(513*2, "km")
  41021. },
  41022. {
  41023. name: "Europe",
  41024. height: math.unit(1560*2, "km")
  41025. },
  41026. {
  41027. name: "Neptune",
  41028. height: math.unit(24622*2, "km"),
  41029. default: true
  41030. },
  41031. {
  41032. name: "CoRoT-9b",
  41033. height: math.unit(75067*2, "km")
  41034. },
  41035. ]
  41036. ))
  41037. characterMakers.push(() => makeCharacter(
  41038. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  41039. {
  41040. front: {
  41041. height: math.unit(6, "feet"),
  41042. name: "Front",
  41043. image: {
  41044. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  41045. extra: 1367/1286,
  41046. bottom: 55/1422
  41047. }
  41048. },
  41049. },
  41050. [
  41051. {
  41052. name: "Saturn",
  41053. height: math.unit(58232*2, "km")
  41054. },
  41055. {
  41056. name: "Jupiter",
  41057. height: math.unit(69911*2, "km"),
  41058. default: true
  41059. },
  41060. {
  41061. name: "HD 100546 b",
  41062. height: math.unit(482938, "km")
  41063. },
  41064. ]
  41065. ))
  41066. characterMakers.push(() => makeCharacter(
  41067. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  41068. {
  41069. front: {
  41070. height: math.unit(1.7, "feet"),
  41071. weight: math.unit(50, "lb"),
  41072. name: "Front",
  41073. image: {
  41074. source: "./media/characters/dechroma/front.svg",
  41075. extra: 1095/859,
  41076. bottom: 64/1159
  41077. }
  41078. },
  41079. },
  41080. [
  41081. {
  41082. name: "Normal",
  41083. height: math.unit(1.7, "feet"),
  41084. default: true
  41085. },
  41086. ]
  41087. ))
  41088. characterMakers.push(() => makeCharacter(
  41089. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  41090. {
  41091. side: {
  41092. height: math.unit(30, "feet"),
  41093. name: "Side",
  41094. image: {
  41095. source: "./media/characters/veluren-thanazel/side.svg",
  41096. extra: 1611/633,
  41097. bottom: 118/1729
  41098. }
  41099. },
  41100. front: {
  41101. height: math.unit(30, "feet"),
  41102. name: "Front",
  41103. image: {
  41104. source: "./media/characters/veluren-thanazel/front.svg",
  41105. extra: 1486/636,
  41106. bottom: 238/1724
  41107. }
  41108. },
  41109. head: {
  41110. height: math.unit(21.4, "feet"),
  41111. name: "Head",
  41112. image: {
  41113. source: "./media/characters/veluren-thanazel/head.svg"
  41114. }
  41115. },
  41116. genitals: {
  41117. height: math.unit(19.4, "feet"),
  41118. name: "Genitals",
  41119. image: {
  41120. source: "./media/characters/veluren-thanazel/genitals.svg"
  41121. }
  41122. },
  41123. },
  41124. [
  41125. {
  41126. name: "Social",
  41127. height: math.unit(6, "feet")
  41128. },
  41129. {
  41130. name: "Play",
  41131. height: math.unit(12, "feet")
  41132. },
  41133. {
  41134. name: "True",
  41135. height: math.unit(30, "feet"),
  41136. default: true
  41137. },
  41138. ]
  41139. ))
  41140. characterMakers.push(() => makeCharacter(
  41141. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  41142. {
  41143. front: {
  41144. height: math.unit(7 + 6/12, "feet"),
  41145. weight: math.unit(500, "kg"),
  41146. name: "Front",
  41147. image: {
  41148. source: "./media/characters/arcturas/front.svg",
  41149. extra: 1700/1500,
  41150. bottom: 145/1845
  41151. }
  41152. },
  41153. },
  41154. [
  41155. {
  41156. name: "Normal",
  41157. height: math.unit(7 + 6/12, "feet"),
  41158. default: true
  41159. },
  41160. ]
  41161. ))
  41162. characterMakers.push(() => makeCharacter(
  41163. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41164. {
  41165. side: {
  41166. height: math.unit(6, "feet"),
  41167. weight: math.unit(2, "tons"),
  41168. name: "Side",
  41169. image: {
  41170. source: "./media/characters/vitaen/side.svg",
  41171. extra: 1157/617,
  41172. bottom: 122/1279
  41173. }
  41174. },
  41175. },
  41176. [
  41177. {
  41178. name: "Normal",
  41179. height: math.unit(6, "feet"),
  41180. default: true
  41181. },
  41182. ]
  41183. ))
  41184. characterMakers.push(() => makeCharacter(
  41185. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41186. {
  41187. front: {
  41188. height: math.unit(19, "feet"),
  41189. name: "Front",
  41190. image: {
  41191. source: "./media/characters/fia-dreamweaver/front.svg",
  41192. extra: 1630/1504,
  41193. bottom: 25/1655
  41194. }
  41195. },
  41196. },
  41197. [
  41198. {
  41199. name: "Normal",
  41200. height: math.unit(19, "feet"),
  41201. default: true
  41202. },
  41203. ]
  41204. ))
  41205. characterMakers.push(() => makeCharacter(
  41206. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41207. {
  41208. front: {
  41209. height: math.unit(5 + 4/12, "feet"),
  41210. name: "Front",
  41211. image: {
  41212. source: "./media/characters/artan/front.svg",
  41213. extra: 1618/1535,
  41214. bottom: 46/1664
  41215. }
  41216. },
  41217. back: {
  41218. height: math.unit(5 + 4/12, "feet"),
  41219. name: "Back",
  41220. image: {
  41221. source: "./media/characters/artan/back.svg",
  41222. extra: 1618/1543,
  41223. bottom: 31/1649
  41224. }
  41225. },
  41226. },
  41227. [
  41228. {
  41229. name: "Normal",
  41230. height: math.unit(5 + 4/12, "feet"),
  41231. default: true
  41232. },
  41233. ]
  41234. ))
  41235. characterMakers.push(() => makeCharacter(
  41236. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41237. {
  41238. side: {
  41239. height: math.unit(182, "cm"),
  41240. weight: math.unit(1000, "lb"),
  41241. name: "Side",
  41242. image: {
  41243. source: "./media/characters/silver-dragon/side.svg",
  41244. extra: 710/287,
  41245. bottom: 88/798
  41246. }
  41247. },
  41248. },
  41249. [
  41250. {
  41251. name: "Normal",
  41252. height: math.unit(182, "cm"),
  41253. default: true
  41254. },
  41255. ]
  41256. ))
  41257. characterMakers.push(() => makeCharacter(
  41258. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41259. {
  41260. side: {
  41261. height: math.unit(6 + 6/12, "feet"),
  41262. weight: math.unit(1.5, "tons"),
  41263. name: "Side",
  41264. image: {
  41265. source: "./media/characters/zephyr/side.svg",
  41266. extra: 1433/586,
  41267. bottom: 109/1542
  41268. }
  41269. },
  41270. },
  41271. [
  41272. {
  41273. name: "Normal",
  41274. height: math.unit(6 + 6/12, "feet"),
  41275. default: true
  41276. },
  41277. ]
  41278. ))
  41279. characterMakers.push(() => makeCharacter(
  41280. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41281. {
  41282. side: {
  41283. height: math.unit(1, "feet"),
  41284. name: "Side",
  41285. image: {
  41286. source: "./media/characters/vixye/side.svg",
  41287. extra: 632/541,
  41288. bottom: 0/632
  41289. }
  41290. },
  41291. },
  41292. [
  41293. {
  41294. name: "Normal",
  41295. height: math.unit(1, "feet"),
  41296. default: true
  41297. },
  41298. {
  41299. name: "True",
  41300. height: math.unit(1e15, "multiverses")
  41301. },
  41302. ]
  41303. ))
  41304. characterMakers.push(() => makeCharacter(
  41305. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41306. {
  41307. front: {
  41308. height: math.unit(8 + 2/12, "feet"),
  41309. weight: math.unit(650, "lb"),
  41310. name: "Front",
  41311. image: {
  41312. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41313. extra: 1174/1137,
  41314. bottom: 82/1256
  41315. }
  41316. },
  41317. back: {
  41318. height: math.unit(8 + 2/12, "feet"),
  41319. weight: math.unit(650, "lb"),
  41320. name: "Back",
  41321. image: {
  41322. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41323. extra: 1204/1157,
  41324. bottom: 46/1250
  41325. }
  41326. },
  41327. },
  41328. [
  41329. {
  41330. name: "Wildform",
  41331. height: math.unit(8 + 2/12, "feet"),
  41332. default: true
  41333. },
  41334. ]
  41335. ))
  41336. characterMakers.push(() => makeCharacter(
  41337. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41338. {
  41339. front: {
  41340. height: math.unit(18, "feet"),
  41341. name: "Front",
  41342. image: {
  41343. source: "./media/characters/cyphin/front.svg",
  41344. extra: 970/886,
  41345. bottom: 42/1012
  41346. }
  41347. },
  41348. back: {
  41349. height: math.unit(18, "feet"),
  41350. name: "Back",
  41351. image: {
  41352. source: "./media/characters/cyphin/back.svg",
  41353. extra: 1009/894,
  41354. bottom: 24/1033
  41355. }
  41356. },
  41357. head: {
  41358. height: math.unit(5.05, "feet"),
  41359. name: "Head",
  41360. image: {
  41361. source: "./media/characters/cyphin/head.svg"
  41362. }
  41363. },
  41364. tailbud: {
  41365. height: math.unit(5, "feet"),
  41366. name: "Tailbud",
  41367. image: {
  41368. source: "./media/characters/cyphin/tailbud.svg"
  41369. }
  41370. },
  41371. },
  41372. [
  41373. ]
  41374. ))
  41375. characterMakers.push(() => makeCharacter(
  41376. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41377. {
  41378. side: {
  41379. height: math.unit(10, "feet"),
  41380. weight: math.unit(6, "tons"),
  41381. name: "Side",
  41382. image: {
  41383. source: "./media/characters/raijin/side.svg",
  41384. extra: 1529/613,
  41385. bottom: 337/1866
  41386. }
  41387. },
  41388. },
  41389. [
  41390. {
  41391. name: "Normal",
  41392. height: math.unit(10, "feet"),
  41393. default: true
  41394. },
  41395. ]
  41396. ))
  41397. characterMakers.push(() => makeCharacter(
  41398. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41399. {
  41400. side: {
  41401. height: math.unit(9, "feet"),
  41402. name: "Side",
  41403. image: {
  41404. source: "./media/characters/nilghais/side.svg",
  41405. extra: 1047/744,
  41406. bottom: 91/1138
  41407. }
  41408. },
  41409. head: {
  41410. height: math.unit(3.14, "feet"),
  41411. name: "Head",
  41412. image: {
  41413. source: "./media/characters/nilghais/head.svg"
  41414. }
  41415. },
  41416. mouth: {
  41417. height: math.unit(4.6, "feet"),
  41418. name: "Mouth",
  41419. image: {
  41420. source: "./media/characters/nilghais/mouth.svg"
  41421. }
  41422. },
  41423. wings: {
  41424. height: math.unit(24, "feet"),
  41425. name: "Wings",
  41426. image: {
  41427. source: "./media/characters/nilghais/wings.svg"
  41428. }
  41429. },
  41430. ass: {
  41431. height: math.unit(6.12, "feet"),
  41432. name: "Ass",
  41433. image: {
  41434. source: "./media/characters/nilghais/ass.svg"
  41435. }
  41436. },
  41437. },
  41438. [
  41439. {
  41440. name: "Normal",
  41441. height: math.unit(9, "feet"),
  41442. default: true
  41443. },
  41444. ]
  41445. ))
  41446. characterMakers.push(() => makeCharacter(
  41447. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  41448. {
  41449. regular: {
  41450. height: math.unit(16 + 2/12, "feet"),
  41451. weight: math.unit(2300, "lb"),
  41452. name: "Regular",
  41453. image: {
  41454. source: "./media/characters/zolgar/regular.svg",
  41455. extra: 1246/1004,
  41456. bottom: 124/1370
  41457. }
  41458. },
  41459. boxers: {
  41460. height: math.unit(16 + 2/12, "feet"),
  41461. weight: math.unit(2300, "lb"),
  41462. name: "Boxers",
  41463. image: {
  41464. source: "./media/characters/zolgar/boxers.svg",
  41465. extra: 1246/1004,
  41466. bottom: 124/1370
  41467. }
  41468. },
  41469. armored: {
  41470. height: math.unit(16 + 2/12, "feet"),
  41471. weight: math.unit(2300, "lb"),
  41472. name: "Armored",
  41473. image: {
  41474. source: "./media/characters/zolgar/armored.svg",
  41475. extra: 1246/1004,
  41476. bottom: 124/1370
  41477. }
  41478. },
  41479. goth: {
  41480. height: math.unit(16 + 2/12, "feet"),
  41481. weight: math.unit(2300, "lb"),
  41482. name: "Goth",
  41483. image: {
  41484. source: "./media/characters/zolgar/goth.svg",
  41485. extra: 1246/1004,
  41486. bottom: 124/1370
  41487. }
  41488. },
  41489. },
  41490. [
  41491. {
  41492. name: "Shrunken Down",
  41493. height: math.unit(9 + 2/12, "feet")
  41494. },
  41495. {
  41496. name: "Normal",
  41497. height: math.unit(16 + 2/12, "feet"),
  41498. default: true
  41499. },
  41500. ]
  41501. ))
  41502. characterMakers.push(() => makeCharacter(
  41503. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  41504. {
  41505. front: {
  41506. height: math.unit(6, "feet"),
  41507. weight: math.unit(168, "lb"),
  41508. name: "Front",
  41509. image: {
  41510. source: "./media/characters/luca/front.svg",
  41511. extra: 841/667,
  41512. bottom: 102/943
  41513. }
  41514. },
  41515. },
  41516. [
  41517. {
  41518. name: "Normal",
  41519. height: math.unit(6, "feet"),
  41520. default: true
  41521. },
  41522. ]
  41523. ))
  41524. characterMakers.push(() => makeCharacter(
  41525. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  41526. {
  41527. side: {
  41528. height: math.unit(7 + 3/12, "feet"),
  41529. weight: math.unit(312, "lb"),
  41530. name: "Side",
  41531. image: {
  41532. source: "./media/characters/zezo/side.svg",
  41533. extra: 1192/1067,
  41534. bottom: 63/1255
  41535. }
  41536. },
  41537. },
  41538. [
  41539. {
  41540. name: "Normal",
  41541. height: math.unit(7 + 3/12, "feet"),
  41542. default: true
  41543. },
  41544. ]
  41545. ))
  41546. characterMakers.push(() => makeCharacter(
  41547. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  41548. {
  41549. front: {
  41550. height: math.unit(5 + 5/12, "feet"),
  41551. weight: math.unit(170, "lb"),
  41552. name: "Front",
  41553. image: {
  41554. source: "./media/characters/mayso/front.svg",
  41555. extra: 1215/1108,
  41556. bottom: 16/1231
  41557. }
  41558. },
  41559. },
  41560. [
  41561. {
  41562. name: "Normal",
  41563. height: math.unit(5 + 5/12, "feet"),
  41564. default: true
  41565. },
  41566. ]
  41567. ))
  41568. characterMakers.push(() => makeCharacter(
  41569. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  41570. {
  41571. front: {
  41572. height: math.unit(4 + 3/12, "feet"),
  41573. weight: math.unit(80, "lb"),
  41574. name: "Front",
  41575. image: {
  41576. source: "./media/characters/hess/front.svg",
  41577. extra: 1200/1123,
  41578. bottom: 16/1216
  41579. }
  41580. },
  41581. },
  41582. [
  41583. {
  41584. name: "Normal",
  41585. height: math.unit(4 + 3/12, "feet"),
  41586. default: true
  41587. },
  41588. ]
  41589. ))
  41590. characterMakers.push(() => makeCharacter(
  41591. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  41592. {
  41593. front: {
  41594. height: math.unit(1.9, "meters"),
  41595. name: "Front",
  41596. image: {
  41597. source: "./media/characters/ashgar/front.svg",
  41598. extra: 1177/1146,
  41599. bottom: 99/1276
  41600. }
  41601. },
  41602. back: {
  41603. height: math.unit(1.9, "meters"),
  41604. name: "Back",
  41605. image: {
  41606. source: "./media/characters/ashgar/back.svg",
  41607. extra: 1201/1183,
  41608. bottom: 53/1254
  41609. }
  41610. },
  41611. feral: {
  41612. height: math.unit(1.4, "meters"),
  41613. name: "Feral",
  41614. image: {
  41615. source: "./media/characters/ashgar/feral.svg",
  41616. extra: 370/345,
  41617. bottom: 45/415
  41618. }
  41619. },
  41620. },
  41621. [
  41622. {
  41623. name: "Normal",
  41624. height: math.unit(1.9, "meters"),
  41625. default: true
  41626. },
  41627. ]
  41628. ))
  41629. characterMakers.push(() => makeCharacter(
  41630. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  41631. {
  41632. regular: {
  41633. height: math.unit(6, "feet"),
  41634. weight: math.unit(220, "lb"),
  41635. name: "Regular",
  41636. image: {
  41637. source: "./media/characters/phillip/regular.svg",
  41638. extra: 1373/1277,
  41639. bottom: 75/1448
  41640. }
  41641. },
  41642. dressed: {
  41643. height: math.unit(6, "feet"),
  41644. weight: math.unit(220, "lb"),
  41645. name: "Dressed",
  41646. image: {
  41647. source: "./media/characters/phillip/dressed.svg",
  41648. extra: 1373/1277,
  41649. bottom: 75/1448
  41650. }
  41651. },
  41652. paw: {
  41653. height: math.unit(1.44, "feet"),
  41654. name: "Paw",
  41655. image: {
  41656. source: "./media/characters/phillip/paw.svg"
  41657. }
  41658. },
  41659. },
  41660. [
  41661. {
  41662. name: "Normal",
  41663. height: math.unit(6, "feet"),
  41664. default: true
  41665. },
  41666. ]
  41667. ))
  41668. characterMakers.push(() => makeCharacter(
  41669. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  41670. {
  41671. side: {
  41672. height: math.unit(42, "feet"),
  41673. name: "Side",
  41674. image: {
  41675. source: "./media/characters/uvula/side.svg",
  41676. extra: 683/586,
  41677. bottom: 60/743
  41678. }
  41679. },
  41680. front: {
  41681. height: math.unit(42, "feet"),
  41682. name: "Front",
  41683. image: {
  41684. source: "./media/characters/uvula/front.svg",
  41685. extra: 705/613,
  41686. bottom: 54/759
  41687. }
  41688. },
  41689. maw: {
  41690. height: math.unit(23.5, "feet"),
  41691. name: "Maw",
  41692. image: {
  41693. source: "./media/characters/uvula/maw.svg"
  41694. }
  41695. },
  41696. },
  41697. [
  41698. {
  41699. name: "Original Size",
  41700. height: math.unit(14, "inches")
  41701. },
  41702. {
  41703. name: "Human Size",
  41704. height: math.unit(6, "feet")
  41705. },
  41706. {
  41707. name: "Big",
  41708. height: math.unit(42, "feet"),
  41709. default: true
  41710. },
  41711. {
  41712. name: "Bigger",
  41713. height: math.unit(100, "feet")
  41714. },
  41715. ]
  41716. ))
  41717. characterMakers.push(() => makeCharacter(
  41718. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  41719. {
  41720. front: {
  41721. height: math.unit(5 + 11/12, "feet"),
  41722. name: "Front",
  41723. image: {
  41724. source: "./media/characters/lannah/front.svg",
  41725. extra: 1208/1113,
  41726. bottom: 97/1305
  41727. }
  41728. },
  41729. },
  41730. [
  41731. {
  41732. name: "Normal",
  41733. height: math.unit(5 + 11/12, "feet"),
  41734. default: true
  41735. },
  41736. ]
  41737. ))
  41738. characterMakers.push(() => makeCharacter(
  41739. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  41740. {
  41741. front: {
  41742. height: math.unit(6 + 3/12, "feet"),
  41743. weight: math.unit(3.5, "tons"),
  41744. name: "Front",
  41745. image: {
  41746. source: "./media/characters/emberflame/front.svg",
  41747. extra: 1198/672,
  41748. bottom: 82/1280
  41749. }
  41750. },
  41751. side: {
  41752. height: math.unit(6 + 3/12, "feet"),
  41753. weight: math.unit(3.5, "tons"),
  41754. name: "Side",
  41755. image: {
  41756. source: "./media/characters/emberflame/side.svg",
  41757. extra: 938/527,
  41758. bottom: 56/994
  41759. }
  41760. },
  41761. },
  41762. [
  41763. {
  41764. name: "Normal",
  41765. height: math.unit(6 + 3/12, "feet"),
  41766. default: true
  41767. },
  41768. ]
  41769. ))
  41770. characterMakers.push(() => makeCharacter(
  41771. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  41772. {
  41773. side: {
  41774. height: math.unit(17.5, "feet"),
  41775. weight: math.unit(35, "tons"),
  41776. name: "Side",
  41777. image: {
  41778. source: "./media/characters/sophie-ambrose/side.svg",
  41779. extra: 1573/1242,
  41780. bottom: 71/1644
  41781. }
  41782. },
  41783. maw: {
  41784. height: math.unit(7.4, "feet"),
  41785. name: "Maw",
  41786. image: {
  41787. source: "./media/characters/sophie-ambrose/maw.svg"
  41788. }
  41789. },
  41790. },
  41791. [
  41792. {
  41793. name: "Normal",
  41794. height: math.unit(17.5, "feet"),
  41795. default: true
  41796. },
  41797. ]
  41798. ))
  41799. characterMakers.push(() => makeCharacter(
  41800. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  41801. {
  41802. front: {
  41803. height: math.unit(280, "feet"),
  41804. weight: math.unit(550, "tons"),
  41805. name: "Front",
  41806. image: {
  41807. source: "./media/characters/king-mugi/front.svg",
  41808. extra: 1102/947,
  41809. bottom: 104/1206
  41810. }
  41811. },
  41812. },
  41813. [
  41814. {
  41815. name: "King Mugi",
  41816. height: math.unit(280, "feet"),
  41817. default: true
  41818. },
  41819. ]
  41820. ))
  41821. characterMakers.push(() => makeCharacter(
  41822. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  41823. {
  41824. front: {
  41825. height: math.unit(64, "meters"),
  41826. name: "Front",
  41827. image: {
  41828. source: "./media/characters/nova-fox/front.svg",
  41829. extra: 1310/1246,
  41830. bottom: 65/1375
  41831. }
  41832. },
  41833. },
  41834. [
  41835. {
  41836. name: "Macro",
  41837. height: math.unit(64, "meters"),
  41838. default: true
  41839. },
  41840. ]
  41841. ))
  41842. characterMakers.push(() => makeCharacter(
  41843. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  41844. {
  41845. front: {
  41846. height: math.unit(6 + 3/12, "feet"),
  41847. weight: math.unit(170, "lb"),
  41848. name: "Front",
  41849. image: {
  41850. source: "./media/characters/sam-bat/front.svg",
  41851. extra: 1601/1411,
  41852. bottom: 125/1726
  41853. }
  41854. },
  41855. back: {
  41856. height: math.unit(6 + 3/12, "feet"),
  41857. weight: math.unit(170, "lb"),
  41858. name: "Back",
  41859. image: {
  41860. source: "./media/characters/sam-bat/back.svg",
  41861. extra: 1577/1405,
  41862. bottom: 58/1635
  41863. }
  41864. },
  41865. },
  41866. [
  41867. {
  41868. name: "Normal",
  41869. height: math.unit(6 + 3/12, "feet"),
  41870. default: true
  41871. },
  41872. ]
  41873. ))
  41874. characterMakers.push(() => makeCharacter(
  41875. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  41876. {
  41877. front: {
  41878. height: math.unit(59, "feet"),
  41879. weight: math.unit(40000, "lb"),
  41880. name: "Front",
  41881. image: {
  41882. source: "./media/characters/inari/front.svg",
  41883. extra: 1884/1350,
  41884. bottom: 95/1979
  41885. }
  41886. },
  41887. },
  41888. [
  41889. {
  41890. name: "Gigantamax",
  41891. height: math.unit(59, "feet"),
  41892. default: true
  41893. },
  41894. ]
  41895. ))
  41896. characterMakers.push(() => makeCharacter(
  41897. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  41898. {
  41899. front: {
  41900. height: math.unit(5 + 8/12, "feet"),
  41901. name: "Front",
  41902. image: {
  41903. source: "./media/characters/elizabeth/front.svg",
  41904. extra: 1395/1298,
  41905. bottom: 54/1449
  41906. }
  41907. },
  41908. mouth: {
  41909. height: math.unit(1.97, "feet"),
  41910. name: "Mouth",
  41911. image: {
  41912. source: "./media/characters/elizabeth/mouth.svg"
  41913. }
  41914. },
  41915. foot: {
  41916. height: math.unit(1.17, "feet"),
  41917. name: "Foot",
  41918. image: {
  41919. source: "./media/characters/elizabeth/foot.svg"
  41920. }
  41921. },
  41922. },
  41923. [
  41924. {
  41925. name: "Normal",
  41926. height: math.unit(5 + 8/12, "feet"),
  41927. default: true
  41928. },
  41929. {
  41930. name: "Minimacro",
  41931. height: math.unit(18, "feet")
  41932. },
  41933. {
  41934. name: "Macro",
  41935. height: math.unit(180, "feet")
  41936. },
  41937. ]
  41938. ))
  41939. characterMakers.push(() => makeCharacter(
  41940. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  41941. {
  41942. front: {
  41943. height: math.unit(5 + 2/12, "feet"),
  41944. name: "Front",
  41945. image: {
  41946. source: "./media/characters/october-gossamer/front.svg",
  41947. extra: 505/454,
  41948. bottom: 7/512
  41949. }
  41950. },
  41951. back: {
  41952. height: math.unit(5 + 2/12, "feet"),
  41953. name: "Back",
  41954. image: {
  41955. source: "./media/characters/october-gossamer/back.svg",
  41956. extra: 501/454,
  41957. bottom: 11/512
  41958. }
  41959. },
  41960. },
  41961. [
  41962. {
  41963. name: "Normal",
  41964. height: math.unit(5 + 2/12, "feet"),
  41965. default: true
  41966. },
  41967. ]
  41968. ))
  41969. characterMakers.push(() => makeCharacter(
  41970. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  41971. {
  41972. front: {
  41973. height: math.unit(5, "feet"),
  41974. name: "Front",
  41975. image: {
  41976. source: "./media/characters/epiglottis/front.svg",
  41977. extra: 923/849,
  41978. bottom: 17/940
  41979. }
  41980. },
  41981. },
  41982. [
  41983. {
  41984. name: "Original Size",
  41985. height: math.unit(10, "inches")
  41986. },
  41987. {
  41988. name: "Human Size",
  41989. height: math.unit(5, "feet"),
  41990. default: true
  41991. },
  41992. {
  41993. name: "Big",
  41994. height: math.unit(25, "feet")
  41995. },
  41996. {
  41997. name: "Bigger",
  41998. height: math.unit(50, "feet")
  41999. },
  42000. {
  42001. name: "oh lawd",
  42002. height: math.unit(75, "feet")
  42003. },
  42004. ]
  42005. ))
  42006. characterMakers.push(() => makeCharacter(
  42007. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  42008. {
  42009. front: {
  42010. height: math.unit(2 + 4/12, "feet"),
  42011. weight: math.unit(60, "lb"),
  42012. name: "Front",
  42013. image: {
  42014. source: "./media/characters/lerm/front.svg",
  42015. extra: 796/790,
  42016. bottom: 79/875
  42017. }
  42018. },
  42019. },
  42020. [
  42021. {
  42022. name: "Normal",
  42023. height: math.unit(2 + 4/12, "feet"),
  42024. default: true
  42025. },
  42026. ]
  42027. ))
  42028. characterMakers.push(() => makeCharacter(
  42029. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  42030. {
  42031. front: {
  42032. height: math.unit(5.5, "feet"),
  42033. weight: math.unit(130, "lb"),
  42034. name: "Front",
  42035. image: {
  42036. source: "./media/characters/xena-nebadon/front.svg",
  42037. extra: 1828/1730,
  42038. bottom: 79/1907
  42039. }
  42040. },
  42041. },
  42042. [
  42043. {
  42044. name: "Tiny Puppy",
  42045. height: math.unit(3, "inches")
  42046. },
  42047. {
  42048. name: "Normal",
  42049. height: math.unit(5.5, "feet"),
  42050. default: true
  42051. },
  42052. {
  42053. name: "Lotta Lady",
  42054. height: math.unit(12, "feet")
  42055. },
  42056. {
  42057. name: "Pretty Big",
  42058. height: math.unit(100, "feet")
  42059. },
  42060. {
  42061. name: "Big",
  42062. height: math.unit(500, "feet")
  42063. },
  42064. {
  42065. name: "Skyscraper Toys",
  42066. height: math.unit(2500, "feet")
  42067. },
  42068. {
  42069. name: "Plane Catcher",
  42070. height: math.unit(8, "miles")
  42071. },
  42072. {
  42073. name: "Planet Toys",
  42074. height: math.unit(15, "earths")
  42075. },
  42076. {
  42077. name: "Stardust",
  42078. height: math.unit(0.25, "galaxies")
  42079. },
  42080. {
  42081. name: "Snacks",
  42082. height: math.unit(70, "universes")
  42083. },
  42084. ]
  42085. ))
  42086. characterMakers.push(() => makeCharacter(
  42087. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  42088. {
  42089. front: {
  42090. height: math.unit(1.6, "meters"),
  42091. weight: math.unit(60, "kg"),
  42092. name: "Front",
  42093. image: {
  42094. source: "./media/characters/bounty/front.svg",
  42095. extra: 1426/1308,
  42096. bottom: 15/1441
  42097. }
  42098. },
  42099. },
  42100. [
  42101. {
  42102. name: "Normal",
  42103. height: math.unit(1.6, "meters"),
  42104. default: true
  42105. },
  42106. {
  42107. name: "Macro",
  42108. height: math.unit(300, "meters")
  42109. },
  42110. ]
  42111. ))
  42112. characterMakers.push(() => makeCharacter(
  42113. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  42114. {
  42115. front: {
  42116. height: math.unit(2 + 8/12, "feet"),
  42117. weight: math.unit(15, "lb"),
  42118. name: "Front",
  42119. image: {
  42120. source: "./media/characters/mochi/front.svg",
  42121. extra: 1022/852,
  42122. bottom: 435/1457
  42123. }
  42124. },
  42125. back: {
  42126. height: math.unit(2 + 8/12, "feet"),
  42127. weight: math.unit(15, "lb"),
  42128. name: "Back",
  42129. image: {
  42130. source: "./media/characters/mochi/back.svg",
  42131. extra: 1335/1119,
  42132. bottom: 39/1374
  42133. }
  42134. },
  42135. bird: {
  42136. height: math.unit(2 + 8/12, "feet"),
  42137. weight: math.unit(15, "lb"),
  42138. name: "Bird",
  42139. image: {
  42140. source: "./media/characters/mochi/bird.svg",
  42141. extra: 1251/1113,
  42142. bottom: 178/1429
  42143. }
  42144. },
  42145. kaiju: {
  42146. height: math.unit(154, "feet"),
  42147. weight: math.unit(1e7, "lb"),
  42148. name: "Kaiju",
  42149. image: {
  42150. source: "./media/characters/mochi/kaiju.svg",
  42151. extra: 460/324,
  42152. bottom: 40/500
  42153. }
  42154. },
  42155. head: {
  42156. height: math.unit(1.21, "feet"),
  42157. name: "Head",
  42158. image: {
  42159. source: "./media/characters/mochi/head.svg"
  42160. }
  42161. },
  42162. alternateTail: {
  42163. height: math.unit(2 + 8/12, "feet"),
  42164. weight: math.unit(45, "lb"),
  42165. name: "Alternate Tail",
  42166. image: {
  42167. source: "./media/characters/mochi/alternate-tail.svg",
  42168. extra: 139/76,
  42169. bottom: 45/184
  42170. }
  42171. },
  42172. },
  42173. [
  42174. {
  42175. name: "Micro",
  42176. height: math.unit(2, "inches")
  42177. },
  42178. {
  42179. name: "Normal",
  42180. height: math.unit(2 + 8/12, "feet"),
  42181. default: true
  42182. },
  42183. {
  42184. name: "Macro",
  42185. height: math.unit(106, "feet")
  42186. },
  42187. ]
  42188. ))
  42189. characterMakers.push(() => makeCharacter(
  42190. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42191. {
  42192. front: {
  42193. height: math.unit(5.67, "feet"),
  42194. weight: math.unit(135, "lb"),
  42195. name: "Front",
  42196. image: {
  42197. source: "./media/characters/sarel/front.svg",
  42198. extra: 865/788,
  42199. bottom: 97/962
  42200. }
  42201. },
  42202. back: {
  42203. height: math.unit(5.67, "feet"),
  42204. weight: math.unit(135, "lb"),
  42205. name: "Back",
  42206. image: {
  42207. source: "./media/characters/sarel/back.svg",
  42208. extra: 857/777,
  42209. bottom: 32/889
  42210. }
  42211. },
  42212. chozoan: {
  42213. height: math.unit(5.67, "feet"),
  42214. weight: math.unit(135, "lb"),
  42215. name: "Chozoan",
  42216. image: {
  42217. source: "./media/characters/sarel/chozoan.svg",
  42218. extra: 865/788,
  42219. bottom: 97/962
  42220. }
  42221. },
  42222. current: {
  42223. height: math.unit(5.67, "feet"),
  42224. weight: math.unit(135, "lb"),
  42225. name: "Current",
  42226. image: {
  42227. source: "./media/characters/sarel/current.svg",
  42228. extra: 865/788,
  42229. bottom: 97/962
  42230. }
  42231. },
  42232. head: {
  42233. height: math.unit(1.77, "feet"),
  42234. name: "Head",
  42235. image: {
  42236. source: "./media/characters/sarel/head.svg"
  42237. }
  42238. },
  42239. claws: {
  42240. height: math.unit(1.8, "feet"),
  42241. name: "Claws",
  42242. image: {
  42243. source: "./media/characters/sarel/claws.svg"
  42244. }
  42245. },
  42246. clawsAlt: {
  42247. height: math.unit(1.8, "feet"),
  42248. name: "Claws-alt",
  42249. image: {
  42250. source: "./media/characters/sarel/claws-alt.svg"
  42251. }
  42252. },
  42253. },
  42254. [
  42255. {
  42256. name: "Normal",
  42257. height: math.unit(5.67, "feet"),
  42258. default: true
  42259. },
  42260. ]
  42261. ))
  42262. characterMakers.push(() => makeCharacter(
  42263. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42264. {
  42265. front: {
  42266. height: math.unit(5500, "feet"),
  42267. name: "Front",
  42268. image: {
  42269. source: "./media/characters/alyonia/front.svg",
  42270. extra: 1200/1135,
  42271. bottom: 29/1229
  42272. }
  42273. },
  42274. back: {
  42275. height: math.unit(5500, "feet"),
  42276. name: "Back",
  42277. image: {
  42278. source: "./media/characters/alyonia/back.svg",
  42279. extra: 1205/1138,
  42280. bottom: 10/1215
  42281. }
  42282. },
  42283. },
  42284. [
  42285. {
  42286. name: "Small",
  42287. height: math.unit(10, "feet")
  42288. },
  42289. {
  42290. name: "Macro",
  42291. height: math.unit(500, "feet")
  42292. },
  42293. {
  42294. name: "Mega Macro",
  42295. height: math.unit(5500, "feet"),
  42296. default: true
  42297. },
  42298. {
  42299. name: "Mega Macro+",
  42300. height: math.unit(500000, "feet")
  42301. },
  42302. {
  42303. name: "Giga Macro",
  42304. height: math.unit(3000, "miles")
  42305. },
  42306. {
  42307. name: "Tera Macro",
  42308. height: math.unit(2.8e6, "miles")
  42309. },
  42310. {
  42311. name: "Galactic",
  42312. height: math.unit(120000, "lightyears")
  42313. },
  42314. ]
  42315. ))
  42316. characterMakers.push(() => makeCharacter(
  42317. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42318. {
  42319. werewolf: {
  42320. height: math.unit(8, "feet"),
  42321. weight: math.unit(425, "lb"),
  42322. name: "Werewolf",
  42323. image: {
  42324. source: "./media/characters/autumn/werewolf.svg",
  42325. extra: 2154/2031,
  42326. bottom: 160/2314
  42327. }
  42328. },
  42329. human: {
  42330. height: math.unit(5 + 8/12, "feet"),
  42331. weight: math.unit(150, "lb"),
  42332. name: "Human",
  42333. image: {
  42334. source: "./media/characters/autumn/human.svg",
  42335. extra: 1200/1149,
  42336. bottom: 30/1230
  42337. }
  42338. },
  42339. },
  42340. [
  42341. {
  42342. name: "Normal",
  42343. height: math.unit(8, "feet"),
  42344. default: true
  42345. },
  42346. ]
  42347. ))
  42348. characterMakers.push(() => makeCharacter(
  42349. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  42350. {
  42351. front: {
  42352. height: math.unit(8 + 5/12, "feet"),
  42353. weight: math.unit(825, "lb"),
  42354. name: "Front",
  42355. image: {
  42356. source: "./media/characters/cobalt-charizard/front.svg",
  42357. extra: 1268/1155,
  42358. bottom: 122/1390
  42359. }
  42360. },
  42361. side: {
  42362. height: math.unit(8 + 5/12, "feet"),
  42363. weight: math.unit(825, "lb"),
  42364. name: "Side",
  42365. image: {
  42366. source: "./media/characters/cobalt-charizard/side.svg",
  42367. extra: 1348/1257,
  42368. bottom: 58/1406
  42369. }
  42370. },
  42371. gMax: {
  42372. height: math.unit(134 + 11/12, "feet"),
  42373. name: "G-Max",
  42374. image: {
  42375. source: "./media/characters/cobalt-charizard/g-max.svg",
  42376. extra: 1835/1541,
  42377. bottom: 151/1986
  42378. }
  42379. },
  42380. },
  42381. [
  42382. {
  42383. name: "Normal",
  42384. height: math.unit(8 + 5/12, "feet"),
  42385. default: true
  42386. },
  42387. ]
  42388. ))
  42389. characterMakers.push(() => makeCharacter(
  42390. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  42391. {
  42392. front: {
  42393. height: math.unit(6 + 3/12, "feet"),
  42394. weight: math.unit(210, "lb"),
  42395. name: "Front",
  42396. image: {
  42397. source: "./media/characters/stella/front.svg",
  42398. extra: 3549/3335,
  42399. bottom: 51/3600
  42400. }
  42401. },
  42402. },
  42403. [
  42404. {
  42405. name: "Normal",
  42406. height: math.unit(6 + 3/12, "feet"),
  42407. default: true
  42408. },
  42409. ]
  42410. ))
  42411. characterMakers.push(() => makeCharacter(
  42412. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  42413. {
  42414. front: {
  42415. height: math.unit(5, "feet"),
  42416. weight: math.unit(90, "lb"),
  42417. name: "Front",
  42418. image: {
  42419. source: "./media/characters/riley-bishop/front.svg",
  42420. extra: 1450/1428,
  42421. bottom: 152/1602
  42422. }
  42423. },
  42424. },
  42425. [
  42426. {
  42427. name: "Normal",
  42428. height: math.unit(5, "feet"),
  42429. default: true
  42430. },
  42431. ]
  42432. ))
  42433. characterMakers.push(() => makeCharacter(
  42434. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  42435. {
  42436. side: {
  42437. height: math.unit(8 + 2/12, "feet"),
  42438. weight: math.unit(500, "kg"),
  42439. name: "Side",
  42440. image: {
  42441. source: "./media/characters/theo-arcanine/side.svg",
  42442. extra: 1342/1074,
  42443. bottom: 111/1453
  42444. }
  42445. },
  42446. },
  42447. [
  42448. {
  42449. name: "Normal",
  42450. height: math.unit(8 + 2/12, "feet"),
  42451. default: true
  42452. },
  42453. ]
  42454. ))
  42455. characterMakers.push(() => makeCharacter(
  42456. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  42457. {
  42458. front: {
  42459. height: math.unit(4, "feet"),
  42460. name: "Front",
  42461. image: {
  42462. source: "./media/characters/kali/front.svg",
  42463. extra: 1921/1357,
  42464. bottom: 70/1991
  42465. }
  42466. },
  42467. },
  42468. [
  42469. {
  42470. name: "Normal",
  42471. height: math.unit(4, "feet"),
  42472. default: true
  42473. },
  42474. {
  42475. name: "Macro",
  42476. height: math.unit(32, "meters")
  42477. },
  42478. {
  42479. name: "Macro+",
  42480. height: math.unit(150, "meters")
  42481. },
  42482. {
  42483. name: "Megamacro",
  42484. height: math.unit(7500, "meters")
  42485. },
  42486. {
  42487. name: "Megamacro+",
  42488. height: math.unit(80, "kilometers")
  42489. },
  42490. ]
  42491. ))
  42492. characterMakers.push(() => makeCharacter(
  42493. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  42494. {
  42495. side: {
  42496. height: math.unit(5 + 11/12, "feet"),
  42497. weight: math.unit(236, "lb"),
  42498. name: "Side",
  42499. image: {
  42500. source: "./media/characters/gapp/side.svg",
  42501. extra: 775/340,
  42502. bottom: 58/833
  42503. }
  42504. },
  42505. mouth: {
  42506. height: math.unit(2.98, "feet"),
  42507. name: "Mouth",
  42508. image: {
  42509. source: "./media/characters/gapp/mouth.svg"
  42510. }
  42511. },
  42512. },
  42513. [
  42514. {
  42515. name: "Normal",
  42516. height: math.unit(5 + 1/12, "feet"),
  42517. default: true
  42518. },
  42519. ]
  42520. ))
  42521. characterMakers.push(() => makeCharacter(
  42522. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  42523. {
  42524. front: {
  42525. height: math.unit(6, "feet"),
  42526. name: "Front",
  42527. image: {
  42528. source: "./media/characters/persephone/front.svg",
  42529. extra: 1895/1717,
  42530. bottom: 96/1991
  42531. }
  42532. },
  42533. back: {
  42534. height: math.unit(6, "feet"),
  42535. name: "Back",
  42536. image: {
  42537. source: "./media/characters/persephone/back.svg",
  42538. extra: 1868/1679,
  42539. bottom: 26/1894
  42540. }
  42541. },
  42542. casual: {
  42543. height: math.unit(6, "feet"),
  42544. name: "Casual",
  42545. image: {
  42546. source: "./media/characters/persephone/casual.svg",
  42547. extra: 1713/1541,
  42548. bottom: 76/1789
  42549. }
  42550. },
  42551. },
  42552. [
  42553. {
  42554. name: "Human Size",
  42555. height: math.unit(6, "feet")
  42556. },
  42557. {
  42558. name: "Big Steppy",
  42559. height: math.unit(600, "meters"),
  42560. default: true
  42561. },
  42562. {
  42563. name: "Galaxy Brain",
  42564. height: math.unit(1, "zettameter")
  42565. },
  42566. ]
  42567. ))
  42568. characterMakers.push(() => makeCharacter(
  42569. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  42570. {
  42571. front: {
  42572. height: math.unit(1.85, "meters"),
  42573. name: "Front",
  42574. image: {
  42575. source: "./media/characters/riley-foxthing/front.svg",
  42576. extra: 1495/1354,
  42577. bottom: 122/1617
  42578. }
  42579. },
  42580. frontAlt: {
  42581. height: math.unit(1.85, "meters"),
  42582. name: "Front (Alt)",
  42583. image: {
  42584. source: "./media/characters/riley-foxthing/front-alt.svg",
  42585. extra: 1572/1389,
  42586. bottom: 116/1688
  42587. }
  42588. },
  42589. },
  42590. [
  42591. {
  42592. name: "Normal Sized",
  42593. height: math.unit(1.85, "meters"),
  42594. default: true
  42595. },
  42596. {
  42597. name: "Quite Sizable",
  42598. height: math.unit(5, "meters")
  42599. },
  42600. {
  42601. name: "Rather Large",
  42602. height: math.unit(20, "meters")
  42603. },
  42604. {
  42605. name: "Macro",
  42606. height: math.unit(450, "meters")
  42607. },
  42608. {
  42609. name: "Giga",
  42610. height: math.unit(5, "km")
  42611. },
  42612. ]
  42613. ))
  42614. characterMakers.push(() => makeCharacter(
  42615. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  42616. {
  42617. front: {
  42618. height: math.unit(6, "feet"),
  42619. weight: math.unit(200, "lb"),
  42620. name: "Front",
  42621. image: {
  42622. source: "./media/characters/blizzard/front.svg",
  42623. extra: 1136/990,
  42624. bottom: 136/1272
  42625. }
  42626. },
  42627. back: {
  42628. height: math.unit(6, "feet"),
  42629. weight: math.unit(200, "lb"),
  42630. name: "Back",
  42631. image: {
  42632. source: "./media/characters/blizzard/back.svg",
  42633. extra: 1175/1034,
  42634. bottom: 97/1272
  42635. }
  42636. },
  42637. sitting: {
  42638. height: math.unit(3.725, "feet"),
  42639. weight: math.unit(200, "lb"),
  42640. name: "Sitting",
  42641. image: {
  42642. source: "./media/characters/blizzard/sitting.svg",
  42643. extra: 581/485,
  42644. bottom: 90/671
  42645. }
  42646. },
  42647. frontWizard: {
  42648. height: math.unit(7.9, "feet"),
  42649. weight: math.unit(200, "lb"),
  42650. name: "Front (Wizard)",
  42651. image: {
  42652. source: "./media/characters/blizzard/front-wizard.svg"
  42653. }
  42654. },
  42655. backWizard: {
  42656. height: math.unit(7.9, "feet"),
  42657. weight: math.unit(200, "lb"),
  42658. name: "Back (Wizard)",
  42659. image: {
  42660. source: "./media/characters/blizzard/back-wizard.svg"
  42661. }
  42662. },
  42663. frontNsfw: {
  42664. height: math.unit(6, "feet"),
  42665. weight: math.unit(200, "lb"),
  42666. name: "Front (NSFW)",
  42667. image: {
  42668. source: "./media/characters/blizzard/front-nsfw.svg",
  42669. extra: 1136/990,
  42670. bottom: 136/1272
  42671. }
  42672. },
  42673. backNsfw: {
  42674. height: math.unit(6, "feet"),
  42675. weight: math.unit(200, "lb"),
  42676. name: "Back (NSFW)",
  42677. image: {
  42678. source: "./media/characters/blizzard/back-nsfw.svg",
  42679. extra: 1175/1034,
  42680. bottom: 97/1272
  42681. }
  42682. },
  42683. sittingNsfw: {
  42684. height: math.unit(3.725, "feet"),
  42685. weight: math.unit(200, "lb"),
  42686. name: "Sitting (NSFW)",
  42687. image: {
  42688. source: "./media/characters/blizzard/sitting-nsfw.svg",
  42689. extra: 581/485,
  42690. bottom: 90/671
  42691. }
  42692. },
  42693. wizardFrontNsfw: {
  42694. height: math.unit(7.9, "feet"),
  42695. weight: math.unit(200, "lb"),
  42696. name: "Wizard (Front, NSFW)",
  42697. image: {
  42698. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  42699. }
  42700. },
  42701. },
  42702. [
  42703. {
  42704. name: "Normal",
  42705. height: math.unit(6, "feet"),
  42706. default: true
  42707. },
  42708. ]
  42709. ))
  42710. characterMakers.push(() => makeCharacter(
  42711. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  42712. {
  42713. front: {
  42714. height: math.unit(5 + 2/12, "feet"),
  42715. name: "Front",
  42716. image: {
  42717. source: "./media/characters/lumi/front.svg",
  42718. extra: 1328/1268,
  42719. bottom: 103/1431
  42720. }
  42721. },
  42722. back: {
  42723. height: math.unit(5 + 2/12, "feet"),
  42724. name: "Back",
  42725. image: {
  42726. source: "./media/characters/lumi/back.svg",
  42727. extra: 1381/1327,
  42728. bottom: 43/1424
  42729. }
  42730. },
  42731. },
  42732. [
  42733. {
  42734. name: "Normal",
  42735. height: math.unit(5 + 2/12, "feet"),
  42736. default: true
  42737. },
  42738. ]
  42739. ))
  42740. characterMakers.push(() => makeCharacter(
  42741. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  42742. {
  42743. front: {
  42744. height: math.unit(5 + 9/12, "feet"),
  42745. name: "Front",
  42746. image: {
  42747. source: "./media/characters/aliya-cotton/front.svg",
  42748. extra: 577/564,
  42749. bottom: 29/606
  42750. }
  42751. },
  42752. },
  42753. [
  42754. {
  42755. name: "Normal",
  42756. height: math.unit(5 + 9/12, "feet"),
  42757. default: true
  42758. },
  42759. ]
  42760. ))
  42761. characterMakers.push(() => makeCharacter(
  42762. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  42763. {
  42764. front: {
  42765. height: math.unit(2.7, "meters"),
  42766. weight: math.unit(25000, "lb"),
  42767. name: "Front",
  42768. image: {
  42769. source: "./media/characters/noah-luxray/front.svg",
  42770. extra: 1644/825,
  42771. bottom: 339/1983
  42772. }
  42773. },
  42774. side: {
  42775. height: math.unit(2.97, "meters"),
  42776. weight: math.unit(25000, "lb"),
  42777. name: "Side",
  42778. image: {
  42779. source: "./media/characters/noah-luxray/side.svg",
  42780. extra: 1319/650,
  42781. bottom: 163/1482
  42782. }
  42783. },
  42784. dick: {
  42785. height: math.unit(7.4, "feet"),
  42786. weight: math.unit(2500, "lb"),
  42787. name: "Dick",
  42788. image: {
  42789. source: "./media/characters/noah-luxray/dick.svg"
  42790. }
  42791. },
  42792. dickAlt: {
  42793. height: math.unit(10.83, "feet"),
  42794. weight: math.unit(2500, "lb"),
  42795. name: "Dick-alt",
  42796. image: {
  42797. source: "./media/characters/noah-luxray/dick-alt.svg"
  42798. }
  42799. },
  42800. },
  42801. [
  42802. {
  42803. name: "BIG",
  42804. height: math.unit(2.7, "meters"),
  42805. default: true
  42806. },
  42807. ]
  42808. ))
  42809. characterMakers.push(() => makeCharacter(
  42810. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  42811. {
  42812. standing: {
  42813. height: math.unit(183, "cm"),
  42814. weight: math.unit(68, "kg"),
  42815. name: "Standing",
  42816. image: {
  42817. source: "./media/characters/arion/standing.svg",
  42818. extra: 1869/1807,
  42819. bottom: 93/1962
  42820. }
  42821. },
  42822. reclining: {
  42823. height: math.unit(70.5, "cm"),
  42824. weight: math.unit(68, "lb"),
  42825. name: "Reclining",
  42826. image: {
  42827. source: "./media/characters/arion/reclining.svg",
  42828. extra: 937/870,
  42829. bottom: 63/1000
  42830. }
  42831. },
  42832. },
  42833. [
  42834. {
  42835. name: "Colossus Size, Low",
  42836. height: math.unit(33, "meters"),
  42837. default: true
  42838. },
  42839. {
  42840. name: "Colossus Size, Mid",
  42841. height: math.unit(52, "meters")
  42842. },
  42843. {
  42844. name: "Colossus Size, High",
  42845. height: math.unit(60, "meters")
  42846. },
  42847. {
  42848. name: "Titan Size, Low",
  42849. height: math.unit(91, "meters"),
  42850. },
  42851. {
  42852. name: "Titan Size, Mid",
  42853. height: math.unit(122, "meters")
  42854. },
  42855. {
  42856. name: "Titan Size, High",
  42857. height: math.unit(162, "meters")
  42858. },
  42859. ]
  42860. ))
  42861. characterMakers.push(() => makeCharacter(
  42862. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  42863. {
  42864. front: {
  42865. height: math.unit(53, "meters"),
  42866. name: "Front",
  42867. image: {
  42868. source: "./media/characters/stellar-marbey/front.svg",
  42869. extra: 1913/1805,
  42870. bottom: 92/2005
  42871. }
  42872. },
  42873. back: {
  42874. height: math.unit(53, "meters"),
  42875. name: "Back",
  42876. image: {
  42877. source: "./media/characters/stellar-marbey/back.svg",
  42878. extra: 1960/1851,
  42879. bottom: 28/1988
  42880. }
  42881. },
  42882. mouth: {
  42883. height: math.unit(3.5, "meters"),
  42884. name: "Mouth",
  42885. image: {
  42886. source: "./media/characters/stellar-marbey/mouth.svg"
  42887. }
  42888. },
  42889. },
  42890. [
  42891. {
  42892. name: "Macro",
  42893. height: math.unit(53, "meters"),
  42894. default: true
  42895. },
  42896. ]
  42897. ))
  42898. characterMakers.push(() => makeCharacter(
  42899. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  42900. {
  42901. front: {
  42902. height: math.unit(8 + 1/12, "feet"),
  42903. weight: math.unit(233, "lb"),
  42904. name: "Front",
  42905. image: {
  42906. source: "./media/characters/matsu/front.svg",
  42907. extra: 832/772,
  42908. bottom: 40/872
  42909. }
  42910. },
  42911. back: {
  42912. height: math.unit(8 + 1/12, "feet"),
  42913. weight: math.unit(233, "lb"),
  42914. name: "Back",
  42915. image: {
  42916. source: "./media/characters/matsu/back.svg",
  42917. extra: 839/780,
  42918. bottom: 47/886
  42919. }
  42920. },
  42921. },
  42922. [
  42923. {
  42924. name: "Normal",
  42925. height: math.unit(8 + 1/12, "feet"),
  42926. default: true
  42927. },
  42928. ]
  42929. ))
  42930. characterMakers.push(() => makeCharacter(
  42931. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  42932. {
  42933. front: {
  42934. height: math.unit(4, "feet"),
  42935. weight: math.unit(148, "lb"),
  42936. name: "Front",
  42937. image: {
  42938. source: "./media/characters/thiz/front.svg",
  42939. extra: 1913/1748,
  42940. bottom: 62/1975
  42941. }
  42942. },
  42943. },
  42944. [
  42945. {
  42946. name: "Normal",
  42947. height: math.unit(4, "feet"),
  42948. default: true
  42949. },
  42950. ]
  42951. ))
  42952. characterMakers.push(() => makeCharacter(
  42953. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  42954. {
  42955. front: {
  42956. height: math.unit(7 + 6/12, "feet"),
  42957. weight: math.unit(267, "lb"),
  42958. name: "Front",
  42959. image: {
  42960. source: "./media/characters/marcel/front.svg",
  42961. extra: 1221/1096,
  42962. bottom: 76/1297
  42963. }
  42964. },
  42965. },
  42966. [
  42967. {
  42968. name: "Normal",
  42969. height: math.unit(7 + 6/12, "feet"),
  42970. default: true
  42971. },
  42972. ]
  42973. ))
  42974. characterMakers.push(() => makeCharacter(
  42975. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  42976. {
  42977. side: {
  42978. height: math.unit(42, "meters"),
  42979. name: "Side",
  42980. image: {
  42981. source: "./media/characters/flake/side.svg",
  42982. extra: 1525/1306,
  42983. bottom: 209/1734
  42984. }
  42985. },
  42986. },
  42987. [
  42988. {
  42989. name: "Normal",
  42990. height: math.unit(42, "meters"),
  42991. default: true
  42992. },
  42993. ]
  42994. ))
  42995. characterMakers.push(() => makeCharacter(
  42996. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  42997. {
  42998. dressed: {
  42999. height: math.unit(6 + 4/12, "feet"),
  43000. weight: math.unit(520, "lb"),
  43001. name: "Dressed",
  43002. image: {
  43003. source: "./media/characters/someonne/dressed.svg",
  43004. extra: 1020/1010,
  43005. bottom: 178/1198
  43006. }
  43007. },
  43008. undressed: {
  43009. height: math.unit(6 + 4/12, "feet"),
  43010. weight: math.unit(520, "lb"),
  43011. name: "Undressed",
  43012. image: {
  43013. source: "./media/characters/someonne/undressed.svg",
  43014. extra: 1019/1014,
  43015. bottom: 169/1188
  43016. }
  43017. },
  43018. },
  43019. [
  43020. {
  43021. name: "Normal",
  43022. height: math.unit(6 + 4/12, "feet"),
  43023. default: true
  43024. },
  43025. ]
  43026. ))
  43027. characterMakers.push(() => makeCharacter(
  43028. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  43029. {
  43030. front: {
  43031. height: math.unit(3, "feet"),
  43032. weight: math.unit(30, "lb"),
  43033. name: "Front",
  43034. image: {
  43035. source: "./media/characters/till/front.svg",
  43036. extra: 892/823,
  43037. bottom: 55/947
  43038. }
  43039. },
  43040. },
  43041. [
  43042. {
  43043. name: "Normal",
  43044. height: math.unit(3, "feet"),
  43045. default: true
  43046. },
  43047. ]
  43048. ))
  43049. characterMakers.push(() => makeCharacter(
  43050. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  43051. {
  43052. front: {
  43053. height: math.unit(9 + 8/12, "feet"),
  43054. weight: math.unit(800, "lb"),
  43055. name: "Front",
  43056. image: {
  43057. source: "./media/characters/sydney-heki/front.svg",
  43058. extra: 1360/1300,
  43059. bottom: 22/1382
  43060. }
  43061. },
  43062. back: {
  43063. height: math.unit(9 + 8/12, "feet"),
  43064. weight: math.unit(800, "lb"),
  43065. name: "Back",
  43066. image: {
  43067. source: "./media/characters/sydney-heki/back.svg",
  43068. extra: 1356/1293,
  43069. bottom: 12/1368
  43070. }
  43071. },
  43072. frontDressed: {
  43073. height: math.unit(9 + 8/12, "feet"),
  43074. weight: math.unit(800, "lb"),
  43075. name: "Front-dressed",
  43076. image: {
  43077. source: "./media/characters/sydney-heki/front-dressed.svg",
  43078. extra: 1360/1300,
  43079. bottom: 22/1382
  43080. }
  43081. },
  43082. },
  43083. [
  43084. {
  43085. name: "Normal",
  43086. height: math.unit(9 + 8/12, "feet"),
  43087. default: true
  43088. },
  43089. {
  43090. name: "Macro",
  43091. height: math.unit(500, "feet")
  43092. },
  43093. {
  43094. name: "Megamacro",
  43095. height: math.unit(3.6, "miles")
  43096. },
  43097. ]
  43098. ))
  43099. characterMakers.push(() => makeCharacter(
  43100. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  43101. {
  43102. front: {
  43103. height: math.unit(200, "cm"),
  43104. weight: math.unit(250, "lb"),
  43105. name: "Front",
  43106. image: {
  43107. source: "./media/characters/fowler-karlsson/front.svg",
  43108. extra: 897/845,
  43109. bottom: 123/1020
  43110. }
  43111. },
  43112. back: {
  43113. height: math.unit(200, "cm"),
  43114. weight: math.unit(250, "lb"),
  43115. name: "Back",
  43116. image: {
  43117. source: "./media/characters/fowler-karlsson/back.svg",
  43118. extra: 999/944,
  43119. bottom: 26/1025
  43120. }
  43121. },
  43122. dick: {
  43123. height: math.unit(1.92, "feet"),
  43124. weight: math.unit(150, "lb"),
  43125. name: "Dick",
  43126. image: {
  43127. source: "./media/characters/fowler-karlsson/dick.svg"
  43128. }
  43129. },
  43130. },
  43131. [
  43132. {
  43133. name: "Normal",
  43134. height: math.unit(200, "cm"),
  43135. default: true
  43136. },
  43137. {
  43138. name: "Smaller Macro",
  43139. height: math.unit(90, "m")
  43140. },
  43141. {
  43142. name: "Macro",
  43143. height: math.unit(150, "m")
  43144. },
  43145. {
  43146. name: "Bigger Macro",
  43147. height: math.unit(300, "m")
  43148. },
  43149. ]
  43150. ))
  43151. characterMakers.push(() => makeCharacter(
  43152. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  43153. {
  43154. side: {
  43155. height: math.unit(8 + 2/12, "feet"),
  43156. weight: math.unit(1, "tonne"),
  43157. name: "Side",
  43158. image: {
  43159. source: "./media/characters/rylide/side.svg",
  43160. extra: 1318/1034,
  43161. bottom: 106/1424
  43162. }
  43163. },
  43164. sitting: {
  43165. height: math.unit(303, "cm"),
  43166. weight: math.unit(1, "tonne"),
  43167. name: "Sitting",
  43168. image: {
  43169. source: "./media/characters/rylide/sitting.svg",
  43170. extra: 1303/1103,
  43171. bottom: 36/1339
  43172. }
  43173. },
  43174. },
  43175. [
  43176. {
  43177. name: "Normal",
  43178. height: math.unit(8 + 2/12, "feet"),
  43179. default: true
  43180. },
  43181. ]
  43182. ))
  43183. characterMakers.push(() => makeCharacter(
  43184. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  43185. {
  43186. front: {
  43187. height: math.unit(5 + 10/12, "feet"),
  43188. weight: math.unit(160, "lb"),
  43189. name: "Front",
  43190. image: {
  43191. source: "./media/characters/pudask/front.svg",
  43192. extra: 1616/1590,
  43193. bottom: 161/1777
  43194. }
  43195. },
  43196. },
  43197. [
  43198. {
  43199. name: "Ferret Height",
  43200. height: math.unit(2 + 5/12, "feet")
  43201. },
  43202. {
  43203. name: "Canon Height",
  43204. height: math.unit(5 + 10/12, "feet"),
  43205. default: true
  43206. },
  43207. ]
  43208. ))
  43209. characterMakers.push(() => makeCharacter(
  43210. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  43211. {
  43212. front: {
  43213. height: math.unit(3 + 6/12, "feet"),
  43214. weight: math.unit(60, "lb"),
  43215. name: "Front",
  43216. image: {
  43217. source: "./media/characters/ramita/front.svg",
  43218. extra: 1402/1232,
  43219. bottom: 62/1464
  43220. }
  43221. },
  43222. dressed: {
  43223. height: math.unit(3 + 6/12, "feet"),
  43224. weight: math.unit(60, "lb"),
  43225. name: "Dressed",
  43226. image: {
  43227. source: "./media/characters/ramita/dressed.svg",
  43228. extra: 1534/1249,
  43229. bottom: 50/1584
  43230. }
  43231. },
  43232. },
  43233. [
  43234. {
  43235. name: "Normal",
  43236. height: math.unit(3 + 6/12, "feet"),
  43237. default: true
  43238. },
  43239. ]
  43240. ))
  43241. characterMakers.push(() => makeCharacter(
  43242. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  43243. {
  43244. front: {
  43245. height: math.unit(8, "feet"),
  43246. name: "Front",
  43247. image: {
  43248. source: "./media/characters/ark/front.svg",
  43249. extra: 772/693,
  43250. bottom: 45/817
  43251. }
  43252. },
  43253. },
  43254. [
  43255. {
  43256. name: "Normal",
  43257. height: math.unit(8, "feet"),
  43258. default: true
  43259. },
  43260. ]
  43261. ))
  43262. characterMakers.push(() => makeCharacter(
  43263. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  43264. {
  43265. front: {
  43266. height: math.unit(6, "feet"),
  43267. weight: math.unit(250, "lb"),
  43268. volume: math.unit(5/8, "gallons"),
  43269. name: "Front",
  43270. image: {
  43271. source: "./media/characters/ludwig-horn/front.svg",
  43272. extra: 1782/1635,
  43273. bottom: 96/1878
  43274. }
  43275. },
  43276. back: {
  43277. height: math.unit(6, "feet"),
  43278. weight: math.unit(250, "lb"),
  43279. volume: math.unit(5/8, "gallons"),
  43280. name: "Back",
  43281. image: {
  43282. source: "./media/characters/ludwig-horn/back.svg",
  43283. extra: 1874/1729,
  43284. bottom: 27/1901
  43285. }
  43286. },
  43287. dick: {
  43288. height: math.unit(1.05, "feet"),
  43289. weight: math.unit(15, "lb"),
  43290. volume: math.unit(5/8, "gallons"),
  43291. name: "Dick",
  43292. image: {
  43293. source: "./media/characters/ludwig-horn/dick.svg"
  43294. }
  43295. },
  43296. },
  43297. [
  43298. {
  43299. name: "Small",
  43300. height: math.unit(6, "feet")
  43301. },
  43302. {
  43303. name: "Typical",
  43304. height: math.unit(12, "feet"),
  43305. default: true
  43306. },
  43307. {
  43308. name: "Building",
  43309. height: math.unit(80, "feet")
  43310. },
  43311. {
  43312. name: "Town",
  43313. height: math.unit(800, "feet")
  43314. },
  43315. {
  43316. name: "Kingdom",
  43317. height: math.unit(80000, "feet")
  43318. },
  43319. {
  43320. name: "Planet",
  43321. height: math.unit(8000000, "feet")
  43322. },
  43323. {
  43324. name: "Universe",
  43325. height: math.unit(8000000000, "feet")
  43326. },
  43327. {
  43328. name: "Transcended",
  43329. height: math.unit(8e27, "feet")
  43330. },
  43331. ]
  43332. ))
  43333. characterMakers.push(() => makeCharacter(
  43334. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  43335. {
  43336. front: {
  43337. height: math.unit(5, "feet"),
  43338. weight: math.unit(50, "kg"),
  43339. name: "Front",
  43340. image: {
  43341. source: "./media/characters/biot-avery/front.svg",
  43342. extra: 1295/1232,
  43343. bottom: 86/1381
  43344. }
  43345. },
  43346. },
  43347. [
  43348. {
  43349. name: "Normal",
  43350. height: math.unit(5, "feet"),
  43351. default: true
  43352. },
  43353. ]
  43354. ))
  43355. characterMakers.push(() => makeCharacter(
  43356. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  43357. {
  43358. front: {
  43359. height: math.unit(6, "feet"),
  43360. name: "Front",
  43361. image: {
  43362. source: "./media/characters/kitsune-kiro/front.svg",
  43363. extra: 1270/1158,
  43364. bottom: 42/1312
  43365. }
  43366. },
  43367. frontAlt: {
  43368. height: math.unit(6, "feet"),
  43369. name: "Front-alt",
  43370. image: {
  43371. source: "./media/characters/kitsune-kiro/front-alt.svg",
  43372. extra: 1130/1081,
  43373. bottom: 36/1166
  43374. }
  43375. },
  43376. },
  43377. [
  43378. {
  43379. name: "Smol",
  43380. height: math.unit(3, "feet")
  43381. },
  43382. {
  43383. name: "Normal",
  43384. height: math.unit(6, "feet"),
  43385. default: true
  43386. },
  43387. ]
  43388. ))
  43389. characterMakers.push(() => makeCharacter(
  43390. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  43391. {
  43392. front: {
  43393. height: math.unit(6, "feet"),
  43394. weight: math.unit(125, "lb"),
  43395. name: "Front",
  43396. image: {
  43397. source: "./media/characters/jack-thatcher/front.svg",
  43398. extra: 1474/1370,
  43399. bottom: 26/1500
  43400. }
  43401. },
  43402. back: {
  43403. height: math.unit(6, "feet"),
  43404. weight: math.unit(125, "lb"),
  43405. name: "Back",
  43406. image: {
  43407. source: "./media/characters/jack-thatcher/back.svg",
  43408. extra: 1489/1384,
  43409. bottom: 18/1507
  43410. }
  43411. },
  43412. },
  43413. [
  43414. {
  43415. name: "Normal",
  43416. height: math.unit(6, "feet"),
  43417. default: true
  43418. },
  43419. {
  43420. name: "Macro",
  43421. height: math.unit(75, "feet")
  43422. },
  43423. {
  43424. name: "Macro-er",
  43425. height: math.unit(250, "feet")
  43426. },
  43427. ]
  43428. ))
  43429. characterMakers.push(() => makeCharacter(
  43430. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  43431. {
  43432. front: {
  43433. height: math.unit(7, "feet"),
  43434. weight: math.unit(110, "kg"),
  43435. name: "Front",
  43436. image: {
  43437. source: "./media/characters/max-hyper/front.svg",
  43438. extra: 1969/1881,
  43439. bottom: 49/2018
  43440. }
  43441. },
  43442. },
  43443. [
  43444. {
  43445. name: "Normal",
  43446. height: math.unit(7, "feet"),
  43447. default: true
  43448. },
  43449. ]
  43450. ))
  43451. characterMakers.push(() => makeCharacter(
  43452. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  43453. {
  43454. front: {
  43455. height: math.unit(5 + 5/12, "feet"),
  43456. weight: math.unit(160, "lb"),
  43457. name: "Front",
  43458. image: {
  43459. source: "./media/characters/spook/front.svg",
  43460. extra: 794/791,
  43461. bottom: 54/848
  43462. }
  43463. },
  43464. back: {
  43465. height: math.unit(5 + 5/12, "feet"),
  43466. weight: math.unit(160, "lb"),
  43467. name: "Back",
  43468. image: {
  43469. source: "./media/characters/spook/back.svg",
  43470. extra: 812/798,
  43471. bottom: 32/844
  43472. }
  43473. },
  43474. },
  43475. [
  43476. {
  43477. name: "Normal",
  43478. height: math.unit(5 + 5/12, "feet"),
  43479. default: true
  43480. },
  43481. ]
  43482. ))
  43483. characterMakers.push(() => makeCharacter(
  43484. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  43485. {
  43486. front: {
  43487. height: math.unit(18, "feet"),
  43488. name: "Front",
  43489. image: {
  43490. source: "./media/characters/xeaduulix/front.svg",
  43491. extra: 1380/1166,
  43492. bottom: 110/1490
  43493. }
  43494. },
  43495. back: {
  43496. height: math.unit(18, "feet"),
  43497. name: "Back",
  43498. image: {
  43499. source: "./media/characters/xeaduulix/back.svg",
  43500. extra: 1592/1170,
  43501. bottom: 128/1720
  43502. }
  43503. },
  43504. frontNsfw: {
  43505. height: math.unit(18, "feet"),
  43506. name: "Front (NSFW)",
  43507. image: {
  43508. source: "./media/characters/xeaduulix/front-nsfw.svg",
  43509. extra: 1380/1166,
  43510. bottom: 110/1490
  43511. }
  43512. },
  43513. backNsfw: {
  43514. height: math.unit(18, "feet"),
  43515. name: "Back (NSFW)",
  43516. image: {
  43517. source: "./media/characters/xeaduulix/back-nsfw.svg",
  43518. extra: 1592/1170,
  43519. bottom: 128/1720
  43520. }
  43521. },
  43522. },
  43523. [
  43524. {
  43525. name: "Normal",
  43526. height: math.unit(18, "feet"),
  43527. default: true
  43528. },
  43529. ]
  43530. ))
  43531. characterMakers.push(() => makeCharacter(
  43532. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  43533. {
  43534. spreadWings: {
  43535. height: math.unit(20, "feet"),
  43536. name: "Spread Wings",
  43537. image: {
  43538. source: "./media/characters/fledge/spread-wings.svg",
  43539. extra: 693/635,
  43540. bottom: 26/719
  43541. }
  43542. },
  43543. front: {
  43544. height: math.unit(20, "feet"),
  43545. name: "Front",
  43546. image: {
  43547. source: "./media/characters/fledge/front.svg",
  43548. extra: 684/637,
  43549. bottom: 18/702
  43550. }
  43551. },
  43552. frontAlt: {
  43553. height: math.unit(20, "feet"),
  43554. name: "Front (Alt)",
  43555. image: {
  43556. source: "./media/characters/fledge/front-alt.svg",
  43557. extra: 708/664,
  43558. bottom: 13/721
  43559. }
  43560. },
  43561. back: {
  43562. height: math.unit(20, "feet"),
  43563. name: "Back",
  43564. image: {
  43565. source: "./media/characters/fledge/back.svg",
  43566. extra: 718/634,
  43567. bottom: 22/740
  43568. }
  43569. },
  43570. head: {
  43571. height: math.unit(5.55, "feet"),
  43572. name: "Head",
  43573. image: {
  43574. source: "./media/characters/fledge/head.svg"
  43575. }
  43576. },
  43577. headAlt: {
  43578. height: math.unit(5.1, "feet"),
  43579. name: "Head (Alt)",
  43580. image: {
  43581. source: "./media/characters/fledge/head-alt.svg"
  43582. }
  43583. },
  43584. },
  43585. [
  43586. {
  43587. name: "Small",
  43588. height: math.unit(6 + 2/12, "feet")
  43589. },
  43590. {
  43591. name: "Big",
  43592. height: math.unit(20, "feet"),
  43593. default: true
  43594. },
  43595. {
  43596. name: "Giant",
  43597. height: math.unit(100, "feet")
  43598. },
  43599. {
  43600. name: "Macro",
  43601. height: math.unit(200, "feet")
  43602. },
  43603. ]
  43604. ))
  43605. characterMakers.push(() => makeCharacter(
  43606. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  43607. {
  43608. front: {
  43609. height: math.unit(1, "meter"),
  43610. name: "Front",
  43611. image: {
  43612. source: "./media/characters/atlas-morenai/front.svg",
  43613. extra: 1275/1043,
  43614. bottom: 19/1294
  43615. }
  43616. },
  43617. back: {
  43618. height: math.unit(1, "meter"),
  43619. name: "Back",
  43620. image: {
  43621. source: "./media/characters/atlas-morenai/back.svg",
  43622. extra: 1141/1001,
  43623. bottom: 25/1166
  43624. }
  43625. },
  43626. },
  43627. [
  43628. {
  43629. name: "Normal",
  43630. height: math.unit(1, "meter"),
  43631. default: true
  43632. },
  43633. {
  43634. name: "Magic-Infused",
  43635. height: math.unit(5, "meters")
  43636. },
  43637. ]
  43638. ))
  43639. characterMakers.push(() => makeCharacter(
  43640. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  43641. {
  43642. front: {
  43643. height: math.unit(5, "meters"),
  43644. name: "Front",
  43645. image: {
  43646. source: "./media/characters/cintia/front.svg",
  43647. extra: 1312/1228,
  43648. bottom: 38/1350
  43649. }
  43650. },
  43651. back: {
  43652. height: math.unit(5, "meters"),
  43653. name: "Back",
  43654. image: {
  43655. source: "./media/characters/cintia/back.svg",
  43656. extra: 1260/1166,
  43657. bottom: 98/1358
  43658. }
  43659. },
  43660. frontDick: {
  43661. height: math.unit(5, "meters"),
  43662. name: "Front (Dick)",
  43663. image: {
  43664. source: "./media/characters/cintia/front-dick.svg",
  43665. extra: 1312/1228,
  43666. bottom: 38/1350
  43667. }
  43668. },
  43669. backDick: {
  43670. height: math.unit(5, "meters"),
  43671. name: "Back (Dick)",
  43672. image: {
  43673. source: "./media/characters/cintia/back-dick.svg",
  43674. extra: 1260/1166,
  43675. bottom: 98/1358
  43676. }
  43677. },
  43678. bust: {
  43679. height: math.unit(1.97, "meters"),
  43680. name: "Bust",
  43681. image: {
  43682. source: "./media/characters/cintia/bust.svg",
  43683. extra: 617/565,
  43684. bottom: 0/617
  43685. }
  43686. },
  43687. },
  43688. [
  43689. {
  43690. name: "Normal",
  43691. height: math.unit(5, "meters"),
  43692. default: true
  43693. },
  43694. ]
  43695. ))
  43696. characterMakers.push(() => makeCharacter(
  43697. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  43698. {
  43699. side: {
  43700. height: math.unit(100, "feet"),
  43701. name: "Side",
  43702. image: {
  43703. source: "./media/characters/denora/side.svg",
  43704. extra: 875/803,
  43705. bottom: 9/884
  43706. }
  43707. },
  43708. },
  43709. [
  43710. {
  43711. name: "Standard",
  43712. height: math.unit(100, "feet"),
  43713. default: true
  43714. },
  43715. {
  43716. name: "Grand",
  43717. height: math.unit(1000, "feet")
  43718. },
  43719. {
  43720. name: "Conquering",
  43721. height: math.unit(10000, "feet")
  43722. },
  43723. ]
  43724. ))
  43725. characterMakers.push(() => makeCharacter(
  43726. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  43727. {
  43728. dressed: {
  43729. height: math.unit(8 + 5/12, "feet"),
  43730. weight: math.unit(700, "lb"),
  43731. name: "Dressed",
  43732. image: {
  43733. source: "./media/characters/kiva/dressed.svg",
  43734. extra: 1102/1055,
  43735. bottom: 60/1162
  43736. }
  43737. },
  43738. nude: {
  43739. height: math.unit(8 + 5/12, "feet"),
  43740. weight: math.unit(700, "lb"),
  43741. name: "Nude",
  43742. image: {
  43743. source: "./media/characters/kiva/nude.svg",
  43744. extra: 1102/1055,
  43745. bottom: 60/1162
  43746. }
  43747. },
  43748. },
  43749. [
  43750. {
  43751. name: "Base Height",
  43752. height: math.unit(8 + 5/12, "feet"),
  43753. default: true
  43754. },
  43755. {
  43756. name: "Macro",
  43757. height: math.unit(100, "feet")
  43758. },
  43759. {
  43760. name: "Max",
  43761. height: math.unit(3280, "feet")
  43762. },
  43763. ]
  43764. ))
  43765. characterMakers.push(() => makeCharacter(
  43766. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  43767. {
  43768. front: {
  43769. height: math.unit(6 + 8/12, "feet"),
  43770. weight: math.unit(250, "lb"),
  43771. name: "Front",
  43772. image: {
  43773. source: "./media/characters/ztragon/front.svg",
  43774. extra: 1825/1684,
  43775. bottom: 98/1923
  43776. }
  43777. },
  43778. },
  43779. [
  43780. {
  43781. name: "Normal",
  43782. height: math.unit(6 + 8/12, "feet"),
  43783. default: true
  43784. },
  43785. {
  43786. name: "Macro",
  43787. height: math.unit(80, "feet")
  43788. },
  43789. ]
  43790. ))
  43791. characterMakers.push(() => makeCharacter(
  43792. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  43793. {
  43794. front: {
  43795. height: math.unit(10.4, "feet"),
  43796. weight: math.unit(2, "tons"),
  43797. name: "Front",
  43798. image: {
  43799. source: "./media/characters/yesenia/front.svg",
  43800. extra: 1479/1474,
  43801. bottom: 233/1712
  43802. }
  43803. },
  43804. },
  43805. [
  43806. {
  43807. name: "Normal",
  43808. height: math.unit(10.4, "feet"),
  43809. default: true
  43810. },
  43811. ]
  43812. ))
  43813. characterMakers.push(() => makeCharacter(
  43814. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  43815. {
  43816. normal: {
  43817. height: math.unit(6 + 1/12, "feet"),
  43818. weight: math.unit(180, "lb"),
  43819. name: "Normal",
  43820. image: {
  43821. source: "./media/characters/leanne-lycheborne/normal.svg",
  43822. extra: 1748/1660,
  43823. bottom: 98/1846
  43824. }
  43825. },
  43826. were: {
  43827. height: math.unit(12, "feet"),
  43828. weight: math.unit(1600, "lb"),
  43829. name: "Were",
  43830. image: {
  43831. source: "./media/characters/leanne-lycheborne/were.svg",
  43832. extra: 1485/1432,
  43833. bottom: 66/1551
  43834. }
  43835. },
  43836. },
  43837. [
  43838. {
  43839. name: "Normal",
  43840. height: math.unit(6 + 1/12, "feet"),
  43841. default: true
  43842. },
  43843. ]
  43844. ))
  43845. characterMakers.push(() => makeCharacter(
  43846. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  43847. {
  43848. side: {
  43849. height: math.unit(13, "feet"),
  43850. name: "Side",
  43851. image: {
  43852. source: "./media/characters/kira-tyler/side.svg",
  43853. extra: 693/393,
  43854. bottom: 58/751
  43855. }
  43856. },
  43857. },
  43858. [
  43859. {
  43860. name: "Normal",
  43861. height: math.unit(13, "feet"),
  43862. default: true
  43863. },
  43864. ]
  43865. ))
  43866. //characters
  43867. function makeCharacters() {
  43868. const results = [];
  43869. characterMakers.forEach(character => {
  43870. results.push(character());
  43871. });
  43872. return results;
  43873. }